:root{
    --primary-color:#da0a0a; /* Red Color */
    --secondary-color:#000000; /* Black Color */
    --third-color:#747474; /* Light Black */
    --title-font: 'Barlow Condensed', sans-serif; /* For Titles */
    --text-font: 'DM Sans', sans-serif; /* For Titles */
}
body{
    font-family: var(--text-font);
    font-size: 16px;
    color: #333;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--title-font);
}
/* --- Top Bar and Menu --- */
.topFixBar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 99;
    display: flex;
    justify-content: center;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
}
.topFixBar ul{
    display: flex;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.topFixBar ul li:nth-child(3){
    padding-right: 60px;
}
.topFixBar ul li:nth-child(4){
    padding-left: 60px;
}
.topFixBar ul li a{
    color: #fff;
    display: block;
    text-align: center;
    width: 120px;
    padding: 15px 0px;
    font-weight: 600;
}
.topFixBar ul li a:hover, .topFixBar ul li.active a{
    color: var(--primary-color);
    background-color: var(--secondary-color)
}
.topFixBar .logo{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
}
.topFixBar .logo a{
    width: 50px;
    background-color: #fff;
    display: block;
    padding: 10px;
    border-radius: 0px 0px 3px 3px;
}
.topFixBar .logo a img{
    width: 100%;
}
/* --- Home --- */
#left1{
    padding-top: 25px;
    box-sizing: border-box;
    background-image: url(../images/bg-pattern.jpg);
}
.sliderBox{
    height: 100vh;
}
#right1{
    background-image: url(../images/bg-pattern.jpg);
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}
#right1 .fullLogo{
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 15px;
}
#right1 .fullLogo img{
    width: 100%;
    border-radius: 10px;
}
#right1 p{
    line-height: 30px;
    color: #fff;
    padding-right:30px;
}
#right1 ul{
    display: flex;
    justify-content: center;
    padding-top: 20px;
    position: relative;
    z-index: 3;
}
#right1 ul li{
    padding-left: 5px;
    padding-right: 5px;
}
#right1 ul li:nth-child(2){
    animation-delay: 0.3s;
}
#right1 ul li:nth-child(3){
    animation-delay: 0.6s;
}
#right1 ul li a{
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid #fff;
    display: block;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: 500;
}
#right1 ul li a:hover{
    background-color: var(--primary-color);
    color: #fff;
    border-color: #fff;
}
#right1 .ms-tableCell{
    position: relative;
}
#right1 .offer{
    padding-top: 30px;
}
#right1 .offer{
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
#right1 .offer img{
    width: 100%;
    display: block;
}
#right1 .tomato{
    position: absolute;
    top: 60px;
    right: -35px;
    width: 100px;
}
#right1 .tomato img{
    width: 100%;
}
#right1 .dishHome{
    position: absolute;
    bottom: 10px;
    right: -35px;
    width: 120px;
}
#right1 .dishHome img{
    width: 100%;
}
@media (max-width:1199px){
    #right1 .fullLogo{
        max-width: 100px;
    }
}
/* --- About Us Section --- */
#left2{
    background-image: url(../images/about-left.jpg);
    background-position: right center;
    position: relative;
}
#left2 .onion{
    position: absolute;
    top: 60px;
    left: 10px;
    width: 150px;
}
#left2 .onion img{
    width: 100%;
}
#left2 .foodIcon{
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 120px;
}
#left2 .foodIcon img{
    width: 100%;
}
#left2 ul.social{
    padding-left: 50px;
}
#left2 ul.social li{
    padding-bottom: 3px;
    padding-top: 3px;
}
#left2 ul.social li a{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    display: block;
    color: #fff;
}
#left2 ul.social li a i{
    padding-top: 8px;
}
#left2 ul.social li:nth-child(1) a{
    background-color: #3b5998;
}
#left2 ul.social li:nth-child(2) a{
    background-color: #00af87;
}
#left2 ul.social li a:hover{
    background-color: var(--secondary-color);
}
#right2{
    background-image: url(../images/about-right.jpg);
    background-position: left center;
}
#right2 .aboutBlock{
    color: #fff;
    width: 100%;
    max-width: 850px;
    min-width: 850px;
    padding: 35px 20px 30px 20px;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.75);
    margin-top: 50px;
    animation-fill-mode: backwards;
}
#right2.active .aboutBlock{
    animation-delay: 1s;
    animation-name: loadLater;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: ease;
}
@keyframes loadLater{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
#right2 .aboutBlock h1{
    font-size: 44px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 10px;
}
#right2 .aboutBlock p{
    line-height: 28px;
    padding-bottom: 10px;
}
#right2 .aboutBlock ul{
    display: flex;
    justify-content: center;
    padding-top: 15px;
}
#right2 .aboutBlock ul i{
    color: #f39c12;
}
#right2 .aboutBlock ul li{
    padding-bottom: 10px;
}
#right2 .aboutBlock ul li a{
    color: #fff;
    text-decoration: none;
}
#right2 .aboutBlock ul li:nth-child(2){
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width:1199px){
    #right2 .aboutBlock{
        min-width: 750px;
    }
}
/* --- Menu Section --- */
#left3{
    background-image: url(../images/menu-left-image.jpg);
    background-size: cover;
    overflow: hidden;
}
#right3{
    background-image: url(../images/menu-right-image.jpg);
    background-size: cover;
    overflow: hidden;
}
#right3 h1, #left3 h1{
    color: #fff;
    font-size: 36px;
    text-align: center;
    width: 140px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 50px;
    padding-bottom: 20px;
    width: 100%;
}
#right3 h1 span, #left3 h1 span{
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid #fff;
}
ul.menuCat{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}
ul.menuCat li{
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
    box-sizing: border-box;
}
.active ul.menuCat li{
    animation-delay: 1s;
    animation-name: loadLater1;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: backwards;
}
.active ul.menuCat li:nth-child(2){
    animation-delay: 1.2s;
}
.active ul.menuCat li:nth-child(3){
    animation-delay: 1.4s;
}
.active ul.menuCat li:nth-child(4){
    animation-delay: 1.6s;
}
.active ul.menuCat li:nth-child(5){
    animation-delay: 1.8s;
}
.active ul.menuCat li:nth-child(6){
    animation-delay: 2s;
}
.active ul.menuCat li:nth-child(7){
    animation-delay: 2.2s;
}
.active ul.menuCat li:nth-child(8){
    animation-delay: 2.4s;
}
.active ul.menuCat li:nth-child(9){
    animation-delay: 2.6s;
}
.active ul.menuCat li:nth-child(10){
    animation-delay: 2.8s;
}
.active ul.menuCat li:nth-child(11){
    animation-delay: 3s;
}
.active ul.menuCat li:nth-child(12){
    animation-delay: 3.2s;
}
@keyframes loadLater1{
    0%{
        opacity: 0;
        transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
ul.menuCat li .pic{
    display: block;
    position: relative;
    background-color: rgba(0,0,0,0.50);
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 5px;
}
ul.menuCat li .pic:hover{
    background-color: #000;
}
ul.menuCat li img{
    width: 100%;
    display: block;
    border-radius: 50%;
}
ul.menuCat li h3{
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}
ul.menuCat li h3 a{
    color: #fff;
}
ul.menuCat li a:hover h3{
    color: #f39c12;
}
@media (max-width:1199px){
    .active ul.menuCat li{
        padding-left: 5px;
        padding-right: 5px;
    }
    ul.menuCat li .pic{
        padding: 5px;
    }
    ul.menuCat li h3{
        font-size: 14px;
        font-weight: 500;
    }
}
/* Pop Up */
.menuPopUp{
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    height: 100%;
    padding-bottom: 50px;
    box-sizing: border-box;
    text-align: left;
    padding-top: 80px;
}
.menuPopUp.ForRightItems{
    left: -100%;
    transition: all linear 0.3s;
}
.menuPopUp.ForLeftItems{
    right: -100%;
    transition: all linear 0.3s;
}
.menuPopUp.ForRightItems.visible{
    left: 0;
    right: unset;
}
.menuPopUp.ForLeftItems.visible{
    right: 0;
}
.scrollBar{
    height: 100%;
    overflow: auto;
    padding-left: 50px;
    padding-right: 50px;
}
.menuPopUp.ForRightItems .scrollBar{
    direction: rtl;
}
.menuPopUp.ForRightItems .changeDirection{
    direction: ltr;
}
.closeBtn{
    position: absolute;
    bottom: 0;
    text-align: center;
    z-index: 2;
}
.menuPopUp.ForRightItems .closeBtn{
    right: 0px;
}
.menuPopUp.ForLeftItems .closeBtn{
    right: unset;
    left: 0;
}
.closeBtn a{
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: block;
    color: #fff;
    font-size: 24px;
    padding-top: 7px;
    box-sizing: border-box;
}
.closeBtn a:hover{
    background-color: #111;
}
/* PopUp Content for Menu */
.menuPopUp h3{
    font-weight: 500;
    font-size: 44px;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 0px 0px 15px 0px;
    position: relative;
    padding-top: 35px;
}
.menuPopUp h3:nth-child(1){
    padding-top: 0;
}
.menuPopUp h3:before{
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: 10px;
    left: 0px;
    content: "";
    background-color: var(--primary-color);
}
.CatDesc{
    line-height: 22px;
    padding-bottom: 15px;
}
.menuPopUp ul{
    border-top: 1px solid #ddd;
}
.menuPopUp ul li{
    position: relative;
    padding: 8px 70px 8px 8px;
    border-bottom: 1px solid #ddd;
}
.menuPopUp ul li .itemName{
    font-weight: 500;
}
.menuPopUp ul li .price{
    position: absolute;
    top: 8px;
    right: 8px;
    font-weight: 600;
    color: var(--primary-color);
}
.menuPopUp ul li p{
    font-size: 14px;
    color: var(--third-color);
    padding-top: 4px;
}
.extraInfoMenu{
    padding-top: 30px;
}
.extraInfoMenu p{
    line-height: 24px;
}
.extraInfoMenu p:not(:last-child){
    padding-bottom: 10px;
}
/* --- Gallery --- */
#left4{
    background-image: url(../images/bg-pattern.jpg);
}
#left4 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 50px;
}
#left4 ul li{
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
}
#left4.active ul li .icon{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0px auto 10px auto;
    transform: scale(1);
    opacity: 1;
}
#left4 ul li .icon{
    transform: scale(5);
    transition: all linear 0.8s;
    opacity: 0;
}
#left4 ul li:nth-child(1) .icon{
    background-color: #f39c12;
}
#left4 ul li:nth-child(2) .icon{
    background-color: #4cd137;
}
#left4 ul li:nth-child(3) .icon{
    background-color: #00a8ff;
}
#left4 ul li:nth-child(4) .icon{
    background-color: #EA2027;
}
#left4 ul li:nth-child(5) .icon{
    background-color: #6F1E51;
}
#left4 ul li img{
    width: 100%;
    max-width: 80px;
    padding-top: 35px;
}
#left4 h2{
    font-size: 24px;
    font-weight: 600;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
