/* Fonts
-------------------------------------------------- */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Italic-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 400 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'Oranienbaum';
  src: url('../fonts/Oranienbaum-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  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; }
}


/* Go to Top Button
-------------------------------------------------- */
#go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
#go-to-top svg {
  width: 32px;
  height: 32px;
}
#go-to-top svg circle {
  fill: var(--color-black);
}
#go-to-top svg path {
  fill: var(--color-white);
}
#go-to-top.visible {
  opacity: 0.5;
  visibility: visible;
}


/* 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-normal);
  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__img.section__img--circle img {
  border-radius: 50%;
}
.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__btn {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
}
.section-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
.section-wave img {
  min-width: calc(100% + 10px);
  height: auto;
  margin: -5px;
}
@media (max-width: 991.98px) {
  .section-spacing {
    padding-top: 40px;
  }
  .section__img {
    margin: 10px 0 20px 0;
  }
}
@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;
}


/* Typography
-------------------------------------------------- */
h1 {
  font-size: clamp(1.875rem, 0.962vw + 1.659rem, 2.5rem);
  line-height: clamp(2.031rem, 1.029vw + 1.8rem, 2.7rem);
  margin-bottom: clamp(0.938rem, 0.673vw + 0.786rem, 1.375rem);
}
h1 span {
  display: block;
  padding-bottom: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--global-weight-normal);
  color: var(--color-primary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0px;
}


/* Social Icons
-------------------------------------------------- */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  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: 0;
  background: var(--color-accent);
  transition: var(--global-transition);
}
.header .logo img {
  width: auto;
  max-height: 100px;
  transition: var(--global-transition);
}
.header__top {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-accent-dark);
  overflow: hidden;
  transition: grid-template-rows 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.header__top > * {
  min-height: 0;
}
@media (max-width: 991.98px) {
  .header {
    padding: 10px 0;
  }
  .header .logo img {
    max-height: 70px;
  }
}
@media (max-width: 767.98px) {
  .header .logo img {
    max-height: 50px;
  }
}

/* Header - Sticky
-------------------------------------------------- */
.header.sticky {
  position: fixed;
  padding: 0;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.09);
  z-index: 9;
}
.header.sticky .logo img {
  max-height: 50px;
}
.header.sticky .header__top {
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .header.sticky {
    padding: 10px 0;
  }
}


/* Header - Social Icons
-------------------------------------------------- */
.header .social-icons {
  gap: 15px;
}
.header .social-icons a {
  width: 36px;
  height: 36px;
}
.header .social-icons a::after {
  width: 18px;
  height: 18px;
}


/* 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.875rem, 1.923vw + 1.442rem, 3.125rem);
  font-weight: var(--global-weight-normal);
  color: var(--color-white);
  line-height: clamp(2.531rem, 3.317vw + 1.785rem, 4.688rem);
}
.banner__text {
  padding-top: 24px;
  font-family: var(--font-header);
  font-size: clamp(1.125rem, 0.385vw + 1.038rem, 1.375rem);
  font-weight: var(--global-weight-normal);
  color: var(--color-white);
  line-height: clamp(1.688rem, 0.577vw + 1.558rem, 2.063rem);
}
.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: -2%;
  min-width: 104%;
  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%;
  }
}


/* 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-normal);
  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;
  }
}


/* 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;
}


/* 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;
  }
}


/* 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-normal);
  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 {
  padding: 0 0 15px 0;
  font-size: 0.875rem;
}
.contact-form__consent input {
  margin: 0 5px 0 0;
}


/* 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: -5px;
  min-width: calc(100% + 10px);
  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;
  }
}


/* Icon Box
-------------------------------------------------- */
.icon-box {
  padding: 0 30px;
  text-align: center;
}
.icon-box__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box__img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: invert(57%) sepia(57%) saturate(394%) hue-rotate(336deg) brightness(91%) contrast(82%);
}
.icon-box__title {
  padding-top: 20px;
  font-family: var(--font-header);
  font-size: 1.375rem;
  font-weight: var(--global-weight-normal);
  color: var(--color-secondary);
  line-height: 1.35;
}
.icon-box__text {
  padding-top: 15px;
}
@media (max-width: 1199.98px) {
  .icon-box {
    padding: 0 10px;
  }
}
@media (max-width: 767.98px) {
  .icon-box__title {
    padding-top: 10px;
  }
  .icon-box__text {
    padding-top: 10px;
  }
}


