@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Borel&family=Outfit:wght@100..900&display=swap");
:root {
  --dark-green: 96, 180, 178;
  --light-green: 198, 229, 232;
  --dark-grey: 75, 76, 76;
  --light-grey: 187, 197, 196;
  --pink: 231, 214, 217;
  --borel: 'Borel', serif;
  --outfit: 'Outfit', sans-serif;
  --trans-classic: ease-in-out .2s;
  --trans-expo: cubic-bezier(0.165, 1.410, 0.220, 1.000) 1s;
  --header-logo-h: 150px;
  --header-padding-logo-t: 20px;
}

body {
  font-family: var(--outfit);
  color: rgb(var(--dark-grey));
  padding: 0;
  margin: 0;
  background-color: white;
  cursor: default;
  overflow-x: hidden;
  background-image: url(../img/bg_pattern.svg);
  background-position: center;
  background-size: 2700px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

h1 {
  font-family: var(--borel);
  font-size: 36px;
  line-height: 50px;
  font-weight: normal;
  color: rgb(var(--dark-green));
  margin: 0 0 40px 0;
}
h1 .surtitle {
  font-size: 20px;
  color: rgb(var(--dark-green));
}
h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  background-color: rgb(var(--dark-green));
  margin-top: 20px;
}

h3 {
  font-family: var(--borel);
  font-size: 24px;
  color: rgb(var(--dark-green));
  line-height: 30px;
  font-weight: normal;
  margin: 0 0 10px 0;
  padding-top: 26px;
}

h4 {
  font-family: var(--borel);
  font-size: 20px;
  color: rgb(var(--dark-green));
  line-height: 30px;
  font-weight: normal;
  margin: 0;
}

.surtitle {
  display: block;
  margin-bottom: 10px;
  font-family: var(--outfit);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5%;
  color: rgb(var(--dark-grey));
}

header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1400px;
  transform: translateX(-50%);
  display: flex;
  padding-top: var(--header-padding-logo-t);
}
header #header-logo {
  position: relative;
  height: var(--header-logo-h);
  aspect-ratio: 2;
  margin-left: 50px;
  margin-right: auto;
}
header #header-logo .logo-link {
  display: inline-block;
  aspect-ratio: 2;
  height: var(--header-logo-h);
  background-image: url(../img/logo--full.svg);
}
header #header-logo::before {
  display: block;
  content: "";
  position: absolute;
  border-radius: 40% 60% 44% 56%/46% 30% 70% 54%;
  top: -500px;
  left: -500px;
  right: -250px;
  bottom: -30px;
  background-color: white;
  z-index: -1;
}
header #top-nav {
  margin-left: auto;
  margin-right: 50px;
  position: relative;
}
header #top-nav .menu {
  position: absolute;
  background-color: rgb(var(--light-green));
  clip-path: url("#bg_box1");
  padding-left: 30px;
  padding-right: 30px;
  right: 0px;
  min-width: 300px;
  opacity: 0;
  top: -20px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--trans-expo), padding var(--trans-expo), opacity var(--trans-expo), top var(--trans-expo);
}
header #top-nav .menu ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  align-items: start;
}
header #top-nav .menu ul li a, header #top-nav .menu ul li div {
  display: inline-block;
  padding: 8px 0;
  color: rgb(var(--dark-grey));
  text-decoration: none;
}
header #top-nav .menu ul li a.main-link, header #top-nav .menu ul li div.main-link {
  font-weight: 600;
}
header #top-nav .menu ul li a:has(+ ul), header #top-nav .menu ul li div:has(+ ul) {
  padding-bottom: 4px;
}
header #top-nav .menu ul li a {
  transition: color var(--trans-classic);
}
header #top-nav .menu ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: rgb(var(--dark-grey));
  margin: 3px auto 0 0;
  transition: width var(--trans-classic), background-color var(--trans-classic);
}
header #top-nav .menu ul li a:hover {
  color: rgb(var(--dark-green));
}
header #top-nav .menu ul li a:hover::after {
  width: 100%;
  background-color: rgb(var(--dark-green));
}
header #top-nav .menu ul li > ul {
  margin-bottom: 3px;
}
header #top-nav .menu ul li > ul a, header #top-nav .menu ul li > ul div {
  padding: 2px 0;
}
header #top-nav .menu-icon {
  position: absolute;
  z-index: 0;
  right: 20px;
  top: 20px;
  width: 80px;
  height: 80px;
  transition: transform var(--trans-expo), top var(--trans-expo);
}
header #top-nav .menu-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 30px;
  height: 2px;
  background-color: rgb(var(--dark-green));
  transition: background-color var(--trans-expo);
}
header #top-nav .menu-icon span::before, header #top-nav .menu-icon span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 2px;
  background-color: rgb(var(--dark-green));
  transition: transform var(--trans-expo);
}
header #top-nav .menu-icon span::before {
  transform: translateY(-8px);
}
header #top-nav .menu-icon span::after {
  transform: translateY(8px);
}
header #top-nav .menu-icon::before {
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  border-radius: 41% 59% 61% 39%/51% 37% 63% 49%;
  background-color: rgb(var(--light-green));
  transition: top var(--trans-classic), left var(--trans-classic), bottom var(--trans-classic), right var(--trans-classic), background-color var(--trans-classic);
}
header #top-nav .menu-icon:hover {
  cursor: pointer;
}
header #top-nav .menu-icon:hover::before {
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
}
header #top-nav[data-state=opened] .menu-icon {
  top: -10px;
  transform: rotate(180deg);
}
header #top-nav[data-state=opened] .menu-icon span {
  background-color: transparent;
}
header #top-nav[data-state=opened] .menu-icon span::before {
  transform: translateY(0) rotate(45deg);
  background-color: rgb(var(--light-green));
}
header #top-nav[data-state=opened] .menu-icon span::after {
  transform: translateY(0) rotate(-45deg);
  background-color: rgb(var(--light-green));
}
header #top-nav[data-state=opened] .menu-icon::before {
  background-color: rgb(var(--dark-green));
}
header #top-nav[data-state=opened] .menu {
  top: 10px;
  grid-template-rows: 1fr;
  padding-top: 60px;
  padding-bottom: 30px;
  opacity: 1;
}

