@font-face {
  font-family: "Red Hat Display";
  src: url(../fonts/RedHatDisplay-VariableFont_wght.ttf) format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Neco";
  src: url(../fonts/Neco-Regular.otf) format("opentype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Neco";
  src: url(../fonts/Neco-Medium.otf) format("opentype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Neco";
  src: url(../fonts/Neco-Bold.otf) format("opentype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
:root {
  --header-height: 102px;
}
@media screen and (max-width: 1200px) {
  :root {
    --header-height: 90px;
  }
}
@media screen and (max-width: 992px) {
  :root {
    --header-height: 65px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --header-height: 50px;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Red Hat Display";
  font-size: 1.6rem;
  line-height: 1.4;
  overflow-x: hidden;
  color: #090e21;
}

button,
input,
textarea {
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
}

a,
a:active,
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.object-fit-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: normal;
  line-height: 1.1;
}

p,
.p,
.tabpanels .tabpanel a,
.tabpanels .tabpanel address,
.default-content ul li,
.default-content ol li {
  font-size: 2rem;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  p,
  .p,
  .tabpanels .tabpanel a,
  .tabpanels .tabpanel address,
  .default-content ul li,
  .default-content ol li {
    font-size: 1.6rem;
  }
}

ul,
ol {
  list-style-position: inside;
}
ul li::marker,
ol li::marker {
  color: #331fbd;
}

.default-content {
  max-width: 1000px;
  margin-bottom: 100px;
}
.default-content * {
  text-wrap: balance;
}
.default-content h2,
.default-content h3,
.default-content h4,
.default-content h5,
.default-content h6 {
  font-weight: 700;
  margin: 1em 0 0.2em;
  line-height: 1.2;
}
@media screen and (max-width: 992px) {
  .default-content h2,
  .default-content h3,
  .default-content h4,
  .default-content h5,
  .default-content h6 {
    margin: 1.2em 0 0.4em;
  }
}
.default-content h2 {
  font-size: 6rem;
}
@media screen and (max-width: 992px) {
  .default-content h2 {
    font-size: 4.8rem;
  }
}
.default-content h3 {
  font-size: 4.8rem;
}
@media screen and (max-width: 992px) {
  .default-content h3 {
    font-size: 3.2rem;
  }
}
.default-content h4 {
  font-size: 3.2rem;
}
@media screen and (max-width: 992px) {
  .default-content h4 {
    font-size: 2.4rem;
  }
}
.default-content h5 {
  font-size: 2.4rem;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .default-content h5 {
    font-size: 1.8rem;
  }
}
.default-content h6 {
  font-size: 1.8rem;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .default-content h6 {
    font-size: 1.6rem;
  }
}
.default-content p {
  margin-bottom: 1em;
}
.default-content ul,
.default-content ol {
  list-style-position: inside;
  margin-bottom: 1em;
}
.default-content ul li::marker,
.default-content ol li::marker {
  color: #331fbd;
}
.default-content a {
  text-decoration: underline;
  color: #331fbd;
}

.link {
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 1440px) {
  .link {
    font-size: 1.4rem;
    letter-spacing: 2.4px;
  }
}
.link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  bottom: -8px;
  background-color: #331fbd;
  width: 0;
  height: 1px;
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
}
.link:hover::after {
  width: 100%;
}

.link--white {
  color: #ffffff;
}
.link--white::after {
  background-color: #ffffff;
}
.link--white:hover {
  color: #ffffff;
}

.btn, .contact-page .form-wrapper .form .gform_footer .gform_button {
  text-transform: uppercase;
  padding: 22px 55px;
  border: 1px solid #331fbd;
  color: #331fbd;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1;
  display: inline-block;
  transition: 250ms ease;
  cursor: pointer;
}
.btn:hover, .contact-page .form-wrapper .form .gform_footer .gform_button:hover {
  color: #ffffff;
  background-color: #bd5e1f;
  border-color: #bd5e1f;
}
@media screen and (max-width: 1440px) {
  .btn, .contact-page .form-wrapper .form .gform_footer .gform_button {
    padding: 20px 32px;
    font-size: 1.4rem;
    letter-spacing: 2.8px;
  }
}
@media screen and (max-width: 992px) {
  .btn, .contact-page .form-wrapper .form .gform_footer .gform_button {
    padding: 16px 28px;
    font-size: 1.2rem;
    letter-spacing: 2.4px;
  }
}
.btn--white, .contact-page .form-wrapper .form .gform_footer .gform_button {
  color: #ffffff;
  border-color: #ffffff;
}

:root {
  --container-width: 1640px;
}
@media screen and (max-width: 1920px) {
  :root {
    --container-width: 1540px;
  }
}
@media screen and (max-width: 1600px) {
  :root {
    --container-width: 1440px;
  }
}
@media screen and (max-width: 1440px) {
  :root {
    --container-width: 1240px;
  }
}

.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1920px) {
  .container {
    max-width: 1540px;
  }
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1240px;
  }
}
.container--wide {
  width: 100%;
  max-width: 1784px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 1920px) {
  .container--wide {
    max-width: 1784px;
  }
}
@media screen and (max-width: 1600px) {
  .container--wide {
    max-width: 1420px;
  }
}
@media screen and (max-width: 1440px) {
  .container--wide {
    max-width: 1220px;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
main {
  margin-top: var(--header-height);
}

.section-title {
  font-family: "Neco";
  font-size: clamp(3.6rem, 5vw, 7rem);
  color: #331fbd;
  font-weight: 500;
  text-wrap: balance;
}
.section-title.orange {
  color: #bd5e1f;
}

.section-subtitle--orange, .search-results-page .search-results-section .sr-category-title {
  font-family: "Neco";
  font-size: clamp(1.8rem, 4vw, 6rem);
  color: #bd5e1f;
  text-wrap: balance;
}
.section-subtitle--orange.--blue, .search-results-page .search-results-section .sr-category-title {
  color: #331fbd;
  font-weight: 500;
}

.section-subtitle {
  font-size: 2.4rem;
  color: #331fbd;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1440px) {
  .section-subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .section-subtitle {
    font-size: 1.2rem;
  }
}

.parallax-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.parallax-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-image-bg {
  width: 100%;
  height: 100%;
}
.parallax-image-bg.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(9, 14, 33, 0.2);
}
.parallax-image-mask {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #331fbd;
  -webkit-mask-image: url("../img/misc/line.png");
  mask-image: url("../img/misc/line.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position-x: center;
  transform: translateX(-50%);
}
.parallax-image-mask-wrapper {
  position: absolute;
  inset: 0;
}
.parallax-image-mask-wrapper img {
  max-width: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  object-fit: contain;
  /* transform-origin: bottom; */
  transform: translateX(-50%) scale(1.4);
  transform-origin: top;
}
.parallax-image-mask-wrapper.flip img {
  top: -100%;
  transform-origin: bottom;
  transform: translateX(-50%) rotate(180deg) scale(1.4);
}

.locations-section {
  padding: 70px 0;
  position: relative;
}
@media screen and (max-width: 992px) {
  .locations-section {
    padding: 40px 0;
  }
}
.locations-section .locations-wrapper .title-wrapper {
  display: flex;
  align-items: center;
  gap: min(6vw, 110px);
}
.locations-section .locations-wrapper .title-wrapper .locations-toggle-btn {
  cursor: pointer;
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
}
@media screen and (max-width: 992px) {
  .locations-section .locations-wrapper .title-wrapper .locations-toggle-btn {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .locations-section .locations-wrapper .title-wrapper .locations-toggle-btn {
    width: 20px;
  }
}
.locations-section .locations-wrapper .title-wrapper .locations-toggle-btn[aria-expanded=true] {
  rotate: 45deg;
}
.locations-section .locations-wrapper .locations {
  display: none;
  overflow: hidden;
}
.locations-section .locations-wrapper .locations .map-bg {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  display: none;
  height: 60%;
}
@media screen and (max-width: 768px) {
  .locations-section .locations-wrapper .locations .map-bg {
    display: block;
  }
}
.locations-section .locations-wrapper .locations .map-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .locations-section .locations-wrapper .locations .map-wrapper {
    display: none;
  }
}
.locations-section .locations-wrapper .locations .table-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .locations-section .locations-wrapper .locations .table-wrapper {
    display: block;
  }
}
.locations-section .locations-wrapper .locations .table-wrapper .table {
  width: 100%;
  border-spacing: 0;
}
.locations-section .locations-wrapper .locations .table-wrapper .table tr:not(:last-child) td {
  border-bottom: 1px solid #707070;
}
.locations-section .locations-wrapper .locations .table-wrapper .table tr td {
  font-size: 1.8rem;
  font-family: "Neco";
  color: #331fbd;
  padding: 16px;
}

.image-hover {
  overflow: hidden;
}
.image-hover img {
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
  transition-duration: 1000ms;
}
.image-hover:hover img {
  scale: 1.2;
}

.image-section {
  position: relative;
}
.image-section .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.image-section .image-grid .image {
  height: clamp(280px, 40vw, 700px);
  grid-column: 2;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .image-section .image-grid .image {
    grid-column: 1/-1;
    border-radius: 0;
    margin-bottom: 30px;
  }
}
.image-section .image-grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 750ms;
}
.image-section .content {
  max-width: 40%;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 992px) {
  .image-section .content {
    position: static;
    max-width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .image-section .content {
    max-width: none;
  }
}
.image-section .content .section-title {
  margin-bottom: 0.5em;
}
.image-section .content p {
  margin-bottom: 1em;
}
.image-section .content a {
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .image-section .content a {
    margin-top: 30px;
  }
}

.hero-section--small {
  position: relative;
  height: clamp(280px, 70vw, 540px);
}

.full-width-split-screen {
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, calc(var(--container-width) / 2)) minmax(0, calc(var(--container-width) / 2)) minmax(20px, 1fr);
}
@media screen and (max-width: 1440px) {
  .full-width-split-screen {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 992px) {
  .full-width-split-screen {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
  }
}
.full-width-split-screen .image-wrapper {
  height: 700px;
}
.full-width-split-screen .image-wrapper .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.full-width-split-screen .image-wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .full-width-split-screen .image-wrapper {
    height: 500px;
  }
}
@media screen and (max-width: 992px) {
  .full-width-split-screen .image-wrapper {
    height: clamp(170px, 50vw, 480px);
    min-height: unset;
    margin-bottom: 30px;
  }
}
.full-width-split-screen .image-wrapper:first-child {
  grid-column: 1/3;
  padding-inline-end: clamp(40px, 5vw, 136px);
}
@media screen and (max-width: 992px) {
  .full-width-split-screen .image-wrapper:first-child {
    padding-inline-end: 0;
  }
}
.full-width-split-screen .image-wrapper:first-child .image {
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 992px) {
  .full-width-split-screen .image-wrapper:first-child .image {
    border-radius: 0;
  }
}
.full-width-split-screen .image-wrapper:last-child {
  grid-column: 3/-1;
}
.full-width-split-screen .image-wrapper:last-child .image {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 992px) {
  .full-width-split-screen .image-wrapper:last-child .image {
    border-radius: 0;
  }
}
.full-width-split-screen .content {
  padding-inline: 20px;
}
.full-width-split-screen .content:first-child {
  grid-column: 2/3;
  padding-inline-end: clamp(40px, 5vw, 136px);
}
@media screen and (max-width: 992px) {
  .full-width-split-screen .content:first-child {
    padding-inline-end: 20px;
  }
  .full-width-split-screen .content:first-child:not(.only-content) {
    order: 1;
  }
}
.full-width-split-screen .content:last-child {
  grid-column: 3/4;
  padding-inline-start: 0;
}
@media screen and (max-width: 992px) {
  .full-width-split-screen .content:last-child {
    padding-inline-start: 20px;
  }
}
.full-width-split-screen .content .section-title {
  margin-bottom: 10px;
}
.full-width-split-screen .content .section-subtitle--orange, .full-width-split-screen .content .search-results-page .search-results-section .sr-category-title, .search-results-page .search-results-section .full-width-split-screen .content .sr-category-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .full-width-split-screen .content .section-subtitle--orange, .full-width-split-screen .content .search-results-page .search-results-section .sr-category-title, .search-results-page .search-results-section .full-width-split-screen .content .sr-category-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .full-width-split-screen .content .section-subtitle--orange, .full-width-split-screen .content .search-results-page .search-results-section .sr-category-title, .search-results-page .search-results-section .full-width-split-screen .content .sr-category-title {
    margin-bottom: 30px;
  }
}
.full-width-split-screen .content p {
  margin-bottom: 1em;
}
@media screen and (max-width: 992px) {
  .full-width-split-screen.only-content .content:first-child {
    order: 0;
  }
}

