* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  margin: 0;
  overflow-x: hidden;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --app-height: 100%;
  --container: 1152px;
  --container-wide: 1400px;
  --margin: 8px;
  --color-black: #181818;
  --color-black-rgb: 29, 29, 27;
  --color-white: #FFFFFF;
  --color-white-rgb: 255, 255, 255;
  --color-golden: #B58500;
  --color-golden-rgb: 181, 133, 0;
  --fast-transition: .2s;
  --transition: .4s;
  --slow-transition: .6s;
  --slowest-transition: 1s;
  --text-font: "KeplerStd", "sans-serif";
  --title-font: "ItalianPlate", "serif";
}

.container {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1440px) {
  .container {
    padding: 0;
  }
}
.container--wide {
  max-width: var(--container-wide);
}

@font-face {
  font-family: "KeplerStd";
  src: url(../../assets/fonts/KeplerStd-Light.woff2);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ItalianPlate";
  src: url(../../assets/fonts/ItalianPlateNo1-Demibold.woff2);
  font-weight: 600;
  font-style: normal;
}
svg,
svg > * {
  font-family: var(--title-font);
}

h1 {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 22px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 54px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 22px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 45px;
  }
}

h3 {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 20px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 35px;
  }
}

h4 {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 18px;
}
@media (min-width: 768px) {
  h4 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 32px;
  }
}

h5 {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 18px;
}
@media (min-width: 768px) {
  h5 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  h5 {
    font-size: 25px;
  }
}

.section--spaced {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .section--spaced {
    margin-top: 96px;
  }
}
@media (min-width: 768px) {
  .section--spaced:first-child {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .section--spaced:first-child {
    margin-top: 96px;
  }
}

main {
  margin-bottom: 96px;
}
@media (min-width: 768px) {
  main {
    margin-bottom: 160px;
  }
}
main.no-spacing {
  margin-bottom: 0;
}

.bounce {
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-8px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-4px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.section-slider .slide img {
  object-fit: cover;
  max-width: 100%;
  display: block;
}
.section-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 0;
  padding-inline-start: 0;
}
@media (min-width: 1024px) {
  .section-slider .slick-dots {
    margin-top: 48px;
    gap: 32px;
  }
}
.section-slider .slick-dots li {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .section-slider .slick-dots li {
    width: 24px;
    height: 24px;
  }
}
.section-slider .slick-dots .slick-active a {
  background-color: var(--color-white);
}
.section-slider .custom-dots {
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--color-white);
  border-radius: 100%;
  transition: 0.6s;
}
.section-slider .custom-dots:hover {
  background-color: var(--color-white);
}

.section-video .content {
  text-align: center;
}
.section-video .content h1 {
  margin-top: 6px;
}
.section-video .content p {
  font-size: 17px;
}
@media (min-width: 768px) {
  .section-video .content p {
    font-size: 20px;
  }
}
.section-video .video-wrapper {
  width: calc(100% + 40px);
  margin-top: 24px;
  position: relative;
  margin-left: -20px;
}
@media (min-width: 1024px) {
  .section-video .video-wrapper {
    margin-left: 0;
    width: 100%;
    padding: 24px 48px;
    margin-top: 48px;
    border: 1px solid var(--color-golden);
  }
}
.section-video .video-wrapper:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/play.svg");
  width: 48px;
  height: 48px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  transition: var(--slow-transition);
}
@media (min-width: 1024px) {
  .section-video .video-wrapper:after {
    width: 120px;
    height: 120px;
  }
}
.section-video .video-wrapper:hover:after {
  filter: drop-shadow(2px 4px 12px rgba(var(--color-black-rgb), 0.7));
}
.section-video .video-wrapper img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .section-video .video-wrapper img {
    top: 24px;
    left: 48px;
    width: calc(100% - 96px);
  }
}
.section-video .video-wrapper .video-container {
  position: relative;
  padding-bottom: 56.25%;
  pointer-events: none;
}
.section-video .video-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-video .video-wrapper .video-container .video {
  aspect-ratio: 16/9;
  width: 100%;
}
.section-video .video-wrapper--active:after {
  opacity: 0;
}
.section-video .video-wrapper--active .video-container {
  pointer-events: all;
}

.section-side-by-side .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  overflow: hidden;
  margin-bottom: 48px;
}
.section-side-by-side .grid:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .section-side-by-side .grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 96px;
  }
  .section-side-by-side .grid:last-child {
    margin-bottom: 0;
  }
}
.section-side-by-side .column:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .section-side-by-side .column:nth-child(2) {
    padding-top: 64px;
  }
}
.section-side-by-side .column img {
  max-width: 100%;
  display: block;
  object-fit: contain;
  max-height: 270px;
}
@media (min-width: 1024px) {
  .section-side-by-side .column img {
    max-height: 600px;
  }
}
.section-side-by-side .column h2 {
  margin-top: 6px;
  margin-bottom: 12px;
}
.section-side-by-side .column .box {
  border-top: 1px solid var(--color-golden);
  position: relative;
  padding-right: 24px;
}
.section-side-by-side .column .box:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 600px;
  width: 1px;
  background-color: var(--color-golden);
}
.section-side-by-side .column p {
  font-size: 18px;
}
@media (min-width: 768px) {
  .section-side-by-side .column p {
    font-size: 22px;
  }
}
.section-side-by-side .column .text-cropped {
  padding-top: 24px;
  max-width: 480px;
}
.section-side-by-side .column .button {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .section-side-by-side--inverted .grid .column:nth-child(2) {
    order: -1;
  }
}
.section-side-by-side--inverted .grid .box {
  padding-right: 0;
  padding-left: 24px;
}
.section-side-by-side--inverted .grid .box:after {
  left: 0;
  right: auto;
}

