.topVideoSection {
    padding-top: 80px;
    padding-bottom: 80px;
}
.topVideoWpr {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4,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);
}
ul.Categorylist {
    max-height: 470px;
    overflow: auto;
}
ul.Categorylist::-webkit-scrollbar {
    width: 2px;
}
.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 [class="advBanner"] {
    margin-top: 30px;
}
@media (max-width:991px) {
    .topVideoSection {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .topVideoWpr {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(3,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;
    }
    ul.Categorylist {
        max-height: 400px;
    }
    .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 [class="advBanner"] {
        margin-top: 16px;
    }
}
@media (max-width:767px) {
    .topVideoSection {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .topVideoWpr {
        gap: 20px;
        grid-template-columns: repeat(2,1fr);
    }
    .topVideoWpr .box .text h2 {
        font-size: 12px;
    }
    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 [class="advBanner"] {
        margin-bottom: 16px;
    }
}