html {
  font-size: 1.2vw;
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.521vw;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.4;
  -webkit-font-smoothing: antialised;
  background: #0A0B0C;
  width: 100%;
  color: white;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: top;
  max-width: 100%;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 10rem 0;
}

.container {
  padding: 0 12rem;
}

.text--color {
  color: #FFD52E;
}
.text--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 2rem;
  align-items: center;
  padding: 3rem 10rem;
  height: 9.3rem;
  max-width: 70rem;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #4B4100;
  background: #FFD52E;
  border-radius: 1.6rem;
  position: relative;
  cursor: pointer;
  box-shadow: 0 -7px 20px 0 rgba(255, 232, 30, 0.11), 0 7px 20px 0 rgba(251, 255, 30, 0.08), 9px 7px 20px 0 rgba(255, 206, 30, 0.06), -9px 7px 1px 0 rgba(255, 199, 30, 0.04);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.btn svg {
  width: 5.6rem;
  flex-shrink: 0;
}
.btn:hover {
  box-shadow: 0 0 20px rgba(255, 213, 46, 0.7);
}
.btn-red {
  background: #CD2927;
}
.btn-red:hover {
  background: #A20200;
}

.heading {
  font-size: 6rem;
  margin-bottom: 4rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 6rem 4rem 4rem;
  background: #fff;
  position: relative;
  width: 80rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 2rem;
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.3);
  scrollbar-width: 2px;
}
.modal__content::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  display: block;
}
.modal__content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  margin: 1.8rem;
}
.modal__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 20vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: white;
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 4rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .modal__close {
    top: 4rem;
    width: 4rem;
    height: 4rem;
  }
}
.modal__heading {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .modal__heading {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
}
.modal__text {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    margin-bottom: 8rem;
    font-size: 2.8rem;
  }
}
.modal__info {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .modal__info {
    font-size: 2.4rem;
  }
}

.form-control {
  position: relative;
  margin-bottom: 1.2rem;
}
.form .error {
  color: red;
  font-size: 1.6rem;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-heading {
  color: #141414;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: bold;
  text-align: center;
}
.form-info {
  margin-top: 2.4rem;
  color: #474747;
  text-align: center;
  font-size: 1.8rem;
}
.form-info svg {
  width: 2rem;
}
.form-input {
  background: white;
  border: none;
  border-bottom: 1px solid #AEAEAE;
  box-shadow: none;
  border-radius: 0;
  padding: 1.2rem;
  height: 6rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #666666;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
.form-input:focus {
  border: none;
  border-bottom: 1px solid #AEAEAE;
  outline: none;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-label {
  padding: 0 1.6rem;
  font-size: 1.6rem;
  margin-top: 2.4rem;
  margin-bottom: -1.2rem;
  display: block;
  position: relative;
}
.form-btn {
  min-width: 100%;
  margin-top: 2.8rem;
}

.language {
  position: fixed;
  z-index: 100;
  top: 12rem;
  right: 20rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #212528;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 2rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}
.language:hover .language__arrow {
  transform: rotate(0deg);
}
.language__item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.language__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .language__item {
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: rgba(255, 255, 255, 0.6) 0 0 0 0;
  }
  70% {
    transform: scale(1.08);
    box-shadow: rgba(255, 255, 255, 0) 0 0 0 15px;
  }
  100% {
    transform: scale(1);
    box-shadow: rgba(255, 255, 255, 0) 0 0 0 0;
  }
}
@keyframes fadepulse {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(255, 213, 46, 0.2);
  }
  90% {
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 213, 46, 0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(255, 213, 46, 0.2);
  }
}
@keyframes pulse-shadow-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 213, 46, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(255, 213, 46, 0.3);
  }
  100% {
    box-shadow: 0 0 0 2rem rgba(255, 213, 46, 0);
  }
}
.tape-wrap {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #FFD52E 0%, #FFE680 50%, #FFD52E 100%);
  z-index: 2;
  height: 6.6rem;
  color: #4B4100;
  display: flex;
  align-items: center;
}
.tape-wrap .tape-text {
  display: inline-block;
  width: auto;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tape 36s linear infinite;
}
.tape-wrap .tape-text span {
  position: relative;
  display: inline-block;
  margin-right: 7rem;
}
.tape-wrap .tape-text span:after {
  content: "";
  position: absolute;
  right: -4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #4B4100;
  top: 50%;
  transform: translateY(-50%);
}
.tape-wrap.tape-inverse {
  top: auto;
  bottom: 0;
}
.tape-wrap.tape-inverse .tape-text {
  animation: tape-inverse 36s linear infinite;
}

