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

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #0E0E0E;
  width: 100%;
  color: #FFFEFC;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-out;
  color: white;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

* {
  box-sizing: border-box;
}

b {
  font-weight: bold;
}

html *,
html,
body *,
body {
  scrollbar-color: inherit !important;
  scrollbar-width: auto;
}
html *::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  box-shadow: none;
}

video,
img {
  vertical-align: top;
  height: auto;
}

.main {
  width: 100%;
}
.main__section {
  padding: 6rem 0;
}

.container {
  padding: 0 20rem;
  width: 100%;
}

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

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

.block--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  gap: 2rem;
  outline: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 3rem 6rem;
  height: 8.8rem;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  line-height: 1;
  background: #D7B682;
  color: #573800;
  border-radius: 1.2rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-out;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 0 0 #67552E;
}
.btn svg {
  width: 4rem;
}
.btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #D7B682 0%, #DEBE8D 15.11%, #FFEDC2 52.13%, #EDD2A3 82.5%, #D7B682 100%);
  z-index: -1;
  animation: blink 4s linear infinite;
  transition: opacity 0.3s ease-out;
}
.btn:hover {
  background: #FFE7C2;
  color: #573800;
  text-decoration: none;
}
.btn:hover:before {
  animation-play-state: paused;
  opacity: 0;
}

.subheading {
  margin-bottom: 4rem;
}

.heading {
  font-size: 6rem;
  margin-bottom: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
}

