.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  transition: all 0.3s ease;
}
.header:hover {
  background-color: #052967;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
}

.scrolled-nav {
  background-color: #052967;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
}

.nav {
  height: 6.25rem;
}
.nav .nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .nav__data .nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  width: 9.313rem;
  height: 2.5rem;
}
.nav .nav__data .nav__logo .nav__logo-img {
  width: 100%;
  max-width: 9.313rem;
  height: auto;
}
.nav .nav__data .nav__toggle {
  width: 2.188rem;
  height: 2.188rem;
  cursor: pointer;
  position: relative;
}
.nav .nav__data .nav__toggle .menu-btn__line {
  display: block;
  width: 2.188rem;
  height: 0.125rem;
  margin-bottom: 0.438rem;
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out;
  transform-origin: right;
  float: right;
}
.nav .nav__data .nav__toggle .menu-btn__line:nth-child(2) {
  width: 1.875rem;
  transition-delay: 0.55s;
}
.nav .nav__data .nav__toggle .menu-btn__line:nth-child(3) {
  width: 1.563rem;
  transition-delay: 0.7s;
}
.nav .nav__data .nav__toggle .menu-btn__line:nth-child(4) {
  width: 1.25rem;
  transition-delay: 0.85s;
}
.nav .nav__data .nav__toggle .menu-btn__close {
  display: block;
  width: 2.188rem;
  height: 2.188rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  transform-origin: top left;
}
.nav .nav__data .nav__toggle .menu-btn__close::before, .nav .nav__data .nav__toggle .menu-btn__close::after {
  content: "";
  display: block;
  background-color: #ffffff;
  position: absolute;
  transition: transform 0.3s ease-in-out;
}
.nav .nav__data .nav__toggle .menu-btn__close::before {
  width: 0.125rem;
  height: 2.188rem;
  top: 0;
  left: 50%;
  margin-left: -0.063rem;
  transition-delay: 0.15s;
  transform: scaleY(0);
  transform-origin: top;
}
.nav .nav__data .nav__toggle .menu-btn__close::after {
  width: 2.188rem;
  height: 0.125rem;
  top: 50%;
  left: 0;
  margin-top: -0.063rem;
  transition-delay: 0;
  transform: scaleX(0);
  transform-origin: right;
}
.nav .nav__data .nav__toggle .is-active .menu-btn__line {
  transform: scaleX(0);
}
.nav .nav__data .nav__toggle .is-active .menu-btn__close::before {
  transform: scaleY(1);
  transition-delay: 0.7s;
}
.nav .nav__data .nav__toggle .is-active .menu-btn__close::after {
  transform: scaleX(1);
  transition-delay: 0.85s;
}
.nav .nav__menu ul .menu-item {
  transition: all 0.5s ease;
}
.nav .nav__menu ul .menu-item a {
  color: #ffffff;
  font-weight: 500;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  transition: background-color 0.3s;
  z-index: 998;
}
.nav .nav__menu ul .menu-item > .sub-menu {
  display: grid;
  background-color: #87A6C1;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}
.nav .nav__menu ul .menu-item > .sub-menu li .sub-menu {
  height: auto;
  overflow: unset;
  padding-left: 1.25rem;
}
.nav .nav__menu ul .menu-item > .sub-menu li .sub-menu li a {
  padding: 0.625rem;
  padding-left: 0rem;
  font-weight: 300;
}
.nav .nav__menu ul .sub-menu-title > a {
  text-decoration: underline;
  padding-bottom: 0.625rem;
}
.nav .nav__menu ul .sub-menu-title > a::after, .nav .nav__menu ul .sub-menu-title > a::before {
  display: none;
}
.nav .nav__menu ul .menu-item-has-children > a::before,
.nav .nav__menu ul .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.75rem;
  height: 0.125rem;
  cursor: pointer;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.nav .nav__menu ul .menu-item-has-children > a::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav__menu ul .submenu-opened {
  padding-bottom: 1.25rem;
  transition: all 0.4s ease;
}
.nav .nav__menu ul .submenu-opened > a::after {
  height: 0rem;
  transition: all 0.3s ease;
}
.nav .nav__menu ul .menu-item-has-children > a::before {
  transform: translateY(-50%);
}
.nav .nav__menu .nav__menu-translate {
  padding-top: 2.5rem;
  position: relative;
  height: auto;
}
.nav .nav__menu .nav__menu-translate .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.25rem;
  width: 100%;
}
.nav .nav__menu .nav__menu-translate .dropdown-menu-translate {
  position: unset;
  list-style: none;
  min-width: 10rem;
  display: none;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  z-index: 999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: end;
  width: 100%;
  height: auto;
  background-color: #87A6C1;
}
.nav .nav__menu .nav__menu-translate .dropdown-menu-translate .dropdown-item {
  padding: 0;
  flex: 1 0 auto;
  width: 100%;
}
.nav .nav__menu .nav__menu-translate .dropdown-menu-translate .dropdown-item a {
  display: block;
  padding: 1rem 1.25rem;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  align-items: center;
  text-transform: uppercase;
}
.nav .nav__menu .nav__menu-translate .dropdown-toggle[aria-expanded=true] + .dropdown-menu-translate,
.nav .nav__menu .nav__menu-translate .dropdown-menu-translate.show {
  display: flex;
}
.nav .nav__menu .button-default-wrapper {
  width: auto;
  justify-content: flex-start;
  padding: 1.25rem;
}