article {
  margin-top: 50px;
}

section {
  padding: 100px 50px;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1400px;
}
section.hero {
  display: flex;
  position: relative;
  padding-top: calc(3 * var(--header-padding-logo-t) + var(--header-logo-h));
  padding-bottom: 100px;
}
section.hero .content {
  max-width: 600px;
  margin: auto 0;
  padding-top: 20px;
}
section.hero .content .details {
  font-size: 24px;
  line-height: 1.5;
  color: rgb(var(--dark-green));
  font-weight: 300;
}
section.hero .img {
  position: absolute;
  right: 40px;
  z-index: -1;
  width: 600px;
  height: 50%;
}
section.hero.hero--home {
  min-height: 900px;
}
section.hero.hero--home h1 {
  font-size: 40px;
  line-height: 60px;
}
section.hero.hero--home .content .details {
  font-size: 30px;
}
section.hero.hero--home .img {
  position: absolute;
  top: -10%;
  right: -20%;
  z-index: -1;
  width: 75%;
  height: 100%;
}

footer .footer__inner {
  background-color: rgb(var(--dark-green));
  clip-path: url("#bg_footer1");
  padding-top: 100px;
}
footer .footer__inner .footer__bottom__inner {
  max-width: 1400px;
  margin: 0 auto;
}
footer #footer-logo {
  display: block;
  margin: 0px auto -100px auto;
  height: 200px;
  width: 200px;
  position: relative;
  z-index: 1;
}
footer .footer__invite {
  font-family: var(--borel);
  font-size: 24px;
  color: rgb(var(--light-green));
  font-weight: normal;
  margin: 0 0 20px 0;
  line-height: 40px;
  text-align: center;
}
footer .footer__bottom {
  background-color: rgb(var(--light-green));
  clip-path: url("#bg_footer2");
  padding: 100px 50px;
}
footer .footer__bottom a {
  display: inline-block;
  color: rgb(var(--dark-grey));
  text-decoration: none;
  transition: color var(--trans-classic);
}
footer .footer__bottom a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: rgb(var(--dark-grey));
  margin: 2px auto 0 0;
  transition: width var(--trans-classic), background-color var(--trans-classic);
}
footer .footer__bottom a:hover {
  color: rgb(var(--dark-green));
}
footer .footer__bottom a:hover::after {
  width: 100%;
  background-color: rgb(var(--dark-green));
}
footer .footer__bottom .footer__nav ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  align-items: start;
}
footer .footer__bottom .footer__nav ul li a, footer .footer__bottom .footer__nav ul li div {
  display: inline-block;
  padding: 8px 0;
}
footer .footer__bottom .footer__nav ul li a.main-link, footer .footer__bottom .footer__nav ul li div.main-link {
  font-weight: 600;
}
footer .footer__bottom .footer__nav ul li a:has(+ ul), footer .footer__bottom .footer__nav ul li div:has(+ ul) {
  padding-bottom: 4px;
}
footer .footer__bottom .footer__nav ul li > ul {
  margin-bottom: 3px;
}
footer .footer__bottom .footer__nav ul li > ul a, footer .footer__bottom .footer__nav ul li > ul div {
  padding: 2px 0;
}

