@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import "reset.css";


/* general */
html, body {
    height: 100%;
}

body {
    position: relative;
    color: #ffffff;
    background: #292929;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}
.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.container-second {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
}
/* BTN */
.me67za9lqt-btn {
    position: relative;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 72px;
    padding: 10px;
    transition: all .3s linear;
    background: #FF1F00;
    border-radius: 3px;
    color: #FFFFFF;
    box-sizing: border-box;
    border: none;
}
.me67za9lqt-btn--width {
    max-width: 360px;
    width: 100%;
}
.me67za9lqt-form .me67za9lqt-btn {
    margin-top: 20px;
}
/* HEADER */
.me67za9lqt-header {
    background: #222222;
    padding: 22px 20px;
    position: relative;
    z-index: 4;
}
.me67za9lqt-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.me67za9lqt-btn__back {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
/* CONTENT */
.me67za9lqt-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100%;
}
.me67za9lqt-content--third .me67za9lqt-main--bg-third::after {
    content: '';
    background: rgb(0 0 0 / 65%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.me67za9lqt-main--bg {
    background-image: url(../images/bg/bg-1-me67za9lqt.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #3B5D67;
}
.me67za9lqt-main--bg-second {
    background-image: url(../images/bg/bg-1-me67za9lqt.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #292929;
    justify-content: center;
}

.me67za9lqt-main--content {
    position: relative;
    z-index: 5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    overflow-x: hidden;
}
.me67za9lqt-main--bg-third {
    justify-content: flex-end;
    padding: 20px 40px 40vh;
}

.me67za9lqt-steps--container {
    width: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}
.me67za9lqt-steps-container--first {
    min-height: 90vh;
    padding: 30px 0;
}
.me67za9lqt-title {
    margin-bottom: 42px;
    font-weight: 800;
    font-size: 48px;
    line-height: 56px;
    color: #ffffff;
}
.me67za9lqt-title--large {
    font-size: 48px;
    font-weight: 800;
    line-height: 62px;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.me67za9lqt-title--large img {
    display: inline-block;
    margin-left: 10px;
}
.me67za9lqt-subtitle {
    margin-bottom: 44px;
    font-weight: 800;
    font-size: 42px;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 9;
}
.me67za9lqt-text {
    font-size: 24px;
    line-height: 33px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #444444;
}
.me67za9lqt-text--small {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 37px;
}
.me67za9lqt-step {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
}
.me67za9lqt-match .me67za9lqt-step {
    max-width: 550px;
    align-items: flex-start;
}
.me67za9lqt-main--bg-second .me67za9lqt-step {
    padding: 40px;
    max-width: 440px;
    background: #ffffff;
    margin: 0 0 0 auto;
}
.me67za9lqt-main--bg-third .me67za9lqt-step {
    max-width: 530px;
    margin: 0 auto;
    align-items: flex-start;
}

.me67za9lqt-anim {
    animation: slide-in-top 0.8s linear both;
}
@keyframes slide-in-top {
    0% {
      transform: translateY(-30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}
/* FORM */
.me67za9lqt-form--block {
    max-width: 360px;
    width: 100%;
}
.me67za9lqt-form--row {
    position: relative;
    margin-bottom: 10px;
}
.me67za9lqt-form--control {
    font-family: "Manrope", sans-serif;
    background: #222222B2;
    border: 2px solid #696969;
    border-radius: 0;
    width: 100%;
    height: 62px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 3px;
    box-sizing: border-box;
    outline: none;
}
.me67za9lqt-form--control::placeholder {
    color: #E0E0E0;
}
.me67za9lqt-form--control.error {
    border-color: #FF1F00;
}
.me67za9lqt-label {
    display: block;
    font-size: 24px;
    line-height: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}
label.error {
    color: #FF1F00;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

/* Match */
.me67za9lqt-match {
    position: relative;
    background-color: #140804;
    padding: 0 20px;
    /* overflow-x: hidden; */
}
.me67za9lqt-match--block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 492px;
}
.me67za9lqt-match--img {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
}
.me67za9lqt-match--img::after {
    content: '';
    background: linear-gradient(90deg, rgba(46, 23, 15, 0) -3.24%, #24110B 27.55%, #140804 75.91%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
}
.me67za9lqt-match--img img {
    object-fit: cover;
    object-position: bottom;
}
.me67za9lqt-match--img img.match-img-mob {
    display: none;
}


/* Slider */
.me67za9lqt-main--slider {
    background: #292929;
    padding: 304px 0 345px;
    background-image: url(../images/bg-slider-me67za9lqt.jpg);
    background-size: auto;
    animation: backgroundScroll 15s linear infinite;
    overflow: hidden;
    position: relative;
}
.me67za9lqt-main--slider::after {
    content: '';
    background: rgb(0 0 0 / 70%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
@keyframes backgroundScroll {
    0% {
        background-position: 50% 0;
    }
    100% {
        background-position: 50% -32em;
    }
}

.me67za9lqt-slider {
    color: #ffffff;
    width: 100%;
}
.me67za9lqt-slider .swiper {
    padding: 0 50px;
}
.me67za9lqt-review--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.me67za9lqt-review--text {
    text-align: center;
    max-width: 800px;
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    margin: 0 auto 24px;
}
.me67za9lqt-review--stars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.me67za9lqt-review--name {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

/* Info */
.me67za9lqt-info {
    background: #ffffff;
    padding: 129px 20px;
}
.me67za9lqt-info--block {
    font-size: 24px;
    line-height: 34px;
    color: #444444;
    text-align: center;
}
.me67za9lqt-info--block h2 {
    margin-bottom: 16px;
    font-weight: 900;
}
.me67za9lqt-info--block p {
    margin-bottom: 20px;
}

/* FOOTER */
.me67za9lqt-footer {
    background: #E8E8E8;
    padding: 22px 20px;
    position: relative;
    z-index: 9;
}
.me67za9lqt-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.me67za9lqt-footer--list {
    display: flex;
    align-items: center;
    text-align: center;
}
.me67za9lqt-footer--list a {
    padding: 2px 30px;
    color: #000000;
    font-size: 24px;
    line-height: 30px;
}
.me67za9lqt-footer--list a::after {
    position: relative;
    bottom: -2px;
    background-color: #000000;
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}
.me67za9lqt-footer--list a:hover:after,
.me67za9lqt-footer--list a:focus:after {
    width: 100%;
}


/* Bg slider */
.me67za9lqt-sliders {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.swiper.profileSwiperTop {
    width: 100%;
    height: 50%;
    pointer-events: none;
}
.swiper.profileSwiperTop .swiper-wrapper {
    transition-timing-function: linear !important;
}
.swiper.profileSwiperTop .swiper-slide {
    max-width: 320px;
    height: 100%;
    overflow: hidden;
}
.swiper.profileSwiperTop .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.swiper.profileSwiperBottom .swiper-wrapper {
    transition-timing-function: linear !important;
}
.swiper.profileSwiperBottom .swiper-slide {
    max-width: 340px;
    height: 100%;
    overflow: hidden;
}
.swiper.profileSwiperBottom .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.swiper.profileSwiperBottom {
    width: 100%;
    height: 50%;
    pointer-events: none;
}


/* MODAL */
.modal-block {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0 0 0 / 60%);
    padding: 20px;
}
.me67za9lqt-btn--close {
    position: absolute;
    top: -15px;
    right: 0;
}
.modal-block--container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-block--content {
    position: relative;
    background-color: #ffffff;
    border-radius: 0;
    max-width: 540px;
    width: 100%;
    margin: auto;
    padding: 32px 40px;
    border-radius: 3px;
}
.modal-block--title {
    font-size: 18px;
    font-weight: 800;
    line-height: 26px;
    color: #282828;
    text-align: center;
}
.me67za9lqt-main--info {
    width: 100%;
    padding: 20px 0;
}
.me67za9lqt-main--info h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}
h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.me67za9lqt-main--info p {
    margin-bottom: 16px;
    font-weight: 400;
}
.me67za9lqt-main--info strong {
    display: block;
    margin-bottom: 5px;
}
.me67za9lqt-main--info ol {
    list-style-type: decimal;
    padding-left: 20px;
}
.me67za9lqt-main--info ul {
    list-style-type: disc;
    padding-left: 20px;
}
.me67za9lqt-main--info li {
    margin-bottom: 16px;
}
.me67za9lqt-main--info a {
    color: #2BAAE2;
    font-weight: 700;
    text-decoration: underline;
}
@media (max-height: 800px) {
    .me67za9lqt-title--large {
        font-size: 38px;
        line-height: 50px;
    }
    .me67za9lqt-text--small {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .me67za9lqt-main--bg-third .me67za9lqt-step {
        max-width: 630px;
    }
    .me67za9lqt-main--bg-third {
        padding: 20px 40px 30vh;
    }
}

@media (max-width: 1024px) {
    .me67za9lqt-step {
        max-width: 100%;
        align-items: center;
        z-index: 9;
    }
    .me67za9lqt-main--bg-third .me67za9lqt-step {
        max-width: 100%;
    }
    .me67za9lqt-title {
        margin-bottom: 100px;
    }
    .me67za9lqt-title--large {
        text-shadow: 0px 2px 2px #00000099;
    }
    .me67za9lqt-text--small {
        text-shadow: 0px 2px 2px #00000099;
    }
    .me67za9lqt-match--block {
        min-height: auto;
    }
    .me67za9lqt-match {
        padding: 34px 40px 40px;
    }
    .me67za9lqt-match--img img {
        height: 100%;
    }
    .me67za9lqt-subtitle {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 64px;
    }
    .me67za9lqt-main--slider {
        padding: 104px 0 145px;
    }
    .me67za9lqt-wrap {
        justify-content: center;
    }
    .me67za9lqt-main--bg-second .me67za9lqt-step {
        max-width: 100%;
        padding: 30px 20px;
    }
    .me67za9lqt-steps-container--first {
        min-height: 70vh;
    }
    .me67za9lqt-main--bg-third {
        height: calc(100vh - 101px - 80px);
        padding-bottom: calc((100vh - 101px - 80px) / 2);
    }
    .me67za9lqt-footer--list a {
        padding: 2px 20px;
        color: #000000;
        font-size: 20px;
        line-height: 22px;
    }
    .me67za9lqt-main--bg-second {
        justify-content: flex-end;
        padding: 20px 20px 90px;
    }
}

@media (max-width: 768px) {
    .me67za9lqt-logo img {
        width: 168px;
    }
    .me67za9lqt-header {
        padding: 15px 20px;
    }
    .me67za9lqt-steps-container--first {
        min-height: auto;
        padding: 140px 0 52px;
    }
    .me67za9lqt-form--control {
        height: 42px;
        padding: 5px 16px;
    }
    .me67za9lqt-label {
        font-size: 16px;
        line-height: 20px;
        text-shadow: 0px 2px 2px #00000099;
    }
    .me67za9lqt-btn {
        height: 54px;
        font-size: 16px;
        line-height: 22px;
    }
    .me67za9lqt-title {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
        margin-bottom: 239px;
    }
    .me67za9lqt-match .me67za9lqt-step {
        max-width: 100%;
        align-items: center;
    }
    .me67za9lqt-match--img::after {
        /* content: none; */
        width: 100%;
        height: 30%;
        bottom: auto;
        left: 0;
        background: linear-gradient(360deg, rgba(46, 23, 15, 0) -3.24%, #24110B 27.55%, #140804 75.91%);
    }
    .me67za9lqt-match--img {
        right: 0;
    }
    .me67za9lqt-match--img img {
        display: none;
    }
    label.error {
        font-size: 16px;
        text-shadow: 0px 2px 2px #00000099;
    }
    .me67za9lqt-match--img img.match-img-mob {
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: top;
        position: relative;
        top: 70px;
    }
    .me67za9lqt-main--slider {
        background-image: url(../images/bg-slider-mob-me67za9lqt.jpg);
        padding: 47px 0 170px;
    }
    .me67za9lqt-review--name {
        font-size: 18px;
        line-height: 24px;
    }
    .me67za9lqt-review--logo {
        margin-bottom: 24px;
    }
    .me67za9lqt-review--logo img {
        width: 140px;
    }
    .me67za9lqt-review--text {
        font-size: 18px;
        line-height: 26px;
        margin: 0 auto 24px;
    }
    .me67za9lqt-info {
        padding: 46px 20px;
        background: #292929;
    }
    .me67za9lqt-info--block {
        color: #ffffff;
    }
    .me67za9lqt-info--block p {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 26px;
    }
    .me67za9lqt-footer {
        padding: 11px 15px;
        background: #171717;
    }
    .me67za9lqt-footer--list {
        justify-content: center;
    }
    .me67za9lqt-footer--list a {
        padding: 2px 12px;
        font-size: 14px;
        line-height: 18px;
        color: #ffffff;
    }
    .me67za9lqt-title--large {
        font-size: 28px;
        font-weight: 800;
        line-height: 34px;
        margin-bottom: 12px;
        text-shadow: 0px 2px 2px #00000099;
    }
    .me67za9lqt-text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 20px;
        color: #282828;
    }
    .me67za9lqt-main--bg {
        background-image: url(../images/bg/bg-1-mob-me67za9lqt.png);
        background-position: top;
    }
    .me67za9lqt-main--bg-second {
        background-image: url(../images/bg/bg-1-mob-me67za9lqt.png);
        background-position: top;
    }
    .me67za9lqt-review--stars {
        margin-bottom: 24px;
    }
    .me67za9lqt-text--small {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 23px;
        text-shadow: 0px 2px 2px #00000099;
    }
    .me67za9lqt-title--large img {
        width: 100px;
    }
    .me67za9lqt-bottom--ico {
        margin-right: 10px;
    }
    .me67za9lqt-bottom--play {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    .me67za9lqt-slider .swiper {
        padding: 0 20px;
    }
    .swiper.profileSwiperTop .swiper-slide {
        max-width: 280px;
    }

    .swiper.profileSwiperBottom .swiper-slide {
        max-width: 300px;
    }
    .me67za9lqt-main--bg-third {
        height: calc(100vh - 67px - 46px);
        padding-bottom: calc((100vh - 67px - 46px) / 2);
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

 @media (max-width: 500px) {
    .me67za9lqt-main--bg-third {
        height: calc(100vh - 67px - 64px);
        padding-bottom: calc((100vh - 67px - 64px) / 2);
    }
}

@media (max-width: 340px) {
    .me67za9lqt-title--large {
        font-size: 22px;
        line-height: 30px;
    }
}



/*
@media (max-height: 900px) {
    .me67za9lqt-main--bg-third {
        justify-content: flex-start;
        padding: 37% 20px 20px;
    }
}

@media (max-height: 700px) {
    .me67za9lqt-main--bg-third {
        padding: 14% 20px 20px;
    }
} */