@media screen and (max-width: 69.875rem) {
  .nav .nav__menu {
    background-color: #052967;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100vh - 6.25rem);
    overflow: auto;
    padding-block: 1.25rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav .nav__menu::-webkit-scrollbar-thumb {
    background-color: #CADDF2;
  }
}
@media screen and (min-width: 69.875rem) {
  .nav {
    display: flex;
    justify-content: space-between;
  }
  .nav .nav__data .nav__toggle {
    display: none;
  }
  .nav .nav__menu {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 2.5rem;
  }
  .nav .nav__menu ul {
    display: flex;
    flex-direction: row;
    column-gap: 3.25rem;
    height: 100%;
  }
  .nav .nav__menu ul > .menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav .nav__menu ul > .menu-item a {
    padding: 0rem;
  }
  .nav .nav__menu ul > .menu-item:hover a::after {
    height: 0rem;
    transition: all 0.3s ease;
  }
  .nav .nav__menu ul > .menu-item:hover .sub-menu {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
    max-height: 90vh;
    overflow: scroll;
    padding-bottom: 6.25rem;
  }
  .nav .nav__menu ul > .menu-item:hover .sub-menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav .nav__menu ul > .menu-item:hover .sub-menu::-webkit-scrollbar-thumb {
    background-color: #CADDF2;
  }
  .nav .nav__menu ul > .menu-item > .sub-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: max-content;
    position: absolute;
    gap: 3.125rem;
    left: 0;
    right: 0;
    top: 6.25rem;
    background-color: #052967;
    padding: 3.125rem;
    padding-top: 1.875rem;
    pointer-events: none;
    opacity: 0;
  }
  .nav .nav__menu ul > .menu-item > .sub-menu li {
    display: block;
  }
  .nav .nav__menu ul > .menu-item > .sub-menu li .sub-menu {
    display: block;
    padding: 0rem;
    width: max-content;
    background-color: transparent;
    position: unset;
  }
  .nav .nav__menu ul .menu-item-has-children > a::before,
  .nav .nav__menu ul .menu-item-has-children > a::after {
    right: -1rem;
    width: 0.625rem;
  }
  .nav .nav__menu .nav__menu-translate {
    padding: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav .nav__menu .nav__menu-translate .dropdown-toggle {
    justify-content: center;
    padding: 0;
    width: auto;
  }
  .nav .nav__menu .nav__menu-translate .dropdown-menu-translate {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #052967;
  }
  .submenu-opened {
    padding-bottom: 0rem !important;
  }
}
.show-nav__menu {
  opacity: 1 !important;
  top: 6.25rem !important;
  pointer-events: initial !important;
  padding-bottom: 6.25rem !important;
}

.show-submenu {
  padding-left: 1.25rem;
  padding-bottom: 0.625rem;
  transition: all 0.4s ease;
}

.main-screen {
  width: 100%;
  height: 100vh;
  max-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.main-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 41, 103, 0.5);
  z-index: 2;
  pointer-events: none;
}
.main-screen .main-screen-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #CADDF2;
  padding: 0rem 1.25rem;
  max-width: 77.5rem;
}
.main-screen .main-screen-content .main-screen-content__left {
  margin-bottom: 1.875rem;
}
.main-screen .main-screen-content .main-screen-content__left .button-default-wrapper {
  display: none;
}
.main-screen .main-screen-content .main-screen-content__left h2 {
  font-size: clamp(2rem, 2.857vw + 1.286rem, 3.5rem);
  line-height: clamp(2.8rem, 4vw + 1.8rem, 4.9rem);
  opacity: 0.6;
  text-transform: uppercase;
}
.main-screen .main-screen-content .main-screen-content__right p {
  font-size: clamp(1rem, 0.952vw + 0.762rem, 1.5rem);
  font-weight: 400;
  line-height: clamp(1.4rem, 1.333vw + 1.067rem, 2.1rem);
  margin-bottom: 1.875rem;
}
.main-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-products {
  padding-top: 3.125rem;
}
.front-products .front-products-desc {
  max-width: 56.25rem;
  letter-spacing: 1px;
}
.front-products .products-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-top: 3.125rem;
  gap: 3.125rem;
}
.front-products .products-container .front-product .product-image {
  width: 100%;
  height: 100%;
  max-height: 360px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.front-products .products-container .front-product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.front-products .products-container .front-product .product-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #F4F8FC;
}
.front-products .products-container .front-product .product-content .product-description {
  padding: 1.875rem 1.25rem;
}
.front-products .products-container .front-product .product-content .product-description h3 {
  font-size: clamp(1.25rem, 0.476vw + 1.131rem, 1.5rem);
  color: #052967;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.625rem;
}
.front-products .products-container .front-product .product-content .product-description p {
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
}
.front-products .products-container .front-product .product-content .product-button {
  width: 100%;
  height: 3.125rem;
  background-color: #052967;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}
.front-products .products-container .front-product .product-content .product-button svg {
  fill: #ffffff;
  width: auto;
  height: 2.813rem;
  transition: all 0.3s ease-in-out;
}
.front-products .products-container .front-product .product-content .product-button:hover {
  background-color: #CADDF2;
}
.front-products .products-container .front-product .product-content .product-button:hover svg {
  fill: #87A6C1;
}
.front-products .products-container .front-product:hover .product-image img {
  transform: scale(1.05);
}

.front-about-us {
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}
.front-about-us .front-about-us-img {
  width: 100%;
  height: auto;
}
.front-about-us .front-about-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-about-us .front-about-us-content {
  background-color: #052967;
  padding: 1.875rem 1.25rem;
}
.front-about-us .front-about-us-content h2 {
  font-size: clamp(2rem, 1.905vw + 1.524rem, 3rem);
  color: #ffffff;
  padding-bottom: 1.25rem;
}
.front-about-us .front-about-us-content p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 1px;
  padding-bottom: 1.25rem;
}
.front-about-us .front-about-us-content p strong {
  color: #ffffff;
}
.front-about-us .front-about-us-content .button-default-wrapper {
  justify-content: flex-start;
}

.seo-section .seo-text {
  font-size: 1rem;
  color: #000;
  letter-spacing: 1px;
  line-height: 1.4;
}
.seo-section .seo-text p {
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.4;
}

