.home-hero {

    margin: 0 calc(-50vw + 50%);
    min-height: 100vh;
    max-width: 100vw;
    width: 100vw;

    &.default-margin {
        margin-top: 120px;
    }
    
    .container {
        border-radius: 15px;
        padding: 30px 30px 0px;
    }

    .home-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-hero-sub-heading {
        font-size: 1rem;
        font-weight: 500;
        color: #fff !important;
        background-color: var(--wb-color-blue-dark);
        padding: 0.5rem 1rem;
        border-radius: 10px;
    }

    .home-hero-testimonials {
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }

    .home-hero-testimonial > img {
        max-height: 32px;
    }

    .banner {
        font-weight: 400;
        * {
            font-weight: 400;
        }
        .info, .info * {
            font-size: 1.250rem;
        }
    }

    .home-hero-main-heading {
        font-size: 3.5rem !important;
    }

    .home-illustration {
        position: absolute;
        bottom: 0;
        height: 100%;
        img {
            height: 100%;
        }
    }

}

.brand-swiper {
    .swiper-slide {
        text-align: center;
        .home-hero-brand-item {
            max-height: 60px;
        }
    }
}

@media screen and (max-width: 1023px) {
    .home-hero {
        &.default-margin {
            margin-block: 20px !important;
        }
    }
}
@media screen and (max-width: 991px) {
    .home-hero {
        .container {
            padding-bottom: 30px;
        }
        .brand-container {
            margin-top: 40px !important;
        }
    }
}
@media screen and (max-width: 768px) {
    .home-hero {
        .home-hero-testimonial > img {
            max-height: 48px;
            max-width: unset;
        }
        .brand-container {
            margin-top: 0px !important;
        }
    }
}
@media screen and (max-width: 575px) {
    .home-hero {
        /*margin-inline: 20px;*/
    }
}