.section-products .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 480px) {
  .section-products .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-products .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-products .column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 64px 0 48px 0;
  border: 1px solid var(--color-golden);
  text-decoration: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section-products .column:hover img {
  transform: scale(1.1);
}
.section-products .column:hover p {
  transform: translateY(10px);
}
.section-products h2 {
  color: var(--color-white);
  text-align: center;
}
.section-products p {
  font-size: 17px;
  transition: var(--slow-transition);
  text-transform: uppercase;
  text-align: center;
  max-width: 172px;
}
@media (min-width: 768px) {
  .section-products p {
    font-size: 20px;
  }
}
.section-products img {
  max-height: 200px;
  object-fit: contain;
  display: block;
  transition: var(--slow-transition);
}
@media (min-width: 480px) {
  .section-products img {
    max-height: 240px;
  }
}
@media (min-width: 768px) {
  .section-products img {
    max-height: 300px;
  }
}

.section-contacts {
  padding-top: 48px;
}
@media (min-width: 1024px) {
  .section-contacts {
    padding-top: 96px;
  }
}
.section-contacts .background-wrapper {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.section-contacts h2 {
  text-align: center;
  color: var(--color-white);
}
.section-contacts .content {
  max-width: 600px;
  margin-top: 24px;
  padding: 64px 0 96px 0;
}
.section-contacts .content > p {
  font-size: 17px;
}
@media (min-width: 768px) {
  .section-contacts .content > p {
    font-size: 20px;
  }
}
.section-contacts img {
  max-width: 280px;
  margin-top: 48px;
}
.section-contacts img + .text {
  margin-top: 16px;
}
.section-contacts .text {
  font-size: 16px;
}
@media (min-width: 768px) {
  .section-contacts .text {
    font-size: 18px;
  }
}
.section-contacts .text p + p {
  margin-top: 8px;
}
.section-contacts .text + .text {
  margin-top: 24px;
}
.section-contacts .text a {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}
.section-contacts .text a:hover {
  color: var(--color-golden);
}

footer {
  padding-top: 96px;
  padding-bottom: 80px;
  border-top: 11px solid var(--color-golden);
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  footer {
    text-align: left;
  }
}
footer:after {
  content: "";
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 136px;
  height: 128px;
  background-image: url("../images/logo-group-icon.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  footer .social {
    justify-content: flex-start;
  }
}
footer .link-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  font-size: 0;
}
footer .link-icon:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  width: 100%;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: var(--transition);
}
footer .link-icon--globe:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='63.809' height='63.809'><g fill='rgb(255%2C255%2C255)' data-name='Group 142'><path d='M31.905 0a31.9 31.9 0 1 1-22.56 9.344A31.806 31.806 0 0 1 31.905 0Zm21.15 10.754a29.912 29.912 0 1 0 8.76 21.15 29.816 29.816 0 0 0-8.76-21.15Z' data-name='Path 275'/><path d='M6.106 13.884h51.597v1.994H6.106z' data-name='Rectangle 146'/><path d='M.997 30.907h61.815v1.994H.997z' data-name='Rectangle 147'/><path d='M6.106 47.931h51.597v1.994H6.106z' data-name='Rectangle 148'/><path d='M31.905 0c6.344 0 12.063 3.621 16.18 9.477 4.046 5.754 6.549 13.684 6.549 22.427s-2.5 16.674-6.549 22.428c-4.117 5.855-9.836 9.477-16.18 9.477s-12.064-3.622-16.181-9.477c-4.046-5.754-6.548-13.685-6.548-22.428s2.5-16.673 6.548-22.427C19.841 3.621 25.56 0 31.905 0Zm14.553 10.622c-3.749-5.331-8.9-8.628-14.553-8.628s-10.8 3.3-14.553 8.628c-3.82 5.432-6.182 12.955-6.182 21.282s2.362 15.85 6.182 21.283c3.748 5.331 8.9 8.628 14.553 8.628s10.8-3.3 14.553-8.628c3.819-5.433 6.182-12.956 6.182-21.283s-2.363-15.85-6.182-21.28Z' data-name='Path 276'/><path d='M31.905 0c3.154 0 5.9 3.727 7.78 9.753a86.772 86.772 0 0 1 0 44.3c-1.884 6.026-4.626 9.754-7.78 9.754s-5.9-3.728-7.78-9.754a86.743 86.743 0 0 1 0-44.3C26.008 3.727 28.75 0 31.905 0Zm5.879 10.345c-1.612-5.16-3.7-8.351-5.879-8.351s-4.267 3.191-5.88 8.351a84.925 84.925 0 0 0 0 43.118c1.613 5.16 3.7 8.352 5.88 8.352s4.267-3.192 5.879-8.352a84.925 84.925 0 0 0 0-43.118Z' data-name='Path 277'/></g></svg>");
}
footer .link-icon--globe:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='63.809' height='63.809'><g fill='rgb(181%2C133%2C0)' data-name='Group 142'><path d='M31.905 0a31.9 31.9 0 1 1-22.56 9.344A31.806 31.806 0 0 1 31.905 0Zm21.15 10.754a29.912 29.912 0 1 0 8.76 21.15 29.816 29.816 0 0 0-8.76-21.15Z' data-name='Path 275'/><path d='M6.106 13.884h51.597v1.994H6.106z' data-name='Rectangle 146'/><path d='M.997 30.907h61.815v1.994H.997z' data-name='Rectangle 147'/><path d='M6.106 47.931h51.597v1.994H6.106z' data-name='Rectangle 148'/><path d='M31.905 0c6.344 0 12.063 3.621 16.18 9.477 4.046 5.754 6.549 13.684 6.549 22.427s-2.5 16.674-6.549 22.428c-4.117 5.855-9.836 9.477-16.18 9.477s-12.064-3.622-16.181-9.477c-4.046-5.754-6.548-13.685-6.548-22.428s2.5-16.673 6.548-22.427C19.841 3.621 25.56 0 31.905 0Zm14.553 10.622c-3.749-5.331-8.9-8.628-14.553-8.628s-10.8 3.3-14.553 8.628c-3.82 5.432-6.182 12.955-6.182 21.282s2.362 15.85 6.182 21.283c3.748 5.331 8.9 8.628 14.553 8.628s10.8-3.3 14.553-8.628c3.819-5.433 6.182-12.956 6.182-21.283s-2.363-15.85-6.182-21.28Z' data-name='Path 276'/><path d='M31.905 0c3.154 0 5.9 3.727 7.78 9.753a86.772 86.772 0 0 1 0 44.3c-1.884 6.026-4.626 9.754-7.78 9.754s-5.9-3.728-7.78-9.754a86.743 86.743 0 0 1 0-44.3C26.008 3.727 28.75 0 31.905 0Zm5.879 10.345c-1.612-5.16-3.7-8.351-5.879-8.351s-4.267 3.191-5.88 8.351a84.925 84.925 0 0 0 0 43.118c1.613 5.16 3.7 8.352 5.88 8.352s4.267-3.192 5.879-8.352a84.925 84.925 0 0 0 0-43.118Z' data-name='Path 277'/></g></svg>");
}
footer .link-icon--facebook:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.159' height='53.185'><path fill='rgb(255%2C255%2C255)' d='M41.454 0H11.703a11.733 11.733 0 0 0-11.7 11.7v29.753a11.738 11.738 0 0 0 11.7 11.729h29.751a11.755 11.755 0 0 0 11.7-11.729V11.7A11.75 11.75 0 0 0 41.454 0Zm-7.606 24.45-.213 2.518h-4.741v15.987h-6.4V26.968h-3.213v-6.4h3.186v-2.892c0-2.625 1.233-6.7 6.722-6.7h4.954v5.491h-3.589a1.354 1.354 0 0 0-1.42 1.526v2.571h5.088Z' data-name='Path 274'/></svg>");
}
footer .link-icon--facebook:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.159' height='53.185'><path fill='rgb(181%2C133%2C0)' d='M41.454 0H11.703a11.733 11.733 0 0 0-11.7 11.7v29.753a11.738 11.738 0 0 0 11.7 11.729h29.751a11.755 11.755 0 0 0 11.7-11.729V11.7A11.75 11.75 0 0 0 41.454 0Zm-7.606 24.45-.213 2.518h-4.741v15.987h-6.4V26.968h-3.213v-6.4h3.186v-2.892c0-2.625 1.233-6.7 6.722-6.7h4.954v5.491h-3.589a1.354 1.354 0 0 0-1.42 1.526v2.571h5.088Z' data-name='Path 274'/></svg>");
}
footer .link-icon--instagram:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='54.445' height='54.446'><g fill='rgb(255%2C255%2C255)' transform='translate(0 -.001)'><path d='M27.232 13.243a13.97 13.97 0 1 0 13.97 13.97 13.968 13.968 0 0 0-13.97-13.97Zm0 23.037a9.067 9.067 0 1 1 9.067-9.067 9.064 9.064 0 0 1-9.067 9.067Z' data-name='Path 421'/><path d='M38.448.172c-5.009-.234-17.416-.222-22.429 0-4.406.206-8.292 1.27-11.424 4.4C-.642 9.811.028 16.866.028 27.213c0 10.59-.59 17.482 4.567 22.638 5.255 5.249 12.413 4.566 22.637 4.566 10.49 0 14.11.007 17.82-1.429 5.043-1.958 8.85-6.465 9.222-14.562.236-5.011.222-17.416 0-22.429C53.824 6.44 48.695.643 38.448.172Zm7.929 46.215c-3.432 3.432-8.194 3.126-19.21 3.126-11.343 0-15.891.168-19.21-3.16-3.823-3.8-3.131-9.914-3.131-19.176 0-12.534-1.286-21.56 11.293-22.2 2.89-.1 3.741-.136 11.016-.136l.1.068c12.089 0 21.574-1.266 22.143 11.311.129 2.87.159 3.732.159 11 0 11.211.211 15.787-3.162 19.176Z' data-name='Path 422'/><circle cx='3.264' cy='3.264' r='3.264' data-name='Ellipse 14' transform='translate(38.491 9.427)'/></g></svg>");
}
footer .link-icon--instagram:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='54.445' height='54.446'><g fill='rgb(181%2C133%2C0)' transform='translate(0 -.001)'><path d='M27.232 13.243a13.97 13.97 0 1 0 13.97 13.97 13.968 13.968 0 0 0-13.97-13.97Zm0 23.037a9.067 9.067 0 1 1 9.067-9.067 9.064 9.064 0 0 1-9.067 9.067Z' data-name='Path 421'/><path d='M38.448.172c-5.009-.234-17.416-.222-22.429 0-4.406.206-8.292 1.27-11.424 4.4C-.642 9.811.028 16.866.028 27.213c0 10.59-.59 17.482 4.567 22.638 5.255 5.249 12.413 4.566 22.637 4.566 10.49 0 14.11.007 17.82-1.429 5.043-1.958 8.85-6.465 9.222-14.562.236-5.011.222-17.416 0-22.429C53.824 6.44 48.695.643 38.448.172Zm7.929 46.215c-3.432 3.432-8.194 3.126-19.21 3.126-11.343 0-15.891.168-19.21-3.16-3.823-3.8-3.131-9.914-3.131-19.176 0-12.534-1.286-21.56 11.293-22.2 2.89-.1 3.741-.136 11.016-.136l.1.068c12.089 0 21.574-1.266 22.143 11.311.129 2.87.159 3.732.159 11 0 11.211.211 15.787-3.162 19.176Z' data-name='Path 422'/><circle cx='3.264' cy='3.264' r='3.264' data-name='Ellipse 14' transform='translate(38.491 9.427)'/></g></svg>");
}
footer .link-icon--youtube {
  width: 40px;
  height: 40px;
}
footer .link-icon--youtube:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='74.826' height='53.006'><g data-name='Group 184'><path fill='rgb(255%2C255%2C255)' d='M73.783 8.675a8.357 8.357 0 0 0-6.711-6.839 240.471 240.471 0 0 0-59.315 0 8.356 8.356 0 0 0-6.714 6.839 152.878 152.878 0 0 0 0 35.656 8.353 8.353 0 0 0 6.714 6.839 240.471 240.471 0 0 0 59.315 0 8.353 8.353 0 0 0 6.711-6.839 152.857 152.857 0 0 0 0-35.656ZM31.177 38.98V14.033l18.707 12.472Z' data-name='Path 420'/></g></svg>");
  background-size: 40px;
}
footer .link-icon--youtube:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='74.826' height='53.006'><g data-name='Group 184'><path fill='rgb(181%2C133%2C0)' d='M73.783 8.675a8.357 8.357 0 0 0-6.711-6.839 240.471 240.471 0 0 0-59.315 0 8.356 8.356 0 0 0-6.714 6.839 152.878 152.878 0 0 0 0 35.656 8.353 8.353 0 0 0 6.714 6.839 240.471 240.471 0 0 0 59.315 0 8.353 8.353 0 0 0 6.711-6.839 152.857 152.857 0 0 0 0-35.656ZM31.177 38.98V14.033l18.707 12.472Z' data-name='Path 420'/></g></svg>");
}
footer .grid {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  gap: 48px 16px;
  margin-top: 32px;
}
@media (min-width: 480px) {
  footer .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
footer .grid .column:nth-child(1) {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
@media (min-width: 1024px) {
  footer .grid .column:nth-child(1) {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  footer .grid .column:nth-child(2) {
    justify-self: end;
  }
}
footer .pernod-icon {
  max-width: 240px;
}
footer .link {
  font-size: 16px;
  display: block;
  text-decoration: none;
}
@media (min-width: 768px) {
  footer .link {
    font-size: 18px;
  }
}
footer .text {
  font-size: 16px;
}
@media (min-width: 768px) {
  footer .text {
    font-size: 18px;
  }
}
footer .content {
  text-align: center;
  margin-top: 64px;
  max-width: 960px;
  margin: 64px auto 0 auto;
}
footer .signature-icon {
  display: block;
  margin: 64px auto 0 auto;
  max-width: 100%;
}
@media (min-width: 480px) {
  footer .signature-icon {
    max-width: 420px;
  }
}
@media (min-width: 1024px) {
  footer .signature-icon {
    max-width: 480px;
  }
}
footer a {
  display: inline-block;
}

.section-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 32px;
}
@media (min-width: 1024px) {
  .section-gate {
    padding: 64px;
  }
}
.section-gate .container {
  text-align: center;
  max-width: 100%;
}
@media (min-width: 480px) {
  .section-gate .container {
    max-width: 360px;
  }
}
@media (min-width: 768px) {
  .section-gate .container {
    max-width: 480px;
  }
}
@media (min-width: 1024px) {
  .section-gate .container {
    max-width: 730px;
  }
}
.section-gate img {
  max-width: 180px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section-gate img {
    max-width: 254px;
  }
}
.section-gate a {
  transition: var(--transition);
}
.section-gate a:hover {
  color: var(--color-golden);
}
.section-gate h3 {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .section-gate h3 {
    margin-top: 40px;
  }
}
.section-gate form {
  margin-top: 24px;
  position: relative;
}
@media (min-width: 1024px) {
  .section-gate form {
    margin-top: 32px;
  }
}
.section-gate .button {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .section-gate .button {
    margin-top: 48px;
  }
}
.section-gate .text {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .section-gate .text {
    margin-top: 48px;
  }
}
.section-gate .field-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .section-gate .field-wrapper {
    gap: 64px;
  }
}
.section-gate input {
  text-align: center;
  background: transparent;
  padding: 12px;
  border: transparent;
  border-bottom: 1px solid var(--color-white);
  color: var(--white);
  font-size: 18px;
  width: 100%;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: textfield !important;
  appearance: none;
}
@media (min-width: 1024px) {
  .section-gate input {
    padding: 16px;
    font-size: 24px;
  }
}
.section-gate input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.section-gate input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.section-gate input::placeholder {
  color: var(--color-white);
}
.section-gate input::-moz-placeholder {
  color: var(--color-white);
}
.section-gate input::-webkit-input-placeholder {
  color: var(--color-white);
}
.section-gate span {
  position: relative;
  display: block;
}
.section-gate span:nth-child(2):before, .section-gate span:nth-child(3):before {
  content: "/";
  position: absolute;
  color: var(--color-white);
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
}
@media (min-width: 1024px) {
  .section-gate span:nth-child(2):before, .section-gate span:nth-child(3):before {
    left: -36px;
    font-size: 24px;
  }
}
.section-gate span:nth-child(1), .section-gate span:nth-child(2) {
  width: 60px;
}
@media (min-width: 1024px) {
  .section-gate span:nth-child(1), .section-gate span:nth-child(2) {
    width: 80px;
  }
}
.section-gate span:nth-child(3) {
  width: 90px;
}
@media (min-width: 1024px) {
  .section-gate span:nth-child(3) {
    width: 110px;
  }
}
.section-gate .error-message {
  margin-top: 24px;
  margin-bottom: -24px;
  display: none;
  color: var(--color-golden);
}
@media (min-width: 1024px) {
  .section-gate .error-message {
    bottom: 72px;
  }
}
.section-gate .error-message--active {
  display: block;
}

.section-our-products {
  text-align: center;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .section-our-products {
    margin-top: 96px;
  }
}
.section-our-products p {
  font-size: 18px;
  max-width: 900px;
  margin: 16px auto 0 auto;
}
@media (min-width: 768px) {
  .section-our-products p {
    font-size: 22px;
  }
}
.section-our-products .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  max-width: 1200px;
  margin: 32px auto 0 auto;
}
@media (min-width: 600px) {
  .section-our-products .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .section-our-products .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 80px;
  }
}
.section-our-products .grid p {
  transition: var(--transition);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-our-products .grid p {
    max-width: 75%;
  }
}
.section-our-products .grid p:nth-child(3) {
  margin-top: 12px;
}
.section-our-products .grid h3 {
  transition: var(--transition);
  margin-top: 48px;
}
@media (min-width: 600px) {
  .section-our-products .grid h3 {
    margin-top: 60px;
  }
}
.section-our-products .button {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .section-our-products .button {
    display: none;
  }
}
.section-our-products img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  transform: translate(8px, 8px);
  transition: var(--transition);
}
@media (min-width: 600px) {
  .section-our-products img {
    transform: translate(16px, 16px);
  }
}
.section-our-products .image-wrapper {
  position: relative;
}
.section-our-products .image-wrapper:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-golden);
  transition: var(--transition);
}
@media (min-width: 600px) {
  .section-our-products .image-wrapper:after {
    top: -16px;
    left: -16px;
  }
}
.section-our-products .column {
  padding: 12px;
  text-decoration: none;
}
@media (min-width: 600px) {
  .section-our-products .column {
    padding: 24px;
  }
}
.section-our-products .column:hover .image-wrapper:after {
  top: -2px;
  left: -2px;
}
.section-our-products .column:hover img {
  transform: translate(0, 0);
}
.section-our-products .column:hover h3, .section-our-products .column:hover p {
  transform: translateY(-20px);
}

