.btn {
  border-radius: 50px;
  padding: 0.25rem 1rem;
  font-weight: 500;
  font-size: inherit;
}
.btn:focus {
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .btn-md {
    padding: 0.5rem 2rem;
    font-size: calc(1.255rem + 0.06vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-md {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 992px) {
  .btn-lg {
    padding: 1rem 5rem;
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-lg {
    font-size: 1.5rem;
  }
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #3c98af;
  color: #3c98af;
}
.btn-outline-primary:hover {
  background-color: #3c98af;
  color: #fff;
}

.btn-outline-black {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}
.btn-outline-black:hover {
  background-color: #000;
  color: #fff;
}

.btn-outline-dark-grey {
  background-color: transparent;
  border: 1px solid #ababab;
  color: #ababab;
}
.btn-outline-dark-grey:hover {
  background-color: #ababab;
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #fff;
}

.btn-outline-yellow {
  background-color: transparent;
  border: 1px solid #f1ebb9;
  color: #f1ebb9;
}
.btn-outline-yellow:hover {
  background-color: #f1ebb9;
  color: #fff;
}

.btn-outline-dark-yellow {
  background-color: transparent;
  border: 1px solid #e8cf9f;
  color: #e8cf9f;
}
.btn-outline-dark-yellow:hover {
  background-color: #e8cf9f;
  color: #fff;
}

.btn-outline-green {
  background-color: transparent;
  border: 1px solid #001f17;
  color: #001f17;
}
.btn-outline-green:hover {
  background-color: #001f17;
  color: #fff;
}

.btn-primary {
  background-color: #3c98af;
  border: 1px solid #3c98af;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:disabled {
  background-color: #2f7789;
  color: #fff;
  border: 1px solid #2f7789;
}
.btn-primary:focus, .btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(60, 152, 175, 0.5);
}

.btn-black {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-black:hover, .btn-black:active, .btn-black:focus, .btn-black:disabled {
  background-color: black;
  color: #fff;
  border: 1px solid black;
}
.btn-black:focus, .btn-black:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-dark-grey {
  background-color: #ababab;
  border: 1px solid #ababab;
  color: #fff;
}
.btn-dark-grey:hover, .btn-dark-grey:active, .btn-dark-grey:focus, .btn-dark-grey:disabled {
  background-color: #929292;
  color: #fff;
  border: 1px solid #929292;
}
.btn-dark-grey:focus, .btn-dark-grey:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(171, 171, 171, 0.5);
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #fff;
}
.btn-white:hover, .btn-white:active, .btn-white:focus, .btn-white:disabled {
  background-color: #e6e6e6;
  color: #fff;
  border: 1px solid #e6e6e6;
}
.btn-white:focus, .btn-white:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.btn-yellow {
  background-color: #f1ebb9;
  border: 1px solid #f1ebb9;
  color: #fff;
}
.btn-yellow:hover, .btn-yellow:active, .btn-yellow:focus, .btn-yellow:disabled {
  background-color: #e9df8f;
  color: #fff;
  border: 1px solid #e9df8f;
}
.btn-yellow:focus, .btn-yellow:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(241, 235, 185, 0.5);
}

.btn-dark-yellow {
  background-color: #e8cf9f;
  border: 1px solid #e8cf9f;
  color: #fff;
}
.btn-dark-yellow:hover, .btn-dark-yellow:active, .btn-dark-yellow:focus, .btn-dark-yellow:disabled {
  background-color: #deba76;
  color: #fff;
  border: 1px solid #deba76;
}
.btn-dark-yellow:focus, .btn-dark-yellow:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(232, 207, 159, 0.5);
}

.btn-green {
  background-color: #001f17;
  border: 1px solid #001f17;
  color: #fff;
}
.btn-green:hover, .btn-green:active, .btn-green:focus, .btn-green:disabled {
  background-color: black;
  color: #fff;
  border: 1px solid black;
}
.btn-green:focus, .btn-green:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 31, 23, 0.5);
}

.njl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  background: #f1ebb9;
  color: #001f17;
}
@media screen and (max-width: 991px) {
  .njl-btn {
    display: block;
    width: 100%;
    padding: 11px 9px;
  }
}
@media screen and (max-width: 470px) {
  .njl-btn {
    font-size: 15px;
  }
  .njl-btn i {
    display: none;
  }
}
.njl-btn i {
  font-size: 20px;
  margin-right: 0;
}
.njl-btn:hover, .njl-btn:focus {
  background: #f1ebb9;
  color: #001f17;
  transform: translateY(-1px);
}

.text-primary {
  color: #3c98af !important;
}
.text-primary a {
  color: #3c98af;
  font-weight: 500;
}
.text-primary a:hover {
  color: #2f7789;
}

.text-black {
  color: #000 !important;
}
.text-black a {
  color: #000;
  font-weight: 500;
}
.text-black a:hover {
  color: black;
}

.text-dark-grey {
  color: #ababab !important;
}
.text-dark-grey a {
  color: #ababab;
  font-weight: 500;
}
.text-dark-grey a:hover {
  color: #929292;
}

.text-white {
  color: #fff !important;
}
.text-white a {
  color: #fff;
  font-weight: 500;
}
.text-white a:hover {
  color: #e6e6e6;
}

.text-yellow {
  color: #f1ebb9 !important;
}
.text-yellow a {
  color: #f1ebb9;
  font-weight: 500;
}
.text-yellow a:hover {
  color: #e9df8f;
}

