/* Variables */
html {
  /* Colors */
  --color-black: rgba(16, 16, 16, 1);
  --color-white: rgba(240, 240, 240, 1);
  --color-accent: rgba(9, 191, 75, 1);
  --color-neutral-dark: rgba(102, 102, 102, 1);
  --color-neutral: rgba(153, 153, 153, 1);
  --color-neutral-light: rgba(181, 181, 181, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
}

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  list-style: none;
}

button {
  color: inherit;
  border: none;
  background-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

/* Fonts */
html {
  font-family: 'Mont', sans-serif;
  font-size: 16px;
  font-weight: 300;
  scroll-behavior: smooth;
}

/* SVG Sprite Config */
.sprite-icon {
  fill: currentColor;
}

/* Helpers */
.text-accent {
  color: var(--color-accent);
}

.warning {
  margin: 12px 0;
  font-size: 18px;
  font-weight: normal;
  color: orange;
  padding: 16px;
  border: 2px solid orange;
  width: fit-content;
  max-width: 100%;
}

.notification {
  margin: 12px 0;
  font-size: 18px;
  font-weight: normal;
  color: green;
  background: var(--color-white);
  padding: 16px;
  border: 2px solid green;
  width: fit-content;
  max-width: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Body */
body {
  position: relative;
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Container */
.container {
  box-sizing: content-box;
  max-width: 1280px;
  padding: 0 42px;
  margin: 0 auto;

  @media (max-width: 1215px) {
    padding: 0 24px;
  }

  @media (max-width: 768px) {
    padding: 0 12px;
  }
}

/* Button */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  padding: 16px 24px;
  border-radius: 20px;
  border: 1px solid var(--color-accent);
  box-shadow: 7px 9px 0px 0px rgba(11, 188, 76, 0.906);
  transition: all .2s ease-in-out;

  @media (max-width: 576px) {
    font-size: 20px;
  }
}

.button:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: 7px 9px 1px 0px rgba(255, 255, 255, 0.25);
}

/* Header */
.header {
  padding-top: 50px;

  @media (max-width: 1440px) {
    padding-top: 4%;
  }
}

.header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header__logo {
  width: calc(498 / 1440 * 100%);
  min-width: 236px;
  max-width: 490px;
}

.header__enter-link {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;

  @media (max-width: 576px) {
    display: none;
  }
}

.header__enter-link:hover {
  color: var(--color-accent);
}

.footer {
  padding-bottom: 40px;

  @media (max-width: 1023px) {
    padding-top: 40px;
  }
}

.footer__message {
  font-size: 200px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 0.84;
  margin-bottom: 24px;

  @media (max-width: 1215px) {
    font-size: 160px;
  }

  @media (max-width: 1023px) {
    font-size: 120px;
  }

  @media (max-width: 768px) {
    font-size: 100px;
  }

  @media (max-width: 576px) {
    font-size: 80px;
  }
}

.footer__message>span {
  color: var(--color-accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 300;

  @media (max-width: 576px) {
    display: block;
    text-align: center;
  }
}

.footer__copyright {
  @media (max-width: 576px) {
    margin-bottom: 12px;
  }
}

.footer__link {
  text-decoration: none;
}

@keyframes levitation-1 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  25% {
    transform: translate(10px, -5px) rotate(10deg);
  }

  75% {
    transform: translate(10px, 5px) rotate(0deg);
  }

  100% {
    transform: translate(0px, 5px) rotate(0deg);
  }
}

.levitate-1 {
  animation: levitation-1 8s linear infinite alternate;
}

@keyframes levitation-2 {

  0%,
  100% {
    transform: translate(0px, 0px);
  }

  25% {
    transform: translate(-5px, 5px);
  }

  75% {
    transform: translate(5, -5px) rotate(-20deg);
  }
}

.levitate-2 {
  animation: levitation-2 12s linear infinite alternate;
}

@keyframes levitation-3 {

  0%,
  100% {
    transform: translate(0px, 0px);
  }

  25% {
    transform: translate(5px, 5px);
  }

  75% {
    transform: translate(-8, 0);
  }
}

.levitate-3 {
  animation: levitation-3 20s linear infinite alternate;
}

.noisy-background-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(20, 20, 20, 0.90);
  z-index: -1;
}

