.body {
  position: relative;
  color: var(--c-white);
  font-family: var(--ff-oswald);
  background-color: var(--c--dark);
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1190px;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --ff-oswald: 'Oswald', sans-serif;
  --ff-inter: 'Inter', sans-serif;
  --c-white: #ffffff;
  --c--dark: #040f0c;
  --c-gray: #737373;
  --c-accent: #015c58;
}

@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    text-shadow: 0 0 10px #015c58, 0 0 20px #015c58, 0 0 40px #015c58;
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    text-shadow: none;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.flicker {
  animation: flicker 4s linear infinite;
}

.hero__title {
  overflow: hidden;
}
.hero__title-part {
  display: inline-block;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}
.hero__title-part--left {
  animation-name: slideInLeft;
}
.hero__title-part--bottom {
  animation-name: slideInBottom;
  animation-delay: 0.2s;
}
.hero__title--accent.hero__title-part--right {
  display: inline-block;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.1s, flicker 4s linear infinite 0.9s;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url(../img/hero-img.webp);
  background-position: center;
  background-size: cover;
  padding-top: 160px;
  padding-bottom: clamp(1.5rem, 1.118rem + 1.57vw, 3rem);
}
@media (max-width: 850px) {
  .hero {
    justify-content: flex-start;
    height: auto;
  }
}
.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(0.875rem, 0.588rem + 1.18vw, 2rem);
}
.hero__city {
  background: #015c58;
  padding: clamp(0.25rem, 0.123rem + 0.52vw, 0.75rem) clamp(1.125rem, 0.743rem + 1.57vw, 2.625rem);
}
.hero__city span {
  color: var(--c-white);
  text-align: center;
  font-size: clamp(1rem, 0.873rem + 0.52vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}
.hero__title {
  color: var(--c-white);
  font-family: var(--ff-oswald);
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(3rem, 1.216rem + 7.32vw, 10rem);
  font-style: normal;
  font-weight: 700;
  line-height: 105%;
  text-transform: uppercase;
}
.hero__title--accent {
  color: var(--c-accent);
  text-shadow: 0 0 10px #015c58, 0 0 20px #015c58, 0 0 40px #015c58;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
@media (max-width: 750px) {
  .hero__title--accent {
    -webkit-text-stroke-width: 1.02px;
  }
}

.details {
  padding-bottom: clamp(5rem, 4.044rem + 3.92vw, 8.75rem);
}
.details__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 1.118rem + 1.57vw, 3rem);
}
@media (max-width: 550px) {
  .details__wrapper .details__btns {
    order: 1;
  }
  .details__wrapper .details__list {
    order: 2;
  }
}
.details__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, 0.343rem + 0.13vw, 0.5rem);
}
.details__price-text {
  color: var(--c-accent);
  text-align: center;
  font-size: clamp(1rem, 0.873rem + 0.52vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 141%;
  text-transform: uppercase;
}
.details__price-num {
  color: var(--c-accent);
  text-align: center;
  text-shadow: 0 0 10px #015c58, 0 0 20px #015c58, 0 0 40px #015c58;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  font-size: clamp(2.938rem, 2.348rem + 2.42vw, 5.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  text-transform: uppercase;
  animation: flicker 4s linear infinite;
}
@media (max-width: 750px) {
  .details__price-num {
    -webkit-text-stroke-width: 1.02px;
  }
}
.details__price-num span {
  color: var(--c-accent);
  font-size: clamp(1.5rem, 1.373rem + 0.52vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 102px;
  text-transform: uppercase;
}
.details__list {
  display: flex;
  padding: 18px clamp(2.5rem, 1.863rem + 2.61vw, 5rem);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(1, 92, 88, 0.1);
  box-shadow: 0 0 40px 0 rgba(1, 92, 88, 0.6);
}
.details__item {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  text-align: left;
  white-space: nowrap;
}
.details__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: #d9d9d9;
  box-shadow: 0 0 10px 0 #015c58, 0 0 20px 0 #015c58, 0 0 40px 0 #015c58;
}
.details__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 0.559rem + 0.78vw, 1.5rem);
}
@media (max-width: 550px) {
  .details__btns {
    width: 100%;
    flex-direction: column;
  }
  .details__btns .button {
    order: 2;
  }
  .details__btns .button:nth-child(2) {
    order: 1;
  }
}

.why {
  padding-bottom: clamp(5rem, 4.044rem + 3.92vw, 8.75rem);
}

