/* Fonts
-------------------------------------------------- */
@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-Italic-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-VariableFont_wdth,wght.woff2') format('woff2-variations');
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-Italic-VariableFont_wdth,wght.woff2') format('woff2-variations');
    font-weight: 100 700;
    font-style: italic;
    font-display: swap;
}


/* Menu -Desktop
-------------------------------------------------- */
.bn-desktop-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bn-desktop-nav > li {
  position: relative;
}
.bn-desktop-nav > li > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--nav-item-font-color);
  padding: var(--nav-item-padding);
  text-decoration: none;
  font-size: var(--nav-item-font-size);
  font-weight: var(--nav-item-font-weight);
  font-family: var(--nav-item-font);
  line-height: var(--nav-item-line-height);
  transition: color var(--nav-transition), box-shadow var(--nav-transition);
  white-space: nowrap;
  box-shadow: inset 0 -2px 0 transparent;
}
.bn-desktop-nav > li > a:hover,
.bn-desktop-nav > li.bn-open > a {
  color: var(--nav-item-font-color-hover);
  /* box-shadow: inset 0 -2px 0 var(--nav-item-font-color-hover); */
}
.bn-desktop-nav > li > a .bn-nav-chevron {
  font-size: var(--nav-icon-size);
  color: var(--nav-item-icon-color);
  transition: transform var(--nav-transition);
  will-change: transform;
}
.bn-desktop-nav > li.bn-open > a .bn-nav-chevron {
  transform: rotate(180deg);
  color: var(--nav-item-font-color-hover);
}


/* Sub Menu (Dropdown)
-------------------------------------------------- */
.bn-desktop-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-dropdown-bg);
  border: var(--nav-dropdown-border);
  border-top-left-radius:     var(--nav-dropdown-border-radius-top);
  border-top-right-radius:    var(--nav-dropdown-border-radius-top);
  border-bottom-right-radius: var(--nav-dropdown-border-radius-bottom);
  border-bottom-left-radius:  var(--nav-dropdown-border-radius-bottom);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: var(--nav-dropdown-padding);
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--nav-transition), transform var(--nav-transition), visibility var(--nav-transition);
  z-index: 999;
  box-shadow: var(--nav-dropdown-shadow);
}
.bn-desktop-nav li.bn-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bn-desktop-nav .sub-menu li {
  position: relative;
}
.bn-desktop-nav .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--nav-dropdown-item-padding);
  color: var(--nav-dropdown-item-font-color);
  text-decoration: none;
  font-size: var(--nav-dropdown-item-font-size);
  font-weight: var(--nav-dropdown-item-font-weight);
  line-height: var(--nav-item-line-height);
  transition: background var(--nav-transition), color var(--nav-transition);
}
.bn-desktop-nav .sub-menu a:hover,
.bn-desktop-nav .sub-menu li.bn-open > a {
  background: var(--nav-dropdown-item-hover);
  color: var(--nav-dropdown-item-font-color-hover);
}
.bn-desktop-nav .sub-menu > li:first-child > a {
  border-top-left-radius:  var(--nav-dropdown-border-radius-top);
  border-top-right-radius: var(--nav-dropdown-border-radius-top);
}
.bn-desktop-nav .sub-menu > li:last-child > a {
  border-bottom-right-radius: var(--nav-dropdown-border-radius-bottom);
  border-bottom-left-radius:  var(--nav-dropdown-border-radius-bottom);
}
.bn-desktop-nav .sub-menu a .bn-sub-arrow {
  font-size: var(--nav-icon-size);
  color: var(--nav-dropdown-item-icon-color);
  flex-shrink: 0;
}


/* Sub Menu (Dropdown - level 2+)
-------------------------------------------------- */
.bn-desktop-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top-left-radius:     var(--nav-dropdown-border-radius-top);
  border-top-right-radius:    var(--nav-dropdown-border-radius-top);
  border-bottom-right-radius: var(--nav-dropdown-border-radius-bottom);
  border-bottom-left-radius:  var(--nav-dropdown-border-radius-bottom);
  border-top: var(--nav-dropdown-border);
  transform: translateX(-6px);
}
.bn-desktop-nav .sub-menu li.bn-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.bn-desktop-nav > li > .sub-menu.flip-left {
  left: auto;
  right: 0;
}
.bn-desktop-nav .sub-menu .sub-menu.flip-left {
  left: auto;
  right: 100%;
  border-radius: 8px 0 8px 8px;
  transform: translateX(6px);
}
.bn-desktop-nav .sub-menu li.bn-open > .sub-menu.flip-left {
  transform: translateX(0);
}


