:root {
    --red: #ED3237;
    --default: #020D20;
    --white: #FFFFFF;
    --gray: rgba(2, 13, 32, 0.38);
    --font: "Inter Display", sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--default);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    overflow: hidden;
}

.cs-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.cs-header {
    padding: 60px 0 0 0;
}
.cs-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cs-socials {
    display: flex;
    gap: 22px;
}
.cs-social {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main */
.cs-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 90px 0 110px 0;
}
.cs-hero {
    max-width: 810px;
}
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--red);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.32px;
    margin-bottom: 40px;
}
.cs-badge__dot {
    width: 7px;
    height: 7px;
    background-color: var(--white);
}
.cs-title {
    font-family: Arimo;
    font-size: 74px;
    font-style: normal;
    font-weight: 400;
    line-height: 84.748%;
    letter-spacing: -2.22px;
    margin-bottom: 42px;
}
.cs-title--red {
    color: var(--red);
}
.cs-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.4px;
    color: var(--gray);
    max-width: 700px;
}

/* Footer */
.cs-footer {
    padding: 0 0 48px 0;
}
.cs-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.cs-footer__left {
    max-width: 430px;
    width: 100%;
}
.cs-form-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.32px;
    margin-bottom: 18px;
}
.cs-form {
    display: flex;
    margin-bottom: 18px;
}
.cs-form__input {
    flex: 1;
    padding: 17px 26px;
    border: 1px solid rgba(2, 13, 32, 0.23);
    border-radius: 14px;
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.32px;
    outline: none;
    transition: 0.3s;
    border-right: none;
}
.cs-form__input:focus {
    border-color: var(--red);
}
.cs-form__input::placeholder {
    color: rgba(2, 13, 32, 0.20);
}
.cs-form__btn {
    padding: 16px 40px;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    left: -22px;
}
.cs-form__btn:hover {
    background-color: #D0252A;
}
.cs-policy {
    font-size: 12px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.24px;
    color: var(--gray);
}
.cs-policy a {
    color: var(--red);
    text-decoration: underline;
}

.cs-footer__right {
    display: flex;
    align-items: center;
    gap: 35px;
}
.cs-appointment {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.32px;
    color: var(--default);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: 0.3s;
    border-radius: 14px;
    background: #BFD6FC;
    padding: 19px 23px;
    height: 56px;
}
.cs-appointment:hover {
    background: #5C83C3;
    color: var(--white);
}
.cs-appointment path{
    transition: 0.3s;
}
.cs-appointment:hover path{
    fill: var(--white);
}


/* Responsive */
@media (max-width: 1200px) {
    .cs-title {
        font-size: 72px;
    }

    .cs-desc {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .cs-title {
        font-size: 56px;
    }

    .cs-desc {
        font-size: 20px;
    }

    .cs-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .cs-footer__right {
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cs-header{
        padding: 40px 0 0 0;
    }
    .cs-main {
        padding: 60px 0 40px 0;
    }
    .cs-title {
        margin-bottom: 24px;
    }
}
@media (max-width: 576px) {
    .cs-main {
        padding: 40px 0;
    }

    .cs-title {
        font-size: 36px;
    }

    .cs-desc {
        font-size: 16px;
    }

    .cs-form {
        flex-direction: column;
    }

    .cs-form__btn {
        width: 100%;
        left: 0;
    }
    .cs-form__input{
        width: 100%;
        margin-bottom: 16px;
        border-right: 1px solid rgba(2, 13, 32, 0.23);
    }
    .cs-badge{
        margin-bottom: 24px;
    }
}

/* Swiper Onboarding Styles */
html,
body,
.onboarding-swiper {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

.swiper-pagination-bullet-active {
    background: var(--red);
}

.slide-white {
    background: var(--white);
    display: block;
    overflow-y: auto;
}

.slide-blue {
    background: linear-gradient(0deg, #5C83C3 0%, #5C83C3 100%), url('./img/plug-bg.png') lightgray 50% / cover no-repeat;
    background-blend-mode: color, normal;
    flex-direction: column;
    position: relative;
    padding: 0 40px;
}
.slide-blue2{
    background: linear-gradient(0deg, #5C83C3 0%, #5C83C3 100%), url('./img/plug-bg2.png') lightgray 50% / cover no-repeat;
}
.onboarding-text {
    color: #020D20;
    text-align: center;
    font-family: Arimo;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 84.748%;
    letter-spacing: -1.44px;
    max-width: 1200px;
}
.onboarding-text2{
    color: #020D20;
    text-align: center;
    font-family: Arimo;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -1.92px;
}
.onboarding-text2 span {
    color: var(--red);
}
.onboarding-skip {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-family: var(--font);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.onboarding-skip:hover {
    color: var(--white);
}
@media (max-width: 992px) {
    .onboarding-text {
        font-size: 56px;
    }
}

@media (max-width: 576px) {
    .onboarding-text {
        font-size: 36px;
    }

    .slide-blue {
        padding: 0 20px;
    }
    .onboarding-text2 {
        font-size: 36px;
    }
    .cs-desc br{
        display: none;
    }
}