@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', cursive;
    width: 100%;
    color: #3d2514;
}

ul {
    list-style: none;
}

a {
    font-size: 16px;
    font-family: 'Bebas Neue', cursive;
    color: #3d2514;
    text-decoration: none;
}

img {
    vertical-align: middle;
}

.d_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.w_100 {
    width: 100%;
}

.container {
    padding: 1rem 2rem;
}

.border {
    border: 1px solid red;
}

.text_start {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}



/* *********************************************** */
/*                  Header Css                     */
/* *********************************************** */
.Sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 0px;
    overflow: hidden;
    transition: .7s ease-in-out;
    box-shadow: 0px 0px 10px 0px #00000061;
    background-color: white;
}

.Sidebar>ul {
    margin-top: 5rem;
    padding: 0 2rem;
}

.Sidebar>ul>li {
    margin: 1rem 0;
}

.Sidebar>ul>li>a {
    font-size: 20px;
    letter-spacing: 2px;
    padding: 5px 10px;
    transition: .4s ease-in-out;
}

.Sidebar>ul>li>a:hover {
    background-color: #3d2514;
    color: #ffc84f;
}

.Hero_Section {
    min-height: 100vh;
    background: url('./Assets/Rectangle.png');
}

header {
    overflow: hidden;
}

.Hero_Section>.header>.header_Left {
    width: 20%;
}

.Hero_Section>.header>.header_Right {
    justify-content: flex-end;
    width: 80%;
}

.Hero_Section>.header>.header_Right>.header_Hamburger {
    display: none;
    cursor: pointer;
    transition: .7s ease-in-out;
    z-index: 1;
    position: relative;
    transition: .7s ease-in-out;
}

.Hero_Section>.header>.header_Right>.header_Hamburger>.Hamburger_Bars>.Bars {
    height: 3px;
    background-color: #3d2514;
    width: 15px;
    margin: 2px 0;
}

.Hero_Section>.header>.header_Right>.header_Hamburger>.Hamburger_Bars {
    opacity: 0;
    visibility: 0;
    transition: visibility .7s, opacity .7s, transform .7s;
}

.Hero_Section>.header>.header_Right>.header_Hamburger>.Hamburger_Cross {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: 0;
    transition: visibility .9s, opacity .9s, transform .9s;
}

.Hamburger_Active {
    opacity: 1 !important;
    visibility: 1 !important;
    transition: visibility 1s, opacity 1s, transform 1s;
}

.Hero_Section>.d_flex>.header_Right>.Menubar>.contact_info {
    justify-content: flex-end;
}

.Hero_Section>.header>.header_Right>.Menubar>.contact_info>a {
    margin-left: 1rem;
}

.Hero_Section>.header>.header_Right>.Menubar>ul {
    padding: 10px 0px;
}

.Hero_Section>.header>.header_Right>.Menubar>ul>li {
    margin-left: 10px;
}

.Hero_Section>.header>.header_Right>.Menubar>ul>li>a {
    display: block;
    width: 110px;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 5px 10px;
    transition: .4s ease-in-out;
}

.Hero_Section>.header>.header_Right>.Menubar>ul>li>a:hover {
    background-color: #3d2514;
    color: #ffc84f;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem 1rem;
    }

    .Hero_Section>.header>.header_Left {
        width: 30%;
    }

    .Hero_Section>.header>.header_Right {
        width: 70%;
    }

    .Hero_Section>.header {
        justify-content: space-between;
    }

    .Hero_Section>.header>.header_Right>.Menubar {
        display: none;
    }

    .Hero_Section>.header>.header_Right>.header_Hamburger {
        display: block;
    }

}

@media (max-width: 481px) {

    .Hero_Section>.header>.header_Left {
        width: 50%;
    }

    .Hero_Section>.header>.header_Right {
        width: 50%;
    }
}

/* *********************************************** */
/*                  Burger Week Css                */
/* *********************************************** */

.Hero_Section>.Burger_Week {
    margin-top: 2rem;
}

.Hero_Section>.Burger_Week>.Burger_Week_txt {
    width: 60%;
}

.Hero_Section>.Burger_Week>.Burger_Week_Img {
    width: 40%;
}

