*{
    font-family: poppins;
    color: #0B0808;
    padding: 0;
    margin: 0;
    background-color: #fbfdfc;    
    list-style: none;
}
/********************************** Refer these websites******************************
https://www.zriadventures.com/
https://www.rapidadventures.lk/ */

/* header starts here*/
.header{
    height: 10vh;
    width: 90vw;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav ul{
    display: flex;  
}
a{
    padding: 0 0.5rem;
    text-decoration: none;
    background: none;
}
.contact{
    display: flex;
    justify-content: flex-end;
}
.nav .btn_contact{
    display: none;
}
.btn_contact{
    background-color: #F6FEF9;
    border: solid;
    border-width: 1px;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}
.material-symbols-outlined{
    cursor: pointer;
    display: none !important;
    font-size: 2rem !important;
}
/* header ends here */

/* hero content starts here */
.main{
    max-height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin:auto;
    gap: 4vw;
    margin-top: 4vh;
    /* border: solid; */
}
.main img{
    width: 35%;
}

h1{
    font-size: 4rem;
    font-weight: 600;
    line-height: 130%;
}
p{
    padding: 1rem 0;
    font-size: 1rem;
    width: 80%;
}
.content{
    width: 45%;
}

.btn_cta{
    background-color: #5efd8b;
    border-radius: 0.25rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 420;
    border:none
}

/* hero content ends here */

@media screen and (max-width: 600px) {
    .hero_image{
       display: none;
    }
}

@media screen and (max-width:768px){
    #hamburger-menu-btn {
        display: inline;
        
    }
    .nav{
        height: 0;
        right: 0;
        left: 0;
        position: absolute;
        top:5.25rem;
        width: 100%;
        position: fixed;
        text-align: center;     
        transition: 0.5s;  
        overflow: hidden;
    }
    .nav.active{
        min-height: 100%;
    }
    .nav ul {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        background-color: none;
        transition: 0.5s; 
        font-size: 2rem;
        opacity: 0;
    }
    .nav.active ul{
        opacity: 1;
    }
    .btn_contact{
        display: none;
        font-size: 1rem;
        margin: 1rem;
    }
    .material-symbols-outlined{
        display:flex !important;
    }
}

@media screen and (max-width:992px){
  
    .main{
        max-height: 80vh;
        width: 90vw;
        flex-direction: column;
        text-align: center;
        margin-top: 4vh;
    }
    .main img{
        width: 45%;
    }
    .content, .content p{
        width: 100%;
    }
    .content h1{
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 120%;
    }

}

@media screen and (max-width:1200px){
    h1{
        font-size: 3rem;
        font-weight: 600;
        line-height: 120%;
    }
}