.noisy-background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: url(#grainy);
  opacity: 1;
  z-index: -1;
  mix-blend-mode: multiply;
}

/* Hero */
.hero {
  @media (max-width: 768px) {
    padding-top: 200px;
  }
}

.hero__inner {
  display: flex;

  @media (max-width: 768px) {
    display: block;
  }
}

.hero__left,
.hero__right {
  flex: 50% 0 0;
}

.hero__left {
  position: relative;
}

.hero__bg {
  width: 100%;
}

.hero__bg-img {
  display: block;
  object-fit: contain;
  width: 105%;
  max-width: 105%;
  transform: translateX(-5%);
  height: 100%;

  @media (max-width: 768px) {
    width: 100%;
    height: 100%;
    transform: translateX(0);
  }
}

.hero__video-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 115%;
  height: 115%;
  transform: translate(22%, 8%);
  z-index: 1;

  @media (max-width: 922px) and (min-width: 769px) {
    width: 132%;
  }

  @media (max-width: 768px) {
    width: 120%;
    height: 120%;
    transform: translate(9.5%, 8%);
  }
}


/* Foot Shaddow */
.hero__video-wrap::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 74%;
  display: block;
  width: 19%;
  height: 7px;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0px 9px 6px 5px #0c0c0cbf;
  z-index: -1;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  overflow: visible;
}

.hero__talk-wrap {
  position: absolute;
  bottom: 63%;
  left: 77%;
  width: 367px;
  transform: rotate(-15deg);
  z-index: 2;

  @media (max-width: 768px) {
    bottom: 87%;
    left: unset;
    right: 23%;
    transform: rotate(6deg);
    z-index: 2;
  }

  @media (max-width: 576px) {
    bottom: 82%;
    right: 18%;
  }

  @media (max-width: 458px) {
    right: 0;
    width: calc(100vw - 40px);
  }
}

.hero__talk-bouble {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__talk-text {
  position: absolute;
  top: 35%;
  left: 26%;
  width: max-content;
  transform: rotate(-4deg);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-black);

  @media (max-width: 768px) {
    top: 30%;
    left: 15%;
    transform: rotate(6deg);
  }
}

.hero__talk-text-typed {
  .Typewriter__cursor {
    color: var(--color-white);
  }
}

.hero__video-caption {
  position: absolute;
  bottom: 8%;
  left: 108%;
  font-size: 21px;
  font-weight: 100;
  z-index: 1;
}

.hero__right {
  @media (max-width: 768px) {
    display: none;
  }
}

.hero__list {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.hero__list-item {
  position: relative;
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  text-align: right;
  text-transform: uppercase;
  text-decoration: none;

  @media (max-width: 1150px) {
    font-size: 34px;
  }

  @media (max-width: 890px) {
    font-size: 28px;
  }
}

.hero__list-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  backdrop-filter: blur(6px);
  transform: translate(-50%, -50%);
  transition: 1s linear;
  opacity: 1;
}

@supports (-webkit-backdrop-filter: blur(6px)) and (not (backdrop-filter: blur(6px))) {
  .hero__list-item::after {
    -webkit-backdrop-filter: blur(6px);
  }
}

.hero__list-item:hover::after {
  opacity: 0;
}

/* Subhero */
.subhero {}

.subhero__inner {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: min-content min-content;
  column-gap: 24px;

  @media (max-width: 922px) {
    display: block;
  }
}

.subhero__top {
  grid-row: 1 / 2;
  grid-column: 1 / span 4;
  padding-top: 50px;

  @media (max-width: 1215px) {
    grid-column: 1 / span 5;
  }

  @media (max-width: 922px) {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -9px;
  }
}

.subhero__center {
  height: fit-content;
  grid-row: 1 / 3;
  grid-column: 5 / -1;

  @media (max-width: 1215px) {
    grid-column: 6 / -1;
  }

  @media (max-width: 922px) {
    margin-top: -70px;
  }
}

