@import "./fonts/fonts.css";
@import "./vendor/bootstrap.min.css";
@import "./vendor/normalize.css";
@import "./vendor/slick.css";
@import "./vendor/leaflet.css";
@import "./vendor/leaflet-gesture-handling.css";

/* Global styles */

:root {
  --color-white: #ffffff;
  --color-darkBg: #181818;
  --body-color: rgb(48, 53, 57);
  --color-teal: rgb(35, 141, 135);
  --color-teal-light: rgb(45, 166, 158);
  --color-darkText: rgb(48, 53, 57);
  --font-family-1: "Barlow", sans-serif;
  --font-family-2: "Barlow", sans-serif;
  --font-family-3: "Barlow", sans-serif;

  --col-gap-offset: 5rem;
  --scrollbar-track-color: #101616;

  --select-color: #ffffff;
  --select-bg-color: var(--color-teal-light);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-teal-light) var(--scrollbar-track-color);
  transition: background-color 0.3s ease, scrollbar-color 0.3s ease;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track-color);
  transition: background-color 0.3s ease;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-teal);
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-teal-light);
}

::selection {
  background-color: var(--select-bg-color);
  color: var(--select-color);
}

::-moz-selection {
  background-color: var(--select-bg-color);
  color: var(--select-color);
}

@media screen and (min-width: 1600px) {

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}

body {
  font-family: var(--font-family-3);
  opacity: 0;
  /* Start with opacity 0 for smooth fade-in */
}

body.gsap-initialized .navbar {
  visibility: visible !important;
  opacity: 1 !important;
}

header {
  position: relative;
  z-index: 9999;
}

a {
  font-family: var(--font-family-1);
}

b,
strong {
  font-weight: 600;
}

h1,
.h1 {
  font-size: 72px;
  font-weight: 400;
  font-family: var(--font-family-1);
  letter-spacing: -0.025em;
}

h2,
.h2 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  font-family: var(--font-family-1);
}

h3,
.h3 {
  font-size: 36px;
  line-height: 36px;
  font-weight: 400;
  font-family: var(--font-family-1);
}

@media screen and (max-width: 1199.98px) {
  :root {
    --col-gap-offset: 3.5rem;
  }

  h1,
  .h1 {
    font-size: 60px;
    line-height: 1;
  }

  h2,
  .h2 {
    font-size: 50px;
    line-height: 1;
  }
}

@media (max-width: 991.98px) {
  :root {
    --col-gap-offset: 2rem;
  }
}

@media (max-width: 767.98px) {

  h1,
  .h1 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 44px;
  }
}

@media (max-width: 575.98px) {

  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  h3,
  .h3 {
    font-size: 30px;
  }

  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.fa-chevron-right::before {
  width: 9px;
}

.btn {
  padding: 20px 40px;
  background-color: var(--color-teal);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s cubic-bezier(.39, .58, .57, 1);
  position: relative;
  z-index: 1;
  text-wrap: nowrap;
  min-width: 160px;

  display: inline-block;
  height: 55px;
  min-height: 55px;
  align-content: center;
  width: fit-content;

  border: unset !important;

  outline: 0px solid var(--color-teal);
  outline-offset: -2px;

  --button-accent-color: var(--color-teal, #fff);
}

.btn:active {
  transform: scale(0.96);
}

.btn:before,
.btn:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
  pointer-events: none;
}

.btn.btn-secondary {
  background-color: #1d1d1d;
  border: unset !important;
  color: #ffffff;
  --border-width: 2px;
  --border-color: #1d1d1d;
  outline: 2px solid #1d1d1d;
}

.btn:hover,
.btn:focus,
.btn:active {
  color: #fff !important;
  background: var(--color-teal-light) !important;
  outline: 2px solid var(--color-teal-light) !important;
}

.btn:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 2px;
}

/* Navbar Start */


:root {
  --nav-height: 130px;
  --nav-height-scroll: 70px;
  --nav-color: #ffffff;
  --nav-color-scroll: var(--body-color);
  --nav-color-hover: var(--color-teal);
  --nav-background: #ffffff00;
  --nav-background-scroll: #ffffff;
  --nav-easing: all 0.3s ease;
}

body {
  margin-top: 0 !important;
}

body>header:has(.nav-01):not(:has(.nav-01+.banner, .nav-01+.content-header-01)) {
  margin-top: var(--nav-height-scroll);
}

.nav-01 {
  background-color: var(--nav-background);
  color: var(--nav-color);
  height: var(--nav-height);
  transition: var(--nav-easing);
  padding: 0;
  position: fixed;
}

.nav-01 .btn-contact {
  height: 100%;
  min-height: 70px;
  transition: var(--nav-easing);
}

.nav-01.scrolled .btn-contact {
  min-height: 60px;
}

.nav-01:not(:has(+.banner, +.content-header-01)),
.nav-01.scrolled {
  background-color: var(--nav-background-scroll);
  color: var(--nav-color-scroll);
  height: var(--nav-height-scroll);
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
}

.nav-01 .container {
  position: relative;
  height: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: var(--nav-easing);
}

.nav-01.scrolled .container {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-01 .nav-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: 100%;
  height: 70px;
}

.nav-01.scrolled .nav-wrapper {
  height: var(--nav-height-scroll);
}

.nav-01 .navbar-brand {
  padding: 0;
  margin: 0;
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  height: 100%;
  width: auto;
}

.nav-01 .navbar-brand img {
  height: 100%;
  min-height: 120px;
  width: 320px;
  position: relative;
  object-fit: contain;
  object-position: left center;
  bottom: 0;
  transition: var(--nav-easing);
  left: 0;
  margin-top: -5px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(386%) hue-rotate(234deg) brightness(117%) contrast(100%);
  transition: var(--nav-easing);
}

@media screen and (max-width: 1399.98px) and (min-width: 1200px) {
  .nav-01 .navbar-brand img {
    width: 290px;
  }
}

.nav-01 .navbar-brand .logo-text {
  font-size: 15px;
  line-height: 14.9px;
  color: var(--nav-color);
  font-weight: 500;
  transition: var(--nav-easing);
}

.nav-01.scrolled .navbar-brand .logo-text {
  color: var(--nav-color-scroll);
  margin-top: 2.5px;
}

.nav-01 .navbar-brand .logo-text span {
  color: rgb(45, 166, 158);
}

.nav-01:not(:has(+.banner)) .navbar-brand img,
.nav-01.scrolled .navbar-brand img {
  min-height: 60px;
  margin-top: 0;
  filter: none;
}

.nav-01 .nav-accreditation {
  padding: 0 1.5rem;
  height: 100%;
  position: relative;
}

.nav-01 .nav-accreditation img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  min-width: 115px;
  transition: var(--nav-easing);
}

.nav-01 .nav-accreditation::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-14px - 1.5rem);
  width: calc(100%);
  height: calc(100% + 50px + 1.5rem);
  background-color: #1d1d1d;
  z-index: 0;
  border-radius: 0 0 10px 10px;
  transition: var(--nav-easing);
}

/* 
.nav-01.scrolled .nav-accreditation::before {
    bottom: -19px;
    height: calc(100% + 42px);
    border-radius: 0;
} */

.nav-01 .navbar-toggler {
  border: none;
  padding: 0;
  width: 70px;
  height: 70px;
  transition: var(--nav-easing) !important;
  min-width: unset;
  outline: unset !important;
  border: unset !important;
  box-shadow: unset !important;
}

