* {
    margin: 0;
    padding: 0;

}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFF;
}

header {
    background-color: #fff;
    height: 90px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 19999999;
    width: 100%;
}

.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

/* .container_root {
    max-width: 67.3%;
    width: 100%;
    align-items: center;
    margin: auto;
}

.container {

    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    width: 67.3%;
    align-items: center;
    margin: 0 auto;

} */

.container {
    max-width: 1360px;
    width: 100%;
    margin: auto;
}


.flex {
    display: flex;
    justify-content: space-between;

    align-items: center;
    margin: 0 auto;
}






.testimonials_container {
    padding: 0 20px;
    width: 67.3%;
    margin: 0 auto;
}

.inline_block_about {
    display: inline-block;
}

.hero_container {
    flex-direction: row-reverse
}

.logo span {
    color: #ff3e00;
}

nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    margin-left: 20px;
}

nav ul li {
    margin: 10px 0px 10px 28px;
    font-weight: bolder;
    font-size: 1rem;
    color: #7F7F90;
}

nav ul li a {
    text-decoration: none;
    color: #7F7F90;
}

nav ul li a:hover {
    cursor: pointer;
    color: #0a0a0a;
}

nav ul li.active a {
    color: #ff3e00;
}


/* under line */

nav ul li a {
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    background-color: #CE1212;
    width: 100%;
    transform: scaleX(1);
}


/* drop down */

nav ul li.dropdown ul {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 0;
    margin: 5px 0 0 0;
}

nav ul li.dropdown:hover ul {
    display: block;
}

nav ul li.dropdown ul li {
    display: block;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}

nav ul li.dropdown ul li:hover {
    background-color: #f1f1f1;
}




.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
    background-color: #fff;
    position: absolute;
    top: 90px;
    right: 0;
    width: 20%;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu ul li {
    margin: 10px 0px;
    font-weight: bolder;
    font-size: 1rem;
    color: #7F7F90;
}

.mobile-menu ul li.active a {
    color: #ff3e00;
}


.mobile-menu ul li a {
    position: relative;
    /* add position relative to the <a> element to make the absolute positioned :after pseudo element relative to it */
    text-decoration: none;
    color: #7F7F90;
    display: block;
    padding: 10px;
}

.mobile-menu ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}

.mobile-menu ul li.active a:after,
.mobile-menu ul li a:hover:after {
    background-color: #CE1212;
    width: 100%;
    transform: scaleX(1);
}




.mobile-menu ul li.dropdown ul {
    display: none;
    /* position: absolute; */
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 0;
    margin: 15px 0 0 0;
}

.mobile-menu ul li.dropdown:hover ul {
    display: inline;
}

.mobile-menu ul li.dropdown ul li {
    display: block;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}

.mobile-menu ul li.dropdown ul li:hover {
    background-color: #f1f1f1;
}



.book_now {
    background-color: #CE1212;
    color: #fff;
    font: 0.875rem;
    font-weight: 50;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.book_now:hover {
    background-color: #e63400;
}


/* hero */
.hero {
    min-height: 50%;
    position: relative;
    background-size: cover;
    padding: 160px 0 60px 0;
    background-color: #eee;
}


.text {
    max-width: 40%;
}


.img {
    text-align: center;
}

.hamburger {
    display: none;
}

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

.cta {
    margin-left: 20px;
}


.hero h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #37373F;
}

.hero p {
    font-family: 'Open Sans', sans-serif;
    color: #4f4f5A;
    margin-bottom: 30px;

}


.hero_links {
    display: flex;
}

.hero_button {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #CE1212;
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
    text-decoration: none;
}

.hero_button:hover {
    background-color: #e63400;
}


.play_img {
    height: 35px;
    width: 35px;
    padding: 0 7px 0 0;
}

.play_link {
    display: flex;
    align-items: center;
    margin-left: 25px;
    text-decoration: none;
    color: #212529;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: bold;
}

.about {
    padding: 80px 0;
}

