.business-modules {
    --swiper-navigation-size: 64px;
    --swiper-navigation-color: var(--_bg-color);
    --swiper-navigation-sides-offset: 10px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-width : 12px;
    --swiper-pagination-bullet-size: 12px;
    --swiper-pagination-color: var(--_bg-color);
    margin-block: 24px;
    
    @media (width > 768px) {
        --swiper-navigation-sides-offset: 32px;
        margin-block: 48px;
    }

    h2 {
        color: var(--_bg-color);
        text-align: center;
    }

    .modules-slider {

        .swiper-slider {
            position: relative;
        }

        .photo {
            border-radius: 24px;
            height: 200px;
            overflow: hidden;

            @media (width <= 768px) {
                margin-bottom: 16px;
            }

            @media (width > 768px) {
                height: 600px;
            }

            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .content {
            display: flex;
            flex-direction: column;
            gap: 16px;
            background: #FDFEFF;
            border-radius: 16px;
            
            @media (width > 768px ) {
                position: absolute;
                bottom: 32px;
                left: 32px;
                right: 32px;
                padding: 24px;
                border: 4px solid var(--_bg-color);
                gap: 8px;
            }

            h3 {
                margin: 0;

                @media (width <= 768px) {
                    text-align: center;
                    font-size: 24px;
                }
            }

            .text {
                font-size: 1.8rem;

                @media (width <= 768px) {
                    border: 2px solid var(--_bg-color);
                    border-radius: 8px;
                    padding: 16px;
                    font-size: 12px;
                    line-height: 140%;
                    font-family: 'Lexend';
                    color: #0D1A22;
                    font-weight: 300;
                }
            }
        }

        .swiper-button-prev, .swiper-button-next {
            display: flex;
            width: 40px;
            height: 40px;
            border-radius: 100%;
            background: #FDFEFF;
            color: #0D1A22;

            @media (width <= 768px) {
                top: 100px;
            }
            
            @media (width > 768px) {
                width: 64px;
                height: 64px;
            }

            svg {
                max-height: 24px;

                @media (width > 768px) {
                    max-height: 32px;
                }
            }
        }
    }
}