/* Fonts
-------------------------------------------------- */
@font-face {
  font-family: 'Roboto Serif';
  src: url('../fonts/RobotoSerif-VariableFont_GRAD,opsz,wdth,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Serif';
  src: url('../fonts/RobotoSerif-Italic-VariableFont_GRAD,opsz,wdth,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-VariableFont_wght.woff2') format('woff2');
  font-weight: 200 800;
  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: 1000;
  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: 1010;
  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 - Mobile Panel - Action Buttons/Icons
-------------------------------------------------- */
.bn-mobile-menu-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 2rem 0;
  border-bottom: var(--nav-dropdown-border);
  min-height: 60px;
  flex-shrink: 0;
}


/* 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: 1rem;
  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-secondary-light);
}
a.button-text:hover::after {
  transform: translateX(-4px);
  background-color: var(--color-secondary-light)
}


/* Button Icon
-------------------------------------------------- */
.btn-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-icon svg {
  width: 16px;
  height: 16px;
}


/* Styled <ul> List
-------------------------------------------------- */
.styled-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin-left: 33px;
  list-style-type: none;
  text-align: left;
}
.styled-list ul li {
  position: relative;
}
.styled-list ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -33px;
  width: 24px;
  height: 24px;
  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;
}
/* .styled-list.styled-list--no-margin ul {
  margin: 0 0 0 33px;
} */


/* Sections
-------------------------------------------------- */
section {
  padding: 100px 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__btn--center {
  justify-content: center;
}
.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;
}
.section--small {
  padding: 40px 0;
}
@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%;
  }
}


/* Typography
-------------------------------------------------- */
h1 {
  font-size: clamp(1.563rem, 1.442vw + 1.238rem, 2.5rem);
  line-height: clamp(2.031rem, 1.49vw + 1.696rem, 3rem);
  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: 0.875rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-secondary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h1.wave {
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1.wave::after {
  content: '';
  display: block;
  width: 153px;
  height: 15px;
  margin: 30px 0 15px 0;
  background: url(../img/heading-wave.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
h1.wave.m-0::after {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  h1.wave::after {
    width: 75px;
    height: 7px;
    margin: 20px 0 5px 0;
  }
}


/* 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,
.social-icons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: var(--global-btn-radius);
  transition: all 0.3s ease-in-out;
}
.social-icons a::after,
.social-icons button::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,
.social-icons button:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}
.social-icons a:hover::after,
.social-icons button:hover::after {
  background-color: var(--color-white);
}
@media (max-width: 575.98px) {
  .social-icons a,
  .social-icons button {
    width: 36px;
    height: 36px;
  }
}


/* 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: 110px;
  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;
}


/* Header Icons
-------------------------------------------------- */
.header-icons {
  padding: 0 0 0 10px;
}
@media (max-width: 991.98px) {
  .header-icons {
    padding: 0;
  }
}


/* Nav
-------------------------------------------------- */
nav a {
  text-transform: uppercase;
}
.bn-mobile-menu a {
  text-transform: uppercase;
}


/* Banner
-------------------------------------------------- */
.banner {
  position: relative;
  padding: clamp(3.125rem, 7.692vw + 1.394rem, 8.125rem) 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--color-black) 50%, transparent 100%);
  opacity: 0.2;
  z-index: 2;
}
.banner .container,
.banner .row {
  height: 100%;
}
.banner__content {
  position: relative;
  z-index: 3;
}
.banner__title {
  font-family: var(--font-header);
  font-size: clamp(1.75rem, 1.346vw + 1.447rem, 2.625rem);
  font-weight: var(--global-weight-medium);
  color: var(--color-white);
  line-height: clamp(2.275rem, 1.75vw + 1.881rem, 3.413rem);
}
.banner__text {
  padding-top: 25px;
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 0.192vw + 1.082rem, 1.25rem);
  font-weight: var(--global-weight-normal);
  color: var(--color-white);
  line-height: clamp(1.519rem, 0.548vw + 1.395rem, 1.875rem);
}
.banner__buttons {
  display: flex;
  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: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
}
.banner.banner--hp {
  height: auto;
}
@media (max-width: 767.98px) {
  .banner::before {
    background: linear-gradient(to right, var(--color-secondary) 35%, rgba(var(--bs-secondary-rgb), 0.75) 100%);
  }
  .banner__text {
    padding-top: 18px;
  }
  .banner__buttons {
    gap: 12px;
    padding-top: 30px;
  }
}


/* Footer
-------------------------------------------------- */
.footer {
  position: relative;
  padding: 80px 0 40px 0;
  background: var(--color-primary);
  font-size: 1rem;
  color: var(--color-white);
  z-index: 2;
}
.footer a {
  color: var(--color-white);
}
.footer a:hover {
  color: var(--color-secondary-light);
}
.footer__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer__title {
  margin-bottom: 25px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-white);
}
.footer__social {
  padding-top: 25px;
  gap: 30px;
}
.footer__social a {
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0px;
}
.footer__social a::after {
  background-color: var(--color-white);
}
.footer__social a:hover {
  background: transparent;
}
.footer__social a:hover::after {
  background-color: var(--color-secondary-light);
}
.footer__line {
  margin: 30px 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.footer__logo {
  margin-bottom: 25px;
}
.footer__text {
  max-width: 300px;
}
.footer__copyright {
  background: var(--color-primary);
  font-size: 1rem;
  color: var(--color-white);
}
.footer__copyright a {
  color: var(--color-white);
}
.footer__copyright a:hover {
  color: var(--color-secondary-light);
}
@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;
}