.nav-01.scrolled .navbar-toggler {
  width: 60px;
  height: 60px;
}

.nav-01 .nav-link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  text-wrap: balance;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  transition: var(--nav-easing);
  width: fit-content;
  font-family: var(--h2-font);
}

.nav-01 a.nav-link:hover,
.nav-01 a.nav-link:focus,
.nav-01 a.nav-link:active {
  color: var(--nav-color-hover)
}

.nav-01 a.nav-link {
  position: relative;
}

.nav-01 a.nav-link:focus-visible {
  box-shadow: unset;
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.nav-01.scrolled a.nav-link:focus-visible {
  outline: 2px solid #fff;
}

.nav-01 a.nav-link.currentpage::before {
  content: "";
  display: block;
  width: 70%;
  bottom: 0%;
  height: 2px;
  background-color: var(--color-teal);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-01:not(:has(+.banner)) a.nav-link.currentpage::before,
.nav-01.scrolled a.nav-link.currentpage::before {}

.nav-01 a.nav-link:hover::before,
.nav-01 a.nav-link:focus::before,
.nav-01 a.nav-link:active::before {}

.nav-01 .nav-left-section,
.nav-01 .nav-right-section {
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
  height: 100%;
}

.nav-01 svg {
  max-height: 60px;
  width: auto;
  --logo-primary: #ffffff;
  --logo-secondary: #ffffff;
  height: 60px;
  top: -5px;
  position: relative;
}

.nav-01:not(:has(+.banner, +.content-header-01)) svg,
.nav-01.scrolled svg {
  --logo-secondary: #231f20;
}

.nav-01 .nav-social a {
  color: inherit;
  text-decoration: none;
}

.nav-01 .nav-social a:hover {
  opacity: 0.7;
}

.nav-01 .navbar-phone {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.nav-01 .nav-hover-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.nav-01 .nav-item.lvl3 .nav-link {
  font-family: var(--h3-font);
  text-transform: capitalize;
  letter-spacing: -0.025em;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .nav-01 #navbar-menu {
    display: flex !important;
    justify-content: end;
    flex-grow: 1;
    height: 100%;
  }

  .nav-01 .navbar-wrapper {
    flex-direction: row !important;
    align-items: center;
    justify-content: end;
    gap: 2rem;
    width: 100%;
    height: 100%;
  }

  .nav-01 .nav-phone {
    flex-direction: row !important;
    flex-grow: 1;
    justify-content: end;
    align-items: center;
    gap: 0rem;
    margin: 0;
    height: 100%;
  }

  .nav-01 .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .nav-01 .nav-item.lvl1 {
    height: var(--nav-height-scroll);
  }

  .nav-01 .nav-item.lvl1>.nav-link {
    padding: 0 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
  }
}

@media screen and (min-width: 1200px) {
  .nav-01 .nav-item.lvl1>.nav-link {
    padding: 0 1.5rem;
  }
}

@media (max-width: 1199.98px) {

  .nav-01 .nav-wrapper {
    gap: 1.5rem;
  }

  .nav-01 .nav-left-section {
    gap: 20px;
  }

  .nav-01 .nav-right-section {
    gap: 10px;
  }

  .nav-01 .navbar-brand {
    flex-grow: 0;
    margin: auto 0;
  }

  .nav-01 .navbar-collapse.collapsing,
  .nav-01 .navbar-collapse.collapse {
    right: -380px;
    transition: right 0.3s ease-in-out;
  }

  .nav-01 .navbar-collapse.show {
    right: 0;
  }

  .nav-01 .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100% !important;
    background: #fff;
    z-index: 1050;
    padding: 0;
    display: flex;
    flex-flow: column;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  }

  .nav-01 .container {
    position: unset;
  }

  .nav-01 .navbar-collapse .navbar-wrapper {
    overflow: auto;
    padding: 60px 3rem 2rem;
    width: 100%;
  }

  .nav-01 a.nav-link.currentpage::before {
    content: unset;
  }

  .nav-01 .nav-item.lvl1>.nav-link {
    font-size: 30px;
    line-height: 55px;
    font-family: var(--h1-font);
    font-weight: var(--h1-fontweight);
    color: var(--body-color);
    text-transform: none;
    letter-spacing: .025em;
    text-align: start;
  }

  .nav-01 .nav-telephone {
    color: var(--body-color);
    padding: 1.5rem 3rem 2.75rem;
    width: 100%;
    position: relative;
  }

  .nav-01 .nav-telephone::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 2rem;
    background-image: linear-gradient(to top, #fff, transparent);
    z-index: 1;
  }

  .nav-01 .nav-telephone i {
    font-size: 18px;
    margin-right: 4px;
    vertical-align: baseline;
  }

  .nav-01 .nav-telephone .btn {
    --button-accent-color: var(--color-teal);
    background-color: var(--color-teal);
    outline: 2px solid var(--color-teal);
    color: #fff;
    width: 100%;
  }

  .nav-01 .nav-telephone .btn:hover {
    background-color: #fff;
    color: var(--color-teal);
    outline: 2px solid var(--color-teal);
  }

  .nav-01 .nav-telephone a:not(.btn) {
    color: var(--color-teal);
    transition: .3s color ease-in-out;
    text-decoration: none;
    font-size: 24px;
    line-height: 48px;
    font-family: var(--h1-font);
    font-weight: var(--h1-fontweight);
  }

  .nav-01 .nav-telephone a:not(.btn):hover,
  .nav-01 .nav-telephone a:not(.btn):focus,
  .nav-01 .nav-telephone a:not(.btn):active {
    color: var(--color-teal);
  }

  .nav-01 .navbar-toggler {
    transition: transform 0.3s ease-in-out, opacity, filter linear 0.15s, background-color 0.15s, border 0.15s;
  }

  .nav-01:has(.navbar-collapse.collapsing) .navbar-toggler {
    transform: translateX(180px);
  }

  .nav-01 .navbar-collapse .navbar-toggler {
    position: absolute;
    right: .5rem;
    top: .5rem;
    background-color: transparent;
    border: unset !important;
    --navbar-hamburguer-icon-color: var(--body-color);
  }

  .nav-01 .navbar-collapse .navbar-toggler:hover,
  .nav-01 .navbar-collapse .navbar-toggler:focus,
  .nav-01 .navbar-collapse .navbar-toggler:active {
    background-color: var(--color-teal);
    border: 1px solid var(--color-teal);
    --navbar-hamburguer-icon-color: #fff;
  }

  .nav-01 a.nav-link:hover,
  .nav-01 a.nav-link:focus,
  .nav-01 a.nav-link:active {
    color: #fff;
  }

  .nav-01 .navbar-wrapper {
    flex: 1;
    justify-content: space-between;
  }

  .nav-01 .nav-phone {
    flex: 1;
    justify-content: start;
    align-items: start;
  }

  .nav-01 .footer__slogan {
    color: var(--body-color);
    position: relative;
    padding-top: 3rem;
  }

  .nav-01 .footer__slogan::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 84px;
    height: 2px;
    background-color: var(--color-teal-light);
  }

  .nav-01 .footer__slogan p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
  }

  .nav-01 .footer__slogan p b,
  .nav-01 .footer__slogan p strong {
    font-weight: 600;
  }

  .nav-01 .footer__contacts {
    margin-top: 1rem;
  }

  .nav-01 .footer__contacts a.contact-link {
    color: var(--color-teal-light);
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    position: relative;
    width: fit-content;
  }
}

