.carousel .carousel-caption {
    bottom: 32px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
}

.carousel.radius .carousel-inner {
    border-radius: var(--border_radius);
}

.carousel .carousel-caption h1 {
    margin-bottom: 8px;
    color: var(--white) !important;
}

.carousel .carousel-caption h1 span {
    font-weight: 900;
    font-style: italic;
    font-family: var(--secondary_font);
    color: var(--secondary_color);
    font-style: normal;
}

.carousel .carousel-caption h1:after {
    height: 5px;
    display: block;
    width: 40%;
    background-color: var(--gray-900);
    width: 100%;
    position: absolute;
    bottom: 0;
}

.carousel .carousel-caption h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--primary_font);
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: 0.3px;
    line-height: 150%;
}

.carousel .carousel-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh);
    position: relative;
}

.carousel.radius .carousel-item {
    height: calc(100vh - 32px);
}

.welcome .carousel-item {
    height: 600px
}

@media(max-width: 425px) {
    .carousel .carousel-item {
        height: 60vh;
    }

    .carousel .carousel-caption h1 {
        font-size: 28px !important;
        line-height: 110% !important;
        margin-bottom: 8px !important;
    }

    .carousel .carousel-caption h6 {
        font-size: 14px !important;
        line-height: 130% !important;
    }

    .carousel .carousel-caption .btn {
        padding: 8px 24px !important;
        font-size: 14px !important;
    }
}

@media(max-width: 768px) {
    .carousel .carousel-item {
        height: 40vh;
    }
}

@media (max-width: 1024px) {
    .carousel .carousel-item {
        height: 50vh !important;
    }
    
    .carousel .carousel-caption {
        bottom: 20px;
    }

    .carousel .carousel-caption h1  {
        font-size: 35px;
        line-height: 100%;
        margin-bottom: 10px;
    }

    .carousel .carousel-caption h6 {
        margin-bottom: 7px;
        line-height: 15px;
        font-size: 15px;
    }

    .carousel .carousel-caption .btn-sm {
        padding: 10px 15px;
        font-size: 12px;
        line-height: 15px;
        font-weight: 700;
    }
}