@media screen and (min-width: 48rem) {
  .front-products .products-container .front-product a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .front-products .products-container .front-product a .product-image {
    flex: 1;
  }
  .front-products .products-container .front-product a .product-content {
    flex: 1;
  }
  .front-about-us {
    flex-direction: row;
    align-items: stretch;
  }
  .front-about-us .front-about-us-img {
    width: 100%;
    height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
  .front-about-us .front-about-us-content {
    flex: 1;
  }
}
@media screen and (min-width: 69.875rem) {
  .main-screen .main-screen-content {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
  }
  .main-screen .main-screen-content .main-screen-content__left {
    flex: 1;
    margin-bottom: 0rem;
  }
  .main-screen .main-screen-content .main-screen-content__left h2 {
    text-align: right;
    margin-bottom: 3.125rem;
  }
  .main-screen .main-screen-content .main-screen-content__left .button-default-wrapper {
    display: flex;
    justify-content: flex-end;
  }
  .main-screen .main-screen-content .main-screen-separator {
    width: 0.313rem;
    height: 15.625rem;
    background-color: #CADDF2;
  }
  .main-screen .main-screen-content .main-screen-content__right {
    flex: 1;
    margin-top: auto;
  }
  .main-screen .main-screen-content .main-screen-content__right p {
    text-align: left;
    margin-bottom: 0;
    font-weight: 500;
  }
  .main-screen .main-screen-content .main-screen-content__right .button-default-wrapper {
    display: none;
  }
  .front-products {
    padding-top: 6.25rem;
  }
  .front-products .products-container {
    margin-top: 6.25rem;
    gap: 0rem;
  }
  .front-products .products-container .front-product a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .front-products .products-container .front-product a .product-image {
    width: 100%;
    max-width: 25rem;
    height: auto;
    max-height: unset;
  }
  .front-products .products-container .front-product a .product-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .front-products .products-container .front-product a .product-content .product-description {
    flex: 1;
    padding: 5rem 2.5rem;
  }
  .front-products .products-container .front-product a .product-content .product-button {
    max-width: 12.5rem;
    height: auto;
    flex: 1;
  }
  .front-products .products-container .front-product a .product-content .product-button svg {
    width: 5.625rem;
    height: auto;
  }
  .front-products .products-container .front-product:nth-child(2n) a {
    flex-direction: row-reverse;
  }
  .front-products .products-container .front-product:nth-child(2n) a .product-content {
    flex-direction: row-reverse;
  }
  .front-products .products-container .front-product:nth-child(2n) a .product-content .product-button svg {
    transform: rotate(180deg);
  }
  .front-about-us {
    padding-top: 11.25rem;
  }
  .front-about-us .front-about-us-content h2 {
    padding-bottom: 1.875rem;
  }
  .front-about-us .front-about-us-content {
    padding: 2.5rem 3.125rem;
  }
  .seo-section {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .seo-section .seo-text {
    font-size: 1rem;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.4;
  }
}
.top-footer-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.063rem;
  background-color: #ffffff;
}
.top-footer-bar .top-footer-bar-wrapper {
  width: 100%;
  max-width: 77.5rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.top-footer-bar .top-footer-bar-wrapper > nav {
  display: none;
}
.top-footer-bar .top-footer-bar-wrapper .breadcrumbs {
  font-size: 0.75rem;
  color: #000;
  font-style: italic;
  font-weight: 300;
  text-align: center;
}
.top-footer-bar .top-footer-bar-wrapper .search {
  width: 100%;
}
.top-footer-bar .top-footer-bar-wrapper .search #searchform {
  padding: 0.625rem 1rem;
  background-color: #F4F8FC;
  border-bottom: 2px solid rgba(5, 41, 103, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-footer-bar .top-footer-bar-wrapper .search #searchform input[type=text] {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
}
.top-footer-bar .top-footer-bar-wrapper .search #searchform input[type=text]::placeholder {
  font-size: 0.625rem;
}
.top-footer-bar .top-footer-bar-wrapper .search #searchform button {
  background-color: transparent;
  border: 0rem;
  outline: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  background-color: #052967;
  padding: 3.125rem 1.25rem;
}
footer .footer-top .footer-left .footer-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ffffff;
  padding-bottom: 1.875rem;
}
footer .footer-top .footer-left .footer-content {
  padding-bottom: 1.875rem;
  color: #ffffff;
  font-weight: 300;
}
footer .footer-top .footer-left .footer-content p {
  line-height: 1.4;
  font-size: 1rem;
}
footer .footer-top .footer-left .footer-content strong {
  line-height: 1.4;
  font-size: 1rem;
}
footer .footer-top .footer-middle ul {
  padding-bottom: 3.125rem;
}
footer .footer-top .footer-middle ul li {
  padding: 0.625rem 0;
}
footer .footer-top .footer-middle ul li a {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}
footer .footer-top .footer-middle ul li a:hover {
  color: #87A6C1;
}
footer .footer-top .footer-middle ul li:last-child {
  padding-bottom: 0;
}
footer .footer-top .footer-middle ul li:first-child {
  padding-top: 0;
}
footer .footer-top .footer-right h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 0.625rem;
  line-height: 1.4;
}
footer .footer-top .footer-right p {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  max-width: 21rem;
}
footer .footer-top .footer-right .newsletter-field {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-top: 0.938rem;
  max-width: 23.438rem;
}
footer .footer-top .footer-right .newsletter-field input[type=email], footer .footer-top .footer-right .newsletter-field .newsletter {
  flex: 1;
  width: 100%;
  font-size: 1rem;
  color: #000;
  padding: 0.75rem 1.25rem;
  background-color: #ffffff;
}
footer .footer-top .footer-right .newsletter-field .newsletter-btn {
  width: auto;
  min-width: 7.5rem;
  height: auto;
  padding: 0.75rem 1.25rem;
  background-color: #CADDF2;
  transition: background-color 0.3s ease-in-out;
  border: none;
  outline: none;
  color: #052967;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
  font-size: 1rem;
  white-space: nowrap;
}
footer .footer-top .footer-right .wpcf7-response-output {
  width: 100%;
  max-width: 18.75rem;
  color: #052967;
}
footer .footer-bottom {
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-bottom a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
}

@media screen and (min-width: 69.875rem) {
  .top-footer-bar .top-footer-bar-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .top-footer-bar .top-footer-bar-wrapper .breadcrumbs {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .top-footer-bar .top-footer-bar-wrapper .search {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .top-footer-bar .top-footer-bar-wrapper .search #searchform {
    width: 100%;
    max-width: 21.875rem;
  }
  footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  footer .footer-top {
    width: 100%;
    max-width: 77.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
  footer .footer-top .footer-left .footer-logo {
    font-size: 1.5rem;
  }
  footer .footer-middle ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.125rem;
  }
  footer .footer-middle ul li {
    padding: 0.625rem 0;
  }
  footer .footer-middle ul li:first-child, footer .footer-middle ul li:last-child {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  footer .footer-bottom {
    width: 100%;
    max-width: 77.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
  }
}
.product-archive .product-archive-header {
  width: 100%;
  height: 35.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.product-archive .product-archive-header .product-archive-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.product-archive .product-archive-header .product-archive-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 41, 103, 0.5);
  z-index: 2;
  pointer-events: none;
}
.product-archive .product-archive-header .product-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  z-index: 1;
}
.product-archive .product-archive-header h1 {
  position: absolute;
  font-size: clamp(2rem, 2.857vw + 1.286rem, 3.5rem);
  font-weight: 500;
  line-height: clamp(2.8rem, 4vw + 1.8rem, 4.9rem);
  opacity: 0.6;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 2;
  padding: 0rem 1.25rem;
  max-width: 77.5rem;
  text-align: center;
}
.product-archive .product-archive-title {
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  padding-top: 3.125rem;
}
.product-archive .product-archive-title .section-title {
  padding-bottom: 0rem;
}
.product-archive .product-archive-title .section-title h2 {
  text-transform: none;
}
.product-archive .product-category-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.25rem;
  margin: 0 auto;
  padding: 1.25rem;
  padding-top: 3.125rem;
  max-width: 77.5rem;
}
.product-archive .product-category-list .product-category-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.product-archive .product-category-list .product-category-item a .product-category-image {
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.product-archive .product-category-list .product-category-item a .product-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.product-archive .product-category-list .product-category-item a .product-category-image .product-category-image-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6.25rem;
  height: 3.125rem;
  background-color: #052967;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.product-archive .product-category-list .product-category-item a .product-category-image .product-category-image-btn svg {
  fill: #ffffff;
}
.product-archive .product-category-list .product-category-item a .product-category-description {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  padding: 1.25rem;
  background-color: #ffffff;
  line-height: 1.4;
  letter-spacing: 5%;
  font-size: 1rem;
  color: #052967;
}
.product-archive .product-category-list .product-category-item a .product-category-description h2 {
  width: 100%;
  min-height: 5rem;
  font-size: 1.25rem;
  padding-bottom: 0.625rem;
  color: #052967;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.product-archive .product-category-list .product-category-item a .product-category-description .product-category-description-text {
  color: #052967;
  text-align: left;
  margin: auto 0;
}
.product-archive .product-category-list .product-category-item a:hover {
  background-color: #F4F8FC;
}
.product-archive .product-category-list .product-category-item a:hover .product-category-image img {
  transform: scale(1.05);
}
.product-archive .product-category-list .product-category-item a:hover .product-category-image .product-category-image-btn {
  background-color: #678197;
}
.product-archive .product-category-list .product-category-item a:hover .product-category-description {
  background-color: transparent;
}
.product-archive .product-category-list .product-category-item a:focus, .product-archive .product-category-list .product-category-item a:active {
  color: #052967;
}