/* Menu - Separator
-------------------------------------------------- */
.bn-desktop-nav .sub-menu .dd-separator,
.bn-desktop-nav .sub-menu .wp-separator {
  border-top: var(--nav-dropdown-border);
  height: 0;
  margin: 0.3rem 0;
  pointer-events: none;
}


/* Menu - SVG Icon
-------------------------------------------------- */
.bn-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}


/* Menu - Active State
-------------------------------------------------- */
.bn-desktop-nav > li.current-menu-item > a,
.bn-desktop-nav > li.current-menu-ancestor > a,
.bn-desktop-nav > li.current-menu-parent > a {
  color: var(--nav-item-current-color);
  box-shadow: inset 0 -2px 0 var(--nav-item-current-color);
}

.bn-desktop-nav .sub-menu li.current-menu-item > a,
.bn-desktop-nav .sub-menu li.current-menu-ancestor > a {
  color: var(--nav-dropdown-item-font-color-hover);
  background: var(--nav-dropdown-item-hover);
}


/* Menu - Hamburger Icon
-------------------------------------------------- */
.bn-hamburger-btn {
  display: none;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: var(--nav-hamburger-width);
  height: calc(var(--nav-hamburger-line-height) * 3 + var(--nav-hamburger-line-spacing) * 2);
}
.bn-hamburger-btn .bn-hamburger-box {
  position: absolute;
  display: block;
  width: var(--nav-hamburger-width);
  height: var(--nav-hamburger-line-height);
  background: var(--nav-hamburger-line-color);
  border-radius: var(--nav-hamburger-line-border-radius);
  transition: all 0.15s ease-in-out;
  top: 0;
}
.bn-hamburger-btn .bn-hamburger-box::before,
.bn-hamburger-btn .bn-hamburger-box::after {
  content: '';
  position: absolute;
  display: block;
  width: var(--nav-hamburger-width);
  height: var(--nav-hamburger-line-height);
  background: var(--nav-hamburger-line-color);
  border-radius: var(--nav-hamburger-line-border-radius);
  transition: all 0.15s ease-in-out;
}
.bn-hamburger-btn .bn-hamburger-box::before {
  top: calc(var(--nav-hamburger-line-height) + var(--nav-hamburger-line-spacing));
}
.bn-hamburger-btn .bn-hamburger-box::after {
  top: calc((var(--nav-hamburger-line-height) + var(--nav-hamburger-line-spacing)) * 2);
}
.bn-hamburger-btn.bn-active .bn-hamburger-box {
  transform: translate3d(0, calc(var(--nav-hamburger-line-height) + var(--nav-hamburger-line-spacing)), 0) rotate(45deg);
}
.bn-hamburger-btn.bn-active .bn-hamburger-box::before {
  transform: rotate(-45deg) translate3d(0, calc(var(--nav-hamburger-line-spacing) * -1), 0);
  opacity: 0;
}
.bn-hamburger-btn.bn-active .bn-hamburger-box::after {
  transform: translate3d(0, calc((var(--nav-hamburger-line-height) + var(--nav-hamburger-line-spacing)) * -2), 0) rotate(-90deg);
}


/* Menu - Mobile Overlay
-------------------------------------------------- */
.bn-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--nav-mobile-overlay);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bn-mobile-overlay.visible { display: block; }
.bn-mobile-overlay.active  { opacity: 1; }


/* Menu - Mobile Panel
-------------------------------------------------- */
.bn-mobile-menu {
  position: fixed;
  top: 0;
  height: 100vh; height: 100dvh; /* fallback for older Safari/iOS */
  background: var(--nav-mobile-bg);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: var(--nav-mobile-spacing);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
}
.bn-mobile-menu[data-mobile-width="partial"],
.bn-mobile-menu:not([data-mobile-width]) {
  width: min(340px, 88vw);
}
.bn-mobile-menu[data-mobile-width="full"] {
  width: 100vw;
}
.bn-mobile-menu[data-mobile-side="left"] {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}
.bn-mobile-menu[data-mobile-side="left"].bn-open {
  transform: translateX(0);
}
.bn-mobile-menu[data-mobile-side="right"] {
  right: 0;
  left: auto;
  transform: translateX(100%);
}
.bn-mobile-menu[data-mobile-side="right"].bn-open {
  transform: translateX(0);
}