.text_about_us h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #7f7f90;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.text_about_us p {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    font-family: 'Amatic SC', cursive;
    text-align: center;
}

.text_about_us span {
    color: #CE1212;
}



.about_img {
    position: relative;
    margin: 24px 0 0;
    width: 60%;
    background-image: url("../img/about.jpg");
    min-height: 718px;
}

.about_second {
    width: 40%;
    padding: 0px 0px 0px 12px;
    min-height: 664px;

}

.about_video_text {
    padding: 0 0 0 40px;
    margin: 20px 0 0;
}



.firstp {
    margin: 0 0 16px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #212529;
    font-style: italic;
    line-height: 1.5rem;
}

.about_text ul li {

    display: flex;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #212529;
    list-style: none;
}

.about_text ul {
    margin: 0px 0 10px;
    padding: 0;
}



.about_text ul li i {
    color: #CE1212;
}

.about_text ul li span {
    padding: 0 0 8px 16px;
}

.secondp {
    margin: 0px 0 10px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #212529;
    line-height: 1.5rem;

}

.call_number {
    position: absolute;
    bottom: 28%;
    background-color: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    height: 80px;
    width: 75%;
    top: 73%;
    left: 10%;

}

.call_number h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
}

.call_number p {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    color: rgb(206, 18, 18);
    margin: 0 0 1rem;
}



.lightboxContainer {
    position: relative;
    display: inline-block;
}

.lightboxContainer:after {
    content: url("https://www.youtube.com/watch?v=__ZkjuCBCsI&ab_channel=Foodo%27Clock");
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
    opacity: 0.8;
}

.lightboxContainer:hover:after {
    opacity: 1;
}



.card {
    background-color: #eee;
    padding: 80px 0;

}

.card_wrapper {
    padding: 0 12px;
    margin: 24px 0 0;
    width: 100%;
    max-width: 33.3%;

}


.card_wrapper_red {

    padding: 0 12px;
    margin: 24px 0 0;
}


.card1 {

    background-color: #ce1212;
    padding: 30px;
}

.card1 h3 {
    font-size: 2.12rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    color: #FFF;
    margin: 0 0 30px;
}

.card1 p {
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #FFF;
    margin: 0 0 30px;
}

.learn_more_buton {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
    text-decoration: none;
}


.learn_more_buton:hover {
    background: #FFF;
    color: #ce1212;
}

.learn_more_div {
    text-align: center;
}

.card_deck {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    text-align: -webkit-center;
}

.card_deck:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}



.card_deck h4 {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    margin: 0 0 30px;
}

.card_deck p {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 16px;
}


.bootstrap_icon_card {
    color: #CE1212;
    font-size: 32px;
    margin-bottom: 30px;
    background: rgba(206, 18, 18, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}


.stats_counter {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
    background-size: cover;
    padding: 100px 0;
    background-attachment: fixed;
    scroll-margin-top: 90px;
}



.part1 .part2 .part3 .part4 {
    width: 100%;
    max-width: 25%;
    flex: 0 0 25%;

}

.part_padding {
    padding: 30px;
}

.stats_flex span {
    font-size: 48px;
    display: block;
    color: #fff;
    font-weight: 700;
}

.stats_flex p {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.stats_wrapper {
    padding: 0 12px;
    margin: 24px 0 0;
    width: 100%;
    max-width: 25%;
}



.menu {

    overflow: hidden;
    padding: 80px 0;
    scroll-margin-top: 90px;
}


.menu_header {
    padding: 0 0 30px 0px;
}

.menu_header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #7f7f90;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.menu_header p {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    font-family: 'Amatic SC', cursive;
    text-align: center;
}

.menu_header span {
    color: #CE1212;
}

.menu_nav {
    display: flex;
    list-style: none;
    justify-content: center;
    height: 41px;

}

.menu_nav a {
    margin: 0 10px;
    padding: 10px 5px;
    transition: 0.3s;
    color: #37373f;
    border-radius: 0;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 1px solid #b6b6bf;
    text-decoration: none;
}

.menu_nav a:hover {
    cursor: pointer;
    color: #ce1212;
    border-color: #7F7F90;
}

.menu_content {
    display: none;
}

.menu_content.active {
    display: block;
}

.menu_content h3 {
    margin-top: 0;
}


.nav_header_text {
    padding: 30px 0;
    text-align: center;
}

.nav_header_text p {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;

}

.nav_header_text h3 {
    font-size: 36px;
    font-weight: 600;
    color: #CE1212;
    font-family: 'Inter', sans-serif;
}


.menu_show_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.row {
    width: 100%;
    display: flex;

    margin-bottom: 20px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 48px 0 0;
    padding: 0 12px;
}

.menu_show_container img {
    width: 100%;
    max-width: 296px;
    height: auto;
    margin: 0 0 15px;
    padding: 0 60px;

}

.menu_show_container h4 {
    font-size: 22px;
    font-weight: 500;
    color: #37373f;
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
}



.ingredients {
    font-family: 'Inter', sans-serif;
    color: #8d8d9b;
    margin-bottom: 5px;
    margin-top: 0;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #CE1212;
}

h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    color: #555;
}