.title-bar {
  display: flex;
}
.title-bar.h2 {
  gap: 20px;
  align-items: center;
}
.title-bar.h2 .icon {
  flex: 0 0 80px;
  aspect-ratio: 1;
  background-image: var(--icon);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.title-bar.h2 h2 {
  font-family: var(--borel);
  font-size: 36px;
  color: rgb(var(--dark-green));
  font-weight: normal;
  margin: 0;
  line-height: 40px;
  padding-top: 28px;
}

.grid-standard, .grid-tc, .grid-tpl {
  display: grid;
  grid-column-gap: 0px;
  position: relative;
}
.grid-standard.gap, .grid-tc.gap, .grid-tpl.gap {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
}

.grid-standard > *:nth-child(1), .grid-tpl > *:nth-child(1) {
  grid-area: a;
}
.grid-standard > *:nth-child(2), .grid-tpl > *:nth-child(2) {
  grid-area: b;
}
.grid-standard > *:nth-child(3), .grid-tpl > *:nth-child(3) {
  grid-area: c;
}
.grid-standard > *:nth-child(4), .grid-tpl > *:nth-child(4) {
  grid-area: d;
}
.grid-standard > *:nth-child(5), .grid-tpl > *:nth-child(5) {
  grid-area: e;
}
.grid-standard > *:nth-child(6), .grid-tpl > *:nth-child(6) {
  grid-area: f;
}
.grid-standard > .area-a, .grid-tpl > .area-a {
  grid-area: a;
}
.grid-standard > .area-b, .grid-tpl > .area-b {
  grid-area: b;
}
.grid-standard > .area-c, .grid-tpl > .area-c {
  grid-area: c;
}
.grid-standard > .area-d, .grid-tpl > .area-d {
  grid-area: d;
}
.grid-standard > .area-e, .grid-tpl > .area-e {
  grid-area: e;
}
.grid-standard > .area-f, .grid-tpl > .area-f {
  grid-area: f;
}

.grid-standard {
  grid-template-columns: repeat(12, 1fr);
}
.grid-standard.cols-12 {
  grid-template-areas: "a a a a a a a a a a a a";
}
.grid-standard.cols-2_10 {
  grid-template-areas: "a a b b b b b b b b b b";
}
.grid-standard.cols-3_9 {
  grid-template-areas: "a a a b b b b b b b b b";
}
.grid-standard.cols-4_8 {
  grid-template-areas: "a a a a b b b b b b b b";
}
.grid-standard.cols-5_7 {
  grid-template-areas: "a a a a a b b b b b b b";
}
.grid-standard.cols-6_6 {
  grid-template-areas: "a a a a a a b b b b b b";
}
.grid-standard.cols-7_5 {
  grid-template-areas: "a a a a a a a b b b b b";
}
.grid-standard.cols-8_4 {
  grid-template-areas: "a a a a a a a a b b b b";
}
.grid-standard.cols-9_3 {
  grid-template-areas: "a a a a a a a a a b b b";
}
.grid-standard.cols-10_2 {
  grid-template-areas: "a a a a a a a a a a b b";
}
.grid-standard.cols-1-6-5 {
  grid-template-areas: "a b b b b b b c c c c c";
}
.grid-standard.cols-1_10_1 {
  grid-template-areas: "a b b b b b b b b b b c";
}
.grid-standard.cols-2_8_2 {
  grid-template-areas: "a a b b b b b b b b c c";
}
.grid-standard.cols-3_6_3 {
  grid-template-areas: "a a a b b b b b b c c c";
}
.grid-standard.cols-4_4_4 {
  grid-template-areas: "a a a a b b b b c c c c";
}
.grid-standard.cols-4_5_3 {
  grid-template-areas: "a a a a b b b b b c c c";
}
.grid-standard.cols-5_2_5 {
  grid-template-areas: "a a a a a b b c c c c c";
}
.grid-standard.cols-5_5_2 {
  grid-template-areas: "a a a a a b b b b b c c";
}
.grid-standard.cols-6_3_3 {
  grid-template-areas: "a a a a a a b b b c c c";
}
.grid-standard.cols-1_3_5_3 {
  grid-template-areas: "a b b b c c c c c d d d";
}
.grid-standard.cols-1_4_6_1 {
  grid-template-areas: "a b b b b c c c c c c d";
}
.grid-standard.cols-1_5_1_5 {
  grid-template-areas: "a b b b b b c d d d d d";
}
.grid-standard.cols-1_6_4_1 {
  grid-template-areas: "a b b b b b b c c c c d";
}
.grid-standard.cols-2_4_4_2 {
  grid-template-areas: "a a b b b b c c c c d d";
}
.grid-standard.cols-3_5_3_1 {
  grid-template-areas: "a a a b b b b b c c c d";
}
.grid-standard.cols-5_1_5_1 {
  grid-template-areas: "a a a a a b c c c c c d";
}
.grid-standard.cols-1_5_1_4_1 {
  grid-template-areas: "a b b b b b c d d d d e";
}

.grid-tc.cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-tc.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-tc.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-tc.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-tpl {
  --tpl:
  	"a a a a a a a a a a a a"
  	"b b b b b b b b b b b b";
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas: var(--tpl);
}

.form-inp {
  display: flex;
  position: relative;
  transition: opacity var(--animation-time) ease-out;
}
.form-inp input {
  display: block;
  width: 100%;
  flex: 1;
  box-sizing: border-box;
  margin: 0;
  padding: 15px 0px 3px 0px;
  border-bottom: 2px solid rgb(var(--light-green));
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  font-family: var(--borel);
  color: rgb(var(--dark-grey));
  background: transparent;
  font-size: 16px;
  resize: none;
  position: relative;
  outline: none;
  order: 2;
  transition: all var(--trans-classic);
}
.form-inp input::-moz-placeholder {
  font-family: var(--outfit);
  color: rgb(var(--dark-green));
  opacity: 1;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
}
.form-inp input::placeholder {
  font-family: var(--outfit);
  color: rgb(var(--dark-green));
  opacity: 1;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
}
.form-inp input:-moz-placeholder + label {
  opacity: 0;
  top: -5px;
}
.form-inp input:placeholder-shown + label {
  opacity: 0;
  top: -5px;
}
.form-inp input[required]::after {
  content: "*";
  display: block;
  font-weight: 300;
  margin-right: 5px;
  font-size: 1.8em;
  float: right;
  height: 20px;
  overflow: hidden;
}
.form-inp input:focus {
  border-color: rgb(var(--dark-green));
}
.form-inp input:focus ~ .form-inp__l-widgets, .form-inp input:focus ~ .form-inp__r-widgets, .form-inp input:focus ~ .form-widgets--l, .form-inp input:focus ~ .form-widgets--r {
  border-color: rgb(var(--dark-green));
}
.form-inp label {
  position: absolute;
  left: 0px;
  transition: opacity var(--trans-classic), top var(--trans-classic);
  font-weight: 700;
  color: rgb(var(--light-green));
  font-size: 10px;
  opacity: 1;
  top: 0px;
}
.form-inp .form-widgets--l {
  border-bottom: 2px solid rgb(var(--light-green));
  transition: all var(--trans-classic);
  padding: 15px 5px 3px 0px;
  order: 1;
}
.form-inp .form-widgets--r {
  border-bottom: 2px solid rgb(var(--light-green));
  transition: all var(--trans-classic);
  padding: 15px 0px 3px 5px;
  order: 3;
}
.form-inp.form-inp--center input {
  text-align: center;
}
.form-inp.form-inp--center label {
  right: 0;
  text-align: center;
}
.form-inp.form-inp--big input {
  font-weight: 700;
  font-size: 32px;
}
.form-inp.form-inp--big .asterisk::after {
  bottom: -34px;
}
.form-inp:has(input[disabled]) {
  opacity: 0.5;
}

.form-txt {
  display: flex;
  position: relative;
}
.form-txt textarea {
  width: 100%;
  font-family: var(--borel);
  color: rgb(var(--dark-grey));
  background: transparent;
  display: block;
  margin: 0;
  border-bottom: 2px solid rgb(var(--light-green));
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  transition: all var(--trans-classic);
  box-sizing: border-box;
  font-size: 16px;
  padding: 15px 0px 3px 0px;
  resize: none;
  position: relative;
  outline: none;
  min-height: 60px;
}
.form-txt textarea::-moz-placeholder {
  font-family: var(--outfit);
  color: rgb(var(--dark-green));
  opacity: 1;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
}
.form-txt textarea::placeholder {
  font-family: var(--outfit);
  color: rgb(var(--dark-green));
  opacity: 1;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
}
.form-txt textarea:-moz-placeholder + label {
  top: -5px;
  opacity: 0;
}
.form-txt textarea:placeholder-shown + label {
  top: -5px;
  opacity: 0;
}
.form-txt textarea[required]::after {
  content: "*";
  display: block;
  font-weight: 300;
  margin-right: 5px;
  font-size: 1.8em;
  float: right;
  height: 20px;
  overflow: hidden;
}
.form-txt textarea:focus {
  border-color: rgb(var(--dark-green));
}
.form-txt textarea:focus ~ .form-widgets--l, .form-txt textarea:focus ~ .form-widgets--r {
  border-color: rgb(var(--dark-green));
}
.form-txt label {
  position: absolute;
  left: 0px;
  transition: opacity var(--trans-classic), top var(--trans-classic);
  font-weight: 700;
  color: rgb(var(--light-green));
  font-size: 10px;
  opacity: 1;
  top: 0px;
}
.form-txt .form-widgets--l {
  border-bottom: 2px solid rgb(var(--light-green));
  transition: all var(--trans-classic);
  padding: 15px 5px 3px 0px;
  order: 1;
}
.form-txt .form-widgets--r {
  border-bottom: 2px solid rgb(var(--light-green));
  transition: all var(--trans-classic);
  padding: 15px 0px 3px 5px;
  order: 3;
}
.form-txt.form-txt--center textarea {
  text-align: center;
}
.form-txt.form-txt--center label {
  right: 0;
  text-align: center;
}
.form-txt.form-txt--big textarea {
  font-weight: 700;
  font-size: 32px;
}
.form-txt.form-txt--big .asterisk::after {
  bottom: -34px;
}
.form-txt:has(textarea[disabled]) {
  opacity: 0.5;
}

.form-swh input[type=checkbox] {
  position: absolute;
  top: -9999px;
  left: -9999px;
  display: none;
}
.form-swh input[type=checkbox]:not(:disabled) + label:hover {
  cursor: pointer;
}
.form-swh input[type=checkbox]:not(:disabled) + label:hover::before {
  background: rgba(var(--light-green), 0.5);
}
.form-swh input[type=checkbox]:not(:disabled) + label:hover::after {
  background: rgba(var(--dark-green), 0.5);
  left: 6px;
}
.form-swh input[type=checkbox]:checked + label::before {
  background: rgb(var(--light-green));
}
.form-swh input[type=checkbox]:checked + label::after {
  background-color: rgb(var(--dark-green));
  left: 19px;
}
.form-swh input[type=checkbox]:checked:not(:disabled) + label:hover::before {
  background: rgba(var(--light-green), 0.5);
}
.form-swh input[type=checkbox]:checked:not(:disabled) + label:hover::after {
  background: rgba(var(--dark-green), 0.5);
  left: 17px;
}
.form-swh input[type=checkbox]:disabled + label {
  opacity: 0.5;
}
.form-swh input[type=checkbox]:disabled + label::before {
  opacity: 0.5;
}
.form-swh input[type=checkbox]:disabled + label::after {
  opacity: 0.5;
}
.form-swh input[type=checkbox] + label {
  position: relative;
  padding: 2px 0 0 40px;
  line-height: 16px;
  display: block;
  font-size: 16px;
  min-height: 20px;
}
.form-swh input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  border: 2px solid rgb(var(--light-green));
  transition: all 0.3s 0s;
  width: 31px;
  height: 16px;
  border-radius: 10px;
}
.form-swh input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 4px;
  top: 4px;
  border: 2px solid rgb(var(--dark-green));
  transition: all 0.3s 0s;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
}
.form-swh .asterisk {
  top: 1px;
  right: 0;
}
.form-swh .asterisk::after {
  content: "·";
  color: rgb(var(--pink));
}
.form-swh.form-swh--center input[type=checkbox] + label {
  margin: auto;
}
.form-swh.form-swh--no-label input[type=checkbox] + label {
  width: 35px;
  padding: 0;
}