/* Contact Details
-------------------------------------------------- */
.contact-details {
  height: 100%;
  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-primary);
}
.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__value a {
  color: var(--color-text);
}
.contact-details__value a:hover {
  color: var(--color-primary);
}
.contact-details__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-details__title {
  font-family: var(--font-header);
  font-size: 1.125rem;
  font-weight: var(--global-weight-semi-bold);
  color: var(--color-secondary);
  line-height: 1.35;
}
.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-details__group-title {
  padding-bottom: 10px;
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-secondary);
  line-height: 1.35;
}
.contact-details--sticky {
  position: sticky;
  top: 100px;
}


/* 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;
}
.contact-form__group-title {
  padding-bottom: 30px;
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: var(--global-weight-bold);
  color: var(--color-secondary);
  line-height: 1.35;
}
.contact-form__field-group {
  position: relative;
  padding: 25px 35px 20px 35px;
  margin-bottom: 25px;
  border: var(--global-input-border-width) solid var(--global-input-border-color);
  border-radius: var(--global-input-radius);
}


/* CTA
-------------------------------------------------- */
.cta {
  position: relative;
  padding: 15vh 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;
}
@media (max-width: 991.98px) {
  .cta {
    padding: 10vh 0;
  }
  .cta__btn {
    padding-top: 30px;
  }
}


/* 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: var(--global-btn-radius);
  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);
}
.carousel-slider-controls--white span {
  background: var(--color-white);
  color: var(--color-secondary);
}
.carousel-slider-controls--white span:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
/* 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);
  }
}


/* News Card
-------------------------------------------------- */
.news-card {
  display: flex;
  gap: 25px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--global-radius);
}
.news-card__img {
  flex: 0 0 150px;
}
.news-card__img img {
  border-radius: var(--global-radius);
}
.news-card__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  align-items: flex-start;
  text-align: left;
}
.news-card__title {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: var(--global-weight-medium);
  color: var(--color-primary);
  line-height: 1.3;
}
@media (max-width: 1399.98px) {
  .news-card__img {
    flex: 0 0 100px;
  }
  .news-card__title {
    font-size: 1.0625rem;
  }
}
@media (max-width: 767.98px) {
  .news-card {
    gap: 15px;
    padding: 15px;
  }
  .news-card__img {
    flex: 0 0 80px;
  }
  .news-card__date {
    font-size: 0.875rem;
  }
}