.testimonials {
    background-color: #eee;
    padding: 80px 0;
}

.testimonials_header {
    padding: 0 0 30px;
    margin: 0 0 40px;
}

.slide_show_main_content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center !important;
}

.slide_show_main_content_text {
    /* flex: 70%; */
    border-left: 2px #CE1212 solid;
    padding-left: 30px;
    width: 50%;
    flex: 0 0 auto;
}


.slide_show_main_content_text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 1rem;
    font-style: italic;
}

.slide_show_main_content_text h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #212529;
    font-family: 'Inter', sans-serif;
    font-weight: bolder;
}


.slide_show_main_content_text h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 10px 0;
    font-family: 'Inter', sans-serif;
}

.quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
    font-size: 26px;
    color: #f05656;
}

.quote-icon-right {
    display: inline-block;
    left: -5px;
    position: relative;
    font-size: 26px;
    color: #f05656;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials_img {
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
    vertical-align: middle;
    max-width: 196px;
}

.slide_show_main_content_img {
    text-align: center;
    flex: 0 0 auto;
    width: 16.66666667%;
}

.stars i {

    color: #ffc107;
}


.box {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(0%);
    transition: transform 0.3s ease-in-out;
}

.box:nth-child(2) {
    background-color: #aaa;
}

.box:nth-child(3) {
    background-color: #888;
}

.box:nth-child(4) {
    background-color: #555;
}




.dots1 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot1 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #aaa;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.dot1.active {
    background-color: #333;
}



.events {
    padding: 80px 0;
}



.chefs {
    background-color: #eee;
    padding: 80px 0;
}

.chefs_cards {
    display: flex;
    justify-content: center;
}

.chef_card {
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-top: 1.5rem;
    border-radius: 5px;
    text-align: center;

}

.chef_card:hover {
    transform: scale(1.03);
    border-radius: 5px;
    transition: 0.3s;
}

.chef_card_img {
    position: relative;
}

.chef_card_img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url("../img/team-shape.svg") no-repeat center bottom;
    background-size: contain;
    z-index: 1;

}


.chef_card_info {
    background-color: white;
    padding: 10px 15px 20px 15px;
}

.chef_card_info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #37373f;
    font-family: 'Inter', sans-serif;
}

.chef_card_info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(33, 37, 41, 0.4);
}

.chef_card_info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: rgba(33, 37, 41, 0.7);
    margin-top: 0;
    margin-bottom: 1rem;
}


.book-a-table {
    padding: 80px 0;
}

.reservartion_img {
    background-image: url("../img/reservation.jpg");
    min-height: 500px;
    background-size: cover;
    background-position: center;
    flex: 0 0 auto;
    min-width: 33.9%;
}

.reservation_main {
    display: flex;
    background-color: rgba(55, 55, 63, 0.04);
}