.section-product-detail {
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .section-product-detail {
    margin-top: 96px;
  }
}
.section-product-detail .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .section-product-detail .grid {
    grid-template-columns: minmax(320px, 40%) 1fr;
    gap: 48px;
  }
}
.section-product-detail .news-tag {
  font-size: 17px;
  font-family: var(--text-font);
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .section-product-detail .news-tag {
    font-size: 20px;
  }
}
.section-product-detail img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.section-product-detail .button {
  margin: 24px auto 0 auto;
  display: table;
}
@media (min-width: 768px) {
  .section-product-detail .button {
    margin: 32px 0 0 0;
  }
}
.section-product-detail .text {
  font-size: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .section-product-detail .text {
    font-size: 18px;
  }
}

.section-product-notes {
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .section-product-notes {
    margin-top: 112px;
  }
}
@media (min-width: 1440px) {
  .section-product-notes .container {
    border: 1px solid var(--color-golden);
  }
}
.section-product-notes .content {
  padding: 30px 28px 30px 28px;
  border: 1px solid var(--color-golden);
}
@media (min-width: 768px) {
  .section-product-notes .content {
    padding: 80px 48px 60px 48px;
  }
}
@media (min-width: 1440px) {
  .section-product-notes .content {
    border: none;
  }
}
.section-product-notes h2.title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-black);
  padding: 0 16px;
}
@media (min-width: 768px) {
  .section-product-notes h2.title {
    top: -18px;
    padding: 0 48px;
  }
}
@media (min-width: 1024px) {
  .section-product-notes h2.title {
    top: -24px;
  }
}
.section-product-notes h3.title {
  margin-top: 32px;
}
.section-product-notes p {
  margin-top: 8px;
}
.section-product-notes .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .section-product-notes .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .section-product-notes .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
@media (min-width: 600px) {
  .section-product-notes .grid--3-columns {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .section-product-notes .grid--3-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.section-product-notes img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.section-product-information {
  text-align: center;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .section-product-information {
    margin-top: 96px;
  }
}
.section-product-information .container {
  max-width: 986px;
}
.section-product-information h4.title {
  text-align: left;
}
@media (min-width: 768px) {
  .section-product-information h4.title {
    text-align: center;
  }
}
.section-product-information p {
  font-size: 16px;
  margin-top: 8px;
  text-align: left;
}
@media (min-width: 768px) {
  .section-product-information p {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .section-product-information p {
    margin-top: 16px;
  }
}
.section-product-information h5.title {
  text-align: left;
}
.section-product-information p + h5 {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .section-product-information p + h5 {
    margin-top: 60px;
  }
}
.section-product-information .grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .section-product-information .grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 60px;
  }
}
.section-product-information .table {
  text-align: left;
}
.section-product-information .table .row {
  border-bottom: 1px solid rgba(217, 217, 217, 0.2509803922);
  padding: 12px 0;
  display: grid;
  grid-template-columns: 50% 20% 30%;
  gap: 12px;
}
.section-product-information .table .row--has-inner-row {
  display: block;
}
.section-product-information .table .row--has-inner-row .inner-row {
  display: grid;
  grid-template-columns: 50% 20% 30%;
  gap: 12px;
}
.section-product-information .table .row--has-inner-row .inner-row + .inner-row {
  margin-top: 8px;
}
.section-product-information .table .row--centered {
  align-items: center;
}
.section-product-information .table .column span {
  display: block;
}
.section-product-information .table .column span + span {
  margin-top: 8px;
}
.section-product-information .text-link {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 20px;
  font-family: var(--text-font);
  font-weight: 300;
  margin-top: 48px;
  display: inline-block;
  color: var(--color-golden);
  text-decoration: none;
  position: relative;
}
@media (min-width: 768px) {
  .section-product-information .text-link {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .section-product-information .text-link {
    font-size: 35px;
  }
}
.section-product-information .text-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: var(--color-golden);
  transition: all 0.4s;
}
.section-product-information .text-link:hover:after {
  bottom: -2px;
}
@media (min-width: 768px) {
  .section-product-information .text-link {
    margin-top: 80px;
  }
}

@media (min-width: 1440px) {
  .section-history-header .container {
    border: 1px solid var(--color-golden);
  }
}
.section-history-header .content {
  padding: 30px 28px 30px 28px;
  border: 1px solid var(--color-golden);
}
@media (min-width: 768px) {
  .section-history-header .content {
    padding: 80px 48px 60px 48px;
  }
}
@media (min-width: 1440px) {
  .section-history-header .content {
    border: none;
  }
}
.section-history-header h2.title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-black);
  padding: 0 16px;
}
@media (min-width: 768px) {
  .section-history-header h2.title {
    top: -18px;
    padding: 0 48px;
  }
}
@media (min-width: 1024px) {
  .section-history-header h2.title {
    top: -24px;
  }
}
.section-history-header .text {
  font-size: 20px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .section-history-header .text {
    font-size: 26px;
  }
}

