html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
}

h1,
h2,
p,
span,
li,
a {
    font-family: 'Poppins', sans-serif !important;
}

header {
    position: relative;
}

header .row {
    background: unset;
    border-radius: var(--bigRadius);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    box-shadow: 0 3px 16px rgb(0 0 0 / 6%);
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 769px) {
    header .row .col {
        box-shadow: unset;
    }
}


.colored-text {
    color: var(--secondaryColor);
}

.section-block {
    /* display: flex;
    flex-direction: column;
    justify-content: flex-end; */
    margin: 50px;
    font-family: Poppins;
}

.section-block h1 {
    margin-top: 30px;
    font-size: 24px;
    text-align: right;
}

.section-block .block-description {
    color: #666666;
    font-size: 14px;
    margin-bottom: 40px;
}

.section-block .btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-block .btn {
    border: 1px solid #F7C531;
    border-radius: 12px;
    font-size: 14px;
    padding: 8px 24px;
    min-width: 200px;
}

.section-block .colored-button {
    background: #F7C531;
}

.text-center {
    text-align: center;
}

.feature-text span {
    font-size: 30px;
}

.feature-text p {
    font-size: 22px;
}


.landing .feature {
    margin-top: 30px;
    font-size: 12px;
}

p.feature {
    color: black;
    font-size: 30px;
    font-family: Poppins;
    font-weight: 600;
    letter-spacing: 0.60px;
    word-wrap: break-word
}

.section-block h1 img {
    width: 60px;
    display: inline;
}

.section-block ul li {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    max-width: 600px;
    margin: 50px;
    text-align: right;
}

.section-block ul li img {
    display: inline;
}

.block {
    height: 5em;
    line-height: 5em;
    width: 10em;
    background: #464646;
    color: #fdfdfd;
    text-align: center;
    margin: 1em auto;
    text-shadow: 0 0 1px #333;
    /* so one can see fadeBgColor properly */
}

/* @media(min-width: 768px){ */