@media screen and (max-width: 767.98px) {
  .nav-01 .nav-accreditation {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-01 .nav-accreditation::before {
    bottom: calc(-14px - 1rem);
  }
}

@media screen and (max-width: 575.98px) {
  .nav-01 .nav-accreditation {
    display: none;
  }

  .nav-01 .navbar-brand img {
    width: 54px;
  }
}

/* Navbar End */

/* Main banner Start */

.main-banner {
  height: 100svh;
  height: min(100svh, 960px);
  width: 100%;
  background-image: url("/images/bg/main-banner-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 20%;
  align-content: end;
  padding-bottom: 70px;
  background-color: rgb(18, 22, 22);
}

.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #00000080, transparent 80%);
  z-index: 0;
}

.main-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #000000cc, transparent 70%);
  z-index: 0;
}

.main-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.main-banner .banner-title {
  line-height: 1;
  margin-bottom: 1.5rem;
  margin-left: -3px;
}

.main-banner .banner-text {
  font-size: 30px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -.01em;
}

.main-banner .banner-link {
  color: var(--color-teal-light);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: .2em;
  transition: color 0.3s ease-in-out;
}

.main-banner .banner-link:hover {
  color: var(--color-teal);
}

@media (max-width: 991.98px) {
  .main-banner {
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 767.98px) {
  .main-banner .banner-text {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -.03em;
  }
}

@media screen and (max-width: 575.98px) {
  .main-banner .banner-title br {
    display: none;
  }

  .main-banner .banner-title {
    max-width: 270px;
  }
}

/* Main banner End */

/* Welcome section Start */

.welcome {
  margin: 90px 0 80px;
}

@media screen and (min-width: 992px) {
  .welcome .col-text {
    padding-left: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset));
    padding-right: 5rem;
  }

  .welcome .img-col {
    padding-right: 0;
  }
}

.welcome-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2.5rem 0;
}

.welcome-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.welcome-image .btn {
  --color-teal: rgb(45, 166, 158);
  --color-teal-light: rgb(35, 141, 135);
  position: absolute;
  left: 0;
  bottom: -52.5px;
  height: 105px;
  min-width: 230px;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.welcome .block-title {
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  position: relative;
}

.welcome .block-title::before {
  content: "";
  height: 2px;
  width: 85px;
  background-color: var(--color-teal);
  position: absolute;
  top: 0;
}

.welcome .block-desc {
  font-size: 18px;
  line-height: 26px;
}

.welcome .block-desc p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199.98px) {

  .welcome {
    margin: 60px 0 60px;
  }

  .welcome-image .btn {
    height: 90px;
    bottom: -45px;
  }
}

@media screen and (max-width: 991.98px) {

  .welcome-content {
    padding-top: 0;
  }

  .welcome .block-title {
    margin-bottom: 1.75rem;
    padding-top: 2rem;
    position: relative;
  }
}

@media (max-width: 575.98px) {

  .welcome-image {
    min-height: 180px;
  }

  .welcome-image .btn {
    max-height: 80px;
    bottom: -40px;
  }
}

/* Welcome section End */

/* Building Regulations Start */

.building-regulations {
  margin: 90px 0 80px;
}

@media screen and (min-width: 992px) {
  .building-regulations .col-img {
    padding-left: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset));
  }

  .building-regulations .col-text {
    padding-right: 0rem;
  }
}

.building-regulations .accordion {
  --bs-accordion-color: var(--body-color);
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1.5rem;
  --bs-accordion-btn-color: var(--body-color);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 1.5rem;
  --bs-accordion-active-color: var(--color-teal);
  --bs-accordion-active-bg: transparent;
  padding-left: 3.5rem;
}

.building-regulations .accordion .accordion-body {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.building-regulations .accordion .accordion-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 2px;
  background-color: rgb(212, 212, 212);
}

.building-regulations .accordion-item {
  border: none;
  border-bottom: unset;
  background: transparent;
}

.building-regulations .accordion-item:first-child {
  border-top: unset;
}

.building-regulations .accordion-header {
  margin-bottom: 0;
  margin-left: -3px;
  margin-right: -3px;
}

.building-regulations .accordion-button {
  font-family: var(--font-family-1);
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: color 0.3s ease;
  color: var(--color-teal-light);
}

.building-regulations .accordion-button:not(.collapsed) {
  color: var(--body-color);
  background: transparent;
  box-shadow: none;
}

.building-regulations .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.building-regulations .accordion-button::after {
  display: none;
}

.building-regulations .accordion-button::before {
  background-image: none;
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  width: auto;
  height: auto;
  background-size: auto;
  transition: transform 0.4s cubic-bezier(.67, -0.19, .41, 1.18), font-size 0.3s ease;
  position: absolute;
  left: calc(-3.5rem + 3px);
  top: 1.25rem;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
}

.building-regulations .accordion-button:not(.collapsed)::before {
  content: "\e59b";
  font-size: 32px;
  transform: rotate(-360deg);
}

.building-regulations .accordion-body {
  padding: 0 0 1.5rem 0;
}

.building-regulations .accordion-body p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: .5rem;
}

.building-regulations .accordion-body p:last-child {
  margin-bottom: 1rem;
}

.building-regulations .accordion-body .btn {
  margin-top: 0rem;
  background-color: transparent !important;
  color: var(--color-teal-light) !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  outline: unset !important;
}

.building-regulations .image-wrapper {
  position: relative;
  width: 100%;
  min-height: 400px;
  position: sticky;
  top: 110px;
}

.building-regulations .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.building-regulations .image-subtitle {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: right;
  margin-top: 1rem;
  margin-bottom: 0;
  color: rgb(201, 201, 201);
}

@media screen and (max-width: 1199.98px) {
  .building-regulations .accordion-button {
    font-size: 44px;
  }
}

@media screen and (max-width: 991.98px) {
  .building-regulations .accordion-collapse {
    display: flex !important;
    flex-flow: row;
    gap: var(--bs-gutter-x);
    margin-bottom: 2rem !important;
    transition: all .3s ease-in-out 0s !important;
  }

  .building-regulations .accordion-collapse.collapsing {
    margin-bottom: 2rem !important;
  }

  .building-regulations .accordion-collapse.collapse:not(.show) {
    overflow: hidden;
    height: 0px;
    margin-bottom: 0 !important;
  }

  .building-regulations .accordion-body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .building-regulations .accordion .accordion-body {
    margin-bottom: 0;
  }

  .building-regulations .accordion-image {
    align-self: stretch;
    width: 230px;
    min-width: 230px;
    max-width: 230px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0rem;
  }

  .building-regulations .accordion {
    padding-left: 3rem;
  }

  .building-regulations .accordion-button::before {
    left: calc(-3rem + 3px);
  }
}

@media (max-width: 767.98px) {

  .building-regulations .accordion-button {
    font-size: 40px;
  }
}

@media (max-width: 575.98px) {
  .building-regulations .accordion-button {
    padding: 0.75rem 0;
  }

  .building-regulations .accordion-button::before {
    top: .75rem;
  }

  .building-regulations {
    margin: 80px 0 50px;
  }
}

/* Building Regulations End */

/* Our Process Start */