.section-history-timeline .subtitle {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 20px;
  color: var(--color-white);
  font-family: var(--text-font);
  letter-spacing: 3px;
}
@media (min-width: 768px) {
  .section-history-timeline .subtitle {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .section-history-timeline .subtitle {
    font-size: 35px;
  }
}
.section-history-timeline .text {
  font-size: 18px;
  margin-top: 24px;
  max-width: 480px;
}
@media (min-width: 768px) {
  .section-history-timeline .text {
    font-size: 22px;
  }
}
.section-history-timeline .column {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  transition: none;
}
.section-history-timeline .column:hover {
  color: inherit;
}
.section-history-timeline .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px 32px;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .section-history-timeline .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .section-history-timeline .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 80px;
  }
}
@media (min-width: 1024px) {
  .section-history-timeline .grid {
    gap: 160px;
  }
}
@media (min-width: 600px) {
  .section-history-timeline .grid--inverted .column:nth-child(even) {
    order: -1;
    padding-left: 32px;
  }
}
@media (min-width: 768px) {
  .section-history-timeline .grid--inverted img {
    transform: translateX(-24px);
  }
}
@media (min-width: 1024px) {
  .section-history-timeline .grid--inverted img {
    transform: translateX(-32px);
  }
}
.section-history-timeline img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .section-history-timeline img {
    transform: translateX(24px);
  }
}
@media (min-width: 1024px) {
  .section-history-timeline img {
    transform: translateX(32px);
  }
}
.section-history-timeline .image-wrapper {
  position: relative;
  padding: 24px;
}
@media (min-width: 768px) {
  .section-history-timeline .image-wrapper {
    padding: 32px 0 32px 0;
  }
}
.section-history-timeline .image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-golden);
  transition: var(--transition);
}

