:root {
  --black-color: #161616 !important;
  --white-color: #fff !important;
  --grey-color: #5F6567;
  --primary-color: #8FD299;
  --secondary-color: #374B47;
  --font-family: "Geologica", serif;
  --font-family-2: 'Helvetica', sans-serif;
  --font-size-default: 16px;
  --font-weight-default: 400;
  --header-height: 80px;
  --button-height: 52px; }

body {
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: 1.5; }

h2 {
  font-family: var(--font-family);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1px; }
  @media (max-width: 1199px) {
    h2 {
      font-size: 32px; } }
  @media (max-width: 767px) {
    h2 {
      font-size: 25px; } }

h3 {
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1px; }
  @media (max-width: 767px) {
    h3 {
      font-size: 25px; } }

h4 {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.5px; }
  @media (max-width: 1199px) {
    h4 {
      font-size: 20px;
      line-height: 1.25; } }

h6 {
  font-family: var(--font-family);
  font-size: var(--font-size-default);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3px; }

p {
  color: var(--grey-color);
  font-family: var(--font-family-2);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: 1.5; }

hr {
  background-color: rgba(0, 0, 0, 0.15);
  border: 0; }

a:not(.button) {
  position: relative;
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.5px;
  transition: all .25s ease; }
  a:not(.button)::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease; }
  a:not(.button):hover::before {
    transform: scaleX(1);
    transform-origin: left; }

input[type=text],
input[type=email],
select,
textarea {
  display: inline-block;
  width: 100%;
  background-color: transparent;
  color: var(--black-color);
  font-family: var(--font-family-2);
  font-weight: var(--font-weight-default);
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 15px;
  outline: none;
  transition: border-color .25s ease; }

input[type=checkbox] {
  width: 25px;
  height: 25px;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  cursor: pointer;
  appearance: none; }
  input[type=checkbox]:checked {
    background-image: url("../img/check.svg");
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 3px transparent; }

textarea {
  height: 115px;
  resize: none; }

label {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: var(--font-weight-default);
  line-height: 1.4;
  margin-bottom: 5px;
  cursor: pointer; }

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  z-index: 99;
  transition: all .25s ease; }
  #loader::before, #loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%); }
  #loader::before {
    animation: page-loader 1.5s infinite; }
  #loader::after {
    animation: page-loader 1.5s infinite .75s; }
  #loader.loaded {
    opacity: 0;
    visibility: hidden; }

@keyframes page-loader {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1; }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0; } }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--button-height);
  background-color: transparent;
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: 14px;
  border: 1px solid var(--black-color);
  padding-inline: 32px;
  cursor: pointer;
  outline: none;
  transition: all .25s ease; }
  .button::before {
    content: "";
    position: absolute;
    top: calc(50% + 10px);
    left: 32px;
    width: calc(100% - 32px * 2);
    height: 1px;
    background-color: var(--black-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease; }
  .button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color); }
    .button:hover::before {
      transform: scaleX(1);
      transform-origin: left; }

.page {
  overflow: hidden; }

.label h6 {
  display: inline-flex;
  align-items: center;
  gap: 10px; }
  .label h6 i {
    color: var(--primary-color); }