/* Work Carousel
-------------------------------------------------- */
.work-img {
  padding: 0 10px;
}
.work-img img {
  border-radius: var(--global-radius);
}
.work-slider-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: calc(1440px - var(--bs-gutter-x));
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.work-slider-controls span {
  pointer-events: all;
}
@media (max-width: 1399.98px) {
  .work-slider-controls {
    width: calc(97% - var(--bs-gutter-x));
  }
}
@media (max-width: 991.98px) {
  .work-slider-controls {
    width: calc(720px - var(--bs-gutter-x));
  }
}
@media (max-width: 767.98px) {
  .work-slider-controls {
    width: calc(540px - var(--bs-gutter-x));
  }
}
@media (max-width: 575.98px) {
  .work-slider-controls {
    width: calc(100% - var(--bs-gutter-x));
  }
}


/* Solo Carousesl
-------------------------------------------------- */
.solo-img img {
  border-radius: var(--global-radius);
}


/* Sponsor Logo
-------------------------------------------------- */
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130px;
  padding: 20px 30px;
  background: var(--color-white);
  border-radius: var(--global-radius);
}
.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* 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-body);
  font-size: 1rem;
  font-weight: var(--global-weight-normal);
  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.375rem;
  font-weight: var(--global-weight-medium);
  color: var(--color-primary);
  line-height: 1.25;
}
.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-card__share {
  padding-top: 30px;
}


/* 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-semi-bold);
  color: var(--color-primary);
}
/* 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-normal);
  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);
}


/* Masonry Sizing
-------------------------------------------------- */
.masonry-gallery-sizer,
.masonry-gallery-item {
  width: calc(33.333% - 20px);
}
.masonry-gallery-gutter-sizer {
  width: 20px;
}
.masonry-gallery-item {
  margin-bottom: 20px;
  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;
  }
}


/* Lightbox Gallery
-------------------------------------------------- */
.lightbox-gallery .masonry-gallery-item > span {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--global-radius);
  font-size: 0;
}
.lightbox-gallery .masonry-gallery-item > span > img {
  display: block;
  width: 100%;
}
.lightbox-gallery .masonry-gallery-item > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: 1;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  pointer-events: none;
}
.lightbox-gallery .masonry-gallery-item > span::after {
  content: url(../img/icon-magnification-white.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 32px;
  height: 32px;
  opacity: 0;
  z-index: 2;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  pointer-events: none;
}
.lightbox-gallery .masonry-gallery-item > span:hover::before,
.lightbox-gallery .masonry-gallery-item > span:hover::after {
  opacity: 1;
}

/* caption */
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(7, 30, 56, 0.8) 0%, rgba(7, 30, 56, 0.45) 50%, rgba(7, 30, 56, 0) 100%);
  color: var(--color-white);
  text-align: left;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  pointer-events: none;
}
.gallery-caption__title {
  display: block;
  font-family: var(--font-header);
  font-size: 1.0625rem;
  font-weight: var(--global-weight-semi-bold);
  line-height: 1.3;
  color: var(--color-white);
}
.gallery-caption__meta {
  display: block;
  font-size: 0.8125rem;
  font-weight: var(--global-weight-medium);
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.75);
}
/* captions stay visible; hover only deepens the gradient behind them */
.lightbox-gallery .masonry-gallery-item > span:hover .gallery-caption,
.lightbox-gallery .masonry-gallery-item > span:focus-within .gallery-caption {
  background: linear-gradient(to top, rgba(7, 30, 56, 0.9) 0%, rgba(7, 30, 56, 0.6) 50%, rgba(7, 30, 56, 0) 100%);
}


/* Divider
-------------------------------------------------- */
section.divider {
  padding: 0;
}
.divider__line {
  width: 100%;
  height: 1px;
  background: var(--color-text);
}