.section-suggestions h2.title {
  text-align: center;
}
.section-suggestions .header {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
  margin-top: 24px;
  flex-direction: column;
}
@media (min-width: 600px) {
  .section-suggestions .header {
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 48px;
  }
}
.section-suggestions .name {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 18px;
  color: var(--color-white);
  transition: var(--transition);
  cursor: pointer;
}
@media (min-width: 768px) {
  .section-suggestions .name {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .section-suggestions .name {
    font-size: 25px;
  }
}
.section-suggestions .name--active, .section-suggestions .name:hover {
  color: var(--color-golden);
}
.section-suggestions .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .section-suggestions .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 28px;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .section-suggestions .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .section-suggestions .grid {
    gap: 60px;
  }
}
@media (min-width: 600px) {
  .section-suggestions .grid--inverted .column:nth-child(even) {
    order: -1;
  }
}
.section-suggestions .grid--inverted .image-wrapper {
  padding: 32px 0 0 0;
  border-right: none;
}
@media (min-width: 600px) {
  .section-suggestions .grid--inverted .image-wrapper {
    padding: 32px 0 0 32px;
    border-left: 1px solid var(--color-golden);
  }
}
.section-suggestions .image-wrapper {
  padding: 32px 0 0 0;
  border-top: 1px solid var(--color-golden);
  margin-top: 8px;
}
@media (min-width: 600px) {
  .section-suggestions .image-wrapper {
    padding: 32px 32px 0 0;
    border-right: 1px solid var(--color-golden);
  }
}
.section-suggestions .text {
  font-size: 18px;
}
@media (min-width: 768px) {
  .section-suggestions .text {
    font-size: 22px;
  }
}
.section-suggestions img {
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  .section-suggestions img {
    max-height: initial;
  }
}
.section-suggestions .combinations {
  padding-bottom: 16px;
}
.section-suggestions .slider {
  margin-top: 32px;
  position: relative;
}
@media (min-width: 600px) {
  .section-suggestions .slider {
    border-right: 1px solid var(--color-golden);
    border-bottom: 1px solid var(--color-golden);
  }
}
.section-suggestions .slider:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
}
@media (min-width: 600px) {
  .section-suggestions .slider:before {
    width: calc(50% + 14px);
  }
}
@media (min-width: 768px) {
  .section-suggestions .slider:before {
    width: calc(50% + 20px);
  }
}
@media (min-width: 1024px) {
  .section-suggestions .slider:before {
    width: calc(50% + 30px);
  }
}
.section-suggestions .slider .text {
  margin-top: 24px;
}
.section-suggestions .slider .image-wrapper {
  padding: 0;
  border: none;
}
@media (min-width: 600px) {
  .section-suggestions .slider .image-wrapper {
    padding: 0 32px 32px 0;
  }
}
.section-suggestions .slider .grid {
  margin-top: 0;
}
@media (min-width: 600px) {
  .section-suggestions .slider .grid {
    padding: 0;
  }
}
.section-suggestions .slider .column:nth-child(1) {
  padding-bottom: 24px;
}
.section-suggestions .slider .column:nth-child(2) {
  order: -1;
}
@media (min-width: 600px) {
  .section-suggestions .slider .column:nth-child(2) {
    order: 1;
  }
}
.section-suggestions .image-wrapper {
  margin-top: 0;
}
.section-suggestions .custom-arrows {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media (min-width: 600px) {
  .section-suggestions .custom-arrows {
    margin-top: 64px;
  }
}
.section-suggestions .custom-arrows .prev,
.section-suggestions .custom-arrows .next {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  font-size: 0;
  cursor: pointer;
}
.section-suggestions .custom-arrows .prev:after,
.section-suggestions .custom-arrows .next:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  width: 100%;
  background-size: 48px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: var(--transition);
}
.section-suggestions .custom-arrows .prev:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='85.745' height='85.745'><g fill='none' stroke='rgb(181%2C133%2C0)' stroke-width='2' data-name='Group 31' transform='translate(-8813.906 -5031.17)'><g data-name='Group 30'><path d='m8856.983 5090.621-17.8-17.483 17.289-15.675' data-name='Path 19'/><path d='M8839.183 5073.137h35.191' data-name='Line 17'/></g><circle cx='41.872' cy='41.872' r='41.872' data-name='Ellipse 3' transform='translate(8814.906 5032.17)'/></g></svg>");
}
.section-suggestions .custom-arrows .prev:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='85.745' height='85.745'><g fill='none' stroke='rgb(255%2C255%2C255)' stroke-width='2' data-name='Group 31' transform='translate(-8813.906 -5031.17)'><g data-name='Group 30'><path d='m8856.983 5090.621-17.8-17.483 17.289-15.675' data-name='Path 19'/><path d='M8839.183 5073.137h35.191' data-name='Line 17'/></g><circle cx='41.872' cy='41.872' r='41.872' data-name='Ellipse 3' transform='translate(8814.906 5032.17)'/></g></svg>");
}
.section-suggestions .custom-arrows .next:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='85.745' height='85.745'><g fill='none' stroke='rgb(181%2C133%2C0)' stroke-width='2' data-name='Group 33' transform='translate(-9062.343 -5031.17)'><g data-name='Group 32'><path d='m9105.01 5057.464 17.8 17.483-17.289 15.675' data-name='Path 20'/><path d='M9122.81 5074.948h-35.191' data-name='Line 18'/></g><circle cx='41.872' cy='41.872' r='41.872' data-name='Ellipse 4' transform='translate(9063.343 5032.17)'/></g></svg>");
}
.section-suggestions .custom-arrows .next:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='85.745' height='85.745'><g fill='none' stroke='rgb(255%2C255%2C255)' stroke-width='2' data-name='Group 33' transform='translate(-9062.343 -5031.17)'><g data-name='Group 32'><path d='m9105.01 5057.464 17.8 17.483-17.289 15.675' data-name='Path 20'/><path d='M9122.81 5074.948h-35.191' data-name='Line 18'/></g><circle cx='41.872' cy='41.872' r='41.872' data-name='Ellipse 4' transform='translate(9063.343 5032.17)'/></g></svg>");
}

