*{
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    

}
header{
    min-height: 30px;
    width:100%;
    background-color: black;
    position: fixed;
    
}

nav{
    display: flex;
    padding: 1% 1%;
    justify-content: space-between;
    align-items: center;


}

nav img{
    width: 40px;
    
}

.nav-links{
    flex: 1;
    text-align: right;
    
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background:white;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after,
.nav-links ul li.active{
    width: 100%;
}

/* -----------HOME---------- */

.home{
    padding-top: 30vh;
    height: 45vh;
    width: 100%;
    display: flex;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/background.jpg);
    background-position: center;
    background-size: cover;
    
    
}
.text{
    width:100%;
    color: white;
    top: 40%;
    left: 35%;
    text-align: center;

}
.text h1{
    font-size: 80px;
}
.button{
    margin-top: 1.5%;
    display: inline-block;
    color: white;
    padding: 12px 34px;
    text-decoration: none;
    font-size: 13px;
    background: transparent;
    border: 1px solid #fff;
    position: relative;
    cursor: pointer;
}
.button:hover{
    border:1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

/* -----------services---------- */

.service{
    width:80%;
    margin:auto;
    text-align: center;
    padding-top: 100px;

}
.service h1{
    font-size: 40px;
    font-weight: 600;
}
.service p{
    padding-top: 20px;
    font-weight: 300;

}
.row{
    margin-top: 5%;
    display:flex;
    justify-content:space-between;
}

.col{
    flex-basis: 30%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 15%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.3);
}

/* -----------ABOUT---------- */
.about{
    width:80%;
    margin:auto;
    text-align:justify;
    padding-top: 5%;

}
.about h1{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}
.about p{
    
    font-weight: 300;
    padding:10px;
}
.about h3{
    margin-top: 40px;
    font-size: 20px;
}



/* -----------CONTACT US---------- */


.contact{
    width:100%;
    margin:auto;
    text-align:center;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 70px;
    background-color:rgb(31, 30, 30);
    color: #fff;
}

.contact h2{
    font-size: 40px;
}


.contact img{
    width: 120px;
    float: left;
    padding-left: 35%;
    margin-right: 5%;
    padding-top: 50px;
    
    
} 

.contact pre{
    padding-top: 50px;
    font-weight: 300;
    text-align: left;
    font-size: 18px;
}  
