/* Menu - Mobile Panel (partial) Header
-------------------------------------------------- */
.bn-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: var(--nav-dropdown-border);
  min-height: 60px;
  flex-shrink: 0;
}
.bn-mobile-close-btn {
  background: none;
  border: none;
  color: var(--nav-mobile-close-color);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: color var(--nav-transition);
}
.bn-mobile-close-btn:hover {
  color: var(--nav-mobile-close-color-hover);
}


/* Menu - Drilldown
-------------------------------------------------- */
.bn-drilldown-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.bn-drilldown-stack {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.bn-drilldown-panel {
  min-width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
/* Back bar */
.bn-panel-back-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--nav-mobile-back-padding);
  border-bottom: var(--nav-dropdown-border);
  background: var(--nav-mobile-back-bg);
  cursor: pointer;
  color: var(--nav-mobile-back-font-color);
  font-size: var(--nav-mobile-back-font-size);
  font-weight: var(--nav-mobile-back-font-weight);
  transition: color var(--nav-transition);
  flex-shrink: 0;
}
.bn-panel-back-bar .bn-icon {
  font-size: var(--nav-icon-size);
}
.bn-panel-back-bar:hover {
  color: var(--nav-mobile-back-font-color-hover);
}
/* Link to parent page */
.bn-panel-parent-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--nav-mobile-parent-padding);
  color: var(--nav-mobile-parent-font-color);
  text-decoration: none;
  font-size: var(--nav-mobile-parent-font-size);
  font-weight: var(--nav-mobile-parent-font-weight);
  border-bottom: var(--nav-mobile-item-separator);
  background: var(--nav-mobile-parent-bg);
  transition: background var(--nav-transition), color var(--nav-transition);
  flex-shrink: 0;
}
.bn-panel-parent-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--nav-item-font-color-hover);
}
.bn-ext-icon {
  font-size: var(--nav-icon-size);
}
/* Panel link list */
.bn-panel-links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.bn-panel-links li {
  border-bottom: var(--nav-mobile-item-separator);
}
.bn-panel-links li:last-child {
  border-bottom: none;
}
.bn-panel-links .bn-m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--nav-mobile-item-padding);
  color: var(--nav-mobile-item-font-color);
  text-decoration: none;
  font-family: var(--nav-mobile-item-font);
  font-size: var(--nav-mobile-item-font-size);
  font-weight: var(--nav-mobile-item-font-weight);
  line-height: var(--nav-item-line-height);
  color: var(--nav-mobile-item-font-color);
  transition: background var(--nav-transition), color var(--nav-transition);
  cursor: pointer;
}
.bn-panel-links .bn-m-link:hover {
  background: var(--nav-dropdown-item-hover);
  color: var(--nav-mobile-item-font-color-hover);
}
.bn-panel-links .bn-m-link .bn-drill-arrow {
  color: var(--nav-mobile-drill-arrow-color);
  font-size: var(--nav-icon-size);
  flex-shrink: 0;
  transition: transform var(--nav-transition), color var(--nav-transition);
}
.bn-panel-links .bn-m-link:hover .bn-drill-arrow {
  color: var(--nav-mobile-drill-arrow-color-hover);
  transform: translateX(2px);
}


/* Menu - Responsive
-------------------------------------------------- */
.bn-mobile-menu.bn-no-transition {
  transition: none !important;
}
@media (max-width: 991.98px) {
  .bn-desktop-nav   { display: none; }
  .bn-hamburger-btn { display: flex; align-items: center; justify-content: center; }
}
.bn-mobile-menu[data-mobile-width="full"] .bn-mobile-menu-header {
  display: none;
}
@media (min-width: 992px) {
  .bn-mobile-menu,
  .bn-mobile-overlay { display: none !important; }
}


/* Button Text
-------------------------------------------------- */
a.button-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-header);
  font-size: 1.125rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-primary);
  line-height: 1;
  transition: color 0.3s ease-in-out;
}
a.button-text::after {
  content: '';
  width: 22px;
  height: 22px;
  background-color: var(--color-primary);
  -webkit-mask-image: url('../img/icon-chevron-right.svg');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../img/icon-chevron-right.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
a.button-text:hover {
  color: var(--color-primary-dark);
}
a.button-text:hover::after {
  transform: translateX(-4px);
  background-color: var(--color-primary-dark)
}


/* Styled <ul> List
-------------------------------------------------- */
.styled-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 30px 0 0 33px;
  list-style-type: none;
}
.styled-list ul li {
  position: relative;
}
.styled-list ul li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -33px;
  width: 18px;
  height: 18px;
  background-color: var(--color-primary);
  -webkit-mask-image: url('../img/icon-check-circle.svg');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../img/icon-check-circle.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}