.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: 4rem 4rem 4rem;
  background: #0E0E0E;
  color: #FFFEFC;
  position: relative;
  width: 73rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 1.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: 14vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #0E0E0E;
    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: 2.4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__heading {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
}
.modal__text {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    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;
  }
}
.modal__timer {
  margin-top: 2.4rem;
  padding: 2rem 4rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .modal__timer {
    flex-direction: column;
  }
}
.modal__timer-title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
}
.modal__timer-block {
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 500;
}
.modal__timer-txt {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .modal__timer-txt {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}
.modal__timer-num {
  display: flex;
  gap: 0.4rem;
}
@media screen and (max-width: 1024px) {
  .modal__timer-num {
    gap: 0.8rem;
  }
}
.modal__timer-num b {
  position: relative;
  font-weight: normal;
  z-index: 2;
}
.modal__timer-num span {
  width: 3.6rem;
  height: 4.8rem;
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #262626;
}
@media screen and (max-width: 1024px) {
  .modal__timer-num span {
    width: 5.6rem;
    height: 6.6rem;
  }
}
.modal__timer-num span:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 4px 4px 0 0;
  border: 1px solid #ADADAD;
  background: linear-gradient(180deg, #FFF 0%, #DDD2B7 100%);
}
.modal__timer-num span:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 0 0 4px 4px;
  border: 1px solid #FFF;
  background: linear-gradient(180deg, #FFF 0%, #FFDC88 100%);
}

.form-control {
  position: relative;
  margin-bottom: 1.2rem;
}
.form .error {
  color: #C20000;
  font-size: 1.2rem;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-check {
  display: flex;
  font-size: 1.6rem;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 2.4rem;
  margin-top: 2.4rem;
}
.form-check svg {
  width: 2rem;
}
.form-input {
  background: #0E0E0E;
  border: none;
  border-bottom: 1px solid #BABABA;
  box-shadow: none;
  border-radius: 0;
  padding: 1.2rem;
  height: 6rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #AEAEAE;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
.form-input:focus {
  border: none;
  border-bottom: 1px solid #BABABA;
  outline: none;
}
.form-input.err {
  color: #C20000;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: #C20000;
}
.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%;
}

.grecaptcha-badge {
  display: none !important;
}

.language {
  position: fixed;
  z-index: 100;
  top: 3rem;
  right: 2rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #535353;
  color: white;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 2rem;
    right: 10rem;
    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 blink {
  0% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes achtung {
  0% {
    transform: scale(1);
  }
  7% {
    transform: scale(1.2);
  }
  12% {
    transform: scale(1.05);
  }
  22% {
    transform: scale(1.25);
  }
  30% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tape1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes tape2 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tape3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape4 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes pulse-shadow-effect2 {
  0% {
    box-shadow: 0 0 0 0 rgba(150, 198, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(150, 198, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 2rem rgba(150, 198, 255, 0);
  }
}
@keyframes pulse-shadow-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0);
  }
}
.header {
  background: url("../images/bg-1.webp") top center no-repeat #0E0E0E;
  background-size: 100% auto;
  color: #FFFEFC;
  position: relative;
}
.header__block {
  width: 88rem;
}
.header__heading {
  font-size: 5rem;
  margin-bottom: 2rem;
}
.header__text {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 3.2rem;
}
.header__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.header__box {
  width: 42rem;
  padding: 2rem;
  border: 1px solid #2C2C2C;
  background: #0D0D0D;
  box-shadow: 0 0 12px 0 rgba(188, 167, 91, 0.1);
  border-radius: 1.2rem;
}
.header__title {
  background: #FFE7C2;
  color: #100A03;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: bold;
}
.header__program {
  display: flex;
  gap: 2.4rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-top: 1.2rem;
  justify-content: space-between;
  align-items: start;
  padding-left: 2rem;
}
.header__program-price {
  position: relative;
  color: #535353;
  white-space: nowrap;
}
.header__program-price:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  background: #C20000;
  width: 100%;
  transform: rotate(-20deg);
}
.header__price {
  margin-top: 4rem;
  margin-bottom: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 3.6rem;
  text-align: center;
}
.header__price-price {
  position: relative;
  color: #535353;
  white-space: nowrap;
}
.header__price-price:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  margin-top: -1px;
  background: #C20000;
  width: 100%;
  transform: rotate(-20deg);
}
.header__btn {
  width: 100%;
}
.header__timer {
  position: absolute;
  top: 6rem;
  right: 17rem;
  padding: 1.2rem 2rem;
  border-radius: 1.2rem;
  border: 1px solid #FFDAA5;
  background: rgba(255, 238, 197, 0.16);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}
.header__timer-title {
  margin-bottom: 0.8rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
}
.header__timer-block {
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 500;
}
.header__timer-txt {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
  text-transform: uppercase;
}
.header__timer-num {
  display: flex;
  gap: 0.4rem;
}
.header__timer-num span {
  width: 3.6rem;
  height: 4.8rem;
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #262626;
}
.header__timer-num span:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 4px 4px 0 0;
  border: 1px solid #ADADAD;
  background: linear-gradient(180deg, #FFF 0%, #DDD2B7 100%);
}
.header__timer-num span:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 0 0 4px 4px;
  border: 1px solid #FFF;
  background: linear-gradient(180deg, #FFF 0%, #FFDC88 100%);
}
.header__label {
  border-radius: 1.2rem;
  border: 1px solid #2C2C2C;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(25, 22, 13, 0.3);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 2rem;
  width: 25rem;
  height: 19rem;
  text-align: center;
  position: fixed;
  right: 20rem;
  bottom: 6rem;
  font-size: 2.4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  z-index: 10;
}
.header__label svg {
  width: 10rem;
  flex-shrink: 0;
  animation: achtung 4s linear infinite;
}

.about__block {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}
.about__img {
  width: calc(50% - 2rem);
  border-radius: 1.2rem;
}
.about__box {
  width: calc(50% - 2rem);
  border-radius: 1.2rem;
  padding: 4rem;
  border: 1px solid #2C2C2C;
  background: #171717;
  box-shadow: 0 0 12px 0 rgba(188, 167, 91, 0.1);
  text-align: center;
}
.about__num {
  opacity: 0.6;
  margin-bottom: 4rem;
}
.about__title {
  margin-bottom: 4rem;
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
}
.about__text {
  font-weight: bold;
  margin-bottom: 4rem;
}
.about__list {
  text-align: left;
  font-weight: bold;
  margin-bottom: 4rem;
}
.about__list:last-child {
  margin-bottom: 0;
}
.about__list ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}
.about__list ul li {
  gap: 1.2rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.about__list ul li:last-child {
  margin-bottom: 0;
}
.about__list ul li:before {
  content: "";
  flex-shrink: 0;
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0.5rem rgba(255, 175, 70, 0.2);
  background: white;
  border: 0.3rem solid #FFC56D;
}
.about__last {
  text-align: center;
  padding-top: 4rem;
}

.reviews__block {
  display: flex;
  gap: 4rem;
  align-items: start;
}
.reviews__left {
  width: 48rem;
  flex-shrink: 0;
  position: sticky;
  top: 6rem;
}
.reviews__subtitle {
  opacity: 0.6;
  margin-bottom: 3.2rem;
}
.reviews__heading {
  margin-bottom: 3.2rem;
  line-height: 1.1;
}
.reviews__btn {
  padding: 3rem;
}
.reviews__item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.reviews__item:last-child {
  margin-bottom: 0;
}
.reviews__box {
  width: 100%;
  padding: 4rem;
  border-radius: 1.2rem;
  border: 1px solid #2C2C2C;
  background: #202020;
  box-shadow: 0 0 12px 0 rgba(188, 167, 91, 0.1);
  display: flex;
  gap: 3.3rem;
}
.reviews__info {
  min-width: 31rem;
}
.reviews__img {
  width: 10.5rem;
  margin-bottom: 2rem;
}
.reviews__name {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.reviews__about {
  font-size: 1.8rem;
  margin-bottom: 3.3rem;
}
.reviews__text {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 3.3rem;
}
.reviews__text:last-child {
  margin-bottom: 0;
}
.reviews__text ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 0;
}
.reviews__text ul li::marker {
  font-size: 1.2rem;
}
.reviews__title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid #464646;
  padding-top: 9.5rem;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 10rem;
}
.footer__col {
  width: 75rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.footer__btns {
  display: flex;
  width: 100%;
  gap: 1.8rem;
}
.footer__btns a {
  width: 100%;
}
.footer__btn {
  padding: 1.2rem;
  gap: 1.2rem;
  height: 6rem;
  border: 1px solid white;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 1.6rem;
  min-width: 30rem;
}
.footer__btn:hover {
  text-decoration: none;
  background: black;
  color: white;
}
.footer__btn svg {
  width: 1.6rem;
  flex-shrink: 0;
}
.footer__social {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social li {
  flex-shrink: 0;
  display: flex;
  border-radius: 50%;
}
.footer__social li a {
  display: flex;
  line-height: 0;
}
.footer__social li a:not(.footer__btn) {
  width: 6rem;
  height: 6rem;
  border: 1px solid white;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.footer__social li svg {
  width: 2.8rem;
  flex-shrink: 0;
}
.footer__copyright {
  padding-bottom: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #464646;
}
.footer__copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@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: 3.2rem;
    max-width: 100%;
    width: 100%;
  }
  .container {
    padding: 0 2rem;
  }
  .main__section {
    padding: 4rem 0;
  }
  .subheading {
    font-size: 3rem;
    margin-bottom: 2.4rem;
    opacity: 0.8;
  }
  .btn {
    min-width: 100%;
    width: 100%;
    height: 12rem;
    font-size: 2.4rem;
    padding: 4rem 6rem;
  }
  .wrapper {
    overflow: hidden;
  }
  .form-control {
    margin-bottom: 1.6rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-info {
    font-size: 2.4rem;
    margin-top: 2.4rem;
  }
  .form-input {
    height: 9rem;
    font-size: 2.4rem;
    padding: 2.4rem 1.6rem;
  }
  .form-label {
    font-size: 2.8rem;
    padding: 0 2rem;
    margin-top: 3rem;
  }
  .form-btn {
    margin-top: 4rem;
  }
  .form-check {
    font-size: 2.8rem;
    gap: 2.4rem;
    margin-top: 4rem;
  }
  .form-check svg {
    width: 4rem;
  }
  .header {
    background-image: url("../images/bg-mob1.webp");
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .header__block {
    width: 100%;
  }
  .header__heading {
    font-size: 4.4rem;
    margin-bottom: 1.6rem;
  }
  .header__text {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2.4rem;
  }
  .header__blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .header__box {
    width: 49rem;
    padding: 1.6rem;
  }
  .header__title {
    padding: 1.6rem;
    font-size: 1.6rem;
  }
  .header__program {
    font-size: 1.6rem;
    margin-top: 1.6rem;
    padding-left: 1.6rem;
  }
  .header__program-price {
    font-size: 2rem;
  }
  .header__price {
    margin-top: 2.4rem;
    margin-bottom: 3.2rem;
    font-size: 4rem;
    text-align: left;
  }
  .header__timer {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 1.6rem 2.4rem;
    margin-bottom: 3rem;
  }
  .header__timer-title {
    margin-bottom: 0;
    font-size: 3.2rem;
  }
  .header__timer-block {
    font-size: 3.2rem;
    gap: 4px;
  }
  .header__timer-txt {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
  .header__timer-num {
    gap: 0.8rem;
  }
  .header__timer-num span {
    width: 5.6rem;
    height: 6.6rem;
    font-size: 4rem;
  }
  .header__label {
    border-radius: 1.2rem;
    border: 1px solid #2C2C2C;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(25, 22, 13, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 2rem;
    width: 23rem;
    height: 23rem;
    text-align: center;
    position: fixed;
    right: 2rem;
    bottom: auto;
    top: 85rem;
    font-size: 2.6rem;
    font-family: "Bebas Neue Cyrillic", sans-serif;
    z-index: 10;
  }
  .header__label svg {
    width: 10rem;
    flex-shrink: 0;
    animation: achtung 4s linear infinite;
  }
  .about__block {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .about__img {
    width: 100%;
    order: 2;
  }
  .about__box {
    width: 100%;
    padding: 4rem;
    text-align: left;
  }
  .about__num {
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
  }
  .about__title {
    margin-bottom: 3.2rem;
    font-size: 4rem;
  }
  .about__text {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
  }
  .about__list {
    margin-bottom: 4rem;
  }
  .about__list:last-child {
    margin-bottom: 0;
  }
  .about__list ul {
    margin: 4rem 0 0 0;
  }
  .about__list ul li {
    gap: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .about__list ul li:last-child {
    margin-bottom: 0;
  }
  .about__list ul li:before {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    box-shadow: 0 0 0 1rem rgba(255, 175, 70, 0.2);
    border: 0.6rem solid #FFC56D;
  }
  .about__last {
    text-align: left;
    padding-top: 4rem;
  }
  .reviews__block {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .reviews__left {
    width: 100%;
    position: static;
  }
  .reviews__subtitle {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .reviews__heading {
    font-size: 4.4rem;
    margin-bottom: 2.4rem;
  }
  .reviews__item {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .reviews__item:last-child {
    margin-bottom: 0;
  }
  .reviews__box {
    width: 100%;
    padding: 4rem;
    border-radius: 1.2rem;
    border: 1px solid #2C2C2C;
    background: #202020;
    box-shadow: 0 0 12px 0 rgba(188, 167, 91, 0.1);
    flex-direction: column;
    gap: 0;
  }
  .reviews__img {
    width: 13rem;
    margin-bottom: 1.6rem;
  }
  .reviews__name {
    font-size: 3.6rem;
    margin-bottom: 1.6rem;
  }
  .reviews__about {
    font-size: 3.2rem;
    margin-bottom: 4.8rem;
  }
  .reviews__text {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2.4rem;
  }
  .reviews__text:last-child {
    margin-bottom: 0;
  }
  .reviews__text ul {
    padding-left: 3rem;
  }
  .reviews__text ul li::marker {
    font-size: 2rem;
  }
  .reviews__title {
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  .reviews__btn {
    margin-top: 1.6rem;
  }
  .footer {
    padding-top: 8rem;
  }
  .footer__block {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 8rem;
  }
  .footer__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footer__title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .footer__btns {
    display: flex;
    width: 100%;
    gap: 2rem;
  }
  .footer__btns a {
    width: 100%;
  }
  .footer__btn {
    margin-bottom: 0;
    padding: 2.4rem;
    gap: 2rem;
    border-radius: 1.6rem;
    font-size: 2.4rem;
    min-width: 37rem;
    height: 8rem;
  }
  .footer__btn:hover {
    text-decoration: none;
    background: black;
    color: white;
  }
  .footer__btn svg {
    width: 3.2rem;
    flex-shrink: 0;
  }
  .footer__social {
    gap: 2.4rem;
  }
  .footer__social li a:not(.footer__btn) {
    width: 8rem;
    height: 8rem;
  }
  .footer__social li svg {
    width: 3.6rem;
    flex-shrink: 0;
  }
  .footer__copyright {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .footer__copyright .container {
    gap: 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }
}

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