.text-dark-yellow {
  color: #e8cf9f !important;
}
.text-dark-yellow a {
  color: #e8cf9f;
  font-weight: 500;
}
.text-dark-yellow a:hover {
  color: #deba76;
}

.text-green {
  color: #001f17 !important;
}
.text-green a {
  color: #001f17;
  font-weight: 500;
}
.text-green a:hover {
  color: black;
}

.bg-primary {
  background-color: #3c98af;
}

.bg-black {
  background-color: #000;
}

.bg-dark-grey {
  background-color: #ababab;
}

.bg-white {
  background-color: #fff;
}

.bg-yellow {
  background-color: #f1ebb9;
}

.bg-dark-yellow {
  background-color: #e8cf9f;
}

.bg-green {
  background-color: #001f17;
}

.map {
  min-height: 500px;
  width: 100%;
}

label {
  font-size: 1rem;
  font-weight: 500;
}
label.form-check-label {
  font-weight: 400;
}

.form-control,
.form-check-input[type=checkbox] {
  border-radius: 0;
  border: 1px solid #ababab;
}

.form-check .wpcf7-list-item {
  margin: 0;
  display: inline;
}

span.wpcf7-not-valid-tip {
  font-size: 0.9rem;
}

.wpcf7-list-item {
  width: 100%;
  position: relative;
  display: inline;
  margin: 0 !important;
}
.wpcf7-list-item input[type=checkbox] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: 8px;
  margin-top: 14px;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  color: #fff;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  transform: rotate(-45deg) scale(1);
}
.wpcf7-list-item input[type=checkbox]:focus + label::before {
  outline: 0;
}
.wpcf7-list-item label {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding-left: 35px;
  margin-bottom: 1rem;
  font-weight: 400;
  cursor: pointer;
  vertical-align: sub;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 300;
}
.wpcf7-list-item label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px 4px 4px 0;
  width: 22px;
  height: 22px;
  transition: transform 0.28s ease;
  border-radius: 0px;
  border: 1px solid #fff;
  background-color: #fff;
}
.wpcf7-list-item .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  will-change: transform;
  position: absolute;
  top: 12px;
  left: 6px;
}
.wpcf7-list-item .wpcf7-list-item-label span {
  font-weight: 500;
  font-size: 12px;
  color: #000;
}
.wpcf7-list-item .wpcf7-list-item-label span a {
  color: #000;
  text-decoration: underline;
}
.wpcf7-list-item .wpcf7-list-item-label span a:hover {
  text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 1rem;
  border: 0;
  text-align: center;
  font-size: 1.4em;
}

.site-header {
  background: #001f17;
  padding: 0px 0 30px 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.site-header .flags {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .site-header__inner {
    gap: 0px;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo img {
  max-width: 350px;
  height: auto;
  display: block;
}
@media screen and (max-width: 1399px) {
  .site-header__logo img {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .site-header__logo img {
    max-width: 200px;
  }
}
.site-header__logo span {
  color: #f1ebb9;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.site-header__logo span small {
  display: block;
  font-size: 13px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .site-header .njl-btn {
    margin-left: 20px;
    gap: 6px;
    padding: 11px 20px;
  }
}
@media screen and (max-width: 460px) {
  .site-header .njl-btn {
    display: none;
  }
}
.site-header__nav {
  margin-left: auto;
}
.site-header__nav .main-menu {
  display: flex;
  align-items: center;
  gap: 52px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1399px) {
  .site-header__nav .main-menu {
    gap: 30px;
  }
}
.site-header__nav .main-menu li {
  margin: 0;
  padding: 0;
}
.site-header__nav .main-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 300;
  transition: color 0.25s ease;
}
@media screen and (max-width: 1399px) {
  .site-header__nav .main-menu a {
    font-size: 17px;
  }
}
.site-header__nav .main-menu a:hover, .site-header__nav .main-menu a:focus {
  color: #f1ebb9;
}
.site-header__burger {
  display: none;
  background: transparent;
  border: 0;
  color: #f1ebb9;
  font-size: 30px;
  padding: 0;
}

.site-mobile-menu {
  background: #001f17;
  color: #fff;
  width: 60%;
}
@media screen and (max-width: 991px) {
  .site-mobile-menu {
    width: 100%;
  }
}
.site-mobile-menu .offcanvas-header {
  padding: 3rem 3rem 5rem;
}
.site-mobile-menu__close {
  background: transparent;
  border: 0;
  color: #f1ebb9;
  font-size: 28px;
}
.site-mobile-menu .offcanvas-body {
  padding: 0rem 3rem 3rem;
}
.site-mobile-menu .offcanvas-body .btn {
  text-align: center;
  display: block;
  width: 50%;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  .site-mobile-menu .offcanvas-body .btn {
    width: 100%;
  }
}
.site-mobile-menu .mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-mobile-menu .mobile-menu li {
  text-align: center;
}
.site-mobile-menu .mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 18px 0;
}
.site-mobile-menu .mobile-menu a:hover {
  color: #f1ebb9;
}

@media (max-width: 1199px) {
  .site-header__nav, .site-header__cta {
    display: none;
  }
  .site-header__burger {
    display: block;
  }
}
@media (max-width: 575px) {
  .site-header {
    padding: 18px 0;
  }
  .site-header__logo img {
    max-width: 190px;
  }
}
#footer {
  background: #f9f8f6;
  color: #001f17;
  overflow: hidden;
}
#footer .footerTop {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#footer .footerLogo {
  margin-bottom: 28px;
}
#footer .footerLogo img {
  max-width: 330px;
  height: auto;
}
@media screen and (max-width: 399px) {
  #footer .footerLogo img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
}
#footer p,
#footer a {
  color: #000;
  font-size: 17px;
  line-height: 1.5;
}
#footer a:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-color: #001f17;
  text-decoration-thickness: 2px;
}
#footer h3 {
  color: #001f17;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  margin-bottom: 15px;
}
#footer .footerCol {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 25px;
}
#footer .footerMenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer .footerMenu li {
  margin-bottom: 10px;
}
#footer .footerMenu a {
  text-decoration: none;
}
#footer .footerMenu a:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-color: #001f17;
  text-decoration-thickness: 2px;
}
#footer .footerContact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
#footer .footerContact span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #001f17;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 35px;
  font-size: 18px;
}
#footer .footerContact a {
  word-break: break-word;
  font-size: 15px;
}
#footer .footerSocials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#footer .footerSocials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #001f17;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
#footer .footerSocials a:hover {
  background: #f1ebb9;
  color: #001f17;
}
#footer .footerBottom {
  background: #f4f1ec;
}
#footer .footerBottom p, #footer .footerBottom a {
  color: #000;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  #footer {
    text-align: center;
  }
  #footer .footerCol {
    border-left: 0;
    padding-left: 0;
  }
  #footer .footerSocials {
    justify-content: center;
  }
  #footer .footerContact {
    display: block;
  }
  #footer .footerContact span {
    text-align: center;
    margin: 0 auto;
  }
}

#backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0dfc0, #e8cf9f);
  color: #001f17;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(232, 207, 159, 0.4);
}
#backToTop:hover {
  color: #001f17;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(232, 207, 159, 0.6);
}
#backToTop.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  #backToTop {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
    font-size: 18px;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(1.305rem + 0.66vw);
  color: #000;
}
@media (min-width: 1200px) {
  body {
    line-height: 1.8rem;
  }
}

p,
li,
a,
button,
input,
textarea,
select {
  font-family: "Inter", sans-serif;
  line-height: inherit;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #000;
  text-decoration: none;
  transition: color ease 0.3s;
}
a:hover {
  color: #2f7789;
}

b,
strong {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 0;
}

h1,
.h1 {
  font-size: calc(1.525rem + 3.3vw);
  line-height: calc(1.625rem + 4.5vw);
  font-weight: 600;
}
@media (min-width: 1200px) {
  h1,
.h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  h1,
.h1 {
    line-height: 5rem;
  }
}

h2,
.h2 {
  font-size: calc(1.495rem + 2.94vw);
  line-height: calc(1.535rem + 3.42vw);
  font-weight: 600;
}
@media (min-width: 1200px) {
  h2,
.h2 {
    font-size: 3.7rem;
  }
}
@media (min-width: 1200px) {
  h2,
.h2 {
    line-height: 4.1rem;
  }
}

h3,
.h3 {
  font-size: calc(1.4rem + 1.8vw);
  line-height: calc(1.435rem + 2.22vw);
}
@media (min-width: 1200px) {
  h3,
.h3 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1200px) {
  h3,
.h3 {
    line-height: 3.1rem;
  }
}

h4,
.h4 {
  font-size: calc(1.35rem + 1.2vw);
  line-height: calc(1.385rem + 1.62vw);
}
@media (min-width: 1200px) {
  h4,
.h4 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  h4,
.h4 {
    line-height: 2.6rem;
  }
}

h5,
.h5 {
  font-size: calc(1.3rem + 0.6vw);
  line-height: calc(1.335rem + 1.02vw);
}
@media (min-width: 1200px) {
  h5,
.h5 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  h5,
.h5 {
    line-height: 2.1rem;
  }
}

h6,
.h6 {
  font-size: calc(1.26rem + 0.12vw);
  line-height: calc(1.295rem + 0.54vw);
}
@media (min-width: 1200px) {
  h6,
.h6 {
    font-size: 1.35rem;
  }
}
@media (min-width: 1200px) {
  h6,
.h6 {
    line-height: 1.7rem;
  }
}

#generic-content,
.normalise {
  overflow-x: hidden;
}
#generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
  font-size: calc(1.275rem + 0.3vw);
  line-height: calc(1.305rem + 0.66vw);
  color: #3c98af;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 700;
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    line-height: 1.8rem;
  }
}
#generic-content p,
.normalise p {
  text-overflow: ellipsis;
  overflow: hidden;
}
#generic-content table,
.normalise table {
  width: 100%;
}
#generic-content table tbody,
#generic-content table td,
#generic-content table tfoot,
#generic-content table th,
#generic-content table thead,
#generic-content table tr,
.normalise table tbody,
.normalise table td,
.normalise table tfoot,
.normalise table th,
.normalise table thead,
.normalise table tr {
  border: 1px solid #ababab;
  padding: 0.5rem 0.5rem;
}
#generic-content ul li,
.normalise ul li {
  margin-bottom: 0.5rem;
}
#generic-content blockquote,
.normalise blockquote {
  background: #ababab;
  padding: 1rem 2rem;
  font-style: italic;
  border-left: 3px solid #3c98af;
  font-size: 1rem;
  line-height: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  #generic-content blockquote,
.normalise blockquote {
    line-height: 1.5rem;
  }
}
#generic-content *:last-child,
.normalise *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #generic-content iframe,
.normalise iframe {
    width: calc(100vw - 60px);
  }
}