.form-grp {
  display: flex;
  font-weight: 300;
  text-transform: none;
  font-size: 16px;
  align-items: flex-start;
}
.form-grp > *:not(span) {
  flex: 1;
  margin-top: 0 !important;
}
.form-grp .form-bla {
  margin: 0 5px;
  padding: 15px 0px 5px 0px;
}
.form-grp *:first-child {
  margin-left: 0;
}
.form-grp.gap {
  gap: 20px;
}

:is(button, .form-inp, .form-txt, .form-swh, .form-grp) + :is(button, .form-inp, .form-txt, .form-swh, .form-grp) {
  margin-top: 10px;
}

.cta--big, .cta--small {
  display: inline-block;
  position: relative;
  z-index: 0;
  font-family: var(--outfit);
  text-decoration: none;
  font-weight: 600;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--trans-classic);
}
.cta--big::after, .cta--small::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(var(--dark-green));
  z-index: -1;
  transition: top var(--trans-classic), left var(--trans-classic), bottom var(--trans-classic), right var(--trans-classic), background-color var(--trans-classic);
  clip-path: url("#bg_blob1");
}
.cta--big:not(:disabled):hover, .cta--small:not(:disabled):hover {
  color: rgb(var(--dark-green));
}
.cta--big:not(:disabled):hover::after, .cta--small:not(:disabled):hover::after {
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  background-color: rgb(var(--light-green));
}
.cta--big.cta--light, .cta--small.cta--light {
  color: rgb(var(--dark-green));
}
.cta--big.cta--light::after, .cta--small.cta--light::after {
  background-color: rgb(var(--light-green));
}
.cta--big.cta--light:hover, .cta--small.cta--light:hover {
  color: rgb(var(--light-green));
}
.cta--big.cta--light:hover::after, .cta--small.cta--light:hover::after {
  background-color: white;
}
.cta--big.cta--hover-light:hover, .cta--small.cta--hover-light:hover {
  color: rgb(var(--light-green));
}
.cta--big.cta--hover-light:hover::after, .cta--small.cta--hover-light:hover::after {
  background-color: white;
}
.cta--big:disabled, .cta--small:disabled {
  opacity: 0.5;
  cursor: default !important;
}