.label.style-1 {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(207deg, #E4EDF3, #DBE8EF);
  padding-top: 130px; }
  .label.style-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/dots-left-GettyImages-1478119123.webp");
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat; }
  .label.style-1 .decorate {
    position: absolute;
    top: 25%;
    right: 0; }
    @media (max-width: 1199px) {
      .label.style-1 .decorate {
        top: 50%; } }
    @media (max-width: 575px) {
      .label.style-1 .decorate {
        display: none; } }
    .label.style-1 .decorate span {
      display: block;
      position: absolute;
      width: 320px;
      height: 420px;
      background-color: rgba(143, 210, 153, 0.5);
      transform: skewX(-20deg); }
      @media (max-width: 1199px) {
        .label.style-1 .decorate span {
          width: 220px;
          height: 200px; } }
      .label.style-1 .decorate span:nth-of-type(1) {
        top: 0;
        right: -185px; }
        @media (max-width: 1199px) {
          .label.style-1 .decorate span:nth-of-type(1) {
            right: -160px; } }
      .label.style-1 .decorate span:nth-of-type(2) {
        top: 80px;
        right: -230px; }
        @media (max-width: 1199px) {
          .label.style-1 .decorate span:nth-of-type(2) {
            top: 45px;
            right: -180px; } }
      .label.style-1 .decorate span:nth-of-type(3) {
        top: 160px;
        right: -280px; }
        @media (max-width: 1199px) {
          .label.style-1 .decorate span:nth-of-type(3) {
            top: 90px;
            right: -200px; } }
  .label.style-1 .container {
    position: relative; }
  .label.style-1 h2 {
    display: inline-block;
    background-color: var(--white-color);
    padding: 25px 30px; }
    @media (max-width: 575px) {
      .label.style-1 h2 {
        padding: 25px 15px 0; } }
  .label.style-1 h6 {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 30px; }
  @media (max-width: 1199px) {
    .label.style-1 .d-flex.columns-2.toLeft > .item:nth-of-type(1) {
      width: 100%; } }
  @media (max-width: 575px) {
    .label.style-1 .container {
      padding: 0; } }
.label:not(.style-1) {
  border-top: 1px solid rgba(0, 0, 0, 0.15); }

#launcher,
.header_lang_top {
  z-index: 9 !important; }
  #launcher *,
  .header_lang_top * {
    color: var(--black-color) !important; }

@media (max-width: 991px) {
  .d-flex.columns-4 {
    --columns: 2; } }
@media (max-width: 767px) {
  .d-flex.columns-2 {
    --columns: 1; }

  .pt-80 {
    padding-top: 60px; }

  .pb-80 {
    padding-bottom: 60px; } }
@media (max-width: 575px) {
  .d-flex.columns-4 {
    --columns: 1; } }
#header {
  min-height: var(--header-height); }
  #header .content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: var(--header-height); }
    #header .content ul {
      align-items: center;
      gap: 0 30px; }
      #header .content ul li.text-primary {
        font-family: 'Geologica';
        font-size: 32px;
        font-weight: 100;
        opacity: .5;
        transform: translateX(3px); }
      #header .content ul a:not(.button) {
        display: inline-flex;
        align-items: center;
        height: var(--button-height); }
        #header .content ul a:not(.button)::before {
          top: calc(50% + 10px);
          bottom: inherit; }
      #header .content ul li.active a:not(.button)::before {
        transform: scaleX(1);
        transform-origin: left; }
      @media (max-width: 575px) {
        #header .content ul li:nth-of-type(3),
        #header .content ul li:nth-of-type(4) {
          display: none; } }

#footer {
  overflow: hidden; }
  @media (min-width: 768px) {
    #footer {
      padding-top: 66px; } }
  #footer .top {
    background-color: var(--secondary-color); }
    #footer .top .content {
      position: relative; }
      @media (min-width: 768px) {
        #footer .top .content {
          height: 64px; } }
      #footer .top .content .icon-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        color: var(--primary-color);
        font-size: 130px;
        transform: translateY(-3px); }
        @media (max-width: 767px) {
          #footer .top .content .icon-wrap {
            display: none; } }
      @media (max-width: 767px) {
        #footer .top .content .item {
          display: flex;
          align-items: center;
          height: 50px; } }
      #footer .top .content .item .text-wrap {
        transform: translateY(2px); }
      #footer .top .content .item:nth-of-type(1) .text-wrap {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-left: 175px; }
        @media (max-width: 991px) {
          #footer .top .content .item:nth-of-type(1) .text-wrap {
            padding-left: 150px; } }
        @media (max-width: 767px) {
          #footer .top .content .item:nth-of-type(1) .text-wrap {
            padding-left: 0; } }
        #footer .top .content .item:nth-of-type(1) .text-wrap a {
          color: var(--primary-color);
          font-family: var(--font-family);
          font-weight: 600; }
        #footer .top .content .item:nth-of-type(1) .text-wrap i {
          color: var(--primary-color);
          font-size: 14px;
          transform: translateY(-1px); }
      #footer .top .content .item.secondary-item {
        position: relative; }
        #footer .top .content .item.secondary-item::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 0;
          width: 50vw;
          height: 64px;
          background-color: var(--primary-color);
          transform: translateY(-50%); }
          @media (max-width: 767px) {
            #footer .top .content .item.secondary-item::before {
              top: 0;
              left: -33vw;
              width: 150vw;
              height: 100%;
              transform: translateY(0); } }
        #footer .top .content .item.secondary-item .text-wrap {
          position: relative; }
          @media (min-width: 768px) {
            #footer .top .content .item.secondary-item .text-wrap {
              padding-left: 50px; } }
          #footer .top .content .item.secondary-item .text-wrap a {
            color: var(--black-color); }
            #footer .top .content .item.secondary-item .text-wrap a:not(.button)::before {
              background-color: var(--black-color); }
  #footer .bottom {
    background-color: #1B2523; }
    #footer .bottom .d-flex {
      padding: 50px 0 50px 175px; }
      @media (max-width: 1199px) {
        #footer .bottom .d-flex {
          padding-left: 0; } }
      @media (max-width: 991px) {
        #footer .bottom .d-flex.columns-2.toLeft > .item:nth-of-type(1) {
          width: 100%; } }
    #footer .bottom h3 {
      color: var(--primary-color);
      margin-bottom: 15px; }
    #footer .bottom p,
    #footer .bottom a {
      color: var(--white-color); }
    #footer .bottom hr {
      background-color: var(--grey-color); }
    #footer .bottom .copyright {
      text-align: center;
      padding-block: 20px; }
      #footer .bottom .copyright p {
        font-size: 14px; }

