@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;
}

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

a {
  color: inherit;
}

button, input {
  font: inherit;
}

main {
  flex: 1 0 auto;
}

.hero_content {
  height: 100vh;
}

.guarantee-main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin: 0 auto;
  padding: 140px calc((100vw - 1366px) / 2);
  grid-template-areas: "guarantee-hero-new guarantee-hero-new" "guarantee-sub_hero guarantee-sub_hero" "guarantee-hero guarantee-hero" "guarantee-form guarantee-visual";
}

.guarantee-hero-new {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 140px;
  grid-area: guarantee-hero-new;
}
.guarantee-hero-new h1 {
  font-size: 36px;
  line-height: 45px;
}
.guarantee-hero-new p {
  font-size: 14px;
  width: 550px;
  max-width: 100%;
  letter-spacing: 2px;
  line-height: 25px;
}

.guarantee-sub_hero {
  display: flex;
  padding: 0;
  grid-area: guarantee-sub_hero;
}
.guarantee-sub_hero .sub_hero-img {
  flex: 2;
}
.guarantee-sub_hero .sub_hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}
.guarantee-sub_hero .sub_hero-text p {
  margin: 0 0 20px;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 25px;
}
.guarantee-sub_hero .sub_hero-text p.sub_hero-text--mobile {
  display: none;
}
.guarantee-sub_hero .sub_hero-text .sub_hero-btns {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 15px;
}
.guarantee-sub_hero .sub_hero-text .sub_hero-btns button {
  width: 175px;
  padding: 12px 0;
  text-align: center;
  border: 1px solid #05053f;
  font-size: 12px;
  color: #08072d;
  background: #fff;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
.guarantee-sub_hero .sub_hero-text .sub_hero-btns button:hover, .guarantee-sub_hero .sub_hero-text .sub_hero-btns button:focus-visible, .guarantee-sub_hero .sub_hero-text .sub_hero-btns button:active {
  background: #05053f;
  color: #ffffff;
}

.guarantee-hero {
  max-width: 860px;
  margin: 0 auto 78px;
  padding-inline: 24px;
  padding-top: 160px;
  text-align: center;
  grid-area: guarantee-hero;
}
.guarantee-hero h1 {
  margin: 0 0 30px;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 0.95;
  color: #05053f;
}

.guarantee-form-section {
  grid-area: guarantee-form;
  padding: 0 45px;
}

.guarantee-form {
  grid-column: 1;
  min-width: 0;
}

.form-message {
  grid-column: 1/-1;
  margin: 0 0 26px;
  padding: 14px 16px;
  border: 1px solid currentColor;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 2px;
}
.form-message--error {
  color: #8d1d1d;
  background: rgba(141, 29, 29, 0.04);
}
.form-message--success {
  color: #154d2d;
  background: rgba(21, 77, 45, 0.05);
}

.form-text {
  padding-bottom: 40px;
}
.form-text p {
  font-size: 14px;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 44px 60px;
}

.field label {
  display: block;
  margin: 0 0 18px;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
}
.field input {
  width: 100%;
  height: 26px;
  border: 0;
  border-bottom: 1px solid #05053f;
  border-radius: 0;
  background: #e9e9ee;
  padding: 2px 8px;
  color: #08072d;
  outline: none;
  font-size: 14px;
}
.field input:focus {
  background: rgb(241.6307692308, 241.6307692308, 244.6692307692);
  box-shadow: 0 1px 0 #05053f;
}

.field-error {
  margin: 8px 0 0;
  color: #8d1d1d;
  font-size: 12px;
  line-height: 1.35;
}

.field input.is-invalid {
  border-bottom-color: #8d1d1d;
  box-shadow: 0 1px 0 #8d1d1d;
}

.terms-check input[aria-invalid=true] + span {
  border-color: #8d1d1d;
  box-shadow: 0 0 0 1px #8d1d1d;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.terms-check {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  margin: 42px 0 36px;
}
.terms-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.terms-check span {
  width: 14px;
  height: 14px;
  background: #e9e9ee;
  border: 1px solid transparent;
}
.terms-check input:checked + span {
  background: #05053f;
  box-shadow: inset 0 0 0 3px #e9e9ee;
}
.terms-check small {
  max-width: 720px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(8, 7, 45, 0.74);
}
.terms-check .field-error {
  grid-column: 2;
  margin: 6px 0 0;
}
.terms-check a {
  font-weight: 700;
  font-style: italic;
}

.bind-button {
  min-height: 42px;
  margin-left: 176px;
  border: 1px solid #05053f;
  background: #ffffff;
  color: #08072d;
  cursor: pointer;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-size: 14px;
  padding: 0 45px;
}
.bind-button:hover, .bind-button:focus-visible, .bind-button:active {
  background: #05053f;
  color: #ffffff;
}
.bind-button:hover img, .bind-button:focus-visible img, .bind-button:active img {
  filter: brightness(0) invert(1);
}

.guarantee-image {
  min-height: 225px;
  margin-bottom: 15px;
}
.guarantee-image img {
  -o-object-fit: cover;
     object-fit: cover;
  background: #dfd8c8;
}
.guarantee-image--mobile {
  display: none;
}

.guarantee-main-visual {
  grid-area: guarantee-visual;
  padding: 0 45px;
}

.guarantee-visual {
  display: flex;
  flex-direction: column;
}

.covered-not_covered {
  display: flex;
  grid-gap: 30px;
}
.covered-not_covered .coverage {
  width: 100%;
}
.covered-not_covered .coverage h3 {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: normal;
}
.covered-not_covered .coverage ul {
  font-size: 14px;
  padding-left: 20px;
}
.covered-not_covered .coverage ul li {
  padding-left: 3px;
}
.covered-not_covered .coverage ul li:not(:last-of-type) {
  margin-bottom: 5px;
}
.covered-not_covered .coverage ul li::marker {
  font-size: 0.7em;
}

.claim {
  margin-bottom: 20px;
}
.claim h3 {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: normal;
}
.claim p {
  font-size: 14px;
  margin: 0;
}

.decor-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(500px, 100%);
  max-width: 500px;
  margin: 18px auto 0;
}
.decor-line span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7d3df, transparent);
}
.decor-line img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}