.Hero_Section>.Burger_Week>.Burger_Week_txt {
    font-weight: bold;
    font-family: 'Alfa Slab One', cursive;
    text-shadow: 5px 5px 0px #ffffff9f;
}

.Hero_Section>.Burger_Week>.Burger_Week_txt>span {
    font-size: 22px;
    font-weight: 100;
    font-family: 'Bebas Neue', cursive;
    border: 2px dashed #3d2514;
    padding: 10px;
    text-shadow: none;
}


.Hero_Section>.Burger_Week>.Burger_Week_txt>h1 {
    font-size: 6rem;
}

.Hero_Section>.Burger_Week>.Burger_Week_txt>h2 {
    font-size: 4rem;
    margin-top: -1rem;
}

@media (max-width: 991px) {
    .Hero_Section>.Burger_Week>.Burger_Week_txt>h1 {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .Hero_Section>.Burger_Week {
        margin-top: 4rem;
        text-align: center;
    }

    .Hero_Section>.Burger_Week>.Burger_Week_txt,
    .Hero_Section>.Burger_Week>.Burger_Week_Img {
        width: 100%;
    }
}

@media (max-width: 481px) {
    .Hero_Section>.Burger_Week>.Burger_Week_txt>span {
        font-size: 12px;
    }


    .Hero_Section>.Burger_Week>.Burger_Week_txt>h1 {
        font-size: 3rem;
        margin-top: 10px;
    }

    .Hero_Section>.Burger_Week>.Burger_Week_txt>h2 {
        font-size: 2rem;
        margin: 0;
    }
}

/* *********************************************** */
/*                  TryIt Css                      */
/* *********************************************** */

.TryIt_Section {
    margin: 4rem 0;
}

.TryIt_Section>.TryIt_Container {
    align-items: stretch;
    justify-content: space-between;
}

.TryIt_Section>.TryIt_Container>.TryIt_Left {
    padding: 30px;
}

.TryIt_Section>.TryIt_Container>.TryIt_Left,
.TryIt_Section>.TryIt_Container>.TryIt_Right {
    width: 49%;
    height: 400px;
    border-radius: 10px;
}

.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_MoreFun,
.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_FreshChili {
    border-radius: 10px;
    height: 189px;
    padding: 30px;
}

.TryIt_Section>.TryIt_Container>.TryIt_Left {
    background: url(/Assets/image1.png) no-repeat;
    background-size: cover;
    background-position: bottom;
}

.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_MoreFun {
    background: url(/Assets/image2.png) no-repeat;
    background-size: cover;
    background-position: bottom;
}

.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_FreshChili {
    background: url(/Assets/image3.png) no-repeat;
    background-size: cover;
    background-position: bottom;
}

.TryIt_Section>.TryIt_Container>.TryIt_Left>p,
.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_MoreFun>p,
.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_FreshChili>p {
    font-weight: 100;
    color: #ffffff;
}

.TryIt_Section>.TryIt_Container>.TryIt_Left>.heading,
.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_MoreFun>.heading,
.TryIt_Section>.TryIt_Container>.TryIt_Right>.TryIt_Right_FreshChili>.heading {
    font-size: 40px;
    font-weight: 600px;
    color: #ffffff;
}

.TryIt_Section>.Always_Tasty_Burger_Btn {
    margin-top: 50px;
    border: 0px;
    border-radius: 3px;
    transition: .4s ease-in-out;
}

.TryIt_Section>.Always_Tasty_Burger_Btn:hover {
    transform: translateY(-2px);
}

.TryIt_Section>.Always_Tasty_Burger_Btn>a {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 20px;
    background-color: #ffc84f;
}

@media (max-width: 768px) {

    .TryIt_Section>.TryIt_Container>.TryIt_Left,
    .TryIt_Section>.TryIt_Container>.TryIt_Right {
        margin: 1rem 0;
        width: 100%;
    }
}



/* *********************************************** */
/*                Choose & Enjoy Css               */
/* *********************************************** */

.Choose_Enjoy>.Choose_Enjoy_Heading {
    font-family: 'Alfa Slab One', cursive;
    font-weight: bold;
    font-size: 40px;
}

.Choose_Enjoy>.Choose_Enjoy_Subtitle {
    width: 80%;
    margin: auto;
    margin-top: 1rem;
    font-family: sans-serif;
}

.Choose_Enjoy>.OrderNow_Container {
    justify-content: space-between;
    margin: 4rem 0;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item {
    width: 30%;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.image_Container {
    width: 100%;
    height: 300px;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.image_Container>img {
    width: 100%;
    height: 100%;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt>.OrderNow_title {
    font-size: 2rem;
    font-weight: 500;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt>.Order_Now_Subtitle {
    font-size: 1rem;
    font-weight: 400;
    font-family: sans-serif;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt>.Order_Now_Btn {
    background-color: #e22b2b;
    padding: 1rem 0;
    margin-top: 1rem;
    border: 0px;
    transition: .4s ease-in-out;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt>.Order_Now_Btn>a {
    color: #ffffff;
    font-family: 'Alfa Slab One', cursive;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 2rem;
}

.Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt>.Order_Now_Btn:hover {
    border-radius: 5px;
}

@media (max-width: 991px) {
    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.image_Container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .Choose_Enjoy>.OrderNow_Container {
        margin: 1rem 0;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item {
        width: 100%;
        margin: 2rem 0;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.image_Container,
    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt {
        width: 50%;
        height: 100%;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt {
        text-align: left;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt>.Order_Now_Btn {
        padding: 10px 0;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt>.Order_Now_Btn>a {
        font-size: 12px;
        padding: 10px 20px;
    }
}

@media (max-width: 481px) {
    .Choose_Enjoy>.Choose_Enjoy_Heading {
        font-size: 2rem;
    }

    .Choose_Enjoy>.Choose_Enjoy_Subtitle {
        font-size: 14px;
        width: 100%;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.image_Container,
    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt {
        width: 100%;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item {
        flex-direction: column;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_txt {
        text-align: center;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.OrderNow_title {
        font-size: 14px;
    }

    .Choose_Enjoy>.OrderNow_Container>.OrderNow_Item>.Order_Now_Subtitle {
        font-size: 10px;
    }

}


/* *********************************************** */
/*                Deal Slider Css                  */
/* *********************************************** */


.Deal_Slider {
    width: 80%;
    margin: auto;
    overflow: hidden;
    position: relative;
    height: 400px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 10px 10px 20px 0px #00000059;
}

.Deal_Slider>.mySlides {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: visibility 2s, opacity 2s, transform 2s;
}

.Deal_Slider>.mySlides.Active_Slide {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.Deal_Slider>.mySlides>.Deal_txt,
.Deal_Slider>.mySlides>.Deal_img {
    width: 50%;
    height: 100%;
    padding: 2rem;
}

.Deal_Slider>.mySlides>.Deal_img>img {
    height: 100%;
}


.Deal_Slider>.mySlides>.Deal_txt>.Deal_Tagline {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
}

.Deal_Slider>.mySlides>.Deal_txt>.Deal_Heading {
    font-family: 'Alfa Slab One', cursive;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.Deal_Slider>.mySlides>.Deal_txt>.Deal_Description {
    line-height: 26px;
    margin: 10px 0px;
    color: #545454;
    font-family: sans-serif;
}

.Deal_Slider>.Dot_Container {
    position: absolute;
    bottom: 20px;
    left: 50px;
}

.Deal_Slider>.Dot_Container>.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #717171;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.Deal_Slider>.Dot_Container>.dot.Active_Dot {
    background-color: #f7a900;
}

@media (max-width: 991px) {
    .Deal_Slider {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .Deal_Slider {
        display: none;
    }
}

@media (max-width: 481px) {
    .Deal_Slider>.mySlides>.Deal_txt>.Deal_Heading {
        font-size: 1rem;
    }
}



/* *********************************************** */
/*                Booking_Form Css                 */
/* *********************************************** */

.Booking_Form {
    height: 100vh;
    background: url('/Assets/FormBg.png') no-repeat;
    background-size: 100%;
    background-position: center;
    margin: 4rem 0;
    padding: 5rem 0;
}


.Booking_Form>h4 {
    text-align: center;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 2rem;
}


.Booking_Form>h2 {
    text-align: center;
    font-family: 'Alfa Slab One', cursive;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.Booking_Form>form {
    width: 50%;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.Booking_Form>form>input {
    padding: 1.2rem;
    width: 46%;
    margin: 7px;
    border-radius: 5px;
    border: 2px solid #bbbbbb;
    font-size: 18px;
    font-weight: 500;
}

.Booking_Form>form>input[type=text] {
    color: #737373;
}

.Booking_Form>form>.formbtn {
    background-color: #e22b2b;
    border: none;
    border-radius: 5px;
    text-align: center;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-family: 'Alfa Slab One', cursive;
    font-weight: 400;
}

.Booking_Form>form>input:focus,
.Booking_Form>form>input:focus-visible {
    border: 2px solid red;
    outline: red;
}

@media (min-width: 1200px) {
    .Booking_Form>form {
        margin-top: 6rem;
    }
}

@media (max-width: 768px) {
    .Booking_Form {
        padding: 0;
    }

    .Booking_Form>form>input {
        width: 100%;
    }
}

@media (max-width: 481px) {
    .Booking_Form>h2 {
        font-size: 1.5rem;
    }

    .Booking_Form>form {
        width: 90%;
    }

    .Booking_Form>form>input {
        padding: 14px;
        margin: 0.5rem 0;
    }
}


/* *********************************************** */
/*                Form Css                         */
/* *********************************************** */


.Footer {
    width: 95%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 30%), rgb(0 0 0 / 20%)), url(Assets/FooterBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    justify-content: space-between;
    margin: auto;
}

.Footer>.FooterInfo {
    align-items: flex-end;
}

.Footer>.FooterInfo>.FooterInfo_Left,
.Footer>.FooterInfo>.FooterInfo_Right {
    width: 50%;
    padding: 2rem;
}


.Footer>.FooterInfo>.FooterInfo_Left>.Footer_Logo {
    width: 400px;
    margin: 3rem 0;
}

.Footer>.FooterInfo>.FooterInfo_Left>.Footer_Description {
    color: #bbbbbb;
    margin: 10px 0px;
    font-weight: 400;
    font-family: sans-serif;
    line-height: 1.6;
}


.Footer>.FooterInfo>.FooterInfo_Right>.FooterInfo_Right_txt {
    width: 80%;
    margin: auto;
    margin-bottom: 1rem;
}

.Footer>.FooterInfo>.FooterInfo_Right>.FooterInfo_Right_txt>.icon {
    width: 30px;
}

.Footer>.FooterInfo>.FooterInfo_Right>.FooterInfo_Right_txt>.info {
    margin: 0 1rem;
    font-size: 20px;
}

.Footer>.Footer_Bottom {
    width: 100%;
    justify-content: space-between;
}

.Footer>.Footer_Bottom>.Footer_Copyright {
    font-weight: 100;
    font-size: 14px;
    color: #b5b5b5;
    width: 50%;
}

.Footer>.Footer_Bottom>.Footer_Social {
    width: 50%;
}

.Footer>.Footer_Bottom>.Footer_Social>a>i {
    color: white;
    font-size: 26px;
    margin: 0 5px;
    transition: .4s ease-in-out;
}

.Footer>.Footer_Bottom>.Footer_Social>a>i:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .Footer>.FooterInfo {
        align-items: center;
    }

    .Footer>.FooterInfo>.FooterInfo_Left>.Footer_Logo {
        width: 300px;
        margin: 1rem 0;
    }

    .Footer>.FooterInfo>.FooterInfo_Right>.FooterInfo_Right_txt {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .Footer>.FooterInfo {
        text-align: center;
    }

    .Footer>.FooterInfo>.FooterInfo_Left,
    .Footer>.FooterInfo>.FooterInfo_Right {
        width: 100%;
    }
}

@media (max-width: 481px) {
    .Footer>.FooterInfo>.FooterInfo_Left>.Footer_Logo {
        width: 250px;
    }

    .Footer>.Footer_Bottom {
        flex-direction: column-reverse;
    }

    .Footer>.Footer_Bottom>.Footer_Copyright,
    .Footer>.Footer_Bottom>.Footer_Social {
        width: 100%;
        margin: 1rem 0;
        text-align: center;
    }
}