.our-process {
  background-color: var(--color-teal-light);
  padding: 120px 0;
  color: #fff;
  --select-color: var(--color-teal-light);
  --select-bg-color: #ffffff;
}

.our-process .process-list {
  font-size: 30px;
  line-height: 36px;
  padding-top: 0.25rem;
  list-style: none;
  counter-reset: process-counter;
  margin: 0;
  padding-left: 0;
  letter-spacing: -.03em;
}

@media screen and (min-width: 1200px) {
  .our-process .block-title {
    font-size: 68px;
  }

  .our-process .process-list {
    padding-top: 1.25rem;
  }
}

.our-process .process-list li {
  counter-increment: process-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  min-height: 24px;
  font-weight: 300;
}

.our-process .process-list li:last-child {
  margin-bottom: 0;
}

.our-process .process-list li::before {
  content: counter(process-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  background-color: #fff;
  color: var(--body-color);
}

@media screen and (max-width: 991.98px) {
  .our-process {
    padding: 85px 0 105px;
  }

  .our-process .process-list li {
    margin-bottom: .75rem;
  }

  .our-process .block-title {
    font-size: 60px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .our-process .block-title {
    font-size: 50px;
  }
}

@media (max-width: 575.98px) {

  .our-process {
    padding: 60px 0 105px;
  }

  .our-process .process-list {
    font-size: 26px;
    line-height: 28px;
  }

  .our-process .process-list li::before {
    top: 4px;
  }

  .our-process .process-list li {
    margin-bottom: 1rem;
  }

  .our-process .block-title {
    font-size: 40px;
  }
}

/* Our Process End*/


/* EPC Requirements Start */

.epc-requirements {
  --block-overlap: 65px;
  --block-margin: 90px;
  --block-margin-top: 90px;
  --block-margin-bottom: 90px;
  margin: var(--block-margin-top) 0 var(--block-margin-bottom);
  position: relative;
}

.epc-requirements .row {
  position: relative;
}

.epc-requirements .image-col {
  position: relative;
  order: 1;
}

.epc-requirements .content-col {
  order: 2;
  display: flex;
  align-items: center;
}

.epc-requirements .image-wrapper {
  position: absolute;
  right: 0;
  width: 55vw;
  min-width: 100%;
  height: 100%;
  min-height: 400px;

  top: calc(-1 * (var(--block-margin-top) + var(--block-overlap)));
  bottom: calc(-1 * var(--block-margin-bottom));
  height: calc(100% + var(--block-margin-bottom) + var(--block-margin-top) + var(--block-overlap));


  --select-color: var(--color-teal-light);
  --select-bg-color: #ffffff;
}

.epc-requirements .requirements-wrapper img {
  width: 100%;
  height: calc(100% + var(--block-overlap));
  object-fit: contain;
  object-position: center left;
  position: absolute;
  top: calc(-1 * var(--block-overlap));
  left: 0;
  --select-color: #ffffff;
  --select-bg-color: var(--color-teal-light);
}

@media screen and (min-width: 992px) {
  .epc-requirements .image-wrapper {
    padding-right: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset));
  }

  .epc-requirements .requirements-wrapper img {
    padding-right: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset) + var(--col-gap-offset));
  }
}

.epc-requirements .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.epc-requirements .content-wrapper {
  padding: 10px 0 0;
}

.epc-requirements .block-title {
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 1.5rem;
}

.epc-requirements .block-title::before {
  content: "";
  height: 2px;
  width: 85px;
  background-color: var(--color-teal);
  position: absolute;
  top: 0;
}

.epc-requirements .block-desc {
  font-size: 18px;
  line-height: 26px;
}

.epc-requirements .block-desc p:last-child {
  margin-bottom: 0;
}

.epc-requirements .requirements-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
}

@media screen and (max-width: 1199.98px) {
  .epc-requirements .requirements-wrapper img {
    padding-right: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset) + 2rem);
  }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .epc-requirements .image-col {
    width: 37%;
  }

  .epc-requirements .content-col {
    width: 63%;
  }

  .epc-requirements .image-wrapper {
    padding-right: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset));
  }

  .epc-requirements .requirements-wrapper img {
    padding-right: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset) + var(--col-gap-offset));
    object-position: left bottom;
  }

  .epc-requirements .block-title br {
    display: none;
  }
}

@media screen and (max-width: 991.98px) {
  .epc-requirements {
    --block-overlap: 35px;
    --block-margin-top: 90px;
    --block-margin-bottom: 65px;
    position: relative;
  }
}

@media screen and (max-width: 767.98px) {

  .epc-requirements {
    --block-margin-top: 10px;
    --block-overlap: 50px;
  }

  .epc-requirements .row {
    --bs-gutter-y: 3.5rem;
  }

  .epc-requirements .image-col {
    height: 320px;
  }

  .epc-requirements .image-wrapper {
    width: 100vw;
  }

  .epc-requirements .requirements-wrapper img {
    padding: unset;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding-bottom: var(--bs-gutter-y);
  }

  .epc-requirements .image-wrapper {
    height: calc(100% + var(--block-margin-top) + var(--block-overlap));
    bottom: 0;
    top: unset;
    right: calc(var(--bs-gutter-x) * .5);
    min-height: unset;
  }
}

@media screen and (max-width: 575.98px) {
  .epc-requirements .block-title {
    font-size: 36px;
  }

  .epc-requirements .block-title br {
    display: none;
  }

  .epc-requirements .block-title {
    margin-bottom: 2rem;
    padding-top: 2rem;
  }

  .epc-requirements .row {
    --bs-gutter-y: 3rem;
  }

  .epc-requirements {
    margin-bottom: 3rem;
  }
}

/* EPC Requirements End */

/* EPC Levels and Compliance Start */

.epc-levels-compliance {
  --block-padding-top: 80px;
  --block-padding-bottom: 50px;
  padding: var(--block-padding-top) 0 var(--block-padding-bottom);
  background-color: #f5f5f5;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .epc-levels-compliance .col-text {
    padding-right: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset));
  }

  .epc-levels-compliance .levels-wrapper {
    position: relative;
    padding-right: calc(var(--bs-gutter-x) * .5 + var(--col-gap-offset));
    z-index: 2;
    min-height: 100%;
  }

  .epc-levels-compliance .levels-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    height: calc(100% + var(--block-padding-top) + var(--block-padding-bottom));
    width: 55vw;
    z-index: -1;
    right: 0;
    top: calc(-1 * var(--block-padding-top));
    background-color: #fff;
  }
}

.epc-levels-compliance .block-title {
  margin-bottom: 1.25rem;
  color: var(--color-teal-light);
}

.epc-levels-compliance .compliance-wrapper .block-title {
  margin-bottom: 2.25rem;
}

.epc-levels-compliance .levels-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.epc-levels-compliance .levels-list li {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 1rem;
  padding-left: 30px;
  position: relative;
}

.epc-levels-compliance .levels-list li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  position: absolute;
  left: 0;
  color: var(--body-color);
  font-size: 20px;
}

.epc-levels-compliance .levels-list li strong {
  font-weight: 600;
}

.epc-levels-compliance .timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  gap: 3rem 0;
  justify-content: flex-start;
}

.epc-levels-compliance .timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  position: relative;
  text-align: left;
}