.section-cocktails h2.title {
  text-align: center;
}
.section-cocktails .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  max-width: 1200px;
  margin: 32px auto 0 auto;
}
@media (min-width: 600px) {
  .section-cocktails .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .section-cocktails .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    gap: 80px;
  }
}
.section-cocktails .grid h3 {
  transition: var(--transition);
  margin-top: 48px;
  text-align: center;
}
@media (min-width: 600px) {
  .section-cocktails .grid h3 {
    margin-top: 60px;
  }
}
.section-cocktails .button {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .section-cocktails .button {
    display: none;
  }
}
.section-cocktails img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  transform: translate(8px, 8px);
  transition: var(--transition);
}
@media (min-width: 600px) {
  .section-cocktails img {
    transform: translate(16px, 16px);
  }
}
.section-cocktails .image-wrapper {
  position: relative;
}
.section-cocktails .image-wrapper:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-golden);
  transition: var(--transition);
}
@media (min-width: 600px) {
  .section-cocktails .image-wrapper:after {
    top: -16px;
    left: -16px;
  }
}
.section-cocktails .column {
  padding: 12px;
  text-decoration: none;
}
@media (min-width: 600px) {
  .section-cocktails .column {
    padding: 24px;
  }
}
.section-cocktails .column:hover .image-wrapper:after {
  top: -2px;
  left: -2px;
}
.section-cocktails .column:hover img {
  transform: translate(0, 0);
}
.section-cocktails .column:hover h3, .section-cocktails .column:hover p {
  transform: translateY(-20px);
}