/* Sections
-------------------------------------------------- */
section {
  padding: 80px 0;
}
main > .section-white + .section-white {
  padding-top: 0;
}
main > .section-accent + .section-accent {
  padding-top: 0;
}
.section-center {
  text-align: center;
}
.section-spacing {
  padding-top: 70px;
}
.section-img img {
  border-radius: var(--global-radius);
}
.section-accent {
  background: var(--color-accent);
}
.section-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.section-primary h1 {
  color: var(--color-white);
}
.section-primary h1 span {
  color: var(--color-accent-dark);
}
.section-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
.section-wave img {
  width: calc(100% + 4px);
  height: auto;
  margin: -2px;
}
@media (max-width: 991.98px) {
  .section-spacing {
    padding-top: 40px;
  }
  .section-img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 575.98px) {
  .section-wave img {
    min-width: 150%;
  }
}


/* SVG Image Shape
-------------------------------------------------- */
/* .svg-shape-img {
  position: relative;
  height: 100%;
}
.svg-shape-img svg:first-child {
  position: relative;
  z-index: 2;
}
.svg-shape-img-mirror {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
} */
/* SVG Image Shape
-------------------------------------------------- */
/* .svg-shape-img {
  position: relative;
  height: 100%;
}
.svg-shape-img svg:first-child {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}
.svg-shape-img-mirror {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */
/* SVG Image Shape
-------------------------------------------------- */
.svg-shape-img {
  position: relative;
  height: 100%;
}
.svg-shape-img__photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}
.svg-shape-img__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svg-shape-img--right .svg-shape-img__photo img {
  -webkit-mask-image: url('../img/shape-right.svg');
  mask-image: url('../img/shape-right.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.svg-shape-img--left .svg-shape-img__photo img {
  -webkit-mask-image: url('../img/shape-left.svg');
  mask-image: url('../img/shape-left.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.svg-shape-img__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: currentColor;
  -webkit-mask-image: url('../img/shape-left.svg');
  mask-image: url('../img/shape-left.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: rotate(180deg);
}
.svg-shape-img--left .svg-shape-img__bg {
  -webkit-mask-image: url('../img/shape-right.svg');
  mask-image: url('../img/shape-right.svg');
}


/* Typography
-------------------------------------------------- */
h1 {
  font-size: clamp(1.625rem, 0.962vw + 1.409rem, 2.25rem);
  line-height: clamp(2.113rem, 0.904vw + 1.909rem, 2.7rem);
  margin-bottom: clamp(0.938rem, 0.673vw + 0.786rem, 1.375rem);
}
h1 span {
  display: block;
  padding-bottom: 6px;
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-primary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Social Icons
-------------------------------------------------- */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 0;
  list-style-type: none;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.social-icons a::after {
  content: '';
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  -webkit-mask-image: var(--social-icon);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: var(--social-icon);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.3s ease-in-out;
}
.social-icons a:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.social-icons a:hover::after {
  background-color: var(--color-white);
}


/* Header
-------------------------------------------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: var(--color-white);
  transition: var(--global-transition);
}
.header .logo img {
  width: auto;
  max-height: 100px;
  transition: var(--global-transition);
}
@media (max-width: 991.98px) {
  .header .logo img {
    max-height: 70px;
  }
}
@media (max-width: 767.98px) {
  .header .logo img {
    max-height: 50px;
  }
}


/* Header - Sticky
-------------------------------------------------- */
.header.sticky {
  position: fixed;
  padding: 10px 0;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.09);
  z-index: 9;
}
.header.sticky .logo img {
  max-height: 50px;
}


/* Banner
-------------------------------------------------- */
.banner {
  position: relative;
  height: clamp(13.75rem, 22.115vw + 8.774rem, 28.125rem);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 4000px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.banner .container,
.banner .row {
  height: 100%;
}
.banner__content {
  position: relative;
  z-index: 3;
}
.banner__title {
  font-family: var(--font-header);
  font-size: clamp(1.625rem, 2.115vw + 1.149rem, 3rem);
  font-weight: var(--global-weight-extra-bold);
  color: var(--color-white);
  line-height: clamp(2.275rem, 2.038vw + 1.816rem, 3.6rem);
}
.banner__text {
  padding-top: 24px;
  font-family: var(--font-header);
  font-size: clamp(1.188rem, 0.288vw + 1.123rem, 1.375rem);
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-white);
  line-height: clamp(1.603rem, 0.389vw + 1.516rem, 1.856rem);
}
.banner__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
}
.banner__buttons .btn {
  white-space: nowrap;
}
.banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  outline: 1px solid transparent;
}
.banner__wave {
  position: absolute;
  bottom: -2vw;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
.banner.banner--hp {
  height: auto;
}
@media (max-width: 767.98px) {
  .banner__text {
    padding-top: 18px;
  }
  .banner__buttons {
    gap: 12px;
    padding-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .banner__wave {
    min-width: 150%;
  }
}


/* Process Steps
-------------------------------------------------- */
.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.process-steps__number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-white);
}
.process-steps__content {
  text-align: left;
}
.process-steps__title {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: var(--global-weight-extra-bold);
  line-height: 1.4;
  color: var(--color-secondary);
}
.process-steps__text {
  padding-top: 5px;
}
.process-steps__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(24px - 2.5px);
  top: 48px;
  bottom: -16px;
  width: 5px;
  border-left: 5px dotted var(--color-primary);
}