.cta--big {
  padding: 12px 20px;
  font-size: 20px;
}

.cta--small {
  padding: 8px 14px;
  font-size: 16px;
}

.box {
  padding: 40px;
  clip-path: url("#bg_box1");
  background-color: rgb(var(--light-green));
  font-family: var(--borel);
}
.box.dark-green {
  background-color: rgb(var(--dark-green));
}
.box.dark-green p, .box.dark-green h3 {
  color: rgb(var(--light-green));
}

.card {
  display: flex;
  flex-flow: column;
  aspect-ratio: 0.625;
  clip-path: url("#bg_box1");
  background-color: rgb(var(--light-green));
}
.card .card__bg {
  flex: 1;
  z-index: -1;
  margin-bottom: -50px;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%);
          mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%);
  opacity: 0.8;
  transition: margin var(--trans-classic), opacity var(--trans-classic);
}
.card .card__content {
  display: flex;
  flex-flow: column;
  margin-top: auto;
  overflow-wrap: break-word;
}
.card .card__content .card__content__top {
  margin-top: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.card .card__content .card__content__bottom {
  display: flex;
  flex-flow: column;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
}
.card .card__content .card__content__bottom .hover-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--trans-classic), opacity var(--trans-classic);
}
.card .card__content .card__content__bottom .hover-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card:hover .card__bg {
  margin-bottom: -100px;
  opacity: 0.5;
}
.card:hover .card__content .card__content__bottom .hover-content {
  grid-template-rows: 1fr;
}
.card.card--cta {
  background-color: rgb(var(--dark-green));
  text-decoration: none;
  transition: background-color var(--trans-classic);
}
.card.card--cta .card__content {
  font-family: var(--borel);
  font-size: 24px;
  color: rgb(var(--light-green));
  line-height: 30px;
  font-weight: normal;
  margin: auto;
  padding: 5px;
  text-align: center;
  transition: color var(--trans-classic);
}
.card.card--cta:hover {
  background-color: rgb(var(--light-green));
}
.card.card--cta:hover .card__content {
  color: rgb(var(--dark-green));
}