.mt {
  margin-top: 2em;
}
@media screen and (max-width: 992px) {
  .mt {
    margin-top: 0;
  }
}

.product-card-wrapper {
  width: 400px;
  background-color: #e6f0fe;
  padding: 50px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .product-card-wrapper {
    width: 360px;
  }
}
@media screen and (max-width: 1440px) {
  .product-card-wrapper {
    width: 300px;
  }
}
@media screen and (max-width: 992px) {
  .product-card-wrapper {
    padding: 30px;
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .product-card-wrapper {
    padding: 16px;
    width: 240px;
  }
}
@media screen and (max-width: 576px) {
  .product-card-wrapper {
    padding: 16px;
    width: 140px;
  }
}
.product-card-image-wrapper {
  border: 1px solid #331fbd;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  padding: 24px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1440px) {
  .product-card-image-wrapper {
    padding: 20px;
  }
}
@media screen and (max-width: 992px) {
  .product-card-image-wrapper {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-card-image-wrapper {
    padding: 10px;
  }
}
.product-card-abbr {
  position: relative;
  z-index: 1;
}
.product-card-abbr > div {
  color: #331fbd;
  line-height: 1;
}
.product-card-abbr > div:first-child {
  font-size: 30px;
  font-family: "Neco";
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .product-card-abbr > div:first-child {
    font-size: 28px;
  }
}
.product-card-abbr > div:last-child {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .product-card-abbr > div:last-child {
    font-size: 30px;
  }
}
.product-card-image {
  position: absolute;
  width: 120%;
  height: 120%;
  top: 0;
  right: -90px;
  z-index: 0;
  -webkit-mask-image: url("../img/misc/line.png");
  mask-image: url("../img/misc/line.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position-x: center;
}
@media screen and (max-width: 992px) {
  .product-card-image {
    right: -70px;
  }
}
@media screen and (max-width: 576px) {
  .product-card-image {
    right: -50px;
  }
}
.product-card-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.5);
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
}
.product-card-info {
  width: 100%;
}
.product-card-title {
  text-align: left;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #331fbd;
}
@media screen and (max-width: 1440px) {
  .product-card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .product-card-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .product-card-title {
    font-size: 1.6rem;
  }
}
.product-card-subtitle {
  text-align: left;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #331fbd;
}
@media screen and (max-width: 992px) {
  .product-card-subtitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .product-card-subtitle {
    font-size: 1.2rem;
  }
}
.product-card:hover .product-card-image img {
  transform: scale(2);
}

.title-section .section-title {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .title-section .section-title {
    padding: 60px 0;
  }
}

.header {
  background-color: #d2e1f9;
  height: var(--header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.header-wrapper {
  height: 100%;
  padding-left: min(140px, 8vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .header-wrapper {
    padding-left: min(100px, 5vw);
  }
}
@media screen and (max-width: 1200px) {
  .header-wrapper {
    padding-left: 60px;
  }
}
@media screen and (max-width: 768px) {
  .header-wrapper {
    padding-left: 10px;
  }
}
.header .logo-wrapper .logo {
  display: block;
}
.header .logo-wrapper .logo img {
  height: 70px;
}
@media screen and (max-width: 1440px) {
  .header .logo-wrapper .logo img {
    height: 55px;
  }
}
@media screen and (max-width: 1200px) {
  .header .logo-wrapper .logo img {
    height: 50px;
  }
}
@media screen and (max-width: 992px) {
  .header .logo-wrapper .logo img {
    height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .header .logo-wrapper .logo img {
    height: 36px;
  }
}
.header .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: min(50px, 3vw);
}
@media screen and (max-width: 992px) {
  .header .nav-wrapper {
    gap: 0;
  }
}
.header .nav-wrapper .nav {
  height: 100%;
}
.header .nav-wrapper .nav-list-wrapper {
  height: 100%;
}
.header .nav-wrapper .nav-list {
  height: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav-wrapper .nav-list-item {
  height: 100%;
  margin: 0 60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .header .nav-wrapper .nav-list-item {
    margin: 0 30px;
  }
}
@media screen and (max-width: 1200px) {
  .header .nav-wrapper .nav-list-item {
    margin: 0 16px;
  }
}
.header .nav-wrapper .nav-list-item-link {
  display: block;
  color: #331fbd;
  letter-spacing: 3.2px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .header .nav-wrapper .nav-list-item-link {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 992px) {
  .header .nav-wrapper .nav {
    display: none;
  }
}
.header .nav-wrapper .mobile-nav {
  display: none;
}
@media screen and (max-width: 992px) {
  .header .nav-wrapper .mobile-nav {
    display: block;
    height: auto;
    position: absolute;
    top: 100%;
    left: 100%;
    width: 100%;
    background-color: #331fbd;
    overflow-x: hidden;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 100;
  }
  .header .nav-wrapper .mobile-nav .nav-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 30px;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .nav-list-item-link {
    color: #ffffff;
    font-size: 1.6rem;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .nav-list-item-link::after {
    background-color: #ffffff;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .mega-menu {
    width: auto;
    position: static;
    background: none;
    display: block !important;
    z-index: 0;
    margin: 10px 0 0;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .mega-menu-wrapper {
    padding: 0;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .mega-menu-wrapper .mm-nav-list {
    position: static;
    text-align: end;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .mega-menu-wrapper .mm-nav-list-item {
    white-space: normal;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .mega-menu-wrapper .mm-nav-list-item:not(:last-child) {
    margin-bottom: 10px;
  }
  .header .nav-wrapper .mobile-nav .nav-list .nav-list-item .mega-menu-wrapper .mm-nav-list-item-link {
    font-size: 1.4rem;
    letter-spacing: 2.8px;
  }
}
.header .nav-wrapper .search-wrapper {
  height: 100%;
}
.header .nav-wrapper .search-wrapper .search-toggle-btn {
  height: 100%;
  aspect-ratio: 1;
  background-color: #331fbd;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .header .nav-wrapper .search-wrapper .search-toggle-btn {
    background-color: #090e21;
  }
}
@media screen and (max-width: 1440px) {
  .header .nav-wrapper .search-wrapper .search-toggle-btn img {
    height: 32px;
  }
}
@media screen and (max-width: 992px) {
  .header .nav-wrapper .search-wrapper .search-toggle-btn img {
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header .nav-wrapper .search-wrapper .search-toggle-btn img {
    height: 20px;
  }
}
.header .nav-wrapper .search-wrapper .search-toggle-btn .icon-search {
  transition: 250ms ease;
}
.header .nav-wrapper .search-wrapper .search-toggle-btn .icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 250ms ease;
}
.header .nav-wrapper .search-wrapper .search-toggle-btn[aria-expanded=true] .icon-close {
  opacity: 1;
}
.header .nav-wrapper .search-wrapper .search-toggle-btn[aria-expanded=true] .icon-search {
  opacity: 0;
}

.mega-menu {
  width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(51, 31, 189, 0.8);
  display: none;
  z-index: 10;
}
.mega-menu-wrapper {
  padding: 30px 0;
}
.mega-menu-wrapper .mm-nav-list {
  list-style-type: none;
  position: relative;
}
.mega-menu-wrapper .mm-nav-list-item {
  white-space: nowrap;
}
.mega-menu-wrapper .mm-nav-list-item:not(:last-child) {
  margin-bottom: 24px;
}
.mega-menu-wrapper .mm-nav-list-item-link {
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .mega-menu-wrapper .mm-nav-list-item-link {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}

.hamburger-wrapper {
  height: 100%;
  display: none;
}
@media screen and (max-width: 992px) {
  .hamburger-wrapper {
    display: block;
  }
}
.hamburger-wrapper .hamburger-toggle-btn {
  background-color: #331fbd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-direction: column;
  height: 100%;
  aspect-ratio: 1;
  cursor: pointer;
}
.hamburger-wrapper .hamburger-toggle-btn .ham {
  width: 19px;
  height: 1px;
  background-color: #ffffff;
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
  transform-origin: center;
}
.hamburger-wrapper .hamburger-toggle-btn[aria-expanded=true] .ham:first-child {
  transform: rotate(45deg) translate(4px, 3px);
}
.hamburger-wrapper .hamburger-toggle-btn[aria-expanded=true] .ham:last-child {
  transform: rotate(-45deg) translate(4px, -3px);
}

.search-bar-wrapper {
  background-color: rgba(51, 31, 189, 0.8);
  position: absolute;
  width: 100%;
  z-index: 8;
  padding: 60px 20px;
  display: none;
}
@media screen and (max-width: 992px) {
  .search-bar-wrapper {
    background-color: #090e21;
    padding: 40px 20px;
  }
}
.search-bar-wrapper .search-bar {
  max-width: 965px;
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid #ffffff;
  padding: 16px 0;
}
@media screen and (max-width: 992px) {
  .search-bar-wrapper .search-bar {
    gap: 10px;
    padding: 8px 0;
  }
}
.search-bar-wrapper .search-bar form {
  width: 100%;
}
.search-bar-wrapper .search-bar .form-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-bar-wrapper .search-bar .form-wrapper button {
  cursor: pointer;
}
.search-bar-wrapper .search-bar .search-icon img {
  width: 40px;
}
@media screen and (max-width: 992px) {
  .search-bar-wrapper .search-bar .search-icon img {
    width: 20px;
  }
}
.search-bar-wrapper .search-bar .search-input {
  flex: 1;
  font-size: 2.4rem;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .search-bar-wrapper .search-bar .search-input {
    font-size: 1.6rem;
  }
}
.search-bar-wrapper .search-bar .search-input:focus {
  outline: none;
  caret-color: #ffffff;
}

.footer {
  background-color: #d2e1f9;
}
.footer .footer-wrapper {
  padding: 80px 0;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper {
    padding: 40px 0;
  }
}
.footer .footer-wrapper .logo-wrapper {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .logo-wrapper {
    margin-bottom: 20px;
  }
}
.footer .footer-wrapper .logo-wrapper .logo {
  display: block;
}
.footer .footer-wrapper .logo-wrapper .logo img {
  height: 70px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-wrapper .logo-wrapper .logo img {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-wrapper .logo-wrapper .logo img {
    height: 36px;
  }
}
.footer .footer-wrapper .footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-main {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-main .footer-col {
    flex: 1;
    display: flex;
  }
}
.footer .footer-wrapper .footer-main .footer-col .address,
.footer .footer-wrapper .footer-main .footer-col .contact-info {
  font-style: normal;
  color: #331fbd;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 1440px) {
  .footer .footer-wrapper .footer-main .footer-col .address,
  .footer .footer-wrapper .footer-main .footer-col .contact-info {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .footer .footer-wrapper .footer-main .footer-col .address,
  .footer .footer-wrapper .footer-main .footer-col .contact-info {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-main .footer-col .address,
  .footer .footer-wrapper .footer-main .footer-col .contact-info {
    flex: 1;
  }
}
.footer .footer-wrapper .footer-main .footer-col .contact-info {
  margin-top: 1em;
}
.footer .footer-wrapper .footer-main .footer-col .contact-info a {
  display: block;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-main .footer-col .contact-info {
    margin-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .footer .footer-wrapper .footer-main .footer-col .contact-info {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-main .footer-col.footer-nav-col {
    display: none;
  }
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav {
  display: flex;
  justify-content: space-between;
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list {
  list-style-type: none;
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list:not(:last-child, :nth-child(3)) {
  margin-right: min(100px, 5vw);
}
@media screen and (max-width: 1200px) {
  .footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list:not(:last-child, :nth-child(3)) {
    margin-right: 40px;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list:not(:last-child, :nth-child(3)) {
    margin-right: 20px;
  }
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item-link {
  color: #331fbd;
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item-link.child {
  letter-spacing: 1px;
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item-link:not(.child) {
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item-link {
    font-size: 1.2rem;
  }
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item:first-child {
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-wrapper .footer-main .footer-col.footer-nav-col .footer-nav-list-item:first-child {
    margin-bottom: 24px;
  }
}
.footer .footer-wrapper .footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-bottom-links {
    justify-content: flex-start;
    gap: 40px;
  }
}
.footer .footer-wrapper .footer-bottom-links a {
  font-weight: 700;
  color: #331fbd;
}
@media screen and (max-width: 1440px) {
  .footer .footer-wrapper .footer-bottom-links a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .footer .footer-wrapper .footer-bottom-links a {
    font-size: 1.2rem;
  }
}

.cta-section {
  position: relative;
}
.cta-section .cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 12vw, 200px);
}
.cta-section .cta-content .cta-title {
  font-size: clamp(1.6rem, 4vw, 6rem);
  color: #ffffff;
}
.cta-section .cta-content img {
  width: clamp(130px, 60vw, 666px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1099;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(9, 14, 33, 0.6);
  display: none;
}
.modal .modal-dialog {
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  min-height: calc(100% - 12rem);
  max-width: var(--container-width);
  margin: 6rem auto;
  padding: 0 20px;
}
.modal .modal-dialog .modal-content {
  background-color: #e6f0fe;
  border-radius: 16px;
  padding: 64px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .modal .modal-dialog .modal-content {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .modal .modal-dialog .modal-content {
    padding: 16px;
  }
}
.modal .modal-dialog .modal-content .close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .modal .modal-dialog .modal-content .close {
    right: 20px;
    top: 20px;
  }
}
.modal .modal-dialog .modal-content .close img {
  width: 28px;
  filter: invert(1);
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .modal .modal-dialog .modal-content .close img {
    width: 24px;
  }
}
@media screen and (max-width: 992px) {
  .modal .modal-dialog .modal-content .close img {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .modal .modal-dialog .modal-content .close img {
    width: 16px;
  }
}

#productModal .modal-body .modal-grid {
  display: flex;
  gap: min(76px, 4vw);
}
@media screen and (max-width: 1200px) {
  #productModal .modal-body .modal-grid {
    flex-direction: column;
  }
}
#productModal .modal-body .modal-grid .image-col {
  width: 280px;
}
@media screen and (max-width: 1200px) {
  #productModal .modal-body .modal-grid .image-col {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }
}
#productModal .modal-body .modal-grid .image-col .image {
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  #productModal .modal-body .modal-grid .image-col .image {
    width: auto;
    margin-bottom: 0;
  }
}
#productModal .modal-body .modal-grid .image-col .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  #productModal .modal-body .modal-grid .image-col .image img {
    width: 280px;
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 992px) {
  #productModal .modal-body .modal-grid .image-col .image img {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  #productModal .modal-body .modal-grid .image-col .image img {
    width: 180px;
  }
}
@media screen and (max-width: 576px) {
  #productModal .modal-body .modal-grid .image-col .image img {
    width: 122px;
  }
}
@media screen and (max-width: 1200px) {
  #productModal .modal-body .modal-grid .image-col > div:not(.image) {
    flex: 1;
  }
}
#productModal .modal-body .modal-grid .image-col .title {
  font-size: 3rem;
  color: #331fbd;
}
@media screen and (max-width: 1440px) {
  #productModal .modal-body .modal-grid .image-col .title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 992px) {
  #productModal .modal-body .modal-grid .image-col .title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  #productModal .modal-body .modal-grid .image-col .title {
    font-size: 1.6rem;
  }
}
#productModal .modal-body .modal-grid .image-col .subtitle {
  font-size: 2.4rem;
  color: #331fbd;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  #productModal .modal-body .modal-grid .image-col .subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  #productModal .modal-body .modal-grid .image-col .subtitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  #productModal .modal-body .modal-grid .image-col .subtitle {
    font-size: 1.2rem;
  }
}
#productModal .modal-body .modal-grid .content-col {
  flex: 1;
}
#productModal .modal-body .modal-grid .content-col .content-title {
  font-size: 3rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 1440px) {
  #productModal .modal-body .modal-grid .content-col .content-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  #productModal .modal-body .modal-grid .content-col .content-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  #productModal .modal-body .modal-grid .content-col .content-title {
    font-size: 1.2rem;
  }
}
#productModal .modal-body .modal-grid .content-col .content {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  #productModal .modal-body .modal-grid .content-col .content {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  #productModal .modal-body .modal-grid .content-col .content {
    gap: 0;
    flex-direction: column;
  }
}
#productModal .modal-body .modal-grid .content-col .content p {
  margin-bottom: 1em;
}
@media screen and (max-width: 576px) {
  #productModal .modal-body .modal-grid .content-col .content p {
    font-size: 1.2rem;
  }
}

#profileModal .modal-body .modal-grid {
  display: flex;
  gap: min(76px, 4vw);
}
@media screen and (max-width: 1200px) {
  #profileModal .modal-body .modal-grid {
    flex-direction: column;
  }
}
#profileModal .modal-body .modal-grid .image-col {
  width: 280px;
}
@media screen and (max-width: 1200px) {
  #profileModal .modal-body .modal-grid .image-col {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }
}
#profileModal .modal-body .modal-grid .image-col .image {
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  #profileModal .modal-body .modal-grid .image-col .image {
    width: auto;
    margin-bottom: 0;
  }
}
#profileModal .modal-body .modal-grid .image-col .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  #profileModal .modal-body .modal-grid .image-col .image img {
    width: 280px;
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 992px) {
  #profileModal .modal-body .modal-grid .image-col .image img {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  #profileModal .modal-body .modal-grid .image-col .image img {
    width: 180px;
  }
}
@media screen and (max-width: 576px) {
  #profileModal .modal-body .modal-grid .image-col .image img {
    width: 122px;
  }
}
@media screen and (max-width: 1200px) {
  #profileModal .modal-body .modal-grid .image-col > div:not(.image) {
    flex: 1;
  }
}
#profileModal .modal-body .modal-grid .image-col .title {
  font-size: 3rem;
  color: #331fbd;
}
@media screen and (max-width: 1440px) {
  #profileModal .modal-body .modal-grid .image-col .title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 992px) {
  #profileModal .modal-body .modal-grid .image-col .title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  #profileModal .modal-body .modal-grid .image-col .title {
    font-size: 1.6rem;
  }
}
#profileModal .modal-body .modal-grid .image-col .subtitle {
  font-size: 2.4rem;
  color: #331fbd;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  #profileModal .modal-body .modal-grid .image-col .subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  #profileModal .modal-body .modal-grid .image-col .subtitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  #profileModal .modal-body .modal-grid .image-col .subtitle {
    font-size: 1.2rem;
  }
}
#profileModal .modal-body .modal-grid .content-col {
  flex: 1;
}
#profileModal .modal-body .modal-grid .content-col .content p {
  margin-bottom: 1em;
}
@media screen and (max-width: 576px) {
  #profileModal .modal-body .modal-grid .content-col .content p {
    font-size: 1.2rem;
  }
}

