@charset "UTF-8";

.stretch {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.text-overflow {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.transition_all {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    will-change: transform;
}

.transition_opacity {
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    will-change: opacity;
}

.transition_background {
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    will-change: background;
}

.transition_color {
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    will-change: color;
}

.transition_color_background {
    -webkit-transition: color .3s ease, background .3s ease;
    transition: color .3s ease, background .3s ease;
    will-change: color, background;
}

.transition_transform {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    will-change: transform;
}

.tranisition_fill {
    -webkit-transition: fill .3s ease;
    transition: fill .3s ease;
    will-change: fill;
}

.flex,
.header__nav,
.header__info,
.footer__nav,
.footer__info,
.footer .lang__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex--wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex--column,
.header__mobile .nav,
.header__mobile .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex--align-center,
.header a,
.header__link,
.footer a,
.header__flex,
.header__info,
.footer__flex,
.footer__info {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex--align-top,
.form__inputs .flex,
.form__inputs .header__nav,
.form__inputs .header__info,
.form__inputs .footer__nav,
.form__inputs .footer__info,
.form__inputs .footer .lang__list,
.footer .form__inputs .lang__list {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex--align-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex--justify-between,
.form__inputs .flex,
.form__inputs .header__nav,
.form__inputs .header__info,
.form__inputs .footer__nav,
.form__inputs .footer__info,
.form__inputs .footer .lang__list,
.footer .form__inputs .lang__list,
.header__nav,
.header__info,
.footer__nav,
.footer__info {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex--justify-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex--justify-center,
.header__logo,
.footer__logo {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex--justify-start,
.footer__logo {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex--justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex--center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@-webkit-keyframes bouncing {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bouncing {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: auto;
}

body {
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    background: -webkit-linear-gradient(344.5deg, #68197B 0%, #350342 54.43%, #1B0122 100%);
    background: linear-gradient(105.5deg, #68197B 0%, #350342 54.43%, #1B0122 100%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.header,
.main,
.footer {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter .5s;
    transition: -webkit-filter .5s;
    transition: filter .5s;
    transition: filter .5s, -webkit-filter .5s;
}

.wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
}

.content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    z-index: 100;
    overflow-x: hidden;
}

.footer {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    z-index: 300;
}

a,
input,
textarea,
button {
    outline: none;
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.section {
    position: relative;
}

.section--full-height {
    min-height: 100vh;
}

.section__title {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    letter-spacing: 10px;
    border: 2px solid #fff;
    border-radius: 33px;
    padding: 15px 60px;
}

.section__title:not(.right) {
    padding-left: 120px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}

.section__title.right {
    right: 0;
    left: auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    padding-right: 120px;
}

.blur {
    -webkit-filter: blur(50px);
    filter: blur(50px);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.circle {
    border-radius: 50%;
}

.square::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.rectangle {
    width: 100%;
}

.block {
    display: block !important;
}

.w-100 {
    width: 100%;
}

[class*="max-"] {
    width: 100%;
}

.max-1100 {
    max-width: 1100px;
}

.max-1040 {
    max-width: 1040px;
}

.max-700 {
    max-width: 700px;
}

.max-560 {
    max-width: 560px;
}

button,
input {
    border: none;
}

.block-center,
.form__loading,
.input__dropdown .drop-list,
.file-space__img {
    margin-left: auto;
    margin-right: auto;
}

.text-center,
.btn:after {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase,
.section__title,
.btn {
    text-transform: uppercase;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.rel {
    position: relative;
}

.list {
    margin-top: 40px;
}

.list__item {
    list-style-type: none;
    margin-bottom: 30px;
    padding-left: 20px;
    position: relative;
    overflow: hidden;
}

.list__item::before {
    position: absolute;
    left: 0;
    top: 4px;
    content: '';
    display: block;
    line-height: inherit;
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
}

.list--separator {
    margin-top: 0;
}

.list--separator>li {
    list-style-type: none;
    padding-left: 0;
}

.list--separator>li::before {
    display: none;
}

.list--separator>li:not(:last-child) {
    margin-bottom: 20px;
}

.list--separator>li:not(:last-child)::after {
    content: '• • •';
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    font-size: 40px;
    font-size-letter-spacing: -0.08em;
}

.col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.form__inputs .flex .form-group,
.form__inputs .header__nav .form-group,
.form__inputs .header__info .form-group,
.form__inputs .footer__nav .form-group,
.form__inputs .footer__info .form-group,
.form__inputs .footer .lang__list .form-group,
.footer .form__inputs .lang__list .form-group {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(70% - 15px);
    -ms-flex: 0 0 calc(70% - 15px);
    flex: 0 0 calc(70% - 15px);
}

.form__inputs .flex .form-group:nth-child(even),
.form__inputs .header__nav .form-group:nth-child(even),
.form__inputs .header__info .form-group:nth-child(even),
.form__inputs .footer__nav .form-group:nth-child(even),
.form__inputs .footer__info .form-group:nth-child(even),
.form__inputs .footer .lang__list .form-group:nth-child(even),
.footer .form__inputs .lang__list .form-group:nth-child(even) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(30% - 15px);
    -ms-flex: 0 0 calc(30% - 15px);
    flex: 0 0 calc(30% - 15px);
}

.form__loading {
    max-height: 80px;
    width: 100%;
    position: relative;
    margin-top: -90px;
    text-align: center;
    display: none;
}

.form__response {
    line-height: 1.8em;
}

.form__response u {
    font-style: italic;
}

.form .radio-group:not(:first-child) {
    margin-left: 30px;
}

.form .label__radio {
    font-size: 14px;
    position: relative;
    padding-left: 30px;
}

.form .label__radio::before,
.form .label__radio::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    -webkit-transition: .15s;
    transition: .15s;
}

.form .label__radio::before {
    width: 20px;
    height: 20px;
    left: 0;
    border: 2px solid #fff;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.1);
}

.form .label__radio::after {
    width: 10px;
    height: 10px;
    opacity: 0;
    background-color: #fff;
    left: 10px;
    top: 10px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: 'CormorantGaramond';
    src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Light.ttf") format("truetype");
    font-weight: lighter;
}

@font-face {
    font-family: 'CormorantGaramond';
    src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: 'CormorantGaramond';
    src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: 'CormorantGaramond';
    src: url("../fonts/Cormorant_Garamond/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: 'CormorantGaramond';
    src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Bold.ttf") format("truetype");
    font-weight: 700;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-family: "CormorantGaramond";
    font-weight: 500;
    line-height: 1.208em;
}

h1,
.h1 {
    font-size: 72px;
}

h2,
.h2 {
    font-size: 50px;
}

p,
a,
span,
input,
button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

b,
strong,
.bold {
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

label {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-head {
    font-size: 18px;
    line-height: 1.2em;
    text-transform: uppercase;
}

.sub-title {
    font-size: 16px;
    line-height: 1.2em;
}

.header {
    position: fixed;
    padding: 30px 0;
    width: 100%;
    z-index: 400;
    -webkit-transition: .7s;
    transition: .7s;
}

.header::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4A085A;
    opacity: 0;
    -webkit-transition: .7s;
    transition: .7s;
    z-index: 400;
}

.header.sticky {
    padding: 10px 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header.sticky::after {
    opacity: 1;
}

.header.sticky .logo img {
    -webkit-transform: scale(0.8) translateY(-5px);
    -ms-transform: scale(0.8) translateY(-5px);
    transform: scale(0.8) translateY(-5px);
}

.header.sticky .lang__list {
    background: #4A085A;
    padding: 15px 10px 5px;
    margin-right: -10px;
}

.header a,
.header__link,
.footer a {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    will-change: auto;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.2em;
}

.header__container {
    z-index: 401;
    position: relative;
}

.header__flex>* {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
    will-change: transform;
}

.header__nav a:hover::after,
.header__nav a.current::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.header__logo {
    text-align: center;
}

.header__logo img {
    -webkit-transition: .3s ease;
    transition: .3s ease;
    will-change: transform;
}

.header__logo:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.header__info a:hover {
    opacity: .7;
}

.header__app-phone {
    display: none;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    white-space: nowrap;
}

.header__lang {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    text-align: right;
}

.header .lang {
    position: relative;
}

.header .lang>a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header .lang:hover .lang__list {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.header .lang__list {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    position: absolute;
    top: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding-top: 15px;
    right: 0;
}

.header .lang__list>li {
    padding: 5px 0;
}

.header__burger,
.header__mobile {
    display: none;
}

.header .burger {
    width: 40px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40px;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    height: 30px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 400;
    position: relative;
}

.header .burger span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    -webkit-transition: .7s;
    transition: .7s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    right: 0;
}

.header .burger span:nth-child(1) {
    top: 0;
}

.header .burger span:nth-child(2),
.header .burger span:nth-child(3) {
    top: 14px;
    width: 30px;
}

.header .burger span:nth-child(4) {
    top: 27px;
    width: 17px;
}

.header .burger.toggled span:nth-child(1),
.header .burger.toggled span:nth-child(4) {
    top: 14px;
    -webkit-transform: scaleX(0) translateX(50%);
    -ms-transform: scaleX(0) translateX(50%);
    transform: scaleX(0) translateX(50%);
}

.header .burger.toggled span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;
}

.header .burger.toggled span:nth-child(3) {
    width: 100%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header__mobile {
    background: -webkit-linear-gradient(106.49deg, #68197B 11.95%, #350342 52.38%, #1B0122 86.23%);
    background: linear-gradient(343.51deg, #68197B 11.95%, #350342 52.38%, #1B0122 86.23%);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px 10px;
    will-change: transform;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
}

.header__mobile .nav,
.header__mobile .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
}

.header__mobile .nav {
    max-height: 30%;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}

.header__mobile .nav>li {
    text-align: center;
    margin-right: 0 !important;
}

.header__mobile .nav>li a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header__mobile .nav>li a::after {
    display: none;
}

.header__mobile .info {
    max-height: 40%;
    padding-top: 45px;
}

.header__mobile .info .app-phone {
    display: block;
    opacity: 1;
    margin-left: 15px;
}

.header__mobile .lang {
    text-align: center;
    max-width: 140px;
    padding: 0;
    width: 100%;
}

.header__mobile .lang__list {
    visibility: visible;
    opacity: 1;
    position: relative;
    top: 0;
    padding-top: 0;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    background: none !important;
}

.header__mobile .lang__list a {
    font-weight: 30;
}

.header__mobile .lang__list a.current {
    font-weight: 500;
    text-decoration: underline;
    line-height: 1.2em;
}

.header__mobile.toggled {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.footer {
    margin-top: 110px;
    background-color: #16001C;
    padding: 30px 0;
}

.footer__container {
    z-index: 301;
    position: relative;
}

.footer__flex>* {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.footer__logo {
    text-align: left;
    -webkit-box-flex: 0;
    -webkit-flex: 0 95px;
    -ms-flex: 0 95px;
    flex: 0 95px;
}

.footer__logo img {
    -webkit-transition: .3s ease;
    transition: .3s ease;
    will-change: transform;
    max-width: 45px;
}

.footer__logo:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.footer__nav {
    max-width: 410px;
}

.footer__nav li:not(:last-child) {
    margin-right: 30px;
}

.footer__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
    will-change: transform;
}

.footer__nav a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.footer__info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
}

.footer__info>li {
    margin-right: 30px;
}

.footer__info>li:nth-last-child(2) {
    margin-bottom: 0 !important;
}

.footer .app-phone {
    display: block;
    margin-left: 15px;
    opacity: 1;
    -webkit-transition: opacity .9s;
    transition: opacity .9s;
}

.footer .lang__list li:not(:last-child) {
    margin-right: 15px;
}

.footer .lang__list li .current {
    text-decoration: underline;
    font-weight: 500;
}

input:not([type="radio"]),
.input,
.form__input,
.input__dropdown .drop-current,
.file-space,
.file-space__change {
    color: inherit;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    line-height: 1.63em;
    height: 48px;
    border-radius: 45px;
    margin-left: -3px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    box-sizing: border-box;
    width: 100%;
    -webkit-transition: border-color .2s;
    transition: border-color .2s;
}

input:not([type="radio"])::-webkit-input-placeholder,
.input::-webkit-input-placeholder,
.form__input::-webkit-input-placeholder,
.input__dropdown .drop-current::-webkit-input-placeholder,
.file-space::-webkit-input-placeholder,
.file-space__change::-webkit-input-placeholder {
    color: inherit;
    -webkit-transition: opacity .3s, -webkit-transform .2s;
    transition: opacity .3s, -webkit-transform .2s;
    transition: opacity .3s, transform .2s;
    transition: opacity .3s, transform .2s, -webkit-transform .2s;
    font-family: inherit;
    font-size: inherit;
    opacity: 1;
}

input:not([type="radio"]):focus,
input:not([type="radio"]):-webkit-autofill,
.input:focus,
.input:-webkit-autofill,
.form__input:focus,
.input__dropdown .drop-current:focus,
.file-space:focus,
.file-space__change:focus,
.form__input:-webkit-autofill,
.input__dropdown .drop-current:-webkit-autofill,
.file-space:-webkit-autofill,
.file-space__change:-webkit-autofill {
    border: 2px solid #fff;
    line-height: 1.55em;
    padding-left: 24px;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

input:not([type="radio"]):focus::-webkit-input-placeholder,
input:not([type="radio"]):-webkit-autofill::-webkit-input-placeholder,
.input:focus::-webkit-input-placeholder,
.input:-webkit-autofill::-webkit-input-placeholder,
.form__input:focus::-webkit-input-placeholder,
.input__dropdown .drop-current:focus::-webkit-input-placeholder,
.file-space:focus::-webkit-input-placeholder,
.file-space__change:focus::-webkit-input-placeholder,
.form__input:-webkit-autofill::-webkit-input-placeholder,
.input__dropdown .drop-current:-webkit-autofill::-webkit-input-placeholder,
.file-space:-webkit-autofill::-webkit-input-placeholder,
.file-space__change:-webkit-autofill::-webkit-input-placeholder {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
}

input:not([type="radio"]).error,
.input.error,
.form__input.error,
.input__dropdown .error.drop-current,
.error.file-space,
.error.file-space__change {
    border: 2px solid #FF0000;
    line-height: 1.55em;
    background: rgba(255, 0, 0, 0.1);
    padding-left: 24px;
}

.input__dropdown {
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.input__dropdown .drop-current {
    text-align: center;
}

.input__dropdown .drop-current::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    -webkit-mask: url("../svg/arrow.svg");
    mask: url("../svg/arrow.svg");
    background-color: #fff;
    top: 50%;
    right: 15px;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    display: block;
    -webkit-transform: translateY(-50%) rotateZ(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotateZ(180deg);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
}

.input__dropdown .drop-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: 70%;
    width: 100%;
    max-height: 144px;
    overflow-y: scroll;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.input__dropdown .drop-list::-webkit-scrollbar {
    width: 5px;
    background-color: #737373;
}

.input__dropdown .drop-list::-webkit-scrollbar-track {
    width: 5px;
    background-color: #737373;
}

.input__dropdown .drop-list::-webkit-scrollbar-thumb {
    width: 3px;
    background-color: #434343;
    border-radius: 28px;
    overflow: hidden;
}

.input__dropdown .drop-list::-webkit-scrollbar-track-piece {
    width: 5px;
    background-color: #737373;
}

.input__dropdown .drop-list li {
    background: rgba(255, 255, 255, 0.1);
    background: #491C54;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 16px;
    line-height: 48px;
    height: 48px;
    cursor: pointer;
}

.input__dropdown .drop-list li:active {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: rgba(255, 255, 255, 0.3);
}

.input__dropdown.toggled .drop-list {
    opacity: 1;
    visibility: visible;
}

.input__dropdown.toggled .drop-current::after {
    -webkit-transform: translateY(-50%) rotateZ(0);
    -ms-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotateZ(0);
}

.file-space {
    height: 160px;
    max-width: 270px;
    width: 100%;
    padding: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2em;
    background-position: center;
    background-size: cover;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 15px);
    -ms-flex: 0 0 calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 15px;
}

.file-space.error {
    padding-left: 9px;
    padding-top: 9px;
    line-height: 1.2em;
}

.file-space input[type="file"] {
    border: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.file-space__text {
    text-align: center;
}

.file-space__img {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-weight: 100;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    will-change: transform;
}

.file-space__img::before {
    content: '';
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.file-space__img--add {
    background-image: url("../svg/plus.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.file-space:hover .file-space__img,
.file-space:hover .file-space__change {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1.05);
    -ms-transform: translateY(-50%) translateX(-50%) scale(1.05);
    transform: translateY(-50%) translateX(-50%) scale(1.05);
}

.file-space:active .file-space__img,
.file-space:active .file-space__change {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0.95);
    -ms-transform: translateY(-50%) translateX(-50%) scale(0.95);
    transform: translateY(-50%) translateX(-50%) scale(0.95);
}

.file-space__change {
    display: none;
    height: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    will-change: transform;
}

input[type="radio"] {
    position: absolute;
    opacity: 0;
}

input[type="radio"]:checked+label::after {
    opacity: 1;
}

.btn {
    position: relative;
    padding: 23px 35px;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 60px;
    min-width: 370px;
    background: -webkit-linear-gradient(348.96deg, #9D3CB5 6.46%, #9800BE 94.86%);
    background: linear-gradient(101.04deg, #9D3CB5 6.46%, #9800BE 94.86%);
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 4px;
    font-size: 18px;
    box-shadow: 0px 5px 5px rgba(106, 0, 133, 0.34);
    -webkit-transition: all .4s;
    transition: all .4s;
    color: transparent;
    cursor: pointer;
}

.btn:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
    background: -webkit-linear-gradient(348.96deg, #742A86 6.46%, #470458 94.86%);
    background: linear-gradient(101.04deg, #742A86 6.46%, #470458 94.86%);
    box-shadow: 0px 4px 4px #BB31DD;
}

.btn:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    font-size: inherit;
    color: #fff;
    display: inline-block;
}

.btn:hover {
    box-shadow: 0px 5px 5px rgba(106, 0, 133, 0.34);
}

.btn:hover:before {
    opacity: 1;
}

.btn:active {
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}

.btn:active:before {
    background: -webkit-linear-gradient(348.96deg, #612271 6.46%, #5D0972 94.86%);
    background: linear-gradient(101.04deg, #612271 6.46%, #5D0972 94.86%);
}

.btn--dark {
    background: -webkit-linear-gradient(348.96deg, #661879 6.46%, #210129 94.86%);
    background: linear-gradient(101.04deg, #661879 6.46%, #210129 94.86%);
}

.btn--dark:before {
    background: -webkit-linear-gradient(348.96deg, #661879 6.46%, #210129 49.28%);
    background: linear-gradient(101.04deg, #661879 6.46%, #210129 49.28%);
}

.btn--dark:active:before {
    background: -webkit-linear-gradient(348.96deg, #3D1646 6.46%, #210129 49.28%);
    background: linear-gradient(101.04deg, #3D1646 6.46%, #210129 49.28%);
}

.slider,
.swiper-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.slider .swiper-wrapper,
.swiper-container .swiper-wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.slider .swiper-slide,
.swiper-container .swiper-slide {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    position: relative;
    -webkit-transition: .4s;
    transition: .4s;
    overflow: hidden;
    height: auto;
    cursor: -webkit-grab;
    cursor: grab;
}

.slider .swiper-slide:focus,
.swiper-container .swiper-slide:focus {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.slider .swiper-slide::before,
.swiper-container .swiper-slide::before {
    content: '';
    background: -webkit-linear-gradient(top, rgba(72, 6, 88, 0.8) 19.79%, rgba(106, 0, 133, 0.1) 100%);
    background: linear-gradient(180deg, rgba(72, 6, 88, 0.8) 19.79%, rgba(106, 0, 133, 0.1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider .swiper-slide img,
.swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider .swiper-slide.swiper-slide-active,
.swiper-container .swiper-slide.swiper-slide-active {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
    z-index: 1;
}

.slider .swiper-pagination,
.swiper-container .swiper-pagination {
    bottom: 0px;
}

.slider .swiper-pagination-bullet,
.swiper-container .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    width: 8px;
    height: 8px;
    position: relative;
}

.slider .swiper-pagination-bullet::after,
.swiper-container .swiper-pagination-bullet::after {
    content: '';
    -webkit-transform: scale(0) translateX(-50%) translateY(-50%);
    -ms-transform: scale(0) translateX(-50%) translateY(-50%);
    transform: scale(0) translateX(-50%) translateY(-50%);
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: 100%;
    -webkit-transition: .2s;
    transition: .2s;
}

.slider .swiper-pagination-bullet-active::after,
.swiper-container .swiper-pagination-bullet-active::after {
    -webkit-transform: scale(0.5) translateX(-100%) translateY(-100%);
    -ms-transform: scale(0.5) translateX(-100%) translateY(-100%);
    transform: scale(0.5) translateX(-100%) translateY(-100%);
}

.home__poster {
    background: -webkit-linear-gradient(96.38deg, rgba(106, 0, 133, 0.1) -26.4%, #68197B 68.79%, #6A0085 92.39%), url("../images/poster-image.jpg");
    background: linear-gradient(353.62deg, rgba(106, 0, 133, 0.1) -26.4%, #68197B 68.79%, #6A0085 92.39%), url("../images/poster-image.jpg");
    background-size: cover;
    background-blend-mode: multiply;
    background-position: left, top;
    background-repeat: no-repeat;
    letter-spacing: 2px;
}

.home__poster>* {
    z-index: 100;
}

.home__poster .plain-text {
    font-size: 18px;
    letter-spacing: 3.5px;
    margin-bottom: 10px;
}

.home__poster .scroll-next {
    position: absolute;
    bottom: 20px;
    cursor: pointer;
}

.home__poster .scroll-next .icon {
    width: 40px;
    margin: auto;
    display: inline-block;
    margin-bottom: 20px;
    -webkit-animation-name: bouncing;
    animation-name: bouncing;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    margin: auto;
}

.home__poster .scroll-next span {
    font-size: 18px;
}

.home__advantages .section__title {
    top: 40px;
}

.home .section {
    padding-top: 100px;
    padding-bottom: 70px;
}

.home .list--columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    max-height: 240px;
}

.home .list--columns>li {
    max-width: 460px;
    width: 100%;
}

.home .list--columns>li:nth-child(even) {
    justify-self: flex-end;
}

.home .params__desc {
    position: relative;
}

.home .params__desc>* {
    border-radius: 15px;
    overflow: hidden;
}

.home .params__plash {
    position: absolute;
    top: 23%;
    background-color: rgba(157, 60, 181, 0.7);
    padding: 70px 50px;
    max-width: 560px;
    z-index: 1;
}

@media only screen and (min-width: 577px) {
    .header__mobile .nav {
        max-height: 20%;
        padding-bottom: 45px;
    }

    .header__mobile .info {
        max-height: 30%;
        padding-top: 60px;
    }
}

@media only screen and (min-width: 1130px) {
    .home .params__plash {
        left: 0;
        top: -50%;
        width: 100%;
    }
}

@media screen and (min-width: 821px) and (max-width: 1024px) {

    h1,
    .h1 {
        font-size: 64px;
        line-height: 100%;
    }

    h2,
    .h2 {
        font-size: 36px;
        line-height: 90%;
    }

    .footer {
        margin-top: 35px;
        padding: 45px 30px 30px;
    }

    .footer a {
        line-height: 31px;
    }

    .footer li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .footer__logo {
        -webkit-box-flex: 0;
        -webkit-flex: 0 135px;
        -ms-flex: 0 135px;
        flex: 0 135px;
        position: relative;
        top: -15px;
    }

    .home__advantages .section__title {
        top: 60px;
    }

    .home .section {
        padding-top: 155px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 820px) and (orientation: landscape) {
    body {
        font-size: 12px;
    }

    .section__title:not(.right) {
        padding: 5px 5%;
    }

    .section__title.right {
        padding: 5px 5%;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .list__item::before {
        top: 4px;
    }

    .list--separator>li {
        font-weight: 300;
        margin-bottom: 0;
    }

    .list--separator>li:not(:last-child) {
        margin-bottom: 5px;
    }

    .list--separator>li:not(:last-child)::after {
        font-size: 20px;
        margin-top: 5px;
    }

    .form {
        margin-top: 0;
    }

    h1,
    .h1 {
        font-size: 30px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    p,
    a,
    span,
    input,
    button {
        font-size: 12px;
    }

    .header {
        padding: 15px 0;
    }

    .header.sticky {
        padding: 5px 0;
    }

    .header__mobile .nav {
        max-height: 40%;
    }

    .header__mobile .info {
        max-height: 100%;
    }

    .footer {
        margin-top: 20px;
        padding: 10px 15px 15px;
    }

    .footer a {
        line-height: 16px;
    }

    .footer li:not(:last-child) {
        margin-bottom: 13px;
        margin-right: 0;
    }

    .footer__flex {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .footer__flex>* {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer__logo {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        top: 0;
        margin-bottom: 20px;
    }

    .footer__logo img {
        max-width: 33px;
    }

    .footer__icon {
        width: 11px;
        height: 11px;
    }

    .footer .app-phone {
        margin-left: 5px;
    }

    .footer .lang {
        display: none;
    }

    .file-space {
        font-size: 12px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 calc(50% - 10px);
        -ms-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        height: auto;
        min-height: 150px;
    }

    .file-space__text {
        position: absolute;
        left: 0;
        width: 100%;
    }

    .file-space__img {
        top: 70%;
    }

    .btn {
        font-size: 14px;
        min-width: -webkit-max-content;
        min-width: -moz-max-content;
        min-width: max-content;
        padding: 11px 15px;
    }

    .slider,
    .swiper-container {
        padding-left: 0;
        padding-right: 0;
        width: auto;
        margin-top: 0;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .slider .swiper-wrapper,
    .swiper-container .swiper-wrapper {
        margin-left: -20px;
        margin-right: -20px;
    }

    .home__poster .plain-text {
        font-size: 14px;
    }

    .home__poster .h1 {
        margin-top: 0px;
        margin-bottom: 10px;
        line-height: 1.2em;
    }

    .home__poster .btn {
        min-width: 250px;
    }

    .home__poster .scroll-next .icon {
        width: 23px;
        height: auto;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .home__poster .scroll-next span {
        font-size: 12px;
    }

    .home__advantages .section__title {
        top: 20px;
    }

    .home__advantages .btn {
        margin-top: 15px;
    }

    .home .section {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .home .params__desc {
        margin-top: 30px;
    }

    .home .params__title,
    .home .params__desc {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .home .params__plash {
        padding: 30px 25px;
        max-width: 100%;
        top: 0%;
    }

    .home .params__plash .btn {
        margin-top: 20px;
        background: -webkit-linear-gradient(285.48deg, #68197B 0%, #350342 54.43%, #1B0122 100%);
        background: linear-gradient(164.52deg, #68197B 0%, #350342 54.43%, #1B0122 100%);
    }

    .home .params__img {
        height: 400px;
    }

    .home .params__img img {
        height: 100%;
        width: auto;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right;
    }

    .home .profile {
        padding-top: 100px;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 1240px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .header__nav li:not(:last-child) {
        margin-right: 15px;
    }

    .header__lang {
        -webkit-box-flex: 0;
        -webkit-flex: 0 auto;
        -ms-flex: 0 auto;
        flex: 0 auto;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 1219px) {
    .footer__nav {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .footer__info {
        max-width: 300px;
    }

    .footer .app-phone {
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .form__files {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-top: 10px;
    }

    .form__files .input-group+.input-group {
        margin-bottom: 30px;
    }

    .form__files .form__label {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1135px) {
    .home .params__plash {
        max-width: inherit;
        padding: 45px 40px 15px;
        top: inherit;
    }
}

@media only screen and (max-width: 1129px) {

    .home .params__title,
    .home .params__desc {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 1024px) {
    .list__item::before {
        top: 8px;
    }

    .form {
        margin-top: 30px;
    }

    .form__inputs {
        max-width: 630px;
    }

    .form__response {
        margin-bottom: 30px;
    }

    .header__nav {
        display: none;
    }

    .header__logo {
        text-align: left;
        -webkit-box-flex: 0;
        -webkit-flex: 0 auto;
        -ms-flex: 0 auto;
        flex: 0 auto;
    }

    .header__info {
        display: none;
    }

    .header__burger,
    .header__mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .footer__flex>* {
        -webkit-box-flex: 0;
        -webkit-flex: 0 50%;
        -ms-flex: 0 50%;
        flex: 0 50%;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer__info>li {
        margin-right: 0;
    }

    .footer .app-phone {
        display: block;
    }

    .footer .lang {
        position: absolute;
        left: 45px;
        bottom: 0;
    }

    .footer .lang__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer .lang__list li:not(:last-child) {
        margin-bottom: 25px;
        margin-right: 0;
        font-weight: 300;
    }

    .footer .lang__list li a {
        font-weight: 300;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    input[type="tel"],
    input[name="phone"] {
        max-width: 290px;
    }

    .slider .swiper-slide::after,
    .swiper-container .swiper-slide::after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

    .slider .swiper-slide img,
    .swiper-container .swiper-slide img {
        position: absolute;
        z-index: -1;
    }

    .home__poster .max-700 {
        max-width: 580px;
    }

    .home__advantages .h2 {
        max-width: 445px;
        margin-left: auto;
        margin-right: auto;
    }

    .home__advantages .max-1040 {
        max-width: 600px;
        max-height: 100%;
        margin-left: 0;
    }

    .home .list--columns>li {
        max-width: 100%;
    }

    .home .params {
        padding-top: 60px;
    }

    .home .params__desc {
        margin-top: 20px;
    }

    .home .params__img {
        left: 26%;
        position: relative;
    }

    .home .profile {
        padding-bottom: 0;
    }

    .home .profile .section__title,
    .home .profile .sub-title {
        display: none;
    }
}

@media only screen and (max-width: 835px) {
    .header__mobile {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 700px) {
    .max-700 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 690px) {

    .home .params__title,
    .home .params__desc {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .home .params__plash {
        padding: 30px 25px;
        max-width: 100%;
        top: 5%;
    }

    .home .params__plash .btn {
        margin-top: 20px;
        background: -webkit-linear-gradient(285.48deg, #68197B 0%, #350342 54.43%, #1B0122 100%);
        background: linear-gradient(164.52deg, #68197B 0%, #350342 54.43%, #1B0122 100%);
    }

    .home .params__img {
        height: 400px;
    }

    .home .params__img img {
        height: 100%;
        width: auto;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right;
    }

    .home .profile {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .list--separator>li {
        font-weight: 300;
        margin-bottom: 0;
    }

    .list--separator>li:not(:last-child) {
        margin-bottom: 5px;
    }

    .list--separator>li:not(:last-child)::after {
        font-size: 20px;
        margin-top: 5px;
    }

    .btn {
        font-size: 14px;
        min-width: -webkit-max-content;
        min-width: -moz-max-content;
        min-width: max-content;
        padding: 11px 15px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 576px) {
    body {
        font-size: 12px;
    }

    .section__title:not(.right) {
        padding: 5px 5%;
    }

    .section__title.right {
        padding: 5px 5%;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .list__item::before {
        top: 4px;
    }

    .col-6 {
        -webkit-box-flex: 1;
        -webkit-flex: 1 100%;
        -ms-flex: 1 100%;
        flex: 1 100%;
    }

    .form {
        margin-top: 0;
    }

    h1,
    .h1 {
        font-size: 30px;
    }

    p,
    a,
    span,
    input,
    button {
        font-size: 12px;
    }

    .header {
        padding: 15px 0;
    }

    .header.sticky {
        padding: 5px 0;
    }

    .header__mobile {
        padding: 45px 10px 30px;
    }

    .footer {
        margin-top: 20px;
        padding: 10px 15px 15px;
    }

    .footer a {
        line-height: 16px;
    }

    .footer li:not(:last-child) {
        margin-bottom: 13px;
        margin-right: 0;
    }

    .footer__flex {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .footer__flex>* {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer__logo {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        top: 0;
        margin-bottom: 20px;
    }

    .footer__logo img {
        max-width: 33px;
    }

    .footer__icon {
        width: 11px;
        height: 11px;
    }

    .footer .app-phone {
        margin-left: 5px;
    }

    .footer .lang {
        display: none;
    }

    .file-space {
        font-size: 12px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 calc(50% - 10px);
        -ms-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        height: auto;
    }

    .file-space::after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

    .file-space__text {
        position: absolute;
        left: 0;
        width: 100%;
    }

    .file-space__img {
        top: 70%;
    }

    .slider,
    .swiper-container {
        padding-left: 0;
        padding-right: 0;
        width: auto;
        margin-top: 0;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .slider .swiper-wrapper,
    .swiper-container .swiper-wrapper {
        margin-left: -20px;
        margin-right: -20px;
    }

    .home__poster .plain-text {
        font-size: 14px;
    }

    .home__poster .h1 {
        margin-top: 55px;
        margin-bottom: 55px;
        line-height: 1.2em;
    }

    .home__poster .btn {
        min-width: 250px;
    }

    .home__poster .scroll-next .icon {
        width: 23px;
        height: auto;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .home__poster .scroll-next span {
        font-size: 12px;
    }

    .home__advantages .section__title {
        top: 35px;
    }

    .home__advantages .btn {
        margin-top: 15px;
    }

    .home .section {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 340px) {

    .form__inputs .flex,
    .form__inputs .header__nav,
    .form__inputs .header__info,
    .form__inputs .footer__nav,
    .form__inputs .footer__info,
    .form__inputs .footer .lang__list,
    .footer .form__inputs .lang__list {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form__inputs .flex .form-group,
    .form__inputs .header__nav .form-group,
    .form__inputs .header__info .form-group,
    .form__inputs .footer__nav .form-group,
    .form__inputs .footer__info .form-group,
    .form__inputs .footer .lang__list .form-group,
    .footer .form__inputs .lang__list .form-group {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .form__inputs .flex .form-group:nth-child(even),
    .form__inputs .header__nav .form-group:nth-child(even),
    .form__inputs .header__info .form-group:nth-child(even),
    .form__inputs .footer__nav .form-group:nth-child(even),
    .form__inputs .footer__info .form-group:nth-child(even),
    .form__inputs .footer .lang__list .form-group:nth-child(even),
    .footer .form__inputs .lang__list .form-group:nth-child(even) {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .home .params__plash {
        padding: 20px 15px;
        max-width: 100%;
    }
}


/* MY STYLE  */

#poster {
    position: relative;
}

.bg-video,
.bg-video .bg-video_filter {
    display: none;
}

@media only screen and (min-width: 768px) {

    .bg-video,
    .bg-video .bg-video_filter {
        display: flex;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }
}



.bg-video .bg-video_filter {
    background: #4A085A;
    opacity: 0.5;
}

.bg-video video {
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lang_block {
    display: flex;    
}

.lang_link {
    padding: 0 5px;
}

.lang_link-active {
    opacity: 0.6;
}

.header__mobile .lang_link {
    padding: 0 10px;
    margin: 0 10px;
}