@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: white;
  padding: 0;
  transition: all 500ms ease;
}
.navbar.hidden {
  top: -200px;
}
.navbar .container {
  display: flex;
  height: var(--navbar-height);
  align-items: center;
  gap: 1.5rem;
  padding-inline: 42px;
}
@media screen and (max-width: 1197px) {
  .navbar .container {
    padding-inline: 24px;
  }
}
.navbar .navbar-brand {
  padding: 0;
  white-space: nowrap;
  align-items: center;
  display: flex;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.navbar .navbar-brand img {
  width: auto;
  height: 58px;
}
@media screen and (max-width: 1297px) {
  .navbar .navbar-brand img {
    height: 48px;
  }
}
.navbar .hamburger {
  margin-left: auto;
}
@media screen and (min-width: 1198px) {
  .navbar .hamburger {
    display: none;
  }
}
.navbar .hamburger:hover, .navbar .hamburger:focus {
  opacity: 1;
}
.navbar .hamburger .hamburger-inner {
  border-radius: 0;
  background-color: #6eadf3;
}
.navbar .hamburger .hamburger-inner::before {
  background-color: #215834;
  border-radius: 0;
}
.navbar .hamburger .hamburger-inner::after {
  border-radius: 0;
  background-color: #85a38f;
}
.navbar .hamburger.is-active .hamburger-inner::after {
  background-color: #215834;
}
.navbar .navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: -10px;
  margin-left: auto;
}
@media screen and (max-width: 1197px) {
  .navbar .navbar-menu {
    margin-top: 0;
  }
}
.navbar .navbar-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.navbar .navbar-item .arrow-icon {
  height: 40px;
  width: 50px;
  transform: rotate(180deg);
  visibility: hidden;
}
.navbar .navbar-item .arrow-icon path {
  stroke: #215834;
}
.navbar .navbar-item .navbar-dropdown-icon {
  background: url("/assets/icons/plus.svg");
  background-size: contain;
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(12%) saturate(1553%) hue-rotate(175deg) brightness(103%) contrast(96%);
  margin-left: 3px;
}
.navbar .navbar-item.has-dropdown::after {
  content: "";
  background: url("/assets/icons/plus.svg");
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1197px) {
  .navbar .navbar-item.has-dropdown::after {
    display: none;
  }
}
.navbar .navbar-item.is-active > .navbar-link, .navbar .navbar-item.has-dropdown.is-open > .navbar-link {
  color: #215834;
  background-color: transparent;
}
.navbar .navbar-item.is-active .navbar-dropdown-icon, .navbar .navbar-item.has-dropdown.is-open .navbar-dropdown-icon {
  filter: brightness(0) saturate(100%) invert(30%) sepia(32%) saturate(1455%) hue-rotate(77deg) brightness(94%) contrast(87%);
}
.navbar .navbar-item.has-dropdown.is-open > .navbar-dropdown {
  display: block;
}
.navbar .navbar-item.is-active {
  font-weight: 600;
}
.navbar .navbar-item.is-active .arrow-icon {
  visibility: visible;
}
.navbar .navbar-link {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  background: none;
  color: #6eadf3;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: false;
  text-transform: uppercase;
}
.navbar .navbar-link:hover, .navbar .navbar-link:focus {
  background-color: transparent;
  color: #215834;
}
@media screen and (max-width: 1297px) {
  .navbar .navbar-link {
    font-size: 1.3rem;
  }
}
.navbar .navbar-item--level-1 {
  --horizontal-multiplier: 0;
  --vertical-multiplier: 100%;
}
.navbar .navbar-item--level-2 {
  --horizontal-multiplier: 100%;
  --vertical-multiplier: 0;
}
.navbar .navbar-item--level-3 {
  --horizontal-multiplier: 0;
  --vertical-multiplier: 100%;
}
.navbar .navbar-item--level-4 {
  --horizontal-multiplier: 100%;
  --vertical-multiplier: 0;
}
.navbar .navbar-dropdown {
  display: none;
  position: absolute;
  z-index: 20;
  transition-property: opacity, transform;
  transition-duration: 300ms;
  will-change: opacity, transform;
}
.navbar .navbar-dropdown.open-left {
  left: var(--horizontal-multiplier);
}
.navbar .navbar-dropdown.open-right {
  right: var(--horizontal-multiplier);
}
.navbar .navbar-dropdown.open-down {
  top: var(--vertical-multiplier);
}
.navbar .navbar-dropdown.open-up {
  bottom: var(--vertical-multiplier);
}
.navbar .navbar-dropdown .navbar-dropdown-content {
  background-color: white;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1197px) {
  .navbar .navbar-dropdown .navbar-dropdown-content {
    background-color: transparent;
    padding-left: 20px;
  }
}
.navbar .navbar-dropdown .navbar-link {
  white-space: nowrap;
  font-size: 1.6rem;
  padding: 0.25rem 0.75rem;
}
@media screen and (max-width: 1297px) {
  .navbar .navbar-dropdown .navbar-link {
    font-size: 1.3rem;
  }
}
.navbar .navbar-dropdown > .navbar-item:hover > .navbar-link, .navbar .navbar-dropdown > .navbar-item:focus > .navbar-link, .navbar .navbar-dropdown > .navbar-item:focus-within > .navbar-link {
  background-color: #e6e6e6;
  color: #215834;
}
.navbar .navbar-dropdown > .navbar-item.is-active > .navbar-link {
  background-color: transparent;
  color: #215834;
}
.navbar .navbar-dropdown .navbar-item:first-child .navbar-dropdown {
  margin-top: -0.5rem;
}
@media screen and (max-width: 1197px) {
  .navbar .navbar-menu {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    background: white;
    padding: 0 24px;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  .navbar .navbar-menu.is-active {
    display: block;
  }
  .navbar .navbar-menu .navbar-dropdown {
    position: static;
    display: block;
    transform: none !important;
    background-color: transparent !important;
  }
}
.navbar .navbar-menu .navbar-dropdown.is-active {
  display: block;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-delayed {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-up-fade-in {
  0% {
    opacity: 0;
    transform: translate(0, 40px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.has-hover-scale-up .wrap {
  transition: all 500ms ease;
}
.has-hover-scale-up:hover .wrap {
  transform: scale(1.2);
}

/* example like the website given, but doesn0t work since we need different colors */
.blue-light2-bg .reveal-bottom .reveal-mask {
  background: #92c2f6;
}

.reveal-bottom {
  position: relative;
  overflow: hidden;
  display: block;
  --wipe-duration: 1.2s;
  /* tempo da animação */
  --zoom-to: 1.01;
  /* intensidade do zoom */
  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Imagem que vai fazer zoom */
.reveal-bottom .image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

/* Máscara inicial que cobre tudo */
.reveal-bottom .reveal-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--wipe-color, #111);
  z-index: 2;
  will-change: height;
  pointer-events: none;
}

/* Ativa com AOS */
[data-aos=reveal-slide].aos-animate .reveal-mask {
  animation: mask-slide var(--wipe-duration) var(--easing) forwards;
}

[data-aos=reveal-slide].aos-animate .image {
  animation: img-zoom 0.8s var(--easing) forwards;
  animation-delay: 0.5s;
}

/* Keyframes */
@keyframes mask-slide {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes img-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(var(--zoom-to));
  }
}
/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  [data-aos=reveal-slide] .reveal-mask {
    animation: none !important;
    height: 0;
  }

  [data-aos=reveal-slide] .image {
    animation: none !important;
    transform: none;
  }
}
* {
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
*::after, *::before {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

img {
  border: 0;
  max-width: 100%;
  display: block;
}

textarea {
  resize: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
a:active, a:hover {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

li {
  list-style: none;
}

u {
  text-decoration: underline;
}

::-webkit-file-upload-button {
  cursor: pointer;
}

input[type=text],
input[type=password],
textarea {
  -webkit-appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

iframe {
  border: none;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.columns.is-mobile > .column.is-narrow {
  flex: none;
  width: unset;
}
.columns.is-mobile > .column.is-full {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-three-quarters {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}
.columns.is-mobile > .column.is-half {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-one-third {
  flex: none;
  width: 33.3333%;
}
.columns.is-mobile > .column.is-one-quarter {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-one-fifth {
  flex: none;
  width: 20%;
}
.columns.is-mobile > .column.is-two-fifths {
  flex: none;
  width: 40%;
}
.columns.is-mobile > .column.is-three-fifths {
  flex: none;
  width: 60%;
}
.columns.is-mobile > .column.is-four-fifths {
  flex: none;
  width: 80%;
}
.columns.is-mobile > .column.is-offset-three-quarters {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-offset-two-thirds {
  margin-left: 66.6666%;
}
.columns.is-mobile > .column.is-offset-half {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-offset-one-third {
  margin-left: 33.3333%;
}
.columns.is-mobile > .column.is-offset-one-quarter {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-offset-one-fifth {
  margin-left: 20%;
}
.columns.is-mobile > .column.is-offset-two-fifths {
  margin-left: 40%;
}
.columns.is-mobile > .column.is-offset-three-fifths {
  margin-left: 60%;
}
.columns.is-mobile > .column.is-offset-four-fifths {
  margin-left: 80%;
}
.columns.is-mobile > .column.is-0 {
  flex: none;
  width: 0%;
}
.columns.is-mobile > .column.is-offset-0 {
  margin-left: 0%;
}
.columns.is-mobile > .column.is-1 {
  flex: none;
  width: 8.3333333333%;
}
.columns.is-mobile > .column.is-offset-1 {
  margin-left: 8.3333333333%;
}
.columns.is-mobile > .column.is-2 {
  flex: none;
  width: 16.6666666667%;
}
.columns.is-mobile > .column.is-offset-2 {
  margin-left: 16.6666666667%;
}
.columns.is-mobile > .column.is-3 {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-offset-3 {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-4 {
  flex: none;
  width: 33.3333333333%;
}
.columns.is-mobile > .column.is-offset-4 {
  margin-left: 33.3333333333%;
}
.columns.is-mobile > .column.is-5 {
  flex: none;
  width: 41.6666666667%;
}
.columns.is-mobile > .column.is-offset-5 {
  margin-left: 41.6666666667%;
}
.columns.is-mobile > .column.is-6 {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-offset-6 {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-7 {
  flex: none;
  width: 58.3333333333%;
}
.columns.is-mobile > .column.is-offset-7 {
  margin-left: 58.3333333333%;
}
.columns.is-mobile > .column.is-8 {
  flex: none;
  width: 66.6666666667%;
}
.columns.is-mobile > .column.is-offset-8 {
  margin-left: 66.6666666667%;
}
.columns.is-mobile > .column.is-9 {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-offset-9 {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-10 {
  flex: none;
  width: 83.3333333333%;
}
.columns.is-mobile > .column.is-offset-10 {
  margin-left: 83.3333333333%;
}
.columns.is-mobile > .column.is-11 {
  flex: none;
  width: 91.6666666667%;
}
.columns.is-mobile > .column.is-offset-11 {
  margin-left: 91.6666666667%;
}
.columns.is-mobile > .column.is-12 {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-offset-12 {
  margin-left: 100%;
}
@media screen and (max-width: 767px) {
  .column.is-narrow-mobile {
    flex: none;
    width: unset;
  }
  .column.is-full-mobile {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-mobile {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-mobile {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-mobile {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-mobile {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-mobile {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-mobile {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-mobile {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-mobile {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-mobile {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-mobile {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-mobile {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-mobile {
    margin-left: 50%;
  }
  .column.is-offset-one-third-mobile {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-mobile {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-mobile {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-mobile {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-mobile {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-mobile {
    margin-left: 80%;
  }
  .column.is-0-mobile {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-mobile {
    margin-left: 0%;
  }
  .column.is-1-mobile {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-mobile {
    margin-left: 8.3333333333%;
  }
  .column.is-2-mobile {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-mobile {
    margin-left: 16.6666666667%;
  }
  .column.is-3-mobile {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-mobile {
    margin-left: 25%;
  }
  .column.is-4-mobile {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-mobile {
    margin-left: 33.3333333333%;
  }
  .column.is-5-mobile {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-mobile {
    margin-left: 41.6666666667%;
  }
  .column.is-6-mobile {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-mobile {
    margin-left: 50%;
  }
  .column.is-7-mobile {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-mobile {
    margin-left: 58.3333333333%;
  }
  .column.is-8-mobile {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-mobile {
    margin-left: 66.6666666667%;
  }
  .column.is-9-mobile {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-mobile {
    margin-left: 75%;
  }
  .column.is-10-mobile {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-mobile {
    margin-left: 83.3333333333%;
  }
  .column.is-11-mobile {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-mobile {
    margin-left: 91.6666666667%;
  }
  .column.is-12-mobile {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-mobile {
    margin-left: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .column.is-narrow, .column.is-narrow-tablet {
    flex: none;
    width: unset;
  }
  .column.is-full, .column.is-full-tablet {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters, .column.is-three-quarters-tablet {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds, .column.is-two-thirds-tablet {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half, .column.is-half-tablet {
    flex: none;
    width: 50%;
  }
  .column.is-one-third, .column.is-one-third-tablet {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter, .column.is-one-quarter-tablet {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth, .column.is-one-fifth-tablet {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths, .column.is-two-fifths-tablet {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths, .column.is-three-fifths-tablet {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths, .column.is-four-fifths-tablet {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
    margin-left: 66.6666%;
  }
  .column.is-offset-half, .column.is-offset-half-tablet {
    margin-left: 50%;
  }
  .column.is-offset-one-third, .column.is-offset-one-third-tablet {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
    margin-left: 80%;
  }
  .column.is-0, .column.is-0-tablet {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0, .column.is-offset-0-tablet {
    margin-left: 0%;
  }
  .column.is-1, .column.is-1-tablet {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1, .column.is-offset-1-tablet {
    margin-left: 8.3333333333%;
  }
  .column.is-2, .column.is-2-tablet {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2, .column.is-offset-2-tablet {
    margin-left: 16.6666666667%;
  }
  .column.is-3, .column.is-3-tablet {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3, .column.is-offset-3-tablet {
    margin-left: 25%;
  }
  .column.is-4, .column.is-4-tablet {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4, .column.is-offset-4-tablet {
    margin-left: 33.3333333333%;
  }
  .column.is-5, .column.is-5-tablet {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5, .column.is-offset-5-tablet {
    margin-left: 41.6666666667%;
  }
  .column.is-6, .column.is-6-tablet {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6, .column.is-offset-6-tablet {
    margin-left: 50%;
  }
  .column.is-7, .column.is-7-tablet {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7, .column.is-offset-7-tablet {
    margin-left: 58.3333333333%;
  }
  .column.is-8, .column.is-8-tablet {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8, .column.is-offset-8-tablet {
    margin-left: 66.6666666667%;
  }
  .column.is-9, .column.is-9-tablet {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9, .column.is-offset-9-tablet {
    margin-left: 75%;
  }
  .column.is-10, .column.is-10-tablet {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10, .column.is-offset-10-tablet {
    margin-left: 83.3333333333%;
  }
  .column.is-11, .column.is-11-tablet {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11, .column.is-offset-11-tablet {
    margin-left: 91.6666666667%;
  }
  .column.is-12, .column.is-12-tablet {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12, .column.is-offset-12-tablet {
    margin-left: 100%;
  }
}
@media screen and (max-width: 1197px) {
  .column.is-narrow-touch {
    flex: none;
    width: unset;
  }
  .column.is-full-touch {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-touch {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-touch {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-touch {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-touch {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-touch {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-touch {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-touch {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-touch {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-touch {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-touch {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-touch {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-touch {
    margin-left: 50%;
  }
  .column.is-offset-one-third-touch {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-touch {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-touch {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-touch {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-touch {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-touch {
    margin-left: 80%;
  }
  .column.is-0-touch {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-touch {
    margin-left: 0%;
  }
  .column.is-1-touch {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-touch {
    margin-left: 8.3333333333%;
  }
  .column.is-2-touch {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-touch {
    margin-left: 16.6666666667%;
  }
  .column.is-3-touch {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-touch {
    margin-left: 25%;
  }
  .column.is-4-touch {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-touch {
    margin-left: 33.3333333333%;
  }
  .column.is-5-touch {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-touch {
    margin-left: 41.6666666667%;
  }
  .column.is-6-touch {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-touch {
    margin-left: 50%;
  }
  .column.is-7-touch {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-touch {
    margin-left: 58.3333333333%;
  }
  .column.is-8-touch {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-touch {
    margin-left: 66.6666666667%;
  }
  .column.is-9-touch {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-touch {
    margin-left: 75%;
  }
  .column.is-10-touch {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-touch {
    margin-left: 83.3333333333%;
  }
  .column.is-11-touch {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-touch {
    margin-left: 91.6666666667%;
  }
  .column.is-12-touch {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-touch {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1198px) {
  .column.is-narrow-desktop {
    flex: none;
    width: unset;
  }
  .column.is-full-desktop {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-desktop {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-desktop {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-desktop {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-desktop {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-desktop {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-desktop {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-desktop {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-desktop {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-desktop {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-desktop {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-desktop {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-desktop {
    margin-left: 50%;
  }
  .column.is-offset-one-third-desktop {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-desktop {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-desktop {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-desktop {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-desktop {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-desktop {
    margin-left: 80%;
  }
  .column.is-0-desktop {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-desktop {
    margin-left: 0%;
  }
  .column.is-1-desktop {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-desktop {
    margin-left: 8.3333333333%;
  }
  .column.is-2-desktop {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-desktop {
    margin-left: 16.6666666667%;
  }
  .column.is-3-desktop {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-desktop {
    margin-left: 25%;
  }
  .column.is-4-desktop {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-desktop {
    margin-left: 33.3333333333%;
  }
  .column.is-5-desktop {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-desktop {
    margin-left: 41.6666666667%;
  }
  .column.is-6-desktop {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-desktop {
    margin-left: 50%;
  }
  .column.is-7-desktop {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-desktop {
    margin-left: 58.3333333333%;
  }
  .column.is-8-desktop {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-desktop {
    margin-left: 66.6666666667%;
  }
  .column.is-9-desktop {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-desktop {
    margin-left: 75%;
  }
  .column.is-10-desktop {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-desktop {
    margin-left: 83.3333333333%;
  }
  .column.is-11-desktop {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-desktop {
    margin-left: 91.6666666667%;
  }
  .column.is-12-desktop {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-desktop {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1298px) {
  .column.is-narrow-widescreen {
    flex: none;
    width: unset;
  }
  .column.is-full-widescreen {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-widescreen {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-widescreen {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-widescreen {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-widescreen {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-widescreen {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-widescreen {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-widescreen {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-widescreen {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-widescreen {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-widescreen {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-widescreen {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-widescreen {
    margin-left: 50%;
  }
  .column.is-offset-one-third-widescreen {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-widescreen {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-widescreen {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-widescreen {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-widescreen {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-widescreen {
    margin-left: 80%;
  }
  .column.is-0-widescreen {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-widescreen {
    margin-left: 0%;
  }
  .column.is-1-widescreen {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-widescreen {
    margin-left: 8.3333333333%;
  }
  .column.is-2-widescreen {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-widescreen {
    margin-left: 16.6666666667%;
  }
  .column.is-3-widescreen {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-widescreen {
    margin-left: 25%;
  }
  .column.is-4-widescreen {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-widescreen {
    margin-left: 33.3333333333%;
  }
  .column.is-5-widescreen {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-widescreen {
    margin-left: 41.6666666667%;
  }
  .column.is-6-widescreen {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-widescreen {
    margin-left: 50%;
  }
  .column.is-7-widescreen {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-widescreen {
    margin-left: 58.3333333333%;
  }
  .column.is-8-widescreen {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-widescreen {
    margin-left: 66.6666666667%;
  }
  .column.is-9-widescreen {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-widescreen {
    margin-left: 75%;
  }
  .column.is-10-widescreen {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-widescreen {
    margin-left: 83.3333333333%;
  }
  .column.is-11-widescreen {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-widescreen {
    margin-left: 91.6666666667%;
  }
  .column.is-12-widescreen {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-widescreen {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .column.is-narrow-fullhd {
    flex: none;
    width: unset;
  }
  .column.is-full-fullhd {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-fullhd {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-fullhd {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-fullhd {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-fullhd {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-fullhd {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-fullhd {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-fullhd {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-fullhd {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-fullhd {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-fullhd {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-fullhd {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-fullhd {
    margin-left: 50%;
  }
  .column.is-offset-one-third-fullhd {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-fullhd {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-fullhd {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-fullhd {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-fullhd {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-fullhd {
    margin-left: 80%;
  }
  .column.is-0-fullhd {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-fullhd {
    margin-left: 0%;
  }
  .column.is-1-fullhd {
    flex: none;
    width: 8.3333333333%;
  }
  .column.is-offset-1-fullhd {
    margin-left: 8.3333333333%;
  }
  .column.is-2-fullhd {
    flex: none;
    width: 16.6666666667%;
  }
  .column.is-offset-2-fullhd {
    margin-left: 16.6666666667%;
  }
  .column.is-3-fullhd {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-fullhd {
    margin-left: 25%;
  }
  .column.is-4-fullhd {
    flex: none;
    width: 33.3333333333%;
  }
  .column.is-offset-4-fullhd {
    margin-left: 33.3333333333%;
  }
  .column.is-5-fullhd {
    flex: none;
    width: 41.6666666667%;
  }
  .column.is-offset-5-fullhd {
    margin-left: 41.6666666667%;
  }
  .column.is-6-fullhd {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-fullhd {
    margin-left: 50%;
  }
  .column.is-7-fullhd {
    flex: none;
    width: 58.3333333333%;
  }
  .column.is-offset-7-fullhd {
    margin-left: 58.3333333333%;
  }
  .column.is-8-fullhd {
    flex: none;
    width: 66.6666666667%;
  }
  .column.is-offset-8-fullhd {
    margin-left: 66.6666666667%;
  }
  .column.is-9-fullhd {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-fullhd {
    margin-left: 75%;
  }
  .column.is-10-fullhd {
    flex: none;
    width: 83.3333333333%;
  }
  .column.is-offset-10-fullhd {
    margin-left: 83.3333333333%;
  }
  .column.is-11-fullhd {
    flex: none;
    width: 91.6666666667%;
  }
  .column.is-offset-11-fullhd {
    margin-left: 91.6666666667%;
  }
  .column.is-12-fullhd {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-fullhd {
    margin-left: 100%;
  }
}

.columns {
  margin: calc(-1 * 0.75rem);
  margin-bottom: 0;
}
.columns:last-child {
  margin-bottom: calc(-1 * 0.75rem);
}
.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}
.columns.is-centered {
  justify-content: center;
}
.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.columns.is-gapless > .column {
  margin: 0;
  padding: 0 !important;
}
.columns.is-gapless:not(:last-child) {
  margin-bottom: 1.5rem;
}
.columns.is-gapless:last-child {
  margin-bottom: 0;
}
.columns.is-mobile {
  display: flex;
}
.columns.is-multiline {
  flex-wrap: wrap;
}
.columns.is-vcentered {
  align-items: center;
}
@media screen and (min-width: 768px), print {
  .columns:not(.is-desktop) {
    display: flex;
  }
}
@media screen and (min-width: 1198px) {
  .columns.is-desktop {
    display: flex;
  }
}

.form-message {
  text-align: center;
}
.form-message.has-text-success {
  color: #0f0;
}
.form-message.has-text-danger {
  color: #f00;
}

form {
  /*------- Checkmark ---------*/
  /*---------- Cross ----------*/
}
form .help {
  display: inline-block;
  font-size: 1.2rem;
  opacity: 0.8;
}
form .input-error {
  border: solid 1px #f00 !important;
}
form .input-error + .button {
  background: #f00 !important;
}
form .svg-box {
  display: inline-block;
  position: relative;
  width: 150px;
}
form .green-stroke {
  stroke: #0f0;
}
form .red-stroke {
  stroke: #f00;
}
form .yellow-stroke {
  stroke: #ffc107;
}
form .circular circle.path {
  stroke-dasharray: 330;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: 0.7s draw-circle ease-out;
}
form svg.checkmark {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 56px;
  left: 49px;
  width: 52px;
  height: 40px;
}
form svg.checkmark path {
  animation: 1s draw-check ease-out;
}
@keyframes draw-circle {
  0% {
    stroke-dasharray: 0, 330;
    stroke-dashoffset: 0;
    opacity: 1;
  }
  80% {
    stroke-dasharray: 330, 330;
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes draw-check {
  0% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 0;
  }
  50% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 1;
  }
  100% {
    stroke-dasharray: 130, 80;
    stroke-dashoffset: 48;
  }
}
form .cross {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 54px;
  left: 54px;
  width: 40px;
  height: 40px;
}
form .cross .first-line {
  animation: 0.7s draw-first-line ease-out;
}
form .cross .second-line {
  animation: 0.7s draw-second-line ease-out;
}
@keyframes draw-first-line {
  0% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 56, 330;
    stroke-dashoffset: 0;
  }
}
@keyframes draw-second-line {
  0% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  50% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  100% {
    stroke-dasharray: 55, 0;
    stroke-dashoffset: 70;
  }
}
form .alert-sign {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 40px;
  left: 68px;
  width: 15px;
  height: 70px;
  animation: 0.5s alert-sign-bounce cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
form .alert-sign .dot {
  stroke: none;
  fill: #ffc107;
}
@keyframes alert-sign-bounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.dynamic-form .header-text {
  font-size: 1.8rem;
  color: #215834;
  line-height: 1.2;
  font-weight: 400;
  padding: 0;
}
.dynamic-form .footer-text {
  font-size: 1.8rem;
  color: #215834;
  line-height: 1.2;
  font-weight: 400;
  padding: 0;
}
.dynamic-form .fields-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}
.dynamic-form .fields-grid .size-1 {
  grid-column: span 1;
}
.dynamic-form .fields-grid .size-2 {
  grid-column: span 2;
}
.dynamic-form .fields-grid .size-3 {
  grid-column: span 3;
}
.dynamic-form .fields-grid .size-4 {
  grid-column: span 4;
}
.dynamic-form .fields-grid .size-5 {
  grid-column: span 5;
}
.dynamic-form .fields-grid .size-6 {
  grid-column: span 6;
}
.dynamic-form .fields-grid .size-7 {
  grid-column: span 7;
}
.dynamic-form .fields-grid .size-8 {
  grid-column: span 8;
}
.dynamic-form .fields-grid .size-9 {
  grid-column: span 9;
}
.dynamic-form .fields-grid .size-10 {
  grid-column: span 10;
}
.dynamic-form .fields-grid .size-11 {
  grid-column: span 11;
}
.dynamic-form .fields-grid .size-12 {
  grid-column: span 12;
}
.dynamic-form .fields-grid .line-break {
  grid-column-end: -1;
}
.dynamic-form .fields-grid .size-12 + .line-break {
  display: none;
}
.dynamic-form .ay-label {
  display: block;
}
.dynamic-form .ay-control {
  display: block;
  width: 100%;
}
.dynamic-form .ay-input,
.dynamic-form .ay-select select,
.dynamic-form .ay-textarea {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}
.dynamic-form .ay-textarea {
  min-height: 135px;
}
.dynamic-form .ay-select {
  position: relative;
  display: flex;
  align-items: center;
}
.dynamic-form .ay-select::after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: currentColor transparent transparent transparent;
  transform: rotate(0deg);
  position: absolute;
  right: 16px;
}
.dynamic-form .ay-select select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}
.dynamic-form .ay-upload {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.dynamic-form .ay-upload input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.dynamic-form .ay-upload + .files-list {
  display: flex;
}
.dynamic-form .ay-upload + .files-list .remove-btn {
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}
.dynamic-form .form-button-holder {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.dynamic-form .help {
  padding-top: 8px;
}

#cookies-info {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  color: #ffffff;
  z-index: 8000;
  display: none;
}
#cookies-info:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(33, 88, 52, 0.85);
}
#cookies-info .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #cookies-info .container {
    flex-direction: column;
  }
}
#cookies-info .title {
  font-size: 18px;
  padding-bottom: 4px;
}
#cookies-info .text {
  font-size: 16px;
}
#cookies-info .text a {
  text-decoration: underline;
}
#cookies-info #cookies-info-accept {
  background: #6eadf3;
  color: #215834;
  padding: 6px 15px;
  margin-left: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: uppercase;
}
@media screen and (max-width: 767px) {
  #cookies-info #cookies-info-accept {
    margin: 10px 0 0 0;
  }
}

h1 {
  font-size: 7.5rem;
}
@media screen and (max-height: 850px) {
  h1 {
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 1439px) {
  h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 998px) {
  h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 580px) {
  h1 {
    font-size: 3.5rem;
  }
}

.content ol li {
  list-style: decimal;
}
.content ul li {
  list-style: disc;
}

.banner {
  position: relative;
  height: calc(100vh - 180px);
  overflow: hidden;
}
@media screen and (max-width: 580px) {
  .banner {
    height: calc(100vh - 132px);
  }
}
.banner .asset {
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 400px;
}
@media screen and (max-width: 998px) {
  .banner .asset {
    height: 100%;
    min-height: 500px;
  }
}
@media screen and (max-width: 580px) {
  .banner .asset {
    height: calc(100vh - 132px);
  }
}
.banner .asset .image {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  transform: translateY(calc(var(--scroll, 0px) * 0.3));
}
@media screen and (max-width: 998px) {
  .banner .asset .image {
    max-height: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
  }
}
.banner .asset .video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.banner .contrast-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.banner .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.banner .text-group {
  height: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8rem;
  animation-duration: 1s;
  padding-top: 120px;
  line-height: 1.25;
}
@media screen and (max-height: 860px) {
  .banner .text-group {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1297px) {
  .banner .text-group {
    gap: 5rem;
  }
}
@media screen and (max-width: 1197px) {
  .banner .text-group {
    padding-top: 60px;
    gap: 3rem;
  }
}
@media screen and (max-width: 998px) {
  .banner .text-group {
    padding-top: 160px;
  }
}
.banner .text-group .subtitle {
  font-size: 4.2rem;
}
@media screen and (max-width: 1297px) {
  .banner .text-group .subtitle {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1197px) {
  .banner .text-group .subtitle {
    font-size: 2.2rem;
    padding-right: 20px;
  }
}
@media screen and (max-width: 998px) {
  .banner .text-group .subtitle br {
    display: none;
  }
  .banner .text-group .subtitle br::after {
    content: " ";
    /* adds a space when <br> is hidden */
  }
}
.banner .text-group.is-fade {
  animation-name: fade-in-delayed;
}
.banner .text-group.is-slide {
  animation-name: slide-up-fade-in;
}
.banner .text-group strong,
.banner .text-group a {
  color: #ffffff;
}
.banner .content-block .container {
  display: flex;
  align-items: flex-end;
  height: fit-content;
  top: 90px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 998px) {
  .banner .content-block .container {
    transform: none;
    padding-top: var(--section-padding);
    top: 0;
  }
}
.banner.has-content {
  overflow: initial;
}
@media screen and (max-width: 998px) {
  .banner.has-content .asset {
    position: absolute;
  }
}
@media screen and (max-width: 998px) {
  .banner.has-content .container {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
  }
}

.page-banner {
  position: relative;
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
}
.page-banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1197px) {
  .page-banner {
    height: 230px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner {
    height: 150px;
  }
}

.grid-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.grid-pagination .page-item {
  background-color: white;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  margin: 0 0.8rem;
  transition: all 0.2s linear;
}
.grid-pagination .page-item.active, .grid-pagination .page-item:hover {
  background-color: #215834;
  color: white;
}
.grid-pagination .load-more {
  background-color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  transition: all 0.2s linear;
}
.grid-pagination .load-more:hover {
  background-color: #215834;
  color: white;
}

.slideshow {
  width: 100%;
  height: 100%;
}
.slideshow .swiper-wrapper {
  height: fit-content;
}
.slideshow .swiper-slide {
  height: 100%;
}
.slideshow .slideshow-button-next,
.slideshow .slideshow-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background: #fff;
  margin-top: -25px;
  cursor: pointer;
}
.slideshow .slideshow-button-next {
  left: auto;
  right: 0;
}
.slideshow .slideshow-pagination {
  position: absolute;
  width: 100%;
  bottom: 8%;
  left: 0;
  display: flex !important;
  justify-content: center;
  z-index: 10;
}
.slideshow .slideshow-pagination .swiper-pagination-bullet {
  margin: 0 8px;
  font-size: 0;
  border-radius: 6px;
  background: #ffffff;
  width: 12px;
  height: 12px;
  border: none;
  opacity: 0.6;
  cursor: pointer;
}
.slideshow .slideshow-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6eadf3;
}

.social-networks {
  display: flex;
}
.social-networks a {
  opacity: 1;
  transition: opacity 150ms ease-out;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-networks a:hover, .social-networks a:focus {
  opacity: 0.8;
}
.social-networks a:not(:last-child) {
  margin-right: 2rem;
}
.social-networks a img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 998px) {
  .social-networks a {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 1198px) {
  .offset-container-left,
.offset-container {
    padding-left: calc((100% - 1198px) / 2 + 24px) !important;
  }
}
@media screen and (min-width: 1298px) {
  .offset-container-left:not(.is-max-desktop),
.offset-container:not(.is-max-desktop) {
    padding-left: calc((100% - 1298px) / 2 + 24px) !important;
  }
}
@media screen and (min-width: 1440px) {
  .offset-container-left:not(.is-max-desktop):not(.is-max-widescreen),
.offset-container:not(.is-max-desktop):not(.is-max-widescreen) {
    padding-left: calc((100% - 1440px) / 2 + 24px) !important;
  }
}

@media screen and (min-width: 1198px) {
  .offset-container-right {
    padding-right: calc((100% - 1198px) / 2 + 24px) !important;
  }
}
@media screen and (min-width: 1298px) {
  .offset-container-right:not(.is-max-desktop) {
    padding-right: calc((100% - 1298px) / 2 + 24px) !important;
  }
}
@media screen and (min-width: 1440px) {
  .offset-container-right:not(.is-max-desktop):not(.is-max-widescreen) {
    padding-right: calc((100% - 1440px) / 2 + 24px) !important;
  }
}

.container {
  padding-inline: 94px;
  margin: 0 auto;
  position: relative;
}
.container.is-fluid {
  max-width: none !important;
  width: 100%;
}
@media screen and (min-width: 1198px) {
  .container {
    max-width: 1198px;
  }
}
@media screen and (max-width: 1197px) {
  .container {
    padding-inline: 24px;
  }
}
.container.is-max-desktop {
  max-width: 1198px !important;
}
.container.is-max-widescreen {
  max-width: 1298px !important;
}
@media screen and (min-width: 1298px) {
  .container {
    max-width: 1298px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 580px) {
  .container {
    padding-inline: 24px;
  }
}

.divider-lines {
  width: 100%;
}
.divider-lines .divider-line {
  height: var(--divider-height);
}
.divider-lines .divider-line.small {
  height: var(--divider-height-small);
}
.divider-lines .divider-line.large {
  height: var(--divider-height-large);
}
.divider-lines .divider-line.huge {
  height: var(--divider-height-huge);
}

.page-title {
  color: #6eadf3;
  font-size: 5.8rem;
  font-weight: 200;
  line-height: 1;
}

.section-title {
  color: #6eadf3;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.card {
  word-break: break-word;
  background-color: #ffffff;
  --columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: 0px;
}
@media screen and (max-width: 998px) {
  .card {
    margin-top: 0;
    --columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
    gap: 0px;
  }
}
.card .left,
.card .right {
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 580px) {
  .card .left,
.card .right {
    padding: 15px;
  }
}
@media screen and (max-width: 580px) {
  .card .left.square-ratio-mobile,
.card .right.square-ratio-mobile {
    aspect-ratio: 1;
  }
}
.card .left.no-padding,
.card .right.no-padding {
  padding: 0;
}
.card .left.no-padding .title,
.card .left.no-padding .subtitle,
.card .right.no-padding .title,
.card .right.no-padding .subtitle {
  padding: 24px;
}
@media screen and (max-width: 580px) {
  .card .left.no-padding .title,
.card .left.no-padding .subtitle,
.card .right.no-padding .title,
.card .right.no-padding .subtitle {
    padding: 15px;
  }
}
@media screen and (max-width: 580px) {
  .card .left,
.card .right {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
.card .title {
  font-size: 7.5rem;
  flex: 1;
  line-height: 1;
}
@media screen and (max-width: 1297px) {
  .card .title {
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 998px) {
  .card .title {
    font-size: 4.6rem;
    flex: none;
  }
}
.card .subtitle {
  font-size: 3.8rem;
  flex: 1;
  line-height: 1.1;
}
@media screen and (max-width: 1297px) {
  .card .subtitle {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 998px) {
  .card .subtitle {
    font-size: 2rem;
    flex: none;
  }
}
.card .content {
  font-size: 2.4rem;
}
@media screen and (max-width: 1297px) {
  .card .content {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1197px) {
  .card .content {
    font-size: 1.6rem;
  }
}
.card .content p {
  position: relative;
  padding: 24px;
}
@media screen and (max-width: 998px) {
  .card .content p {
    padding: 15px;
  }
}
.card .content p span {
  display: block;
}
.card .content p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background-color: #215834;
  /* Animation from center */
  transition: width 0.5s ease-in-out 300ms;
}
.card .content p.aos-animate::before {
  width: 100%;
}
.card .content p:last-child {
  border-bottom: 0;
}
.card .content p:last-child::before {
  display: none;
}
.card .intro-text {
  border-bottom: 2px solid #215834;
  text-wrap: balance;
}
.card .footer-group {
  display: flex;
}
@media screen and (max-width: 580px) {
  .card .footer-group {
    display: block;
  }
}
.card .footer-group p {
  text-wrap: balance;
  font-size: 1.7rem;
}
.card .footer-group a:hover {
  text-decoration: underline;
}
.card .footer-group .future {
  width: 60%;
  display: flex;
  align-items: flex-start;
  border-right: 2px solid #215834;
}
@media screen and (max-width: 580px) {
  .card .footer-group .future {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #215834;
    padding-block: 1.5rem;
  }
}
.card .footer-group .future svg {
  width: 52px;
  flex: none;
  margin-top: 3px;
  stroke-width: 2px;
}
@media screen and (max-width: 580px) {
  .card .footer-group .future svg {
    width: 26px;
    height: 26px;
    margin-left: 18px;
  }
}
.card .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 998px) {
  .card .image {
    object-fit: cover;
    object-position: top;
  }
}
@media screen and (max-width: 580px) {
  .card .image {
    object-fit: cover;
  }
}

#scroll-arrow {
  position: fixed;
  left: 24px;
  bottom: 20px;
  transition: opacity 1000ms ease-in-out;
  z-index: 2;
  width: 90px;
}
@media screen and (max-width: 1580px) {
  #scroll-arrow {
    width: 60px;
  }
}
#scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

#contact-us-link {
  position: fixed;
  right: 0;
  bottom: 30%;
  color: #ffffff;
  background-color: #6eadf3;
  padding: 1rem;
  line-height: 1.1;
  z-index: 2;
}
#contact-us-link .text {
  display: flex;
  text-transform: uppercase;
}
#contact-us-link .text svg {
  margin-left: -5px;
  margin-top: 5px;
}
@media screen and (max-width: 998px) {
  #contact-us-link {
    display: none;
  }
}

.section {
  padding: var(--section-padding) 0;
}
.section.extra-large {
  padding: var(--section-padding-extra-large) 0;
}
.section.large {
  padding: var(--section-padding-large) 0;
}

.green-bg {
  background-color: #215834 !important;
}

.green-color {
  color: #215834 !important;
}

.green-light-bg {
  background-color: #85a38f !important;
}

.green-light-color {
  color: #85a38f !important;
}

.green-light2-bg {
  background-color: #c8d5cc !important;
}

.green-light2-color {
  color: #c8d5cc !important;
}

.blue-bg {
  background-color: #6eadf3 !important;
}

.blue-color {
  color: #6eadf3 !important;
}

.blue-light-bg {
  background-color: #bddafc !important;
}

.blue-light-color {
  color: #bddafc !important;
}

.blue-light2-bg {
  background-color: #92c2f6 !important;
}

.blue-light2-color {
  color: #92c2f6 !important;
}

.white-bg {
  background-color: #ffffff !important;
}

.white-color {
  color: #ffffff !important;
}

.text-reveal {
  display: inline-block;
  position: relative;
  overflow: hidden;
  animation: reveal-text-anim 1s forwards;
  -webkit-background-clip: text;
}

@keyframes reveal-text-anim {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.typed-cursor {
  display: none !important;
}

.cursor-ball {
  position: fixed;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #215834;
  /* base branca */
  pointer-events: none;
  /* não capta cliques; cursor real continua visível */
  z-index: 2147483647;
  /* por cima de tudo */
  will-change: transform;
}
@media screen and (max-width: 1197px) {
  .cursor-ball {
    display: none;
  }
}

.module-content__title {
  display: block;
  max-width: 36ch;
  /* ajusta à tua largura real */
  white-space: normal;
}

.module-content__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.3em;
}

.module-content__title .word-inner {
  display: inline-block;
  transform: translateY(-95px);
  will-change: transform;
  animation: drop-in 850ms cubic-bezier(0.2, 0.65, 0.3, 1) forwards;
}

@keyframes drop-in {
  to {
    transform: translateY(0);
  }
}
.typed-container {
  position: relative;
  display: inline-block;
}
.typed-container .typed {
  position: absolute;
  left: 0;
  top: 0;
}
.typed-container .typed-placeholder {
  visibility: hidden;
  /* text won’t show, but height is reserved */
  display: block;
}

.blue-button {
  background: #92c2f6;
  padding: 8px 10px;
  margin-right: 10px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  border: none;
}

html {
  font-size: 62.5%;
  background-color: white;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1197px) {
  html {
    font-size: 60%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 56%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  font-size: 1.8rem;
  color: #215834;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
}

body,
html {
  height: 100%;
  overflow-x: clip;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
#app > header {
  flex: none;
}
#app > main {
  flex: 1;
}
#app > footer {
  margin-top: 0;
  flex: none;
}
@media screen and (max-width: 1197px) {
  #app {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1197px) {
  #app {
    padding-bottom: 0;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  #app {
    z-index: 3;
  }
}

:root {
  --top-padding: 70px;
  --navbar-height: 120px;
  --section-padding: 6rem;
  --section-padding-large: 8rem;
  --section-padding-extra-large: 12rem;
  --divider-height: 2.5rem;
  --divider-height-small: 2rem;
  --divider-height-large: 5rem;
  --divider-height-huge: 8rem;
}

@media screen and (max-width: 998px) {
  :root {
    --section-padding: 2.4rem;
    --section-padding-large: 3.2rem;
    --section-padding-extra-large: 4rem;
    --divider-height: 14px;
    --divider-height-small: 16px;
    --divider-height-large: 20px;
    --divider-height-huge: 20px;
  }
}
@media screen and (max-width: 580px) {
  #header {
    --navbar-height: 85px;
  }
  #header .logo {
    height: 48px;
  }
}
#header.is-active {
  top: 0;
}
@media screen and (max-width: 1197px) {
  #header.is-active .navbar-menu-langs {
    display: flex;
  }
}
@media screen and (max-width: 1197px) {
  #header.is-active .navbar-brand {
    display: none;
  }
}
#header .navbar-dropdown {
  top: 85px;
  left: 0;
  transform: translate3d(0, -20px, 0);
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
}
#header .navbar-dropdown .navbar-dropdown {
  top: 0;
  left: 100%;
  transform: translate3d(-20px, 0, 0);
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu {
    padding: 0;
  }
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu .navbar-item {
    display: flex;
    flex-direction: row-reverse;
    font-weight: 700;
    padding: 20px 24px;
  }
  #header .navbar-menu .navbar-item:nth-child(7n+1) {
    background-color: #215834;
  }
  #header .navbar-menu .navbar-item:nth-child(7n+2) {
    background-color: #85a38f;
  }
  #header .navbar-menu .navbar-item:nth-child(7n+3) {
    background-color: #92c2f6;
  }
  #header .navbar-menu .navbar-item:nth-child(7n+4) {
    background-color: #6eadf3;
  }
  #header .navbar-menu .navbar-item:nth-child(7n+5) {
    background-color: #215834;
  }
  #header .navbar-menu .navbar-item:nth-child(7n+6) {
    background-color: #97c4f6;
  }
  #header .navbar-menu .navbar-item:nth-child(7n+7) {
    background-color: #a6bcad;
  }
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu .navbar-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu .navbar-item .navbar-link {
    width: 100%;
    font-size: 2.2rem;
    color: white;
  }
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu .navbar-item .arrow-icon {
    height: 30px;
    width: 30px;
    filter: brightness(0) invert(1);
  }
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu .navbar-item .arrow-icon {
    display: none;
  }
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu .navbar-item.is-active .navbar-link {
    text-decoration: line-through;
  }
}
@media screen and (max-width: 1197px) and (max-width: 1197px) {
  #header .navbar-menu .navbar-item.is-active .navbar-link {
    text-decoration: none;
  }
}
#header .navbar-menu .navbar-item--level-2 {
  padding: 4px 0;
}
#header .navbar-menu .navbar-item--level-2 .arrow-icon {
  display: none;
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu .navbar-item--level-2 {
    background-color: transparent !important;
  }
}
#header .navbar-menu-langs {
  display: flex;
  flex-direction: column-reverse;
  margin-left: 24px;
  margin-top: 32px;
}
@media screen and (max-width: 1197px) {
  #header .navbar-menu-langs {
    display: none;
    order: -1;
    margin-top: 0;
    margin-left: 0;
  }
}
#header .lang-item {
  font-size: 16px;
  text-transform: uppercase;
  color: #6eadf3;
}
#header .lang-item:hover {
  text-decoration: underline;
}
#header .lang-item.is-selected {
  color: #215834;
  font-weight: 800;
}
@media screen and (max-width: 580px) {
  #header .language-selector > .navbar-item {
    display: none;
  }
}

#footer {
  position: relative;
  padding: 3rem 0;
  border-top: 2px solid #85a38f;
  z-index: 1;
  background-color: #fff;
}
#footer .container {
  justify-content: space-between;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 998px) {
  #footer .container {
    flex-direction: column;
  }
}
#footer .copyright {
  white-space: nowrap;
}
#footer .navbar {
  background: transparent;
  min-height: auto;
  justify-content: flex-end;
  position: relative;
  display: flex;
}
@media screen and (max-width: 998px) {
  #footer .navbar {
    justify-content: flex-start;
    padding-top: 1rem;
  }
}
#footer .navbar .navbar-item {
  color: findColorInvert(#4a4a4a);
  padding: 0 5px;
}

.page-home .card .subtitle {
  font-size: 3.4rem;
}
@media screen and (max-width: 1297px) {
  .page-home .card .subtitle {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1197px) {
  .page-home .card .subtitle {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  .page-home .card .subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 998px) {
  .page-home #info {
    background-color: #92c2f6;
  }
  .page-home #info .card {
    display: block;
  }
  .page-home #info .card .right {
    display: none;
  }
  .page-home #info .card .left {
    padding: 0;
  }
}

@media screen and (max-width: 580px) {
  .page-our-services .banner .asset .image {
    object-position: 25% 50%;
  }
}
@media screen and (max-width: 1197px) {
  .page-our-services #info .left {
    padding-bottom: 40px;
  }
}
.page-our-services #info .card .content p {
  padding-right: 8rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 1297px) {
  .page-our-services #info .card .content p {
    padding-right: 2rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  .page-our-services #info .card .content p {
    padding-right: 15px;
    padding-bottom: 15px;
  }
}
.page-our-services #info2 .page-title {
  color: #215834;
  font-weight: 500;
}
@media screen and (max-width: 580px) {
  .page-our-services #info2 .page-title {
    font-size: 40px;
  }
}
.page-our-services #info2 .left {
  padding-bottom: 3rem;
}

[data-page=contact-us] #contact-us-link {
  display: none;
}

.page-our-contacts .banner .title {
  margin-bottom: 25rem;
}
.page-our-contacts table {
  border-collapse: collapse;
}
.page-our-contacts table tr {
  position: relative;
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr {
    --columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
    gap: 0px;
  }
}
.page-our-contacts table tr:first-child td::before {
  top: 0;
  background-color: #215834;
  visibility: visible;
}
.page-our-contacts table tr td {
  position: relative;
  padding: 1.5rem 24px;
  vertical-align: middle;
  width: 50%;
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr td {
    padding: 12px 0 !important;
    width: 100%;
  }
}
.page-our-contacts table tr td:first-child {
  border-right: 2px solid #215834;
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr td:first-child {
    border-right: none;
  }
}
.page-our-contacts table tr td::after, .page-our-contacts table tr td::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100vw;
  background-color: #215834;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.page-our-contacts table tr td::before {
  visibility: hidden;
}
.page-our-contacts table tr td.links::after {
  right: 0;
  left: auto;
  transform: translateX(0%);
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr td.links::after {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-our-contacts table tr td.address, .page-our-contacts table tr td.links {
  font-size: 3.4rem;
  padding-left: 0;
}
@media screen and (max-width: 1197px) {
  .page-our-contacts table tr td.address, .page-our-contacts table tr td.links {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr td.address, .page-our-contacts table tr td.links {
    font-size: 1.8rem;
  }
}
.page-our-contacts table tr td.social-media {
  padding-left: 0;
}
.page-our-contacts table tr td.main-info {
  vertical-align: top;
  padding-top: 18px;
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr td.main-info::before {
    display: none;
  }
}
.page-our-contacts table tr td.main-info, .page-our-contacts table tr td.additional-info {
  font-size: 2.8rem;
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr td.main-info, .page-our-contacts table tr td.additional-info {
    font-size: 1.8rem;
  }
}
.page-our-contacts table tr td.main-info h2, .page-our-contacts table tr td.additional-info h2 {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 30px;
}
@media screen and (max-width: 1197px) {
  .page-our-contacts table tr td.main-info h2, .page-our-contacts table tr td.additional-info h2 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 998px) {
  .page-our-contacts table tr td.main-info h2, .page-our-contacts table tr td.additional-info h2 {
    font-size: 2.4rem;
  }
  .page-our-contacts table tr td.main-info h2 br, .page-our-contacts table tr td.additional-info h2 br {
    display: none;
  }
}

.page-dynamic {
  --media-horizontal-gap: 50px;
  --media-vertical-gap: 30px;
  --title-color: #6eadf3;
}
@media screen and (max-width: 1197px) {
  .page-dynamic {
    --media-horizontal-gap: 0px;
    padding-bottom: 60px;
  }
  .page-dynamic .content {
    padding: var(--media-vertical-gap) 0;
  }
  .page-dynamic .media {
    padding-bottom: 30px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.page-dynamic .section {
  padding: 45px 0;
}
@media screen and (max-width: 1197px) {
  .page-dynamic .section {
    padding: 0;
  }
}
.page-dynamic .section.blue {
  background-color: #6eadf3;
  color: white;
  --title-color: white;
}
.page-dynamic .section.white {
  background-color: #fff;
}
.page-dynamic h1 {
  color: var(--title-color);
  font-size: 4.3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.page-dynamic .container:has(.media) {
  display: flex;
}
.page-dynamic .is-media-top {
  flex-direction: column-reverse;
}
.page-dynamic .is-media-bottom {
  flex-direction: column;
}
.page-dynamic .is-media-bottom .media {
  padding-top: var(--media-vertical-gap);
}
.page-dynamic .is-media-left {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 1197px) {
  .page-dynamic .is-media-left {
    flex-direction: column-reverse;
  }
}
.page-dynamic .is-media-left .media {
  padding-right: var(--media-horizontal-gap);
  padding-bottom: 20px;
  flex-shrink: 0;
}
.page-dynamic .is-media-right {
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1197px) {
  .page-dynamic .is-media-right {
    flex-direction: column;
  }
}
.page-dynamic .is-media-right .media {
  padding-left: var(--media-horizontal-gap);
  flex-shrink: 0;
}
.page-dynamic .is-media-left .content,
.page-dynamic .is-media-right .content {
  flex-grow: 1;
}
.page-dynamic .is-media-left .media:has(.block-slideshow),
.page-dynamic .is-media-right .media:has(.block-slideshow) {
  width: 600px;
}
@media screen and (max-width: 1197px) {
  .page-dynamic .is-media-left .media:has(.block-slideshow),
.page-dynamic .is-media-right .media:has(.block-slideshow) {
    width: 100%;
  }
}
.page-dynamic .collapse-block {
  margin-top: 20px;
  margin-bottom: 12px;
}
.page-dynamic .collapse-block.is-opened .collapse-title {
  background: #80dbff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.page-dynamic .collapse-block.is-opened .collapse-title svg {
  transform: rotate(180deg);
}
.page-dynamic .collapse-block .collapse-title {
  background: rgba(128, 219, 255, 0.4);
  color: #6eadf3;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding-left: 3rem;
  padding-right: 2rem;
}
.page-dynamic .collapse-block .collapse-title svg path {
  stroke: #6eadf3;
}
.page-dynamic .collapse-block .collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1000ms ease-out;
}
.page-dynamic .collapse-block .collapse-body .content {
  padding: 20px;
}
.page-dynamic .block-slideshow {
  width: 100%;
}
.page-dynamic .block-slideshow .swiper-slide img {
  width: 100%;
}

[data-page=legal-notice] {
  overflow-x: clip;
}
[data-page=legal-notice] .page-dynamic .container {
  padding-inline: 54px;
}
[data-page=legal-notice] .page-dynamic h1:not(:has(.page-title)) {
  display: none;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody tr:nth-child(2) > td::before,
[data-page=legal-notice] .page-dynamic .content > table > tbody tr:nth-child(4) td:nth-child(-n+2)::before {
  background-color: #6eadf3 !important;
  z-index: 2;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody td:nth-child(2):nth-last-child(2) {
  border-left-color: #6eadf3;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody td:nth-child(2):nth-last-child(2)::before {
  background-color: #6eadf3 !important;
  right: 0;
  left: -50vw;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody td:nth-child(1):nth-last-child(3) {
  border-right: none;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr:last-child {
  position: relative;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr:last-child td:only-child::before {
  left: 0;
  right: -50vw;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr:last-child::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #215834;
  height: 2px;
  bottom: -1px;
  left: -50vw;
  right: -50vw;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr > td {
  border: 2px solid #215834;
  position: relative;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr > td:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #215834;
  height: 2px;
  top: -2px;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr > td:first-child {
  border-left: none;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr > td:first-child:before {
  left: -100vw;
  right: 0;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr > td:last-child {
  border-right: none;
}
[data-page=legal-notice] .page-dynamic .content > table > tbody > tr > td:last-child:not(:only-child)::before {
  left: 0;
  right: -100vw;
}
[data-page=legal-notice] .page-dynamic table {
  border-collapse: collapse;
  font-size: 12px;
}
@media screen and (max-width: 580px) {
  [data-page=legal-notice] .page-dynamic table {
    display: none;
  }
}
[data-page=legal-notice] .page-dynamic table td {
  padding: 1.5rem 4rem;
  vertical-align: top;
}
[data-page=legal-notice] .page-dynamic table td:has(h2:only-child, h1) {
  border-bottom-color: #6eadf3;
}
[data-page=legal-notice] .page-dynamic table td:has(h2:only-child, h1) .section-title {
  margin-bottom: 0;
}
[data-page=legal-notice] .page-dynamic .mobile-table {
  display: none;
}
@media screen and (max-width: 580px) {
  [data-page=legal-notice] .page-dynamic .mobile-table {
    display: block;
  }
}
[data-page=legal-notice] .page-dynamic .mobile-table table.inner-table {
  display: table !important;
}
[data-page=legal-notice] .page-dynamic .mobile-table table.inner-table td {
  padding: 15px 10px;
  border-right: 2px solid #6eadf3;
}
[data-page=legal-notice] .page-dynamic .mobile-table table.inner-table td:last-child {
  border-right: none;
  padding-right: 0;
}
[data-page=legal-notice] .page-dynamic .mobile-table table.inner-table td:first-child {
  padding-left: 0;
}
[data-page=legal-notice] .page-dynamic .mobile-table h2:only-child > .section-title {
  margin-bottom: 0;
}
[data-page=legal-notice] .page-dynamic .mobile-table .left-column > div,
[data-page=legal-notice] .page-dynamic .mobile-table .right-column > div {
  position: relative;
  padding-block: 15px;
}
[data-page=legal-notice] .page-dynamic .mobile-table .left-column > div::before,
[data-page=legal-notice] .page-dynamic .mobile-table .right-column > div::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #215834;
  height: 2px;
  top: -2px;
  left: -50vw;
  right: -50vw;
}
[data-page=legal-notice] .page-dynamic .mobile-table .left-column > div:has(.inner-table),
[data-page=legal-notice] .page-dynamic .mobile-table .right-column > div:has(.inner-table) {
  padding: 0;
}
[data-page=legal-notice] .page-dynamic .mobile-table .left-column > div:nth-child(2)::before, [data-page=legal-notice] .page-dynamic .mobile-table .left-column > div:nth-child(4)::before {
  background-color: #6eadf3 !important;
}
[data-page=legal-notice] .page-dynamic .mobile-table .right-column > div:last-child::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #215834;
  height: 2px;
  bottom: -2px;
  left: -50vw;
  right: -50vw;
}

.page-our-benefits {
  padding-bottom: 70px;
  min-height: 750px;
}
@media screen and (max-width: 1197px) {
  .page-our-benefits {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 580px) {
  .page-our-benefits {
    min-height: 1000px;
  }
}
.page-our-benefits .banner .asset {
  height: calc(100vh - 180px);
  min-height: 700px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 580px) {
  .page-our-benefits .banner .asset {
    position: fixed;
    height: 100vh;
  }
  .page-our-benefits .banner .asset img {
    --scroll: 0 !important;
  }
}
.page-our-benefits #info {
  width: 100%;
}
@media screen and (max-width: 580px) {
  .page-our-benefits #info .left .title {
    padding-bottom: 20px;
    height: 50%;
  }
  .page-our-benefits #info .subtitle {
    font-size: 22px;
  }
}
.page-our-benefits #info .card {
  width: 100%;
}
.page-our-benefits #info .title {
  border-bottom: 2px solid #215834;
}
.page-our-benefits .banner .content-block .container {
  position: relative;
  margin: 0px auto 40px auto;
  transform: none;
  z-index: 1;
  top: auto;
  left: auto;
  padding-top: 90px;
}
@media screen and (max-width: 998px) {
  .page-our-benefits .banner .content-block .container {
    top: 0;
    padding-bottom: var(--section-padding-extra-large);
    padding-top: var(--section-padding-extra-large);
  }
}
.page-our-benefits .card .content p {
  padding: 18px;
}
@media screen and (max-width: 1297px) {
  .page-our-benefits .card .content p {
    padding: 16px;
  }
}

@media screen and (max-width: 580px) {
  .page-our-approach .banner .asset .image {
    object-position: 77% 50%;
  }
}
.page-our-approach .banner .text-group .subtitle {
  font-size: 3.2rem;
}
@media screen and (max-width: 580px) {
  .page-our-approach .banner .text-group .subtitle {
    font-size: 2.2rem;
  }
}
.page-our-approach #info .container {
  display: flex;
  align-items: flex-end;
}
.page-our-approach #info .container .card {
  width: 100%;
}
.page-our-approach #info .container .right,
.page-our-approach #info .container .left {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-our-approach #info .container .right p,
.page-our-approach #info .container .left p {
  flex: 1;
}
@media screen and (max-width: 1439px) {
  .page-our-approach #info .container .right,
.page-our-approach #info .container .left {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 580px) {
  .page-our-approach #info .container .right,
.page-our-approach #info .container .left {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 580px) {
  .page-our-approach #info .container .left {
    aspect-ratio: 1;
  }
}
.page-our-approach #info .container .title {
  border-bottom: 2px solid #ffffff;
}
@media screen and (max-width: 580px) {
  .page-our-approach #info .container .title {
    height: 50%;
  }
}
.page-our-approach #info .container .subtitle {
  font-size: 3.4rem;
}
@media screen and (max-width: 1297px) {
  .page-our-approach #info .container .subtitle {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 998px) {
  .page-our-approach #info .container .subtitle {
    font-size: 2.2rem;
  }
}
.page-our-approach #info .container .content {
  height: 100%;
}
.page-our-approach #info .container .content p span {
  padding-left: 24px;
}
.page-our-approach #info .container .content p span::after {
  content: "•";
  position: absolute;
  top: -4px;
  left: 0px;
  font-size: 3rem;
}
@media screen and (max-width: 1297px) {
  .page-our-approach #info .container .content p span::after {
    top: -8px;
  }
}
@media screen and (max-width: 1197px) {
  .page-our-approach #info .container .content p span::after {
    top: -8px;
    font-size: 25px;
  }
}
@media screen and (max-width: 1439px) {
  .page-our-approach #info .container .content p {
    padding-top: 0;
  }
}
.page-our-approach #info .container .content p:before {
  display: none;
}
.page-our-approach #info .container .content p:first-child {
  padding-top: 24px;
}
.page-our-approach #info2 .card .subtitle {
  font-size: 3.4rem;
}
@media screen and (max-width: 1297px) {
  .page-our-approach #info2 .card .subtitle {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 998px) {
  .page-our-approach #info2 .card .subtitle {
    font-size: 2.2rem;
  }
}
.page-our-approach #info3 {
  position: relative;
}
.page-our-approach #info3 .card .right {
  background-color: #6bacf7;
}
.page-our-approach #info3 p:first-child {
  padding-top: 20px;
}
.page-our-approach #info3 p:first-child::after {
  content: "";
  position: absolute;
  top: 0px;
  height: 2px;
  width: 30px;
  left: 0;
  background-color: #215834;
}
@media screen and (min-width: 768px) {
  .page-our-approach #info3 p:first-child {
    font-size: 3.8rem;
    line-height: 1.1em;
  }
}
@media screen and (max-width: 580px) {
  .page-our-approach #info3 p:first-child {
    font-size: 2.8rem;
    padding-top: 30px;
  }
  .page-our-approach #info3 p:first-child::after {
    top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .page-our-approach #info3 p {
    font-size: 2.8rem;
  }
}
.page-our-approach #info3.aos-animate .divider-group .divider {
  width: 100%;
}
.page-our-approach #info3 .divider-group {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.page-our-approach #info3 .divider-group .divider {
  height: 20%;
  width: 0;
  transition: width 1.5s ease-in-out 300ms;
}
.page-our-approach #info3 .divider-group .divider.blue-light-bg {
  background-color: #bcd9fe !important;
}
.page-our-approach #info3 .divider-group .divider.blue-bg {
  background-color: #8bbef6 !important;
}

.page-why-us .banner #info {
  width: 100%;
}
.page-why-us .banner #info .card .info .name-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  cursor: pointer;
}
@media screen and (max-width: 1439px) {
  .page-why-us .banner #info .card .info .name-container {
    padding: 18px;
  }
}
@media screen and (max-width: 1197px) {
  .page-why-us .banner #info .card .info .name-container {
    padding: 16px;
  }
}
.page-why-us .banner #info .card .info .name-container .name {
  font-size: 3.2rem;
  text-transform: uppercase;
  padding: 0;
}
@media screen and (max-width: 1297px) {
  .page-why-us .banner #info .card .info .name-container .name {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1197px) {
  .page-why-us .banner #info .card .info .name-container .name {
    font-size: 2.2rem;
  }
}
.page-why-us .banner #info .card .info .name-container .name p {
  display: inline;
}
.page-why-us .banner #info .card .info .name-container:last-child {
  border-bottom: none;
}
.page-why-us .banner #info .card .info .name-container:last-child::before {
  display: none;
}
.page-why-us .banner #info .card .info .name-container .plus-icon {
  height: 45px;
  width: 45px;
}
.page-why-us .banner #info .card .info .name-container .plus-icon path {
  stroke: #6eadf3;
}
@media screen and (max-width: 1197px) {
  .page-why-us .banner #info .card .info .name-container .plus-icon {
    height: 30px;
    width: 30px;
  }
}
.page-why-us .banner #info .card .info .name-container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background-color: #215834;
  /* Animation from center */
  transition: width 0.5s ease-in-out 300ms;
}
.page-why-us .banner #info .card .info .name-container.aos-animate::before {
  width: 100%;
}
@media screen and (max-width: 580px) {
  .page-why-us .banner #info .card .left {
    padding-bottom: 50px;
  }
}
.page-why-us #list-info {
  padding-bottom: var(--divider-height-large);
}
.page-why-us #list-info .grid-card {
  --columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: 0px;
}
@media screen and (max-width: 998px) {
  .page-why-us #list-info .grid-card {
    --columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
    gap: 0px;
  }
}
.page-why-us #list-info .grid-card .item {
  width: 100%;
  height: 100%;
  min-height: 626px;
}
@media screen and (max-width: 1297px) {
  .page-why-us #list-info .grid-card .item {
    min-height: 480px;
  }
}
@media screen and (max-width: 580px) {
  .page-why-us #list-info .grid-card .item {
    min-height: 300px;
  }
}
.page-why-us #list-info .grid-card .item .image {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 580px) {
  .page-why-us #list-info .grid-card .item .image {
    object-fit: cover;
  }
}
.page-why-us #list-info .grid-card .item .name {
  color: #215834;
  font-size: 4.8rem;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 1297px) {
  .page-why-us #list-info .grid-card .item .name {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 580px) {
  .page-why-us #list-info .grid-card .item .name {
    font-size: 2.8rem;
  }
  .page-why-us #list-info .grid-card .item .name br {
    display: none;
  }
}
.page-why-us #list-info .grid-card .item .name p {
  display: inline;
}
.page-why-us #list-info .grid-card .item .description {
  color: #ffffff;
  font-size: 3.2rem;
}
@media screen and (max-width: 1297px) {
  .page-why-us #list-info .grid-card .item .description {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 580px) {
  .page-why-us #list-info .grid-card .item .description {
    font-size: 16px;
  }
  .page-why-us #list-info .grid-card .item .description br {
    display: none;
  }
}
.page-why-us #list-info .grid-card .item .arrow-icon {
  transform: rotate(180deg);
  height: 40px;
  width: 40px;
}
.page-why-us #list-info .grid-card .item .arrow-icon path {
  stroke: #215834;
}
@media screen and (max-width: 580px) {
  .page-why-us #list-info .grid-card .item .arrow-icon {
    height: 30px;
    width: 30px;
  }
}
.page-why-us #list-info .grid-card .item.white-bg .description, .page-why-us #list-info .grid-card .item.green-bg .description {
  color: #6eadf3;
}
.page-why-us #list-info .grid-card .item.green-bg .name {
  color: #ffffff;
}
.page-why-us #list-info .grid-card .item.green-bg .arrow-icon path {
  stroke: #ffffff;
}
.page-why-us #list-info .grid-card .item:nth-last-child(2) .name br {
  display: none;
}
.page-why-us #list-info .grid-card .item .info {
  height: 100%;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-about-us .card .subtitle {
  font-size: 3.4rem;
}
@media screen and (max-width: 1297px) {
  .page-about-us .card .subtitle {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 998px) {
  .page-about-us .card .subtitle {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 580px) {
  .page-about-us .card .subtitle br {
    display: none;
  }
}
.page-about-us .date {
  font-size: 11rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 1297px) {
  .page-about-us .date {
    font-size: 8rem;
  }
}
@media screen and (max-width: 998px) {
  .page-about-us .date {
    font-size: 4rem;
  }
}
.page-about-us #info .card .right .title {
  border-bottom: 2px solid #ffffff;
}
@media screen and (max-width: 580px) {
  .page-about-us #info .card .right .title {
    height: 50%;
  }
}
@media screen and (max-width: 998px) {
  .page-about-us #info .card .left {
    display: none;
  }
}
.page-about-us #info2 {
  position: relative;
}
.page-about-us #info2 .container {
  z-index: 2;
}
.page-about-us #info2 .container .card .left .title {
  border-bottom: 2px solid #215834;
}
.page-about-us #info2 .divider {
  height: calc(100% / 3);
  top: 0;
  position: absolute;
  z-index: 1;
  width: 0;
  transition: width 0.5s ease-in-out 300ms;
}
.page-about-us #info2::before {
  content: "";
  position: absolute;
  background-color: #92c2f6;
  height: calc(100% / 3);
  top: calc(100% / 3);
  left: 0;
  z-index: 1;
  width: 0;
  transition: width 1s ease-in-out 300ms;
}
.page-about-us #info2::after {
  content: "";
  position: absolute;
  background-color: #bddafc;
  height: calc(100% / 3);
  top: calc(2 * (100% / 3));
  left: 0;
  z-index: 1;
  width: 0;
  transition: width 1.5s ease-in-out 300ms;
}
.page-about-us #info2.aos-animate::before, .page-about-us #info2.aos-animate::after,
.page-about-us #info2.aos-animate .divider {
  width: 100%;
}
@media screen and (max-width: 580px) {
  .page-about-us .banner.timeline-section {
    overflow: hidden;
  }
}
.page-about-us .banner.timeline-section .asset .image {
  transform: none !important;
}
.page-about-us .banner .timeline-block .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
}
@media screen and (max-width: 998px) {
  .page-about-us .banner .timeline-block .container {
    padding-bottom: var(--section-padding-extra-large);
    padding-top: var(--section-padding-extra-large);
  }
}
.page-about-us .banner .timeline-block .container #timeline-info {
  width: 100%;
}
@media screen and (max-width: 998px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    row-gap: 10px;
  }
}
.page-about-us .banner .timeline-block .container #timeline-info .card .left .date:first-child {
  margin-left: auto;
}
@media screen and (max-width: 998px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .left .date:first-child {
    width: 100%;
    padding-left: 130px;
  }
}
@media screen and (max-width: 580px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .left .date:first-child {
    padding-left: 0;
    text-align: right;
  }
}
@media screen and (max-width: 998px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .left .date:last-child {
    width: fit-content;
  }
}
.page-about-us .banner .timeline-block .container #timeline-info .card .left .arrow-icon {
  height: 300px;
  width: 300px;
  margin: 20px 0;
  margin-left: auto;
  margin-right: 6px;
  display: block;
  transform-origin: bottom left;
  /* anchor point */
  transform: scale(0);
}
.page-about-us .banner .timeline-block .container #timeline-info .card .left .arrow-icon path {
  stroke: #6eadf3;
}
@media screen and (max-width: 1297px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .left .arrow-icon {
    height: 200px;
    width: 200px;
  }
}
@media screen and (max-width: 1197px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .left .arrow-icon {
    height: 150px;
    width: 150px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 998px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .left .arrow-icon {
    order: 2;
    height: 80px;
    width: 80px;
    order: 2;
    margin: 0;
    margin-left: 30px;
    margin-right: 0;
  }
}
.page-about-us .banner .timeline-block .container #timeline-info .card .left .arrow-icon.aos-animate {
  animation: grow 1s ease-out forwards;
}
@keyframes grow {
  to {
    transform: scale(1);
  }
}
@media screen and (max-width: 580px) {
  .page-about-us .banner .timeline-block .container #timeline-info .card .right {
    padding-bottom: 100px;
  }
}
.page-about-us #timeline table {
  border-collapse: collapse;
}
.page-about-us #timeline table tr {
  position: relative;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr {
    --columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
    gap: 0px;
    grid-template-columns: 110px 1fr;
  }
}
@media screen and (max-width: 580px) {
  .page-about-us #timeline table tr {
    grid-template-columns: 90px 1fr;
  }
}
.page-about-us #timeline table tr::after, .page-about-us #timeline table tr::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100vw;
  background-color: #6eadf3;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.page-about-us #timeline table tr::before {
  visibility: hidden;
}
.page-about-us #timeline table tr:first-child::before {
  top: 0;
  background-color: #215834;
  visibility: visible;
}
.page-about-us #timeline table tr:last-child::after {
  background-color: #215834;
}
.page-about-us #timeline table tr td {
  padding: 1.5rem 24px;
  vertical-align: middle;
  height: 100%;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td {
    padding: 1rem;
  }
}
.page-about-us #timeline table tr td:has(h2:only-child, h1) {
  border-bottom-color: #6eadf3;
}
.page-about-us #timeline table tr td.date {
  border-right: 2px solid #215834;
  color: #6eadf3;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.date {
    font-size: 3rem;
    border-right: none;
  }
}
@media screen and (max-width: 580px) {
  .page-about-us #timeline table tr td.date {
    padding-left: 0;
  }
}
.page-about-us #timeline table tr td.date .single-date,
.page-about-us #timeline table tr td.date .date-arrow-container {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.date .single-date,
.page-about-us #timeline table tr td.date .date-arrow-container {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 580px) {
  .page-about-us #timeline table tr td.date .single-date {
    font-size: 30px;
  }
}
.page-about-us #timeline table tr td.date .range-dates {
  display: flex;
  flex-direction: column;
  font-size: 6.8rem;
  width: fit-content;
  margin-left: auto;
  margin-right: 5px;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.date .range-dates {
    font-size: 2.5rem;
    margin-left: 0;
  }
}
.page-about-us #timeline table tr td.date .range-dates .start-date {
  margin-left: -1.2rem;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.date .range-dates .start-date {
    margin-left: 0;
  }
}
.page-about-us #timeline table tr td.date .range-dates .date-arrow-container {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.date .range-dates .date-arrow-container {
    gap: 5px;
  }
}
.page-about-us #timeline table tr td.date .range-dates .date-arrow-container .arrow-icon {
  width: 50px;
  height: 50px;
  transform: rotate(180deg);
  margin-bottom: 9px;
  margin-left: -10px;
}
.page-about-us #timeline table tr td.date .range-dates .date-arrow-container .arrow-icon path {
  stroke: #6eadf3;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.date .range-dates .date-arrow-container .arrow-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    margin-left: 0;
  }
}
.page-about-us #timeline table tr td.title {
  border-right: 2px solid #6eadf3;
  color: #6eadf3;
  font-size: 2.8rem;
  position: relative;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.title {
    font-size: 1.8rem;
    border-right: none;
    border-left: 2px solid #215834;
    display: flex;
    align-items: center;
  }
}
.page-about-us #timeline table tr td.title:after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 2px;
  background-color: #6eadf3;
  width: 100vw;
  left: 0;
  display: none;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.title:after {
    display: block;
  }
}
.page-about-us #timeline table tr td.description {
  font-size: 2.2rem;
}
@media screen and (max-width: 998px) {
  .page-about-us #timeline table tr td.description {
    grid-column: 2;
    font-size: 1.8rem;
    border-left: 2px solid #215834;
  }
}
@media screen and (max-width: 580px) {
  .page-about-us .banner .asset .image {
    object-position: 57% 50%;
  }
}

.page-our-team #banner {
  padding: 0;
  position: relative;
}
@media screen and (max-width: 998px) {
  .page-our-team #banner .container {
    padding-top: var(--section-padding-extra-large);
    padding-bottom: var(--section-padding-extra-large);
  }
}
.page-our-team #banner .divider-lines {
  height: calc(100vh - 180px);
  min-height: 700px;
}
@media screen and (max-width: 998px) {
  .page-our-team #banner .divider-lines {
    min-height: auto;
  }
}
.page-our-team #banner .divider-lines .divider-line {
  width: 0;
  transition: width var(--anim-duration) ease-in-out 300ms;
  height: 12.5%;
}
.page-our-team #banner .divider-lines .divider-line.aos-animate {
  width: 100%;
}
@media screen and (max-width: 998px) {
  .page-our-team #banner .divider-lines .divider-line {
    flex: 1;
  }
}
@media screen and (max-width: 998px) {
  .page-our-team #banner .divider-lines {
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 100%;
  }
}
.page-our-team #banner .card {
  min-height: 540px;
}
@media screen and (max-width: 998px) {
  .page-our-team #banner .card {
    min-height: auto;
  }
}
.page-our-team #banner .card .title {
  position: relative;
}
.page-our-team #banner .card .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background-color: #215834;
  /* Animation from center */
  transition: width 0.5s ease-in-out 300ms;
}
.page-our-team #banner .card .title.aos-animate::before {
  width: 100%;
}
.page-our-team #banner .card .content {
  font-size: 3.2rem;
}
@media screen and (max-width: 1197px) {
  .page-our-team #banner .card .content {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 998px) {
  .page-our-team #banner .card .content {
    font-size: 2rem;
  }
}
.page-our-team #banner .container {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 998px) {
  .page-our-team #banner .container {
    position: relative;
    top: auto;
  }
}
.page-our-team #info .team-grid {
  --grid-gap: 60px;
  --columns: 4;
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: var(--grid-gap);
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid {
    --grid-gap: 40px;
    --columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
    gap: var(--grid-gap);
  }
}
.page-our-team #info .team-grid .item {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid .item {
    display: flex;
    flex-direction: column;
  }
}
.page-our-team #info .team-grid .item .image-frame-container {
  position: relative;
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid .item .image-frame-container {
    flex: 1;
  }
}
@media screen and (max-width: 580px) {
  .page-our-team #info .team-grid .item .image-frame-container {
    flex: none;
  }
}
.page-our-team #info .team-grid .item .image-frame-container .image-container {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
}
.page-our-team #info .team-grid .item .image-frame-container .image-container .image {
  transition: transform 1000ms ease;
  height: 100%;
  width: 100%;
}
.page-our-team #info .team-grid .item .info-container {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}
.page-our-team #info .team-grid .item .info-container::before, .page-our-team #info .team-grid .item .info-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background-color: #215834;
  transition: width 0.5s ease-in-out 300ms;
}
.page-our-team #info .team-grid .item .info-container::after {
  top: -1px;
}
.page-our-team #info .team-grid .item .info-container.aos-animate::before, .page-our-team #info .team-grid .item .info-container.aos-animate::after {
  width: 100%;
}
.page-our-team #info .team-grid .item .info-container .info {
  position: relative;
  width: 100%;
}
.page-our-team #info .team-grid .item .info-container .info .name,
.page-our-team #info .team-grid .item .info-container .info .role {
  padding: 1rem 0;
  line-height: 1;
  width: 100%;
}
.page-our-team #info .team-grid .item .info-container .info .name-container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid .item .info-container .info .name-container {
    gap: 10px;
  }
}
.page-our-team #info .team-grid .item .info-container .info .name-container .plus-icon {
  height: 25px;
  width: 25px;
}
.page-our-team #info .team-grid .item .info-container .info .name-container .plus-icon path {
  stroke: #215834;
}
.page-our-team #info .team-grid .item .info-container .info .name {
  font-weight: 500;
  font-size: 2.2rem;
}
@media screen and (max-width: 1297px) {
  .page-our-team #info .team-grid .item .info-container .info .name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 580px) {
  .page-our-team #info .team-grid .item .info-container .info .name {
    font-size: 1.6rem;
  }
}
.page-our-team #info .team-grid .item .info-container .info .role {
  border-top: 2px solid #215834;
}
@media screen and (max-width: 580px) {
  .page-our-team #info .team-grid .item .info-container .info .role {
    font-size: 1.5rem;
  }
}
.page-our-team #info .team-grid .item .divider-lines {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  transform: translateX(100%);
  width: var(--grid-gap);
}
.page-our-team #info .team-grid .item .divider-lines .divider-line {
  width: 100%;
  height: 100%;
}
.page-our-team #info .team-grid .item .divider-lines .divider-line:last-child {
  display: none;
}
.page-our-team #info .team-grid .item:nth-child(4n) .divider-lines {
  display: none;
}
.page-our-team #info .team-grid .item:nth-child(8n+2) .divider-lines .divider-line:last-child, .page-our-team #info .team-grid .item:nth-child(8n+7) .divider-lines .divider-line:last-child {
  display: block;
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid .item:nth-child(8n+3) .divider-lines .divider-line:last-child {
    display: block;
  }
}
.page-our-team #info .team-grid .item:nth-child(8n+1) .divider-lines .divider-line {
  background-color: #6eadf3 !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+1) .divider-lines .divider-line:first-child {
  background-color: #ffffff !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+2) .divider-lines .divider-line {
  background-color: #92c2f6 !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+2) .divider-lines .divider-line:first-child {
  background-color: #c8d5cc !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+2) .divider-lines .divider-line:last-child {
  background-color: #6eadf3 !important;
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid .item:nth-child(8n+2) .divider-lines {
    display: none;
  }
}
.page-our-team #info .team-grid .item:nth-child(8n+3) .divider-lines .divider-line {
  background-color: #85a38f !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+3) .divider-lines .divider-line:first-child {
  background-color: #6eadf3 !important;
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid .item:nth-child(8n+3) .divider-lines .divider-line {
    background-color: #92c2f6 !important;
  }
  .page-our-team #info .team-grid .item:nth-child(8n+3) .divider-lines .divider-line:first-child {
    background-color: #c8d5cc !important;
  }
  .page-our-team #info .team-grid .item:nth-child(8n+3) .divider-lines .divider-line:last-child {
    background-color: #6eadf3 !important;
  }
}
.page-our-team #info .team-grid .item:nth-child(8n+5) .divider-lines .divider-line {
  background-color: #215834 !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+5) .divider-lines .divider-line:first-child {
  background-color: #92c2f6 !important;
}
@media screen and (max-width: 998px) {
  .page-our-team #info .team-grid .item:nth-child(8n+5) .divider-lines .divider-line {
    background-color: #85a38f !important;
  }
  .page-our-team #info .team-grid .item:nth-child(8n+5) .divider-lines .divider-line:first-child {
    background-color: #6eadf3 !important;
  }
}
.page-our-team #info .team-grid .item:nth-child(8n+6) .divider-lines .divider-line {
  background-color: #92c2f6 !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+6) .divider-lines .divider-line:first-child {
  background-color: #85a38f !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+7) .divider-lines .divider-line {
  background-color: #85a38f !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+7) .divider-lines .divider-line:first-child {
  background-color: #ffffff !important;
}
.page-our-team #info .team-grid .item:nth-child(8n+7) .divider-lines .divider-line:last-child {
  background-color: #215834 !important;
}
.page-our-team #info .team-grid .item:hover .image {
  transform: scale(1.1);
}
@media screen and (max-width: 580px) {
  .page-our-team #info .left .title {
    height: 50%;
  }
  .page-our-team #info .subtitle {
    font-size: 2.2rem;
  }
}
.page-our-team #advanced-info {
  background-color: #dbebfc;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .container {
    padding: 0;
  }
}
.page-our-team #advanced-info .team-members {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-items: center;
}
.page-our-team #advanced-info .team-members .team-member {
  display: flex;
  position: relative;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.page-our-team #advanced-info .team-members .team-member::after {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 2px;
  width: 800px;
  background-color: #215834;
  left: 100%;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member::after {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member {
    flex-direction: column;
    max-width: 450px;
  }
}
.page-our-team #advanced-info .team-members .team-member .image-frame-container .image-container .image {
  height: 300px;
  width: 300px;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .image-frame-container .image-container .image {
    height: auto;
    width: 100%;
  }
}
.page-our-team #advanced-info .team-members .team-member .image-frame-container .divider-lines .divider-line {
  height: 30px;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .image-frame-container .divider-lines .divider-line {
    height: 20px;
  }
}
.page-our-team #advanced-info .team-members .team-member .info-container {
  position: relative;
  flex: 1;
  border-top: 2px solid #215834;
  border-bottom: 2px solid #215834;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .info-container {
    border: none;
    position: relative;
  }
  .page-our-team #advanced-info .team-members .team-member .info-container:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100vw;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #215834;
  }
}
.page-our-team #advanced-info .team-members .team-member .info-container .info {
  position: relative;
  display: flex;
  border-bottom: 2px solid #215834;
}
.page-our-team #advanced-info .team-members .team-member .info-container .info::after {
  content: "";
  position: absolute;
  top: -2px;
  height: 2px;
  width: 800px;
  background-color: #215834;
  left: 100%;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info::after {
    display: none;
  }
}
.page-our-team #advanced-info .team-members .team-member .info-container .info::before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 800px;
  background-color: #215834;
  left: 100%;
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info::before {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info {
    flex-direction: column;
    border: none;
  }
  .page-our-team #advanced-info .team-members .team-member .info-container .info:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100vw;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #215834;
  }
}
.page-our-team #advanced-info .team-members .team-member .info-container .info .name-container,
.page-our-team #advanced-info .team-members .team-member .info-container .info .role {
  flex: 1;
  padding: 2rem;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
