/* Carousel Banner Block Styles */
.carousel-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: var(--wp--preset--font-family--montserrat);
}
.carousel-banner-slide {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.carousel-banner-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
    margin: 0 auto;
    color: var(--wp--preset--color--slate);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: inherit;
}
/* .carousel-banner-heading {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: var(--wp--preset--font-size--large);
}
.carousel-banner-desc {
    font-weight: 400;
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: var(--wp--preset--font-size--normal);
} */
 .carousel-banner-heading h1 {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--wp--preset--color--putty);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}
.carousel-banner-desc p{
    color: var(--wp--preset--color--putty) !important;
}
.swiper-pagination {
    bottom: 10px !important;
}
.swiper-button-prev, .swiper-button-next {
    color: var(--wp--preset--color--stark);
} 

@media screen and (max-width: 1024px) {
.carousel-banner-heading h1 {
    font-size: 2.8rem;
    letter-spacing: 5px;
}
}
@media screen and (max-width: 768px) {
    .carousel-banner-heading h1 {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
}

@media screen and (max-width: 480px) {
    .carousel-banner-heading h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    .carousel-banner-desc p {
    font-size: 16px;
}
}