/* Callback
-------------------------------------------------- */
.callback {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 70px;
}
.callback input {
  flex: 1;
}
.callback__legal {
  padding-top: 35px;
  font-size: 0.8125rem;
}
/* contact form 7 styles */
form.callback .wpcf7-form-control-wrap {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  padding-bottom: 25px;
}
form.callback .wpcf7-form-control-wrap input {
  width: 100%;
}
form.callback input[type="submit"] {
  flex: 1 1 0;
  align-self: flex-start;
}
form.callback.invalid .wpcf7-response-output {
  flex: 0 0 100%;
  padding: 7px 20px;
  margin: 0;
  border-radius: var(--global-radius);
  border: 1px solid var(--bs-danger);
  font-size: 0.875rem;
  color: var(--bs-danger);
  line-height: 1.25;
}
form.callback.invalid .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  left: 13px;
  font-size: 0.875rem;
  color: var(--bs-danger);
}
form.callback .wpcf7-spinner {
  display: none;
}
@media (max-width: 991.98px) {
  .callback {
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
  }
  .callback__legal {
    padding-top: 20px;
  }
  form.callback input[type="submit"] {
    align-self: stretch;
  }
  form.callback .wpcf7-form-control-wrap {
    padding-bottom: 0;
  }
  form.callback.invalid .wpcf7-not-valid-tip {
    position: relative;
    bottom: auto;
    top: 3px;
  }
}



/* Blog Card
-------------------------------------------------- */
.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.blog-card__image {
  border-top-left-radius: var(--global-radius);
  border-top-right-radius: var(--global-radius);
  overflow: hidden;
}
.blog-card__image img {
  transition: 0.3s all ease-in-out;
}
.blog-card__image img:hover {
  transform: scale(1.2);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  padding: 40px 20px 30px 20px;
  background: var(--color-accent);
  border-bottom-left-radius: var(--global-radius);
  border-bottom-right-radius: var(--global-radius);
  text-align: left;
}
.blog-card__date {
  position: absolute;
  top: -21px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--color-primary);
  border-radius: var(--global-radius);
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: var(--global-weight-medium);
  color: var(--color-white);
  line-height: 1;
}
.blog-card__date img {
  margin-right: 10px;
}
.blog-card__title {
  margin: 0;
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-secondary);
  line-height: 1.2;
}
.blog-card__text {
  padding-top: 10px;
}
.blog-card__btn {
  margin-top: auto;
  padding-top: 20px;
}
.blog-card__tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 35px 0 0 0;
  margin: 0;
  list-style-type: none;
}
.blog-card__tags ul li a {
  padding: 4px 15px;
  background: var(--color-accent-dark);
  border-radius: var(--global-radius);
  font-size: 0.9375rem;
  color: var(--color-black);
  line-height: 1;
  white-space: nowrap;
  transition: var(--global-transition);
}
.blog-card__tags ul li a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}


