/* reset element html */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "poppins" , sans-serif;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
/* nav bar header content */

header{
    width: 100%;
    background-color: #e26c52;
    }
nav.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
   
}
nav ul{
    display: flex;
  
    
}
nav ul li {
    padding: 1rem 2rem;
   
}
nav ul li a{
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
}
nav ul li a:hover{
    color: rgba(255, 255, 255, 0.699);
}



nav .logo{
    font-size: 30px;
    padding: 1rem;
    cursor: pointer;
    color: white;
}
nav .hamburger{
    display: none;
    margin-right: 1rem;
    cursor: pointer;

}
nav .hamburger span{
    display: block;
    background-color: white;
    width: 25px;
    height: 4px;
    margin-top: 5px;
}
/* hero section content  */
section{
    background-image: url(../image/bg.png);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
section .content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70%;
    flex-wrap: wrap;
    position: relative;

}
section .content .text-content{
    color: white;
    padding: 2rem;
    max-width: 70%;
    z-index: 2;
    
    
}
section .content .hero{
    position: absolute;
    right: 5%;
    

}
section .content .text-content h1{
    font-size: 40px;
    
}
section .content .text-content p{
    font-size: 1.2rem;
}
section .content .text-content .btn{
    background-color: yellow;
    color: black;
    padding: 0.5rem 2rem;
    box-sizing: border-box;
    width: fit-content;
    border-radius: 50px;
    margin-top: 20px;
    cursor: pointer;
    

}
section .content .text-content .btn:hover{
    background-color: rgba(255, 255, 0, 0.726);
}


/* brek point css  576px, 768px, 992px, and 1200px */
@media screen and (max-width: 576px){
    nav ul{
        display: none;
    }
    nav .logo{
        padding: 0.5rem;
    }
    nav .hamburger{
        display: block;
    }
    section .content .hero{
        position: absolute;
        top: 1%;
        left: 30%;
    
    }
    section .content .text-content{
        position: absolute;
        top: 5%;
        z-index: 2;
    }
    section .content .text-content p{
        font-size: 1rem;
        
    }
    


}
