.section-insights{
    padding-bottom: 70px;
}

.section-insights .block-title{
    margin-bottom: 30px;
}

.section-insights .block-title .title{
    font-size: 40px;
    color: var(--text_color_two);
}

.list-insights {
    position: relative;
}

.list-insights .left_arrow{
    left: -4%;
    background: #777;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    top: 40%;
    opacity: .2;
    font-size: 50px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.list-insights .left_arrow::before{
    content: "\f104";
    position: absolute;
    top: 35%;
    left: 68%;
}

.list-insights .right_arrow::before{
    content: "\f104";
    position: absolute;
    top: 35%;
    right: 68%;
}

.list-insights .right_arrow{
    right: -4%;
    background: #777;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    top: 40%;
    opacity: .2;
    font-size: 50px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.list-insights .left_arrow:hover, .list-insights .right_arrow:hover{
    opacity: 0.8;
}

.list-insights .item-insights{
    position: relative;
}

.list-insights .item-insights .img-wrap{
    height: 500px;
    margin: 0 20px;
}

.list-insights .item-insights .img-wrap img{
    transition: transform 0.5s ease;
}

.list-insights .item-insights .img-wrap img:hover{
    transform: scale(1.08);
}

.list-insights .item-insights .info{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.list-insights .item-insights .info .title{
    color: var(--text_color_two);
    margin-bottom: 20px;
}

.list-insights .item-insights .info .btn{
    text-align: center;
    display: block;
}

.list-insights .item-insights .info .btn-readmore{
    background-color: #1c355e;
    border-color: #1c355e;
    border-radius: 5px;
    padding: 10px 25px;
    font-size: 18px;
    text-transform: uppercase;
}