#left4 ul li:nth-child(1) h2{
    background-image: linear-gradient(90deg, rgba(243,156,18,1) 0%, rgba(76,209,55,1) 100%);
}
#left4 ul li:nth-child(2) h2{
    background-image: linear-gradient(90deg, rgba(76,209,55,1) 0%, rgba(0,168,255,1) 100%);
}
#left4 ul li:nth-child(3) h2{
    background-image: linear-gradient(90deg, rgba(0,168,255,1) 0%, rgba(234,32,39,1) 100%);
}
#left4 ul li:nth-child(4) h2{
    background-image: linear-gradient(90deg, rgba(234,32,39,1) 0%, rgba(111,30,81,1) 100%);
}
#left4 ul li:nth-child(5) h2{
    background-image: linear-gradient(90deg, rgba(111,30,81,1) 0%, rgba(243,156,18,1) 100%);
}
@media (max-width:1199px){
    #left4 ul li{
        padding-bottom: 15px;
    }
    #left4.active ul li .icon{
        width: 120px;
        height: 120px;
    }
    #left4 ul li img{
        max-width: 70px;
        padding-top: 25px;
    }
    #left4 h2{
        font-size: 18px;
    }
}
/* --- Contact Section --- */
#left5{
    background-image: url(../images/bg-pattern.jpg);
}
#left5 .butter-chicken{
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 150px;
}
#left5 .butter-chicken img{
    width: 100%;
}
#left5 .contactLeftBox{
    display: flex;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    color: #fff;
}
#left5 .contactBlocks{
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
#left5 h2{
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}
#left5 ul.social{
    display: flex;
    padding-top: 20px;
}
#left5 ul.social li{
    padding-right: 7px;
}
#left5 ul.social li a{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    display: block;
    color: #fff;
}
#left5 ul.social li a i{
    padding-top: 8px;
}
#left5 ul.social li:nth-child(1) a{
    background-color: #3b5998;
}
#left5 ul.social li:nth-child(2) a{
    background-color: #00af87;
}
#left5 ul.social li a:hover{
    background-color: var(--secondary-color);
}
#left5 ul.contact{
    padding-left: 10px;
}
#left5 ul.contact li{
    position: relative;
    padding: 0px 0px 10px 25px;
}
#left5 ul.contact li a{
    color: #fff;
    text-decoration: none;
}
#left5 ul.contact li i{
    position: absolute;
    color: #f39c12;
    left: 0;
    top: 3px;
}
#left5 .copyRightText{
    position: absolute;
    right: 30px;
    font-size: 14px;
    color: #fff;
    bottom: 20px;
    line-height: 22px;
}
#left5 .copyRightText a{
    color: #f39c12;
}
#left5 .copyRightText a:hover{
    text-decoration: underline;
}
.reservationButton{
    padding-top: 50px;
}
.reservationButton a{
    background: linear-gradient(90deg, rgba(243,156,18,1) 0%, rgba(218,10,10,1) 100%);
    color: #fff;
    font-family: var(--title-font);
    padding:10px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    transition: all linear 0.3s;
    display: inline-block;
}
.reservationButton a:hover{
    background: none;
    background-color: #da0a0a;
}
#right5 iframe{
    height: calc(100% - 49px);
    padding-top: 49px;
}
.reservationForm-PopUp{
    left: 100%;
    top: -5px;
    width: 100%;
    position: absolute;
    background-color: #fff;
    height: 100%;
    transition: all linear 0.3s;
    display: flex;
    align-items: center;
}
.reservationForm-PopUp.visible{
    left: 0;
}
.reservationForm-PopUp h3{
    color: var(--primary-color);
    font-size: 28px;
    padding-top: 80px;
    text-transform: uppercase;
    font-weight: 600;
}
.reservationForm-PopUp h4{
    color: var(--third-color);
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.booking-form{
    padding-left: 35px;
    padding-right: 35px;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}
.booking-form .form-group{
    flex: 0 0 50%;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.booking-form .lablelHolder{
    font-weight: 500;
    padding-bottom: 5px;
    font-size: 14px;
}
.booking-form .field{
    padding-bottom: 15px;
}
.booking-form input, .booking-form select, .booking-form textarea{
    width: 100%;
    padding: 5px 12px;
    border: 1px solid #111;
    box-sizing: border-box;
    border-radius: 3px;
    font-family: var(--text-font);
    font-size: 14px;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus{
    box-shadow: none;
    border-color: var(--primary-color);
}
.booking-form textarea{
    height: 120px;
    resize: none;
}
.booking-form .btns input{
    display: inline-block;
    width: 100px;
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}
.booking-form .btns input:not(:first-child){
    background-color: var(--third-color);
}
.booking-form .btns input:hover{
    background-color: var(--secondary-color);
}
.bookingForm .sent{
    padding:0px 20px 20px 20px;
}
@media (max-width:1199px){
    #left5 .contactLeftBox{
        padding-left: 20px;
        padding-right: 20px;
    }
    #left5 h2{
        font-size: 24px;
    }
    #left5 .contactLeftBox .contactBlocks:not(:last-child){
        flex:0 0 45%;
        max-width: 45%;
    }
    #left5 .contactLeftBox .contactBlocks:not(:first-child){
        flex:0 0 55%;
        max-width: 55%;
    }
    .reservationButton a{
        font-size: 17px;
    }
}