/* Blog Sidebar
-------------------------------------------------- */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 360px;
}
.blog-sidebar__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-sidebar__block-title {
  font-family: var(--font-header);
  font-size: 1.75rem;
  font-weight: var(--global-weight-extra-bold);
  color: var(--color-secondary);
}
/* search */
.blog-sidebar__search {
  display: flex;
  align-items: center;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--global-btn-radius);
  overflow: hidden;
  transition: all var(--global-transition);
}
.blog-sidebar__search:focus-within {
  border-color: var(--color-secondary);
}
.blog-sidebar__search input {
  flex: 1 1 auto;
  width: 0;
  height: 48px;
  border: none;
  outline: none;
  padding: var(--global-input-padding-y) var(--global-input-padding-x);
  background: var(--color-white);
  font-size: 1rem;
  color: var(--color-text);
}
.blog-sidebar__search button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: all var(--global-transition);
}
.blog-sidebar__search:focus-within button {
  background: var(--color-secondary);
}
.blog-sidebar__search button svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}
/* categories */
.blog-sidebar__categories-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.blog-sidebar__categories-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-sidebar__categories-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.blog-sidebar__categories-list a {
  color: var(--color-text);
  transition: all var(--global-transition);
}
.blog-sidebar__categories-list a:hover {
  color: var(--color-primary);
}
/* latest news */
.blog-sidebar__news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.blog-sidebar__news-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.blog-sidebar__news-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 0.875rem;
}
.blog-sidebar__news-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.blog-sidebar__news-list a {
  font-size: 1.125rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-black);
  line-height: 1.35;
  transition: all var(--global-transition);
}
.blog-sidebar__news-list a:hover {
  color: var(--color-primary);
}
/* tags */
.blog-sidebar__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.blog-sidebar__tags-list a {
  display: inline-block;
  padding: 5px 15px;
  background: var(--color-accent);
  border-radius: var(--global-radius);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: all var(--global-transition);
}
.blog-sidebar__tags-list a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}


/* Footer
-------------------------------------------------- */
.footer {
  position: relative;
  padding: 40px 0;
  background: var(--color-secondary);
  font-size: 1rem;
  color: var(--color-white);
  z-index: 2;
}
.footer a {
  color: var(--color-white);
}
.footer a:hover {
  color: var(--color-primary);
}
.footer__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer__title {
  margin-bottom: 25px;
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-primary);
}
.footer__social a {
  background: transparent;
  border: 2px solid var(--color-white);
}
.footer__social a::after {
  background-color: var(--color-white);
}
.footer__social a:hover {
  background: var(--color-white);
  border-color: var(--color-white);
}
.footer__social a:hover::after {
  background-color: var(--color-secondary);
}
.footer__cert {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}
.footer__line {
  margin: 30px 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.footer__copyright {
  background: var(--color-secondary);
  font-size: 1rem;
  color: var(--color-white);
}
.footer__copyright a {
  color: var(--color-white);
}
.footer__copyright a:hover {
  color: var(--color-primary);
}
@media (max-width: 991.98px) {
  .footer__title {
    margin-bottom: 5px;
  }
}


/* Tabs
-------------------------------------------------- */
.tabs .nav-tabs {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 0 40px;
  border: none;
}
.tabs .nav-tabs button {
  min-height: 60px;
  height: 100%;
  padding: 7px 20px;
  margin: 0;
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-primary-dark);
  line-height: 1.35;
  background: var(--color-accent-dark);
  border: none;
}
.tabs .nav-tabs button.active {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.tabs .nav-tabs button:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.tabs .tab-content {
  padding: 60px 120px;
  background: var(--color-primary-dark);
  border-radius: var(--global-radius);
}
.tabs .tab-pane {
  align-items: center;
  justify-content: space-between;
}
.tabs .tab-pane.show.active {
  display: flex;
}
.tabs .tab-pane__left {
  width: 50%;
}
.tabs .tab-pane__right {
  width: 38%;
}
.tabs .tab-pane__title {
  font-family: var(--font-header);
  font-size: 1.75rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-white);
  line-height: 1.35;
}
.tabs .tab-pane__text {
  padding-top: 20px;
}
.tabs .tab-pane__btn {
  padding-top: 30px;
}
@media (max-width: 991.98px) {
  .tabs .nav-tabs {
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }
  .tabs .nav-tabs .nav-item {
    width: 100%;
  }
  .tabs .nav-tabs button {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    border-radius: var(--global-radius) !important;
  }
  .accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    margin-left: 15px;
    flex-shrink: 0;
  }
  .tabs .tab-content {
    display: none;
  }
  .tabs .nav-item .tab-pane {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    margin-top: 0;
    margin-bottom: 8px;
    background: var(--color-primary-dark);
    border-radius: var(--global-radius);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tabs .nav-item .tab-pane.show.active {
    opacity: 1;
    padding: 20px;
    margin-top: 8px;
  }
  .tabs .tab-pane {
    flex-direction: column;
  }
  .tabs .tab-pane__left,
  .tabs .tab-pane__right {
    width: 100%;
  }
  .tabs .tab-pane__right {
    padding-top: 30px;
  }
  .tabs .tab-pane__title {
    font-size: 1.375rem;
  }
  .tab-pane__img {
    max-width: 75%;
    padding: 20px 0 10px 0;
  }
  .tabs .tab-pane__text {
    padding-top: 14px;
  }
  .tabs .tab-pane__btn {
    padding-top: 25px;
  }
}


