﻿ .ttl_news {
            font-size: 48px;
			padding: 50px 0 50px 0;
			font-weight:bold;
			color: #000;
        }



 .news_bt_itm a {
    text-decoration: none;
    color: #000;
}


.news_bt_des {
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
   font-size: 14px;
   margin:0;
}

.btn {
    border: 1px solid var(--orange);
    background: var(--orange);
    font-size: 15px;
    color: #fff;
    /* border-radius: 100px; */
    padding: 5px 10px;
    cursor: pointer;
    transition: .5s;
}
.btn:hover {
    opacity:0.5;
    
}
    .btn i {
        font-size: 13px;
        padding-left: 5px;
    }



.content_top{
    width:100%;
}
#wrapper {
    overflow: unset;
}

#content {
    position: relative;
    margin-top: 50px;
}

.content_left {
    width: 70%
}

.content_right {
    width: 25%;
}

.content_banner_txt {
    z-index: 1;
}

.content_banner_ttl {
    color: var(--or);
    font-family: var(--f-title);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.content_banner_des {
    font-family: var(--f-second);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
}

.content_banner_hotline {
    font-size: 36px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-family: var;
    font-weight: 600;
    margin: 0px;
}

.content_banner_btn {
    margin: 20px 0;
}

    .content_banner_btn a {
        background: var(--or);
        padding: 12px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: all 0.5s;
    }

    .content_banner_btn:hover a {
        background: #994718;
    }

.content_banner {
    background: rgba(0, 0, 0, .5);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}



.content_service {
    padding: 24px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    margin-top: 28px;
}

.content_service_ttl {
    font-family: var(--f-title);
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
}

    .content_service_ttl::after {
        content: "";
        position: absolute;
        height: 3px;
        width: 30px;
        background: var(--or);
        bottom: -10px;
        left: 0;
    }

.content_menu_service li, .content_menu_new_service li {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

    .content_menu_service li:last-child, .content_menu_new_service li:last-child {
        border-bottom: none;
    }

    .content_menu_service li a, .content_menu_new_service li a {
        color: #000;
        font-size: 16px;
    }

        .content_menu_service li a:hover, .content_menu_new_service li a:hover {
            color: var(--or);
        }

.news_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px;

}
.news_item a{
    position: relative;
    overflow: hidden;
}
.news_item_img {
    width: 100%;
    height: 400px;
    margin: 0;
}

.news_item .news_ttl_BK {
    position: absolute;
    bottom: 0; /* Gắn vào đáy khung */
    left: 0;
    width: 100%;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8); /* Nền đen mờ */
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    z-index: 5; /* Đảm bảo nằm trên hình ảnh */
    transform: translateY(0); /* Vị trí ban đầu */
    transition: transform 0.3s ease; /* Hiệu ứng chuyển động */
}
.news_item .news_info_BK {
    height: 50%;
    position: relative;
    bottom: 0; /* Bắt đầu từ đáy khung */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Nền đen mờ */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
        
    transition: opacity 0.3s ease, transform 0.3s ease; /* Hiệu ứng chuyển động */
}


.news_item:hover .news_ttl {
    
}
    .news_item:hover .news_info {
    opacity: 1; 
    transform: translateY(0);
}
.news_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.news_txt{opacity:0;}*/


.is-divider {
    position: relative;
    padding: 5px;
}

    .is-divider::after {
        position: absolute;
        content: "";
        height: 2px;
        background: var(--or);
        width: 30px;
        top: 0;
        left: 44%;
    }
.related-news {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}
@media only screen and (max-width: 768px) {
    .news_list {
        grid-template-columns: 1fr;
    }
    
}

@media only screen and (max-width: 460px) {
    

    .btn {
        width: 100%;
    }

    
}