.sliders-container {
    position: relative;
}

.slider-full-child {
    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;
            }
        }
    }

    .container {
        &.header {
            position: absolute;
            top: clamp(2.778rem, 1.81rem + 4.839vi, 6.111rem);
            z-index: 10;

            .headline {
                color: #FFF;
                text-align: center;
                font-family: "League Spartan";
                font-size: clamp(2.778rem, 1.971rem + 4.032vi, 5.556rem);
                font-style: normal;
                font-weight: 800;
                line-height: 1.1;
                text-transform: capitalize;
                margin: 0 auto;
            }
        }
    }

    .swiper-wrapper {
        align-items: stretch;

        .swiper-slide {
            padding-top: clamp(13.889rem, 11.308rem + 12.903vi, 22.778rem);
            padding-bottom: 275px;
            min-height: clamp(38.889rem, 37.276rem + 8.065vi, 44.444rem);
            height: auto;
        }
    }

    .container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(1.111rem, 0.789rem + 1.613vi, 2.222rem);
        z-index: 2;
        max-width: 1450px;

        .text-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 30px;
            max-width: clamp(16.667rem, 6.821rem + 23.077vi, 27.333rem);

            .title {
                padding: 0;
                color: #FFF;
                text-align: center;
                font-family: "League Spartan";
                font-size: clamp(2.125rem, 1.865rem + 1.154vi, 3.25rem);
                font-style: normal;
                font-weight: 800;
                line-height: 1.1;
                text-transform: capitalize;
                margin: 0;
            }

            .text {
                align-self: stretch;
                color: #FFF;
                font-family: Dosis;
                font-size: 18px;
                font-style: normal;
                font-weight: 500;
                line-height: 1.4;
                margin: 0;
            }

            .button {
                padding: 0;
            }
        }
    }

    .swiper-controls {
        position: absolute;
        bottom: 100px;
        width: 100%;
        max-width: clamp(17.778rem, 1.004rem + 83.871vi, 75.556rem);
        display: flex;
        justify-content: space-between;
        z-index: 1;
        align-items: center;

        .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);
        }
    }
}

.slider-secondary-container {
    position: absolute!important;
    top: 309px;
    left: calc(100% - 323px);
    height: 359px;
    gap: 30px;
    width: 323px;
    z-index: 1;
    color: #fff;
    display: none;

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

    &.with-label {
        grid-template-columns: 67px minmax(0, 1fr);
    }

    p {
        color: #FFF;
        text-align: right;
        font-family: "League Spartan";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.1;
    }

    .slider-full-child-secondary {
        width: 323px;

        .swiper-slide {
            position: relative;

            .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;
                }
            }
        }
    }
}
