.carousel-container {
    background-color: #2b2b2b;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-title {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Karma';
    margin-top: 45px;
    font-size: 1.875rem !important;
    line-height: 2.1875rem !important;
    font-weight: 600 !important;
}

.carousel-header-buttons {
    display: flex;
    margin-top: 20px;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
    transform: translateY(-50%);
}

.carousel-btn {
    color: #fff;
    width: 20%;
    height: 35px;
    padding-top: 2%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:active,
.carousel-btn:focus {
    border: 1px solid #fff !important;
    outline: none;
    border-radius: 3px;

}

.carousel-prev,
.carousel-next {
    transition: margin 0.3s ease, background-color 0.3s ease;
}

.carousel-prev:hover {
    background-color: #2b2b2b !important;
    margin-left: -5px;
}

.carousel-next:hover {
    background-color: #2b2b2b !important;
    margin-left: 5px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 50px;
    padding: 0 10px;
}

.carousel-slide {
    flex-shrink: 0;
    background: transparent;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
}

.carousel-slide figure {
    margin: 0 !important;
    padding: 0 !important;
    display: table;
    table-layout: fixed;
}

.carousel-slide figcaption {
    display: table-caption;
    caption-side: bottom;
    margin: 0;
    padding: 0;
}

.carousel-slide img {
    width: auto !important;
    max-width: 100% !important;
    height: 350px !important;
    object-fit: contain !important;
    display: block !important;
    box-sizing: border-box;
}

.arrow-left-line::before{
    content: "\0027F5" !important;
    font-size: 2rem !important;
    background: transparent !important;
    margin-top: -30px;
    /* text-align: center; */
    margin-left: -10px;
}

.arrow-right-line::before{
    content: "\0027F6" !important;
        font-size: 2rem !important;
    background: transparent !important;
    margin-top: -30px;
}

.carousel-caption {
    color: #fff;
    padding: 20px;
    font-size: 14px;
    min-height: 80px;
    box-sizing: border-box;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: left;
    display: block;
}

.carousel-caption.fr-text--center {
    text-align: left !important;
}

.carousel-caption p {
    margin: 0 0 8px 0;
    line-height: 1.9375rem !important;
    font-family: 'Karma' !important;
    font-size: 1.5625rem !important;
    font-weight: 300 !important;
    color: #fff;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    width: 100%;
    max-width: 100%;
    display: block;
}

.carousel-credit, .carousel-description {
    font-size: 0.75rem !important;
    opacity: 1.6;
    font-family: 'Montserrat', Arial, sans-serif;
    display: block;
    margin-top: 5px;
    color: #ffffff !important;
    font-weight: 300;
    line-height: 1.5625rem;
}

@media (max-width: 768px) {
    

    .carousel-container {
        padding: 40px 15px;
    }

    .carousel-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .carousel-slide {
        min-width: calc(100% - 20px);
    }

    .carousel-slide img {
        height: 250px;
    }

    .carousel-navigation {
        padding: 0 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 1059px) {
    .carousel-title{
        text-align: start !important;
        font-size: 1.5625rem !important;
        font-weight: 600 !important;
        line-height: 2.1875rem !important;
        
    }
    .carousel-caption p{
        font-size:  1.25rem !important;
        font-weight: 300 !important;
        line-height: 1.5625rem !important;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(50% - 10px);
    }

    .carousel-slide img {
        height: 300px;
    }
}