@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&display=swap");
.cookie-banner {
  position: fixed;
  z-index: 9999;
  bottom: 24px;
  right: 30px;
  width: min(400px, 100% - 32px);
  max-width: calc(100vw - 60px);
  background: #ffffff;
  border: 1px solid #05053f;
  color: #08072d;
  box-shadow: 0 24px 70px rgba(5, 5, 63, 0.16);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner__inner {
  align-items: center;
  padding: 30px 20px 18px;
}
.cookie-banner p {
  margin: 0;
  font-family: "Gentium Basic", Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.35;
}
.cookie-banner__actions {
  display: flex;
  padding-top: 15px;
  gap: 10px;
}
.cookie-banner__button {
  width: 100%;
  min-height: 36px;
  padding: 0 20px;
  border: 1px solid #05053f;
  background: #05053f;
  color: #ffffff;
  cursor: pointer;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-size: 13px;
  transition: 0.18s ease;
}
.cookie-banner__button:hover {
  background: #08072d;
}
.cookie-banner__button--secondary {
  background: #ffffff;
  color: #05053f;
}
.cookie-banner__button--secondary:hover {
  background: #05053f;
  color: #ffffff;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    width: 100%;
    max-width: 100%;
    right: 0;
  }
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 45px 18px 30px;
  }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
  }
  .cookie-banner__button {
    width: 100%;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  height: 88px;
  padding: 0 max(30px, (100vw - 1690px) / 2);
  background: transparent;
  color: #08072d;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-header--dark {
  color: #08072d;
}
.site-header--dark .brand img {
  filter: none;
}
.site-header--dark {
  background: rgba(255, 255, 255, 0.5);
}
.site-header--light, .site-header.white {
  color: #ffffff;
  background: transparent;
}
.site-header--light .brand img, .site-header.white .brand img {
  filter: brightness(0) invert(1);
}
.site-header--menu-open, .site-header--light.site-header--menu-open, .site-header.white.site-header--menu-open {
  color: #08072d;
  background: #ffffff;
}
.site-header--menu-open .brand img, .site-header--light.site-header--menu-open .brand img, .site-header.white.site-header--menu-open .brand img {
  filter: none;
}

.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: auto;
  height: 32px;
}
.brand img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.2s ease;
}
.brand__line {
  display: block;
  width: clamp(70px, 12vw, 190px);
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 18%, currentColor 82%, transparent);
}

.icon-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 6px;
  cursor: pointer;
}

.cart-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  justify-self: end;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 16px;
  padding: 48px;
  background: #ffffff;
  color: #08072d;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.mobile-menu a {
  color: #08072d;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    padding-inline: 20px;
    background: transparent;
  }
  .site-header--menu-open, .site-header--light.site-header--menu-open, .site-header.white.site-header--menu-open {
    color: #08072d;
    background: #ffffff;
  }
  .site-header--menu-open .brand img, .site-header--light.site-header--menu-open .brand img, .site-header.white.site-header--menu-open .brand img {
    filter: none;
  }
  .mobile-menu {
    padding: 30px;
  }
  .brand {
    gap: 12px;
    height: 24px;
  }
  .brand img {
    width: 24px;
    height: 24px;
  }
  .brand__line {
    display: none;
  }
}
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #08072d;
  background: #ffffff;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  display: flex;
  flex-direction: column;
}

.contact-hero {
  height: 100vh;
}
.contact-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.contact-section {
  padding: 140px 0 200px;
  width: 1200px;
  max-width: calc(100vw - 96px);
  margin: 0 auto;
}
.contact-section h1 {
  text-align: center;
  color: #05053f;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  margin: 0 0 90px;
}
.contact-section__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 500px);
  justify-content: space-between;
}

.contact-form__message {
  margin-bottom: 24px;
  color: #05053f;
}
.contact-form__submit {
  display: block;
  margin: 40px auto 0;
  padding: 12px 0;
  font-size: 14px;
  width: 140px;
  border: 1px solid #05053f;
  background: transparent;
  color: #05053f;
  cursor: pointer;
}
.contact-form__submit:hover {
  color: #fff;
  background: #05053f;
}

.field {
  margin-bottom: 25px;
}
.field label {
  display: block;
  margin-bottom: 20px;
  color: #05053f;
  font-size: 16px;
}
.field input, .field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #eceaf0;
  padding: 10px 14px;
  color: #05053f;
  border-bottom: 1px solid #05053f;
  font-size: 12px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  margin-top: 6px;
  color: #b3261e;
  font-size: 12px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #05053f;
}
.contact-details a {
  color: inherit;
  text-decoration: none;
}
.contact-details p:not(.contact-details__title) {
  margin: 0;
  text-align: center;
}
.contact-details__title {
  margin: 40px 0 32px;
}
.contact-details ul {
  margin: 0;
  padding: 0 0 60px;
  list-style: none;
  transform: translateX(-10px);
}
.contact-details li {
  margin: 8px 0 0;
  text-align: right;
  letter-spacing: 0.5px;
}