.subhero__bottom {
  grid-row: 2 / 3;
  grid-column: 1 / span 4;

  @media (max-width: 1215px) {
    grid-column: 1 / span 5;
  }
}

.subhero__heading {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 77px;
  font-weight: 400;
  line-height: 0.9em;
  margin-bottom: 20px;

  @media (max-width: 1215px) {
    gap: 8px;
  }

  @media (max-width: 922px) {
    margin-bottom: 0px;
  }
}

.subhero__heading-logo {
  display: block;
  width: 68px;
  height: 68px;

  @media (max-width: 1215px) {
    width: 42px;
    height: 42px;
  }
}

.subhero__heading-text {
  transform: translateY(-5%);
}

.subhero__intro {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 42px;

  @media (max-width: 1215px) {
    font-size: 15px;
  }
}

.subhero__pitch {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 42px;

  @media (max-width: 1215px) {
    font-size: 15px;
  }

  @media (max-width: 922px) {
    text-align: center;
    margin-bottom: 32px;
  }
}

.subhero__button {
  display: flex;

  @media (max-width: 922px) {
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.subhero__center {
  height: 100%;
  position: relative;
}

.subhero__bg {
  position: absolute;
  top: 100%;
  right: 12%;
  width: 339px;
  height: 339px;
  z-index: -1;

  @media (max-width: 1215px) {
    right: -5%;
    top: 10%;
  }

  @media (max-width: 576px) {
    transform: translateX(50%);
  }
}

.subhero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
}

.subhero__image-wrap {
  position: relative;
}

.subhero__img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  object-fit: contain;
  transform: translateY(-21.2%);

  @media (max-width: 922px) {
    position: static;
    transform: translate(0)
  }
}

/* Concierge */
.concierge__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding-top: 280px;

  @media (max-width: 1215px) {
    padding-top: 130px;
    gap: 16px;
  }

  @media (max-width: 922px) {
    padding-top: 80px;
  }

  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.franklin {
  position: relative;
  grid-column: 1 / span 4;
  align-self: end;
  height: fit-content;
  background-color: rgba(232, 232, 232, 1);
  border-radius: 45px;

  @media (max-width: 1023px) {
    grid-column: span 6;
  }

  @media (max-width: 768px) {
    order: 2;
  }
}

.franklin__title {
  font-family: 'Microgramma', 'Mont';
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-skip-ink: none;
  text-decoration-thickness: 5px;
  text-align: center;
  color: var(--color-black);
  padding-top: 9px;
}

.franklin__video-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  margin-top: -33px;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  overflow: hidden;
}

.franklin__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;

  @media (max-width: 1023px) {
    translate: -14%;
  }
}

.franklin__talk {
  position: absolute;
  top: 26%;
  left: 68%;
  width: 164px;
  height: 150px;
  background: url(../images/franklin-talk.svg) no-repeat center;
  background-size: 100% auto;
  transform: rotate(34deg);

  @media (max-width: 1023px) {
    top: 33%;
    left: 63%;
  }
}

.franklin__talk-text {
  position: absolute;
  top: 20px;
  left: 50%;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 200;
  color: white;
  text-align: center;
  transform: translateX(-50%);
}

/* Receipt */
.receipt {
  grid-column: span 4;
  height: fit-content;
  align-self: end;
  background: url(../images/receipt-title.webp) no-repeat, url(../images/paper.webp) no-repeat;
  background-size: 80%, cover;
  background-position: center top 20px, center top;
  padding: 24px;
  padding-top: 80px;
  border-radius: 45px;

  @media (max-width: 1215px) {
    grid-column: span 5;
  }

  @media (max-width: 1023px) {
    grid-column: span 6;
    align-self: start;
  }

  @media (max-width: 768px) {
    order: 3;
    padding-top: 120px;
    padding-bottom: 20px;
  }
}

