@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

body {
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Default styles */
html {
  font-size: 62.5%;
}

body {
  min-width: 32rem;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 3.2rem;
  color: #fff;
}

.preloader {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s linear;
  z-index: 1000;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__svg {
  width: 250px;
  height: 300px;
}

.preloader__logo {
  transform: translateY(-96px);
}

/* .preloader__text {
    margin-left: 50px;
} */
.preloader__text-top {
  font-weight: 400;
  font-size: 210px;
  line-height: 100%;
  color: #fff;
}

.preloader__text-bottom {
  font-weight: 400;
  font-size: 90px;
  line-height: 100%;
  color: #fff;
  margin-left: 11px;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.progress-bar__procent {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.progress-bar__line {
  width: 0%;
  height: 3px;
  background-color: #fff;
  will-change: transform;
  transition: 0.2s linear;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  background-color: #000;
}
.page::-webkit-scrollbar {
  display: none;
}
.page.scroll-hide {
  height: calc(var(--vh, 1vh) * 100);
}

.page-form {
  background-color: #fff;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 24px;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo {
  display: block;
  margin-right: auto;
  width: auto;
  height: 50px;
}

.logo__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__item + .nav__item {
  margin-left: 48px;
}

.nav__link {
  font-size: 16px;
  line-height: 32px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.2s linear;
}
.nav__link.light {
  opacity: 0.6;
}

.lang__list {
  display: flex;
  align-items: center;
  margin-left: 198px;
  height: 35px;
}

.lang__item {
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  cursor: default;
}
.lang__item + .lang__item {
  margin-left: 1.3rem;
}

.lang__link {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-block;
  text-align: center;
  color: #fff;
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .lang__link:hover {
    opacity: 0.6;
  }
}
.lang__link.active {
  background-color: #FFB1F3;
  border-radius: 50%;
  color: #000;
  text-decoration: underline;
  opacity: 1;
}

.burger {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  position: relative;
}
.burger.active .burger__line:nth-child(1) {
  width: 0;
}
.burger.active .burger__line:nth-child(2), .burger.active .burger__line:nth-child(3) {
  position: absolute;
  left: 0;
  top: 35%;
  transform-origin: center;
}
.burger.active .burger__line:nth-child(2) {
  transform: rotate(45deg);
}
.burger.active .burger__line:nth-child(3) {
  transform: rotate(-45deg);
}

.burger__line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.2s ease-out;
}
.burger__line + .burger__line {
  margin-top: 4px;
}
.burger__line:nth-child(1) {
  width: 20px;
  margin-left: auto;
}

@media (max-width: 1450px) {
  .header {
    padding: 0.8rem 2.4rem 0.8rem 2.4rem;
  }

  .nav__item + .nav__item {
    margin-left: 2.8rem;
  }

  .lang__list {
    margin-left: 3.2rem;
  }
}
@media (max-width: 940px) {
  .header {
    position: relative;
  }

  .burger {
    display: block;
  }

  .nav {
    width: 100%;
    height: 53rem;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    padding-top: 3.3rem;
    width: 100%;
    height: 100%;
    text-align: center;
  }

  .nav__item + .nav__item {
    margin-top: 3.7rem;
    margin-left: 0;
  }

  .lang__list--header {
    justify-content: center;
    margin-top: 1rem;
    margin-left: 0;
  }

  .nav__item:nth-child(2) {
    display: none;
  }
}
@media (max-width: 425px) {
  .header {
    padding: 0 1.6rem 0 0;
  }

  .logo__img {
    margin-left: -17px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .nav {
    height: 30rem;
    top: 3.2rem;
  }

  .nav__list {
    padding-top: 1rem;
  }

  .nav__link {
    font-size: 16px;
    line-height: 19px;
  }

  .nav__item + .nav__item {
    margin-top: 1.7rem;
  }

  .lang__list--header {
    margin-top: 2rem;
  }

  .burger {
    width: 2rem;
    height: 2rem;
  }

  .burger__line {
    width: 20px;
    height: 2px;
  }

  .burger__line:nth-child(1) {
    width: 14px;
  }
}
.banner__inner {
  width: 100%;
  height: auto;
  height: 100vh;
  padding-top: 56px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  position: relative;
}
.banner__inner::-webkit-scrollbar {
  display: none;
}
.banner__inner--large {
  text-align: center;
}
.banner__inner--large .banner__img {
  max-height: 86.4rem;
}

.banner__img {
  display: block;
  height: 100%;
  width: 100%;
}
.banner__img img {
  display: none;
}
.banner__img canvas {
  display: block;
  width: 100% !important;
  height: 100%;
}

.banner-bottom__img {
  height: 120% !important;
}

.banner__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner__content {
  display: flex;
  align-items: center;
  padding: 33px 64px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.banner__content--center {
  flex-direction: column;
  padding: 1.3rem 1.5rem 3.2rem 2.4rem;
}

.banner__text {
  max-width: 1230px;
  margin-right: auto;
  padding-right: 20px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
  color: #fff;
}
.banner__text span {
  font-weight: 500;
}
.banner__text--center {
  margin-bottom: 1rem;
  margin: 0 auto 1rem auto;
  max-width: 100%;
  font-weight: 300;
  line-height: 4.8rem;
  text-transform: uppercase;
}

@media (max-width: 1720px) {
  .banner__content {
    padding: 2.1rem 4rem 2.7rem 4rem;
  }
}
@media (max-width: 1450px) {
  .banner__text {
    max-width: 80rem;
  }
  .banner__text--center {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .banner__content {
    display: flex;
    flex-direction: column;
  }

  .banner__text {
    max-width: 100%;
    margin-bottom: 1.3rem;
    font-size: 2.4rem;
    line-height: 32px;
  }
}
@media (max-width: 940px) {
  .banner__inner {
    height: 53rem;
  }
}
@media (max-width: 768px) {
  .banner__content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .banner__text {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 425px) {
  .banner__inner {
    height: 30rem;
  }

  .banner__content {
    padding: 1.1rem 1.5rem 1.6rem;
  }

  .banner__text {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
.btn {
  display: block;
  width: 30rem;
  height: 6rem;
  overflow: hidden;
  background: #FFB1F3;
  position: relative;
  /*   &--banner {
        position: absolute;
        right: 64px;
        bottom: 40px;
    } */
}
.btn span {
  display: block;
  font-size: 2rem;
  line-height: 6.4rem;
  color: #222;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.btn::before {
  content: "";
  background: #000;
  mix-blend-mode: darken;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(-100%);
}
.btn::after {
  content: "";
  background: #000;
  mix-blend-mode: darken;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(100%);
}
.btn:hover::before {
  transform: translateX(0);
}
.btn:hover::after {
  transform: translateX(0);
}
.btn:hover span {
  color: #fff;
}

@media (max-width: 1720px) {
  .btn {
    width: 25.8rem;
    height: 5.4rem;
    line-height: 5.4rem;
  }

  .btn--banner {
    right: 4rem;
    bottom: 2.4rem;
  }
}
@media (max-width: 1570px) {
  .btn {
    width: 23.8rem;
    height: 4.4rem;
    font-size: 1.8rem;
    line-height: 4.4rem;
  }
}
@media (max-width: 1024px) {
  .btn {
    width: 30rem;
    height: 4.8rem;
    font-size: 1.6rem;
    line-height: 4.8rem;
  }

  .btn--banner {
    position: static;
    margin: 0 auto;
  }
}
@media (max-width: 840px) {
  .btn {
    width: 30rem;
    height: 4.8rem;
    font-size: 1.6rem;
    line-height: 4.8rem;
  }
}
@media (max-width: 425px) {
  .btn {
    width: 100%;
  }
}
.about__inner {
  width: 100%;
  height: auto;
  padding: 13rem 29.3rem 15.2rem 16.3rem;
  background-color: #000;
}

.about__title {
  margin-bottom: 2.5rem;
  font-size: 32px;
  line-height: 32px;
  color: #fff;
  font-weight: 400;
}

.about__text {
  max-width: 113.6rem;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
}
.about__text span {
  font-weight: 400;
}

@media (max-width: 1450px) {
  .about__inner {
    padding: 5.3rem 6rem 7.3rem 5.6rem;
  }
}
@media (max-width: 600px) {
  .about__inner {
    padding: 3.8rem 2.5rem 4rem;
  }

  .about__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 425px) {
  .about__inner {
    padding: 2.8rem 1.5rem 4rem;
  }

  .about__title {
    font-size: 2.4rem;
  }

  .about__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.history {
  background-color: #fff;
}

.history__inner {
  max-width: 113rem;
  height: auto;
  padding: 13.5rem 3.2rem 14.7rem;
  margin: 0 auto;
}

.history__title {
  margin-bottom: 4.4rem;
  font-size: 32px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
}

.history__list {
  margin-left: 1.4rem;
  padding-bottom: 3.1rem;
  border-left: 2px solid #FFB1F3;
}

.history__item {
  padding-left: 5.9rem;
  position: relative;
}
.history__item::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  background-color: #FFB1F3;
  position: absolute;
  top: 0;
  left: -13.5px;
}

.history__bottom {
  margin-top: -2.5rem;
  margin-left: 1.4rem;
  padding-left: 5.9rem;
  position: relative;
}
.history__bottom::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  background-color: #FFB1F3;
  position: absolute;
  top: 5px;
  left: -11.4px;
}

.history__date {
  margin-bottom: 0.6rem;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-weight: 300;
}
.history__date span {
  font-weight: 400;
}

.history__text {
  max-width: 67rem;
  padding-bottom: 2.6rem;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  opacity: 0.7;
  color: #000;
}

@media (max-width: 1450px) {
  .history__inner {
    padding: 4.2rem 3.2rem 7.2rem;
  }
}
@media (max-width: 425px) {
  .history__title {
    margin-bottom: 1.3rem;
    font-size: 16px;
    line-height: 32px;
  }

  .history__inner {
    padding: 2.7rem 1.4rem 3.7rem;
  }

  .history__item {
    padding-left: 2.6rem;
  }

  .history__date {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 500;
  }

  .history__date span {
    font-weight: 500;
  }

  .history__text {
    margin-bottom: 1.6rem;
    padding-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.6rem;
  }

  .history__bottom {
    padding-left: 2.6rem;
  }
}
.artists {
  width: 100vw;
  overflow: hidden;
  background-color: #000;
}

.artists__inner {
  display: flex;
  height: 100%;
  width: 100%;
}

.tabs {
  position: relative;
  width: 20%;
  min-width: 44rem;
}

.tabs__img {
  display: block;
  width: 100%;
  max-height: 864px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 0;
}

.tabs__list {
  padding-top: 4.4rem;
  text-align: end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.tabs__item {
  padding: 1.2rem 4rem;
  font-size: 22px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: background-color 0.2s linear;
}
.tabs__item.active {
  background-color: #fff;
  opacity: 1;
  color: #000;
  font-weight: 400;
}
.tabs__item span {
  pointer-events: none;
}

.content {
  background-color: #000;
  width: 77.5%;
  height: 100%;
}

.mySwiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.2s linear all;
}
.slider__arrow--prev {
  left: 3.2rem;
}
.slider__arrow--prev img {
  margin-right: 3px;
}
.slider__arrow--next {
  right: 3.2rem;
}
.slider__arrow--next img {
  margin-left: 3px;
}
.slider__arrow:focus {
  outline: none;
}
.slider__arrow:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.content__item {
  display: block;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  transition: 0.4s ease-out all;
  position: relative;
}

.slider__item {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 864px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
}

.content__descr {
  padding: 1.3rem 7.7rem 1.8rem;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.content__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.25);
}

.content__text {
  max-width: 984px;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 300;
  color: #fff;
}

@media (max-width: 1920px) {
  .content {
    width: 77%;
  }
}
@media (max-width: 1900px) {
  .tabs {
    min-width: 28rem;
  }

  .content {
    width: 80%;
  }
}
@media (max-width: 1400px) {
  .artists__inner {
    flex-direction: column;
  }

  .tabs {
    width: 100%;
    height: 11.6rem;
    min-width: auto;
    padding-top: 4.4rem;
    position: relative;
    z-index: 20;
    background-color: #000;
  }

  .tabs__img {
    display: none;
  }

  .tabs__list {
    display: flex;
    padding: 0;
    width: 100%;
    height: 100%;
    position: static;
  }

  .tabs__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100%;
    padding: 0;
    text-align: center;
  }

  .content {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .slider__img {
    height: 64rem;
  }

  .slider__arrow {
    top: 32rem;
  }

  .content__descr {
    padding: 4.5rem 4rem 19.6rem 4.5rem;
    position: static;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    text-align: start;
  }

  .content__title {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .tabs {
    height: 100%;
    padding-top: 1.6rem;
  }

  .tabs__list {
    flex-direction: column;
  }

  .tabs__item {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.9rem 0;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    transition: 0.2s linear all;
  }

  .tabs__item.active {
    background-color: #000;
    font-weight: 300;
    color: #fff;
  }

  .tabs__item-title {
    padding-right: 1.6rem;
    margin-left: 3.2rem;
    position: relative;
  }

  .tabs__item-title::before {
    content: "";
    display: block;
    width: 1.3rem;
    height: 0.7rem;
    background: url(../img/tabs-arrow.svg);
    position: absolute;
    top: 30%;
    right: 0;
    transition: 0.2s linear all;
  }

  .active span::before {
    transform: rotate(180deg);
  }

  .slider__arrow {
    top: 20rem;
    width: 3.2rem;
    height: 3.2rem;
  }

  .slider__arrow img {
    width: 11px;
  }

  .slider__arrow--prev {
    left: 1.6rem;
  }

  .slider__arrow--next {
    right: 1.6rem;
  }

  .slider__item {
    max-width: 100vh;
  }

  .content__descr {
    padding: 2.5rem 3rem 2.5rem 2.5rem;
  }

  .content__title {
    margin-bottom: 1.2rem;
    font-size: 18px;
    line-height: 18px;
  }

  .content__text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
  }

  .content__item {
    margin-top: 1.9rem;
    overflow-y: hidden;
    transition: max-height 0.3s ease-out;
  }

  .slider__img {
    height: 40rem;
  }

  .slider__item {
    max-width: 76.8rem;
  }
}
@media (max-width: 425px) {
  .slider__img {
    height: 24.8rem;
  }

  .slider__arrow {
    top: 12.4rem;
  }
}
.contacts {
  padding: 117px 293px 35px 293px;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #000;
}

.contacts__title {
  margin-bottom: 2.6rem;
  font-size: 32px;
  line-height: 48px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.25);
}

.contacts__descr {
  margin-bottom: 4rem;
}

.contacts__company-office {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
}
.contacts__company-office span {
  font-weight: 400;
}

.contacts__company-addres {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}

.contacts__company-contacts {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
}
.contacts__company-contacts a {
  font-weight: 400;
  color: #fff;
}

.contacts__link {
  display: none;
  margin-bottom: 4.7rem;
  padding-left: 2.8rem;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #5FA8FF;
  position: relative;
}
.contacts__link::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.4rem;
  background: url("../img/label.png");
  position: absolute;
  top: 0;
  left: 0;
}

.contacts__wrapper {
  margin-bottom: 5.5rem;
  overflow: hidden;
}

.contacts__map {
  border-radius: 2.4rem;
  border: none;
  width: 100%;
  height: 712px;
}

.contacts__social {
  display: none;
  padding-top: 2.5rem;
}

.contacts__social-item {
  display: flex;
  align-items: center;
}
.contacts__social-item + .contacts__social-item {
  margin-top: 3.2rem;
}

.contacts__social-img {
  margin-right: 1.6rem;
}

.contacts__social-link {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

@media (max-width: 1400px) {
  .contacts {
    padding: 117px 146.5px 35px 146.5px;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #000;
  }

  .contacts__map {
    height: 512px;
  }
}
@media (max-width: 1024px) {
  .contacts {
    padding: 3rem 4rem 2.7rem;
  }

  .contacts__title {
    margin-bottom: 0.8rem;
  }

  .contacts__descr {
    margin-bottom: 3.5rem;
  }

  .contacts__wrapper {
    margin-bottom: 3.7rem;
  }
}
@media (max-width: 425px) {
  .contacts {
    padding: 3rem 4rem 2.7rem;
  }

  .contacts__title {
    margin-bottom: 4rem;
    line-height: 3.8rem;
  }

  .contacts__descr {
    margin-bottom: 2.4rem;
  }

  .contacts__link {
    display: block;
  }

  .contacts__wrapper {
    display: none;
  }

  .contacts__social {
    display: block;
  }
}
.questionary {
  padding: 101px 15px 142px;
  background-color: #fff;
}

.questionary__title {
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-weight: 300;
  color: #000;
  text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.25);
  text-align: center;
}

.questionary__subtitle {
  margin-bottom: 2.3rem;
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
  text-align: center;
}

.form {
  max-width: 1594px;
  margin: 0 auto;
}

.form__privacy {
  padding: 1.6rem 3.5rem 0.5rem;
  background-color: #E9E9E9;
  margin-bottom: 4.8rem;
}

.form__privacy-title {
  padding-left: 1.6rem;
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
}

.form__privacy-descr {
  padding: 2.4rem 6.7rem 2.4rem 5.4rem;
  margin-bottom: 1.1rem;
  height: 23rem;
  overflow-y: scroll;
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 300;
  color: #000;
}
.form__privacy-descr span {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.7rem;
  background-color: #000;
}
.form__privacy-descr a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 300;
  color: #000;
}

.form__privacy-descr_item + .form__privacy-descr_item {
  margin-top: 22px;
}

.form__privacy-checkbox {
  display: none;
}
.form__privacy-checkbox:checked + .form__privacy-fake::before {
  opacity: 1;
}

.form__privacy-fake {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.8rem;
  border: 1px solid #000;
  position: relative;
}
.form__privacy-fake::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #000;
  opacity: 0;
  transition: 0.2s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form__privacy-text {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: 300;
  color: #000;
}

.form__group {
  margin-bottom: 3.7rem;
  padding: 0 3rem 0 6rem;
}
.form__group--link {
  margin-bottom: 3.7rem;
}

.form__title {
  display: inline-block;
  margin-bottom: 1.9rem;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  color: #000;
}
.form__title--star {
  margin-bottom: 2.8rem;
  position: relative;
}
.form__title--star::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/star.png") no-repeat;
  position: absolute;
  top: -6px;
  right: -11px;
}

.form__group-label {
  display: flex;
  align-items: center;
  margin-left: 9.7rem;
  max-width: 1142px;
}

.form__label {
  display: inline-block;
  cursor: pointer;
  margin-right: 2.4rem;
}

.form__radio {
  display: none;
}
.form__radio:checked + .form__label-text {
  border: 1px solid #FFB1F3;
  background-color: #FFB1F3;
}

.form__label-text {
  display: block;
  padding: 0 2.3rem;
  border: 1px solid #c4c4c4;
  border-radius: 33px;
  font-size: 1.6rem;
  line-height: 3.8rem;
  font-weight: 300;
  color: #000;
  transition: 0.2s linear all;
}

.form__input {
  width: 100%;
  height: 4rem;
  padding: 0.9rem 1.5rem;
  border: 2px solid #C4C4C4;
  border-radius: 4px;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 300;
  color: #000;
}
.form__input::-moz-placeholder {
  font-size: 12px;
  opacity: 0.5;
}
.form__input:-ms-input-placeholder {
  font-size: 12px;
  opacity: 0.5;
}
.form__input::placeholder {
  font-size: 12px;
  opacity: 0.5;
}
.form__input:focus {
  outline: none;
}
.form__input--details {
  max-width: 35.6rem;
}
.form__input--fullname {
  display: block;
  width: 100%;
  max-width: 69%;
  margin-right: 2.4rem;
  margin-bottom: 3.2rem;
}
.form__input--nationality {
  display: block;
  width: 100%;
  max-width: 28.7%;
}
.form__input--height {
  max-width: 11.2rem;
  margin-left: 2.4rem;
}
.form__input--weight {
  max-width: 10rem;
  margin-left: 2.4rem;
}
.form__input--phone {
  max-width: 30%;
  margin-right: 2.4rem;
}
.form__input--mail {
  max-width: 30%;
  margin-right: 2.4rem;
}
.form__input--social {
  max-width: 30%;
}
.form__input--textarea {
  max-width: 100%;
  height: 20rem;
}
.form__input--date {
  max-width: 35rem;
}
.form__input--link {
  max-width: 1142px;
}

.form__group-input {
  display: flex;
  flex-wrap: wrap;
  margin-left: 9.7rem;
  margin-bottom: 3.2rem;
  max-width: 1142px;
}
.form__group-input--contact {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.form__group-textarea {
  max-width: 1142px;
  margin: 1.6rem 0 0 9.7rem;
}

.input__textarea {
  width: 100%;
  height: 13.6rem;
  padding: 1.5rem 2rem;
  resize: none;
  border: 2px solid #C4C4C4;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 300;
  color: #000;
}
.input__textarea::-moz-placeholder {
  font-size: 12px;
  opacity: 0.5;
}
.input__textarea:-ms-input-placeholder {
  font-size: 12px;
  opacity: 0.5;
}
.input__textarea::placeholder {
  font-size: 12px;
  opacity: 0.5;
}
.input__textarea:focus {
  outline: none;
}

.form__btn-wrapper {
  margin: 10.4rem auto 0 auto;
  text-align: center;
}

@media (max-width: 1650px) {
  .form__group-label {
    flex-wrap: wrap;
  }

  .form__input--details {
    display: block;
    max-width: 100%;
    margin-left: 0;
  }

  .form__label {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 1277px) {
  .form__input--nationality {
    max-width: 28.3%;
  }
}
@media (max-width: 1175px) {
  .form__title {
    margin-left: 3rem;
  }

  .form__group {
    margin-bottom: 3.2rem;
  }

  .form__group-label {
    margin-left: 0;
  }

  .form__label-text {
    padding: 0 1.6rem;
  }

  .form__group-input {
    margin-left: 0;
    margin-bottom: 2.4rem;
  }

  .form__group-textarea {
    margin-left: 0;
  }

  .form__btn-wrapper {
    margin: 4.8rem auto 0rem auto;
  }
}
@media (max-width: 1027px) {
  .form__input--nationality {
    max-width: 28%;
  }
}
@media (max-width: 940px) {
  .form__input--fullname {
    max-width: 100%;
    margin-right: 0;
  }

  .form__input--nationality {
    margin-right: 2.4rem;
    margin-bottom: 2.4rem;
    max-width: 32%;
  }

  .form__input--weight {
    margin-left: 0;
  }

  .form__input--height {
    margin-left: 0;
    margin-right: 2.4rem;
  }

  .form__input--date {
    max-width: 33%;
    margin-right: 2.4rem;
  }
}
@media (max-width: 840px) {
  .form__input--weight {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .input__textarea {
    font-size: 1.6rem;
  }

  .form__input {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .questionary {
    padding: 30px 15px 30px;
  }
}
@media (max-width: 700px) {
  .form__group-input--contact {
    flex-wrap: wrap;
  }

  .form__input--phone {
    max-width: 100%;
    margin: 0 0 1.6rem 0;
  }

  .form__input--mail {
    max-width: 100%;
    margin: 0 0 1.6rem 0;
  }

  .form__input--social {
    max-width: 100%;
    margin: 0 0 1.6rem 0;
  }
}
@media (max-width: 600px) {
  .form__input--nationality {
    max-width: 18rem;
  }

  .form__input--weight {
    order: 1;
    margin-right: 2.4rem;
  }

  .form__input--height {
    margin-right: 2.4rem;
    margin-left: 0;
    margin-bottom: 2.4rem;
  }

  .form__input--date {
    order: 2;
    max-width: 18rem;
  }

  .form__privacy {
    padding: 0.4rem 0.8rem;
    margin-bottom: 3rem;
  }

  .form__privacy-descr {
    height: 23rem;
    overflow-y: scroll;
  }

  .form__privacy-title {
    line-height: 16px;
    padding-left: 0.3rem;
    margin-bottom: 0.2rem;
  }

  .form__privacy-descr {
    margin-bottom: 0;
    padding: 0.3rem;
  }

  .form__privacy-text {
    font-size: 12px;
    line-height: 12px;
  }

  .form__privacy-label {
    font-size: 12px;
    line-height: 12px;
  }
}
@media (max-width: 425px) {
  .questionary__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }

  .questionary__subtitle {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 32px;
  }

  .form__label {
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

  .form__title {
    font-size: 20px;
    line-height: 20px;
    margin-left: 0;
    margin-bottom: 2.1rem;
  }

  .form__group {
    padding: 0;
  }

  .form__input--fullname {
    margin-bottom: 0.8rem;
  }

  .form__input--nationality {
    max-width: 100%;
    margin: 0 0 1.6rem 0;
  }

  .form__input--weight {
    max-width: 100%;
    margin: 0 0 1.6rem 0;
  }

  .form__input--height {
    max-width: 100%;
    margin: 0 0 1.6rem 0;
  }

  .form__input--date {
    max-width: 100%;
    margin: 0 0 1.6rem 0;
  }

  .form__label-text {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }

  .form__btn-wrapper {
    margin: 2.8rem auto 4rem auto;
  }
}
/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

.footer {
  margin-top: auto;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  padding: 2.4rem 2.4rem 1.3rem;
  background-color: #000;
}

.footer-contacts__item {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  color: #fff;
}

.footer-contacts__title {
  font-size: 2.2rem;
  line-height: 2.1rem;
  font-weight: 400;
  color: #fff;
}

.footer-contacts__link {
  display: inline-block;
  margin-left: 5px;
  padding-bottom: 3px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.footer-contacts__link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.2s linear;
  transform: translateX(-100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (any-hover: hover) {
  .footer-contacts__link:hover::before {
    transform: translateX(0);
  }
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 2rem;
  text-align: end;
}

.social__link {
  display: inline-block;
}
.social__link + .social__link {
  margin-left: 1.6rem;
}

.social__icon {
  opacity: 0.8;
  transition: 0.2s linear;
}
@media (any-hover: hover) {
  .social__icon:hover {
    opacity: 1;
    transform: scale(1.2);
  }
}

.сopyright {
  margin-top: 0.5rem;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
}

@media (max-width: 1024px) {
  .footer__inner {
    padding: 1rem 2.5rem;
  }
}
@media (max-width: 425px) {
  .footer__left_mobil {
    display: none;
  }

  .social_mobil {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__left {
    margin-bottom: 0.9rem;
  }

  .footer__right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 0;
  }

  .social {
    width: 50%;
    text-align: start;
    margin-bottom: 0;
  }

  .lang__list--footer {
    width: 50%;
    margin-left: auto;
    justify-content: flex-end;
  }

  .сopyright {
    margin-top: 0.7rem;
    width: 100%;
    font-size: 10px;
    line-height: 12px;
  }
}
/*# sourceMappingURL=main.css.map */