.epc-levels-compliance .timeline-item::after {
  content: "";
  position: absolute;
  left: 96px;
  top: 46px;
  width: calc(100% - 96px);
  height: 5px;
  background: linear-gradient(to right, #2f5257 0%, #2f5257 70%, #f5f5f5 70%, #f5f5f5 100%);
  background-size: 27px 5px;
  z-index: 0;
}

.epc-levels-compliance .timeline-item:last-child::after {
  content: unset;
}

.epc-levels-compliance .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 115px;
  z-index: 1;
  background: linear-gradient(to right, var(--color-teal-light) 0%, var(--body-color) 100%);
  mix-blend-mode: lighten;
  pointer-events: none;
}

.epc-levels-compliance .timeline-circle {
  min-width: 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #2f5257;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  --select-color: var(--color-teal-light);
  --select-bg-color: #ffffff;
}

.epc-levels-compliance .timeline-transition .timeline-circle {
  font-size: 18px;
  line-height: 22px;
}

.epc-levels-compliance .timeline-content {
  flex: 1;
}

.epc-levels-compliance .timeline-content p {
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  color: var(--body-color);
  padding-right: 3rem;
  text-wrap: balance;
}

.epc-levels-compliance .timeline-item:last-child .timeline-content p {
  padding-right: 0;
}

@media screen and (max-width: 1599.98px) and (min-width: 992px) {
  .epc-levels-compliance .timeline-item:nth-child(5)::after {
    width: 100vw;
  }

  .epc-levels-compliance .timeline-item:nth-child(6)::after {
    width: calc(100% + 100vw);
    left: -100vw;
  }

  .epc-levels-compliance .timeline-item {
    width: calc(100% / 5);
    flex: unset;
  }
}

@media screen and (max-width: 991.98px) and (min-width: 768px) {
  .epc-levels-compliance .timeline-item:nth-child(4)::after {
    width: 100vw;
  }

  .epc-levels-compliance .timeline-item:nth-child(5)::after {
    width: calc(100% + 100vw);
    left: -100vw;
  }

  .epc-levels-compliance .timeline-item {
    width: calc(100% / 4);
    flex: unset;
  }
}

@media screen and (max-width: 767.98px) and (min-width: 576px) {

  .epc-levels-compliance .timeline-item:nth-child(3)::after,
  .epc-levels-compliance .timeline-item:nth-child(6)::after {
    width: 100vw;
  }

  .epc-levels-compliance .timeline-item:nth-child(4)::after,
  .epc-levels-compliance .timeline-item:nth-child(7)::after {
    width: calc(100% + 100vw);
    left: -100vw;
  }

  .epc-levels-compliance .timeline-item:nth-child(7)::after {
    content: "" !important;
    width: 100vw;
  }

  .epc-levels-compliance .timeline-item {
    width: calc(100% / 3);
    flex: unset;
  }
}

@media screen and (max-width: 1199.98px) {
  .epc-levels-compliance .levels-wrapper {
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
}

@media screen and (max-width: 991.98px) {
  .epc-levels-compliance .timeline-content p {
    padding-right: 2rem;
    text-wrap: balance;
  }
}

@media screen and (max-width: 767.98px) {
  .epc-levels-compliance .timeline-content p {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 575.98px) {

  .epc-levels-compliance .timeline::before {
    width: 115px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-teal-light) 0%, var(--body-color) 100%);
  }

  .epc-levels-compliance {
    --block-padding-top: 60px;
    --block-padding-bottom: 60px;
  }

  .epc-levels-compliance .block-title {
    text-wrap: balance;
    line-height: 1;
  }

  .epc-levels-compliance .timeline-circle {
    margin-bottom: 0;
  }

  .epc-levels-compliance .timeline {
    display: flex;
    flex-flow: column;
    gap: 1.55rem;
  }

  .epc-levels-compliance .timeline-item {
    display: flex;
    flex-flow: row;
    gap: 1.5rem;
    align-items: center;
  }

  .epc-levels-compliance .timeline-content p {
    padding-right: 0;
  }

  .epc-levels-compliance .timeline-item:not(:last-child)::after,
  .epc-levels-compliance .timeline-item:not(:last-child)::before {
    width: 5px;
    height: calc(1.5rem + 96px);
    left: 46px;
    top: 96px;
  }

  .epc-levels-compliance .timeline-item:not(:last-child)::after {
    background: linear-gradient(to bottom, #000 0%, #000 60%, #f5f5f5 60%, #f5f5f5 100%);
    background-size: 5px 20px;
  }

  .epc-levels-compliance .timeline-item:not(:last-child):nth-child(2)::before {
    background: linear-gradient(to bottom, var(--color-teal) 0%, var(--body-color) 100%);
  }

  .epc-levels-compliance .timeline-item:not(:last-child):nth-child(2)::before {
    background: linear-gradient(to bottom, var(--color-teal) 0%, var(--body-color) 100%);
  }
}

/* EPC Levels and Compliance End */

/* Sustainable Solutions Start */

.sustainable-solutions {
  --block-padding-top: 160px;
  --block-padding-bottom: 100px;
  padding: var(--block-padding-top) 0 var(--block-padding-bottom);

  background-color: #1a1a1a;
  color: #fff;
  background-image: url("/images/services/sustainable-solutions.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .sustainable-solutions .content-wrapper {
    position: relative;
    z-index: 1;
  }

  .sustainable-solutions .content-wrapper::before {
    content: "";
    width: 75vw;
    height: calc(100% + var(--block-padding-top) + var(--block-padding-bottom));
    top: calc(-1 * var(--block-padding-top));
    left: calc(var(--bs-gutter-x) * -1 - var(--col-gap-offset));
    position: absolute;
    backdrop-filter: blur(4px);
    background-color: rgb(0, 0, 0, 0.48);
    z-index: -1;
  }
}

.sustainable-solutions .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.sustainable-solutions .block-title {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 2rem;
  position: relative;
  padding-top: 1.5rem;
}

.sustainable-solutions .block-title::before {
  content: "";
  height: 2px;
  width: 85px;
  background-color: #fff;
  position: absolute;
  top: 0;
}

.sustainable-solutions .block-desc {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 1.25rem;
  max-width: 670px;
}

.sustainable-solutions .block-desc p:last-child {
  margin-bottom: 0;
}

.sustainable-solutions .btn {
  background-color: transparent !important;
  color: #fff;
  border: 0px solid #fff !important;
  outline: 0px solid transparent !important;
  transition: all 0.3s ease;
  padding-left: 0;
}

@media screen and (max-width: 991.98px) {

  .sustainable-solutions {
    --block-padding-top: 130px;
    --block-padding-bottom: 110px;
  }

  .sustainable-solutions {
    position: relative;
    z-index: 1;
  }

  .sustainable-solutions::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    backdrop-filter: blur(4px);
    background-color: rgb(0, 0, 0, 0.48);
    z-index: -1;
  }

  .sustainable-solutions .block-title br {
    display: none;
  }

  .sustainable-solutions .block-title {
    font-size: 50px;
  }

  .sustainable-solutions .block-desc {
    max-width: unset;
  }
}

@media screen and (max-width: 575.98px) {
  .sustainable-solutions .block-title {
    font-size: 36px;
    text-wrap: balance;
    padding-top: 2rem;
    margin-bottom: 2rem;
  }

  .sustainable-solutions {
    --block-padding-top: 90px;
    --block-padding-bottom: 70px;
  }
}

/* Sustainable Solutions End */

/* Nationwide Coverage Start */