.header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("../images/bg.png") center center no-repeat;
  background-size: cover;
  padding: 14rem 0;
}
.header__block {
  width: 97rem;
}
.header__heading {
  margin-top: 0;
}
.header__subheading {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 6rem;
  color: #FFD52E;
}
.header__text {
  margin-bottom: 3.2rem;
  padding-left: 2rem;
  font-size: 2.4rem;
  border-left: 3px solid #FFD52E;
}
.header__box {
  border-radius: 3.2rem;
  border: 1px solid #313131;
  background: #1B1E20;
  padding: 4rem;
  width: 100%;
  position: relative;
}
.header__gift {
  position: absolute;
  top: 0;
  right: 0;
  width: 7.8rem;
}
.header__blocks {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 6rem;
}
.header__label {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 3px solid #FFD52E;
  background: white;
  animation: pulse-shadow-effect 1.5s infinite;
  margin-bottom: 3rem;
}
.header__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #FFD52E;
  margin-bottom: 2.4rem;
}

.no-br {
  white-space: nowrap;
}

@media screen and (min-width: 1025px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 4rem;
  }
  .heading {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
  }
  .btn {
    min-width: 100%;
    height: 13rem;
    font-size: 3.2rem;
  }
  .form-heading {
    font-size: 3.2rem;
  }
  .form-text {
    margin-bottom: 1.6rem;
    text-align: center;
  }
  .form-bg {
    background: none;
    flex-direction: column;
    border-radius: 0;
  }
  .form-row {
    margin-bottom: 1.6rem;
    gap: 1.6rem;
    flex-direction: column;
    overflow: inherit;
  }
  .form-separator {
    display: none;
  }
  .form-input {
    height: 9rem;
    padding: 2rem;
    font-size: 2.8rem;
  }
  .form-info {
    font-size: 2.4rem;
  }
  .form .error {
    font-size: 2rem;
  }
  .tape-wrap {
    height: 9rem;
  }
  .tape-wrap .tape-text {
    font-size: 2.4rem;
    animation: tape 10s linear infinite;
  }
  .header {
    min-height: inherit;
    padding: 12rem 0 4rem;
    background: url("../images/bg-mob.png") center top no-repeat;
    background-size: 100% auto;
  }
  .header__block {
    width: 100%;
  }
  .header__heading {
    margin-bottom: 1.6rem;
    font-size: 4.6rem;
  }
  .header__text {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
    padding-left: 2.4rem;
    border-left-width: 0.8rem;
  }
  .header__blocks {
    margin-bottom: 38rem;
  }
  .header__box {
    padding: 3.2rem;
    font-size: 2.8rem;
  }
  .header__label {
    margin-bottom: 1.6rem;
  }
  .header__title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .header__gift {
    width: 9rem;
  }
  .aos-animate {
    transition-delay: inherit !important;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  background: #0A0B0C;
  color: #fff;
  border-top: 1px solid #B8B8B8;
  padding: 4rem 0 0;
}
@media screen and (max-width: 1024px) {
  .footer {
    font-size: 2.8rem;
    padding-bottom: 2rem;
  }
}
.footer a {
  color: #ffffff;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    flex-direction: column;
    gap: 3.2rem;
    margin-bottom: 4rem;
  }
}
.footer__title {
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .footer__title {
    margin-bottom: 2.4rem;
  }
}
.footer__social {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .footer__social {
    gap: 2.4rem;
  }
}
.footer__social li {
  width: 4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .footer__social li {
    width: 7.4rem;
  }
}
.footer__support {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2rem;
}
.footer__support li {
  width: 34rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .footer__support li {
    width: auto;
    min-width: 47%;
  }
}
.footer__support a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  padding: 1.2rem;
  border: 1px solid white;
  height: 6rem;
  text-decoration: none;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .footer__support a {
    font-size: 2.4rem;
    gap: 2rem;
    height: 8rem;
    padding: 2.4rem;
  }
}
.footer__support svg {
  width: 1.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .footer__support svg {
    width: 3rem;
  }
}

/*ENDfooter*/

/*# sourceMappingURL=main.css.map */
