/* universal */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* common */
.container{
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.section img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
img{
    max-width: 100%;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: black;
}
/* banner */
.banner{
    /* background: linear-gradient(rgba(240, 185, 67, 0.2), rgba(157, 241, 117, 0.2)),url("/img/bannerimg.webp")no-repeat; */
    background: linear-gradient(rgba(34, 35, 34, 0.5), rgba(246, 178, 33, 0.1)),url("../img/bannerimg.webp")no-repeat;
    background-position: center;
    background-size: cover;
    height: 800px;
    color: white;
}
.banner img{
    width: 50%;
}
/* navbar */
.logo{
    display: block;
    width: 60px;
    /* margin-right: 300px; */
}
.footer-logo{
    display: block;
    width: 100px;
}
/* about */
.about{
    background: linear-gradient(rgba(244, 197, 46, 0.5), rgba(187, 5, 72, 0.7));
}
/* card */
.card-sec{
    /* background: linear-gradient(rgba(244, 86, 144, 0.8),rgba(244, 197, 46, 0.5)); */
    background: linear-gradient(rgba(244, 86, 144, 0.7),rgba(5, 2, 103, 0.9));
} 