.section-cocktail-details h2.title {
  text-align: center;
}
.section-cocktail-details .image-wrapper {
  margin-top: 32px;
  border-top: 1px solid var(--color-golden);
  position: relative;
  padding-top: 32px;
}
@media (min-width: 1440px) {
  .section-cocktail-details .image-wrapper {
    padding-top: 32px;
    margin-top: 80px;
  }
  .section-cocktail-details .image-wrapper:before {
    content: "";
    position: absolute;
    left: -32px;
    top: 0;
    width: 1px;
    background-color: var(--color-golden);
    height: 100%;
  }
  .section-cocktail-details .image-wrapper:after {
    content: "";
    position: absolute;
    left: -32px;
    top: -1px;
    width: 32px;
    background-color: var(--color-golden);
    height: 1px;
  }
}
.section-cocktail-details img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  max-height: 480px;
  width: 100%;
}
.section-cocktail-details .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 24px;
}
@media (min-width: 600px) {
  .section-cocktail-details .grid {
    grid-template-columns: 40% calc(60% - 48px);
    gap: 48px;
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .section-cocktail-details .grid {
    grid-template-columns: 40% calc(60% - 80px);
    gap: 80px;
  }
}
@media (min-width: 1024px) {
  .section-cocktail-details .grid {
    grid-template-columns: 40% calc(60% - 120px);
    gap: 120px;
  }
}
.section-cocktail-details .info {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .section-cocktail-details .info {
    margin-top: 48px;
  }
}
.section-cocktail-details h4.title + .text {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .section-cocktail-details h4.title + .text {
    margin-top: 32px;
  }
}
.section-cocktail-details .text {
  font-size: 17px;
}
@media (min-width: 768px) {
  .section-cocktail-details .text {
    font-size: 20px;
  }
}

.section-social h3.title {
  text-align: center;
}
.section-social .links-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.section-social a {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  font-size: 0;
}
.section-social a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  width: 100%;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: var(--transition);
}
.section-social a.facebook:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.159' height='53.185'><path fill='rgb(255%2C255%2C255)' d='M41.454 0H11.703a11.733 11.733 0 0 0-11.7 11.7v29.753a11.738 11.738 0 0 0 11.7 11.729h29.751a11.755 11.755 0 0 0 11.7-11.729V11.7A11.75 11.75 0 0 0 41.454 0Zm-7.606 24.45-.213 2.518h-4.741v15.987h-6.4V26.968h-3.213v-6.4h3.186v-2.892c0-2.625 1.233-6.7 6.722-6.7h4.954v5.491h-3.589a1.354 1.354 0 0 0-1.42 1.526v2.571h5.088Z' data-name='Path 274'/></svg>");
}
.section-social a.facebook:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.159' height='53.185'><path fill='rgb(181%2C133%2C0)' d='M41.454 0H11.703a11.733 11.733 0 0 0-11.7 11.7v29.753a11.738 11.738 0 0 0 11.7 11.729h29.751a11.755 11.755 0 0 0 11.7-11.729V11.7A11.75 11.75 0 0 0 41.454 0Zm-7.606 24.45-.213 2.518h-4.741v15.987h-6.4V26.968h-3.213v-6.4h3.186v-2.892c0-2.625 1.233-6.7 6.722-6.7h4.954v5.491h-3.589a1.354 1.354 0 0 0-1.42 1.526v2.571h5.088Z' data-name='Path 274'/></svg>");
}
.section-social a.email:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.184' height='53.185'><path fill='rgb(255%2C255%2C255)' d='M50.259 2.926A9.6 9.6 0 0 0 43.213 0H9.972a9.607 9.607 0 0 0-7.046 2.926A9.607 9.607 0 0 0-.003 9.972v33.24a9.607 9.607 0 0 0 2.926 7.047 9.606 9.606 0 0 0 7.047 2.926h33.24a9.99 9.99 0 0 0 9.972-9.972V9.972a9.607 9.607 0 0 0-2.923-7.046Z' data-name='Path 425'/><g data-name='Group 195'><path d='M13.757 21.805q.6.425 3.635 2.527t4.646 3.236q.177.124.753.541t.957.674q.381.257.922.576a5.351 5.351 0 0 0 1.02.478 2.809 2.809 0 0 0 .887.16h.036a2.812 2.812 0 0 0 .887-.16 5.356 5.356 0 0 0 1.02-.478q.541-.319.922-.576t.958-.674q.576-.417.754-.541 1.631-1.135 8.3-5.763a8.424 8.424 0 0 0 2.163-2.181 4.683 4.683 0 0 0 .869-2.677 2.861 2.861 0 0 0-2.837-2.837H13.544a2.532 2.532 0 0 0-2.1.922 3.579 3.579 0 0 0-.737 2.304 4.142 4.142 0 0 0 .975 2.421 8.8 8.8 0 0 0 2.075 2.048Z' data-name='Path 426'/><path d='M40.707 23.702q-5.816 3.936-8.83 6.118-1.011.745-1.64 1.161a10.123 10.123 0 0 1-1.676.851 5.1 5.1 0 0 1-1.95.434h-.034a5.1 5.1 0 0 1-1.951-.434 10.128 10.128 0 0 1-1.676-.851q-.629-.416-1.64-1.161-2.394-1.755-8.813-6.118a9.392 9.392 0 0 1-1.79-1.543v14.079a2.731 2.731 0 0 0 .833 2 2.732 2.732 0 0 0 2 .834h26.1a2.846 2.846 0 0 0 2.837-2.838V22.159a9.778 9.778 0 0 1-1.77 1.543Z' data-name='Path 427'/></g></svg>");
}
.section-social a.email:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.184' height='53.185'><path fill='rgb(181%2C133%2C0)' d='M50.259 2.926A9.6 9.6 0 0 0 43.213 0H9.972a9.607 9.607 0 0 0-7.046 2.926A9.607 9.607 0 0 0-.003 9.972v33.24a9.607 9.607 0 0 0 2.926 7.047 9.606 9.606 0 0 0 7.047 2.926h33.24a9.99 9.99 0 0 0 9.972-9.972V9.972a9.607 9.607 0 0 0-2.923-7.046Z' data-name='Path 425'/><g data-name='Group 195'><path d='M13.757 21.805q.6.425 3.635 2.527t4.646 3.236q.177.124.753.541t.957.674q.381.257.922.576a5.351 5.351 0 0 0 1.02.478 2.809 2.809 0 0 0 .887.16h.036a2.812 2.812 0 0 0 .887-.16 5.356 5.356 0 0 0 1.02-.478q.541-.319.922-.576t.958-.674q.576-.417.754-.541 1.631-1.135 8.3-5.763a8.424 8.424 0 0 0 2.163-2.181 4.683 4.683 0 0 0 .869-2.677 2.861 2.861 0 0 0-2.837-2.837H13.544a2.532 2.532 0 0 0-2.1.922 3.579 3.579 0 0 0-.737 2.304 4.142 4.142 0 0 0 .975 2.421 8.8 8.8 0 0 0 2.075 2.048Z' data-name='Path 426'/><path d='M40.707 23.702q-5.816 3.936-8.83 6.118-1.011.745-1.64 1.161a10.123 10.123 0 0 1-1.676.851 5.1 5.1 0 0 1-1.95.434h-.034a5.1 5.1 0 0 1-1.951-.434 10.128 10.128 0 0 1-1.676-.851q-.629-.416-1.64-1.161-2.394-1.755-8.813-6.118a9.392 9.392 0 0 1-1.79-1.543v14.079a2.731 2.731 0 0 0 .833 2 2.732 2.732 0 0 0 2 .834h26.1a2.846 2.846 0 0 0 2.837-2.838V22.159a9.778 9.778 0 0 1-1.77 1.543Z' data-name='Path 427'/></g></svg>");
}
.section-social a.twitter:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.184' height='53.185'><g data-name='Group 209'><path d='M12 2.674h31a7 7 0 0 1 7 7v34a7 7 0 0 1-7 7H12a7 7 0 0 1-7-7v-34a7 7 0 0 1 7-7Z' data-name='Path 433'/><path fill='rgb(255%2C255%2C255)' d='M50.258 2.926A9.6 9.6 0 0 0 43.212 0H9.971a9.607 9.607 0 0 0-7.046 2.926A9.607 9.607 0 0 0-.004 9.972v33.24a9.607 9.607 0 0 0 2.926 7.047 9.606 9.606 0 0 0 7.047 2.926h33.24a9.99 9.99 0 0 0 9.972-9.972V9.972a9.607 9.607 0 0 0-2.923-7.046Zm-9.574 17.538a9.18 9.18 0 0 1 .035.935 20.952 20.952 0 0 1-3.446 11.444 21.824 21.824 0 0 1-4.171 4.744 18.727 18.727 0 0 1-5.817 3.289 21.17 21.17 0 0 1-7.271 1.23 20.406 20.406 0 0 1-11.15-3.255 14.032 14.032 0 0 0 1.731.1 14.365 14.365 0 0 0 9.038-3.117 6.9 6.9 0 0 1-4.207-1.454 7.39 7.39 0 0 1-2.58-3.6 9.75 9.75 0 0 0 1.35.138 6.768 6.768 0 0 0 1.766-.276 7.274 7.274 0 0 1-4.259-2.51 6.914 6.914 0 0 1-1.731-4.622v-.069a8.586 8.586 0 0 0 3.462.9 6.858 6.858 0 0 1-3.151-6.059 7.2 7.2 0 0 1 1-3.67 20.61 20.61 0 0 0 6.648 5.367 20.586 20.586 0 0 0 8.379 2.251 6.683 6.683 0 0 1-.173-1.662 7.271 7.271 0 0 1 7.276-7.268 6.911 6.911 0 0 1 5.3 2.286 14.464 14.464 0 0 0 4.64-1.766 7.07 7.07 0 0 1-3.22 4.051 15.414 15.414 0 0 0 4.189-1.177 14.141 14.141 0 0 1-3.638 3.77Z' data-name='Path 425'/></g></svg>");
}
.section-social a.twitter:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='53.184' height='53.185'><g data-name='Group 209'><path d='M12 2.674h31a7 7 0 0 1 7 7v34a7 7 0 0 1-7 7H12a7 7 0 0 1-7-7v-34a7 7 0 0 1 7-7Z' data-name='Path 433'/><path fill='rgb(181%2C133%2C0)' d='M50.258 2.926A9.6 9.6 0 0 0 43.212 0H9.971a9.607 9.607 0 0 0-7.046 2.926A9.607 9.607 0 0 0-.004 9.972v33.24a9.607 9.607 0 0 0 2.926 7.047 9.606 9.606 0 0 0 7.047 2.926h33.24a9.99 9.99 0 0 0 9.972-9.972V9.972a9.607 9.607 0 0 0-2.923-7.046Zm-9.574 17.538a9.18 9.18 0 0 1 .035.935 20.952 20.952 0 0 1-3.446 11.444 21.824 21.824 0 0 1-4.171 4.744 18.727 18.727 0 0 1-5.817 3.289 21.17 21.17 0 0 1-7.271 1.23 20.406 20.406 0 0 1-11.15-3.255 14.032 14.032 0 0 0 1.731.1 14.365 14.365 0 0 0 9.038-3.117 6.9 6.9 0 0 1-4.207-1.454 7.39 7.39 0 0 1-2.58-3.6 9.75 9.75 0 0 0 1.35.138 6.768 6.768 0 0 0 1.766-.276 7.274 7.274 0 0 1-4.259-2.51 6.914 6.914 0 0 1-1.731-4.622v-.069a8.586 8.586 0 0 0 3.462.9 6.858 6.858 0 0 1-3.151-6.059 7.2 7.2 0 0 1 1-3.67 20.61 20.61 0 0 0 6.648 5.367 20.586 20.586 0 0 0 8.379 2.251 6.683 6.683 0 0 1-.173-1.662 7.271 7.271 0 0 1 7.276-7.268 6.911 6.911 0 0 1 5.3 2.286 14.464 14.464 0 0 0 4.64-1.766 7.07 7.07 0 0 1-3.22 4.051 15.414 15.414 0 0 0 4.189-1.177 14.141 14.141 0 0 1-3.638 3.77Z' data-name='Path 425'/></g></svg>");
}