.receipt__dashes {
  height: 2px;
  background-image: linear-gradient(to right, black 50%, transparent 0%);
  background-position: left bottom;
  background-size: 10.2px 2px;
  background-repeat: repeat-x;
  margin: 8px 0;

  @media (max-width: 768px) {
    margin: 20px 0;
  }
}

.receipt__string {
  display: flex;
  align-items: end;
  gap: 4px;
  font-family: 'VCR OSD Mono', 'Mont';
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-black);
}

.receipt__string-dashes {
  flex-grow: 1;
  height: 2px;
  background-image: linear-gradient(to right, black 25%, transparent 0%);
  background-position: left bottom;
  background-size: 9.5px 2px;
  background-repeat: repeat-x;
  margin: 7px 2px;
}

.receipt__substring {
  font-family: 'VCR OSD Mono', 'Mont';
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--color-black);
  margin-bottom: 8px;
  margin-top: 8px;
}

/* Lady */
.lady {
  position: relative;
  grid-row: 2 / span 1;
  grid-column: 1 / -1;
  background-color: var(--color-accent);
  padding: 32px;
  border-radius: 45px;

  @media (max-width: 1023px) {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  @media (max-width: 768px) {
    order: 1;
    aspect-ratio: 4 / 3;
    justify-content: center;
    padding: 40px 16px;
    gap: 0;
  }
}

.lady__first-line {
  font-family: 'Microgramma', 'Mont';
  font-size: 50px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--color-black);
  text-transform: uppercase;
  margin-left: calc(100% / 12 * 2 - 24px);

  @media (max-width: 1023px) {
    margin-left: 0;
  }

  @media (max-width: 768px) {
    font-size: 34px;
    margin-bottom: 18px;
    max-width: 60%;
  }
}

.lady__second-line {
  font-family: 'Microgramma', 'Mont';
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: calc(100% / 12 * 3 - 24px);

  @media (max-width: 1215px) {
    font-size: 70px;
  }

  @media (max-width: 1023px) {
    margin-left: 0;
  }

  @media (max-width: 768px) {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

.lady__third-line {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  margin-left: calc(100% / 12 * 3 - 24px);

  @media (max-width: 1023px) {
    margin-left: 0;
  }

  @media (max-width: 768px) {
    max-width: 65%;
    font-size: 18px;
  }
}

.lady__image-wrap {
  position: absolute;
  bottom: 0;
  right: 0%;
  width: 38%;
  z-index: 1;

  @media (max-width: 1215px) {
    width: 34%;
  }

  @media (max-width: 922px) {
    overflow: hidden;
  }

  @media (max-width: 768px) {
    right: 10px;
    width: 56%;
  }
}

.lady__img {
  display: block;
  width: 100%;
  height: auto;

  @media (max-width: 768px) {
    transform: translateY(10px);
  }
}

/* Joker */
.joker {
  position: relative;
  grid-row: 3 / span 1;
  grid-column: 1 / span 3;
  background-color: rgba(213, 213, 209, 1);
  padding: 18px;
  border-radius: 45px;

  @media (max-width: 1215px) {
    grid-column: span 4;
  }

  @media (max-width: 922px) {
    grid-column: span 5;
  }

  @media (max-width: 768px) {
    order: 4;
  }
}

.joker__image-wrap {
  margin-top: -197px;

  @media (max-width: 1023px) {
    margin-top: -45px;
  }

  @media (max-width: 576px) {
    margin-top: -60px;
  }
}

.joker__text {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-black);
  padding-left: 6px;
}

/* Incognito */
.incognito {
  grid-row: 3 / span 1;
  grid-column: span 4;
  display: flex;
  align-items: end;
  justify-content: center;
  background: url(../images/incognito.webp) no-repeat center top;
  background-size: cover;
  padding: 20px;
  border-radius: 45px;

  @media (max-width: 922px) {
    grid-column: span 7;
  }

  @media (max-width: 768px) {
    aspect-ratio: 1 / 1;
    order: 5;
  }
}

.incognito__text {
  font-size: 22px;
  font-weight: 300;
  text-align: center;

  @media (max-width: 1215px) {
    font-size: 16px;
  }

  @media (max-width: 922px) {
    font-size: 20px;
  }
}

/* Total */
.total {
  grid-row: 3;
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;

  @media (max-width: 1215px) {
    grid-column: span 4;
  }

  @media (max-width: 922px) {
    grid-row: 4;
    grid-column: 1 / -1;
  }

  @media (max-width: 768px) {
    order: 6;
  }
}

.total__text {
  font-size: 30px;
  font-weight: 300;
  text-align: center;

  @media (max-width: 1215px) {
    font-size: 20px;
  }

  @media (max-width: 922px) {
    font-size: 30px;
    margin-bottom: 8px;
  }

  @media (max-width: 576px) {
    font-size: 26px;
  }
}

.total__value {
  font-family: 'Microgramma';
  font-size: 51px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;

  @media (max-width: 1215px) {
    font-size: 28px;
  }

  @media (max-width: 922px) {
    font-size: 40px;
  }

  @media (max-width: 576px) {
    font-size: 36px;
  }
}

/* Marquee */
.marquee {
  width: 100%;
  padding: 20px 0;
  white-space: nowrap;
  transform: rotate(-8deg);
}

.marquee__content {
  display: inline-flex;
}

.marquee__string {
  display: block;
  font-family: 'Impact';
  font-size: 120px;
  letter-spacing: 4px;
  font-weight: 700;
  color: transparent;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--color-accent);

}