.carousel-outer {
  --offset: 50px;
  position: relative;
}
.carousel-outer .tns-outer {
  width: auto;
  margin-left: calc(-1 * var(--offset));
  margin-right: calc(-1 * var(--offset));
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50px, rgb(0, 0, 0) calc(100% - var(--offset)), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50px, rgb(0, 0, 0) calc(100% - var(--offset)), rgba(0, 0, 0, 0) 100%);
}
.carousel-outer .tns-outer .card {
  width: 250px;
}
.carousel-outer #carousel__controls .prev, .carousel-outer #carousel__controls .next {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  padding: 15px;
  transform: translateY(-50%);
  clip-path: url("#bg_carousel__nav");
  background-color: rgb(var(--dark-green));
  transition: height var(--trans-classic), width var(--trans-classic), margin var(--trans-classic), padding var(--trans-classic), background-color var(--trans-classic);
}
.carousel-outer #carousel__controls .prev svg, .carousel-outer #carousel__controls .next svg {
  width: 40px;
  height: 40px;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke: rgb(var(--light-green));
  fill: none;
  transition: height var(--trans-classic), width var(--trans-classic), stroke var(--trans-classic);
}
.carousel-outer #carousel__controls .prev[aria-disabled=true], .carousel-outer #carousel__controls .next[aria-disabled=true] {
  display: none;
}
.carousel-outer #carousel__controls .prev:hover, .carousel-outer #carousel__controls .next:hover {
  cursor: pointer;
  width: 90px;
  height: 90px;
  margin: -2.5px;
  padding: 20px;
  background-color: rgb(var(--light-green));
}
.carousel-outer #carousel__controls .prev:hover svg, .carousel-outer #carousel__controls .next:hover svg {
  width: 50px;
  height: 50px;
  stroke: rgb(var(--dark-green));
}
.carousel-outer #carousel__controls .prev {
  left: -30px;
}
.carousel-outer #carousel__controls .next {
  right: -30px;
}

.alert {
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
  background-color: rgb(var(--light-grey));
  margin: 20px 0;
}
.alert .buttons {
  display: flex;
  margin-top: 20px;
}
.alert .buttons .roundedbutton {
  margin-top: 0;
}
.alert .buttons .roundedbutton + .roundedbutton {
  margin-left: 20px;
}
.alert .buttons.center {
  justify-content: center;
}
.alert.alert--success {
  color: rgb(var(--dark-green));
  background-color: rgb(var(--light-green));
}
.alert.alert--danger {
  color: rgb(var(--dark-grey));
  background-color: rgb(var(--pink));
}

.blob-wrapper {
  --mwidth:500px;
  --ratio:1;
  position: relative;
  z-index: -1;
  max-width: var(--mwidth);
  aspect-ratio: var(--ratio);
}
.blob-wrapper.center {
  margin-left: auto;
  margin-right: auto;
}