.animatable {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */
.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-200px);
    }

    60% {
        -webkit-transform: translateX(20px);
    }

    80% {
        -webkit-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-200px);
    }

    60% {
        -moz-transform: translateX(20px);
    }

    80% {
        -moz-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-200px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(20px);
    }

    80% {
        -o-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }

    60% {
        transform: translateX(20px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(200px);
    }

    60% {
        -webkit-transform: translateX(-20px);
    }

    80% {
        -webkit-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(200px);
    }

    60% {
        -moz-transform: translateX(-20px);
    }

    80% {
        -moz-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(200px);
    }

    60% {
        -o-transform: translateX(-20px);
    }

    80% {
        -o-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }

    60% {
        transform: translateX(-20px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3);
    }

    50% {
        -moz-transform: scale(1.05);
    }

    70% {
        -moz-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3);
    }

    50% {
        -o-transform: scale(1.05);
    }

    70% {
        -o-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -o-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes moveUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes moveUp {
    0% {
        opacity: 1;
        -o-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@-o-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

.animated.animationDelay {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
}

.animated.animationDelayMed {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.animated.animationDelayLong {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
}

.animated.fadeBgColor {
    -webkit-animation-name: fadeBgColor;
    -moz-animation-name: fadeBgColor;
    -o-animation-name: fadeBgColor;
    animation-name: fadeBgColor;
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

.animated.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

.animated.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated.moveUp {
    -webkit-animation-name: moveUp;
    -moz-animation-name: moveUp;
    -o-animation-name: moveUp;
    animation-name: moveUp;
}

/* } */


.warning-card {
    border-radius: 25px;
    border: 1px solid #EEBD23;
    background: #FFFDF7;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.06);
    height: 300px;
    width: 100%;
    margin-top: 20px;
}

.danger-card {
    border-radius: 25px;
    border: 1px solid #E71D36;
    background: #FFF;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.06);
    height: 300px;
    width: 100%;
    margin-top: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.cards-wrapper .image-container {
    padding: 10px;
    border-radius: 13px;
    width: 60px;
    height: 60px;
    margin: 20px;
}

.cards-wrapper .image-container img {
    width: 40px;
}

.cards-wrapper .warning-card .image-container {
    background: rgba(255, 222, 84, 0.20);
}

.cards-wrapper .danger-card .image-container {
    background: #FFECEA;
}

.card-title {
    color: #011627;
    text-align: right;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 10px 5px;
    margin: 0;
}

.card-description {
    color: #011627;
    text-align: right;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
    padding: 0 10px;
    margin: 16px;
}

.packages-area {
    background: url('../images/landingPages/normalRestaurants/Vector4.png');
    background-size: 100% 100%;
    margin-top: 50px;
    padding: 20px;
    /* display: flex; */
    /* justify-content: center; */
}

.packages-area.moveUp.animated .row {
    justify-content: center;
}

.packages-area .package {
    background-image: url('../images/landingPages/normalRestaurants/Pic.png');
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    margin: 20px;
    flex-wrap: wrap;
    min-width: 300px;
}

.packages-area .package .package-title,
.packages-area .package .package-description,
.packages-area .package .package-price,
.packages-area .package .package-period {
    text-align: center !important;
    margin: 8px 0 0 0;
}

.packages-area .package .package-title {
    padding-top: 20px;
    border-top: 3px solid #2EC4B6;
    display: inline-block;
    margin: 5px auto;
    width: 120px;
}

.packages-area .package .package-description {
    font-size: 12px;
    color: #666;
}

.package p {
}

.packages-area .package .package-price {
    color: var(--secondaryColor);
}

.packages-area .package .package-period {
    margin: 0 0 10px;
    font-size: 14px;
}

.packages-area .package .package-features {
    /* background-image: url('../images/landingPages/normalRestaurants/package-details.png'); */
    background-size: 100% 100%;
    padding: 18px 25px 0 18px;
    margin: 10px;
    min-height: 200px;
}

.packages-area .package .package-features li {
    margin: 5px;
    background: url('../images/landingPages/normalRestaurants/gold-right.svg') no-repeat center right;
    padding-right: 20px;
    background-size: 15px;
    text-align: right;
}

.packages-area .package .buy-now {
    border: 2px solid #ff3d00;
    border-radius: 12px;
    font-size: 14px;
    padding: 6px 24px;
    font-size: 14px;
    display: inline-block;
    margin: 5px auto 16px;
    color: #ff3d00;
}

.packages-area .package:nth-child(2) .buy-now {
    border: 2px solid #ff3d00;
    background-color: #ff3d00;
    color: #fff;
}

.partners {
    overflow-x: scroll;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.partners img {
    width: 80px;
    margin: 10px 3rem;
}

.contact-us {
    /* background: rgba(102, 102, 102, 0.14); */
    padding: 20px;
    /* width: 100vw; */
    text-align: right;
}

.contact-us .contacts.d-flex {
    flex-direction: column !important;
}

.contact-us input,
textarea {
    width: 100%;
    border-radius: 6px;
    background: #FFF;
    padding: 15px !important;
    border: 1px solid #aba7a7;
    margin: 5px;
    min-height: 50px;
    font-size: .9em;
}

.contact-us img {
    display: inline;
    margin: 0 15px 0 5px;
    width: 15px;
}

.contact-us .title {
    font-size: 12px;
    margin: 16px 0;
    display: block;
}

.contact-us .description {
    font-size: 14px;
    color: #666;
}

.contact-us button {
    border-radius: 10px;
    background: var(--secondaryColor, #FF3D00);
    color: #fff;
    padding: 8px 20px;
    width: 200px;
}

footer {
    padding: 20px;
}

footer p {
    margin: 10px 0 0;
    text-align: right;
}

footer .logo {
    display: flex;
    top: unset;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

footer a.logo img {
    width: 60px;
    height: auto;
}

footer .footer-links {
    justify-content: space-around;
    text-align: right;
}

.footer-links.d-flex ul {
    /* margin-left: 20px; */
    flex: 1;
}

.footer-links.d-flex li {
    margin-top: 5px;
    text-align: right;
}

footer li a {
    color: #666;
}

footer ul {}

footer ul li {
    color: #666;
    margin-top: 9px;
    font-size: 14px;
}

footer ul li img {
    display: inline;
    width: 24px;
    height: 24px;
    margin: 5px 5px 0;
}

footer .social-links img {
    width: 30px;
    height: 30px;
}

.sidenav {
    /* height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px; */
    padding-top: 10px;
}

#sidenav {
    /* width: 0;
    display: none; */
}

.sidenav .closebtn {
    /* position: absolute; */
    /* top: 0; */
    /* right: 25px; */
    /* font-size: 36px; */
    /* margin-left: 50px; */
}

.contact-us p a {
    color: #000;
}

.packages-container {
    display: flex;
    width: 100%;
    overflow-y: scroll;
    justify-content: center;
}

@media(min-width: 768px) {
    .prl-3 {
        padding-right: 20px;
    }

    .pll-3 {
        padding-left: 20px;
    }
}

@media(max-width: 767px) {
    header .logo {
        order: 2;
        position: unset;
    }

    .mobile ul {
        order: 1;
        flex: unset;
    }

    .side-btns {
        order: 3;
        width: unset;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .section-block {
        margin: 0px;
        text-align: right;
    }

    .section-block ul li:nth-child(2) {
        display: none;
    }

    .section-block h1 {
        margin-top: 16px;
        font-size: 14px;
    }

    .row.bordered {
        border-radius: 20px;
        border: 0.2px solid var(--yellow, #F7C531);
        background: #FFF;
        box-shadow: 0px 4px 14px 0px #FFF5D8;
    }

    .row.bordered .col-5 {
        padding: 0;
        height: 170px;
    }

    .row.bordered .col-5 img {
        height: 100%;
        /* height: 180px; */
        /* margin-top: 30px; */
        max-width: unset;
        width: auto;
    }

    .row.bordered.r-right h1 img {
        right: -10px;
        display: none;
    }

    .row.bordered.r-left h1 img {
        left: 0;
    }

    .row.bordered.r-right .col-5 img {
        transform: rotate(-15deg) translate(-10px, 25px);
    }

img.noRotate {
    transform: rotate(0) translate(-10px, 0) !important;
}

    .row.bordered.r-left .col-5 img {
        transform: rotate(12deg) translate(15px , 20px);
    }

    .section-block .block-description {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .section-block .btns {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .section-block .btn {
        border: 1px solid #F7C531;
        border-radius: 12px;
        font-size: 12px;
        padding: 8px;
        min-width: 120px;
        margin: 0 !important;
    }

    .feature-text p {
        font-size: 16px;
        padding: 8px;
    }

    .packages-area .package .package-features li {
        font-size: 10px;
        background-size: 16px;
        text-align: right;
    }

    .section-block h1 img {
        width: 50px;
        position: absolute;
        top: -14%;
        display: none;
    }

    .section-block ul li {
        font-size: 12px;
        margin: 20px 0;
    }

    .ps-2 {
        padding-right: 5px;
        padding-left: 5px;
    }


    .warning-card {
        border-radius: 16px;
        height: 260px;
    }

    .cards-wrapper .image-container {
        padding: 10px;
        border-radius: 13px;
        width: 50px;
        height: 50px;
        margin: 8px;
    }

    .cards-wrapper .card-title {
        font-weight: 500;
    }

    .cards-wrapper .card-description {
        margin: 5px;
    }

    .contact-us p {
        font-size: 10px;
    }

    .danger-card, .warning-card {
        height: 250px;
    }

    .contact-us .description {
        font-size: 12px;
    }

    .contact-us input,
    textarea {
        padding: 10px;
    }

    footer a.logo img {
        width: 60px;
    }

    footer .footer-links {
        justify-content: space-between;
    }

    footer ul li {
        font-size: 12px;
    }

    footer ul li img {
        width: 20px;
    }

    .social-links ul li img {
        width: 30px !important;
    }

    .packages-area .package {
        margin: 5px;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        left: 25px;
        font-weight: 400;
        font-size: 36px;
        /* margin-right: 50px; */
        color: #666;
    }

    .sidenav .logo {
        display: inline-block;
        text-align: center;
        color: #fff;
        margin: 0 auto 50px;
        padding: 0 10px 10px;
        position: unset;
        background-color: #fff;
        width: 100px;
        height: 90px;
        top: 0;
    }

    .sidenav ul {
        padding: 0;
    }

    .sidenav ul li {
        margin: 5px 0;
        padding: 10px;
        text-align: right;
    }

    .sidenav ul li a {
        color: #000;
    }

.sidenav ul li a svg {
    margin: 5px;
}

    .packages-container {
        justify-content: start;
    }
    .packages-area {
        padding: 20px 0;
    }
    .packages-area .container-fluid{
        padding: 0;
    }
    .contacts.d-flex{
        flex-direction: column;
    }

}

@media(max-width: 390px){
    .row.bordered.r-right .col-5 img {
        transform: rotate(-15deg) translate(10%, 20px);
    }
    .row.bordered.r-left .col-5 img {
        transform: rotate(15deg) translate(10px, 15px);
    }
    img.noRotate {
        transform: rotate(0) translate(5%, 10px) !important;
    }
}

.twitter-tweet {
    max-width: 400px !important;
}

.page-head2 {
    position: relative;
    display: block;
    width: 100%;
    background: url(../images/background_image.jpeg) bottom / cover no-repeat;
    text-align: right;
    padding: 140px 0 0;
    margin-bottom: 30px;
}
.page-head2:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}
.page-title {
    margin: 0 auto 60px;
    color: #fff;
    text-align: center;
    font-size: 17px;
}
p.copyrights {
    text-align: center;
    font-size: 11px;
    width: 100%;
    padding: 15px 0;
    margin: 15px 0 0;
    background: var(--bg_color);
}
.copyrights a {
    color: #ff3d00;
}

.normal_users .img-div{
    height: 120px;
}
.restaurant-btns a {
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    /* margin-top: 10px; */
    transition: all 0.3s ease-in-out;
    font-family: inherit !important;
    border: 1px solid #ff3d00;
    font-weight: 500;
    width: 50%;
    text-align: center;
}
.restaurant-btns .reservation-btn{
    color: #F7C531;
    border-radius: 0 8px 5px 0;
}
.restaurant-btns .menu-btn{
    color: #ff3d00;
    border-radius: 8px 0 0 8px;
}
.restaurant-btns{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.restaurant-btns .only-menu-btn{
    color: #ff3d00;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

.restaurant-btns .menu-btn:hover, .restaurant-btns .only-menu-btn:hover{
    background: #ff3d00;
    color: #fff;
}

.restaurant-btns .reservation-btn{
    background: #F7C531;
    color: #fff;
}