/* Select */
.select {
  padding-top: 40px;
  padding-bottom: 40px;
}

.select__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
}

.select__bio {
  position: relative;
  grid-column: span 3;
  width: 130%;
  z-index: 2;

  @media (max-width: 922px) {
    grid-row: 2;
    grid-column: 1 / -1;
    width: 100%;

    padding-top: calc(100% + 24px);
  }
}

.select__bio-title {
  font-family: 'Microgramma', 'Mont';
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 24px;

  @media (max-width: 922px) {
    text-align: right;
  }
}

.select__bio-text {
  font-size: 18px;
  font-weight: 300;
  text-align: right;
  margin-bottom: 32px;
}

.select__bio-button {
  display: flex;
}

.select__cards {
  grid-column: span 9;
  display: flex;
  gap: 18px;

  @media (max-width: 922px) {
    position: relative;
    grid-column: 1 / -1;
  }
}

.select__card {
  flex-grow: 1;
  height: 595px;
  background-color: #01180A;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 4px 1px #036129;
  cursor: pointer;

  @media (max-width: 922px) {
    height: auto;
    aspect-ratio: 80 / 217;
  }
}


.select__card.active {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.5)), linear-gradient(0deg, #026D2A, #026D2A);
  aspect-ratio: 1 / 1;
}

.select__card-image-wrap {
  position: relative;
  height: 100%;
}

.select__card-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 52.52%, rgba(0, 0, 0, 0.6) 63.74%, #0C0C0C 100%);
  z-index: 1;
}

.select__card.active .select__card-image-wrap::before {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 63.74%, #0C0C0C 100%);
}

.select__card-img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  height: 100%;
  width: auto;
  max-width: unset;
  transform: translateX(-50%);
  transition: opacity .2s;
}

.select__card:hover .select__card-img--disabled,
.select__card.active .select__card-img--disabled {
  opacity: 0;
}

/* Pay */
.pay {
  padding-top: 60px;
}

.pay__top {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;

  @media (max-width: 576px) {
    flex-direction: column;
  }
}

.pay__top-left {
  width: 585px;
  max-width: 100%;
}

.pay__top-left-img-wrap {
  position: relative;
  width: 79.5%;
}

.pay__top-left-eye-1 {
  position: absolute;
  top: 18%;
  left: 13%;
  rotate: -82deg;
  width: 28%;
  aspect-ratio: 1 / 1;
}

.pay__top-left-eye-2 {
  position: absolute;
  top: 29%;
  left: 91%;
  display: block;
  width: 28%;
  rotate: 60deg;
  aspect-ratio: 1 / 1;
}

.pay__top-left-img {
  display: block;
  width: 100%;
}