@media screen and (max-width: 998px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info .name-container,
.page-our-team #advanced-info .team-members .team-member .info-container .info .role {
    padding: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info .name-container,
.page-our-team #advanced-info .team-members .team-member .info-container .info .role {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-our-team #advanced-info .team-members .team-member .info-container .info .name {
  font-size: 3.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1197px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info .name {
    font-size: 2.5rem;
  }
}
.page-our-team #advanced-info .team-members .team-member .info-container .info .role {
  position: relative;
  font-size: 3rem;
  border-left: 2px solid #215834;
}
@media screen and (max-width: 1197px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info .role {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .info .role {
    border-left: none;
    font-size: 2rem;
  }
  .page-our-team #advanced-info .team-members .team-member .info-container .info .role:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100vw;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #215834;
  }
  .page-our-team #advanced-info .team-members .team-member .info-container .info .role:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100vw;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #215834;
  }
}
.page-our-team #advanced-info .team-members .team-member .info-container .description {
  padding: 2rem;
}
@media screen and (max-width: 998px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .description {
    padding: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .page-our-team #advanced-info .team-members .team-member .info-container .description {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-our-team-detail #info {
  background-color: #dbebfc;
}
.page-our-team-detail #info .team-member {
  display: flex;
}
.page-our-team-detail #info .team-member .image-frame-container .image-container .image {
  height: 300px;
  width: 300px;
}
.page-our-team-detail #info .team-member .image-frame-container .divider-lines .divider-line {
  height: 30px;
}
.page-our-team-detail #info .team-member .info-container {
  flex: 1;
  border-top: 2px solid #215834;
  border-bottom: 2px solid #215834;
  border-right: 2px solid #215834;
}
.page-our-team-detail #info .team-member .info-container .info {
  display: flex;
  border-bottom: 2px solid #215834;
}
.page-our-team-detail #info .team-member .info-container .info .name-container,
.page-our-team-detail #info .team-member .info-container .info .role {
  flex: 1;
  padding: 2rem;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.page-our-team-detail #info .team-member .info-container .info .name {
  font-size: 4rem;
}
.page-our-team-detail #info .team-member .info-container .info .role {
  font-size: 3.4rem;
  border-left: 2px solid #215834;
}
.page-our-team-detail #info .team-member .info-container .description {
  padding: 2rem;
  font-size: 2rem;
}