.nationwide-coverage {
  padding: 110px 0 0px;
  background-color: #cbcbcb;
  height: 950px;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  overflow: hidden;
}


.nationwide-coverage>.container {
  pointer-events: none;
}

.nationwide-coverage .button-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.nationwide-coverage .button-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100vw;
  height: 100%;
}

.nationwide-coverage .button-container .btn {
  --color-teal: rgb(45, 166, 158);
  --color-teal-light: rgb(35, 141, 135);
  height: 100px;
  min-width: 260px;
  transform: unset;
}

.nationwide-coverage .content-col {
  display: flex;
  align-items: start;
}

@media screen and (min-width: 992px) {
  .nationwide-coverage .content-wrapper {
    padding-left: 5rem;
  }
}

.nationwide-coverage .block-title {
  line-height: 1;
  margin-bottom: 2rem;
  position: relative;
  padding-top: 1.5rem;
  color: var(--body-color);
  text-shadow:
    3px 3px 0 #cbcbcb,
    -1px -1px 0 #cbcbcb,
    1px -1px 0 #cbcbcb,
    -1px 1px 0 #cbcbcb,
    1px 1px 0 #cbcbcb;
}

.nationwide-coverage .block-title::before {
  content: "";
  height: 2px;
  width: 85px;
  background-color: var(--color-teal);
  position: absolute;
  top: 0;
  margin-left: 5px;
  box-shadow:
    -1px -1px 0 #cbcbcb,
    1px -1px 0 #cbcbcb,
    -1px 1px 0 #cbcbcb,
    1px 1px 0 #cbcbcb;
}

.nationwide-coverage .container {
  position: relative;
  z-index: 1;
}

.nationwide-coverage .map-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.nationwide-coverage .map-container .leaflet-tile-container {
  filter: grayscale(100%) brightness(1);
}

.nationwide-coverage .map-container .leaflet-control-zoom {
  display: none;
}

.nationwide-coverage .leaflet-container {
  width: 100%;
  height: 100%;
  background-color: #cbcbcb;
}

.nationwide-coverage .leaflet-container a {
  color: var(--color-teal);
}

.nationwide-coverage .leaflet-popup-content-wrapper {
  border-radius: 0;
  padding: 0;
}

.nationwide-coverage .leaflet-popup-content {
  margin: 0;
  min-width: 150px;
}

.nationwide-coverage .location-popup {
  padding: 15px 20px;
  text-align: center;
}

.nationwide-coverage .location-popup h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--body-color);
}

.nationwide-coverage .location-popup p {
  font-size: 14px;
  margin: 5px 0 0;
  color: #666;
}

.nationwide-coverage .leaflet-marker-icon {}

.nationwide-coverage .custom-marker {
  background-color: var(--color-teal-light);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  letter-spacing: .025em;
  font-weight: 600;
}