@media screen and (min-width: 48rem) {
  .product-archive .product-category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .product-archive .product-category-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .product-archive .product-archive-title {
    padding-top: 6.25rem;
  }
}
.single-product-lb {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.single-product-lb .single-product-header {
  width: 100%;
  overflow: hidden;
}
.single-product-lb .single-product-header .single-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18.75rem;
  position: relative;
}
.single-product-lb .single-product-header .single-product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 41, 103, 0.5);
  z-index: 2;
  pointer-events: none;
}
.single-product-lb .single-product-header .single-product-image img, .single-product-lb .single-product-header .single-product-image figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  z-index: 1;
}
.single-product-lb .single-product-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.125rem;
}
.single-product-lb .single-product-title .section-title {
  max-width: 77.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.single-product-lb .single-product-container {
  width: 100%;
  max-width: 77.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.single-product-lb .single-product-container .show-on-mobile-false {
  display: none;
}
.single-product-lb .single-product-container .show-on-mobile-true {
  display: block;
}
.single-product-lb .single-product-container .no-padding-section {
  padding-top: 0rem !important;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery {
  width: 100%;
  height: auto;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container {
  width: 100%;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .main-media-container {
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .main-media-container a {
  width: 100%;
  height: 100%;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .main-media-container .main-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .slider-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-direction: row;
  position: relative;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .slider-wrapper .slider-button {
  cursor: pointer;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .slider-wrapper .slider-prev {
  position: absolute;
  right: -30px;
  transform: rotate(180deg);
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .slider-wrapper .slider-next {
  position: absolute;
  left: -30px;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .thumbnail-container {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 20px;
  width: 100%;
  overflow-x: auto;
  padding: 10px;
  scrollbar-width: none;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .thumbnail-container::-webkit-scrollbar {
  display: none;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .thumbnail-container .thumbnail {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .thumbnail-container .thumbnail img,
.single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .thumbnail-container .thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product-lb .single-product-container .single-product-tiles {
  padding-top: 5rem;
}
.single-product-lb .single-product-container .single-product-tiles .single-product-tiles-desc {
  padding-top: 0rem;
  margin-top: 0rem;
  padding-left: 1.25rem;
}
.single-product-lb .single-product-container .single-product-tiles .single-product-tiles-desc p, .single-product-lb .single-product-container .single-product-tiles .single-product-tiles-desc strong {
  font-size: 1rem;
  letter-spacing: 5%;
}
.single-product-lb .single-product-container .single-product-tiles .tile-title {
  color: #000;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 5%;
  padding-left: 1.25rem;
  padding-bottom: 0.625rem;
  margin-top: 1.875rem;
}
.single-product-lb .single-product-container .single-product-tiles .single-product-tile {
  padding-left: 1.25rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.625rem;
  max-width: 28.125rem;
}
.single-product-lb .single-product-container .single-product-tiles .single-product-tile .single-tile {
  padding: 0.438rem 0.625rem;
  background-color: #E0DFDA;
  color: #052967;
}
.single-product-lb .single-product-container .single-product-uses {
  list-style: none;
  padding-top: 5rem;
}
.single-product-lb .single-product-container .single-product-uses .single-product-uses-desc {
  padding-top: 1.25rem;
  padding-left: 2.5rem;
  padding-bottom: 1.875rem;
}
.single-product-lb .single-product-container .single-product-uses .single-product-uses-desc p, .single-product-lb .single-product-container .single-product-uses .single-product-uses-desc strong {
  font-size: 1rem;
  letter-spacing: 5%;
  font-size: 1rem;
}
.single-product-lb .single-product-container .single-product-uses .single-product-use {
  padding-left: 3.75rem;
  padding-bottom: 1.25rem;
}
.single-product-lb .single-product-container .single-product-uses .single-product-use h3 {
  font-size: 1rem;
  color: #052967;
  font-weight: 700;
  position: relative;
}
.single-product-lb .single-product-container .single-product-uses .single-product-use h3::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 0.5rem;
  left: -1.25rem;
  width: 0.625rem;
  height: 0.313rem;
  background-color: #E0DFDA;
}
.single-product-lb .single-product-container .single-product-uses .single-product-use p {
  font-size: 1rem;
  letter-spacing: 5%;
}
.single-product-lb .single-product-container .single-product-features {
  list-style: none;
  padding-bottom: 5rem;
}
.single-product-lb .single-product-container .single-product-features .single-product-features-desc {
  padding-top: 1.25rem;
  padding-left: 2.5rem;
  padding-bottom: 1.875rem;
}
.single-product-lb .single-product-container .single-product-features .single-product-features-desc p, .single-product-lb .single-product-container .single-product-features .single-product-features-desc strong {
  font-size: 1rem;
  letter-spacing: 5%;
  font-size: 1rem;
}
.single-product-lb .single-product-container .single-product-features .single-product-feature {
  padding-left: 3.75rem;
  padding-bottom: 1.25rem;
}
.single-product-lb .single-product-container .single-product-features .single-product-feature h3 {
  font-size: 1rem;
  color: #052967;
  font-weight: 700;
  position: relative;
}
.single-product-lb .single-product-container .single-product-features .single-product-feature h3::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 0.5rem;
  left: -1.25rem;
  width: 0.625rem;
  height: 0.313rem;
  background-color: #E0DFDA;
}
.single-product-lb .single-product-container .single-product-features .single-product-feature p {
  font-size: 1rem;
  letter-spacing: 5%;
}
.single-product-lb .single-product-container .single-product-description {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.single-product-lb .single-product-container .single-product-description .description-text p, .single-product-lb .single-product-container .single-product-description .description-text strong {
  font-size: 1rem;
  letter-spacing: 5%;
}
.single-product-lb .seo-single-product {
  width: 100%;
  padding: 5rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-product-lb .seo-single-product .seo-single-product-wrapper {
  width: 100%;
  max-width: 77.5rem;
}
.single-product-lb .seo-single-product .seo-single-product-wrapper p, .single-product-lb .seo-single-product .seo-single-product-wrapper strong {
  font-size: 1rem;
  letter-spacing: 5%;
}
.single-product-lb .recommended-products {
  padding: 1.25rem;
  padding-top: 3.125rem;
}
.single-product-lb .recommended-products .recommended-product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #052967;
  text-align: left;
  position: relative;
  z-index: 2;
  text-transform: normal;
}
.single-product-lb .recommended-products .recommended-product-title::after {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: -0.7rem;
  width: 6.25rem;
  height: 2rem;
  background-color: #CADDF2;
  margin-top: 0.625rem;
  z-index: -1;
}
.single-product-lb .recommended-products .recommended-product-category-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.25rem;
  margin: 0 auto;
  padding-top: 3.125rem;
  max-width: 77.5rem;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a .recommended-product-category-image {
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a .recommended-product-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a .recommended-product-category-image .recommended-product-category-image-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6.25rem;
  height: 3.125rem;
  background-color: #052967;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a .recommended-product-category-image .recommended-product-category-image-btn svg {
  fill: #ffffff;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a .recommended-product-category-description {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  padding: 1.25rem;
  background-color: #ffffff;
  line-height: 1.4;
  letter-spacing: 5%;
  font-size: 1rem;
  color: #052967;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a .recommended-product-category-description h2 {
  width: 100%;
  min-height: 5rem;
  font-size: 1.25rem;
  padding-bottom: 0.625rem;
  color: #052967;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a .recommended-product-category-description .recommended-product-category-description-text {
  color: #052967;
  text-align: left;
  margin: auto 0;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a:hover {
  background-color: #F4F8FC;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a:hover .recommended-product-category-image img {
  transform: scale(1.05);
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a:hover .recommended-product-category-image .recommended-product-category-image-btn {
  background-color: #678197;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a:hover .recommended-product-category-description {
  background-color: transparent;
}
.single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a:focus, .single-product-lb .recommended-products .recommended-product-category-list .recommended-product-category-item a:active {
  color: #052967;
}
.single-product-lb .highlights {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.25rem;
  padding-top: 5rem;
}
.single-product-lb .highlights .highlights-wrapper {
  width: 100%;
  height: auto;
  max-width: 77.5rem;
}
.single-product-lb .highlights .highlights-wrapper .section-title .page-title {
  text-transform: none;
}
.single-product-lb .highlights .highlights-wrapper .highlights-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 2.5rem;
  gap: 2.5rem;
}
.single-product-lb .highlights .highlights-wrapper .highlights-content ul {
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
}
.single-product-lb .highlights .highlights-wrapper .highlights-content ul li {
  font-size: 1rem;
  color: #052967;
  font-weight: 700;
  position: relative;
  padding-bottom: 1.25rem;
}
.single-product-lb .highlights .highlights-wrapper .highlights-content ul li:last-child {
  padding-bottom: 0rem;
}
.single-product-lb .highlights .highlights-wrapper .highlights-content ul li::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 0.5rem;
  left: -1.25rem;
  width: 0.625rem;
  height: 0.313rem;
  background-color: #E0DFDA;
}
.single-product-lb .highlights .highlights-wrapper .highlights-content .highlights-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 48rem) {
  .single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .main-media {
    height: 450px;
  }
  .single-product-lb .recommended-products {
    padding-top: 6.25rem;
  }
  .single-product-lb .recommended-products .recommended-product-category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .single-product-lb .highlights .highlights-wrapper .highlights-content .highlights-button {
    width: auto;
  }
}
@media screen and (min-width: 64rem) {
  .single-product-lb .single-product-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .single-product-lb .single-product-container .show-on-mobile-false {
    display: block;
  }
  .single-product-lb .single-product-container .show-on-mobile-true {
    display: none;
  }
  .single-product-lb .single-product-container .no-padding-section {
    padding-top: unset;
  }
  .single-product-lb .single-product-container .single-product-left {
    width: 100%;
    max-width: 50%;
  }
  .single-product-lb .single-product-container .single-product-left .single-products-gallery .gallery-container .main-media-container {
    height: 500px;
  }
  .single-product-lb .single-product-container .single-product-right {
    width: 100%;
  }
  .single-product-lb .single-product-container .single-product-right .single-product-description {
    padding-top: 0rem;
  }
  .single-product-lb .recommended-products .recommended-product-category-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.contact-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  width: 100%;
  height: auto;
  margin-top: 3.125rem;
}
.contact-team .section-title h2 {
  text-transform: unset;
}
.contact-team .contact-team-tile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: #F4F8FC;
}
.contact-team .contact-team-tile .contact-team-tile-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-team .contact-team-tile .contact-team-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.contact-team .contact-team-tile .contact-team-tile-text {
  width: 100%;
  padding: 1.875rem 1.25rem;
}
.contact-team .contact-team-tile .contact-team-tile-text #name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #052967;
  padding-bottom: 0.313rem;
}
.contact-team .contact-team-tile .contact-team-tile-text #role {
  font-size: 1rem;
  color: #052967;
  font-style: italic;
  padding-bottom: 1.25rem;
}
.contact-team .contact-team-tile .contact-team-tile-text #phone {
  font-size: 1rem;
  color: #052967;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 1.25rem;
}
.contact-team .contact-team-tile .contact-team-tile-text #mail {
  font-size: 1rem;
  color: #052967;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
}

.contact-page-two-col h2, .contact-page-two-col h3 {
  color: #052967;
  padding-bottom: 1.25rem;
  font-size: 1.5rem;
}
.contact-page-two-col p, .contact-page-two-col strong {
  font-size: 1rem;
  color: #052967;
  line-height: 1.4;
  letter-spacing: 5%;
}

.contact-bottom {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 3.75rem;
}
.contact-bottom .contact-bottom-col {
  width: 100%;
  height: 100%;
  max-height: 31.25rem;
}
.contact-bottom .contact-bottom-col .contact-google-maps {
  height: 100%;
}
.contact-bottom .contact-bottom-col .contact-google-maps iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-bottom .contact-bottom-col .contact-google-maps-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-bottom .contact-bottom-col .contact-google-maps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 34.375rem) {
  .contact-team {
    grid-template-columns: 1fr;
  }
  .contact-team .section-title {
    grid-column: 1;
  }
  .contact-team .contact-team-tile {
    flex-direction: row;
  }
  .contact-team .contact-team-tile .contact-team-tile-image {
    width: 100%;
    max-width: 12.5rem;
    height: auto;
  }
  .contact-team .contact-team-tile .contact-team-tile-text {
    flex: 1;
  }
}
@media screen and (min-width: 48rem) {
  .contact-team {
    grid-template-columns: 1fr 1fr;
    margin-top: 6.125rem;
  }
  .contact-team .section-title {
    grid-column: auto;
  }
  .contact-team .contact-team-tile {
    flex-direction: row;
  }
  .contact-team .contact-team-tile .contact-team-tile-image {
    width: 100%;
    max-width: 12.5rem;
    height: 100%;
    overflow: hidden;
  }
  .contact-team .contact-team-tile .contact-team-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-team .contact-team-tile .contact-team-tile-text {
    flex: 1;
  }
  .contact-page-two-col {
    gap: 0rem;
  }
  .contact-bottom {
    margin-top: 6.25rem;
    grid-template-columns: 1fr 1fr;
  }
}
.meet-our-company {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #CADDF2;
}
.meet-our-company .meet-our-company-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1.25rem;
  width: 100%;
  max-width: 77.5rem;
  padding: 2.5rem 1.25rem;
}
.meet-our-company .meet-our-company-wrapper h2 {
  font-size: clamp(2rem, 2.857vw + 1.286rem, 3.5rem);
  color: #052967;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.meet-our-company .meet-our-company-wrapper .meet-our-company-desc {
  max-width: 31.25rem;
}
.meet-our-company .meet-our-company-wrapper .meet-our-company-desc p {
  font-size: 1rem;
  color: #000;
  text-align: left;
  line-height: 1.4;
}
.meet-our-company .meet-our-company-wrapper .meet-our-company-desc strong {
  font-size: 1rem;
  color: #052967;
  text-align: left;
  line-height: 1.4;
}

.about-values {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-values .about-values-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1.25rem;
  width: 100%;
  max-width: 77.5rem;
  padding: 3.125rem 1.25rem;
}
.about-values .about-values-wrapper .about-values-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.625rem;
  flex-direction: column;
}
.about-values .about-values-wrapper .about-values-title h2 {
  font-size: clamp(2rem, 2.857vw + 1.286rem, 3.5rem);
  color: #052967;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.about-values .about-values-wrapper .about-values-title p {
  font-weight: 700;
}
.about-values .about-values-wrapper .about-values-title-second {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-bottom: 1.875rem;
  padding-top: 3.125rem;
}
.about-values .about-values-wrapper .about-values-title-second:first-child {
  padding-top: 0rem;
}
.about-values .about-values-wrapper .about-values-title-second h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #052967;
  text-align: left;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.about-values .about-values-wrapper .about-values-title-second h2::after {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: -0.55rem;
  width: 6.25rem;
  height: clamp(2rem, 2.857vw + 1.286rem, 3.5rem);
  background-color: #CADDF2;
  margin-top: 0.625rem;
  z-index: -1;
}
.about-values .about-values-wrapper .about-values-title-second .ceo-tile {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 1.25rem;
}
.about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-content #role {
  font-size: 1.25rem;
  color: #052967;
  font-weight: 700;
}
.about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-content #name {
  font-size: 1rem;
  font-weight: 400;
  padding-bottom: 1.25rem;
}
.about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-content #desc {
  font-size: 0.875rem;
  color: #052967;
  font-weight: 400;
  font-style: italic;
  text-align: left;
  max-width: 16.875rem;
}
.about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-image {
  width: 100%;
  height: auto;
}
.about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.about-values .about-values-wrapper .about-values-col ul li {
  padding-bottom: 1.25rem;
}
.about-values .about-values-wrapper .about-values-col ul li h3 {
  font-size: 1rem;
  color: #052967;
  font-weight: 700;
  position: relative;
}
.about-values .about-values-wrapper .about-values-col ul li h3::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 0.5rem;
  left: -1.25rem;
  width: 0.625rem;
  height: 0.313rem;
  background-color: #E0DFDA;
}
.about-values .about-values-wrapper .about-values-col ul li p {
  font-size: 1rem;
  letter-spacing: 5%;
}
.about-values .about-values-wrapper .about-values-col ul li {
  font-size: 1rem;
  position: relative;
}
.about-values .about-values-wrapper .about-values-col ul li::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 0.5rem;
  left: -1.25rem;
  width: 0.625rem;
  height: 0.313rem;
  background-color: #E0DFDA;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: auto;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid .team-tile {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid .team-tile .team-tile-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: default;
  border: 2px solid #CADDF2;
  background: linear-gradient(180deg, rgba(202, 221, 242, 0) 0%, #CADDF2 79.5%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding: 0.625rem;
  opacity: 0;
  transform: translateY(-1.875rem);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  user-select: none;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid .team-tile .team-tile-content #team_role {
  font-size: 1rem;
  color: #052967;
  font-weight: 700;
  padding-bottom: 0.625rem;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid .team-tile .team-tile-content #team_name {
  font-size: 0.875rem;
  color: #000;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid .team-tile .team-tile-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid .team-tile .team-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-values .about-values-wrapper .about-values-col .team-tiles-grid .team-tile:hover .team-tile-content {
  opacity: 1;
  transform: translateY(0rem);
}
.about-values .about-values-wrapper-second {
  padding-top: 0rem !important;
}

