@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;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

button, input {
  font: inherit;
}

.science-hero {
  height: 100vh;
  position: relative;
  z-index: 0;
}
.science-hero p {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 70px;
  width: 1280px;
  margin: 0;
}

.sub_hero {
  display: flex;
  grid-gap: 20px;
  padding: 120px calc((100vw - 1366px) / 2) 140px;
  align-items: center;
}
.sub_hero .sub_hero-text {
  flex: 3;
  padding: 0 40px;
}
.sub_hero .sub_hero-text p {
  font-size: 24px;
  line-height: 25px;
}
.sub_hero .sub_hero-text p span {
  font-size: 14px;
  letter-spacing: 2px;
}
.sub_hero .sub_hero-text button {
  display: block;
  width: 175px;
  text-align: center;
  padding: 10px 0;
  color: #08072d;
  border: 1px solid #08072d;
  outline: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  margin: 60px auto 0;
}
.sub_hero .sub_hero-text button:hover {
  background: #08072d;
  color: #fff;
}
.sub_hero .sub_hero-img {
  flex: 4;
}

.stone_info {
  display: flex;
  grid-gap: 40px;
  padding: 0 calc((100vw - 1100px) / 2) 140px;
  align-items: center;
  position: relative;
  overflow: visible;
}
.stone_info__track {
  display: flex;
  grid-gap: 40px;
  width: 100%;
}
.stone_info__arrow, .stone_info__dots {
  display: none;
}
.stone_info .info-block {
  flex: 1;
  padding: 30px;
  border: 1px solid #000;
  height: 220px;
}
.stone_info .info-block h3 {
  font-size: 18px;
  font-weight: normal;
  margin: 0 0 15px;
}
.stone_info .info-block p {
  font-size: 14px;
  margin: 0;
  letter-spacing: 2px;
  line-height: 25px;
}

.sub_hero-2 {
  display: flex;
  grid-gap: 20px;
  padding: 0 calc((100vw - 1366px) / 2) 120px;
  align-items: center;
}
.sub_hero-2 .sub_hero-text {
  flex: 3;
  padding: 0 40px;
}
.sub_hero-2 .sub_hero-text p {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 25px;
}
.sub_hero-2 .sub_hero-text button {
  display: block;
  width: 175px;
  text-align: center;
  padding: 10px 0;
  color: #08072d;
  border: 1px solid #08072d;
  outline: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  margin: 60px auto 0;
}
.sub_hero-2 .sub_hero-text button:hover {
  background: #08072d;
  color: #fff;
}
.sub_hero-2 .sub_hero-img {
  flex: 4;
}

.science-compare {
  padding: 0 30px 120px;
  color: #05053f;
  background: #ffffff;
}
.science-compare__header {
  max-width: 1120px;
  margin: 0 auto 60px;
  text-align: center;
}
.science-compare__header h2 {
  margin: 0 0 34px;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 400;
  line-height: 1;
}
.science-compare__header p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 2px;
}
.science-compare__desktop {
  max-width: 1200px;
  margin: 0 auto;
}
.science-compare__mobile {
  display: none;
  position: relative;
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  color: #05053f;
  border: 2px solid #05053f;
}
.compare-table th,
.compare-table td {
  border: 1.5px solid #05053f;
  text-align: center;
  vertical-align: middle;
  height: 48px;
  padding: 6px 12px;
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 1;
  font-weight: 400;
}
.compare-table th.zeverra,
.compare-table td.zeverra {
  background: #05053f;
}
.compare-table th {
  background: #e9e9ee;
}
.compare-table td:nth-child(2),
.compare-table th:nth-child(2) {
  background: rgba(5, 5, 63, 0.55);
  color: #ffffff;
}

.compare-mobile__active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #05053f;
}
.compare-mobile__fixed {
  display: grid;
}
.compare-mobile__fixed > div {
  height: 49px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-bottom: 1px solid #05053f;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.compare-mobile__fixed > div:last-child {
  border-bottom: 0;
}
.compare-mobile__fixed:first-child {
  border-right: 1px solid #05053f;
}
.compare-mobile__fixed:first-child > div {
  background: #e9e9ee;
}
.compare-mobile__head {
  height: 49px;
  min-height: 0;
  font-size: 14px;
}
.compare-mobile__zeverra {
  background: rgba(5, 5, 63, 0.55);
  color: #ffffff;
}
.compare-mobile__zeverra .compare-mobile__head {
  background: rgba(5, 5, 63, 0.1);
  color: #05053f;
}
.compare-mobile__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 30px 0 0;
}
.compare-mobile__arrow {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.compare-mobile__arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.compare-mobile__arrow[data-compare-prev]::before {
  border-right: 10px solid #05053f;
}
.compare-mobile__arrow[data-compare-next]::before {
  border-left: 10px solid #05053f;
}
.compare-mobile__dots {
  display: flex;
  transform: translate(-7px, 1px);
  gap: 16px;
}
.compare-mobile__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 5, 63, 0.18);
  cursor: pointer;
}
.compare-mobile__dots button.is-active {
  background: #05053f;
}
.compare-mobile__slider {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 50%;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  line-height: 1;
}
.compare-mobile__slider::-webkit-scrollbar {
  display: none;
}
.compare-mobile__card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border: 1px solid #05053f;
  border-left: 0;
  align-self: flex-start;
  margin-bottom: 0;
  color: #05053f;
}
.compare-mobile__card.compare-mobile__card--zeverra > div {
  background: rgba(5, 5, 63, 0.58);
  color: #fff;
}
.compare-mobile__card > div {
  height: 49px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-bottom: 1px solid #05053f;
  background: #ffffff;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.compare-mobile__card > div:last-child {
  border-bottom: 0;
}
.compare-mobile__card-head {
  background: transparent;
  color: #05053f;
  font-size: 14px;
}

