@import url('./reset.css');
@import url('./fonts.css');

* {
    user-select: none;
}

:root {
    --bg_light: #fff;
    --bg_dark: #05050a;
    --bg_button: #16161680;
    /* --bg_button-hov: linear-gradient(90deg, rgba(86, 0, 112, 0.4) 0%, rgba(5, 164, 175, 0.4) 100%); */
    --bg_button-hov: linear-gradient(90deg, rgba(65, 94, 208, 0.4) 0%, rgba(216, 134, 230, 0.4) 100%);
    /* --bg_footer: linear-gradient(88.56deg, #383838 -1.12%, #171717 47.05%, #252525 104.34%); */
    --bg_footer: linear-gradient(to bottom, #05050a 0%, #303135 100%);
    --br_button: #CDCDCD;
    --text_light: #fff;
    --text_dark: #000;
}

body {
    background-color: var(--bg_dark);
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 24px;
    color: var(--text_light);
}


.wrapper {
    overflow: clip;
    min-height: 100%;

    display: flex;
    flex-direction: column;
}

.wrapper>main {
    flex-grow: 1;
}

[class*="--margin"] {
    margin-bottom: 30px;
}

[class*="__container"] {
    max-width: 420px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}



h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-top: 20px;
}


/*-------------- button --------------*/
.btn {
    width: 100%;
    max-width: 175px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #FFFFFF26;
    background-color: var(--bg_button);
    text-align: center;
    color: var(--text_light);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
    z-index: 1;

    position: relative;
    transition: all 0.5s ease-out;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 768px) {
    .btn {
        max-width: 165px;
    }
}

.btn:hover,
.btn:active {
    background: var(--bg_button-hov);
    transform: scale(0.95);
}

.big-btn {
    width: 100%;
    max-width: 361px;
}


/* --------- preloader --------- */
#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#preloader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}




/* --------- header --------- */
#header {
    padding: 3% 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    #header {
        padding: 20px 0 20px;
    }
}

.header__logo {
    width: 93px;
    height: 93px;
}

.header__logo img {
    width: 100%;
    object-fit: cover;
}



/* --------- intro --------- */

.introSwiper {
    max-width: 362px;
    margin-bottom: 5%;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner-block {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    flex-grow: 1;
}

.upper-text {
    font-size: 14px;
    margin-bottom: 10%;
}

.swiper-slide .inner-block h2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.slide-1 .inner-block h2::before {
    content: '1.';
}

.slide-2 .inner-block h2::before {
    content: '2.';
}

.slide-3 .inner-block h2::before {
    content: '3.';
}

.slide-4 .inner-block h2::before {
    content: '4.';
}

.buttons-list {
    width: 100%;
    padding: 32px 0 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .buttons-list {
        justify-content: space-between;
    }
}

@media (max-width: 384px) {
    .buttons-list {
        justify-content: center;
    }
}

.step-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.slide-5 .inner-block {
    text-align: center;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
}

.swiper-pagination__progressbar {
    height: 8px;
    border-radius: 12px;
    background: #333333;
    position: relative;
    margin-bottom: 5px;
}

.swiper-pagination__progressbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 0%);
    border-radius: 12px;
    background: #fff;
    transition: width 0.6s ease-in-out;
}

.introSwiper:has(.swiper-slide.slide-5.swiper-slide-active) .swiper-pagination__progressbar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}




/* --------- footer --------- */
#footer {
    background: var(--bg_footer);
    padding: 3% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 768px) {
    #footer {
        padding: 20px 0;
    }
}



/* --------- lead-form --------- */
lead-form {
    width: 100% !important;
}

.leadform {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0;
}

.leadform-wrapper {
    padding: 30px 0px !important;
}

.leadform input {
    border-radius: 12px !important;
}

/* .iti__country-list {
    color: #000 !important;
} */


/*=====================================================*/