*, :before, :after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Akrobat', sans-serif;
    font-weight: 400;
    color: #142e38;
    font-size: 0.833vw;
    line-height: 1.5 !important;
    width: 100%;
    overflow-x: hidden;
    margin: 0 !important;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: default;
    background-color: #131313;
}

.no_overflow {
    overflow: hidden;
}

.mfp-wrap {
    touch-action: none;
    -ms-touch-action: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mfp-content {
    touch-action: none;
    -ms-touch-action: none;
}

main {
    overflow: hidden;
}

.wow {
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

p {
    margin: 0;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:hover, a:focus, a:active {
    color: inherit;
    outline: none;
}

img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.hidden {
    display: none
}

.chat {
    position: fixed;
    right: 2%;
    bottom: 13%;
    cursor: pointer;
    z-index: 100;
    max-width: 5.104vw;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.chat img {
    width: 100%;
    height: 100%;
}

.chat:hover {
    transition: all .3s ease-in-out;
    transform: scale(1.2);
}

.scroll_up {
    position: fixed;
    right: 2%;
    bottom: 2%;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    max-width: 3.333vw;
    width: 100%;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.scroll_up:hover {
    transition: all .3s ease-in-out;
    transform: scale(1.2);
}

.show {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
}

.container {
    width: 73.958vw;
    height: 100%;
    margin: 0 auto;
    /* position: relative; */
    z-index: 5;
}

.mobile{
    display: none;
}

.action_btn {
    width: 15.208vw;
    height: 3.75vw;
    font-weight: 800;
    font-size: 1.25vw;
    color: #000;
    text-shadow: 0 0 6px #fff6de;
    box-shadow: 0 0 44px 0 rgba(255, 246, 214, 0.66);
    background: linear-gradient(241deg, #f4e5be 0%, #fde6ab 14.29%, #fdf4d5 28.57%, #fff3d5 42.86%, #dba848 57.14%, #ffe9b6 71.43%, #ffd076 85.71%, #fef0bf 100%);
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-family: 'Inter', sans-serif !important;
    overflow: hidden;
    text-transform: uppercase;
    animation: gradient 7s ease-in-out infinite;
    background-size: 300% 100%;
}

.action_btn:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #000;
}

.action_btn:focus {
    outline: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 8px;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #00ff5a;
    max-width: 153px;
}

/**
 * Fade-zoom animation for first dialog
 **/
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}
/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Burger */

.burger {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* width: 25%; */
    display: none;
    position: absolute;
    right: 0;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    -o-transition: transform 400ms;
    transition: transform 400ms;
    transition: transform 400ms, -webkit-transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamRotate180.active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.line {
    fill:none;
    -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    -o-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke:#6867e9;
    stroke-width:5.5;
    /* stroke-linecap:round; */
}

.ham4 .top {
    stroke-dasharray: 40 121;
}

.ham4 .bottom {
    stroke-dasharray: 40 121;
}

.ham4.active .top {
    stroke-dashoffset: -68px;
}

.ham4.active .bottom {
    stroke-dashoffset: -68px;
}

/* Header */

header {
    position: fixed;
    top: 0;
    /* padding: 1.563vw 0; */
    height: 6.25vw;
    /* height: 100px; */
    width: 100%;
    z-index: 1000;
}

header.scrolled {
    background-color: #000;
}

header .container, .first_screen .container {
    width: 80.208vw;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.333vw;
    margin: 0 0 -1.563vw;
}

.logo img {
    width: 100%;
}

.header_contacts {
    display: flex;
    align-items: center;
    max-width: 9.115vw;
    width: 100%;
    justify-content: space-between;
}

.header_contacts .action_btn {
    max-width: 100%;
    height: 2.24vw;
    font-size: 0.729vw;
}

/* Pages */

.first_screen {
    /*height: 100vh;*/
    height: auto;
    min-height: 47vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.first_screen__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

h1 {
    font-weight: 900;
    font-size: 10.313vw;
    line-height: 97%;
    text-transform: uppercase;
    margin: 0 0 0.781vw;
}

.gradient_text {
    background: linear-gradient(247deg, #ffc989 0%, #fff8cb 33.33%, #d58c00 62.51%, #ffdd8d 80.74%, #ffeaa1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 7s ease-in-out infinite;
    background-size: 300% 100%;
}

@keyframes gradient {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.first_screen__left .desc {
    font-weight: 600;
    font-size: 2.24vw;
    line-height: 97%;
    color: #fff;
    position: relative;
    margin: 0 0 3vw;
}

.desc_span1 {
    font-weight: 800;
}

.first_screen__left .desc:after {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 7.083vw;
    height: 0.104vw;
    bottom: -1.042vw;
    left: 0;
}

.first_screen__right {
    position: absolute;
    right: calc(50% - 44vw);
}

.first_screen__right:after {
    position: absolute;
    content: '';
    background-image: url(../img/image_4a.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 68.385vw;
    height: 53.698vw;
    top: -3vw;
    left: -6vw;
    z-index: -2;
}

.image__1 {
    z-index: 2;
    top: 2vw !important;
    width: 53.177vw;
    height: 39.063vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image__2 {
    left: 6vw !important;
    top: 15vw !important;
    z-index: -1;
    width: 17.448vw;
    height: 17.448vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image__3 {
    left: auto !important;
    top: auto !important;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 43.333vw;
    height: 34.896vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image__1 img, .image__2 img, .image__3 img {
    width: 100%;
    height: 100%;
}

.left_image {
    position: absolute;
    left: 0;
    height: 100%;
    top: 17.5vw;
    width: 13.281vw;
    height: 31.354vw;
}

.left_image img {
    width: 100%;
    height: 100%;
}

.right_image {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    mix-blend-mode: lighten;
}

.benefits {
    background-image: url(../img/image_6.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 8.958vw;
    position: relative;
    z-index: 10;
    margin: -4.2vw 0 0;
    display: flex;
    align-items: center;
}

.benefits p {
    width: 73.958vw;
    margin: 0 auto;
    font-weight: 500;
    font-size: 1.667vw;
    text-align: center;
    color: #fff;
}

.benefits .gradient_text {
    position: relative;
    font-weight: 700;
}

.benefits .gradient_text:after {
    position: absolute;
    content: '';
    background: linear-gradient(247deg, #ffc989 0%, #fff8cb 33.33%, #d58c00 62.51%, #ffdd8d 80.74%, #ffeaa1 100%);
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    animation: gradient 7s ease-in-out infinite;
    background-size: 300% 100%;
}

.video_block {
    padding: 5vw 0 2vw;
    background-image: url(../img/image_6.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40.26vw;
}

.video__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video__wrapper:after, .how_to_get_status .wrapper:after {
    position: absolute;
    content: '';
    background-image: url(../img/image_19a.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 62.813vw;
    height: 47.083vw;
    top: -8vw;
    left: auto;
    right: auto;
    z-index: -1;
}

.youtube-placeholder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55.417vw;
    height: 31.17vw;
    border-radius: 0.781vw;
    overflow: hidden;
    cursor: pointer;
}

.youtube-placeholder img {
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 10;
    transition: all .3s linear;
    width: 6.667vw;
    height: 6.667vw;
}

.play-button img {
    width: 100%;
    height: 100%;
}

.play-button:hover {
    transform: scale(1.05);
    transition: all .3s linear;
}

.video_block .text {
    font-weight: 500;
    font-size: 1.458vw;
    line-height: 151%;
    letter-spacing: 0.5em;
    text-align: center;
    color: #fffff5;
    margin: 3vw 0 0;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
}

.statuses {
    position: relative;
    padding: 3vw 0;
}

.headline {
    margin: 0 0 2vw;
}

h2 {
    font-weight: 900;
    font-size: 5.938vw;
    line-height: 97%;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1vw;
}

.headline p {
    font-weight: 600;
    font-size: 2.24vw;
    line-height: 97%;
    text-align: center;
    color: #fff;
}

.statuses__elem {
    display: flex;
    justify-content: space-between;
}

.statuses__swiper {
    padding: 10px;
}

.statuses__item {
    max-width: 17.5vw;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
    border-radius: 0.625vw;
    padding: 2.083vw 1.563vw 1.563vw;
    cursor: pointer;
    transition: all .2s linear;
}

.statuses__item:hover {
    transform: scale(1.02);
    transition: all .2s linear;
}

h3 {
    font-weight: 900;
    font-size: 3.75vw;
    line-height: 97%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    min-height: 3.646vw;
}

.image_block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.statuses__item .image_block {
    min-height: 9.375vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.statuses__item .image_block img {
    width: 100%;
}

.vip .image_block {
    width: 9.375vw;
}

.gold .image_block {
    width: 11.563vw;
}

.gold .image_block img {
    margin: -1.563vw 0 0;
}

.platinum .image_block {
    width: 11.563vw;
}

.platinum h3, .diamond h3 {
    font-size: 2.708vw;
}

.diamond .image_block {
    width: 8.75vw;
}

.statuses__item .advantages {
    font-weight: 500;
    font-size: 1.25vw;
    color: #fff;
    padding: 0 0 0 1.042vw;
    list-style: disc;
    margin: 0 0 1.302vw;
}

.statuses__item .advantages li:not(:last-child) {
    margin: 0 0 0.365vw;
}

.statuses__item .desc {
    font-weight: 700;
    font-size: 1.25vw;
    color: #fff;
}

.vip {
    background-image: url(../img/image_1.jpg);
}

.vip:before {
    position: absolute;
    content: '';
    background-image: url(../img/image_11.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 31.146vw;
    height: 31.406vw;
    top: -21vw;
    left: auto;
    right: auto;
}

.gold {
    background-image: url(../img/image_2.jpg);
}

.gold:before {
    position: absolute;
    content: '';
    background-image: url(../img/image_12.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 31.146vw;
    height: 31.406vw;
    top: -18vw;
    left: auto;
    right: auto;
}

.platinum {
    background-image: url(../img/image_3.jpg);
}

.platinum:before {
    position: absolute;
    content: '';
    background-image: url(../img/image_13.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 31.146vw;
    height: 31.406vw;
    top: -18vw;
    left: auto;
    right: auto;
}

.diamond {
    background-image: url(../img/image_4.jpg);
}

.diamond:before {
    position: absolute;
    content: '';
    background-image: url(../img/image_14.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 31.146vw;
    height: 37.552vw;
    top: -18vw;
    left: auto;
    right: auto;
}

.diamond .desc span {
    color: #aacbff;
}

.how_to_get_status {
    padding: 5vw 0;
    position: relative;
    background-image: url(../img/image_6.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.how_to_get_status .wrapper {
    width: 100%;
    background-image: url(../img/image_5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 38.75vw;
    border-radius: 0.625vw;
    padding: 2.083vw 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how_to_get_status h2 {
    font-weight: 900;
    font-size: 3.75vw;
    line-height: 97%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.how_to_get_status .elem {
    width: 100%;
}

.how_to_get_status .elem_up .title {
    background: linear-gradient(241deg, #00FF5A 0%, #00FB59 60%, #00C746 100%);
    height: 2.24vw;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 700;
    font-size: 1.25vw;
    color: #000;
    max-width: 14.167vw;
    width: 100%;
    border-radius: 0 10px 10px 0;
    padding-right: 3.594vw;
    margin: 0 0 1.042vw;
    animation: gradient 7s ease-in-out infinite;
    background-size: 300% 100%;
}

.elem_block {
    display: flex;
    justify-content: space-between;
    max-width: 58.958vw;
    width: 100%;
    margin:  0 auto;
    color: #fff;
}

.elem_block .swiper {
    width: 100%;
}

.elem_block .swiper .swiper-wrapper {
    justify-content: space-between;
}

.elem_block .item {
    max-width: 9.583vw;
    width: 100% !important;
    font-weight: 700;
    font-size: 1.25vw;
    text-align: center;
}

.elem_block .item:first-child {
    font-weight: 500;
    text-align: left;
}

.elem_block .item .text_2 {
    margin: 0.625vw 0;
    min-height: 3.75vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green_line {
    background: #00ff5a;
    height: 8.75vw;
    width: 1px;
}

.elem_up {
    margin: 0 0 2.604vw;
}

.how_to_get_status .elem_bottom .title {
    background: linear-gradient(241deg, #f4e5be 0%, #fde6ab 14.29%, #fdf4d5 28.57%, #fff3d5 42.86%, #dba848 57.14%, #ffe9b6 71.43%, #ffd076 85.71%, #fef0bf 100%);
    height: 2.24vw;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 700;
    font-size: 1.25vw;
    color: #000;
    max-width: 14.167vw;
    width: 100%;
    border-radius: 0 10px 10px 0;
    padding-right: 3.594vw;
    margin: 0 0 1.042vw;
    animation: gradient 7s ease-in-out infinite;
    background-size: 300% 100%;
}

.advantages {
    position: relative;
    padding: 3vw 0 7vw;
}

.advantages h2 {
    font-weight: 900;
    font-size: 3.75vw;
    line-height: 97%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.advantages .elem p {
    font-weight: 700;
    font-size: 1.667vw;
    /* line-height: 97%; */
    text-align: center;
    color: #fff;
    position: relative;
}

.advantages .elem p span {
    margin: 0 0.26vw;
}

.advantages .elem p:not(:last-child) {
    margin: 0 0 1.083vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages .elem p:not(:last-child):before {
    position: absolute;
    content: '';
    background: #00ff5a;
    width: 8.75vw;
    height: 1px;
    bottom: -0.4vw;
    left: auto;
    right: auto;
}

.advantages .elem p:last-child span {
    color: #00ff5a;
}

.advantages .logo_block {
    margin: 6vw auto 0;
    display: flex;
    justify-content: center;
    width: 18.333vw;
}

.advantages .logo_block img {
    width: 100%;
}

.advantages .image_1 {
    position: absolute;
    bottom: -7vw;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37.083vw;
    height: 47.083vw;
}

.advantages .image_2 {
    position: absolute;
    bottom: -7vw;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37.917vw;
    height: 47.083vw;
}

.advantages .image_1 img, .advantages .image_2 img {
    width: 100%;
    height: 100%;
}

.benefits_2 {
    margin: 0;
}

.faq {
    position: relative;
    overflow: hidden;
}

.faq .image_1 {
    position: absolute;
    right: -5vw;
    bottom: -6vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq .wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 4vw 0;
}

.faq .left {
    max-width: 43.958vw;
    width: 100%;
}

.faq h2 {
    font-weight: 900;
    font-size: 3.75vw;
    line-height: 97%;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    margin: 0 0 2vw;
}

.accordeon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.accordeon_item.active>.accordeon_title:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.accordeon_title {
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.667vw;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    padding: 1.042vw 1.823vw 1.042vw 0;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid #00ff5a;
}

.accordeon_title p {
    transform: translateY(0);
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.accordeon_title:after {
    position: absolute;
    top: auto;
    bottom: auto;
    right: 0;
    width: 1.302vw;
    height: 0.677vw;
    background-image: url(../img/dropdown.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.accordeon_content {
    padding: 1.042vw 0 0;
    position: relative;
    color: #fff;
}

.accordeon_content p {
    margin: 0 !important;
}

.accordeon_item .text span {
    font-weight: 700;
}

.faq .right {
    width: 43.021vw;
    position: absolute;
    right: 0;
    top: -1.042vw;
}

.faq .right img {
    width: 100%;
}

/* Footer */

footer {
    position: relative;
    display: flex;
    background-image: url(../img/image_6.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 8.958vw;
}

.footer__wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Media */

@media screen and (min-width: 1921px) {
    .first_screen {
        height: auto;
    }

    .image__1 {
        top: 1vw !important;
    }
}

@media screen and (max-width: 1600px) {
    .benefits {
        margin: -4vw 0 0;
    }
}

@media screen and (max-width: 1536px) {
    .first_screen {
        height: auto;
    }
}

@media screen and (orientation: portrait) {
    body {
        font-size: 16px;
    }

    .burger {
        display: flex;
        z-index: 1500;
        margin: 0 1.953vw 0 0;
    }

    .ham {
        width: 5.078vw;
    }

    h1 {
        font-size: 19.336vw;
        margin: 0 0 1.465vw;
    }

    h2 {
        font-size: 11.133vw;
        margin: 0 0 1.465vw;
    }

    .action_btn {
        width: 28.516vw;
        height: 7.031vw;
        font-size: 2.344vw;
    }

    .first_screen {
        padding: 110px 0 0;
    }

    .first_screen__wrapper {
        flex-direction: column;
    }

    .first_screen__left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 60px;
    }

    .first_screen__left .desc {
        font-size: 4.199vw;
        margin: 0 0 5vw;
        text-align: center;
    }

    .first_screen__left .desc:after {
        width: 13.281vw;
        height: 0.195vw;
        bottom: -1.953vw;
        left: calc(50% - 70px);
    }

    .first_screen__right {
        position: relative;
        right: 0;
    }

    .image__1 {
        z-index: 2;
        top: -5.698vw;
        left: -17vw;
        position: absolute;
        width: 99.707vw;
        height: 73.242vw;
    }

    .image__2 {
        left: -8vw !important;
        top: 17vw !important;
        width: 32.715vw;
        height: 32.715vw;
        position: absolute;
    }

    .image__3 {
        width: 81.25vw;
        height: 65.43vw;
    }

    header .container, .first_screen .container {
        width: 95vw;
    }

    .logo {
        width: 34.375vw;
        margin: 0 0 -2.5vw;
    }

    .header_contacts {
        max-width: 23vw;
    }

    .header_contacts .action_btn {
        height: 5vw;
        font-size: 2vw;
    }

    header {
        height: 120px;
    }

    .container {
        width: 100%;
        padding: 0 20px;
    }

    .left_image {
        top: 2.5vw;
        width: 37.402vw;
        height: 88.281vw;
    }

    .benefits {
        margin: 0;
        padding: 30px 0;
        height: auto;
    }

    .benefits p {
        font-size: 3.125vw;
        width: 100%;
    }

    .video_block {
        padding: 50px 0;
        height: auto;
    }

    .youtube-placeholder {
        width: 75vw;
        height: 42.2vw;
    }

    .statuses {
        padding: 50px 0;
    }

    .statuses__item {
        max-width: 23%;
    }

    .headline {
        margin: 0 0 5vw;
    }

    .headline p {
        font-size: 4.199vw;
    }

    h3, .platinum h3, .diamond h3 {
        font-size: 4.2vw;
        min-height: auto;
    }

    .statuses__item .advantages {
        font-size: 18px;
    }

    .statuses__item .desc {
        font-size: 20px;
    }

    .statuses__item .image_block {
        min-height: 140px;
    }

    .vip .image_block {
        width: 140px;
    }

    .gold .image_block {
        width: 150px;
    }

    .platinum .image_block {
        width: 160px;
    }

    .diamond .image_block {
        width: 130px;
    }

    .how_to_get_status .wrapper {
        height: auto;
        padding: 40px 0;
    }

    .how_to_get_status h2 {
        font-size: 7.031vw;
        margin: 0 0 3vw;
    }

    .how_to_get_status .headline {
        margin: 0;
    }

    .how_to_get_status .elem_up .title, .how_to_get_status .elem_bottom .title {
        height: 4.199vw;
        font-size: 20px;
        max-width: 13.5vw;
        padding-right: 0;
        justify-content: flex-start;
        padding-left: 45px;
        margin: 0 0 20px;
    }

    .elem_block {
        max-width: 90%;
    }

    .elem_block .item {
        max-width: 18%;
        font-size: 18px;
    }

    .elem_block .item .text_2 {
        margin: 15px 0;
        min-height: 54px;
    }

    .green_line {
        height: 13.75vw;
    }

    .elem_up {
        margin: 0 0 30px;
    }

    .advantages {
        padding: 50px 0 70px;
    }

    .advantages h2 {
        font-size: 5.5vw;
    }

    .advantages .elem p {
        font-size: 3.125vw;
    }

    .advantages .elem p:not(:last-child) {
        margin: 0 0 2.083vw;
    }

    .advantages .elem p:not(:last-child):before {
        width: 15vw;
        bottom: -1vw;
    }

    .advantages .logo_block {
        margin: 10vw auto 0;
        width: 34.375vw;
    }

    .advantages .image_1 {
        left: -7vw;
    }

    .advantages .image_2 {
        right: -7vw;
    }

    .faq .wrapper {
        padding: 50px 0;
    }

    .faq h2 {
        font-size: 7.031vw;
        margin: 0 0 3vw;
    }

    .accordeon_title {
        font-size: 24px;
        padding: 10px 20px 10px 0;
    }

    .faq .left {
        /* max-width: 50vw; */
        max-width: 100%;
    }

    .faq .right {
        width: 64vw;
        top: -1.042vw;
        right: -12vw;
        display: none;
    }

    footer {
        height: 150px;
        overflow: hidden;
    }

    .faq .image_1 {
        display: none;
    }

    .scroll_up {
        max-width: 7vw;
    }

    .video_block .text {
        font-size: 2.2vw;
        margin: 30px 0 0;
    }

    .accordeon_content {
        padding: 10px 0;
    }

    .accordeon_title:after {
        width: 25px;
        height: 13px;
    }
}

@media only screen and (max-width: 1100px) and (orientation: landscape) {
    body {
        font-size: 16px;
    }

    .burger {
        display: flex;
        z-index: 1500;
        margin: 0 1.953vw 0 0;
    }

    .ham {
        width: 5.078vw;
    }

    h1 {
        font-size: 19.336vw;
        margin: 0 0 1.465vw;
    }

    h2 {
        font-size: 11.133vw;
        margin: 0 0 1.465vw;
    }

    .action_btn {
        width: 28.516vw;
        height: 7.031vw;
        font-size: 2.344vw;
    }

    .first_screen {
        padding: 110px 0 0;
    }

    .first_screen__wrapper {
        flex-direction: column;
    }

    .first_screen__left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 60px;
    }

    .first_screen__left .desc {
        font-size: 4.199vw;
        margin: 0 0 5vw;
        text-align: center;
    }

    .first_screen__left .desc:after {
        width: 13.281vw;
        height: 0.195vw;
        bottom: -1.953vw;
        left: calc(50% - 70px);
    }

    .first_screen__right {
        position: relative;
        right: 0;
    }

    .image__1 {
        z-index: 2;
        top: -5.698vw;
        left: -17vw;
        position: absolute;
        width: 99.707vw;
        height: 73.242vw;
    }

    .image__2 {
        left: -8vw !important;
        top: 17vw !important;
        width: 32.715vw;
        height: 32.715vw;
        position: absolute;
    }

    .image__3 {
        width: 81.25vw;
        height: 65.43vw;
    }

    header .container, .first_screen .container {
        width: 95vw;
    }

    .logo {
        width: 34.375vw;
        margin: 0 0 -2.5vw;
    }

    .header_contacts {
        max-width: 23vw;
    }

    .header_contacts .action_btn {
        height: 5vw;
        font-size: 2vw;
    }

    header {
        height: 120px;
    }

    .container {
        width: 100%;
        padding: 0 20px;
    }

    .left_image {
        top: 2.5vw;
        width: 37.402vw;
        height: 88.281vw;
    }

    .benefits {
        margin: 0;
        padding: 30px 0;
        height: auto;
    }

    .benefits p {
        font-size: 3.125vw;
        width: 100%;
    }

    .video_block {
        padding: 50px 0;
        height: auto;
    }

    .youtube-placeholder {
        width: 75vw;
        height: 42.2vw;
    }

    .statuses {
        padding: 50px 0;
    }

    .statuses__item {
        max-width: 23%;
    }

    .headline {
        margin: 0 0 5vw;
    }

    .headline p {
        font-size: 4.199vw;
    }

    h3, .platinum h3, .diamond h3 {
        font-size: 4.2vw;
        min-height: auto;
    }

    .statuses__item .advantages {
        font-size: 18px;
        padding: 0 0 0 20px;
    }

    .statuses__item .desc {
        font-size: 20px;
    }

    .statuses__item .image_block {
        min-height: 140px;
    }

    .vip .image_block {
        width: 140px;
    }

    .gold .image_block {
        width: 150px;
    }

    .platinum .image_block {
        width: 160px;
    }

    .diamond .image_block {
        width: 130px;
    }

    .how_to_get_status .wrapper {
        height: auto;
        padding: 40px 0;
    }

    .how_to_get_status h2 {
        font-size: 7.031vw;
        margin: 0 0 3vw;
    }

    .how_to_get_status .headline {
        margin: 0;
    }

    .how_to_get_status .elem_up .title, .how_to_get_status .elem_bottom .title {
        height: 4.199vw;
        font-size: 20px;
        max-width: 13.5vw;
        padding-right: 0;
        justify-content: flex-start;
        padding-left: 45px;
        margin: 0 0 20px;
    }

    .elem_block {
        max-width: 90%;
    }

    .elem_block .item {
        max-width: 24%;
        font-size: 18px;
    }

    .green_line {
        height: 13.75vw;
    }

    .elem_up {
        margin: 0 0 30px;
    }

    .advantages {
        padding: 50px 0 70px;
    }

    .advantages h2 {
        font-size: 5.5vw;
    }

    .advantages .elem p {
        font-size: 3.125vw;
    }

    .advantages .elem p:not(:last-child) {
        margin: 0 0 2.083vw;
    }

    .advantages .elem p:not(:last-child):before {
        width: 15vw;
        bottom: -1vw;
    }

    .advantages .logo_block {
        margin: 10vw auto 0;
        width: 34.375vw;
    }

    .advantages .image_1 {
        left: -7vw;
    }

    .advantages .image_2 {
        right: -7vw;
    }

    .faq .wrapper {
        padding: 50px 0;
    }

    .faq h2 {
        font-size: 7.031vw;
        margin: 0 0 3vw;
    }

    .accordeon_title {
        font-size: 24px;
        padding: 10px 20px 10px 0;
    }

    .faq .left {
        /* max-width: 50vw; */
        max-width: 100%;
    }

    .faq .right {
        width: 64vw;
        top: -1.042vw;
        right: -12vw;
        display: none;
    }

    footer {
        height: 150px;
        overflow: hidden;
    }

    .faq .image_1 {
        display: none;
    }

    .scroll_up {
        max-width: 7vw;
    }

    .video_block .text {
        font-size: 2.2vw;
        margin: 30px 0 0;
    }

    .accordeon_content {
        padding: 10px 0;
    }

    .accordeon_title:after {
        width: 25px;
        height: 13px;
    }
}

@media screen and (max-width: 900px) {
    .statuses__item {
        max-width: 40%;
        padding: 30px;
        border-radius: 12px;
    }

    h3, .platinum h3, .diamond h3 {
        font-size: 68px;
    }

    .statuses__item .advantages {
        font-size: 24px;
        padding: 0 0 0 30px;
        margin: 0 0 20px;
        width: 100%;
    }

    .statuses__item .desc {
        font-size: 24px;
    }

    .statuses__item .image_block {
        min-height: 190px;
    }

    .vip .image_block, .gold .image_block, .platinum .image_block, .diamond .image_block {
        width: 75%;
    }

    .elem_block {
        max-width: 100%;
        padding: 0 20px;
    }

    .how_to_get_status .elem_up .title, .how_to_get_status .elem_bottom .title {
        padding-left: 20px;
    }

    .vip:before, .gold:before, .platinum:before {
        width: 58.398vw;
        height: 58.887vw;
        top: -36vw;
    }

    .diamond:before {
        width: 58.398vw;
        height: 70.41vw;
        top: -36vw;
    }

    .swiper-pagination {
        bottom: 20px !important;
    }

    .swiper-pagination-bullet {
        width: 20px !important;
        height: 20px !important;
        background: linear-gradient(241deg, #00FF5A 0%, #00FB59 60%, #00C746 100%) !important;
    }

    .green_line {
        height: 138px;
    }
}

@media screen and (max-width: 768px) {
    .video  {
        width: 100%;
    }

    .youtube-placeholder {
        width: 100%;
        height: 410px;
    }

    .statuses__item {
        max-width: 45%;
    }

    .elem_block .item {
        font-size: 16px;
    }
}

@media screen and (max-width: 540px) {
    header {
        height: 90px;
    }

    header .container, .first_screen .container {
        width: 100%;
    }

    .logo {
        width: 220px;
        margin: 0 0 -20px;
    }

    .header_contacts {
        max-width: 140px;
    }

    .header_contacts .action_btn {
        height: 43px;
        font-size: 14px;
        width: 100%;
    }

    h1 {
        font-size: 90px;
        margin: 0 0 15px;
    }

    .first_screen__left .desc {
        font-size: 30px;
        margin: 0 0 40px;
    }

    .left_image {
        display: none;
    }

    .first_screen__left .desc:after {
        width: 136px;
        height: 2px;
        bottom: -20px;
        left: calc(50% - 70px);
    }

    .first_screen__wrapper .btn_block {
        width: 100%;
    }

    .action_btn {
        width: 100%;
        height: 72px;
        font-size: 24px;
    }

    .benefits p {
        font-size: 18px;
        width: 100%;
        padding: 0 20px;
    }

    .youtube-placeholder {
        height: 220px;
        border-radius: 12px;
    }

    .video_block .text {
        font-size: 16px;
    }

    h2 {
        font-size: 60px;
        margin: 0 0 15px;
    }

    .statuses__item {
        max-width: 100%;
    }

    .vip:before, .gold:before, .platinum:before {
        width: 598px;
        height: 603px;
        top: -380px;
    }

    .diamond:before {
        width: 598px;
        height: 721px;
        top: -400px;
    }

    .vip .image_block, .gold .image_block, .platinum .image_block, .diamond .image_block {
        width: 60%;
    }

    .headline p {
        font-size: 20px;
    }

    .how_to_get_status h2 {
        font-size: 50px;
        margin: 0 0 30px;
    }

    .how_to_get_status .elem_up .title, .how_to_get_status .elem_bottom .title {
        height: 43px;
        font-size: 24px;
        max-width: 120px;
        padding-right: 30px;
        padding-left: 20px;
        margin: 0 0 20px;
    }

    .elem_block {
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 20px;
    }

    .elem_block::-webkit-scrollbar {
        background: transparent;
    }

    .elem_up .elem_block::-webkit-scrollbar-thumb {
        background: linear-gradient(241deg, #00FF5A 0%, #00FB59 60%, #00C746 100%);
    }

    .elem_bottom .elem_block::-webkit-scrollbar-thumb {
        background: linear-gradient(241deg, #f4e5be 0%, #fde6ab 14.29%, #fdf4d5 28.57%, #fff3d5 42.86%, #dba848 57.14%, #ffe9b6 71.43%, #ffd076 85.71%, #fef0bf 100%);
    }

    .elem_block .item {
        max-width: 40%;
        min-width: 40%;
    }

    .elem_block .item .text_2 {
        margin: 15px 0;
        min-height: 54px;
    }

    .advantages h2 {
        font-size: 44px;
    }

    .advantages .elem p {
        font-size: 20px;
    }

    .advantages .elem p:not(:last-child) {
        margin: 0 0 20px;
    }

    .advantages .elem p:not(:last-child):before {
        width: 136px;
        bottom: -10px;
    }

    .advantages .image_1, .advantages .image_2 {
        display: none;
    }

    .advantages .logo_block {
        margin: 30px auto 0;
        width: 90%;
    }

    .advantages {
        padding: 50px 0 0;
    }

    .accordeon_title {
        padding: 10px 35px 10px 0;
    }

    .faq h2 {
        font-size: 60px;
        margin: 0 0 20px;
    }

    .play-button {
        width: 100px;
        height: 100px;
    }

    .advantages .elem p span {
        margin: 0 5px;
    }

    .scroll_up {
        max-width: 64px;
    }

    .video__wrapper:after {
        width: 125vw;
        height: 125vw;
        top: -37vw;
    }

    .statuses {
        padding: 50px 0 70px;
    }

    .swiper-pagination {
        bottom: 25px !important;
    }

    .right_image, .right_image img {
        width: 100%;
    }

    .green_line {
        display: none;
    }

    .elem_block .item:not(:last-child) {
        border-right: 1px solid #00ff5a;;
    }

    .elem_up {
        margin: 0 0 35px;
    }

    .elem_up, .elem_bottom {
        position: relative;
    }

    .elem_up .swiper-scrollbar-drag {
        background: linear-gradient(241deg, #00FF5A 0%, #00FB59 60%, #00C746 100%);
    }

    .elem_bottom .swiper-scrollbar-drag {
        background: linear-gradient(241deg, #f4e5be 0%, #fde6ab 14.29%, #fdf4d5 28.57%, #fff3d5 42.86%, #dba848 57.14%, #ffe9b6 71.43%, #ffd076 85.71%, #fef0bf 100%);
    }

    .swiper-pagination-bullet {
        width: 15px !important;
        height: 15px !important;
    }
}

@media screen and (max-width: 414px) {
    .youtube-placeholder {
        height: 210px;
    }
}

@media screen and (max-width: 393px) {
    .statuses__item .desc, .statuses__item .advantages {
        font-size: 21px;
    }

    .advantages h2 {
        font-size: 40px;
    }

    .first_screen__left .desc {
        font-size: 24px;
    }

    .logo {
        width: 180px;
    }

    footer .logo {
        width: 220px;
    }

    .elem_block .item {
        max-width: 43%;
        min-width: 43%;
    }

    .youtube-placeholder {
        height: 198px;
    }
}

@media screen and (max-width: 375px) {
    .advantages .elem p span {
        margin: 0 3px;
    }

    h3 {
        font-size: 60px;
    }

    .statuses__item {
        padding: 20px;
    }

    .youtube-placeholder {
        height: 188px;
    }
}

@media screen and (max-width: 360px) {
    .logo {
        width: 160px;
        margin: 0 0 -15px;
    }

    .how_to_get_status .wrapper {
        padding: 25px 0;
    }

    .how_to_get_status h2 {
        font-size: 44px;
    }

    .advantages h2 {
        font-size: 34px;
    }

    .advantages .elem p {
        font-size: 17px;
    }

    .elem_block .item {
        max-width: 50%;
        min-width: 50%;
    }

    .youtube-placeholder {
        height: 180px;
    }
}