.acknowledgment {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    z-index: 1;
    align-items: center;
    justify-content: center;
    background-color: #FAF6F4 ;
}

#acknowledgmentCarousel {
    display: flex;
}

#acknowledgmentCarouselMobile {
    display: none;
}

.acknowledgment .acknowledgment-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.acknowledgment .acknowledgment-container {

    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    align-items: center;
    padding: 20px;
}

.acknowledgment .acknowledgment-container .acknowledgment-title {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.acknowledgment .acknowledgment-container .acknowledgment-title img {
    width: 100%;
    min-width: 200px;
    max-width: 375px;
}

/* Carousel */
.acknowledgment-pair-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    /* min-width: 960px; */
    justify-content: center;
}

.acknowledgment-pair-container .acknowledgment-item-container {
    display: flex;
    flex-direction: column;
    width: 360px;
    height: 500px;
    /* background-color: #59021B; */
    border-radius: 25px;
    margin: 50px;
}


.acknowledgment-pair-container .acknowledgment-item-container .acknowledgment-item-content {
    display: flex;
    flex-direction: column;
    height: 80%;
    border-radius: 25px;
}


.acknowledgment-pair-container .acknowledgment-item-container .acknowledgment-item-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}


.acknowledgment-pair-container .acknowledgment-item-container .acknowledgment-item-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.acknowledgment-pair-container .acknowledgment-item-container .acknowledgment-item-description {
    display: flex;
    flex-direction: column;
    height: 20%;
    padding: 12px;
    align-items: center;
    justify-content: center;
}

.acknowledgment-pair-container .acknowledgment-item-container .acknowledgment-item-description p {
    font-size: 13px;
}


/* Single carousel for mobile */



/* 

    .acknowledgment-single-container {
        min-width: auto;
    }
    
    .acknowledgment-single-container .acknowledgment-item-container {
        width: 50%;
        height: 250px;
        border-radius: 10px;
        margin: 60px 5px 60px 5px;
    }

*/

.acknowledgment-single-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.acknowledgment-single-container .acknowledgment-item-container {
    display: flex;
    flex-direction: column;
    width: 360px;
    height: 400px;
    /* background-color: #59021B; */
    border-radius: 15px;
    margin: 25px 5px 50px 5px;
}


.acknowledgment-single-container .acknowledgment-item-container .acknowledgment-item-content {
    display: flex;
    flex-direction: column;
    height: 80%;
    border-radius: 15px;
}


.acknowledgment-single-container .acknowledgment-item-container .acknowledgment-item-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}


.acknowledgment-single-container .acknowledgment-item-container .acknowledgment-item-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.acknowledgment-single-container .acknowledgment-item-container .acknowledgment-item-description {
    display: flex;
    flex-direction: column;
    height: 20%;
    min-height: fit-content;
    padding: 12px;
    align-items: center;
    justify-content: center;
}

.acknowledgment-single-container .acknowledgment-item-container .acknowledgment-item-description p {
    font-size: 15px;
}


@media only screen and (max-width: 767px) {

    #acknowledgmentCarousel {
        display: none;
    }

    #acknowledgmentCarouselMobile {
        display: flex;
    }

    .acknowledgment .acknowledgment-container {
        padding: 0px;
    }

    .acknowledgment-single-container .acknowledgment-item-container {
        height: 500px;
    }

}