.blob {
  --color1: rgb(var(--light-green));
  --color2: rgba(var(--light-green), .5);
  position: absolute;
  background-color: var(--color2);
  transform: translate(0, 0);
}
.blob::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  background-color: var(--color1);
  z-index: -1;
}
.blob::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: inherit;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.blob.blob--1 {
  border-radius: 40% 60% 44% 56%/46% 30% 70% 54%;
  top: -70px;
  left: -140px;
  right: -77px;
  bottom: -98px;
}
.blob.blob--1::before {
  top: 50px;
  left: 100px;
  right: 55px;
  bottom: 70px;
}
.blob.blob--1::after {
  top: 70px;
  left: 140px;
  right: 77px;
  bottom: 98px;
}
.blob.blob--1.blob--animated {
  animation: morph--blob1 50s infinite ease;
}
.blob.blob--1.blob--animated::before {
  animation: morph--blob1 50s infinite ease 1s backwards;
}
.blob.blob--1.blob--animated::after {
  animation: morph--blob1 50s infinite ease 2s backwards;
}
@keyframes morph--blob1 {
  0% {
    border-radius: 40% 60% 44% 56%/46% 30% 70% 54%;
  }
  25% {
    border-radius: 36% 64% 68% 32%/53% 44% 56% 47%;
  }
  50% {
    border-radius: 74% 26% 49% 51%/47% 64% 36% 53%;
  }
  75% {
    border-radius: 42% 58% 73% 27%/74% 51% 49% 26%;
  }
  100% {
    border-radius: 40% 60% 44% 56%/46% 30% 70% 54%;
  }
}
.blob.blob--2 {
  border-radius: 32% 68% 62% 38%/57% 50% 50% 43%;
  top: -70px;
  left: -140px;
  right: -77px;
  bottom: -98px;
}
.blob.blob--2::before {
  top: 50px;
  left: 100px;
  right: 55px;
  bottom: 70px;
}
.blob.blob--2::after {
  top: 70px;
  left: 140px;
  right: 77px;
  bottom: 98px;
}
.blob.blob--2.blob--animated {
  animation: morph--blob2 60s infinite ease;
}
.blob.blob--2.blob--animated::before {
  animation: morph--blob2 60s infinite ease 1s backwards;
}
.blob.blob--2.blob--animated::after {
  animation: morph--blob2 60s infinite ease 2s backwards;
}
@keyframes morph--blob2 {
  0% {
    border-radius: 32% 68% 62% 38%/57% 50% 50% 43%;
  }
  20% {
    border-radius: 33% 67% 46% 54%/32% 26% 74% 68%;
  }
  60% {
    border-radius: 70% 30% 68% 32%/40% 42% 58% 60%;
  }
  70% {
    border-radius: 66% 34% 38% 62%/55% 37% 63% 45%;
  }
  100% {
    border-radius: 32% 68% 62% 38%/57% 50% 50% 43%;
  }
}
.blob.blob--hero-home {
  border-radius: 40% 60% 44% 56%/46% 30% 70% 54%;
  top: -100px;
  left: -200px;
  right: -110px;
  bottom: -140px;
}
.blob.blob--hero-home::before {
  top: 70px;
  left: 140px;
  right: 77px;
  bottom: 98px;
}
.blob.blob--hero-home::after {
  top: 100px;
  left: 200px;
  right: 110px;
  bottom: 140px;
}
.blob.blob--hero-home.blob--animated {
  animation: morph--blob1 40s infinite ease;
}
.blob.blob--hero-home.blob--animated::before {
  animation: morph--blob1 40s infinite ease 1s backwards;
}
.blob.blob--hero-home.blob--animated::after {
  animation: morph--blob1 40s infinite ease 2s backwards;
}
@keyframes morph--blob1 {
  0% {
    border-radius: 40% 60% 44% 56%/46% 30% 70% 54%;
  }
  25% {
    border-radius: 36% 64% 68% 32%/53% 44% 56% 47%;
  }
  50% {
    border-radius: 74% 26% 49% 51%/47% 64% 36% 53%;
  }
  75% {
    border-radius: 42% 58% 73% 27%/74% 51% 49% 26%;
  }
  100% {
    border-radius: 40% 60% 44% 56%/46% 30% 70% 54%;
  }
}
.blob.blob--hero-1 {
  border-radius: 66% 34% 75% 25%/28% 72% 28% 72%;
  top: -100px;
  left: -200px;
  right: -110px;
  bottom: -140px;
}
.blob.blob--hero-1::before {
  top: 70px;
  left: 140px;
  right: 77px;
  bottom: 98px;
}
.blob.blob--hero-1::after {
  top: 100px;
  left: 200px;
  right: 110px;
  bottom: 140px;
}
.blob.blob--hero-1.blob--animated {
  animation: morph--blob2 55s infinite ease;
}
.blob.blob--hero-1.blob--animated::before {
  animation: morph--blob2 55s infinite ease 1s backwards;
}
.blob.blob--hero-1.blob--animated::after {
  animation: morph--blob2 55s infinite ease 2s backwards;
}
@keyframes morph--blob2 {
  0% {
    border-radius: 66% 34% 75% 25%/28% 72% 28% 72%;
  }
  20% {
    border-radius: 36% 64% 68% 32%/53% 44% 56% 47%;
  }
  60% {
    border-radius: 74% 26% 49% 51%/47% 64% 36% 53%;
  }
  80% {
    border-radius: 42% 58% 73% 27%/74% 51% 49% 26%;
  }
  100% {
    border-radius: 66% 34% 75% 25%/28% 72% 28% 72%;
  }
}
.blob.blob--hero-2 {
  border-radius: 32% 68% 27% 73%/58% 48% 52% 42%;
  top: -100px;
  left: -200px;
  right: -110px;
  bottom: -140px;
}
.blob.blob--hero-2::before {
  top: 70px;
  left: 140px;
  right: 77px;
  bottom: 98px;
}
.blob.blob--hero-2::after {
  top: 100px;
  left: 200px;
  right: 110px;
  bottom: 140px;
}
.blob.blob--hero-2.blob--animated {
  animation: morph--blob--hero-2 58s infinite ease;
}
.blob.blob--hero-2.blob--animated::before {
  animation: morph--blob--hero-2 58s infinite ease 1s backwards;
}
.blob.blob--hero-2.blob--animated::after {
  animation: morph--blob--hero-2 58s infinite ease 2s backwards;
}
@keyframes morph--blob--hero-2 {
  0% {
    border-radius: 32% 68% 27% 73%/58% 48% 52% 42%;
  }
  18% {
    border-radius: 31% 69% 31% 69%/70% 48% 52% 30%;
  }
  52% {
    border-radius: 39% 61% 49% 51%/65% 69% 31% 35%;
  }
  76% {
    border-radius: 70% 30% 61% 39%/71% 30% 70% 29%;
  }
  100% {
    border-radius: 32% 68% 27% 73%/58% 48% 52% 42%;
  }
}

.citation {
  font-family: var(--borel);
  position: relative;
}
.citation::before {
  content: "“";
  display: block;
  position: absolute;
  top: -30px;
  left: -20px;
  font-size: 128px;
  color: rgb(var(--light-green));
  z-index: -1;
}
.citation::after {
  content: "”";
  display: block;
  position: absolute;
  right: -20px;
  bottom: -210px;
  font-size: 128px;
  color: rgb(var(--light-green));
  z-index: -1;
}

ul.checklist {
  padding: 0;
  list-style-type: none;
}
ul.checklist li {
  position: relative;
  padding-left: 30px;
}
ul.checklist li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: rgb(var(--dark-green));
  clip-path: url("#checkbox");
}

.cv {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.cv .cv__line .line__type {
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--outfit);
  letter-spacing: 5%;
}
.cv .cv__line .line__desc {
  font-size: 14px;
  font-weight: 300;
  margin: -5px 0 0 0;
  font-family: var(--outfit);
}

.big-num {
  font-family: var(--borel);
  font-size: 96px;
  color: rgb(var(--dark-green));
  line-height: 10px;
  padding-top: 70px;
}

.t_center {
  text-align: center;
}

.v_center {
  margin-top: auto;
  margin-bottom: auto;
  align-content: center;
}

.copyright {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  color: rgb(var(--dark-green));
}
.copyright a {
  color: rgb(var(--dark-green)) !important;
  text-decoration: none;
}
.copyright a img {
  position: relative;
  top: 5px;
  margin-left: 5px;
}

