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

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

body {
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  background: #090909;
  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 {
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
}

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

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

.btn {
  display: inline-flex;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 2rem 4rem;
  min-width: 28rem;
  height: 8rem;
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  color: white;
  background: #FD5E09;
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.btn svg,
.btn img {
  width: 4rem;
}
.btn:hover {
  background: #fd6f22;
}
.btn-red {
  background: #FD5E09;
}
.btn-red:hover {
  background: #fd6f22;
}

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

.heading {
  font-size: 4rem;
  margin-bottom: 6rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.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: #FD5E09;
  box-shadow: 0 0 5px #FD5E09;
  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: 2rem;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  padding-bottom: 1rem;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #FD5E09;
  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: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 60px 40px 40px;
  background: #1a1a1a;
  position: relative;
  width: 440px;
  max-height: 100vh;
  overflow-y: auto;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal__heading {
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.form {
  text-align: center;
}
.form-control {
  position: relative;
}
.form .error {
  color: #FD5E09;
  font-size: 12px;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-input {
  background: #eee;
  border: none;
  padding: 1.5rem 2rem;
  height: 6rem;
  border-radius: 0;
  font-size: 2rem;
  line-height: 1;
  color: #3F3F44;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}
.form-input.err {
  color: #FD5E09;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: #FD5E09;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-btn {
  width: 100%;
  font-size: 2.4rem;
  margin-top: 1rem;
}

.language {
  position: fixed;
  z-index: 100;
  top: 4rem;
  right: 10vw;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #2f2f2f;
  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% {
    margin-left: 0;
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@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.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 0.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 0.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 1s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 1.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 1.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 1.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 2.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 2.4s, transform 0.6s ease-out;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .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 center no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 16rem 0;
}
@media (max-width: 1400px) {
  .header {
    min-height: calc(100vh - 22rem);
  }
}
.header .container {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  position: relative;
}
.header__col {
  width: 107rem;
}
.header__subheading {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-weight: 600;
}
.header__heading {
  font-size: 7.2rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 3rem;
  position: relative;
}
.header__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  width: 38rem;
  height: 8rem;
  border: 1px solid white;
  border-radius: 10rem;
  font-size: 4.8rem;
  font-family: "Oswald", sans-serif;
  color: #FD5E09;
  position: relative;
  top: -1rem;
}
.header__banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  border: 1px solid white;
  border-radius: 10rem;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
  color: #FD5E09;
  position: relative;
  margin-bottom: 6rem;
  text-transform: uppercase;
  font-weight: bold;
}
.header__text {
  position: relative;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  max-width: 99.5rem;
}
.header__form .form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
}
.header__form .form > div:not(.form-bg) {
  display: none;
}
.header__form .form-bg {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: #EEE;
  overflow: hidden;
  padding: 0.5rem 3rem;
}
.header__form .form-input {
  width: 24rem;
  padding: 2rem 2rem;
  height: 7rem;
  margin-bottom: 0;
  flex-shrink: 0;
}
.header__form .form-separator {
  height: 7rem;
  background: #BBBBC3;
  width: 1px;
  flex-shrink: 0;
}
.header__form .form-btn {
  width: auto;
  white-space: nowrap;
  font-size: 2.4rem;
  padding: 2rem 4rem;
  margin-top: 0;
  border-radius: 10rem;
}
.header__check {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding-left: 4rem;
  column-gap: 2rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}
.header__check svg {
  width: 1.5rem;
  flex-shrink: 0;
}
.header__label {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 12rem;
  padding: 2rem;
  width: 23rem;
  height: 23rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(9, 9, 9, 0.3);
  backdrop-filter: blur(5px);
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
}
.header__label-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #FD5E09;
}

.thnx {
  background: url("../images/thnx-bg.png") bottom center no-repeat;
  background-size: cover;
  padding: 6rem 0 20rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 1025px) and (max-width: 1365px) {
  .thnx {
    min-height: calc(100vh - 24rem);
  }
}
.thnx__subheading {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  font-size: 4rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
}
.thnx__subheading svg {
  width: 4rem;
}
.thnx__heading {
  margin-bottom: 7rem;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
.thnx__heading span {
  display: block;
  margin-bottom: 2rem;
}
.thnx__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75rem;
}
.thnx__title {
  margin-bottom: 4rem;
  font-size: 2.2rem;
  font-weight: 500;
}
.thnx__list {
  margin-bottom: 4rem;
  width: 100%;
}
.thnx__btn {
  height: 9rem;
  background: #FD5E09;
  min-width: 45rem;
  font-size: 3rem;
  font-family: "Raleway", sans-serif;
  border-radius: 1rem;
}

@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;
  }
  .heading {
    font-size: 4rem;
    margin-bottom: 8rem;
  }
  .thnx__page .container,
  .thnx__page .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .thnx {
    background-image: url("../images/thnx-bg-mob.png");
    background-position: 0 -5rem;
    padding: 4rem 0 6rem;
  }
  .thnx__subheading {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .thnx__subheading svg {
    width: 4rem;
  }
  .thnx__heading {
    margin-bottom: 0;
    padding-bottom: 40rem;
    font-size: 3rem;
    line-height: 1.3;
  }
  .thnx__heading span {
    margin-bottom: 0;
  }
  .thnx__blocks {
    width: 100%;
  }
  .thnx__title {
    margin-bottom: 2rem;
    font-size: 3.2rem;
  }
  .thnx__list {
    margin-bottom: 3rem;
    width: 100%;
  }
  .btn {
    min-width: 100%;
    height: 10rem;
    font-size: 4.4rem;
    column-gap: 2rem;
    border-radius: 2rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-check__item {
    margin-bottom: 2rem;
    padding-left: 5.6rem;
    font-size: 2.4rem;
  }
  .list-check__item:before {
    width: 4rem;
    height: 4rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 6rem 1rem 10rem;
    font-size: 2.4rem;
    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-input {
    height: 8rem;
    padding: 3rem;
    font-size: 2.4rem;
  }
  .form-btn {
    margin-top: 1rem;
    height: 12rem;
  }
  .box {
    padding: 2rem 4rem;
  }
  .header {
    min-height: inherit;
    max-height: inherit;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: url("../images/bg1-mob.webp") center center no-repeat;
    background-size: 100% auto;
  }
  .header__col {
    width: 100%;
    height: 106rem;
    min-height: 106rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }
  .header__subheading {
    font-size: 2.4rem;
  }
  .header__heading {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  .header__title {
    font-size: 2.8rem;
    padding: 1rem 2rem;
    width: 24rem;
    height: 6rem;
  }
  .header__text {
    font-size: 2.4rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .header__banner {
    margin-bottom: auto;
    justify-content: start;
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .header__form .form {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    background: #eee;
    border-radius: 2rem;
  }
  .header__form .form-bg {
    flex-direction: column;
    align-items: stretch;
    background: none;
    border-radius: 0;
    width: 100%;
    padding: 0;
  }
  .header__form .form-input {
    width: 100%;
    border-bottom: 1px solid #BBBBC3;
    padding: 3rem 0;
    height: 8rem;
  }
  .header__form .form-separator {
    display: none;
  }
  .header__form .form-btn {
    margin-top: 2rem;
    height: 10rem;
    font-size: 4rem;
  }
  .header__label {
    left: auto;
    right: 2rem;
    margin-top: -19rem;
    width: 26rem;
    height: 26rem;
    font-size: 2rem;
  }
  .header__label-title {
    font-size: 2.8rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Raleway", sans-serif;
  line-height: 1.1;
  background: #090909;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  flex-direction: column;
  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: #FD5E09;
  border-color: #FD5E09;
}
.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;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.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 */
