 .section_carousel__item img{
     width:100%;
 }
 .section_carousel{
     margin-top:50px;
 } 
 body,h1,h2,h3,h4,h5,h6,p,span,strong,li,a,
 .google_font{
     font-family: "Times New Roman", Times, serif !important;
 } 
 .section_carousel__item {
    position: relative;
    overflow: hidden;
}

.carousel_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(182, 146, 71, 0.9); /* tone màu vàng nâu */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.section_carousel__item:hover .carousel_overlay {
    opacity: 1;
}

.carousel_overlay__content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
}

.carousel_overlay_
