.our-news .section-header{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.our-news .section-header h2{
    margin-bottom: unset;
}
.our-news .our-news-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.our-news .our-news-wrapper .news-box{
    width: calc(33.33% - 16px);
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(46, 51, 90, 0) 0%, rgba(28, 27, 51, 0.1) 100%),radial-gradient(146.13% 118.42% at 50% -15.5%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 99.59%);
    border: 1px solid #FFFFFF1F;
    box-shadow: 0px 0px 100px 0px rgba(204, 215, 255, 0.15) inset;
}
.our-news .our-news-wrapper .news-box:before{
    background: url(../../assets/images/footer-overlay.png);
    background-repeat: repeat;
    opacity: 0.2;
}
.our-news .news-box .news-img{
    overflow: hidden;
    margin-bottom: 24px;
    padding-top:63%;
}
.our-news .news-box .news-img img{
    transition: all 0.5s ease;
}
.our-news .news-box:hover .news-img img{
    transform: scale(1.15);
}
.our-news .news-box .new-info h6{
    max-width: 346px;
}
.our-news .news-box .news-inner-wrap{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 19px;
    margin-top: 19px;
}
.our-news .news-box .news-inner-wrap .name span{
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: var(--white-nested);
    letter-spacing: 0;
    display: block;
}
.our-news .news-box:hover .btn-light .icon .state {
    left: 25px;
    opacity: 0;
}
.our-news .news-box:hover .btn-light .icon .hover {
    left: 0;
    opacity: 1;
}
@media (max-width: 1280px) {
    .our-news .our-news-wrapper .news-box {
        padding: 24px;
    }
}
@media (max-width: 991px) {
    .our-news .our-news-wrapper .news-box {
        width: 100%;
        height: 100%;
    }
    .our-news .our-news-wrapper .slick-prev.slick-arrow {
        left: calc(50% - 70px);
    }
    .our-news .our-news-wrapper .slick-next.slick-arrow {
        right: calc(50% - 70px);
    }
    .our-news .our-news-wrapper .slick-arrow{
        bottom: 0px;
    }    
    .our-news .our-news-wrapper .slick-track{
        display: flex !important;
        column-gap: 20px;
    }    
    .our-news .our-news-wrapper .slick-list{
        margin-inline: -10px;
    }
    .our-news .our-news-wrapper .slick-slide{
        height: inherit !important;
    }    
    .our-news .our-news-wrapper .slick-slide>div {
        height: 100%;
    }
    .our-news .section-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        align-items: unset;
    }
}