.about-video {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  padding-bottom: 5rem;
}
.about-video .embed-container {
  width: 100%;
  max-width: 56.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-video .embed-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.about-cta {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-cta .about-cta-wrapper {
  width: 100%;
  max-width: 77.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.25rem;
}
.about-cta .about-cta-wrapper .cta-product {
  width: 100%;
  padding: 4.375rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}
.about-cta .about-cta-wrapper .cta-product h2 {
  font-size: clamp(1.5rem, 1.429vw + 1.143rem, 2.25rem);
  font-weight: 500;
  letter-spacing: 5%;
  text-align: center;
}
.about-cta .about-cta-wrapper .cta-product .cta-about-button {
  width: fit-content;
  padding: 0rem 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.about-cta .about-cta-wrapper .cta-product:nth-child(1) {
  background-color: #052967;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(1) h2 {
  color: #CADDF2;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(1) .cta-about-button {
  background-color: #CADDF2;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(1) .cta-about-button svg {
  fill: #052967;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(1):hover .cta-about-button {
  background-color: #678197;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(1):hover .cta-about-button svg {
  fill: #CADDF2;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(2) {
  background-color: #CADDF2;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(2) h2 {
  color: #052967;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(2) .cta-about-button {
  background-color: #052967;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(2) .cta-about-button svg {
  fill: #CADDF2;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(2):hover .cta-about-button {
  background-color: #678197;
}
.about-cta .about-cta-wrapper .cta-product:nth-child(2):hover .cta-about-button svg {
  fill: #052967;
}

@media screen and (min-width: 48rem) {
  .meet-our-company .meet-our-company-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 6.25rem 1.25rem;
  }
  .meet-our-company .meet-our-company-wrapper h2 {
    text-align: right;
  }
  .about-values .about-values-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 6.25rem 1.25rem;
  }
  .about-values .about-values-wrapper .about-values-title h2 {
    text-align: right;
    width: 100%;
  }
  .about-values .about-values-wrapper .about-values-title p {
    font-weight: 700;
    width: 100%;
    text-align: right;
  }
  .about-values .about-values-wrapper .about-values-title-second {
    padding-top: 0rem;
  }
  .about-values .about-values-wrapper .about-values-title-second .ceo-tile {
    flex-direction: row;
    overflow: hidden;
  }
  .about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-content {
    align-items: flex-end;
  }
  .about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-content #desc {
    text-align: right;
  }
  .about-values .about-values-wrapper .about-values-title-second .ceo-tile .ceo-tile-image {
    width: 15.625rem;
  }
  .about-values .about-values-wrapper .about-values-col .team-tiles-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .about-cta .about-cta-wrapper {
    flex-direction: row;
  }
  .about-cta .about-cta-wrapper .cta-product {
    padding: 6.25rem 2.5rem;
  }
  .about-cta .about-cta-wrapper .cta-product:nth-child(1) {
    align-items: flex-end;
  }
  .about-cta .about-cta-wrapper .cta-product:nth-child(1) h2 {
    text-align: right;
  }
  .about-cta .about-cta-wrapper .cta-product:nth-child(2) {
    align-items: flex-start;
  }
  .about-cta .about-cta-wrapper .cta-product:nth-child(2) h2 {
    text-align: left;
  }
}
.uses-container {
  padding: 5rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.uses-container .front-products {
  padding-top: 0rem;
  max-width: 77.5rem;
}
.uses-container .front-products .product-container {
  margin-top: 0rem !important;
}

.button-default-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.button-default-wrapper .button-default {
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background-color: #CADDF2;
  transition: background-color 0.3s ease-in-out;
}
.button-default-wrapper .button-default span {
  color: #052967;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}
.button-default-wrapper .button-default:hover, .button-default-wrapper .button-default:active {
  background-color: #678197;
}
.button-default-wrapper .button-default:hover span, .button-default-wrapper .button-default:active span {
  color: #ffffff;
}
.button-default-wrapper .button-default:focus {
  outline: none;
  background-color: #678197;
}
.button-default-wrapper .button-default:focus span {
  color: #ffffff;
}

.section-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-bottom: 1.875rem;
}
.section-title h2 {
  font-size: clamp(2rem, 1.905vw + 1.524rem, 3rem);
  font-weight: 700;
  color: #052967;
  text-align: left;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: -0.55rem;
  width: 6.25rem;
  height: clamp(2rem, 2.857vw + 1.286rem, 3.5rem);
  background-color: #CADDF2;
  margin-top: 0.625rem;
  z-index: -1;
}
.section-title .icon-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #052967;
  text-align: left;
  position: relative;
  z-index: 2;
  text-transform: normal;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0.625rem;
  gap: 1rem;
}
.section-title .icon-title img {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
}
.section-title .icon-title::after {
  content: "";
  position: absolute;
  left: 0rem;
  top: -0.15rem;
  width: 6.25rem;
  height: 2.188rem;
  background-color: #CADDF2;
  z-index: -1;
}