@media screen and (max-width: 992px) {
  h1,
.h1 {
    font-size: calc(1.585rem + 4.02vw);
    line-height: calc(1.605rem + 4.26vw);
  }
}
@media screen and (max-width: 992px) and (min-width: 1200px) {
  h1,
.h1 {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 992px) and (min-width: 1200px) {
  h1,
.h1 {
    line-height: 4.8rem;
  }
}
@media screen and (max-width: 992px) {
  h2,
.h2 {
    font-size: calc(1.45rem + 2.4vw);
    line-height: calc(1.485rem + 2.82vw);
  }
}
@media screen and (max-width: 992px) and (min-width: 1200px) {
  h2,
.h2 {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 992px) and (min-width: 1200px) {
  h2,
.h2 {
    line-height: 3.6rem;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 1rem;
    line-height: calc(1.285rem + 0.42vw);
  }
}
@media screen and (max-width: 576px) and (min-width: 1200px) {
  body {
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  h1,
.h1 {
    font-size: calc(1.425rem + 2.1vw);
    line-height: calc(1.45rem + 2.4vw);
  }
}
@media screen and (max-width: 576px) and (min-width: 1200px) {
  h1,
.h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 576px) and (min-width: 1200px) {
  h1,
.h1 {
    line-height: 3.25rem;
  }
}
@media screen and (max-width: 576px) {
  h2,
.h2 {
    font-size: calc(1.365rem + 1.38vw);
    line-height: calc(1.4rem + 1.8vw);
  }
}
@media screen and (max-width: 576px) and (min-width: 1200px) {
  h2,
.h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 576px) and (min-width: 1200px) {
  h2,
.h2 {
    line-height: 2.75rem;
  }
}
@media screen and (max-width: 576px) {
  h3,
.h3 {
    font-size: calc(1.325rem + 0.9vw);
    line-height: calc(1.36rem + 1.32vw);
  }
}
@media screen and (max-width: 576px) and (min-width: 1200px) {
  h3,
.h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) and (min-width: 1200px) {
  h3,
.h3 {
    line-height: 2.35rem;
  }
}
.font-weight-thin {
  font-weight: 100 !important;
}

.font-weight-extra-light {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-extra-bold {
  font-weight: 800 !important;
}

.font-weight-black {
  font-weight: 900 !important;
}

.questionnaire__step {
  display: none;
}
.questionnaire__step.is-active {
  display: block;
}
.questionnaire__result {
  display: none;
}
.questionnaire__result.is-active {
  display: block;
}
.questionnaire__progress {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.questionnaire__progress-bar {
  width: 0;
  height: 100%;
  background: #0057b8;
  transition: 0.3s;
}
.questionnaire__error {
  display: none;
  color: red;
  margin-top: 15px;
}
.questionnaire__step.has-error .questionnaire__error {
  display: block;
}
.questionnaire__answer {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.questionnaire__answer input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.25s ease;
}
.questionnaire__answer input[type=radio]:checked {
  border-color: #f1ebb9;
}
.questionnaire__answer input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #f1ebb9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.questionnaire__answer input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 178, 51, 0.25);
}
.questionnaire__answer span {
  font-size: 15px;
  line-height: 1.5;
}
.questionnaire__answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
  width: 100%;
  margin-bottom: 0.5rem;
}
.questionnaire__answer input {
  margin-top: 3px;
  flex-shrink: 0;
}
.questionnaire__answer span {
  display: block;
}
.questionnaire .questionnaire__buttons {
  margin-top: 2rem;
}
.questionnaire .questionnaire__buttons button {
  background: #f1ebb9;
  color: #001f17;
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 600;
}

section {
  position: relative;
  overflow: hidden;
}
section#homeHero {
  position: relative;
  background: radial-gradient(circle at center, #073a27 0%, #001f17 70%);
  color: #fff;
  overflow: hidden;
}
section#homeHero .heroText h1 {
  line-height: 1.2;
  margin-bottom: 28px;
}
section#homeHero .heroText h1 span {
  color: #f1ebb9;
  display: block;
}
section#homeHero .heroText h1:after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #f1ebb9;
  margin-top: 10px;
}
section#homeHero .heroText p {
  font-size: 17px;
  line-height: 1.2;
}
section#homeHero .heroText > p:first-of-type {
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 30px;
}
section#homeHero .heroPoints {
  margin: 30px 0;
}
section#homeHero .heroPoint {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
section#homeHero .heroPoint span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 236, 159, 0.12);
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
section#homeHero .heroPoint p {
  margin: 0;
}
section#homeHero .heroVideo {
  border: 3px solid #e8cf9f;
  border-radius: 18px 18px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(255, 236, 159, 0.12);
}
section#homeHero .heroVideo video {
  margin-bottom: -0.5rem;
}
section#homeHero .heroVideo a {
  position: relative;
  display: block;
}
section#homeHero .heroVideo .playIcon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #001f17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  padding-left: 10px;
}
section#homeHero .heroMeet {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 32px 34px 35px;
  background: rgba(0, 31, 23, 0.95);
}
section#homeHero .heroMeet > span {
  width: 64px;
  height: 64px;
  border: 2px solid #e8cf9f;
  border-radius: 50%;
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 31px;
}
section#homeHero .heroMeet h3 {
  color: #f1ebb9;
  font-size: 31px;
  font-weight: 800;
  margin-bottom: 8px;
}
section#homeHero .heroMeet p {
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
}
section#homeHero .heroBottom {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-top: 38px;
}
section#homeHero .heroBottomItem {
  display: flex;
  align-items: center;
  gap: 18px;
}
section#homeHero .heroBottomItem span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 236, 159, 0.12);
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  flex-shrink: 0;
}
section#homeHero .heroBottomItem p {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  section#homeHero .heroText {
    margin-bottom: 0px;
  }
  section#homeHero .heroBottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