.contact-story {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-story__image img {
  width: 100%;
  display: block;
}
.contact-story__text {
  color: #05053f;
}
.contact-story__text p {
  margin: 0 0 18px;
  line-height: 25px;
  letter-spacing: 1px;
  font-size: 14px;
}

.partners-section {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 200px;
}
.partners-section h2 {
  text-align: center;
  color: #05053f;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  margin: 0 0 140px;
}
.partners-section__cta {
  text-align: center;
  color: #05053f;
  max-width: 760px;
  line-height: 30px;
  letter-spacing: 1.4px;
  font-size: 16px;
  margin: 200px auto 0;
}
.partners-section__cta a {
  color: inherit;
}

.partner-feature {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: center;
}
.partner-feature__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.partner-feature__heading h3 {
  margin: 0;
  color: #05053f;
  font-size: 40px;
  font-weight: 400;
}
.partner-feature__heading img {
  width: 100px;
}
.partner-feature p {
  color: #05053f;
  line-height: 25px;
  letter-spacing: 1.5px;
  text-align: justify;
}
.partner-feature__image img {
  width: 100%;
  display: block;
}

.company-section__bar {
  height: 50px;
  background: #0B0B45;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 1.4px;
}
.company-section__track {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.company-section__controls {
  display: none;
}

.company-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}
.company-card h3 {
  color: #05053f;
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 400;
}
.company-card p {
  text-transform: uppercase;
  color: #05053f;
  margin: 0;
  font-size: 12px;
  line-height: 34px;
  letter-spacing: 1.4px;
}

.contact-form__message {
  padding: 15px;
  color: #154d2d;
  border: 1px solid #154d2d;
  font-size: 14px;
  margin-bottom: 30px;
}

@media (max-width: 1400px) {
  .contact-story__text {
    padding-right: 50px;
  }
  .partner-feature__text {
    padding-left: 50px;
  }
}
@media (max-width: 900px) {
  .contact-hero {
    height: 95vh;
  }
  .contact-section {
    padding: 80px 0;
  }
  .contact-section h1 {
    margin-bottom: 50px;
  }
  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-section .field label {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .contact-section .contact-form__submit {
    font-size: 12px;
    padding: 10px 0;
    width: 120px;
    margin: 30px auto 0;
  }
  .contact-section .contact-details {
    margin: 40px 0 0;
  }
  .contact-section .contact-details__title {
    margin: 40px 0 14px;
  }
  .contact-section .contact-details ul {
    padding-bottom: 40px;
  }
  .contact-story, .partner-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-story {
    padding: 0 0 80px;
  }
  .contact-story__text {
    display: none;
  }
  .partners-section {
    padding: 0 0 80px;
  }
  .partners-section h2 {
    font-size: 29px;
    margin-bottom: 70px;
  }
  .partners-section__cta {
    font-size: 12px;
    padding: 0 48px;
    line-height: 20px;
    margin: 120px 0 0;
  }
  .partners-section__cta br {
    display: none;
  }
  .partner-feature__text {
    padding: 0 48px;
  }
  .partner-feature__heading {
    justify-content: center;
    gap: 30px;
  }
  .partner-feature__heading h3 {
    font-size: 20px;
  }
  .partner-feature__heading img {
    width: 40px;
  }
  .partner-feature p {
    font-size: 12px;
    text-align: left;
    letter-spacing: 0;
    line-height: 16px;
    margin: 40px 0 0;
  }
  .company-section {
    position: relative;
    padding-bottom: 40px;
  }
  .company-section__bar {
    font-size: 12px;
  }
  .company-section__track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-inline: calc((100vw - min(78vw, 340px)) / 2);
  }
  .company-section__track::-webkit-scrollbar {
    display: none;
  }
  .company-section__controls {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    gap: 16px;
    align-items: center;
  }
  .company-section__dots {
    display: flex;
    gap: 12px;
    margin-left: -10px;
  }
  .company-section__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(5, 5, 63, 0.18);
  }
  .company-section__dots button.is-active {
    background: #05053f;
  }
  .company-section__arrow {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    padding: 0;
  }
  .company-section__arrow::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  .company-section__arrow[data-company-prev]::before {
    border-right: 10px solid #05053f;
  }
  .company-section__arrow[data-company-next]::before {
    border-left: 10px solid #05053f;
  }
  .company-card {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(290px, 390px) 1fr;
  align-items: center;
  padding: 0 max(30px, (100vw - 1690px) / 2);
  gap: 42px;
  min-height: 100px;
  border-top: 15px solid #05053f;
}
.footer_holder {
  width: 100%;
  display: flex;
  align-items: flex-end;
  grid-gap: 42px;
}

.footer-logo {
  display: block;
  width: 36px;
  height: 36px;
}
.footer-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.newsletter {
  display: flex;
  flex: 1;
}
.newsletter input {
  width: 100%;
  height: 36px;
  border: 1px solid #d7d3df;
  padding: 0 12px;
  font-size: 12px;
  outline: none;
}
.newsletter button {
  height: 36px;
  border: 1px solid #05053f;
  background: #05053f;
  color: #ffffff;
  padding: 0 16px;
  font-size: 12px;
  cursor: pointer;
}

.footer-links {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 12px 54px;
  font-size: 11px;
  text-transform: uppercase;
}
.footer-links__column {
  display: contents;
}
.footer-links a {
  text-decoration: none;
}

@media screen and (max-width: 1200px) {
  .footer {
    grid-template-columns: minmax(200px, 300px) 1fr;
    gap: 20px;
  }
  .footer-links {
    gap: 12px 20px;
    font-size: 9px;
  }
}
@media screen and (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
    padding-block: 28px;
  }
  .footer_holder {
    justify-content: space-between;
    grid-gap: 30px;
  }
  .newsletter {
    width: 100%;
  }
  .footer-links {
    justify-self: start;
    grid-template-columns: repeat(2, auto);
    gap: 14px 80px;
  }
  .footer-links__column {
    display: contents;
  }
}/*# sourceMappingURL=style.css.map */