/* Breadcrumbs
-------------------------------------------------- */
.breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 0 0 0;
  margin: 0;
  list-style-type: none;
}
.breadcrumbs li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-white);
  text-transform: uppercase;
}
.breadcrumbs li a {
  color: var(--color-white);
}
.breadcrumbs li a:hover {
  color: var(--color-white);
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  display: inline-block;
  margin: 0 5px;
}


/* Service Card
-------------------------------------------------- */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 20px 30px 20px;
  background: var(--color-accent);
  border-radius: var(--global-radius);
  text-align: center;
}
.service-card__image {
  width: 200px;
  height: 200px;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__body .modal-header{
  padding: 15px 25px;
}
.service-card__body .modal-body {
  padding: 15px 25px 25px 25px;
}
.service-card__title {
  padding-top: 30px;
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-secondary);
  line-height: 1.2;
}
.service-card__text {
  padding: 10px 0 20px 0;
}
.service-card__btn {
  align-self: center;
  margin-top: auto;
}
@media (max-width: 991.98px) {
  .service-card {
    align-items: flex-start;
    padding: 30px 20px 30px 20px;
    text-align: left;
  }
  .service-card__image {
    width: 150px;
    height: 150px;
  }
  .service-card__title {
    padding-top: 20px;
  }
  .service-card__btn {
    align-self: flex-start;
  }
}


/* Timeline
-------------------------------------------------- */
.timeline {
  padding-top: 100px;
}
.timeline > .timeline__container:first-child .timeline__date {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.timeline > .timeline__container:last-child .timeline__date {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  margin: 30px 0;
  background: var(--color-accent);
  border-radius: var(--global-radius);
  text-align: center;
}
.timeline__item-img {
  width: 175px;
  height: 175px;
  margin: 0 0 20px 0;
}
.timeline__item-title {
  padding: 0 0 15px 0;
  font-family: var(--font-header);
  font-size: 1.375rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-secondary);
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.timeline__item-desc,
.timeline__item-desc p {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}
.timeline__extra-content {
  padding-top: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.timeline__extra-content--active {
  padding-bottom: 20px;
  opacity: 1;
  max-height: 3000px;
}
.timeline__date {
  position: relative;
  width: 10px;
  height: 100%;
  background: var(--color-primary);
  margin: 0 auto;
}
.timeline__date::before,
.timeline__date::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  border-radius: 50%;
}
.timeline__date::before {
  width: 25px;
  height: 25px;
  background: var(--color-primary);
}
.timeline__date::after {
  width: 15px;
  height: 15px;
  background: var(--color-white);
}
.timeline__date span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  background: var(--color-secondary);
  border-radius: 25px;
  padding: 0 35px;
  font-size: 1.25rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-white);
  line-height: 49px;
  white-space: nowrap;
}
.timeline__date span::before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  width: 0;
  height: 0;
  border-style: solid;
}
.timeline--left .timeline__date span {
  left: 50px;
}
.timeline--left .timeline__date span::before {
  left: -10px;
  border-width: 20px 20px 20px 0;
  border-color: transparent var(--color-secondary) transparent transparent;
}
.timeline--right .timeline__date span {
  left: auto;
  right: 50px;
}
.timeline--right .timeline__date span::before {
  left: auto;
  right: -10px;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent var(--color-secondary);
}
@media (max-width: 767.98px) {
  .timeline {
    padding-top: 60px;
  }
  .timeline__item {
    align-items: flex-start;
    margin: 80px 0 40px 0;
    text-align: left;
  }
  .timeline__item-img {
    width: 125px;
    height: 125px;
  }
  .timeline__item-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .timeline__date::before,
  .timeline__date::after {
    top: 30px;
    transform: translate(-50%, none);
  }
  .timeline--left .timeline__date span,
  .timeline--right .timeline__date span {
    top: 30px;
    transform: translateY(none);
  }
  .timeline--right .timeline__date span {
    left: 50px;
    right: auto;
  }
  .timeline--right .timeline__date span::before {
    left: -10px;
    right: auto;
    border-width: 20px 20px 20px 0;
    border-color: transparent var(--color-secondary) transparent transparent;
  }
}