@media screen and (max-width: 575px) {
  section#homeHero .heroText h1 {
    font-size: 46px;
  }
  section#homeHero .heroText > p:first-of-type {
    font-size: 21px;
  }
  section#homeHero .heroVideo .playIcon {
    width: 95px;
    height: 95px;
    font-size: 42px;
  }
  section#homeHero .heroMeet {
    padding: 22px;
  }
}
@media screen and (max-width: 399px) {
  section#homeHero .heroMeet {
    display: block;
  }
  section#homeHero .heroMeet span {
    margin-bottom: 1rem;
  }
}
section#stuckSection {
  background: #fff;
  color: #001f17;
}
section#stuckSection .sectionIntro {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #001f17;
  margin-bottom: 35px;
}
section#stuckSection .stuckImage {
  border-radius: 16px;
  object-fit: cover;
}
section#stuckSection .stuckText h2 {
  font-family: "Poppins", sans-serif;
  color: #001f17;
  font-weight: 600;
  max-width: 700px;
  margin-bottom: 45px;
}
section#stuckSection .stuckPoints {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section#stuckSection .stuckPoint {
  display: flex;
  align-items: center;
  gap: 20px;
}
section#stuckSection .stuckPoint span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f1ebb9;
  color: #001f17;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
}
section#stuckSection .stuckPoint p {
  font-family: "Inter", sans-serif;
  color: #000;
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
}
@media screen and (max-width: 992px) {
  section#stuckSection .sectionIntro {
    margin-bottom: 35px;
  }
  section#stuckSection .stuckText h2 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  section#stuckSection .stuckPoint {
    gap: 18px;
  }
  section#stuckSection .stuckPoint span {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  section#stuckSection .stuckPoint p {
    font-size: 18px;
  }
}
section#problemSection {
  background: #fff;
}
section#problemSection .problemBox {
  background: radial-gradient(circle at center, #004331 0%, #001f17 70%);
  border-radius: 18px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 55px;
}
section#problemSection .problemIcon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(241, 235, 185, 0.08);
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  flex: 0 0 130px;
}
section#problemSection .problemHeading {
  border-left: 2px solid #e8cf9f;
  padding-left: 55px;
  flex: 0 0 48%;
}
section#problemSection .problemHeading h2 {
  color: #f1ebb9;
  font-weight: 600;
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}
section#problemSection .problemText {
  flex: 1;
}
section#problemSection .problemText p {
  color: #fff;
  font-size: 19px;
  line-height: 1.45;
  margin: 0;
}
@media screen and (max-width: 992px) {
  section#problemSection .problemBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 30px;
  }
  section#problemSection .problemHeading {
    border-left: 0;
    padding-left: 0;
    flex: none;
  }
  section#problemSection .problemIcon {
    width: 110px;
    height: 110px;
    flex-basis: 110px;
    font-size: 50px;
  }
}
section#alexandraSection {
  background: #fff;
  color: #001f17;
}
section#alexandraSection .alexandraImage {
  object-fit: cover;
  min-height: 720px;
}
section#alexandraSection .sectionIntro {
  color: #e8cf9f;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
section#alexandraSection .alexandraText h2 {
  color: #001f17;
  font-weight: 600;
  margin-bottom: 18px;
}
section#alexandraSection .introText p {
  color: #000;
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 22px;
}
section#alexandraSection .alexandraQuote {
  position: relative;
  background: rgba(0, 31, 23, 0.06);
  border-radius: 14px;
  padding: 25px 60px;
  margin: 26px 0;
}
section#alexandraSection .alexandraQuote p {
  font-size: 19px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 600;
  margin: 0;
  color: #000;
}
section#alexandraSection .alexandraQuote .quoteStart,
section#alexandraSection .alexandraQuote .quoteEnd {
  position: absolute;
  color: #f1ebb9;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  section#alexandraSection .alexandraQuote .quoteStart,
section#alexandraSection .alexandraQuote .quoteEnd {
    display: none;
  }
}
section#alexandraSection .alexandraQuote .quoteStart {
  left: 5px;
  top: 8px;
}
section#alexandraSection .alexandraQuote .quoteEnd {
  right: 22px;
  bottom: 10px;
}
section#alexandraSection .afterQuote {
  color: #000;
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 24px;
}
section#alexandraSection .alexandraPoints {
  display: flex;
  flex-direction: column;
}
section#alexandraSection .alexandraPoint {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
section#alexandraSection .alexandraPoint:last-child {
  border-bottom: 0;
}
section#alexandraSection .alexandraPoint > span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #001f17;
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  font-size: 25px;
}
section#alexandraSection .alexandraPoint h3 {
  color: #001f17;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 0px;
}
section#alexandraSection .alexandraPoint p {
  color: #000;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}
section#alexandraSection .alexandraFooter {
  margin-top: 42px;
  background: rgba(241, 235, 185, 0.35);
  border-radius: 14px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
