html {
  background: rgba(22, 30, 55, 1);
  font-family: Open Sans, sans-serif;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1280px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

main {
  min-height: 100dvh;
  background: url(../img/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

header {
  padding: 10px 0;
}

.hero {
  display: flex;
  gap: 47px;
  height: 100%;
  width: 100%;
  min-height: 75dvh;
  justify-content: center;
  padding-bottom: 70px;
  margin-top: -40px;
}

.l-att {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px;
  background: rgba(31, 61, 75, 1);
  border-radius: 10px;
  max-width: 379px;

}

.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.att-t {
  font-weight: 800;
  font-size: 26px;
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(49, 86, 103, 1);
  color: white;
}

.att-m {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.att__m-l {
  width: 100%;
  max-width: 171px;
  padding: 16px 24px;
  background: rgba(49, 86, 103, 1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 163px;
}

.att__m-l span {
  text-align: center;
  font-size: 36px;
  color: rgba(13, 53, 64, 1);
}

.att-win {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 163px;
  max-width: 171px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: linear-gradient(180deg, #EBA655 0%, #A15727 100%);
  transition: all .3s;
  transform: scale(0) translate(-50%, -50%);
}

.att-win p {
  text-align: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.att-win span {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  color: rgba(255, 255, 255, 1);
}

.att-b button {
  width: 100%;
  background: var(--color-orange-50, rgba(255, 112, 2, 1));
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  padding: 13px 0px;
  border-radius: 16px;
  color: white;
  font-weight: 800;
  transition: all .3s;
  border-top: 2px solid var(--color-orange-50, rgba(255, 112, 2, 1))
}

.att-b button:hover {
  background: var(--color-orange-50, rgb(255, 125, 25));
}

.hero-r {
  display: flex;
  flex-direction: column;


}

.hero-r h1 {
  color: white;
  line-height: 1;
  text-align: center;
  font-weight: 800;
}

.fs48 {
  font-size: 48px;
}

.fs84 {
  font-size: 84px;

}

.grad-txt {
  font-size: 66px;
  background: linear-gradient(180deg, #FAAA5A 0%, #E05600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
}

.wheel {
  position: relative;
  width: 100%;
  max-width: 615px;
  min-height: 640px;
}

.wheel-osn {
  width: 100%;
  max-width: 614px;

}

.wheel-sect {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 100%;
  max-width: 421px;
  /* transition: transform 4s cubic-bezier(0.33, 1, 0.68, 1); */
  transition: transform 4.5s cubic-bezier(0.17, 0.67, 0.12, 0.99);

  transform: rotate(0deg);
  translate: -50% -50%;
  z-index: 1;
}

.att-win {
  transform: scale(0) translate(-50%, -50%);
  transition: 0.5s;
}

.att-win.active {
  transform: scale(1) translate(-50%, -50%);
}

.wheel-carc {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 100%;
  max-width: 480px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wheel-btn {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 100%;
  max-width: 122px;
  transform: translate(-50%, -50%);
  z-index: 1000;
  transition: all .3s;
}

.wheel-btn img {
  width: 100%;

}

.wheel-btn:active {
  transform: scale(0.95) translate(-50%, -50%);
}

footer {
  max-width: 1890px;

  margin: 0 auto;
  padding-top: 46px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

}

.footer__t-l {
  max-width: 940px;
  width: 100%;
  padding: 30px;
  border-right: 4px solid rgba(204, 214, 217, 1);
}

.footer__t-l h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.footer__t-l p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
}


.footer__t-l-mail {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

.footer__t-r {
  padding: 30px;

  max-width: 940px;
  width: 100%;
}

.footer__t-r h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.footer__t-r p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 37px;
}

.footer-t-list {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;

}

.age-f {
  mix-blend-mode: color-dodge;
}


.foot-listi {
  width: 100%;
  margin-top: 105px;
  max-width: 1508px;
  margin-bottom: 20px;
}

.footer-b {
  text-align: center;
  background: rgba(52, 82, 107, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 30px 105px 40px 105px;
  color: white;
  font-size: 12px;
  line-height: 1.45;
}

.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.29);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100dvh;
  z-index: 1200;
  display: none;
}

.pop-modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(31, 61, 75, 1);
  padding: 40px;
  border-radius: 40px;
  max-width: 538px;
  width: 100%;
}

.pop-modal span {
  padding: 16px 20px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(180deg, #EBA655 0%, #A15727 100%);
  font-size: 20px;
  font-weight: 800;

}

.pop-modal p {
  font-size: 48px;
  text-align: center;
  font-weight: 800;
  color: white;
  line-height: 1.1;


}

.pop-modal a {
  margin-top: 21px;
  border-radius: 100px;
  transition: all .3s;
  width: 100%;
  padding: 16px 0px;
  text-align: center;
  color: white;
  font-weight: 800;
  font-size: 24px;
  background: var(--color-orange-50, rgba(255, 112, 2, 1));
  border-top: 2px solid var(--color-orange-50, rgba(255, 112, 2, 1))
}

.pop-modal a:hover {
  background: rgb(255, 129, 32);
}

.wheel-box {
  width: 12px;
  height: 12px;
  background: black;
}

.wheel-gran {
  width: 12px;
  height: 12px;
  background: green;
  position: absolute;
  top: 17%;
  left: 49%;
  z-index: 100;
  opacity: 0;
}

.box1 {
  position: absolute;
  z-index: 100;
  left: 29%;
  top: 0%;
}

.box2 {
  position: absolute;
  z-index: 100;
  left: 0%;
  top: 28%;
}

.box3 {
  position: absolute;
  z-index: 100;
  left: -1%;
  top: 69%;
}

.box4 {
  position: absolute;
  z-index: 100;
  left: 28%;
  top: 98%;
}

.box5 {
  position: absolute;
  z-index: 100;
  left: 69%;
  top: 98%;
}

.box6 {
  position: absolute;
  z-index: 100;
  left: 98%;
  top: 70%;
}

.box7 {
  position: absolute;
  z-index: 100;
  left: 98%;
  top: 28%;
}

.box8 {
  position: absolute;
  z-index: 100;
  left: 70%;
  top: 0%;
}

.wheel-boxes {
  opacity: 0;
  position: absolute;
  width: 421px;
  height: 421px;
  left: 50%;
  top: 52%;
  translate: -50% -50%;
  z-index: 100;
  transition: transform 4.5s cubic-bezier(0.17, 0.67, 0.12, 0.99);

  transform: rotate(0deg);
}



@media(max-width: 767px) {

  main {
    background: url(../img/mob-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .pop-modal {
    padding: 20px;

  }

  .pop-modal p {
    font-size: 32px;
  }

  .pop-modal a {
    font-size: 24px;
    padding: 12px 0;
    border-radius: 10px;
  }

  .pop-modal span {
    font-size: 16px;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  header img {
    max-width: 136px;
  }

  .hero {
    flex-direction: column-reverse;
    gap: 14px;
    align-items: center;
    margin-top: 0;
  }

  .hero-l {
    width: 100%;
  }

  .l-att {
    max-width: 500px;
    width: 100%;
  }

  .att-t {
    font-size: 20px;
    text-align: center;
  }

  .att__m-l {
    min-height: 53px;
    max-width: 176px;

  }

  .att-win {
    min-height: 53px;
    gap: 3px;
    height: 100%;
  }

  .att-win p {
    font-size: 12px;
  }

  .att-win span {
    font-size: 20px;
  }

  .fs48 {
    font-size: 31px;

  }

  .fs84 {
    font-size: 44px;

  }

  .grad-txt {
    font-size: 34px;

  }

  .wheel {
    max-width: 340px;
    min-height: 0;
  }

  .wheel-osn {
    max-width: 340px;
  }

  .wheel-sect {
    max-width: 233px;
  }

  .wheel-carc {
    max-width: 269px;

  }

  .wheel-btn {
    max-width: 67px;

  }

  .footer-top {
    flex-direction: column;
    width: 100%;

  }

  .footer__t-l {
    width: 100%;
    padding: 16px;
    border-right: 0;
    border-bottom: 4px solid white;
  }

  .wheel-boxes{
    width: 231px;
    height: 231px;
  }


  .footer__t-r {
    padding: 16px;
    margin-top: 24px;
  }

  footer {
    padding-top: 40px;
  }

  .footer-t-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

  }

  .foot-listi {
    margin-top: 24px;
  }

  .footer-b {
    padding: 35px 16px;
  }


}