*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.logo{
    max-width:130px;
}


.hero-container{
    height:700px;
    width: 100%;
    background-image: url("../assets/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-overlay{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 15%;
}
.hero-text{
    text-align: center;
    color: white;
}
.hero-text h1{
    font-size: 45px;
    font-weight: 600;
}
.hero-text p{
    font-size: 20px;
}
.hero{
    background-image: url("../assets/bg.jpg");
}
.btn1{
    padding: 8px 50px;
    color:white; 
    background-color:rgba(0,0,0,0.1);
    border: 2px solid white;
    border-radius: 20px;
}
.btn2{
    padding: 8px 50px;
    border: 2px solid white;
    border-radius: 20px;
}
.ul li {
    background-color: bisque;
    padding: 0px 15px;
    margin-right: 30px;
    color: black;
    border-radius: 30px;
    padding-bottom: 5px;
}
ul li i{
    font-size: 20px;
}
ul li a{
    color:white;
    text-decoration: none;
    padding-right: 20px;
    
}
.about{
    background-color: black;
    color:white;
    padding: 90px 0px;
}
.service{
    background-color: black;
    color:white;
}
.up-footer{
    background-color: #1b1b1b;
}
.footer{
    background: linear-gradient(135deg, #1b1b1b, #00000096);
    padding-top: 40px;
}
.border{
    border:1px solid gray;
    border-radius: 10px;
}
.card{
    background-image: url("../assets/card.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 50%;
}
@media screen and (max-width:320px) {
    .hero-text h1{
        font-family: 18px;
    }
    .hero-text p{
        font-size: 14px;
        text-align: justify;
        padding:20px;
    }
} 