.title-subtitle {
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.title-subtitle .subtitle {
  font-size: 0.75rem;
  font-style: italic;
  color: #052967;
  padding-left: 3.25rem;
  padding-top: 0.313rem;
}

.random-backgrounds {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.page-header {
  width: 100%;
  height: 35.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.page-header .page-header-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.page-header .page-header-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 41, 103, 0.5);
  z-index: 2;
  pointer-events: none;
}
.page-header .page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  z-index: 1;
}
.page-header .page-header-with-desc {
  position: absolute;
  z-index: 2;
  opacity: 0.6;
  padding: 0rem 1.25rem;
  max-width: 77.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
}
.page-header .page-header-with-desc h1 {
  font-size: clamp(2rem, 2.857vw + 1.286rem, 3.5rem);
  font-weight: 500;
  line-height: clamp(2.8rem, 4vw + 1.8rem, 4.9rem);
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}
.page-header .page-header-with-desc .page-header-desc {
  width: 100%;
  max-width: 39.375rem;
}
.page-header .page-header-with-desc .page-header-desc p, .page-header .page-header-with-desc .page-header-desc strong {
  font-size: clamp(1rem, 0.952vw + 0.762rem, 1.5rem);
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.random-bg-shape {
  position: absolute;
  width: 150px;
  height: 100px;
  background-color: rgba(202, 221, 242, 0.2);
}

.call-to-action {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 1.25rem;
}
.call-to-action .call-to-action-wrapper {
  background-color: #CADDF2;
  padding: 3.125rem 1.25rem;
  width: 100%;
  max-width: 77.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
}
.call-to-action .call-to-action-wrapper h2 {
  font-size: 2rem;
  color: #052967;
  text-align: center;
}
.call-to-action .call-to-action-wrapper .button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.875rem;
  width: 100%;
  height: auto;
}
.call-to-action .call-to-action-wrapper .button-wrapper .cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background-color: #052967;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  gap: 0.625rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.call-to-action .call-to-action-wrapper .button-wrapper .cta-button:hover, .call-to-action .call-to-action-wrapper .button-wrapper .cta-button:active, .call-to-action .call-to-action-wrapper .button-wrapper .cta-button:focus {
  outline: none;
  background-color: #678197;
  color: #ffffff;
}