.nationwide-coverage .custom-marker.large {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.nationwide-coverage .custom-marker.medium {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

@media screen and (max-width: 1199.98px) {
  .nationwide-coverage .button-container .btn {
    height: 90px;
  }

  .nationwide-coverage .button-wrapper {
    max-width: 680px;
  }
}

@media screen and (max-width: 991.98px) {

  .nationwide-coverage {
    max-height: 670px;
  }

  .nationwide-coverage .button-wrapper {
    max-width: 600px;
  }

  .nationwide-coverage {
    padding-top: 70px;
  }
}

@media screen and (max-width: 767.98px) {
  .nationwide-coverage .button-wrapper {
    max-width: 100%;
  }
}

@media screen and (max-width: 575.98px) {

  .nationwide-coverage {
    max-height: 700px;
  }

  .nationwide-coverage .custom-marker {
    border: 1px solid #fff;
    width: 10px;
    height: 10px;
    font-size: 12px;
  }

  .nationwide-coverage .custom-marker.large {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .nationwide-coverage .custom-marker.medium {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .nationwide-coverage .button-container .btn {
    height: 80px;
    min-width: 250px;
  }
}

/* Nationwide Coverage End */

/* Testimonials Start */

.testimonials-carousel {
  padding: 100px 0 90px;
}

.testimonials-carousel .carousel-wrapper {
  padding-bottom: 105px;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
  z-index: 2;
  background-color: transparent;
  border: unset;
  font-size: 44px;
  width: 44px;
  height: 44px;
  line-height: 1;
  color: var(--color-teal-light);
  transition: color 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  padding: 0;
  text-align: right;
}

.testimonials-carousel .slick-prev:hover,
.testimonials-carousel .slick-next:hover {
  color: var(--color-teal);
}

.testimonials-carousel .slick-prev {
  right: 125px;
}

.testimonials-carousel .slick-next {
  right: 50px;
}

.testimonials-carousel .block-title {
  line-height: 48px;
}

.testimonials-carousel .subtitle {
  text-align: left;
}

.testimonials-carousel .carousel-nav {
  display: flex;
  gap: 25px;
  margin-top: 35px;
}

.testimonials-carousel .carousel-nav button {
  border: none;
  background: none;
  font-size: 44px;
  will-change: color;
  color: var(--color-teal-light);
  transition: 0.3s ease-in-out;
  transform: translateZ(1px);
}

.testimonials-carousel .carousel-nav button.slick-next:hover {
  animation: bounceArrowRight 2s infinite;
  color: var(--color-darkText);
}

.testimonials-carousel .carousel-nav button.slick-prev:hover {
  animation: bounceArrowLeft 2s infinite;
  color: var(--color-darkText);
}

.testimonials-carousel .testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonials-carousel .testimonial-item .testimonial-text {
  font-size: 36px;
  line-height: 40px;
  font-style: italic;
  font-weight: 400;
  padding-right: 5rem;
  position: relative;
  padding-top: 60px;
  color: rgb(48, 53, 57);
}

.testimonials-carousel .testimonial-item .testimonial-text::before,
.testimonials-carousel .testimonial-item .testimonial-text::after {
  content: "";
  width: 10px;
  height: 26px;
  background-color: rgb(63, 71, 77);
  border-radius: 0;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  position: absolute;
  top: 0;
}

.testimonials-carousel .testimonial-item .testimonial-text::before {
  left: 0px;
}

.testimonials-carousel .testimonial-item .testimonial-text::after {
  left: 16px;
}

.testimonials-carousel .testimonial-item .testimonial-text p:last-child {
  margin-bottom: 0;
}

.testimonials-carousel .testimonial-item .testimonial-author {
  font-family: var(--font-family-2);
  font-size: 36px;
  margin: 25px 0 0 10px;
  padding: 20px 0 10px;
}

.testimonials-carousel .carousel-wrapper:not(.slick-initialized) {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}

.testimonials-carousel .carousel-wrapper:not(.slick-initialized) .testimonial-item {
  display: none;
}

.testimonials-carousel .carousel-wrapper:not(.slick-initialized) .testimonial-item:first-child {
  display: inline-block;
}

@media screen and (max-width: 1199.98px) {

  .testimonials-carousel .carousel-wrapper {
    max-width: 680px;
  }

  .testimonials-carousel .testimonial-item .testimonial-text {
    padding-right: 0;
  }

  .testimonials-carousel .testimonial-item .testimonial-text {
    font-size: 32px;
  }
}

@media (max-width: 991.98px) {
  .testimonials-carousel .carousel-wrapper {
    max-width: 600px;
  }

  .testimonials-carousel {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 767.98px) {
  .testimonials-carousel {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .testimonials-carousel .carousel-wrapper {
    padding-bottom: 95px;
  }

  .testimonials-carousel .carousel-wrapper {
    max-width: 100%;
  }

  .testimonials-carousel .slick-next {
    right: 0;
  }

  .testimonials-carousel .slick-prev {
    right: 70px;
  }
}

@media (max-width: 575.98px) {

  .testimonials-carousel {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .testimonials-carousel .testimonial-item .testimonial-text {
    font-size: 24px;
    line-height: 32px;
    text-wrap: balance;
  }

  .testimonials-carousel .carousel-wrapper {
    padding-bottom: 75px;
  }
}

/* Testimonials End */

/* Footer main Start */

footer {
  padding-top: 0px !important;
  background-color: #f1f1f1;
}

.footer-main>.container>.row {
  --bs-gutter-y: 4rem;
}

@media screen and (min-width: 1200px) {
  footer .footer__formwrapper {
    padding-left: calc(var(--bs-gutter-x) * 1.5);
  }

  footer .col-info {
    padding-top: 100px;
  }
}

footer .col-info {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 2rem;
}

footer hr {
  max-width: 85px;
  background-color: rgb(161, 161, 161);
  height: 2px;
  border: unset !important;
  opacity: 1;
  margin: 1.75rem 0;
}

footer .footer__accreditation {
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  height: auto;
  margin-top: .25rem;
}

footer .accreditation-wrapper {
  margin-top: .25rem;
  max-width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}

footer .accreditation-wrapper img {
  width: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  opacity: .8;
}

footer .accreditation-wrapper img.dark-accr {
  opacity: .5;
}

footer .footer-main {
  padding-bottom: 80px;
  margin-top: 4.25rem;
}


footer .block-header {
  margin-bottom: 1.75rem;
  color: var(--body-color);
}

@media (max-width: 767.98px) {
  footer {
    padding-top: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  footer {
    padding-top: 50px;
  }
}

.footer-main .footer__slogan {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 1.25rem;
  color: var(--body-color);
  text-wrap: balance;
}

.footer-main .footer__slogan p {
  margin-bottom: 0;
}

.footer-main .footer__slogan p b,
.footer-main .footer__slogan p strong {
  font-weight: 600;
}

.footer-main .footer__slogan span {
  text-wrap: nowrap;
}

.footer-main .contact-link {
  color: var(--color-teal-light);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  position: relative;
  width: fit-content;
}

.footer-main .contact-link:hover::after {
  width: 100%;
}

.footer-main .contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-teal-light);
  transition: width 0.3s ease;
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

@media (max-width: 1399.98px) {
  .footer-main .footer__slogan br {
    display: none;
  }

  footer .accreditation-wrapper img {
    max-height: 70px;
  }
}

@media (max-width: 991.98px) {
  .footer__contacts {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .footer__contacts .footer__contact:first-child {
    grid-area: 1/1/3/2;
  }
}

@media (max-width: 575.98px) {
  .footer__contacts {
    display: flex;
    flex-direction: column;
  }
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  overflow: hidden;
  color: var(--color-white);
  font-family: var(--font-family-1);
  font-size: 18px;
  line-height: 24px;
}

.footer__contact:hover,
.footer__contact:focus {
  text-decoration: none;
}

.footer__text {
  overflow: hidden;
}

.footer__description {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer__socials {
  display: flex;
  gap: 7px;
  margin-top: 25px;
}

.footer__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  font-size: 20px;
  border-radius: 0;
  color: var(--color-white);
  background: var(--color-teal);
}

.footer__socials a i {
  transition: 0.3s ease-in-out;
  will-change: transform;
}

.footer__socials a:hover i {
  transform: scale(1.1);
}

.footer__map {
  margin-top: 35px;
}

.footer__map img {
  max-width: 100%;
}

.footer__tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family-1);
  color: var(--color-white);
  font-size: 15px;
  line-height: 30px;
  padding: 5px 0;
}

.footer__tools a {
  color: var(--color-greenText);
  text-transform: uppercase;
  font-family: var(--font-family-1);
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .footer__tools {
    max-width: 442px;
  }
}

@media (max-width: 380px) {
  .footer__tools {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.footer__form {
  font-size: 0.9375rem;
  line-height: 30px;
  padding: 100px 5.125rem 5.125rem;
  background-color: rgb(30, 30, 27);
  background-image: url("/images/bg/form-bg.jpg");
  background-position: center;
  background-size: cover;
  margin-top: -4.25rem;
  overflow: hidden;
}

.footer__form .form-text {
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 2rem;
  position: relative;
  padding-top: 2.25rem;
}

.footer__form .form-text p:last-child {
  margin-bottom: 0;
}

.footer__form .form-text::before {
  content: "";
  height: 2px;
  width: 85px;
  background-color: var(--color-teal);
  position: absolute;
  top: 0;
}

.footer__form .form-text a {
  color: #fff;
  text-decoration: none;
  text-wrap: nowrap;
  transition: color 0.3s ease;
}

.footer__form .form-text a:hover {
  text-decoration: underline;
  color: var(--color-teal-light);
}

.footer__form .form-group {
  margin-bottom: 24px;
}

.footer__form .form-group .required {
  color: var(--color-teal-light);
}

.footer__form .form-group .error {
  font-size: 14px;
  color: var(--color-teal-light);
}

.footer__form .form-label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 30px;
}

.footer__form .form-control {
  font-weight: 400;
  height: 60px;
  border-radius: 0;
  border: none;
}

.footer__form .form-control:focus,
.footer__form .form-control:hover {
  box-shadow: none;
  outline: none;
}

.footer__form textarea.form-control {
  height: 228px;
}

.footer__form .button {
  margin-top: 26px;
  width: 225px;
  height: 56px;
  border: none;
  color: var(--color-white) !important;
  font-family: var(--font-family-1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  min-height: 70px;
}

@media screen and (max-width:1199.98px) {

  footer hr {
    margin-top: 2px;
  }

  footer .footer-main {
    margin-top: 6rem;
  }

  .footer-main .top-content h2 {
    width: 100%;
  }

  .footer-main .top-content {
    display: flex;
    flex-flow: row wrap;
    gap: 0 var(--bs-gutter-x);
  }

  .footer-main .top-content .top-content-col {
    width: 50%;
    flex: 1;
  }

  .footer__form {
    margin-top: -8.25rem;
  }
}

@media (max-width: 991.98px) {

  .footer__form {
    padding: 5rem 3.75rem 3.75rem;
  }

  .footer__form .button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768.98px) {

  footer hr {
    margin: 1.75rem 0;
  }

  .footer-main>.container>.row {
    --bs-gutter-y: 3rem;
  }

  .footer__form {
    padding: 3.75rem 2.75rem 2.75rem;
  }

  .footer__form .form-text p {
    font-size: 22px;
    line-height: 28px;
  }

  .footer__form .form-text p br {
    display: none;
  }

  .footer-main .top-content .top-content-col {
    width: 100%;
    flex: 1;
  }

  .footer-main .top-content {
    display: flex;
    flex-flow: column wrap;
  }

  footer .footer-main {
    padding-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  footer .accreditation-wrapper img {
    max-height: 65px;
  }

  footer .footer-main {
    margin-top: 4rem;
  }

  .footer__form {
    padding: 2.75rem 30px 30px;
    margin-top: -5.75rem;
  }

  .footer__form .button {
    width: 100%;
  }
}

.footer__menu {
  padding-top: 48px;
  padding-bottom: 30px;
  color: var(--body-color);
  border-top: 1px solid rgb(190, 190, 190);
  margin-top: 95px;
}

.footer__menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu ul li a {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--font-family-1);
  text-decoration: none;
  margin-right: 35px;
  color: var(--body-color);
  position: relative;
  transition: color 0.3s ease;
}

.footer__menu ul li a:hover {
  color: var(--color-teal-light);
}

.footer__menu ul li a:hover::after {
  width: 100%;
}

.footer__menu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-teal-light);
  transition: width 0.3s ease;
}

.footer__menu ul li a span {
  text-transform: none;
}

@media (max-width: 575.98px) {
  .footer__menu ul li a {
    text-align: center;
    display: block;
    margin-right: 0;
    line-height: 36px;
  }
}

.footer__menu ul li:last-child a {
  margin-right: 0;
}

@media (max-width: 767.98px) {
  .footer__menu ul {
    order: 1;
  }
}

@media (max-width: 575.98px) {

  .footer__menu ul {
    gap: 0;
  }

  .footer__menu ul li {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer__menu {
    margin-top: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .footer__menu {
    margin-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .footer__menu {
    padding-bottom: 30px;
    padding-top: 10px;
  }
}

.footer__rights {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 12px;
  text-wrap: balance;
}

.footer__copyright p {
  margin: 0;
}

@media (max-width: 767.98px) {
  .footer__rights {
    order: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.bottom-content .footer__rights {
  flex-flow: column !important;
}

.footer__authors {
  display: flex;
  align-items: center;
  line-height: 100%;
  font-family: var(--font-family-3);
  line-height: 22px;
}

.footer__authors a {
  text-decoration: none;
  color: var(--body-color);
  font-family: var(--font-family-3);
}

.footer__authors a:hover,
.footer__authors a:focus {
  text-decoration: none;
}

.footer__authors img {
  margin-left: 2px;
  margin-top: 2px;
}

@media (max-width: 991.98px) {
  .footer__authors {
    margin-top: 10px;
  }
}

.footer__author {
  font-family: Arial, sans-serif;
  font-size: 11pt;
  font-weight: bold;
  color: var(--body-color);
  margin-top: 2px;
}

.custom-checkbox-group {
  display: flex;
  align-items: flex-start;
}

.custom-checkbox-group label {
  line-height: 22px;
  color: var(--color-white);
}

.custom-checkbox-group label.visible-desctop {
  display: block;
}

@media (max-width: 575.98px) {
  .custom-checkbox-group label.visible-desctop {
    display: none;
  }
}

.custom-checkbox-group label.visible-mobile {
  display: none;
}

@media (max-width: 575.98px) {
  .custom-checkbox-group label.visible-mobile {
    display: block;
  }
}

.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 15px;
}

@media (max-width: 575.98px) {
  .custom-checkbox {
    margin-right: 20px;
  }
}

.custom-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: var(--color-white);
  border-radius: 0;
}

.checkmark.error {
  background-color: var(--color-teal-light);
}

.custom-checkbox input:checked~.checkmark,
.custom-checkbox input:checked {
  background-color: var(--color-white) !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked~.checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 0px;
  top: 0px;
  width: 19px;
  height: 19px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlElEQVQ4T6WTXQ2AMAwGDwdIQAISQAEWsIQCQAkWkIAEJJCSNCljP7Dtdblb26+rKDxVIU+uoAY2YMoRKNwC61/BAwbGP4IXLPP7KvDCVtAARyCRIKyCBRiAHtgdSRRWwQjMwOlIkrBtwZVIO5LzHZVMO7RwdohWIoIk7EtBJXIXfVkr8sUoki5Wtm3n6x4E/1yx4AI+qiERKNFzCwAAAABJRU5ErkJggg==") 2px 2px no-repeat;
  animation: checkbox 0.3s linear;
}

@keyframes checkbox {
  from {
    width: 0;
  }

  to {
    width: 19px;
  }
}

/* Footer main End */

/* Instagram Gallery Styles */
.gallery-wrapper.loading {
  position: relative;
  min-height: 300px;
}

.gallery-wrapper.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"><circle cx="50" cy="50" fill="none" stroke="%23333" stroke-width="8" r="40" stroke-dasharray="188.49555921538757 64.83185307179586"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"></animateTransform></circle></svg>') center no-repeat;
  background-size: 50px;
  z-index: 1;
}

.instagram-item {
  position: relative;
}

.instagram-item .video-indicator,
.instagram-item .carousel-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.instagram-item img {
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

@keyframes bounceArrowRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0) translateZ(1px)
  }

  40% {
    transform: translateX(5px) translateZ(1px)
  }

  60% {
    transform: translateX(3px) translateZ(1px)
  }
}

@keyframes bounceArrowLeft {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0) translateZ(1px)
  }

  40% {
    transform: translateX(-5px) translateZ(1px)
  }

  60% {
    transform: translateX(-3px) translateZ(1px)
  }
}


/* Hamburger */
.hamburger {
  position: relative;
  background-color: transparent;
  border: 2px solid #fff !important;
  color: #fff;
  width: 55px;
  height: 55px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity, filter linear 0.15s, background-color 0.15s, border 0.15s;
  border-radius: 0;
  --navbar-hamburguer-icon-color: #fff;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  background-color: var(--button-background);
  border: 2px solid var(--button-background) !important;
  --navbar-hamburguer-icon-color: #ffffff;
}

.hamburger-box {
  width: 20px;
  height: 22px;
  display: inline-block;
  position: relative;
  transition: all .3s ease-in-out;
}

.is-active .hamburger-box {
  margin-top: 6px;
  scale: 1.3;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-bottom: 2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--navbar-hamburguer-icon-color);
  position: absolute;
  transition: transform ease .15s, background-color ease .15s;
}

.scrolled .navbar-toggler {
  --navbar-hamburguer-icon-color: var(--body-color);
}

.navbar-toggler:active,
.navbar-toggler:focus,
.navbar-toggler:hover {
  box-shadow: unset;
  background-color: var(--color-teal-light);
  --navbar-hamburguer-icon-color: #fff !important;
}

.navbar-toggler:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 0px;
}

/* Hamburger animations (minimised) */
.navbar-toggler .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: .13s, 0;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19), ease;
  transition-duration: .13s, .15s
}

.navbar-toggler .hamburger-inner:after {
  content: "";
  display: block;
  top: -16px;
  transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, opacity .1s linear, background-color ease .15s
}

.navbar-toggler .hamburger-inner:before {
  content: "";
  display: block;
  top: -8px;
  transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19), background-color ease .15s
}

.navbar-toggler.is-active .hamburger-inner {
  transition-delay: .22s, 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1), ease;
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  background-color: transparent;
}

.navbar-toggler.is-active .hamburger-inner:after {
  top: 0;
  transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19), background-color ease .15s;
  background-color: var(--navbar-hamburguer-icon-color);
  transform: scaleY(.8);
}

.navbar-toggler.is-active .hamburger-inner:before {
  top: 0;
  transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.215, .61, .355, 1) .25s, background-color ease .15s;
  transform: rotate(-90deg) scaleY(.8)
}