.guarantee-footer {
  flex-shrink: 0;
  min-height: 140px;
  background: #05053f;
}

.verify-modal-open {
  overflow: hidden;
}

.verify-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.verify-modal[hidden] {
  display: none;
}
.verify-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.verify-modal__dialog {
  position: absolute;
  width: min(500px, 100% - 60px);
  background: #ffffff;
  border: 14px solid #ffffff;
  color: #05053f;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.verify-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #05053f;
  pointer-events: none;
}
.verify-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #05053f;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.verify-modal__inner, .verify-modal__result {
  position: relative;
  z-index: 1;
  padding: 45px 24px 30px;
}
.verify-modal h2 {
  max-width: 100%;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}
.verify-modal__form {
  display: grid;
  justify-items: center;
}
.verify-modal__form label {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
}
.verify-modal__form input {
  width: 100%;
  height: 34px;
  border: 0;
  border-bottom: 2px solid #05053f;
  background: #e9e9ee;
  color: #05053f;
  text-align: center;
  font-size: 14px;
  outline: none;
  text-transform: uppercase;
}
.verify-modal__error {
  margin: 16px 0 0;
  color: #8d1d1d;
  font-size: 14px;
  text-align: center;
}
.verify-modal__result dl {
  display: grid;
  gap: 15px;
  margin: 15px 0 0;
}
.verify-modal__result dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
}
.verify-modal__result dt {
  font-size: 16px;
  line-height: 1.1;
}
.verify-modal__result dd {
  margin: 0;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #05053f;
  padding: 4px 12px;
  font-size: 14px;
  text-align: center;
}
.verify-modal__result--missing p {
  margin: 25px 0;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.8px;
}
.verify-modal__result--success {
  padding: 60px 24px 45px;
  text-align: left;
}
.verify-modal__result--success h2 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-align: left;
}
.verify-modal__result--success p {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.verify-modal__result--success strong {
  display: inline-block;
  font-weight: 400;
  color: #05053f;
}

@media (max-width: 700px) {
  .verify-modal__dialog {
    width: calc(100% - 30px);
  }
  .verify-modal__inner, .verify-modal__result {
    padding: 45px 20px 30px;
  }
  .verify-modal h2 {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
  }
  .verify-modal__form label {
    margin-bottom: 18px;
    font-size: 14px;
  }
  .verify-modal__form input {
    height: 34px;
    font-size: 14px;
  }
  .verify-modal__result dl {
    gap: 18px;
  }
  .verify-modal__result dl > div {
    grid-template-columns: 100px 1fr;
  }
  .verify-modal__result dt {
    font-size: 14px;
  }
  .verify-modal__result dd {
    min-height: 30px;
    font-size: 12px;
  }
  .verify-modal__result--missing p {
    font-size: 14px;
  }
  .verify-modal__result--success {
    padding: 60px 22px 38px;
  }
  .verify-modal__result--success h2 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .verify-modal__result--success p {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 1000px) {
  .guarantee-main-section {
    grid-template-columns: 1fr;
    max-width: 100vw;
    padding: 100px 0 60px;
    grid-template-areas: "guarantee-hero" "guarantee-form" "guarantee-sub_hero" "guarantee-visual";
  }
  .guarantee-hero-new {
    display: none;
  }
  .hero_content {
    height: 95vh;
  }
  .guarantee-hero {
    margin: 0;
    padding: 0;
  }
  .guarantee-hero h1 {
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .guarantee-form-section {
    padding: 0 48px 80px;
  }
  .form-text {
    display: none;
  }
  .guarantee-sub_hero {
    display: block;
  }
  .guarantee-sub_hero .sub_hero-img {
    width: 100%;
    aspect-ratio: 1/1.2;
  }
  .guarantee-sub_hero .sub_hero-img img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .guarantee-sub_hero .sub_hero-text {
    padding: 60px 48px 80px;
    display: block;
  }
  .guarantee-sub_hero .sub_hero-text p {
    font-size: 12px;
    letter-spacing: initial;
    line-height: 20px;
  }
  .guarantee-sub_hero .sub_hero-text p.sub_hero-text--desktop {
    display: none;
  }
  .guarantee-sub_hero .sub_hero-text p.sub_hero-text--mobile {
    display: block;
  }
  .guarantee-sub_hero .sub_hero-text .sub_hero-btns {
    margin-top: 30px;
  }
  .guarantee-main-visual {
    padding: 0;
  }
  .guarantee-image {
    width: 100%;
    margin: 0;
    padding: 0 0 60px;
  }
  .guarantee-image--desktop {
    display: none;
  }
  .guarantee-image--mobile {
    display: block;
  }
  .guarantee-claims {
    padding: 0 48px;
  }
  .guarantee-claims h3, .guarantee-claims .coverage h3 {
    font-size: 20px;
  }
  .covered-not_covered {
    display: block;
  }
  .coverage {
    padding-bottom: 40px;
  }
  .coverage ul {
    margin: 25px 0 0;
  }
  .claim h3 {
    margin: 0 0 10px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 30px;
  }
  .field label {
    margin-bottom: 14px;
    font-size: 18px;
  }
  .field input {
    height: 22px;
  }
  .terms-check {
    grid-template-columns: 14px 1fr;
    gap: 8px;
    margin: 34px 0 30px;
  }
  .terms-check small {
    font-size: 10px;
    line-height: 1.35;
  }
  .bind-button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    margin: 0;
  }
  .guarantee-footer {
    min-height: 170px;
  }
}
@media (min-width: 1400px) {
  .guarantee-sub_hero .sub_hero-text {
    padding: 0 0 0 50px;
  }
  .guarantee-form-section {
    padding: 0 45px 0 0;
  }
  .guarantee-main-visual {
    padding: 0 0 0 45px;
  }
}
.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 */