.common_banner{
    background-image: url('../imgs/about_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    animation: banner_common 6s linear;
}
.over_flow_banner{
    overflow: hidden !important;
}
@keyframes banner_common {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
}
/*Section 1*/
.semi_content{
    font-weight: 500;
    font-size: 20px;
}
.circle_tick{
    width: 25px;
    height: 25px;
    background-color: var(--color-second);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 5px;
}
.circle_tick i {
    font-size: 12px;
}

.visionline_height span{
    width: 95%;
}
@media screen and (max-width: 768px){
    .common_banner{
        height: 400px;
    }
    .semi_content{
        font-size: 16px;
    }
    .common_semi_res{
        font-size: 22px;
    }
    .visionline_height li span{
      font-size: 14px;
    }
}
@media screen and (max-width: 568px){
    .common_banner{
        height: 350px;
    }
    .visionline_height li span{
        font-size: 12px;
      }
}
@media screen and (max-width: 412px){
    .common_semi_res{
        font-size: 20px;
    }
}