.sub_hero-3 {
  display: flex;
  grid-gap: 20px;
  padding: 0 calc((100vw - 1366px) / 2) 160px;
  align-items: center;
}
.sub_hero-3 .sub_hero-text {
  flex: 3;
  padding: 0 40px;
}
.sub_hero-3 .sub_hero-text p {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 25px;
}
.sub_hero-3 .sub_hero-text button {
  display: block;
  width: 175px;
  text-align: center;
  padding: 10px 0;
  color: #000;
  border: 1px solid #000;
  outline: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  margin: 60px auto 0;
}
.sub_hero-3 .sub_hero-text button:hover {
  background: #000;
  color: #fff;
}
.sub_hero-3 .sub_hero-img {
  flex: 4;
}

@media (max-width: 900px) {
  .science-hero {
    height: 95vh;
  }
  .science-hero p {
    max-width: 90vw;
    font-size: 28px;
    text-align: center;
    bottom: 40px;
  }
  .sub_hero {
    padding: 0 0 80px;
    display: block;
  }
  .sub_hero .sub_hero-text {
    padding: 80px 40px;
  }
  .sub_hero .sub_hero-text p {
    margin: 0;
    font-size: 18px;
    line-height: 20px;
  }
  .sub_hero .sub_hero-text p span {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .sub_hero .sub_hero-text button {
    margin: 30px auto 0;
  }
  .stone_info {
    position: relative;
    display: block;
    padding: 0 0 100px;
    overflow: hidden;
  }
  .stone_info__track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-inline: calc((100vw - min(78vw, 360px)) / 2);
  }
  .stone_info__track::-webkit-scrollbar {
    display: none;
  }
  .stone_info .info-block {
    flex: 0 0 min(78vw, 360px);
    height: 210px;
    padding: 40px 30px 30px;
    border-color: #05053f;
    background: #ffffff;
    color: #05053f;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    pointer-events: auto;
  }
  .stone_info .info-block h3 {
    font-size: 22px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .stone_info .info-block p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
  }
  .stone_info__arrow {
    position: absolute;
    display: block;
    bottom: 42px;
    z-index: 4;
    border: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
    padding: 0 6px;
  }
  .stone_info__arrow::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  .stone_info__arrow--prev {
    left: calc(50% - 68px);
  }
  .stone_info__arrow--prev::before {
    border-right: 10px solid #05053f;
  }
  .stone_info__arrow--next {
    right: calc(50% - 68px);
  }
  .stone_info__arrow--next::before {
    border-left: 10px solid #05053f;
  }
  .stone_info__dots {
    position: absolute;
    display: flex;
    left: 50%;
    bottom: 50px;
    z-index: 4;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
  }
  .stone_info__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(5, 5, 63, 0.18);
    cursor: pointer;
  }
  .stone_info__dots button.is-active {
    background: #05053f;
  }
  .science-compare {
    padding: 0 50px 80px;
  }
  .science-compare__header {
    margin-bottom: 40px;
  }
  .science-compare__header h2 {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .science-compare__header p {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
  }
  .science-compare__desktop {
    display: none;
  }
  .science-compare__mobile {
    display: block;
  }
  .compare-mobile__slider {
    margin: 0;
    transform: none;
    width: 50%;
    overscroll-behavior-x: contain;
  }
  .sub_hero-2 {
    display: block;
  }
  .sub_hero-2 .sub_hero-text {
    padding: 80px 40px 0;
  }
  .sub_hero-2 .sub_hero-text p {
    font-size: 12px;
    margin: 0;
    line-height: 20px;
    letter-spacing: 0.5px;
  }
  .sub_hero-2 .sub_hero-text button {
    margin: 30px auto 0;
  }
  .sub_hero-3 {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0 60px;
  }
  .sub_hero-3 .sub_hero-text {
    padding: 50px 40px 0;
  }
  .sub_hero-3 .sub_hero-text p {
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.5px;
  }
  .sub_hero-3 .sub_hero-text button {
    margin: 30px auto 0;
  }
}
@media (max-width: 520px) {
  .stone_info__track {
    padding-inline: calc((100vw - min(82vw, 330px)) / 2);
  }
  .stone_info .info-block {
    flex-basis: min(82vw, 330px);
    height: 210px;
    padding: 40px 30px 30px;
  }
}
.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 */