*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
/* hero section */
#hero{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/360_F_254920579_xOIyVqIWxgUi0fSQ8FwBC95YlIVZpuCd_main3.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(50%);

} 
#hero_content{
    position: absolute;
}
#hero_content h1 {
    color: #fff;
    font-size: 2.8rem;
    text-shadow: 2px 2px 2px #000;
}
#hero_content h2{
    color: #fff;
    font-size: 2.8rem;
    font-family: cursive;
    margin-top: 1rem;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 2px #000

}
#hero_content a{
    color: #fff;
    padding: 3px 20px 3px 20px;
    border: 1px solid orange;
    background: rgb(0, 0, 0.6);
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 25px;
}hero_content a:hover{
    background: navy;
}
/* ----------------------------------------- */
/* header section */
#header{
    position: absolute;
    top: 0;
    width: 100vw;
    height: 70px;
    line-height: 70px;

}
#navbar h1{
    color: orange;
    font-size: 1.8rem;
    text-shadow: 2px 2px 2px #000;
    font-family: cursive;
    

}
#navbar{
    display: flex;
    justify-content: space-around;
    background: rgb(0, 0, 0, 0.5);
}
#navbar ul{
    display: flex;
}

#navbar ul li{
    list-style: none;
    padding: 3px 15px 3px 15px;

}
#navbar ul li:hover,#phone a:hover,#mobile_Menu ul li:hover{
    background: orange;
    cursor: pointer
    ;
}
#navbar ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
}
#phone a{
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 3px 15px 3px 15px;
    border: 1px solid orange;
}
#mobile_Menu{
    display: none;
    height: 40px;
    line-height: 40px;
    background-color: magenta;


}
#mobile_Menu ul{
    display: flex;
    justify-content: center;
}
#mobile_Menu ul li{
    list-style: none;
    padding: 0 5px 0 5px ;
}
#mobile_Menu ul li a{
    text-decoration: none;
    color: #fff;
}




/* menu section */
#menu{
    padding: 25px 0 25px 0;

}
#section{
    padding: 25px 0 25px 0;
    text-align: center;
    font-size: 2rem;
    font-family: verdana;

}




#menu_row{
    display: flex;
    padding: 0 100px 0 100px;
    
}
#menu_col{
    box-shadow: 2px 2px 2px #bbb;
    border: 1px solid #bbb;
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    flex: 1;
}
#menu_col h2{
    background-color: red;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-family: cursive;
}
#image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 5px;
}
/* about section */
#about{
    padding: 25px 0 25px 0;

}
#about_row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0  100px 0 100px;
}
.about_col{
    flex: 1;
}
#about_img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: auto;
}
#about_img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: fill;
}
.about_col h1{
    text-align: center;
    font-family: cursive;

}
.about_col p{
    text-align: justify;
    font-weight: bold;

}
#contact{
    padding: 25px 0 25px 0;

}
#contact_row{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px 0 100px;
    flex-wrap: wrap;
}
.contact_col{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.contact_col p {
    font-weight: bold;
    color: #292929;
}
.contact_col p a{
    text-decoration: none;
    color: #292929;
}
#social a{
    color: magenta;
    margin: 3px;
}
.contact_col form{
    display: flex;
    flex-direction: column;
    background-color: magenta;
    width: 70%;
    padding: 20px 40px 20px 20px;

}
.contact_col form h2{
    text-align: center;
    font-family: cursive;
}
.contact_col form input{
    width: 100%;
    height: 17pt;
    padding: 5px;
    margin: 5px;
}
.contact_col form textarea{
    width: 100%;
    padding: 5px;
    margin: 5px;
}
.contact_col form button{
    margin: auto;
    padding: 10px;
    color: #fff;
    background-color: orange;
    border: 1px solid orange;
}
@media screen and (max-width : 768px){
    #header{
        position: absolute;
    }
    #mobile_Menu{
        display: block;
    
    }
    #navbar ul{
        display: none;
    }
    html{
        font-size: 95%;

    }
    #menu_row,#about_row,#contact_row{
        flex-wrap: wrap;
        padding: 0 10px 0 10px;
    }
}
@media screen and (max-width : 360px){
    html{
        font-size: 70%;
    }
    #about_img{
        width: 220px;
        height: 220px;
        
    }

}
/* footer  */
#footer{
    background-color: #292929;
    padding: 20px;
    position: relative;
}
#footer h5{
    text-align: center;
    color: orange;
}
#footer h5 a{
    color: #fff;
    text-decoration: none;
}
#top{
    position: absolute;
    bottom: 12px;
    right: 12px;
}
#top a{
    color: #fff;
    font-size: 1.5rem;

}