main {
    padding-top: 96px;
}

@media (max-width: 1280px) {
    main {
        padding-top: 80px;
    }
}

.site-header {
    background-color: white !important;
}

.hero-carousel {
    position: relative;
    height: fit-content;
}

.hero-slide {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 560px;
}

.hero-left {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    background: linear-gradient(82.67deg, #000F35 0%, #00154A 100%);
    height: 100%;
}

.hero-content {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content h1 {
    color: #fff;
    font-family: CircularXX TT, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: CircularXX TT, sans-serif;
    font-size: 20px;
    font-weight: 450;
    line-height: 26px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 24px;
}


.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    border-radius: 24px;
    color: #fff;
    font-family: CircularXX TT, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration: none;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-navigation {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 33%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    z-index: 10;
    gap: 20px;
    border-radius: 4px;
}

.swiper-buttons-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
    gap: 16px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    margin: 0;
    width: 48px;
    height: 48px;
}


.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
    color: #fff;
}

.swiper-pagination {
    position: static;
    width: fit-content !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}



.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 6px;
    height: 6px;
    transition: all 0.5s ease;
}


.swiper-pagination-bullet-active {
    background: rgba(50, 186, 246, 1);
    width: 12px;
    height: 12px;
}

@media (max-width: 1440px) {
    .hero-slide {
        grid-template-columns: 1fr 1fr;
    }

    .hero-navigation {
        width: 50%;
    }
}


@media (max-width: 1280px) {
    .hero-slide {
        display: flex;
        flex-direction: column;
        height: fit-content;
    }


    .hero-left {
        height: 560px;
    }

    .hero-right {
        height: fit-content;
        padding-bottom: 128px;
    }

    .hero-content {
        justify-content: flex-start;
        align-items: center;
        padding: 40px 40px 0 40px;
    }

    .hero-content h1 {
        font-family: CircularXX TT, sans-serif;
        font-size: 40px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    .hero-subtitle {
        font-family: CircularXX TT, sans-serif;
        font-size: 16px;
        font-weight: 450;
        line-height: 24px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    .hero-navigation {
        width: 100%;
        bottom: 600px;
        padding: 0 40px
    }
}

@media (max-width: 769px) {
    .hero-left {
        height: 480px;
    }

    .hero-navigation {
        bottom: 520px;
    }
}