html {
  font-size: 1.5625vw;
  width: 100vw;
  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;
  }
}

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: 2.4rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #080808;
  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;
}

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

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

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

.btn {
  display: inline-flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 3rem 4rem;
  height: 10rem;
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  color: #080808;
  background: #FDF402;
  border-radius: 10vw;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.btn img {
  width: 4rem;
}
.btn svg {
  width: 7.6rem;
}
.btn:hover {
  background: #e4dc02;
}

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

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

.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: #FDF402;
  box-shadow: 0 0 5px #FDF402;
  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;
  font-family: "Raleway", 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: "Raleway", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #FDF402;
  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(255, 255, 255, 0.3);
  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: #080808;
  position: relative;
  width: 46rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 3rem;
}
.modal__content.text-content {
  background: #E6E6E6;
  width: 132rem;
  padding: 10rem 4rem;
  font-size: 3.2rem;
  color: #080808;
}
@media screen and (max-width: 1024px) {
  .modal__content.text-content {
    font-size: 2.6rem;
  }
}
.modal__content.text-content ol {
  line-height: 1.5;
  margin: 0;
}
.modal__content.text-content::-webkit-scrollbar {
  height: 20px;
  width: 20px;
}
.modal__content.text-content::-webkit-scrollbar-track {
  background: rgba(8, 8, 8, 0.1);
  margin: 3rem;
  box-shadow: inset -15px 0 0 0 #E6E6E6;
}
.modal__content.text-content::-webkit-scrollbar-thumb {
  background: rgba(8, 8, 8, 0.2);
  box-shadow: inset -15px 0 0 0 #E6E6E6;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 25vh;
    width: 100%;
    max-height: 100vh;
    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: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
.modal__heading {
  font-weight: 700;
  font-family: "Raleway", 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 .placeholder {
  font-size: 2.4rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 2rem;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.form-control {
  position: relative;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}
.form-control.active .placeholder {
  top: 0;
  font-size: 2rem;
}
.form .error {
  color: red;
  font-size: 2rem;
  position: absolute;
  display: none;
  top: 0;
  right: 0;
}
.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 1.5rem 0;
  height: 5rem;
  border-radius: 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  -webkit-box-shadow: inset 0 0 0 50px #080808;
  -webkit-text-fill-color: #fff;
}
.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%;
  margin-top: 2rem;
  font-size: 2.4rem;
  height: 8.6rem;
}

.language {
  position: fixed;
  z-index: 100;
  top: 2rem;
  right: 10rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #222222;
  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: #FDF402 !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 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.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 {
  position: relative;
  overflow: hidden;
}
.header__slider {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header__slider img {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.header__slider img.active {
  opacity: 1;
}
.header__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header__logo {
  position: absolute;
  top: 10rem;
  left: 10rem;
  width: 7.8rem;
}
.header__heading {
  font-size: 31.7rem;
  font-family: "Raleway", sans-serif;
  line-height: 0.71;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.header__block {
  float: right;
  width: 71.5rem;
  padding: 10rem 10rem 32rem;
}
.header__subheading {
  font-size: 2.8rem;
  margin-bottom: 10rem;
  font-weight: 600;
}
.header__title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.header__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header__list li {
  font-size: 2rem;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  margin-bottom: 1rem;
}
.header__list li:last-child {
  margin-bottom: 0;
}
.header__list li:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #FDF402;
  flex-shrink: 0;
}
.header__sign {
  width: 4.8rem;
  float: right;
  margin-top: -3rem;
  margin-bottom: 5rem;
}
.header__text {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 4rem;
  margin-top: 11rem;
}

.subject__block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 6rem;
}
.subject__item {
  display: flex;
  column-gap: 3rem;
}
.subject__img {
  width: 75rem;
  flex-shrink: 0;
}
.subject__box {
  background: white;
  color: #080808;
  padding: 4rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
.subject__title {
  font-size: 3.6rem;
  font-weight: bold;
}
.subject__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.subject__list li {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.subject__list li:last-child {
  margin-bottom: 0;
}
.subject__list li:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: #FDF402;
  flex-shrink: 0;
  border-radius: 50%;
}

.club__heading {
  margin-bottom: 4rem;
}
.club__text {
  font-size: 3.6rem;
  margin-bottom: 4rem;
  font-weight: bold;
  text-align: center;
}
.club__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.club__list li {
  border-radius: 10rem;
  background: white;
  color: #080808;
  padding: 2rem;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-weight: 600;
  font-size: 2.8rem;
}
.club__list li:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #FDF402;
  flex-shrink: 0;
}
.club__img {
  width: 100%;
}

.terms {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.terms__block {
  display: flex;
  column-gap: 4rem;
}
.terms__title {
  width: 66rem;
  flex-shrink: 0;
  font-size: 3.6rem;
  line-height: 6rem;
  padding: 10rem 0;
  font-weight: 600;
}
.terms__heading {
  margin-bottom: 5rem;
  text-align: left;
  line-height: 1.2;
}
.terms__price {
  font-weight: 800;
  font-size: 5.2rem;
  color: #FDF402;
  position: relative;
}
.terms__price--old {
  font-size: 3.6rem;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #FDF402;
}
.terms__label {
  position: absolute;
  top: 5rem;
  right: -15rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  max-width: 22rem;
  transform: rotate(-12deg);
  font-weight: normal;
  line-height: 1.2;
  color: white;
}
.terms__separator {
  background: rgba(255, 255, 255, 0.5);
  width: 1px;
  flex-shrink: 0;
}
.terms__text {
  font-size: 3.6rem;
  font-weight: 600;
  padding: 10rem 0;
}

.apply__block {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
.apply__text {
  font-size: 3.6rem;
  font-weight: 600;
}
.apply__img {
  width: 27rem;
  flex-shrink: 0;
}

.reviews {
  padding: 10rem;
}
.reviews__tape {
  overflow: hidden;
}
.reviews__tape-inner {
  display: inline-flex;
}
.reviews__tape-inner img {
  object-fit: cover;
}

@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;
  }
  .btn {
    min-width: 100%;
    height: 9rem;
    font-size: 4rem;
    padding: 2rem;
  }
  .btn svg {
    width: 9rem;
  }
  .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 .placeholder {
    font-size: 2.8rem;
    top: 3rem;
  }
  .form-control {
    padding-top: 2rem;
    margin-bottom: 2rem;
  }
  .form-control.active .placeholder {
    font-size: 2rem;
  }
  .form .error {
    top: 0.2rem;
  }
  .form-input {
    height: 6rem;
    font-size: 2.8rem;
  }
  .form-btn {
    margin-top: 3rem;
    font-size: 4rem;
    height: 10rem;
  }
  .header__slider {
    height: auto;
  }
  .header__slider img {
    min-height: auto;
  }
  .header__logo {
    position: absolute;
    top: 2rem;
    left: auto;
    right: 2rem;
    width: 6rem;
  }
  .header__heading {
    position: static;
    margin-top: 48rem;
    font-size: 11rem;
    margin-bottom: 4rem;
  }
  .header__block {
    float: none;
    width: 100%;
    padding: 0 2rem;
  }
  .header__subheading {
    margin-bottom: 5rem;
  }
  .header__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .header__list li {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .header__list li:last-child {
    margin-bottom: 0;
  }
  .header__list li:before {
    width: 1.6rem;
    height: 1.6rem;
  }
  .header__sign {
    float: right;
    margin-top: -7rem;
  }
  .header__text {
    margin-top: 5rem;
  }
  .subject__block {
    gap: 6rem;
    margin-bottom: 8rem;
  }
  .subject__item {
    flex-direction: column;
    gap: 6rem;
  }
  .subject__img {
    width: 100%;
  }
  .subject__box {
    padding: 2rem;
    gap: 2rem;
    font-size: 2.4rem;
  }
  .subject__title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .subject__list li {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .subject__list li:last-child {
    margin-bottom: 0;
  }
  .subject__list li:before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .club__heading {
    margin-bottom: 8rem;
  }
  .club__text {
    font-size: 2.8rem;
    margin-bottom: 8rem;
  }
  .club__list {
    gap: 1.6rem;
    max-width: 48rem;
    margin: 0 auto;
  }
  .club__list li {
    padding: 1.6rem;
    column-gap: 1.6rem;
    font-size: 2.8rem;
  }
  .club__list li:before {
    width: 1.6rem;
    height: 1.6rem;
  }
  .club__img {
    margin: 4rem 0;
  }
  .terms__block {
    flex-direction: column;
    gap: 0;
  }
  .terms__title {
    width: 100%;
    font-size: 2.8rem;
    line-height: 4.8rem;
    padding: 4rem 0;
  }
  .terms__heading {
    margin-bottom: 2.4rem;
    line-height: 1.2;
  }
  .terms__price {
    font-size: 4.8rem;
  }
  .terms__label {
    font-size: 1.6rem;
    top: 3rem;
    right: -17rem;
    max-width: 22rem;
  }
  .terms__label.for-ru {
    right: -22rem;
    top: 2rem;
  }
  .terms__separator {
    margin: 0 -2rem;
    width: calc(100% + 4rem);
    height: 1px;
  }
  .terms__text {
    font-size: 2.8rem;
    padding: 4rem 0;
  }
  .apply {
    padding-bottom: 10rem;
  }
  .apply__block {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 2.8rem;
  }
  .apply__text {
    font-size: 2.8rem;
    margin-top: 6rem;
    width: 30rem;
  }
  .apply__img {
    width: 21rem;
    order: -1;
    flex-shrink: 0;
  }
  .reviews {
    padding: 0;
    padding-bottom: 10rem;
  }
  .reviews .container {
    padding: 0;
  }
  .reviews__tape {
    overflow: hidden;
  }
  .reviews__tape-inner {
    display: inline-flex;
    animation: tape 60s linear infinite;
  }
  .reviews__tape-inner img {
    object-fit: cover;
    height: 110rem;
    max-width: inherit;
    padding-right: 1.6rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Raleway", sans-serif;
  line-height: 1.1;
  background: #080808;
  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: #fffdcc;
  border-color: #fffdcc;
}
.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 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 */
