/*General styles*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html{
    font-family: sans-serif;
    font-size: 62.5%;
}

body{
    max-width: 150rem;
    margin: 0 auto;
}

header{
   width: 100%;
   height: 6rem;
}

main{
    width: 100%;
    position: relative;
}

footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Header styles*/
#header_infoWraper{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 6rem;
    padding: 1.5rem 2rem;
    background-color: #262626;
    
}

.header_mobileComponet{
    display: block;
}

.header_768component{
    display: none;
}

.header_1300component{
    display: none;
}

#logo_header{
    width: 13rem;
}

#icon_menu{
    width: 4rem;
}

#icon_closeMenu{
    display: none;
    width: 2rem;
}

header p{
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 3rem;
}

#header_dropDownMenuWraper{
    display: none;
}

#mobileMenu{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30rem;
    position: absolute;
    top: 6rem;
    left: 0;
    z-index: 51;
    background-color: #262626;
    opacity: 0.98;
}

.mobileMenu_item a{
    display: inline-flex;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

/*home main styles*/

.main_image{
    position: relative;
    top: 0;
    width: 100%;
    object-fit: cover;
}

#main_image768p{
    display: block;
    width: 100%;
}

#main_image1300p{
    display: none;
    width: 100%;
}

#main_image1500p{
    display: none;
    width: 100%;
}

.home_section{
    margin-top: 5rem;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.fancy_letter{
    margin-top: 5rem;
    font-size: 4rem;
    color: #E6A322;
    font-family: cursive, serif;
}

#home_h1, .home_titles{
    margin-top: 3rem;
    font-size: 2.6rem;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
}

.home_normalText{
    max-width: 60rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.6rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 2.5rem;
    color: #383838;
}

.star_lineContainer{
    display: flex;
    width: 15rem;
    justify-content: space-between;
    margin-top: 3rem;
    align-items: center;
}

.star_icon{
    width: 1.3rem;
}

.introducing_ourselves_img{
    display: none;
}

#knowUs{
    margin-top: 2.5rem;
    font-size: 1.8rem;
    color: #E6A322;
    font-weight: bold;
    transition: all 0.3s;
}

#knowUs:hover{
    color: #000;
}

#home_slider_container{
    width: 100%;
    height: 25rem;
    margin-top: 10rem;
    overflow: hidden;
}

#sliderImg{
    width: 100%;
}

#popularDishes{
    margin-top: 6rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.popularDish{
    margin-bottom: 5rem;
    width: 100%;
    overflow: hidden;
}

.popularDish img{
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.popularDishes_name{    
    padding-bottom: 1rem;
    text-align: center;
    font-size: 1.7rem;
    color: #E6A322;
    font-weight: bold;
}

#map{
    margin-top: 5rem;
    width: 100%;
    height: 45rem;
}

.home_contact_icon{
    width: 2rem;
    margin: 3rem 0 1rem 0;
}

.home_contact_info{
    font-size: 1.5rem;
}

.mobile_component{
    display: block;
    text-align: center;
}

#logo_footer{
    width: 15rem;
}

.creaditCard_logo{
    width: 5rem;
}

#footer_creditCards{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p{
    max-width: 50rem;
    text-align: center;
    font-size: 1.4rem;
    line-height: 3rem;
    color: #ccc;
}

#accep_cc{
    font-size: 1.6rem;
}

#footer_section_a{
    width: 100%;
    height: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1rem;
    background-color: #262626;
}

#footer_section_b{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #ccc;
    background-color: #262626;
}

#footer_socialMedia{
    width: 30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer_socialMedia a img{
    width: 2rem;
}

#footer_socialMedia {
    padding: 3rem 0;
}

#footer_copyRight
{
    font-size: 1.5rem;
    color: #fff;
}

#footer_copyRight span{
    color: #ff6600;
}

#consult{
    position: absolute;
    top: 0.5rem;
    right: 0;
    border-radius: 2px 0 0 2px;
    background-color: #33B1FF;
    padding: 1rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 1;
}

