.carousel-container{
    margin-top:60px;
    overflow: hidden;
    z-index: 0;
    position: sticky;
    /* margin-bottom: 130px; */
}
.carousel-pagination-current {
    font-weight: bold;
}

.carousel-pagination-total {
    color: #888888;
}

.carousel-pagination {
    position: static !important;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
}
.carousel-card {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 24px;
    margin-bottom: 20px;
    flex-direction: row;
    background-color: #f7f7f7;
    max-height: 450px;
}

.carouser-card-container{
    padding-right: 23px;
}

.carousel-card-left {
    width: 50%;
    margin-right: 20px;
}

.carousel-card-left img {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel-card-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;

    padding-left: 56px;
    padding-bottom: 24px;
    padding-right: 23px;
    padding-top: 56px;
}

.carousel-card-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-top: 16px;
    font-size: 16px;

    

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-buttons {
    display: flex;
    justify-content: space-between;
}

.carousel-prev, .carousel-next {
    background-color: #0D635A;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    padding:0 0 3px 0 !important
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: #1f9c60;
}

.carousel-card-image{
    width: 100%;
    max-height: 450px;
    min-height: 450px;
    object-fit: cover;
}

.carousel-card-sliderheader{
    color: #0D635A;
    font-size: 36px;
}

.carousel-card-read-more{
    color: white;
    background-color: #0D635A;
    display: inline-block;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;

    padding-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 24px;
}
.carousel-card-read-more:hover {
background-color: #1f9c60;
}


@media (max-width: 992px) { /*992 768*/

    .carousel-card {
        flex-direction: column;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        background-color: #f7f7f7;
        max-height: unset;
        border: none;
        border-radius: 24px;
    }

    .carousel-card-left {
        width: 100%;
        margin-right: 0px;

    }

    .carousel-card-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-self: stretch;
        width: unset;
        padding-bottom: 24px;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 24px;
    }

    .carousel-card-buttons {
        margin-top: 53px;
        display: flex;
        justify-content: space-between;
    }

    .carousel-prev, .carousel-next {
        background-color: #0D635A;
        color: white;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        padding:0 0 3px 0 !important;
        margin: 0 0px;
    }

    .carousel-card-image {
        max-height: 250px;
        min-height: 250px;
        width: 100%;
    }

}