section#alexandraSection .alexandraFooter span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e4d979;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}
section#alexandraSection .alexandraFooter p {
  color: #001f17;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
}
@media screen and (max-width: 992px) {
  section#alexandraSection .alexandraImage {
    min-height: auto;
  }
}
@media screen and (max-width: 576px) {
  section#alexandraSection .alexandraQuote {
    padding: 28px 35px;
  }
  section#alexandraSection .alexandraQuote .quoteStart,
section#alexandraSection .alexandraQuote .quoteEnd {
    font-size: 48px;
  }
  section#alexandraSection .alexandraQuote .quoteStart {
    left: 12px;
  }
  section#alexandraSection .alexandraQuote .quoteEnd {
    right: 12px;
  }
  section#alexandraSection .alexandraFooter {
    align-items: flex-start;
  }
}
section#fluencySystemSection {
  background: radial-gradient(circle at center, #004331 0%, #001f17 72%);
  color: #fff;
}
section#fluencySystemSection .fluencySystemBox {
  text-align: center;
}
section#fluencySystemSection .sectionIntro,
section#fluencySystemSection .smallHeading {
  color: #f1ebb9;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
section#fluencySystemSection .sectionIntro:before, section#fluencySystemSection .sectionIntro:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: #e8cf9f;
}
section#fluencySystemSection .sectionIntro:before {
  right: calc(100% + 28px);
}
section#fluencySystemSection .sectionIntro:after {
  left: calc(100% + 28px);
}
section#fluencySystemSection h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 28px;
}
section#fluencySystemSection h2 span {
  color: #f1ebb9;
}
section#fluencySystemSection h2:after {
  content: "";
  display: block;
  width: 75px;
  height: 2px;
  background: #e8cf9f;
  margin: 26px auto 0;
}
section#fluencySystemSection .fluencyIntroText {
  max-width: 760px;
  margin: 0 auto 45px;
}
section#fluencySystemSection .fluencyIntroText p {
  color: #fff;
  font-size: 25px;
  line-height: 1.45;
  margin-bottom: 0;
}
section#fluencySystemSection .fluencyIntroText p strong {
  color: #f1ebb9;
}
section#fluencySystemSection .smallHeading {
  margin-bottom: 0;
  background: #003628;
  padding: 0 28px;
  z-index: 2;
  transform: translateY(50%);
}
section#fluencySystemSection .fluencyCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(232, 207, 159, 0.5);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}
section#fluencySystemSection .fluencyCard {
  padding: 30px 40px;
}
section#fluencySystemSection .fluencyCard:first-child {
  border-right: 1px solid rgba(232, 207, 159, 0.5);
}
section#fluencySystemSection .fluencyCard .fluencyCardTop {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
section#fluencySystemSection .fluencyCard .fluencyCardTop > span {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 2px solid #e8cf9f;
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  flex: 0 0 125px;
}
section#fluencySystemSection .fluencyCard .fluencyCardTop h3 {
  color: #fff;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
}
section#fluencySystemSection .fluencyCard .fluencyCardTop h3:after {
  content: "";
  display: block;
  width: 75px;
  height: 2px;
  background: #e8cf9f;
  margin-top: 22px;
}
section#fluencySystemSection .fluencyCard ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section#fluencySystemSection .fluencyCard ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 20px;
}
section#fluencySystemSection .fluencyCard ul li:last-child {
  margin-bottom: 0;
}
section#fluencySystemSection .fluencyCard ul li .tick {
  width: 28px;
  height: 28px;
  border: 2px solid #f1ebb9;
  border-radius: 50%;
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  margin-top: 2px;
}
section#fluencySystemSection .fluencyCard ul li .tick i {
  font-size: 13px;
}
section#fluencySystemSection .fluencyCard ul li .text {
  flex: 1;
}
section#fluencySystemSection .fluencyFooter {
  margin-top: 22px;
  border: 1px solid rgba(232, 207, 159, 0.5);
  border-radius: 14px;
  padding: 24px 45px;
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: left;
}
@media screen and (max-width: 991px) {
  section#fluencySystemSection .fluencyFooter {
    display: block;
    text-align: center;
  }
}
section#fluencySystemSection .fluencyFooter > span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #e8cf9f;
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 70px;
  font-size: 34px;
}
@media screen and (max-width: 991px) {
  section#fluencySystemSection .fluencyFooter > span {
    margin: 0 auto;
  }
}
section#fluencySystemSection .fluencyFooter div,
section#fluencySystemSection .fluencyFooter p {
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
}
@media screen and (max-width: 991px) {
  section#fluencySystemSection .fluencyFooter div,
section#fluencySystemSection .fluencyFooter p {
    margin: 20px 0;
  }
}
section#fluencySystemSection .fluencyFooter div strong,
section#fluencySystemSection .fluencyFooter p strong {
  color: #f1ebb9;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  section#fluencySystemSection .fluencySystemBox {
    padding: 0px 15px;
  }
  section#fluencySystemSection .sectionIntro:before, section#fluencySystemSection .sectionIntro:after {
    display: none;
  }
  section#fluencySystemSection .fluencyCards {
    grid-template-columns: 1fr;
  }
  section#fluencySystemSection .fluencyCard {
    padding: 35px 25px;
  }
  section#fluencySystemSection .fluencyCard:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(232, 207, 159, 0.5);
  }
}
@media screen and (max-width: 576px) {
  section#fluencySystemSection .fluencyCard .fluencyCardTop {
    flex-direction: column;
    align-items: flex-start;
  }
  section#fluencySystemSection .fluencyCard .fluencyCardTop > span {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
    font-size: 40px;
  }
  section#fluencySystemSection .fluencyCard .fluencyCardTop h3 {
    font-size: 28px;
  }
  section#fluencySystemSection .fluencyCard ul li {
    font-size: 18px;
  }
  section#fluencySystemSection .fluencyFooter {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
