* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
}

span{
    color: #ffcc10;
}
h2{
    font-weight: 800;
    font-family: revert;
    text-transform: capitalize;
    margin: 15px 0px;
    line-height: 1.5;
    color: #737373;
    font-size: 36px;
}
h3{
    color: #000;
    font-size: larger;
    padding: 5px;
    font-weight: bolder;
}
body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
}
.contain{
    width: 1180px;
    margin: 0 auto;
}
/*--------Header Area CSS----------*/
#header-area{
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
    background: #6b6b6b;
    padding: 10px 5px;
}
.logo{
    width: 15%;
    float: left;
}
.logo img {
    width: 100%;
    height: 40px;
}
.main-menu{
    width: 85%;
    float: right;
    margin-top: 10px;
}
.main-menu ul{
    float: right;
}

.main-menu ul li{
   float: left;
   list-style-type: none; 

}
.main-menu ul li a{
    text-decoration: none;
    margin: 0 15px;
    text-transform: uppercase;
    display: inline-block;
    font-size: 18px;
    color: #fff;
}
.main-menu ul li a:hover{
    color: #FEB33E;
    border-bottom: 1px solid #fff;
}
/*--------Slider Area CSS----------*/
.slider-area{
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
    padding: 10px 5px;
}
.slider-content{
    width: 55%;
    float: left;
    margin-top: 60px;
}
.slider-content p{
    color: #000;
    font-size: 16px;
    margin: 15px 0px;
    line-height: 1.8;
    font-family: Verdana;
}
.slider-content a{
    color: #000;
    padding: 12px 15px;
    border-radius: 20px;
    box-shadow: 10px 5px 10px #a07373;
    margin: 15px 0px;
    display: inline-block;
    background-image: linear-gradient(#c59f18, #ffcc10);
    font-size: 15px;
}
.slider-content a:hover{
    color: #fff;
    background: #000;
}
.slider-photo{
    width: 45%;
    float: right;
}
.slider-photo img{
    height: 440px;
    float: right;
    width: 90%;
}
/*--------About Me Area CSS----------*/
.about-me{
    background: url(images/shapes/7.png);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 10px 5px;
    width: 100%;
    overflow: hidden;
}
.about-me-photo{
    float: left;
    display: block;
    width: 40%;
}
.about-me-photo img{
    float: left;
    width: 60%;
    max-height: 410px;
    margin-top: 38px;
}
.about-me-content{
    width: 60%;
    float: right;
    margin-top: 40px;
}
.about-me-content p{
    color: #353535;
    font-family: cursive;
    line-height: 2;
    margin: 25px 0px;
    display: inline-block;
}
.about-me-content a{
    color: #000;
    padding: 12px 15px;
    border-radius: 20px;
    box-shadow: 10px 5px 10px #a07373;
    margin: 20px 0px;
    display: inline-block;
    background-image: linear-gradient(#c59f18, #ffcc10);
    font-size: 15px;
}
.about-me-content a:hover{
    color: #fff;
    background: #000;
}

/*--------My Receipe Area CSS----------*/
.menu-items{

}
.menu-title{
    text-align: center;
    margin: 19px 5px;
}
.menu-title p{
    color: #353535;
    line-height: 2;
    display: inline-block;
    font-family: Verdana;
    text-align: center;
}
.single-items-list{
    width: 100%;
    display: inline-flex;
    align-content: space-around;
}
.single-item{
    width: 31%;
    float: left;
    padding: 10px;
    box-shadow: 5px 5px 5px #ab9f95;
    border-radius: 20px;
}
.single-item img{
    height: 260px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.single-item p{
    font-size: 14px;
    line-height: 2;
    display: inline-block;
    padding: 10px;
    font-family: Verdana;
}
/*--------Fan page Area CSS----------*/
.all-fan-page{
    width: 100%;
    min-height: 100px;
    border-radius: 10px;
    background: #fff;
    padding: 10px 10px;
    margin-top: 80px;
    box-shadow: 5px 5px 20px #4e4e4e;
}
.single-page{
    width: 33%;
    float: left;
    margin-top: 25px;
    text-align: center;
}
.single-page p{
    color: #000;
    font-size: 16px;
    padding: 10px;
    display: inline-block;
    font-family: cursive;
}
/*--------Reservation Area CSS----------*/
.reservation{
    margin-top: 50px;
}
.reservation-content{
    width: 100%;
    background: #fffefe;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    padding: 10px 10px;
    box-shadow: 1px 1px 15px #4e4e4e;
}
.image{
    width: 50%;
    float: left;
    display: flex;
}
.image img{
    width: 80%;
    min-height: 370px;
}
.reservation-form{
    width: 50%;
    float: right;
    display: flex;
    min-height: 370px;
}
.inputBox input[type=text] {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 5px 10px;
  }
  .inputBox input[type=email] {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 5px 10px;
  }
  .inputBox input[type=number] {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 5px 10px;
  }
  textarea {
    border: 1px solid #ccc;
    padding: 5px 10px;
    width:100%;
    resize: none;
    display: block;
  }
  .btn{
    color: #000;
    display: block;
    padding: 10px;
    margin-top: 15px;
    background: #ccc;
    cursor: pointer;
 }
 .btn:hover{
    color: #fff;
    background: #000;
}
 /*--------Footer Area CSS----------*/
 .footer-area{
    width: 100%;
    margin: 15px 0px 0px;
    overflow: hidden;
    padding: 10px 5px;
    background: #000;
    text-align: center;
}
.footer h2{
   font-size: 20px;
}
.footer .Txtcolor{
    color: #ccc;
    margin-bottom: 0px;
}
.footer p{
    color: #fff;
    font-size: 14px;
    line-height: 2;
    display: inline-block;
    padding: 3px 0px 15px 0px;
    font-family: Verdana;
}