.navigation {
  top: 0;
  position: fixed;
  z-index: 9;
  width: 100vw;
  height: 90px;
  overflow: hidden;
  background-color: #1D1D1B;
  color: var(--color-white);
  border-bottom: 3px solid var(--color-golden);
}
@media (min-width: 1024px) {
  .navigation {
    height: 140px;
  }
}
.navigation .container {
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .navigation .container {
    padding: 0 96px;
  }
}
.navigation .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 112px 1fr;
  align-items: center;
  height: 100%;
}
@media (min-width: 1024px) {
  .navigation .nav-wrapper {
    grid-template-columns: 1fr 198px 1fr;
  }
}
.navigation .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation .logo img {
  max-width: 112px;
}
@media (min-width: 1024px) {
  .navigation .logo img {
    max-width: 160px;
  }
}
.navigation .links-wrapper {
  top: 0;
  padding: 90px 20px;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  background-color: var(--color-black);
  left: -100%;
  transition: var(--transition);
  width: 100%;
}
.navigation .links-wrapper--active {
  transform: translateX(100%);
}
.navigation .links-wrapper--active .main-nav a {
  transform: translateX(0);
}
.navigation .links-wrapper--active .main-nav li:nth-child(1) a {
  transition-delay: 0.05s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(2) a {
  transition-delay: 0.1s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(3) a {
  transition-delay: 0.15s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(4) a {
  transition-delay: 0.2s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(5) a {
  transition-delay: 0.25s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(6) a {
  transition-delay: 0.3s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(7) a {
  transition-delay: 0.35s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(8) a {
  transition-delay: 0.4s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(9) a {
  transition-delay: 0.45s;
}
.navigation .links-wrapper--active .main-nav li:nth-child(10) a {
  transition-delay: 0.5s;
}
@media (min-width: 480px) {
  .navigation .links-wrapper {
    padding: 192px 96px;
    width: auto;
  }
  .navigation .links-wrapper--active {
    left: 0;
    transform: translateX(0);
  }
}
.navigation .main-nav {
  padding: 0;
  margin: 0;
}
.navigation .main-nav a {
  transform: translateX(-300px);
}
.navigation a {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 20px;
  color: var(--color-white);
  transition: var(--transition);
}
@media (min-width: 768px) {
  .navigation a {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .navigation a {
    font-size: 35px;
  }
}
.navigation a:hover {
  color: var(--color-golden);
}
.navigation li {
  list-style: none;
  margin-bottom: 24px;
}
.navigation .sub-menu {
  padding: 0;
  margin: 24px 0 0;
  padding-left: 48px;
}
.navigation .open-icon,
.navigation .close-icon {
  display: none;
  cursor: pointer;
  height: 28px;
}
.navigation .open-icon.active,
.navigation .close-icon.active {
  display: block;
  position: relative;
  z-index: 9;
}
.navigation .mobile-toggle {
  position: relative;
}
.navigation .mobile-toggle span {
  position: absolute;
  left: 72px;
  display: none;
  font-size: 24px;
  text-transform: uppercase;
  top: 4px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .navigation .mobile-toggle span {
    display: block;
  }
}

.button {
  padding: 16px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
  width: auto;
  font-weight: bold;
  font-family: var(--text-font);
  color: var(--color-golden);
  border: 1px solid var(--color-golden);
  background: transparent;
  letter-spacing: 2.25px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .button {
    padding: 20px 32px;
  }
}
.button:hover {
  background-color: var(--color-golden);
  color: var(--color-black);
}
.button.disabled, .button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.button.modal-trigger {
  padding: 20px 28px;
}
@media (min-width: 480px) {
  .button.modal-trigger {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .button.modal-trigger {
    padding: 28px 42px;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  overflow-x: hidden;
  position: relative;
}

html.stop-scroll {
  overflow: hidden;
  height: calc(var(--app-height) - 1px);
}

body {
  font-family: var(--text-font);
  background-color: var(--color-black);
  color: var(--color-white);
  padding-top: 90px;
}
@media (min-width: 1024px) {
  body {
    padding-top: 140px;
  }
}
body.up-top {
  padding-top: 0;
}
@media (min-width: 1024px) {
  body.up-top {
    padding-top: 0;
  }
}

header {
  z-index: 99;
}

.slick-dots li {
  list-style: none;
}

input,
textarea,
select {
  font-family: var(--text-font);
}

a {
  color: var(--color-white);
  transition: var(--transition);
}
a:hover {
  color: var(--color-golden);
}

p + p {
  margin-top: 24px;
}

.hidden {
  display: none !important;
}

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

.tabs .header {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
  margin-top: 24px;
  flex-direction: column;
}
@media (min-width: 600px) {
  .tabs .header {
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 48px;
  }
}
.tabs .name {
  font-family: var(--title-font);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-golden);
  font-size: 18px;
  color: var(--color-white);
  transition: var(--transition);
  cursor: pointer;
}
@media (min-width: 768px) {
  .tabs .name {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .tabs .name {
    font-size: 25px;
  }
}
.tabs .name--active, .tabs .name:hover {
  color: var(--color-golden);
}
.tabs .body {
  position: relative;
  width: 100%;
}
.tabs .content {
  display: none;
}
.tabs .content--active {
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 48px 0;
  background-color: var(--color-black);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: grid;
  grid-template-rows: 30px 1fr;
}
@media (min-width: 1024px) {
  .modal {
    padding: 180px 0;
  }
}
.modal--active {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 1440px) {
  .modal .container--with-border {
    border: 1px solid var(--color-golden);
  }
}
.modal .content {
  padding: 80px 48px 60px 48px;
  border: 1px solid var(--color-golden);
}
@media (min-width: 1440px) {
  .modal .content {
    border: none;
  }
}
.modal .body {
  align-self: center;
  margin-top: -30px;
}
.modal h2.title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-black);
  padding: 0 48px;
}
@media (min-width: 768px) {
  .modal h2.title {
    top: -18px;
  }
}
@media (min-width: 1024px) {
  .modal h2.title {
    top: -24px;
  }
}
.modal .grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .modal .grid {
    flex-direction: row;
    gap: 48px;
  }
}
.modal .logo {
  max-width: 200px;
}
.modal p {
  font-size: 17px;
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .modal p {
    font-size: 20px;
  }
}
.modal .close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  transform: translateY(-30px);
  position: relative;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .modal .close {
    transform: translateY(-120px);
  }
}
.modal .close:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  width: 100%;
  margin-left: 9px;
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: var(--transition);
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='512' height='512'><path fill='none' stroke='rgb(255%2C255%2C255)' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M368 368 144 144M368 144 144 368'/></svg>");
}
.modal .close:hover:after {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='512' height='512'><path fill='none' stroke='rgb(181%2C133%2C0)' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M368 368 144 144M368 144 144 368'/></svg>");
}/*# sourceMappingURL=index.css.map */