.cards__wrapper {
  padding: 48px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 860px) {
  .cards__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .cards__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.card {
  border: 1px solid rgba(1, 92, 88, 0.3);
  background: rgba(1, 92, 88, 0.1);
  backdrop-filter: blur(10px);
  padding: clamp(0.75rem, 0.623rem + 0.52vw, 1.25rem) clamp(0.75rem, 0.559rem + 0.78vw, 1.5rem) clamp(0.75rem, 0.623rem + 0.52vw, 1.25rem) clamp(0.75rem, 0.559rem + 0.78vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.745rem + 1.05vw, 2rem);
  transition: all 0.2s ease-in;
  cursor: pointer;
}
.card:hover {
  border: 1px solid #015c58;
  box-shadow: 0 0 50px rgba(1, 92, 88, 0.6);
}
.card__top {
  display: flex;
  align-items: center;
  gap: 4px;
}
.card__img {
  padding: 6px;
  border: 1px solid var(--c-accent);
}
.card__img img {
  width: 24px;
  height: 24px;
}
.card__label {
  padding: 8px 10px;
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}
.card__description {
  color: #f2f2f2;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.card__info {
  color: #737373;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  text-wrap: pretty;
}

.wheel {
  padding-block: 80px;
  background-color: var(--c--dark);
  color: var(--c-white);
  overflow: hidden;
  --grad-1:
    linear-gradient(
      85deg,
      rgba(193, 255, 252, 0.8) 10.15%,
      rgba(4, 175, 167, 0.8) 91.23%
    ),
    rgba(1, 92, 88, 0.8);
  --grad-2: linear-gradient(6deg, #17fff5 9.2%, #02726d 88.05%), #02726d;
}
.wheel__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}
.wheel__container {
  position: relative;
  width: 445.625px;
  height: 445.625px;
  border-radius: 50%;
  border: 4px solid #000;
  box-shadow: 0 0 40px rgba(1, 92, 88, 0.4);
  background: #000;
}
@media (max-width: 768px) {
  .wheel__container {
    width: 310px;
    height: 310px;
  }
}
.wheel__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 5s cubic-bezier(0.15, 0, 0.15, 1);
  background: #000;
}
.wheel__segment {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 50%;
  transform-origin: 0% 100%;
  transform: rotate(calc((var(--i) - 1) * 45deg));
  background: var(--bg);
  clip-path: polygon(0 100%, 0 0, 100% 0);
  z-index: 1;
}
.wheel__segment span {
  position: absolute;
  top: 30px;
  left: -28px;
  width: 190px;
  display: block;
  text-align: center;
  transform: rotate(22.5deg);
  transform-origin: left center;
  color: #fff;
  font-family: var(--ff-inter);
  font-size: 20.294px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .wheel__segment span {
    top: 20px;
    left: -19px;
    width: 132px;
    font-size: 14px;
  }
}
.wheel__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2.19px;
  background: #eee;
  transform-origin: left center;
  transform: rotate(var(--rotate));
  z-index: 5;
}
.wheel__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115px;
  height: 115px;
  background: radial-gradient(50% 50% at 50% 50%, #20ece3 0%, #015c58 100%);
  border: 5px solid #fff;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10.952px #015c58, 0 0 21.905px #015c58, 0 0 43.81px #015c58;
  font-family: var(--ff-inter);
  font-size: 32.471px;
  font-style: normal;
  font-weight: 700;
  line-height: 40.588px;
}
.wheel__button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.wheel__button:active {
  transform: translate(-50%, -50%) scale(0.95);
}
.wheel__button.disabled {
  cursor: default;
  pointer-events: none;
  filter: grayscale(0.5);
  opacity: 0.8;
}
.wheel__button.disabled:hover, .wheel__button.disabled:active {
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 768px) {
  .wheel__button {
    width: 80px;
    height: 80px;
    font-size: 24px;
    line-height: 30px;
  }
}
.wheel__arrow {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 35px solid #fff;
  z-index: 15;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .wheel__arrow {
    top: -10px;
    border-left-width: 14px;
    border-right-width: 14px;
    border-top-width: 24px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}
.popup__card {
  position: relative;
  width: 90%;
  max-width: 450px;
  background: #111;
  border: 1px solid rgba(1, 92, 88, 0.3);
  padding: 40px;
  text-align: center;
  transform: scale(0.7);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup__card:hover {
  border: 1px solid #015c58;
  box-shadow: 0 0 50px rgba(1, 92, 88, 0.6);
}
.active .popup__card {
  transform: scale(1);
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #737373;
  font-size: 30px;
  cursor: pointer;
}
.popup__close:hover {
  color: #fff;
}
.popup__emoji {
  font-size: 60px;
  margin-bottom: 20px;
}
.popup__title {
  font-family: var(--ff-inter);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.popup__subtitle {
  color: #737373;
  font-size: 18px;
  margin-bottom: 10px;
}
.popup__amount {
  font-family: var(--ff-inter);
  font-size: 64px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 24px;
}
.popup__info {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.application {
  padding-bottom: clamp(5rem, 4.044rem + 3.92vw, 8.75rem);
}
.application__info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 70px;
}
.application__title {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px #015c58, 0 0 20px #015c58, 0 0 40px #015c58;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}
.application__subtitle {
  color: #fdfdfd;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.application .form-wrapper {
  max-width: 542px;
  border: 1px solid rgba(1, 92, 88, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 1.118rem + 1.57vw, 3rem) clamp(0.75rem, 0.176rem + 2.35vw, 3rem) clamp(1.5rem, 1.118rem + 1.57vw, 3rem) clamp(0.75rem, 0.176rem + 2.35vw, 3rem);
  margin: 0 auto;
  transition: all 0.2s ease-in;
}
.application .form-wrapper:hover {
  border: 1px solid rgb(1, 92, 88);
  box-shadow: rgba(1, 92, 88, 0.6) 0px 0px 50px;
}
.application .form__info {
  margin-bottom: 48px;
}
.application .form__info-label {
  display: inline-flex;
  padding: 8px 9px 8px 12px;
  border: 1px solid #015c58;
  color: var(--c-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  text-transform: uppercase;
  margin-bottom: 20px;
}
.application .form__info-title {
  color: #f2f2f2;
  text-shadow: 0 0 10px #015c58, 0 0 20px #015c58, 0 0 40px #015c58;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 127.273% */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.application .form__info-info {
  color: #cdcdcd;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 100% */
}

.footer {
  padding-top: clamp(0.938rem, 0.284rem + 2.68vw, 3.5rem);
  border-top: 1px solid #242424;
}
.footer__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
  gap: 60px;
}
@media (max-width: 770px) {
  .footer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .footer__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__num {
  position: relative;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px #015c58, 0 0 20px #015c58, 0 0 40px #015c58;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 82px;
  text-transform: uppercase;
}
.footer__num--plus::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: -25px;
  color: #015c58;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.footer__text {
  color: #e6e6e6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  text-transform: uppercase;
}
.footer__bot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding-block: 24px;
  border-top: 1px solid #242424;
}
.footer__bot-year {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  text-transform: uppercase;
}
.footer__bot-heart {
  color: #cdcdcd;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 100% */
}

.title__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 42px;
  border: 2px solid #015c58;
  background: rgba(1, 92, 88, 0.2);
}
.label__text {
  color: --c-white;
  text-align: center;
  font-size: clamp(1.125rem, 1.029rem + 0.39vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  text-transform: uppercase;
}

.title {
  color: --c-white;
  text-align: center;
  text-shadow: 0 0 10px #015c58, 0 0 20px #015c58, 0 0 40px #015c58;
  font-size: clamp(2.75rem, 2.431rem + 1.31vw, 4rem);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(3.625rem, 3.243rem + 1.57vw, 5.125rem);
  text-transform: uppercase;
}

.subtitle {
  color: #fdfdfd;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
}
.subtitle:first-child {
  margin-bottom: 12px;
}

.details__btns .button {
  font-size: clamp(1rem, 0.936rem + 0.26vw, 1.25rem);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px clamp(0.625rem, 0.147rem + 1.96vw, 2.5rem);
  color: var(--c-white);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  border: 1px solid #fff;
  background: #015c58;
  box-shadow: 0 0 10px 0 #015c58, 0 0 20px 0 #015c58, 0 0 40px 0 #015c58;
}
.button--accent {
  border: 1px solid #fff;
  background: rgba(1, 92, 88, 0.2);
  box-shadow: 0 0 10px 0 #015c58, 0 0 20px 0 #015c58, 0 0 40px 0 #015c58;
}
.button:hover {
  box-shadow: 0 0 20px 0 #015c58, 0 0 40px 0 #015c58, 0 0 80px 0 #015c58;
  transition: box-shadow 0.2s ease-in;
}
.button:hover .button__icon {
  transform: scale(1.2);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.button__icon {
  width: 32px;
  height: 32px;
  transition: all 0.2s ease-in;
}
@media (max-width: 550px) {
  .button {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */