/** ADD YOUR AWESOME CODES HERE **/


.logo_img {
    max-height: 100px;
    padding: 5px 0;
}
.navbar-nav .nav-item {
    margin-right: 10px;
}
.index_main_h1 {
    font-style: italic;
    color: #153f8b;
}
.menu_img {
    width: 100%;
    height: 20vw;
    object-fit: cover;
    object-position: center;
}
.partner_img {
    max-height: 350px;
} 

/*.about_sec_img 
{*/ /*    height: 100%;*/ /*}*/



.menu_list_item {
    margin: 20px;
}
.menu_header {
    background-color: #153f8b;
}
.menu_header h2 {
    color: white;
    margin: auto;
}
.footer_top_contact_link {
    color: white;
    font-size: 15px;
}
.footer_top_contact_link:hover {
    color: black;
}
.menu_list_header {
    font-size: 25px;
} /*.about_img_costum {*/ /*    height: 100% !important;*/ /*}*/
.row-block {
    display: block;
}
@media (max-width: 990px) {
    .menu_list_item {
        flex-direction: column;
    }
    .menu_img {
        width: 100vw;
        height: 50vw;
    }
}
@media (max-width: 1200px) and (min-width: 990px) {
    .menu_img {
        width: 80vw;
        height: 25vw;
    }
}
@media (max-width: 989px) and (min-width: 600px) {
    .menu_img {
        width: 100vw;
        height: 40vw;
    }
} /** ADD YOUR AWESOME CODES HERE **/
.menu_item_text {
    padding: 15px;
}
.menu_item_text h4 {
    font-size: 27px;
    color: white;
}
.menu_item_text p {
    font-size: 18px;
    color: white;
}
.menu_item_text h5 {
    font-size: 20px;
    color: white;
    background-color: black;
    max-width: 85px;
    border-radius: 10px;
    padding: 8px 10px 8px 10px;
    margin: -1px;
}
.menu_item {
}
.menu_item_description {
    background-color: aquamarine;
}
.menu_item_div {
    background-color: #153f8b;
    border-radius: 15px;
}
.menu_item_div img {
    border-radius: 0 0 0 40px;
    background-color: yellowgreen;
}
.grow img {
    transition: 1s ease;
}
.grow img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 1s ease;
}
.subheading {
    color: #f34949;
} 


/*=====  End of SideNav  ======*/ 




/*======================================  =            Special Dishes            =  ======================================*/
.subheading {
    color: #f34949;
}
#gtco-special-dishes .special-number {
    position: relative;
    font-size: 60px;
}
#gtco-special-dishes .special-number:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 90px;
    width: 200px;
    height: 1px;
    background: #000;
}
#gtco-special-dishes h3 span {
    color: #f34949;
}
.dishes-text {
    padding-left: 90px;
} /*=====  End of Special Dishes  ======*/
.custum_service_btn {
    padding: 10px 20px;
    background-color: #153f8b;
    border-radius: 10px;
    font-size: 20px;
}
.custum_service_btn:hover {
    background-color: #153f8b;
    color: black;
}
.services_p {
    margin-bottom: 40px;
}

.costum_review_button {
    border-radius: 10px;
}


input, textarea {
    border-radius: 10px !important;
}



.review_box {
    background: url(images/main/review_page_bg_image_1.jpg) no-repeat center center / cover;
}

.form_items_main_div {
    margin-bottom: 25px;
    
}


.form_main_div {
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    padding: 25px 25px;
    background-color: rgb(255, 255, 255, 0.9);
    box-shadow: 10px 5px 5px 10px #ccc;
}



.contact-section {
    width: 100%;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0rem 1rem;
  }
  
  .contact-intro > * + * {
    margin-top: 1rem;
  }
  
  .contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
  }
  
  .contact-description {
    color: rgb(107 114 128);
  }
  
  .form-group-container {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-label {
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 3rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .form-input::placeholder,
  .form-textarea:focus-visible {
    color: #6b7280;
  }
  
  .form-input:focus-visible,
  .form-textarea:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background-color: #3124ca;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
  }




  .rating {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row-reverse; /* this is the magic */
    justify-content: flex-end;
  }
  
  .rating input {
    display: none;
  }
  
  .rating label {
    font-size: 24px;
    cursor: pointer;
  }
  
  .rating label:hover,
  .rating label:hover ~ label { /* reason why the stars are in reverse order in the html */
    color: orange;
  }
  
  .rating input:checked ~ label {
    color: orange;
  }
  


  .card-body i {
    color: orange;
  }