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

html.thnx__page {
  font-size: 1.5625vw;
}
@media screen and (min-width: 1025px) {
  html.thnx__page {
    font-size: 0.521vw;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #1D1C1A;
  width: 100%;
  color: white;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

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

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

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

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

.text--color {
  color: #ECCE88;
}
.text--selected {
  color: #ECCE88;
}
.text--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 2rem;
  align-items: center;
  padding: 2rem 13rem;
  height: 10rem;
  font-size: 4.8rem;
  font-weight: normal;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  color: #80611B;
  background: #ECCE88;
  box-shadow: 0px 5px 0px 0px #86754D;
  position: relative;
  border-radius: 0.8rem;
  cursor: pointer;
  text-decoration: none;
}
.btn img {
  width: 5rem;
}
.btn svg {
  width: 4rem;
  position: relative;
  z-index: 3;
}
.btn:hover {
  background: #f0d79e;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.8rem;
}

.heading {
  font-size: 6.4rem;
  margin-bottom: 6rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: normal;
}

.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.list__item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #ECCE88;
  box-shadow: 0 0 5px #ECCE88;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}
.list-num {
  padding: 0;
  list-style-type: none;
  margin: 0;
  counter-reset: item;
}
.list-num__item {
  margin-bottom: 2rem;
  height: 9rem;
  padding: 1.5rem 5rem 1.5rem 12.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #ECCE88;
  border-radius: 100%;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1D1C1A;
  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 2rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  position: relative;
  width: 80rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 0.8rem;
}
.modal__content.big {
  width: 120rem;
}
@media screen and (max-width: 1024px) {
  .modal__content.big {
    width: 100%;
    padding-top: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding: 4rem;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #1D1C1A;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .modal__close {
    width: 3rem;
    height: 3rem;
  }
}
.modal__heading {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 5.4rem;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 4rem;
  color: white;
  text-align: center;
}
.modal__subheading {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1rem;
  color: white;
  text-align: center;
}
.modal__list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 4rem;
  font-size: 2.4rem;
  color: white;
}
.modal__list:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .modal__list {
    font-size: 2.8rem;
  }
}
.modal__list li {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.modal__list li:last-child {
  margin-bottom: 0;
}
.modal__list li svg {
  width: 2.2rem;
}
.modal__title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1.2rem;
  color: white;
}

.form-text {
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
}
.form-control {
  position: relative;
  margin-bottom: 1.2rem;
  width: 100%;
}
.form .error {
  color: red;
  font-size: 1.4rem;
  position: absolute;
  display: none;
  top: 0.4rem;
  right: 1.2rem;
}
.form-input {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.2rem;
  height: 5.8rem;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: #1D1C1A;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}
.form-input::placeholder {
  opacity: 0.6;
}
.form-input.err {
  color: red;
  -webkit-text-fill-color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-input:focus {
  outline: none;
}
.form-btn {
  width: 100%;
  min-width: 100%;
}
.form-fields {
  display: flex;
  column-gap: 1.2rem;
}
.form-check {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  column-gap: 1rem;
}
.form-check svg {
  width: 1.6rem;
  flex-shrink: 0;
}

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

.language {
  position: fixed;
  z-index: 100;
  top: 1rem;
  right: 1rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #383632;
  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;
  }
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #ECCE88 !important;
  border-width: 2px !important;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape-back {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes blinked {
  0% {
    transform: translateX(-100%);
    opacity: 1;
  }
  10% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes blinked-vertical {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  10% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@media screen and (min-width: 1366px) {
  .js-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 0.9s, transform 0.6s ease-out 0.9s;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 1.8s, transform 0.6s ease-out 1.8s;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 2.1s, transform 0.6s ease-out 2.1s;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 2.4s, transform 0.6s ease-out 2.4s;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 2.7s, transform 0.6s ease-out 2.7s;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 3s, transform 0.6s ease-out 3s;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 3.3s, transform 0.6s ease-out 3.3s;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 3.6s, transform 0.6s ease-out 3.6s;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.from-bottom {
    transform: translateY(200px);
  }
  .js-animate.zoom-in {
    transform: scale(0.5);
  }
  .js-animate.show-width-left {
    width: 0;
    left: 0;
    right: auto;
  }
  .js-animate.show-width-right {
    width: 0;
    right: 0;
    left: auto;
  }
  .js-animate.visible {
    opacity: 1;
  }
  .js-animate.visible.from-bottom, .js-animate.visible.from-top, .js-animate.visible.from-left, .js-animate.visible.from-right, .js-animate.visible.zoom-out, .js-animate.visible.zoom-in {
    transform: translateY(0) translateX(0) scale(1);
  }
  .js-animate.visible.show-width-right, .js-animate.visible.show-width-left {
    width: 100%;
  }
}
.header {
  background: url("../images/bg1.webp") center top no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 7rem;
}
.header__block {
  width: 113rem;
}
.header__subtitle {
  font-size: 4.4rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.header__heading {
  font-size: 8.6rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1;
  margin: 0 0 4rem;
}
.header__text {
  font-size: 3.6rem;
  margin-bottom: 2.4rem;
}
.header__list {
  list-style: none;
  margin: 0 0 5.4rem;
  padding: 0;
}
.header__list li {
  margin-bottom: 2.4rem;
  font-size: 3.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__list li svg {
  width: 2.5rem;
}
.header__list li:last-child {
  margin-bottom: 0;
}

@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 2rem;
  }
  .main__section-left {
    padding: 0 2rem;
  }
  .main__section-right {
    padding: 0 2rem;
  }
  .heading {
    font-size: 5.2rem;
    margin-bottom: 4rem;
  }
  .btn {
    min-width: 100%;
    height: 9.6rem;
    font-size: 4.8rem;
    padding: 2rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 1rem 1rem 10rem;
    font-size: 2.1rem;
    line-height: 1.2;
    backdrop-filter: none;
  }
  .list-num__item:before {
    font-size: 6rem;
    line-height: 7.5rem;
    height: 7rem;
    width: 7rem;
    top: 1rem;
    left: 1rem;
  }
  .form-fields {
    column-gap: 0.8rem;
  }
  .form-check {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    align-items: start;
  }
  .form-check svg {
    width: 3rem;
  }
  .form-input {
    height: 9rem;
    font-size: 2.8rem;
  }
  .form-btn {
    font-size: 4.8rem;
    height: 9.6rem;
  }
  .header {
    display: block;
    padding-top: 4rem;
    padding-bottom: 10rem;
    background-image: url("../images/bg1-mob.webp");
    background-size: 100% auto;
    background-position: top center;
    min-height: inherit;
  }
  .header .container {
    display: block;
  }
  .header__block {
    width: 100%;
  }
  .header__subtitle {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    max-width: 42rem;
  }
  .header__heading {
    font-size: 5.2rem;
    margin: 0 0 3.2rem;
    max-width: 50rem;
  }
  .header__text {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .header__list {
    margin-bottom: 3.2rem;
  }
  .header__list li {
    font-size: 2.8rem;
    column-gap: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .header__list li svg {
    width: 2.8rem;
  }
  .header__list li:last-child {
    margin-bottom: 0;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
  background: #1D1C1A;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  row-gap: 2rem;
  align-items: end;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
.footer a:hover {
  color: white;
  border-color: white;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
.footer .container {
  padding: 0 20rem;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 4rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}
.footer__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}
.footer__phone > div {
  min-width: 19rem;
}
.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #A3A3A3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}
@media screen and (max-width: 1024px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}

/*ENDfooter*/

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