.pay__top-right {
  width: 487px;
  max-width: 100%;

  @media (max-width: 576px) {
    width: 80%;
    transform: rotate3d(0.4, 1, 0, 180deg) translate(-30%, -35%);
  }
}

.pay__top-righ-img-wrap {
  position: relative;
}

.pay__top-left-eye-3 {
  position: absolute;
  top: 7%;
  left: 51.2%;
  display: block;
  width: 45%;
  rotate: 0deg;
  aspect-ratio: 1 / 1;
}

.pay__columns {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 100px;

  @media (max-width: 1023px) {
    gap: 60px;
  }

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.pay__col {
  --font-coefficent: 1;
  width: calc((100% - 100px * 2) / 3);
  text-align: center;

  @media (max-width: 1215px) {
    --font-coefficent: 0.8;
  }

  @media (max-width: 1023px) {
    --font-coefficent: 0.6;
  }

  @media (max-width: 768px) {
    --font-coefficent: 0.9;
    width: 100%;
  }
}

.pay__value {
  font-family: 'Microgramma';
  font-size: calc(140px * var(--font-coefficent));
  font-weight: 700;
  line-height: 0.84;
}

.pay__title {
  font-family: 'Microgramma';
  font-size: calc(40px * var(--font-coefficent));
  font-weight: 700;
  margin-bottom: 4px;
}

.pay__text {
  font-family: 'Microgramma';
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
}

/* Contact */
.contact {
  @media (max-width: 1023px) {
    padding-top: 60px;
  }

  @media (max-width: 768px) {
    padding-top: 100px;
  }
}

.contact__inner {
  --gap: 25px;
  display: flex;
  align-items: center;
  margin-left: calc(-1 * var(--gap));
  margin-right: calc(-1 * var(--gap));

  @media (max-width: 768px) {
    flex-direction: column-reverse;
  }
}

.contact__left {
  width: 50%;
  padding: 0 var(--gap);

  @media (max-width: 768px) {
    width: 100%;
  }
}

.contact__right {
  width: 50%;
  padding: 0 var(--gap);

  @media (max-width: 768px) {
    width: 100%;
    margin-bottom: 20px;
  }
}

.contact__intro {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
}

.contact__form * {
  display: block;
  width: 100%;
}

.contact__form input[type='text'] {
  display: flex;
  font-size: 23px;
  font-weight: 100;
  text-align: center;
  padding: 27px;
  border-radius: 8px;
  outline: none;
  border: none;
  font-family: 'AlegreyaSans', sans-serif;
  font-weight: 100;
  margin-bottom: 8px;
  box-shadow: 13px 11px 2px 0px rgba(122, 122, 122, 0.25);
  transition: box-shadow .2s linear;

  &:focus {
    box-shadow: 13px 11px 2px 0px rgba(9, 191, 75, 0.5);
    ;
  }

  @media (max-width: 1215px) {
    padding: 18px;
  }

  @media (max-width: 768px) {
    margin-bottom: 0;
  }
}

.contact__form .wpcf7-not-valid-tip {
  margin-top: 18px;
}

.contact__guy {
  position: relative;
}

.contact__guy-img {
  transform: translateX(calc(100vw - (200% + ((100vw - 200%) / 2))));

  @media (max-width: 1215px) {
    transform: translateX(20vw)
  }
}

.contact__guy-talk {
  position: absolute;
  top: 18%;
  left: 0%;
  width: 368px;
  transform: translateX(calc(75vw - (200% + ((100vw - 200%) / 2))));

  @media (max-width: 1215px) {
    top: 5%;
    transform: translateX(0);
  }

  @media (max-width: 1023px) {
    transform: scale(0.8) translateX(-10%);
  }

  @media (max-width: 768px) {
    top: 0;
    transform: scale(0.8) translateX(10%);
  }

  @media (max-width: 576px) {
    transform: scale(0.8) translateX(-5%) translateY(-70%);
  }
}

.contact__guy-talk-text {
  position: absolute;
  top: 45%;
  left: 7%;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  transform: translate(0, -50%) rotateZ(-11deg);
}