section#differentSection {
  background: #fff;
  color: #001f17;
}
section#differentSection .sectionIntro {
  color: #e8cf9f;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 25px;
}
section#differentSection .sectionIntro:before, section#differentSection .sectionIntro:after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 2px;
  background: #e8cf9f;
  vertical-align: middle;
  margin: 0 24px;
}
section#differentSection h2 {
  color: #001f17;
  font-weight: 600;
  margin-bottom: 55px;
}
section#differentSection h2:after {
  content: "";
  display: block;
  width: 85px;
  height: 2px;
  background: #e8cf9f;
  margin: 28px auto 0;
}
section#differentSection .differentCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
section#differentSection .differentCard {
  background: rgba(241, 235, 185, 0.08);
  border: 1px solid rgba(232, 207, 159, 0.35);
  border-radius: 18px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 36px;
  min-height: 280px;
}
section#differentSection .differentIcon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 31, 23, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
section#differentSection .differentIcon img {
  max-width: 90px;
  max-height: 90px;
  width: auto;
  height: auto;
  display: block;
}
section#differentSection .differentIcon:after {
  content: "";
  position: absolute;
  right: -28px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #e8cf9f;
}
section#differentSection .differentContent h3 {
  color: #001f17;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
}
section#differentSection .differentContent p {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 18px;
}
section#differentSection .differentContent strong {
  color: #001f17;
  font-weight: 700;
}
section#differentSection .differentContent ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
section#differentSection .differentContent ul li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #000;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 12px;
}
section#differentSection .differentContent ul li:last-child {
  margin-bottom: 0;
}
section#differentSection .differentContent ul li .tick {
  width: 18px;
  height: 18px;
  border: 1.5px solid #e8cf9f;
  border-radius: 50%;
  color: #e8cf9f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  margin-top: 4px;
}
section#differentSection .differentContent ul li .tick i {
  font-size: 10px;
}
section#differentSection .differentFooter {
  margin-top: 28px;
  background: rgba(241, 235, 185, 0.22);
  border-radius: 14px;
  padding: 20px 42px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 991px) {
  section#differentSection .differentFooter {
    display: block;
    text-align: center;
  }
}
section#differentSection .differentFooter > span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #001f17;
  border: 2px solid #e8cf9f;
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  font-size: 28px;
}
@media screen and (max-width: 991px) {
  section#differentSection .differentFooter > span {
    margin: 0 auto;
  }
}
section#differentSection .differentFooter div,
section#differentSection .differentFooter p {
  color: #001f17;
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
}
@media screen and (max-width: 991px) {
  section#differentSection .differentFooter div,
section#differentSection .differentFooter p {
    margin: 20px 0;
  }
}
section#differentSection .differentFooter strong {
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  section#differentSection .differentCards {
    grid-template-columns: 1fr;
  }
  section#differentSection .differentCard {
    grid-template-columns: 130px 1fr;
  }
  section#differentSection .differentIcon {
    width: 110px;
    height: 110px;
  }
  section#differentSection .differentIcon img {
    max-width: 52px;
    max-height: 52px;
  }
}
@media screen and (max-width: 800px) {
  section#differentSection .sectionIntro:before, section#differentSection .sectionIntro:after {
    display: none;
  }
  section#differentSection .differentCard {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  section#differentSection .differentIcon:after {
    display: none;
  }
  section#differentSection .differentFooter {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
section#futureSection {
  position: relative;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
section#futureSection .futureOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #001f17 0%, rgba(0, 31, 23, 0.96) 28%, rgba(0, 31, 23, 0.72) 43%, rgba(0, 31, 23, 0.08) 68%, rgba(0, 31, 23, 0) 100%);
  z-index: 1;
}
section#futureSection .container {
  position: relative;
  z-index: 2;
}
section#futureSection .futureText {
  max-width: 650px;
}
section#futureSection .sectionIntro {
  color: #f1ebb9;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}
section#futureSection .sectionIntro:after {
  content: "";
  display: block;
  width: 95px;
  height: 3px;
  background: #f1ebb9;
  margin-top: 18px;
}
section#futureSection h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
section#futureSection h2 span {
  color: #f1ebb9;
  display: inline;
}
section#futureSection .futurePoints {
  display: flex;
  flex-direction: column;
}
section#futureSection .futurePoint {
  display: flex;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