.lb-contact-form {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.lb-contact-form .lb-contact-form-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 1.25rem;
}
.lb-contact-form .lb-contact-form-title h3 {
  width: 100%;
  font-size: clamp(1.5rem, 1.364vw + 1.159rem, 2.25rem);
  font-weight: 700;
  color: #052967;
  text-align: left;
  letter-spacing: 5%;
  padding-bottom: 0.625rem;
}
.lb-contact-form .lb-input {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 1.25rem;
  width: 100%;
  height: auto;
}
.lb-contact-form .lb-input:last-child {
  padding-bottom: 0;
}
.lb-contact-form .lb-input label {
  font-size: 1rem;
  font-weight: 700;
  color: #052967;
  text-align: left;
  letter-spacing: 5%;
  padding-bottom: 0.625rem;
}
.lb-contact-form .lb-input input {
  width: 100%;
  height: 2.813rem;
  border: none;
  background-color: #F4F8FC;
  border-bottom: 2px solid rgba(5, 41, 103, 0.2);
  font-size: 1rem;
  color: #000;
  padding: 0.625rem;
}
.lb-contact-form .lb-input textarea {
  width: 100%;
  height: 5.625rem;
  border: none;
  background-color: #F4F8FC;
  border-bottom: 2px solid rgba(5, 41, 103, 0.2);
  resize: none;
  font-size: 1rem;
  color: #000;
  padding: 0.625rem;
}
.lb-contact-form .lb-checkbox {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1.25rem;
}
.lb-contact-form .lb-checkbox:last-child {
  padding-bottom: 0rem;
}
.lb-contact-form .lb-checkbox input[type=checkbox] {
  display: none;
}
.lb-contact-form .lb-checkbox .wpcf7-acceptance {
  display: inline-block;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 20px;
  border: 2px solid rgba(5, 41, 103, 0.2);
  background-color: #F4F8FC;
  border-radius: 2px;
  position: relative;
  margin-right: 1.25rem;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 0rem;
}
.lb-contact-form .lb-checkbox .wpcf7-acceptance::after {
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.lb-contact-form .lb-checkbox .custom-checkbox {
  display: inline-block;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 20px;
  border: 2px solid rgba(5, 41, 103, 0.2);
  background-color: #F4F8FC;
  border-radius: 2px;
  position: relative;
  margin-right: 1.25rem;
  vertical-align: middle;
  cursor: pointer;
}
.lb-contact-form .lb-checkbox .custom-checkbox::after {
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.lb-contact-form .lb-checkbox input[type=checkbox]:checked + .custom-checkbox {
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.lb-contact-form .lb-checkbox input[type=checkbox]:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 4px;
  height: 10px;
  border: solid #052967;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(1);
}
.lb-contact-form .lb-checkbox input[type=checkbox]:checked + .wpcf7-acceptance {
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.lb-contact-form .lb-checkbox input[type=checkbox]:checked + .wpcf7-acceptance::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 4px;
  height: 10px;
  border: solid #052967;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(1);
}
.lb-contact-form .lb-checkbox a {
  color: #052967;
  text-decoration: underline;
}
.lb-contact-form .lb-checkbox.checked .wpcf7-acceptance::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 4px;
  height: 10px;
  border: solid #052967;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(1);
}
.lb-contact-form .lb-submit {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1.25rem;
}
.lb-contact-form .lb-submit button, .lb-contact-form .lb-submit input[type=submit] {
  padding: 0.75rem 1.25rem;
  background-color: #CADDF2;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  color: #052967;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.lb-contact-form .lb-submit button:hover, .lb-contact-form .lb-submit button:active, .lb-contact-form .lb-submit input[type=submit]:hover, .lb-contact-form .lb-submit input[type=submit]:active {
  background-color: #678197;
  color: #ffffff;
}
.lb-contact-form .lb-submit button:focus, .lb-contact-form .lb-submit input[type=submit]:focus {
  outline: none;
  background-color: #678197;
  color: #ffffff;
}
.lb-contact-form .lb-submit button .wpcf7-spinner, .lb-contact-form .lb-submit input[type=submit] .wpcf7-spinner {
  display: none !important;
}

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 3.125rem 1.25rem;
}
.popup .popup-content {
  background-color: #ffffff;
  padding: 1.25rem;
  width: 100%;
  max-width: 43.75rem;
  position: relative;
  height: auto;
  max-height: 100%;
  text-align: center;
  overflow-y: scroll;
}
.popup .popup-content::-webkit-scrollbar {
  width: 0.5rem;
}
.popup .popup-content::-webkit-scrollbar-thumb {
  background-color: #CADDF2;
}
.popup .popup-content .popup-title {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  font-size: 1.5rem;
  color: #052967;
  font-weight: 700;
  padding-top: 1.875rem;
  padding-bottom: 1.25rem;
}
.popup .popup-content .close {
  position: absolute;
  top: 0.625rem;
  right: 0.938rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.popup .popup-content .lb-checkbox p {
  color: #000;
  text-align: left;
}

/* Mobile breakpoint */
@media (max-width: 48rem) {
  .random-bg-shape {
    width: 100px;
    height: 50px;
  }
}
@media screen and (min-width: 48rem) {
  .call-to-action .call-to-action-wrapper .button-wrapper {
    flex-direction: row;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-margin-top: 120px;
}

body {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  color: #052967;
}

p {
  line-height: 1.4;
  font-size: 1rem;
}

.nav-container {
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 77.5rem;
}

.page-container {
  margin: 0 auto;
  padding: 0 1.25rem;
  max-width: 77.5rem;
}
.page-container .page-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.25rem;
  margin-top: 3.75rem;
}
.page-container .page-two-col .col {
  width: 100%;
}
.page-container .default-page-wrapper {
  width: 100%;
  padding: 3.125rem 0rem;
}
.page-container .default-page-wrapper .wp-block-list {
  padding-top: 0.625rem;
}
.page-container .default-page-wrapper .wp-block-list a {
  color: #052967;
  text-decoration: underline;
}
.page-container .default-page-wrapper .wp-block-list li {
  padding-top: 0.625rem;
}
.page-container .default-page-wrapper .wp-block-heading {
  color: #052967;
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}

.search-container {
  padding: 5rem 1.25rem;
}
.search-container article {
  padding: 1.25rem 0rem;
}
.search-container article .entry-title a {
  color: #052967;
}

.default-page-header {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.default-page-header .default-page-header-title {
  position: absolute;
  z-index: 2;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.default-page-header .default-page-header-title h2 {
  position: absolute;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: clamp(2.8rem, 4vw + 1.8rem, 4.9rem);
  opacity: 0.6;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 2;
  padding: 0rem 1.25rem;
  max-width: 77.5rem;
  text-align: center;
}
.default-page-header .default-page-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18.75rem;
  position: relative;
  z-index: 1;
}
.default-page-header .default-page-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 41, 103, 0.5);
  z-index: 2;
  pointer-events: none;
}
.default-page-header .default-page-image img, .default-page-header .default-page-image figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  z-index: 1;
}

.admin-bar .header {
  margin-top: 2rem;
}

.post-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

@media (max-width: 48rem) {
  .admin-bar .header {
    margin-top: 2.875rem;
  }
}
@media screen and (min-width: 64rem) {
  .page-container .page-two-col {
    margin-top: 6.25rem;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .page-container .default-page-wrapper {
    width: 100%;
    padding: 6.25rem 0rem;
  }
}
/*# sourceMappingURL=style.min.css.map */