#contact-page .section-2 form {
  display: flex;
  flex-wrap: wrap;
  gap: 25px; }
  #contact-page .section-2 form .input-wrap {
    width: 100%; }
    @media (min-width: 768px) {
      #contact-page .section-2 form .input-wrap:not(:nth-of-type(5)) {
        width: calc(50% - 25px / 2); } }

#subscription-page .section-2 form {
  display: flex;
  flex-direction: column;
  gap: 25px; }
  #subscription-page .section-2 form .unsubscribe-check-wrapper {
    display: flex;
    justify-content: space-between;
    border: 1px solid transparent;
    transition: border-color .25s ease; }
    #subscription-page .section-2 form .unsubscribe-check-wrapper .text-wrap {
      width: calc(100% - 25px - 10px);
      color: var(--grey-color);
      font-family: var(--font-family-2);
      font-size: var(--font-size-default);
      font-weight: var(--font-weight-default);
      line-height: 1.5; }

#faq-page .section-1 .content .item {
  background-color: #e7f6ed;
  text-align: center;
  border: 1px solid var(--primary-color);
  padding: 30px 25px; }
  #faq-page .section-1 .content .item .img-wrap {
    margin-bottom: 15px; }
  #faq-page .section-1 .content .item .text-wrap p {
    font-size: 14px;
    font-weight: 600; }
#faq-page .section-2 .content {
  max-width: 930px;
  margin-inline: auto; }
#faq-page .section-2 .accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-block: 20px; }
  #faq-page .section-2 .accordion-title {
    position: relative;
    cursor: pointer; }
    #faq-page .section-2 .accordion-title::before {
      content: "+";
      position: absolute;
      top: 50%;
      right: 0;
      color: var(--grey-color);
      font-family: var(--font-family);
      font-size: 32px;
      font-weight: 100;
      line-height: 1;
      transform: translateY(-50%); }
    #faq-page .section-2 .accordion-title .text-wrap {
      max-width: calc(100% - 35px); }
      #faq-page .section-2 .accordion-title .text-wrap > * {
        text-transform: lowercase; }
        #faq-page .section-2 .accordion-title .text-wrap > *::first-letter {
          text-transform: uppercase; }
  #faq-page .section-2 .accordion.active .accordion-title::before {
    content: "-";
    right: 4px; }
  #faq-page .section-2 .accordion-description {
    height: 0;
    overflow: hidden;
    transition: height .25s ease; }
    #faq-page .section-2 .accordion-description p:first-letter {
      text-transform: uppercase; }
  #faq-page .section-2 .accordion-content {
    padding-top: 15px; }
#faq-page .section-3 .content {
  max-width: 930px;
  margin-inline: auto; }
#faq-page .section-3 .img-wrap {
  text-align: right; }