.page-exclusiveopportunities {
  padding-bottom: 70px;
  min-height: 750px;
  z-index: 2;
}
@media screen and (max-width: 1197px) {
  .page-exclusiveopportunities {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 580px) {
  .page-exclusiveopportunities {
    min-height: 700px;
  }
}
.page-exclusiveopportunities .overlay-legal-popup {
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.82);
  top: 0;
  left: 0;
  position: fixed;
}
.page-exclusiveopportunities .page-title {
  color: #215834;
  font-weight: 500;
}
@media screen and (max-width: 580px) {
  .page-exclusiveopportunities .page-title {
    font-size: 36px;
  }
}
.page-exclusiveopportunities .card .content p::before {
  display: none;
}
.page-exclusiveopportunities .content {
  font-size: 16px;
}
.page-exclusiveopportunities .blue-bg {
  color: #ffffff;
  font-size: 26px;
}
@media screen and (max-width: 580px) {
  .page-exclusiveopportunities .blue-bg {
    font-size: 18px;
  }
}
.page-exclusiveopportunities .card .subtitle {
  font-size: 26px;
}
@media screen and (max-width: 1197px) {
  .page-exclusiveopportunities .card .subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 580px) {
  .page-exclusiveopportunities .card .subtitle {
    font-size: 18px;
  }
}
.page-exclusiveopportunities .banner {
  min-height: 660px;
}
@media screen and (max-width: 580px) {
  .page-exclusiveopportunities .banner {
    min-height: 750px !important;
  }
  .page-exclusiveopportunities .banner .asset {
    height: 100%;
  }
}
.page-exclusiveopportunities .card {
  position: relative;
}
.page-exclusiveopportunities .blue-button {
  background: #92c2f6;
  padding: 4px 50px 4px 10px;
  margin-right: 10px;
  background-image: url("/assets/icons/scroll-arrow.svg");
  background-position: 100% 10px;
  background-repeat: no-repeat;
  background-size: 45px 18px;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 10px;
  display: inline-block !important;
}
.page-exclusiveopportunities .blue-button.btn-accept-legal {
  padding: 4px 10px;
  background-image: none;
  margin: 50px auto auto auto;
  background-color: #6eadf3;
  display: block;
  text-align: center;
  width: 116px;
  position: absolute;
  right: 120px;
  bottom: 5px;
}
@media screen and (max-width: 1197px) {
  .page-exclusiveopportunities .blue-button.btn-accept-legal {
    right: 50px;
  }
}
@media screen and (max-width: 998px) {
  .page-exclusiveopportunities .blue-button.btn-accept-legal {
    margin-top: 20px;
    position: static;
  }
}
.page-exclusiveopportunities .popup-legal {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(33, 88, 52, 0.78);
  color: #ffffff;
  padding: 70px 50px 50px 50px;
  text-align: left;
  transition: all 1.25s ease-in-out;
}
.page-exclusiveopportunities .popup-legal.removed {
  bottom: -100vh;
}
@media screen and (max-width: 998px) {
  .page-exclusiveopportunities .popup-legal.removed {
    bottom: auto;
    left: -100vw;
  }
}
.page-exclusiveopportunities .popup-legal .container {
  position: relative;
}
.page-exclusiveopportunities .popup-legal .inner-container {
  padding-right: 140px;
}
@media screen and (max-width: 998px) {
  .page-exclusiveopportunities .popup-legal .inner-container {
    padding-right: 0;
  }
}
.page-exclusiveopportunities .popup-legal h2 {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 998px) {
  .page-exclusiveopportunities .popup-legal {
    bottom: auto;
    top: 0;
    overflow: auto;
    height: 100vh;
    padding-top: 140px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 580px) {
  .page-exclusiveopportunities .popup-legal {
    font-size: 15px;
  }
}
.page-exclusiveopportunities .popup-legal p {
  text-align: left;
}
.page-exclusiveopportunities .popup-legal ul {
  padding-left: 40px;
}
.page-exclusiveopportunities .popup-legal ul li {
  list-style: circle;
  text-align: left;
}

#app[data-page=exclusiveopportunities] #scroll-arrow {
  display: none;
}
#app[data-page=exclusiveopportunities] #contact-us-link {
  display: none;
}
/*# sourceMappingURL=style.css.map */