*{
    margin: 0%;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    background: url("../images/background3.png") repeat;
}
.banner{
    width: 100%;
    /* margin: auto 5%; */

    height: 70vh;
    /* padding:1% 10%; */
    /* display: flex;
    justify-content: center; */

    /* background: url("../images/banner.jpeg") cover no-repeat; */
    /* position: absolute;
    top: 0; */
    /* background-image: linear-gradient(rgba(196, 208, 221, 0.2),rgba(200, 200, 212, 0.51)); */
}
.banner img{
    height: 100%;
    width: 100%;
    border-radius: 10px;

    /* object-fit: contain;
    object-position: top; */
}
.card_container{
    margin: 1% 7%;
    
}
.c_card{
    background-color: #2A2F32;
    margin: 2% 4%;
    box-shadow: 0 10px 20px rgba(77, 77, 255, 0.5);
}
.c_card h5{
    color: #fff!important;
}


.c_card:hover{
    transform:scale(1.1);
    transition: all .5s ease-in-out;
    /* background-color:aliceblue; */
    box-shadow: 0 30px 40px rgba(77, 77, 255, 0.5);
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
   .banner{

    height: 39vh;
       
   } 
   .card_container{
    margin: -9% 2%;
    
}
}