/* Carousel Slider
-------------------------------------------------- */
.carousel-slider {
  display: flex;
}
.carousel-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
/* Arrows Navigation */
.carousel-slider-controls {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.carousel-slider-controls span {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.carousel-slider-controls span svg {
  width: 28px;
  height: 28px;
}
.carousel-slider-controls span:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
/* Arrows Navigation Inside Carousel Contariner */
.carousel-slider-container.carousel-slider-controls-inside {
  max-width: calc(100% - 240px);
}
.carousel-slider-container.carousel-slider-controls-inside .carousel-slider-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: calc(100% + 240px);
  margin: 0;
  padding: 0;
}
/* Dots Navigation */
.carousel-slider-container.carousel-slider-nav-spacing {
  margin-bottom: 50px;
}
.carousel-slider-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.carousel-slider-nav li {
  width: 30px;
  height: 3px;
  margin: 0 5px;
  background: var(--color-secondary);
}
.carousel-slider-nav li.tns-nav-active {
  background: var(--color-black);
}
@media (max-width: 575.98px) {
  .carousel-slider-controls span {
    width: 40px;
    height: 40px;
  }
  .carousel-slider-container.carousel-slider-controls-inside {
    max-width: calc(100% - 40px);
  }
  .carousel-slider-container.carousel-slider-controls-inside .carousel-slider-controls {
    width: calc(100% + 40px);
  }
}


/* Service Card
-------------------------------------------------- */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--global-radius);
  text-align: center;
}
.service-card__img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  padding-top: 30px;
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: var(--global-weight-normal);
  color: var(--color-secondary);
  line-height: 1.35;
}
.service-card__text {
  padding: 10px 0 30px 0;
}
.service-card__btn {
  align-self: center;
  margin-top: auto;
}
@media (max-width: 991.98px) {
  .service-card {
    padding: 30px 20px;
  }
  .service-card__img img {
    width: 150px;
    height: 150px;
  }
  .service-card__title {
    padding-top: 15px;
  }
  .service-card__text {
    padding: 5px 0 20px 0;
  }
}
@media (max-width: 575.98px) {
  .services-slider-controls span {
    background: var(--color-accent-light);
  }
}


/* Testimonial Card
-------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background: var(--color-accent-light);
  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-family: var(--font-header);
  font-weight: var(--global-weight-normal);
  color: var(--color-secondary);
  line-height: 1.35;
}
.testimonials-slider-controls span {
  background: var(--color-accent-light);
}
.testimonials-slider-controls span:hover {
  color: var(--color-accent-light);
}
@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;
  }
}
@media (max-width: 575.98px) {
  .testimonials-slider-controls span {
    background: var(--color-accent-dark);
  }
}


/* Star Rating
-------------------------------------------------- */
.star-rating {
  display: flex;
  gap: 5px;
  margin: 15px 0 0 0;
}
.star-rating svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}


/* Client Logos
-------------------------------------------------- */
.client-logos {
  padding-left: 20px;
  padding-right: 20px;
}
.client-logos .col {
  border-bottom: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
}
.client-logos .col:nth-child(-n+4) {
  border-top: 1px solid var(--color-accent);
}
.client-logos .col:nth-child(4n+4),
.client-logos .col:last-child {
  border-right: 1px solid var(--color-accent);
}
.client-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 175px;
  padding: 20px 30px;
}
.client-logos__item img {
  max-height: 100px;
  max-width: 80%;
}
@media (max-width: 991.98px) {
  .client-logos .col:nth-child(-n+4) {
    border-top: 0px solid var(--color-accent);
  }
  .client-logos .col:nth-child(4n+4),
  .client-logos .col:last-child {
    border-right: 0px solid var(--color-accent);
  }
  .client-logos .col:nth-child(-n+3) {
    border-top: 1px solid var(--color-accent);
  }
  .client-logos .col:nth-child(3n+3),
  .client-logos .col:last-child {
    border-right: 1px solid var(--color-accent);
  }
  .client-logos__item {
    height: 150px;
    padding: 20px 20px;
  }
  .client-logos__item img {
    max-width: 85%;
  }
}
@media (max-width: 767.98px) {
  .client-logos .col:nth-child(-n+4) {
    border-top: 0px solid var(--color-accent);
  }
  .client-logos .col:nth-child(4n+4),
  .client-logos .col:last-child {
    border-right: 0px solid var(--color-accent);
  }
  .client-logos .col:nth-child(-n+3) {
    border-top: 0px solid var(--color-accent);
  }
  .client-logos .col:nth-child(3n+3),
  .client-logos .col:last-child {
    border-right: 0px solid var(--color-accent);
  }
  .client-logos .col:nth-child(-n+2) {
    border-top: 1px solid var(--color-accent);
  }
  .client-logos .col:nth-child(2n+2),
  .client-logos .col:last-child {
    border-right: 1px solid var(--color-accent);
  }
  .client-logos__item {
    height: 100px;
    padding: 20px 10px;
  }
  .client-logos__item img {
    max-width: 85%;
    max-height: 75px;
  }
}