/* Masonry Sizing
-------------------------------------------------- */
.masonry-gallery-sizer,
.masonry-gallery-item {
  width: calc(33.333% - 20px);
}
.masonry-gallery-gutter-sizer {
  width: 30px;
}
.masonry-gallery-item {
  margin-bottom: 50px;
  border-radius: var(--global-radius);
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .masonry-gallery-sizer,
  .masonry-gallery-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767.98px) {
  .masonry-gallery-sizer,
  .masonry-gallery-item {
    width: 100%;
  }
  .masonry-gallery-gutter-sizer {
    width: 0;
  }
}


/* Testimonial Card
-------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background: var(--color-accent);
  border-radius: var(--global-radius);
}
.testimonial-card__icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
}
.testimonial-card__body span {
  display: block;
  padding-top: 10px;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-secondary);
  line-height: 1.35;
}
@media (max-width: 991.98px) {
  .testimonial-card {
    gap: 20px;
    padding: 30px 20px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-card {
    gap: 10px;
    padding: 20px;
  }
  .testimonial-card__icon svg {
    width: 32px;
    height: 32px;
  }
}


/* Star Rating
-------------------------------------------------- */
.star-rating {
  display: flex;
  gap: 5px;
  margin: 15px 0 0 0;
}
.star-rating svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}


/* Contact Details
-------------------------------------------------- */
.contact-details {
  padding: 50px 30px;
  background: var(--color-accent);
  border-radius: var(--global-radius);
}
.contact-details__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 5px 0;
  font-family: var(--font-header);
  font-size: 1.125rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-secondary);
}
.contact-details__label::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--color-primary);
  -webkit-mask-image: var(--contact-details-icon);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: var(--contact-details-icon);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.contact-details__label:first-child {
  padding: 0 0 5px 0;
}
.contact-details__value {
  padding: 0 0 0 26px;
}
.contact-details__social {
  padding: 10px 0 0 26px;
  margin: 0;
}
.contact-details__social a {
  width: 32px;
  height: 32px;
}
.contact-details__social a::after {
  width: 16px;
  height: 16px;
}


/* Contact Form
-------------------------------------------------- */
.contact-form {
  background: var(--color-white);
}
.contact-form__field {
  position: relative;
  padding-bottom: 25px;
}
.contact-form__field input:not([type="submit"]),
.contact-form__field textarea,
.contact-form__field select {
  min-height: 3.5rem;
  padding-left: 2.1875rem;
}
.contact-form__label {
  position: absolute;
  top: -11px;
  left: 25px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-primary);
  line-height: 1;
  background-color: var(--color-white);
  padding: 5px 10px;
  z-index: 1;
}
.contact-form__field textarea {
  min-height: 180px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.contact-form__consent {
  position: relative;
  padding: 0 0 20px 20px;
  font-size: 0.875rem;
}
.contact-form__consent input {
  position: absolute;
  top: 2px;
  left: -20px;
  margin: 0 5px 0 0;
}
/* contact form 7 styles */
.contact-form form.invalid .wpcf7-not-valid-tip {
  padding: 5px 0 0 13px;
  font-size: 0.875rem;
  color: var(--bs-danger);
}
.contact-form .contact-form__consent .wpcf7-list-item {
  margin: 0;
}
.contact-form form.invalid .contact-form__consent .wpcf7-not-valid-tip {
  padding: 5px 0;
}
.contact-form form.invalid .wpcf7-response-output {
  padding: 7px 20px;
  margin: 0;
  border-radius: var(--global-radius);
  border: 1px solid var(--bs-danger);
  font-size: 0.875rem;
  color: var(--bs-danger);
  line-height: 1.25;
}


/* CTA
-------------------------------------------------- */
.cta {
  position: relative;
  padding: 35vh 0;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.cta__bg {
  position: absolute;
  top: -300px;
  bottom: -300px;
  width: 100%;
  height: auto;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.cta__content {
  position: relative;
  z-index: 3;
}
.cta__btn {
  position: relative;
  padding-top: 35px;
  z-index: 2;
}
.cta__wave-top,
.cta__wave-bottom {
  position: absolute;
  left: -1px;
  width: calc(100% + 1px);
  height: auto;
  z-index: 2;
}
.cta__wave-top {
  top: -2vw;
}
.cta__wave-bottom {
  bottom: -2vw;
}
@media (max-width: 991.98px) {
  .cta {
    padding: 15vh 0;
  }
  .cta__btn {
    padding-top: 30px;
  }
}