
.mybanner{
    height: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size:100% auto;
    background-image: url("/static/0000.png");
}
.logos{
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-gap: 14px;
}
.logos li{
    background: #fff;
    text-align: center;
}
.logos li img{
    height: 60px;

}
.cases_view{
    margin-top: 20px;
}
.cases_view .scllor{
    display: grid;
    grid-template-columns:repeat(6,1fr);
    grid-gap: 14px;

}
.cases_view .scllor ul{
    position: relative;
    color: #fff;
    background: #333;

}
.cases_view .scllor ul img{
    width: 100%;
}
.cases_view .scllor ul li{
    padding: 10px;
}
.cases_view .scllor ul li.b{
    font-size: 16px;
    font-weight: bold;
    font-family: Arial;
}
.cases_view .scllor ul li.logo{
    position: absolute;
    top: 20px;
    width: 50px;

}
.cases_view .scllor ul li.logo img{
    width: 100%;
}
.about_view{
    border-top:solid 1px #333;
    margin-top: 20px;
}
.about_view ul{
    margin-top: 20px;
    display: grid;
    grid-template-columns:repeat(4,1fr);
    grid-gap: 14px;
}
.about_view ul a{
    color: #f3f3f3;
    padding: 10px;
}
.about_view ul a:hover{
    background: #333;
}
.about_view ul a h3{
    font-family: Poppins-SemiBold;
    font-size: 18px;
}
.about_view ul a li{
    padding: 14px 0px;
}
.about_view ul a span{
    display: inline-block;
    background: #333;
    color: #999;
    padding: 4px 10px;
}
@media screen and (max-width:800px) {
    .mybanner{
        height: 200px;

    }
    .logos {
        grid-template-columns: repeat(3, 1fr);
    }
    .cases_view .scllor{
        grid-template-columns: 1fr 1fr;
    }
    .about_view ul{
        grid-template-columns: 1fr;
    }

}