.hero-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;

    .background-image {
        position: absolute;
        display: block;
        top: 0;
        width: 100%;
        height: 100%;

        .image {
            position: absolute;
            display: block;
            top: 0;
            width: 100%;
            height: 100%;

            .img {
                position: absolute;
                display: block;
                top: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    .swiper-slide {
        padding-top: 95px;
        padding-bottom: 100px;
        height: clamp(28.125rem, calc(6.25rem + 58.333vw), 50rem);

        @media only screen and (min-width: 768px) {
            min-height: 800px;
            padding-top: 210px;
            padding-bottom: 200px;
        }
    }

    .container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        z-index: 2;

        @media only screen and (min-width: 768px) {
            gap: 40px;
        }

        .heading {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;


            .overline {
                align-self: stretch;
                color: #FFF;
                text-align: center;
                font-family: "League Spartan";
                font-size: clamp(0.875rem, calc(0.75rem + 0.333vw), 1rem);
                font-style: normal;
                font-weight: 800;
                line-height: 110%; /* 17.6px */
                letter-spacing: 3.2px;
                text-transform: uppercase;
            }

            .headline {
                align-self: stretch;
                padding: 0;
                color: #FFF;
                text-align: center;
                font-family: "League Spartan";
                font-size: clamp(1.625rem, calc(-1.125rem + 7.333vw), 4.375rem);
                font-style: normal;
                font-weight: 800;
                line-height: 110%; /* 77px */
                text-transform: capitalize;
            }
        }

        .text {
            align-self: stretch;
            color: #FFF;
            text-align: center;
            font-family: Dosis;
            font-size: clamp(1rem, calc(0.625rem + 1vw), 1.375rem);
            font-style: normal;
            font-weight: 700;
            line-height: 120%; /* 26.4px */
            margin: 0;
        }
    }

    .swiper-controls {
        position: absolute;
        bottom: 40px;
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: space-between;
        z-index: 1;

        @media only screen and (min-width: 576px) {
            max-width: 540px;
        }

        @media only screen and (min-width: 768px) {
            max-width: 720px;
        }

        @media only screen and (min-width: 992px) {
            max-width: 960px;
        }

        @media only screen and (min-width: 1200px) {
            max-width: 1140px;
        }

        .indicator {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            width: fit-content;

            .progressbar {
                position: relative;
                width: clamp(6.938rem, calc(1.375rem + 14.833vw), 12.5rem);
                height: 2px;
                flex: 1 0 0;
                background: rgba(255, 255, 255, 0.20);
            }

            .current, .total {
                color: #FFF;
                font-family: "League Spartan";
                font-size: clamp(0.875rem, calc(0.625rem + 0.667vw), 1.125rem);
                font-style: normal;
                font-weight: 700;
                line-height: normal;
            }
        }

        .prev,
        .next {
            &:not(.swiper-button-disabled) {
                cursor: pointer;

                &:hover {
                    svg {
                        color: #258CCF;
                    }
                }

                svg {
                    color: #FFFFFF;
                }
            }

            svg {
                color: rgba(255, 255, 255, .5);
            }
        }

        .next {
            transform: rotate(180deg);
        }
    }
}