section#futureSection .futurePoint:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
section#futureSection .futurePoint > span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(241, 235, 185, 0.08);
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  font-size: 30px;
}
section#futureSection .futurePoint h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 6px;
}
section#futureSection .futurePoint p {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}
@media screen and (max-width: 992px) {
  section#futureSection {
    background-position: center;
  }
  section#futureSection .futureOverlay {
    background: rgba(0, 31, 23, 0.88);
  }
  section#futureSection .futureText {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  section#futureSection .futurePoint {
    gap: 18px;
  }
  section#futureSection .futurePoint > span {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
    font-size: 25px;
  }
  section#futureSection .futurePoint h3 {
    font-size: 21px;
  }
  section#futureSection .futurePoint p {
    font-size: 18px;
  }
}
section#rightSection {
  background: #fff;
  color: #001f17;
}
section#rightSection .sectionIntro {
  color: #e8cf9f;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 25px;
}
section#rightSection .sectionIntro:before, section#rightSection .sectionIntro:after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 2px;
  background: #e8cf9f;
  vertical-align: middle;
  margin: 0 24px;
}
section#rightSection h2 {
  color: #001f17;
  font-weight: 600;
  margin-bottom: 30px;
}
section#rightSection h2:after {
  content: "";
  display: block;
  width: 85px;
  height: 2px;
  background: #e8cf9f;
  margin: 28px auto 0;
}
section#rightSection .rightText {
  max-width: 820px;
  margin: 0 auto 65px;
}
section#rightSection .rightText p {
  color: #000;
  font-size: 24px;
  line-height: 1.45;
  margin: 0;
}
section#rightSection .rightItems {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
section#rightSection .rightItem {
  text-align: center;
  padding: 0 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
section#rightSection .rightItem:last-child {
  border-right: 0;
}
section#rightSection .rightItem h3 {
  color: #001f17;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  margin: 25px 0 18px;
}
section#rightSection .rightItem p {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
section#rightSection .rightIcon {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(0, 31, 23, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
section#rightSection .rightIcon i {
  color: #001f17;
  font-size: 58px;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  section#rightSection .rightItems {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  section#rightSection .rightItem:nth-child(3n) {
    border-right: 0;
  }
}
@media screen and (max-width: 992px) {
  section#rightSection .rightItems {
    grid-template-columns: repeat(2, 1fr);
  }
  section#rightSection .rightItem:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }
  section#rightSection .rightItem:nth-child(2n) {
    border-right: 0;
  }
}
@media screen and (max-width: 576px) {
  section#rightSection .sectionIntro:before, section#rightSection .sectionIntro:after {
    display: none;
  }
  section#rightSection .rightIcon {
    width: 110px;
    height: 110px;
  }
  section#rightSection .rightIcon i {
    font-size: 46px;
  }
  section#rightSection .rightItems {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  section#rightSection .rightItem {
    border-right: 0 !important;
    padding: 0;
  }
}
section#bookingSection {
  background: radial-gradient(circle at center, #004331 0%, #001f17 72%);
  color: #fff;
  overflow: hidden;
}
section#bookingSection .sectionIntro {
  color: #f1ebb9;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
section#bookingSection .sectionIntro i {
  font-size: 30px;
}
section#bookingSection h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 28px;
  font-size: 4.5rem;
  line-height: 5rem;
}
@media screen and (max-width: 991px) {
  section#bookingSection h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
}
section#bookingSection h2 span {
  color: #f1ebb9;
}
section#bookingSection h2:after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #f1ebb9;
  margin-top: 25px;
}
section#bookingSection .bookingIntroText {
  margin-bottom: 35px;
}
section#bookingSection .bookingIntroText p {
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
}
section#bookingSection .bookingPoints {
  list-style: none;
  margin: 0;
  padding: 0;
}
section#bookingSection .bookingPoints li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 22px;
}
section#bookingSection .bookingPoints li span {
  width: 31px;
  height: 31px;
  border: 2px solid #f1ebb9;
  border-radius: 50%;
  color: #f1ebb9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 31px;
}
section#bookingSection .bookingPoints li span i {
  font-size: 14px;
}
section#bookingSection .bookingPoints li:last-child {
  margin-bottom: 0;
}
section#terms h1 {
  font-size: 45px;
  line-height: 50px;
}
section#terms h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-top: 1px solid #f1ebb9;
  padding-top: 2rem;
  font-size: 28px;
  line-height: 33px;
}
section#terms h3 {
  margin-bottom: 0.5rem;
  font-size: 21px;
  line-height: 26px;
  margin-top: 2rem;
}
section#terms ul {
  padding: 0;
  margin: 0;
  padding-left: 17px;
  margin-bottom: 1rem;
  list-style-position: outside;
}
section#terms ul li {
  margin-bottom: 0.2rem;
}

body.error404 .error-404 {
  padding: 6rem 0;
}
body.error404 .error-404 h1 {
  font-size: calc(2.125rem + 10.5vw);
  line-height: calc(2.175rem + 11.1vw);
  font-weight: 900;
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    font-size: 10rem;
  }
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    line-height: 10.5rem;
  }
}

body {
  position: relative;
}
body.modal-open {
  overflow: hidden;
  padding-right: 0px;
}

@media (min-width: 1500px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1450px;
  }
}
@media (min-width: 1800px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1700px;
  }
}

ul {
  list-style-position: inside;
  padding-left: 0rem;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.img-fluid {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}

.spill-container-left {
  margin-left: calc(-1 * (100vw - 100%) / 2);
}

.spill-container-right {
  margin-right: calc(-1 * (100vw - 100%) / 2);
}

@media screen and (min-width: 576px) {
  .spill-container-sm-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-sm-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 768px) {
  .spill-container-md-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-md-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 992px) {
  .spill-container-lg-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-lg-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .spill-container-xl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .spill-container-xxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1800px) {
  .spill-container-xxxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3c98af !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: transparent !important;
  border: 1px solid #fff !important;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .owl-carousel .owl-dots span {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid #fff !important;
  }
}

/*# sourceMappingURL=style.css.map */
