/* common css part start  */
*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
a:link{
    color: #ffffff;
}
a:visited{
    color: #ffffff;
}
a:active{
    color: cyan;
}
ul li{
    list-style-type: none;
}
.mr-none{
    margin: 0 !important;
}
.clr{
    clear: both;
}

/* common css part end  */

/* preloader css start  */

.preloader{
    position: fixed;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 9;
}
/* .loader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
} */
.loader img {
    width: 100%;
    height: 100%;
}
/* preloader css end  */

/* header part css start  */

.header{
    height: 90px;
    position: fixed;
    z-index: 8;
}
.header-anmn{
    background: #4c4c4c;
    opacity:.7;
}
.header .logo{
    float: left;
}
.nav{
    float: right;
    line-height: 90px;
}
.nav ul li {
    display: inline-block;
    animation: slideLeft 1s forwards;
}
.nav ul li a{
    padding-left: 50px;
    font-family: 'Gentium Book Basic', serif;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
}
.nav ul li a:hover{
    padding-left: 50px;
    font-family: 'Gentium Book Basic', serif;
    font-size: 21px;
    font-weight: 700;
    color: #000000;
    transition: 0.6s ease;
}

/* header part css end  */
/* Banner part css start  */

.banner{
    padding-top: 235px;
    padding-bottom: 135px;
    background-image: url(../img/bannert.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-item{
    text-align: center;
}
.banner-item h2{
    font-family: 'Yeseva One', cursive;
    font-size: 90px;
    font-weight: 400;
    color: #ffffff;
}
.banner-item img{
    padding-top: 35px;
    padding-bottom: 35px;
}
.banner-btn{
    text-align: center;
}
.btn-1{
    background-color: rgba(0, 0, 0, 0.500);
    border: 1px solid #000000;
    padding: 25px 50px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    float: right;
}
.btn-1:hover{
    background-color: rgba(255, 255, 255, 0.300);
    border: 1px solid #d5d0bb;
    transition: 0.6s ease;
}
.btn-2{
    background-color: rgba(255, 255, 255, 0.300);
    border: 1px solid #d5d0bb;
    padding: 25px 50px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    float: left;
}
.btn-2:hover{
    background-color: rgba(0, 0, 0, 0.500);
    border: 1px solid #000000;
    transition: 0.6s ease;
}

/* Banner part css end */

/* Dish Part css start  */

.dish-bg{
    background: url('../img/about-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 80px;
}
.dish-item{
    width: 570px;
    text-align: center;
    float: left;
}
.dish-item h2{
    font-family: 'Yeseva One', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #cc9900;
}
.dish-item img{
    padding-top: 15px;
    padding-bottom: 30px;
}
.dish-item p{
    width: 430px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4c4c4c;
    line-height: 24px;
    margin: auto;
}
.about-img{
    padding-top: 50px;
}
.dish-img img{
    width: 100%;   
}
.dish-img{
    position: relative;
}
.dish-img .img-overlay-1{
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #726c5a;
    opacity: 0;
    transition: 1s ease;
    border-radius: 50%;
}
.dish-img:hover .img-overlay-1{
    opacity: 0.6;
    animation: rotate 1s;
    top: 0;
    right: 0;
    height: 100%;
}
.img-overlay-1 .link{
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.img-overlay-1 .link a{
    color: cyan;
}

/* Dish Part css end  */

/* Igredients part css start  */

.Igredients-bg{
    background-image: url(../img/Igredients--bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}
.Igredients-item{
    background-color: rgba(0, 0, 0, 0.500);
    width: 570px;
    text-align: center;
    padding: 80px;
    float: right;
}
.Igredients-item h2{
    font-family: 'Yeseva One', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
}
.Igredients-item p{
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
}
.Igredients-item img{
    padding-top: 15px;
    padding-bottom: 30px;
}
.Igredients-img{
    padding-top: 75px;
}
.Igredients-img{
    text-align: center;
    display: flex;
}
.Igredients-img img{
    padding-right: 30px;
}
.Igredients-img .is-3{
    padding-right: 0;
}
/* Igredients part css end  */

/* Menu part css start  */

.menu-bg{
    background-image: url(../img/Menu-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}
.menu-left-side{
    width: 50%;
    float: left;
    margin-left: 80px;
}
.menu-left{
    width: 430px;
}
.menu-title{
    text-align: center;
}
.menu-title h2{
    font-family: 'Yeseva One', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #cc9900;
}
.menu-title img{
    padding-top: 15px;
    padding-bottom: 30px;
}
.menu-price{
    border-bottom: 1px solid #e8e7da;
    padding-bottom: 10px;
}
.menu-price h3{
    font-family: 'Yeseva One', cursive;
    font-size: 21px;
    font-weight: 400;
    color: #cc9900;
}
.menu-name{
    width: 50%;
    float: left;
}
.price{
    width: 50%;
    float: right;
}
.menu-price .price h3{
    text-align: right;
}
.menu-text p{
    padding-top: 15px;
    font-family: 'Yeseva One', cursive;
    font-size: 14px;
    font-weight: 400;
    color:#4c4c4c;
    padding-bottom: 35px;
}
.menu-right{
    width:430px;
    float: left;
}

/* Menu part css end  */

/* Review part css start  */

.review-bg{
    background-image: url(../img/reviews-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}
.review-box{
    border: 1px solid #18110f;
    background-color: rgba(0, 0, 0, 0.500);
    width: 770px;
    text-align: center;
    padding: 80px 75px 100px 75px;
    margin: 0 auto;
}
.review-title h2{
    font-family: 'Yeseva One', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
}
.review-title img{
    padding-top: 20px;
    padding-bottom: 30px;
}

.f-l{
    text-align: left;
    font-size: 50px;
    line-height: 45px;
    color: #f2f4f4;
}
.review h3{
    font-family: 'Gentium Book Basic', serif;
    font-size: 25px;
    font-weight: 700;
    color: #dde0df;
    line-height: 45px;
    padding-bottom: 45px;
}
.review p{
    font-family: 'Gentium Book Basic', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Review part css end   */

/* Reservations part css start  */

.Reservations-bg{
    background-image: url(../img/Reservations-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}
.Reservations-img img{
    width: 100%;
}
.Reservations-img img:last-child{
    margin-right: 100px;
}
.Reservations-text{
    text-align: center;
}
.Reservations-text h2{
    font-family: 'Yeseva One', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #cc9900;
}
.Reservations-text p{
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4c4c4c;
    line-height: 24px;
    padding-left: 32px;
    padding-right: 32px;
}
.Reservations-text img{
    padding-top: 15px;
    padding-bottom: 30px;
}
 .img-1{
    position: relative;
    display: block;
}
.img-1 .img-overlay{
    position: absolute;
    bottom: 0;
    left:0;
    right: 100%;
    width: 0;
    height: 100%;
    opacity: 0;
    transition: 1s ease ;
    background: #4c4c4c;
  }

.img-1:hover .img-overlay{
    width: 100%;
    right: 0;
    opacity: 0.9;
}
.img-overlay .link{
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.img-overlay .link a{
    color: #cc9900;
}
.img-2{
    position: relative;
}
.img-2 .img-overlay2{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 100%;
    width: 0;
    height: 100%;
    opacity: 0;
    transition: 1s ease;
    background: #4c4c4c;
}
.img-2:hover .img-overlay2{
    width: 100%;
    left: 0;
    opacity: 0.9;
}
.img-overlay2 .link{
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.img-overlay2 .link a{
    color: #cc9900;
}
 .Reservations-text .rs-desc p{
     padding-top: 20px;
     padding-bottom: 45px;
}
.Reservations-form{
    padding-left: 50px;
    padding-right: 50px;
}
.Reservations-form input{
    margin-bottom: 30px;
    width: 200px;
    border: 1px solid #e6e6e6;
    font-size: 12px;
    height: 35px;
    text-indent: 15px;
}
.Reservations-form input:hover{
    border: 1px solid #C89F2D;
}
.Reservations-form input[type="text"]{
    border: 1px solid #c9a131;
    display: inline-block;
}
.Reservations-form label{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #c9a131;
    display: block;
    padding-bottom: 10px;
}
.rs-form{
    float: left;
    padding-right: 30px;
}
.rs-form-2{
    float: left;
}
.rs-btn{
    text-align: center;
}
.rs-btn a{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    background-color: #c9a131;
    padding: 10px 60px;
}
.rs-btn a:hover{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    background-color: #191919;
    padding: 10px 60px;
    transition: 0.6s ease;
}

/* Reservations part css end  */

/* footer part css start  */

.footer-bg{
    background: #191919;
    padding-top: 60px;
    padding-bottom: 70px;
}
.footer-text{
    text-align: center;
}
.footer-text h2{
    font-family: 'Yeseva One', cursive;
    font-size: 21px;
    font-weight: 400;
    color: #fefefe;
}
.footer-text p{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
}
.footer-text img {
    padding: 20px 0px;
}
.card-icons{
    padding-top: 55px;
    width: 100%;
    text-align: center;
}
.card-icons ul li{
    display: inline-block;
    animation: slideLeft 1s ease;
}
.card-icons ul li i{
    padding-right: 10px;
    color: #ffffff;
}

/* footer part css end  */

/* Back to top css start  */

.back-to-top{
    visibility: hidden;
    background: #726c5a;
    position: fixed;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
    text-align: center;
}
.back-to-top i{
    line-height: 40px;
    color: #ffffff;
    font-size: 20px;
}
.back-to-top:hover{
    background: #cc9900;
    transition: .5s ease;
    border: 1px solid gray;
}

/* Back to top css end  */

/* CSS Animations Start */
@keyframes slideUp{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideDown{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideLeft{
    0%{
        transform: translateX(-1000%);
        opacity: 0;
    }
    80%{
        transform: translateX(50px);
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideRight{
    0%{
        transform: translateX(1000%);
        opacity: 0;
    }
    80%{
        transform: translateX(-50px);
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
/* @keyframes spark{
    0%{
        background-color: #28b8d8;
    }
    50%{
        background-color: #24535e;
    }
    100%{
        background-color: #28d854;
    }
} */

/* CSS Animation end  */

/* css responsive start */

@media screen and (max-width: 576px) {
    .header .nav {
        display: none;
    }
    
    .logo{
        padding-left: 90px;
        width: 100%;
    }
    .banner{
        width: 100%;
        padding-top: 140px;
        padding-bottom: 100px;
    }
    .banner-item{
       margin-top: 50px;
    }
    .banner-item h2{
        font-size: 32px;
    }
    .banner-btn{
        margin-left: 50px;
    }
    .btn-1{
        margin-bottom: 10px;
    }
    .dish-bg{
        width: 100%;
    }
    .dish-item{
        width: 100%;
    }
    .dish-item p{
        width: 100%;
    }
    .review-bg{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .review-box{
        width: 100%;
        padding: 100px 40px 100px 40px;
    }
    .Igredients-bg{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .Igredients-item{
        width: 100%;
        padding: 100px 40px 100px 40px;
    }
    .Igredients-item .Igredients-img{
        flex-direction: column;
    }
    .menu-left-side{
        width: 100%;
        margin-left: 0;
    }
    .menu-left{
        width: 100%;
    }
    .menu-right{
        width: 100%;
    }
    .Reservations-bg{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .Reservations-img{
        padding-bottom: 50px;
    }
    .img-1{
        padding-bottom: 50px;
    }
    .Reservations-right{
        width: 100%;
        padding-top: 50px;
        text-align: center;
    }
    .footer-part-1{
        width: 100%;
        padding-bottom: 30px;
    }
    .footer-part-2{
        width: 100%;
        padding-bottom: 30px;
        padding-left: 75px;
    }
    .footer-part-3{
        width: 100%;
        padding-left: 75px;
    }
    .card-icons{
        padding-top: 15px;
    }
}
@media screen and (max-width: 768px) {
    .header .nav {
        display: none;
    }
    .logo{
        width: 100%;
    }
    .banner{
        width: 100%;
        padding-top: 140px;
        padding-bottom: 100px;
    }
    .btn-1{
        margin-bottom: 10px;
    }
    .dish-bg{
        width: 100%;
    }
    .dish-item{
        width: 100%;
    }
    .dish-item p{
        width: 100%;
    }
    .review-bg{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .review-box{
        width: 100%;
    }
    .Igredients-bg{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .Igredients-item{
        width: 100%;
    }
    .Igredients-item .Igredients-img{
        flex-direction: column;
    }
    .menu-left-side{
        width: 100%;
    }
    .menu-left{
        width: 100%;
    }
    .menu-right{
        width: 100%;
    }
    .Reservations-bg{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .Reservations-img{
        padding-bottom: 50px;
    }
    .img-1{
        padding-bottom: 50px;
    }
    .Reservations-right{
        width: 100%;
        padding-top: 50px;
        text-align: center;
    }
    .footer-part-1{
        width: 100%;
        padding-bottom: 30px;
    }
    .footer-part-2{
        width: 100%;
        padding-bottom: 30px;
    }
    .footer-part-3{
        width: 100%;
    }
}
/* css responsive end */ 