@media only screen and (max-width: 600px) {
  :root {
    --header-logo-h: 110px;
    --header-padding-logo-t: 10px;
  }
  h1 {
    margin-bottom: 30px;
  }
  h1 .surtitle {
    font-size: 18px;
  }
  h1::after {
    margin-top: 15px;
  }
  header #header-logo {
    margin-left: 10px;
  }
  header #top-nav {
    margin-right: 10px;
  }
  header #top-nav .menu-icon {
    top: 0;
    right: 0;
  }
  article {
    margin-top: 0;
  }
  section {
    padding: 50px 20px;
  }
  section.hero {
    padding-bottom: 50px;
  }
  section.hero .content {
    padding-top: 250px;
  }
  section.hero .img {
    width: 100%;
    height: 300px;
    right: -20%;
    top: 100px;
  }
  section.hero.hero--home .content {
    padding-top: 250px;
  }
  section.hero.hero--home .content .details {
    font-size: 22px;
  }
  section.hero.hero--home .img {
    width: 140%;
    height: 600px;
    right: -30%;
  }
  section.hero.hero--home h1 {
    font-size: 34px;
    line-height: 46px;
  }
  footer #footer-logo {
    height: 150px;
    width: 150px;
  }
  footer .footer__inner {
    margin: 0 -200px;
    padding: 100px 220px 0;
  }
  footer .footer__inner .footer__invite {
    font-size: 20px;
    line-height: 30px;
  }
  footer .footer__inner .footer__bottom {
    margin: 0 -220px;
    padding: 50px 220px;
  }
  .title-bar.h2 {
    gap: 10px;
  }
  .title-bar.h2 .icon {
    flex: 0 0 60px;
  }
  .title-bar.h2 h2 {
    font-size: 24px;
    line-height: 34px;
    padding-top: 18px;
  }
  .grid-standard.gap, .grid-tc.gap, .grid-tpl.gap {
    grid-column-gap: 10px;
    grid-row-gap: 20px;
  }
  .grid-standard.cols-3_9, .grid-standard.cols-4_8, .grid-standard.cols-5_7, .grid-standard.cols-5_7, .grid-standard.cols-6_6, .grid-standard.cols-7_5, .grid-standard.cols-8_4, .grid-standard.cols-3_6_3, .grid-standard.cols-4_4_4, .grid-standard.cols-4_5_3, .grid-standard.cols-5_2_5, .grid-standard.cols-1_3_5_3, .grid-standard.cols-1_4_6_1, .grid-standard.cols-1_5_1_5, .grid-standard.cols-1_6_4_1, .grid-standard.cols-3_5_3_1, .grid-standard.cols-5_1_5_1, .grid-standard.cols-1_5_1_4_1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-areas: unset;
  }
  .grid-standard > *:nth-child(1) {
    grid-area: unset;
  }
  .grid-standard > *:nth-child(2) {
    grid-area: unset;
  }
  .grid-standard > *:nth-child(3) {
    grid-area: unset;
  }
  .grid-standard > *:nth-child(4) {
    grid-area: unset;
  }
  .grid-standard > *:nth-child(5) {
    grid-area: unset;
  }
  .grid-standard > *:nth-child(6) {
    grid-area: unset;
  }
  .grid-standard > .area-a {
    grid-area: unset;
  }
  .grid-standard > .area-b {
    grid-area: unset;
  }
  .grid-standard > .area-c {
    grid-area: unset;
  }
  .grid-standard > .area-d {
    grid-area: unset;
  }
  .grid-standard > .area-e {
    grid-area: unset;
  }
  .grid-standard > .area-f {
    grid-area: unset;
  }
  .grid-standard.mob-cols-12 {
    grid-template-areas: "a a a a a a a a a a a a";
  }
  .grid-standard.mob-cols-3_9 {
    grid-template-areas: "a a a b b b b b b b b b";
  }
  .grid-standard.mob-cols-4_8 {
    grid-template-areas: "a a a a b b b b b b b b";
  }
  .grid-standard.mob-cols-6_6 {
    grid-template-areas: "a a a a a a b b b b b b";
  }
  .grid-standard.mob-cols-7_5 {
    grid-template-areas: "a a a a a a a b b b b b";
  }
  .grid-standard.mob-cols-8_4 {
    grid-template-areas: "a a a a a a a a b b b b";
  }
  .grid-standard.mob-cols-9_3 {
    grid-template-areas: "a a a a a a a a a b b b";
  }
  .grid-standard.mob-cols-10_2 {
    grid-template-areas: "a a a a a a a a a a b b";
  }
  .grid-standard.mob-cols-3_3_3 {
    grid-template-areas: "a a a a b b b b c c c c";
  }
  .grid-standard .mob-area-a {
    grid-area: a;
  }
  .grid-standard .mob-area-b {
    grid-area: b;
  }
  .grid-standard .mob-area-c {
    grid-area: c;
  }
  .grid-standard .mob-area-d {
    grid-area: d;
  }
  .grid-tc.cols-2, .grid-tc.cols-3, .grid-tc.cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-tpl {
    --mob-tpl:
    	"a a a a a a"
    	"b b b b b b";
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: var(--mob-tpl);
  }
  .box {
    padding: 20px;
  }
  .carousel-outer #carousel__controls .prev {
    left: -10px;
  }
  .carousel-outer #carousel__controls .next {
    right: -10px;
  }
}/*# sourceMappingURL=global.css.map */