.reservation_form {
    width: 100%;
    align-self: center;
}

.book-a-table-form {
    padding: 30px;

}

.form_item {
    display: flex;
    flex-direction: column;
    margin: 24px 0 0;
    padding: 0 12px;
    width: 100%;
}

.form_row {
    width: 100%;
    display: flex;

}

.full_width {
    width: 97% !important;
}


.width-94 {
    width: 94% !important;
}


.form_controll {
    display: block;
    width: 89%;
    padding: 12px 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.form_textarea {
    min-height: 38px;
    width: 97%;
    border: 1px solid #ced4da;
}

.form_button {
    background: #CE1212;
    border: 0;
    padding: 14px 60px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.align_button {
    text-align: center;
    margin-top: 21px;
}

.gallery {
    padding: 80px 0;
    background-color: #eee;
}

.Contact {
    padding: 80px 0;
}


.map {
    /* z-index: 3;
    width: 100%;
    padding: 0px;
    border-width: 0px;
    margin: 0px;
    touch-action: pan-x pan-y; */

    border: 0;
    width: 98.4%;
    height: 350px;
}


.contact_info {
    display: flex;
}


.col {
    width: 100%;
    margin: 20px 20px 10px 0px;
}

.info_item {
    display: flex;
    background: #f4f4f4;
    padding: 30px;
    align-items: center !important;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: #fff;
    background: #ce1212;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0 !important;
}

.info_item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 0 0 5px 0;
    font-family: 'Inter', sans-serif;
}

.info_item p {
    padding: 0;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
}

.shadow {
    max-width: 98%;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.form_item_1 {
    flex-direction: column;
    margin: 24px 0 0;
    padding: 0 12px;
    width: 100%;
}

.book-a-table-form_contact {
    padding: 20px;
}

.footer {
    font-size: 14px;
    background-color: #1f1f24;
    padding: 50px 0;
    color: rgba(255, 255, 255, 0.7);
}


.main_footer {
    display: flex;
    border-bottom: 1px #fff solid;
}

.icon1 {
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
}

.icon1::before {
    margin-right: 15px;
    font-size: 24px;
}

.main_footer_content {
    display: flex;
    flex: 0 0 auto;
    width: 25%;
    min-height: 120px;
}

.main_footer_content h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    margin: 0 0 8px;
    padding: 0 0 5px;
    color: #fff;
}

.main_footer_content1 h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    margin: 0 0 8px;
    padding: 0 0 5px;
    color: #fff;
}


.main_footer_content p {
    margin-bottom: 10px;
    color: #FFFFFFB3;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;

}

.credits a {
    text-decoration: none;
    color: #fff;
}



.gallery_img {
    display: flex;
}




.slide-show .slick-slide {
    color: #FFF;
    height: 200px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.slide-show .slick-slide,
.slide-show .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
    transform: scale(0.8, 0.8);
    transition: all 0.4s ease-in-out;
}

.slide-show .slick-center,
.slide-show .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);

}

.slide-show .slick-current.slick-active {
    transform: scale(1.1);

}

.slick-next,
.slick-prev {
    z-index: 5;
}

.slick-next {
    right: 15px;
}

.slick-prev {
    left: 15px;
}

.slick-next:before,
.slick-prev:before {
    color: #ad3030;
    font-size: 30px;
}


/* .event_slide_show_content::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    opacity: 0%;
} */

.event_slide_show {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
}

.event_slider_container {
    display: flex;
    flex: 1;
    position: relative;
}

.event_slider_img img {
    width: 100%;
    height: auto;
}

.event_slider_text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 10px;
    bottom: 4%;
}

.event_slider_text .price {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
    border-bottom: 2px red solid;
    width: 10%;
}

.event_slider_text .description {
    font-size: 14px;
    color: white;
}

.event_slider_img::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}

.red_card_main {
    flex: 0 0 30%;
}

.other_card {
    display: flex;
}



.stats_flex {
    display: flex;
    flex-wrap: wrap;
}