.tabs {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1440px) {
  .tabs {
    gap: 60px;
  }
}
@media screen and (max-width: 992px) {
  .tabs {
    gap: 40px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .tabs {
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .tabs {
    gap: 10px;
    justify-content: center;
  }
}
.tabs button {
  text-transform: uppercase;
  font-size: 2.4rem;
  color: #331fbd;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
}
@media screen and (max-width: 576px) {
  .tabs button {
    flex: 1;
  }
}
.tabs button::after {
  content: "";
  bottom: -8px;
  position: absolute;
  left: 0;
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
  width: 0;
  height: 3px;
  background-color: #bd5e1f;
}
@media screen and (max-width: 992px) {
  .tabs button::after {
    height: 1px;
  }
}
.tabs button:hover {
  color: #bd5e1f;
}
@media screen and (max-width: 1440px) {
  .tabs button {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 992px) {
  .tabs button {
    font-size: 1.6rem;
    letter-spacing: 1.2px;
  }
}
@media screen and (max-width: 768px) {
  .tabs button {
    font-size: 1.2rem;
  }
}
.tabs button[aria-selected=true] {
  color: #bd5e1f;
}
.tabs button[aria-selected=true]::after {
  width: 100%;
}

.tabpanels .tabpanel.is-hidden {
  display: none;
}
.tabpanels .tabpanel address {
  font-style: normal;
  margin-bottom: 1em;
}
.tabpanels .tabpanel a {
  letter-spacing: 0;
  text-transform: none;
  display: block;
  line-height: 1.4;
  transition: 250ms ease;
}
.tabpanels .tabpanel a:hover {
  color: #331fbd;
}

#locationsTablist {
  margin-top: 45px;
  margin-bottom: 100px;
}
@media screen and (max-width: 992px) {
  #locationsTablist {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #locationsTablist {
    margin-bottom: 40px;
  }
}

#addressTablist {
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  #addressTablist {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  #addressTablist {
    margin-bottom: 20px;
  }
}

