.header .shape{
    transform: rotate(180deg) translate( 0 , 20%);
    width: 450px;
}

.list .shape{
    right: 15%;
    bottom:0;
    transform: rotate(35deg);
}
@keyframes zoom2{
    0%{
        width: 80px;
    }
    50%{
        width: 100px;
    }
    100%{
        width: 80px;
    }
}
.animation-custom1{
    animation:zoom2 10s infinite;
}
.animation-custom2{
    animation:turn 10s linear infinite;
}
.news .news-box{
    position:relative;
    overflow: hidden;
}
.news .news-box .title{
    min-height: 60px;
}
.news .news-box i{
    display: flex;
    position: absolute;
    right: -2rem;
}
.news .news-box:hover i{
    right: 0.1rem;
    transition: 0.5s;
}
.news .news-box:hover .detail{

    padding-right: 1.6rem;
    transition: 0.5s;
}
.news .news-box a:hover .title{
    color: var(--color-2);
    transition: 0.5s;
}
.news .news-box img{
    border-radius: 25px;
}
@media (max-width:576px){
    .header .shape{
        width: 200px;
    }
}
@media (min-width:576px) and (max-width:768px){
    .header .shape{
        width: 340px;
    }
    .header .cta{
        width: 170px;
    }
}
@media (min-width:768px) and (max-width:992px){
    .header .shape{
        width: 340px;
    }
    .header .cta{
        width: 170px;
    }
}
@media (min-width:992px) and (max-width:1200px){

}
@media (min-width:1200px) and (max-width:1400px){

}
@media (min-width:1400px){

}

@media (max-width:992px){
    .list .shape{
        left: 5%;
        bottom: 30%;
        right: unset;
    }
    .news .news-box:hover i{
        right: 1.2rem;
    }

}