.stats_wrapper {
    flex: 1;
    text-align: center;
}

@media screen and (max-width: 1360px) {

    .container {
        max-width: 80%;
    }

    /* .container_root {
        max-width: 1200px;
    } */

    nav ul {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .image {
        height: 20px;
        width: 20px;
    }

    .cta {
        margin-top: 20px;
        margin-left: 0;
    }

    header {
        align-items: center;
        justify-content: center;
    }

    .book_now {
        margin-right: 20%;
    }
}


@media screen and (max-width: 1345px) {}

.container {
    max-width: 80%;
}

@media screen and (max-width: 1204px) {


    .container {
        max-width: 80%;
    }


    .other_card {
        flex-direction: column;
    }

    .card_deck {
        width: 257%;
    }

    .red_card_main {
        flex: 0 0 40%;
    }

    .card1 {
        top: 10%;
    }

    .card_container {
        align-items: normal;
    }


    .info_item p {
        font-size: 12px;
    }
}


@media screen and (max-width: 1024px) {

    .container {
        max-width: 80%;
    }

    .hero_container {
        display: block;
    }

    .text {
        max-width: none;
        text-align: center;
        margin-top: 34px;
    }

    .hero_links {
        justify-content: center;
    }

    .img_text_about_us {
        display: block;
    }

    .about_second {
        width: 100%;
        padding: 0;
    }

    .about_video_text {
        padding: 0;
    }

    .about_img {
        position: relative;
        margin: 24px 0 0;
        width: 99.9%;
        background-image: url("../img/about.jpg");
        min-height: 500px;
    }

    .img {
        text-align: center;
    }

    .card_container {
        display: block;
    }

    .contact_info {
        display: block;
    }

}

@media screen and (max-width: 920px) {
    .container {
        max-width: 80%;
    }

    .icon1 {
        margin-right: 0px;
    }

    .icon1::before {
        margin-right: 0px;
    }

    .slide_show_main_content {
        display: block;
    }

}


@media screen and (max-width: 768px) {
    .container {
        max-width: 80%;
    }

    .main_footer {
        display: block;
    }

    .main_footer_content {
        width: 100%;
    }

    .main_footer_content1 {
        margin-bottom: 17px;
    }

    .reservation_main {
        display: block;
    }

    .form_row {
        display: block;
    }

    .form_textarea {
        width: 94%;
    }

    .chefs_cards {
        display: block;
    }

    .chef_card {
        width: 95%;

    }

    .form_item_1 {
        width: 88% !important;
    }

    .full_width {
        width: 94% !important;
    }

    .hero_img {
        width: 80% !important;
    }

    .card_wrapper {
        max-width: 32.3%;
    }
}

@media screen and (max-width: 536px) {
    .container {
        max-width: 80%;
    }

    .book_now {
        display: none;
    }

    .call_number p {
        font-size: 1.25rem;
    }

    .call_number {
        left: 7%;
    }

    .chefs_cards {
        display: block;
    }

    .chef_card {
        width: 95%;

    }

    .menu_show_container {
        display: block;
    }

    .row {
        display: block;
    }

    .form_item_1 {
        width: 81% !important;
    }

    .card_wrapper {
        max-width: 29.3%;
    }

    .mobile-menu.active {
        width: 100% !important;
        opacity: 94%;
    }

    .mobile-menu ul li a {
        padding: 10px 10px 10px 31px;
    }
}

@media screen and (max-width: 410px) {

    .container {
        max-width: 80%;
    }

    .call_number {
        left: 6%;
    }

    .form_item_1 {
        width: 76% !important;
    }

    .container {
        max-width: 80%;
    }

    .stats_wrapper {
        max-width: 100%;
    }

    .form_row {
        max-width: 83%;
    }

    .width_at_low {
        max-width: 89% !important;
    }

}


@media screen and (max-width: 360px) {
    .card_deck {
        width: 241%;
    }

    .call_number {
        left: 3%;
    }
}