.hero-section {
  height: calc(100vh - var(--header-height));
  position: relative;
}
@media screen and (max-width: 992px) and (orientation: landscape) {
  .hero-section {
    min-height: calc(715px + var(--header-height));
  }
}
@media screen and (max-width: 992px) {
  .hero-section {
    height: calc(715px + var(--header-height));
  }
}
.hero-section .hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-section .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(9, 14, 33, 0.2);
}
.hero-section .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-section .hero-image-bg {
  width: 100%;
  height: 100%;
}
.hero-section .hero-image-polygon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #331fbd;
  -webkit-mask-image: url("../img/misc/line.png");
  mask-image: url("../img/misc/line.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position-x: center;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .hero-section .hero-image-polygon {
    left: 0;
    -webkit-mask-size: cover;
    mask-size: cover;
    transform: none;
    -webkit-mask-position-x: left;
  }
}
.hero-section .hero-image-polygon-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero-section .hero-image-polygon-wrapper img {
  max-width: none;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-27%, -50%) rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .hero-section .hero-image-polygon-wrapper img {
    transform: translate(-35%, -50%) rotate(180deg);
  }
}
@media screen and (max-width: 992px) {
  .hero-section .hero-image-polygon-wrapper img {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-bottom: 120px;
}
.hero-section .hero-content .container {
  height: 100%;
}
.hero-section .hero-content-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-content-wrapper {
    justify-content: flex-start;
  }
}
.hero-section .hero-content-wrapper .hero-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: min(150px, 10vw);
}
.hero-section .hero-content-wrapper .hero-title-inner {
  font-size: clamp(1.8rem, 4vw, 6rem);
  color: #ffffff;
}
.hero-section .hero-content-wrapper .hero-title img {
  width: clamp(264px, 75vw, 840px);
}
.hero-section .hero-content-wrapper .stats {
  display: grid;
  grid-template-columns: repeat(4, 180px);
  gap: min(4.6vw, 80px);
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .hero-section .hero-content-wrapper .stats {
    grid-template-columns: repeat(2, 158px);
  }
}
@media screen and (max-width: 576px) {
  .hero-section .hero-content-wrapper .stats {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hero-section .hero-content-wrapper .stats .stat {
  aspect-ratio: 1;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .hero-section .hero-content-wrapper .stats .stat {
    border: none;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    aspect-ratio: unset;
    padding: 0;
    gap: 30px;
  }
}
.hero-section .hero-content-wrapper .stats .stat-number {
  font-family: "Neco";
  font-size: 4rem;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .hero-section .hero-content-wrapper .stats .stat-number {
    font-size: 3rem;
  }
}
@media screen and (max-width: 576px) {
  .hero-section .hero-content-wrapper .stats .stat-number .number-inner {
    border: 1px solid #ffffff;
    width: 114px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.hero-section .hero-content-wrapper .stats .stat-title {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 992px) {
  .hero-section .hero-content-wrapper .stats .stat-title {
    font-size: 1.8rem;
  }
}

.about-section {
  background-color: #e6f0fe;
  position: relative;
}
.about-section .scroll-indicator {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .about-section .scroll-indicator {
    top: -80px;
  }
}
@media screen and (max-width: 992px) {
  .about-section .scroll-indicator {
    top: -40px;
  }
}
.about-section .scroll-indicator img {
  height: 40px;
  animation: bounce 1500ms cubic-bezier(0.6, 0.2, 0.5, 0.96) infinite;
}
@media screen and (max-width: 992px) {
  .about-section .scroll-indicator img {
    height: 30px;
  }
}
.about-section .about-wrapper {
  position: relative;
  z-index: 1;
  background-color: #97baf4;
  border-radius: 16px;
  top: -70px;
  padding: 70px 60px;
}
@media screen and (max-width: 1440px) {
  .about-section .about-wrapper {
    top: -40px;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 992px) {
  .about-section .about-wrapper {
    top: -20px;
    padding: 30px 20px;
  }
}
.about-section .title-col .section-title {
  max-width: 80%;
}
@media screen and (max-width: 992px) {
  .about-section .title-col .section-title {
    max-width: none;
  }
}
.about-section .content-col {
  padding-top: 4em;
}
@media screen and (max-width: 992px) {
  .about-section .content-col {
    padding-top: 16px;
  }
}
.about-section .content-col p {
  color: #090e21;
}
.about-section .content-col .btn, .about-section .content-col .contact-page .form-wrapper .form .gform_footer .gform_button, .contact-page .form-wrapper .form .gform_footer .about-section .content-col .gform_button {
  float: right;
}
.about-section .blocks {
  position: relative;
  height: 600px;
}
@media screen and (max-width: 1440px) {
  .about-section .blocks {
    height: 500px;
  }
}
@media screen and (max-width: 576px) {
  .about-section .blocks {
    height: 300px;
  }
}
.about-section .blocks .block {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width: 992px) {
  .about-section .blocks .block {
    width: 300px;
    left: 50%;
  }
}
@media screen and (max-width: 576px) {
  .about-section .blocks .block {
    width: 182px;
  }
}
.about-section .blocks .block:first-child {
  transform: translate3d(-82%, -11%, 0);
}
.about-section .blocks .block:last-child {
  transform: translate3d(-19%, -88%, 0);
}

.row {
  display: flex;
}
@media screen and (max-width: 992px) {
  .row {
    flex-direction: column;
  }
}
.row .col {
  flex: 1;
}

.services-section {
  background-color: #e6f0fe;
  padding: 0 0 90px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .services-section {
    padding: 0 0 70px;
  }
}
.services-section .section-title {
  margin-bottom: 10px;
}
.services-section .content p,
.services-section .content ul li {
  color: #331fbd;
  font-size: 2rem;
  font-weight: 300;
  text-wrap: balance;
}
@media screen and (max-width: 1440px) {
  .services-section .content p,
  .services-section .content ul li {
    font-size: 1.6rem;
  }
}
.services-section .content .btn, .services-section .content .contact-page .form-wrapper .form .gform_footer .gform_button, .contact-page .form-wrapper .form .gform_footer .services-section .content .gform_button {
  margin-top: 50px;
}
.services-section .stone {
  position: absolute;
  height: 600px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .services-section .stone {
    height: 500px;
  }
}
@media screen and (max-width: 992px) {
  .services-section .stone {
    display: none;
  }
}
.services-section .stone img {
  height: 100%;
  object-fit: contain;
}
.services-section .stone-mobile {
  display: none;
  position: absolute;
  bottom: 40px;
  right: 40px;
  height: 200px;
}
.services-section .stone-mobile img {
  height: 100%;
}
@media screen and (max-width: 992px) {
  .services-section .stone-mobile {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .services-section .stone-mobile {
    bottom: 20px;
    right: 20px;
  }
}

.products-section {
  padding: 130px 0;
  position: relative;
}
@media screen and (max-width: 992px) {
  .products-section {
    padding: 90px 0;
  }
}
@media screen and (max-width: 768px) {
  .products-section {
    padding: 40px 0;
  }
}
.products-section .content-col {
  flex: auto;
}
.products-section .content {
  width: 45%;
  padding-right: 40px;
}
@media screen and (max-width: 992px) {
  .products-section .content {
    padding-right: 0;
    width: 100%;
  }
}
.products-section .content .section-title {
  margin-bottom: 0.5em;
}
.products-section .content p {
  text-wrap: balance;
}
.products-section .content a {
  margin-top: 70px;
}
@media screen and (max-width: 1440px) {
  .products-section .content a {
    margin-top: 50px;
  }
}

.product-cards {
  position: absolute;
  left: 45%;
  top: 130px;
  display: grid;
  grid-template-columns: repeat(3, 20vw);
  gap: 30px;
}
@media screen and (max-width: 1440px) {
  .product-cards {
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .product-cards {
    position: static;
    margin: 40px 0 0;
    grid-template-columns: repeat(3, 38vw);
  }
}
@media screen and (max-width: 992px) {
  .product-cards {
    gap: 10px;
  }
}
.product-cards .product-card-wrapper {
  width: 100%;
  padding: 2.6vw;
}
@media screen and (max-width: 1440px) {
  .product-cards .product-card-wrapper {
    padding: 2vw;
  }
}
@media screen and (max-width: 992px) {
  .product-cards .product-card-wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .product-cards .product-card-wrapper {
    padding: 20px;
  }
}
@media screen and (max-width: 576px) {
  .product-cards .product-card-wrapper {
    padding: 16px;
  }
}
@media screen and (max-width: 992px) {
  .product-cards .product-card-wrapper .product-card-abbr > div:first-child {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .product-cards .product-card-wrapper .product-card-abbr > div:first-child {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .product-cards .product-card-wrapper .product-card-abbr > div:first-child {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  .product-cards .product-card-wrapper .product-card-abbr > div:last-child {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .product-cards .product-card-wrapper .product-card-abbr > div:last-child {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .product-cards .product-card-wrapper .product-card-abbr > div:last-child {
    font-size: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .product-cards .product-card-wrapper .product-card-title,
  .product-cards .product-card-wrapper .product-card-subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .product-cards .product-card-wrapper .product-card-title,
  .product-cards .product-card-wrapper .product-card-subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .product-cards .product-card-wrapper .product-card-title,
  .product-cards .product-card-wrapper .product-card-subtitle {
    font-size: 1.2rem;
  }
}

.hero-section--about {
  position: relative;
  height: calc(100vh - var(--header-height));
}
@media screen and (max-width: 992px) and (orientation: landscape) {
  .hero-section--about {
    min-height: calc(715px + var(--header-height));
  }
}
.hero-section--about .hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-section--about .hero-image::after {
  content: "";
  background-color: rgba(9, 14, 33, 0.4);
  position: absolute;
  inset: 0;
}
.hero-section--about .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section--about .hero-content {
  position: relative;
  z-index: 0;
}
.hero-section--about .hero-content .quote {
  font-family: "Neco";
  font-size: clamp(3.6rem, 6vw, 8.6rem);
  font-weight: 500;
  color: #ffffff;
  max-width: 75%;
  padding-top: clamp(40px, 6vw, 100px);
  margin-bottom: 0.5em;
}
@media screen and (max-width: 992px) {
  .hero-section--about .hero-content .quote {
    max-width: none;
  }
}
.hero-section--about .hero-content .author {
  font-size: 2.4rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .hero-section--about .hero-content .author {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 992px) {
  .hero-section--about .hero-content .author {
    font-size: 1.2rem;
  }
}

.about-section--about {
  background: none;
}
.about-section--about .about-wrapper {
  background-color: #e6f0fe;
}
@media screen and (max-width: 992px) {
  .about-section--about .about-wrapper {
    margin-top: -20%;
  }
}
@media screen and (max-width: 768px) {
  .about-section--about .about-wrapper {
    margin-top: -70%;
  }
}
.about-section--about .about-wrapper .content-col {
  padding-top: 2em;
}
.about-section--about .about-wrapper .content {
  max-width: 80%;
}
@media screen and (max-width: 992px) {
  .about-section--about .about-wrapper .content {
    max-width: none;
  }
}
.about-section--about .about-wrapper .content p {
  margin-bottom: 1em;
}

.image-section--about {
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .image-section--about {
    top: -50px;
    padding-bottom: 60px;
  }
}

.values-section {
  background-color: #97baf4;
  overflow: hidden;
}
.values-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 992px) {
  .values-section .grid .col {
    grid-column: 1/-1;
  }
}
.values-section .container {
  position: relative;
}
.values-section .line-image {
  position: absolute;
  top: 0;
  height: 100%;
  left: 20px;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .values-section .line-image {
    left: unset;
    right: 0;
    height: 150%;
  }
}
@media screen and (max-width: 768px) {
  .values-section .line-image {
    right: -100px;
  }
}
@media screen and (max-width: 576px) {
  .values-section .line-image {
    right: unset;
    left: 20px;
    height: 120%;
    object-fit: cover;
    object-position: left;
  }
}
.values-section .line-image img {
  height: 100%;
}
.values-section .values-title-wrapper {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .values-section .values-title-wrapper {
    padding-top: 40px;
  }
}
.values-section .values-title-wrapper .values-title {
  position: relative;
  z-index: 0;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 576px) {
  .values-section .values-title-wrapper .values-title {
    justify-content: center;
  }
}
.values-section .values-title-wrapper .values-title > div {
  height: 100%;
  position: relative;
  top: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .values-section .values-title-wrapper .values-title > div {
    top: 0;
  }
}
.values-section .values-title-wrapper .values-title .title-inner {
  font-size: clamp(1.6rem, 4vw, 6rem);
  color: #ffffff;
}
.values-section .values-title-wrapper .values-title img {
  width: clamp(130px, 40vw, 666px);
}
.values-section .content {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .values-section .content {
    padding: 40px 0;
  }
}
.values-section .content p {
  margin-bottom: 1em;
}
@media screen and (max-width: 992px) {
  .values-section .content p {
    color: #ffffff;
  }
}
.values-section .content a {
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .values-section .content a {
    margin-top: 30px;
  }
}

.hero-section--values {
  margin-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .hero-section--values {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 992px) {
  .hero-section--values {
    margin-bottom: 40px;
  }
}
.hero-section--values .parallax-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.hero-section--values .hero-content {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}
.hero-section--values .hero-content .title {
  font-size: clamp(1.6rem, 6vw, 6rem);
  color: #331fbd;
}
.hero-section--values .hero-content img {
  width: clamp(130px, 80vw, 666px);
}

.bubbles-section .bubbles {
  display: grid;
  grid-template-columns: 30px 1fr 30px 1fr 30px 1fr 30px;
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .bubbles-section .bubbles {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .bubbles-section .bubbles {
    display: block;
  }
}
.bubbles-section .bubbles .bubble {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  grid-row: 1;
  height: 100%;
}
.bubbles-section .bubbles .bubble:hover .bubble-content {
  transform: none;
}
.bubbles-section .bubbles .bubble::before {
  content: "";
  position: absolute;
  border: 1px solid #0d69f0;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: inherit;
}
.bubbles-section .bubbles .bubble:first-child {
  grid-column: 1/4;
}
.bubbles-section .bubbles .bubble:first-child::before {
  border-color: #331fbd;
}
.bubbles-section .bubbles .bubble:first-child .bubble-title {
  color: #331fbd;
}
.bubbles-section .bubbles .bubble:nth-child(2) {
  grid-column: 3/6;
}
@media screen and (max-width: 768px) {
  .bubbles-section .bubbles .bubble:nth-child(2) {
    margin-top: -20px;
  }
}
.bubbles-section .bubbles .bubble:last-child {
  grid-column: 5/-1;
}
@media screen and (max-width: 768px) {
  .bubbles-section .bubbles .bubble:last-child {
    margin-top: -20px;
  }
}
.bubbles-section .bubbles .bubble:last-child::before {
  border-color: #bd5e1f;
}
.bubbles-section .bubbles .bubble:last-child .bubble-title {
  color: #bd5e1f;
}
.bubbles-section .bubbles .bubble-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  transform: translateY(105%) scale(0);
  z-index: 1;
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
}
.bubbles-section .bubbles .bubble-content::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 105%;
  aspect-ratio: 1;
  z-index: -1;
  background-color: #d2e1f9;
}
.bubbles-section .bubbles .bubble-content p {
  max-width: 70%;
  font-size: 2.4rem;
}
@media screen and (max-width: 1440px) {
  .bubbles-section .bubbles .bubble-content p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .bubbles-section .bubbles .bubble-content p {
    font-size: 1.6rem;
  }
}
.bubbles-section .bubbles .bubble-title {
  font-family: "Neco";
  font-size: clamp(3.6rem, 4vw, 8rem);
  color: #0d69f0;
}
@media screen and (max-width: 768px) {
  .bubbles-section .bubbles .bubble-title {
    font-size: clamp(3.6rem, 8vw, 8rem);
  }
}

.hero-section--services {
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .hero-section--services {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 992px) {
  .services-landing-page .section-title {
    margin-bottom: 30px !important;
  }
}

.accordion {
  margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .accordion {
    margin-bottom: 60px;
  }
}
.accordion-item:last-child .accordion-item-header {
  border-bottom: none;
}
.accordion-item-header {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #bbbbbb;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .accordion-item-header {
    width: calc(100% + 20px);
  }
}
.accordion-item-header[aria-expanded=true] {
  border-bottom: none;
}
.accordion-item-header[aria-expanded=true] .thumbnail::after {
  opacity: 0;
}
.accordion-item-header:hover .thumbnail::after {
  opacity: 0;
}
.accordion-item-header h3 {
  flex: 1;
  text-align: left;
  font-size: clamp(1.8rem, 4vw, 6rem);
  font-family: "Neco";
  color: #331fbd;
}
.accordion-item-header > div {
  display: flex;
  align-items: center;
  position: relative;
}
.accordion-item-header > div .thumbnail {
  width: 192px;
  aspect-ratio: 1;
  position: relative;
  transform-origin: right;
}
@media screen and (max-width: 1440px) {
  .accordion-item-header > div .thumbnail {
    width: 140px;
  }
}
@media screen and (max-width: 992px) {
  .accordion-item-header > div .thumbnail {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .accordion-item-header > div .thumbnail {
    width: 76px;
  }
}
.accordion-item-header > div .thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(210, 225, 249, 0.6);
  transition: 500ms ease;
}
.accordion-item-header > div .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion-item-header > div .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  aspect-ratio: 1;
}
@media screen and (max-width: 1440px) {
  .accordion-item-header > div .icon {
    width: 140px;
  }
}
@media screen and (max-width: 992px) {
  .accordion-item-header > div .icon {
    width: 100px;
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .accordion-item-header > div .icon {
    width: 76px;
  }
}
@media screen and (max-width: 1440px) {
  .accordion-item-header > div .icon img {
    width: 40px;
  }
}
@media screen and (max-width: 992px) {
  .accordion-item-header > div .icon img {
    width: 30px;
  }
}
@media screen and (max-width: 576px) {
  .accordion-item-header > div .icon img {
    width: 24px;
  }
}
.accordion-item-panel {
  overflow: hidden;
  display: none;
  max-height: 0;
}
.accordion-item-panel a {
  margin-top: 2em;
}
.accordion-item-panel table {
  margin: 2em 0;
  border-collapse: collapse;
}
.accordion-item-panel table tr td {
  font-size: 1.6rem;
  font-weight: 300;
  border-bottom: 1px solid #331fbd;
  padding: 4px 0;
  padding-right: 35px;
}
.accordion-item-panel table tr td:first-child {
  color: #331fbd;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .accordion-item-panel table tr td {
    font-size: 1.4rem;
    padding-right: 24px;
  }
}

.cards-section {
  margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .cards-section {
    margin-bottom: 60px;
  }
}
.cards-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cards-section .cards-grid .card {
  background-color: rgba(237, 236, 231, 0.4);
  padding: 40px;
  border-radius: 16px;
  min-height: 400px;
}
@media screen and (max-width: 992px) {
  .cards-section .cards-grid .card {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .card {
    padding: 16px;
    min-height: 240px;
  }
}
.cards-section .cards-grid .card .card-title {
  font-size: 3rem;
  color: #331fbd;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 1440px) {
  .cards-section .cards-grid .card .card-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 992px) {
  .cards-section .cards-grid .card .card-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .card .card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .cards-section .cards-grid .card .card-title {
    font-size: 1.6rem;
  }
}
.cards-section .cards-grid .card p {
  font-size: 2.4rem;
}
@media screen and (max-width: 1440px) {
  .cards-section .cards-grid .card p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .cards-section .cards-grid .card p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .cards-section .cards-grid .card p {
    font-size: 1.2rem;
  }
}

.more-services .section-subtitle--orange, .more-services .search-results-page .search-results-section .sr-category-title, .search-results-page .search-results-section .more-services .sr-category-title {
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .more-services .section-subtitle--orange, .more-services .search-results-page .search-results-section .sr-category-title, .search-results-page .search-results-section .more-services .sr-category-title {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .hero-section--products {
    height: calc(clamp(280px, 80vw, 960px) - var(--header-height));
  }
}
.hero-section--products .parallax-image-bg.overlay::after {
  background-color: rgba(13, 105, 240, 0.28);
}
.hero-section--products .parallax-image-mask-wrapper.flip img {
  top: -120%;
}
@media screen and (max-width: 992px) {
  .hero-section--products .parallax-image-mask-wrapper.flip img {
    top: -100%;
  }
}
.hero-section--products .hero-content {
  padding-bottom: 0;
}
.hero-section--products .hero-content .hero-content-wrapper {
  justify-content: center;
}
.hero-section--products .hero-content .hero-content-wrapper .hero-title {
  padding: 0;
}

.about-section--products {
  background: none;
  margin-bottom: 60px;
}
.about-section--products .about-wrapper .content-col {
  padding-top: 1em;
}
.about-section--products .about-wrapper .content-col .content p {
  margin-bottom: 1em;
}

.products-section--products {
  margin-bottom: 150px;
}
@media screen and (max-width: 992px) {
  .products-section--products {
    margin-bottom: 60px;
  }
}
.products-section--products .product-cards-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .products-section--products .product-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .products-section--products .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-section--products .product-cards-grid .product-card-wrapper {
  text-align: left;
  width: 100%;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.products-section--products .product-cards-grid .product-card-wrapper > div {
  width: 100%;
}
.products-section--products .product-cards-grid .product-card-wrapper .icon {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-section--products .product-cards-grid .product-card-wrapper .icon img {
  width: 24px;
}
@media screen and (max-width: 992px) {
  .products-section--products .product-cards-grid .product-card-wrapper .icon img {
    width: 20px;
  }
}

.contact-page .title-section .section-title {
  padding: 100px 0;
}
.contact-page .form-wrapper {
  background-color: #331fbd;
  border-radius: 16px 0 0 16px;
  padding: 60px;
  min-height: 350px;
}
@media screen and (max-width: 992px) {
  .contact-page .form-wrapper {
    margin-top: 40px;
    border-radius: 16px;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact-page .form-wrapper {
    padding: 24px;
  }
}
.contact-page .form-wrapper .form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-page .form-wrapper .form .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-page .form-wrapper .form .gform_footer {
  align-self: flex-end;
}
.contact-page .form-wrapper .form-field.gfield {
  grid-column: unset;
}
@media screen and (max-width: 768px) {
  .contact-page .form-wrapper .form-field.gfield {
    grid-column: 1/-1 !important;
  }
}
.contact-page .form-wrapper .form-field.gfield.gfield--width-full {
  grid-column: unset;
}
.contact-page .form-wrapper .form-field.gfield.gfield--type-textarea {
  grid-column: 1/-1;
}
.contact-page .form-wrapper .form-field.gfield .ginput_container input,
.contact-page .form-wrapper .form-field.gfield .ginput_container textarea {
  width: 100%;
  border: 1px solid #ffffff;
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 300;
  padding: 16px 22px;
  background: transparent;
}
@media screen and (max-width: 1600px) {
  .contact-page .form-wrapper .form-field.gfield .ginput_container input,
  .contact-page .form-wrapper .form-field.gfield .ginput_container textarea {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1440px) {
  .contact-page .form-wrapper .form-field.gfield .ginput_container input,
  .contact-page .form-wrapper .form-field.gfield .ginput_container textarea {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .contact-page .form-wrapper .form-field.gfield .ginput_container input,
  .contact-page .form-wrapper .form-field.gfield .ginput_container textarea {
    font-size: 1.6rem;
  }
}
.contact-page .form-wrapper .form-field.gfield .ginput_container input::placeholder,
.contact-page .form-wrapper .form-field.gfield .ginput_container textarea::placeholder {
  color: #ffffff;
}
.contact-page .form-wrapper .form-field.gfield .ginput_container textarea {
  resize: none;
}
@media screen and (max-width: 1200px) {
  .contact-page .form-wrapper .form-field {
    grid-column: 1/-1;
  }
}
.contact-page .form-wrapper .form .w-full {
  grid-column: 1/-1;
}
.contact-page .form-wrapper .form .btn-field {
  grid-column: 1/-1;
  text-align: end;
}
.contact-page .form-wrapper .form .gform_confirmation_message {
  color: #ffffff;
  font-size: 2.8rem;
}
@media screen and (max-width: 1200px) {
  .contact-page .form-wrapper .form .gform_confirmation_message {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 992px) {
  .contact-page .form-wrapper .form .gform_confirmation_message {
    font-size: 2rem;
  }
}
.contact-page .form-section {
  position: relative;
}
.contact-page .content.form-content {
  padding: 0;
}
@media screen and (max-width: 992px) {
  .contact-page .content.form-content {
    padding: 0 20px;
  }
}
.contact-page .content.form-content::before {
  content: "";
  position: absolute;
  inset: 0;
  grid-column: 4/-1;
  background-color: #331fbd;
}
@media screen and (max-width: 992px) {
  .contact-page .content.form-content::before {
    display: none;
  }
}
.contact-page .locations-section {
  padding-top: 0;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 992px) {
  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.members-grid .member-card-wrapper {
  background-color: #e6f0fe;
  border-radius: 16px;
  padding: 60px 60px 30px 60px;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1600px) {
  .members-grid .member-card-wrapper {
    padding: 40px 40px 30px 40px;
  }
}
@media screen and (max-width: 1440px) {
  .members-grid .member-card-wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .members-grid .member-card-wrapper {
    padding: 16px;
  }
}
.members-grid .member-card .member-image {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1em;
  overflow: hidden;
}
.members-grid .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 400ms cubic-bezier(0.6, 0.045, 0.1, 0.96);
  transition-duration: 500ms;
}
.members-grid .member-card .member-name, .members-grid .member-card .member-title {
  color: #331fbd;
}
.members-grid .member-card .member-name {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .members-grid .member-card .member-name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 992px) {
  .members-grid .member-card .member-name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .members-grid .member-card .member-name {
    font-size: 1.6rem;
  }
}
.members-grid .member-card .member-title {
  font-size: 2.4rem;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  .members-grid .member-card .member-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .members-grid .member-card .member-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .members-grid .member-card .member-title {
    font-size: 1.2rem;
  }
}
.members-grid .member-card .icon {
  margin-top: 30px;
}
.members-grid .member-card .icon img {
  width: 28px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .members-grid .member-card .icon img {
    width: 20px;
  }
}
.members-grid .member-card:hover .member-image img {
  scale: 1.2;
}

.search-results-page .title-section {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .search-results-page .title-section {
    padding: 60px 0;
  }
}
.search-results-page .title-section h1 {
  font-size: 6rem;
}
@media screen and (max-width: 992px) {
  .search-results-page .title-section h1 {
    font-size: 4rem;
  }
}
.search-results-page .search-results-section .sr-category {
  margin-bottom: 3em;
}
.search-results-page .search-results-section .sr-category-title {
  font-size: 6rem;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 992px) {
  .search-results-page .search-results-section .sr-category-title {
    font-size: 4rem;
  }
}
.search-results-page .search-results-section .sr-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.search-results-page .search-results-section .sr-list a {
  font-size: 3rem;
  font-weight: 500;
  transition: 250ms ease;
}
.search-results-page .search-results-section .sr-list a:hover {
  color: #331fbd;
}
@media screen and (max-width: 992px) {
  .search-results-page .search-results-section .sr-list a {
    font-size: 2.2rem;
  }
}
