.topNews {
    padding: 30px 0;
}
.topNewsWpr {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.topNewsWpr .newsBox {
    padding: 0 15px;
    width: 70.4%;
}
.topNewsBox {
    padding: 0 15px;
    width: 29.6%;
}
.topNewsWpr .newsBox .box {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 518px;
}
.topNewsWpr .newsBox .box a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 19.12%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}
.topNewsWpr .newsBox .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.topNewsWpr .newsBox .box:hover img {
    transform: scale(1.1);
}
.topNewsWpr .newsBox .box .text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 30px;
    z-index: 1;
    color: var(--light);
}
.topNewsWpr .newsBox .box .text h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 10px;
    transition: all 0.4s;
    color:#fff;
}
.topNewsWpr .newsBox .box:hover .text h4 {
    opacity: 0.7;
}
.topNewsBox .box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}
.topTitle {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topTitle .title {
    margin-bottom: 0;
}
.topTitle a {
    font-size: 16px;
    font-weight: 500;
    color: #316540;
    text-decoration: underline;
}
.topTitle a:hover {
    color: var(--dark);
}
.topNewsBox .newsList {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 10px;
}
.topNewsBox .newsList .list {
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.topNewsBox .newsList .list:hover {
    background: rgb(69 141 90 / 13%);
}
.topNewsBox .newsList .list img {
    width: 110px;
    min-width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}
.topNewsBox .newsList .list h6 {
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
    color: var(--dark);
    margin-bottom: 0;
}




.CategorysSidebar {
    padding-top: 30px;
    padding-bottom: 80px;
}

.Categorylist li {
    margin-bottom: 4px;
}
.Categorylist li:last-child {
    margin-bottom: 0;
}
.Categorylist li a {
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.Categorylist li a:hover {
    background: #F0F6F2;
}
.Categorylist li a img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #F0F6F2;
    border-radius: 10px;
    transition: all 0.4s;
}
.Categorylist li a:hover img {
    background: var(--light);
}
.Categorylist li a h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: var(--dark);
    margin-bottom: 0;
}




.topVideoSection {
    padding-top: 80px;
    padding-bottom: 80px;
}
.topVideoWpr {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5,1fr);
}
.topVideoWpr .box {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    height: 390px;
    overflow: hidden;
}
.topVideoWpr .box a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 19.12%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}
.topVideoWpr .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.topVideoWpr .box:hover img {
    transform: scale(1.1);
}
.topVideoWpr .box .text {
    position: absolute;
    z-index: 1;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 16px;
    color: var(--light);
}
.topVideoWpr .box .text h6 {
    font-size: 12px;
    line-height: 130%;
    font-weight: 400;
    color: var(--light);
    opacity: 0.7;
    margin-bottom: 6px;
    font-family: var(--fontEN);
}
.topVideoWpr .box .text h2 {
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0;
    transition: all 0.4s;
}
.topVideoWpr .box:hover h2 {
    opacity: 0.7;
}
.videoIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--light);
    border-radius: 50px;
    position: absolute;
    left: 0;
    right: 0;
    top: 130px;
    margin: auto;
    z-index: 1;
    transition: all 0.4s;
}
.topVideoWpr .box:hover .videoIcon {
    background: var(--primary);
}
@media (max-width:991px) {
    .topNews {
        padding: 16px 0;
    }
    .topNewsWpr {
        margin: 0 -8px;
    }
    .topNewsWpr .newsBox {
        padding: 0 8px;
        width: 60%;
    }
    .topNewsWpr .newsBox .box {
        border-radius: 10px;
        height: 320px;
    }
    .topNewsWpr .newsBox .box .text {
        bottom: 0;
        margin: 18px 18px 34px;
    }
    .topNewsWpr .newsBox .box .text h4 {
        font-size: 16px;
    }
    .topNewsBox {
        padding: 0 8px;
        width: 40%;
    }
    .topNewsBox .box {
        border-radius: 10px;
    }
    .topTitle {
        padding: 12px;
    }
    .topTitle a {
        font-size: 14px;
    }
    .topNewsWpr .newsList {
        padding: 6px;
    }
    .topNewsWpr .newsList .list {
        padding: 8px;
        border-radius: 8px;
        gap: 6px;
    }
    .topNewsWpr .newsList .list img {
        width: 90px;
        min-width: 90px;
        height: 60px;
        border-radius: 4px;
    }
    .topNewsWpr .newsList .list h6 {
        font-size: 12px;
    }
    .CategorysSidebar {
        padding-top: 16px;
        padding-bottom: 60px;
    }
    .Categorylist li a {
        padding: 5px;
        border-radius: 8px;
        gap: 8px;
    }
    .Categorylist li a img {
        width: 40px;
        min-width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 6px;
    }
    .Categorylist li a h6 {
        font-size: 14px;
    }
    .topVideoSection {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .topVideoWpr {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(4,1fr);
    }
    .topVideoWpr .box {
        border-radius: 6px;
        height: 240px;
    }
    .videoIcon {
        width: 34px;
        height: 34px;
        top: 70px;
    }
    .topVideoWpr .box .text {
        margin: 10px;
    }
    .topVideoWpr .box .text h6 {
        font-size: 10px;
    }
    .topVideoWpr .box .text h2 {
        font-size: 13px;
    }
}

@media (max-width:767px) {
    .topNews {
        padding: 20px 0;
    }
    .topNewsWpr {
        margin: 0 -8px;
    }
    .topNewsWpr .newsBox {
        width: 100%;
        margin-bottom: 20px;
    }
    .topNewsBox {
        width: 100%;
    }
    .CategorysSidebar {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    ul.Categorylist {
        margin-bottom: 20px;
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 6px;
        padding-bottom: 2px;
        overflow-x: auto;
    }
    ul.Categorylist::-webkit-scrollbar {
        height: 2px;
    }
    .topVideoSection {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .topVideoWpr {
        gap: 20px;
        grid-template-columns: repeat(2,1fr);
    }
    .topVideoWpr .box .text h2 {
        font-size: 12px;
    }
    .topNewsWpr .newsBox .box .text h4 {
        font-size: 14px;
    }
}