:root {
    --font1: 'IBM Plex Sans', sans-serif;
    --font2: 'Tactic Round Bld';
    --base: #840000;
    --light: #fbfbfa;
    --dark:#000;
    --base1:#840000;
    --base2:#404041;
}

::selection {
    background: var(--base);
    color: var(--light);
}

@font-face {
    font-family: 'Tactic Round Bld';
    src: url('font/TacticRound-Bld.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



html,
body {
    min-height: 100vh;
    font: 400 15px/1.4 var(--font1);
    color: var(--dark);
}

body {}

a {
    color: inherit;
    transition: all 0.5s ease-out;
}

a:hover {
    text-decoration: none;
    color: var(--base);
}

button:active,
button:focus,
a:active,
a:focus {
    outline: none;
}

img {
    width: 100%;
}

strong {
    font-weight: 700;
}

h1,
h2,
h3 {
    font-family: var(--font2);
}

h1 {
    font-size: 50px;
    line-height: 1;
    color: var(--dark);
    margin: 0 0 15px;
}

h1 span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: var(--font1);
}

h2 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1;
    color: var(--dark);
    margin: 0 0 15px;
}

h2 span {
    color: var(--base1);
}

p {
    font-size: 14px;
    margin: 0 0 15px;
    font-weight: 500;
}

.offer {
    text-align: center;
    padding: 100px 0;
    background-image: url(img/offer.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.offer ul {
    list-style: none;
    padding: 0;
}

.offer_content {
    padding: 50px;
    background: rgba(162, 75, 133, .7);
    background-size: cover!important;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 49%);
    border-radius: 10px;
}

.offer_content h3 {
    font-family: var(--font1);
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 30px;
}

.offer_content {
    padding: 50px;
}

.main_content_offer li {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}

.offer_content h5 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    color: var(--primary);
}

.offer_content h2 {
    font-weight: bold;
    font-size: 60px;
    color: #fff;
}

.offer_content h4 {
    font-weight: bold;
}

.offer_content h5 span {
    color: var(--primary)
}

@media (max-width:992px) {
    .main_content_offer li {
        font-size: 15px;
    }
    .offer_content h5 {
        font-size: 15px;
        font-weight: bold;
    }
    .offer_content h5 span {
        display: block;
    }
    .offer_content h3 {
        font-size: 25px;
    }
    .offer_content h2 {
        font-size: 40px;
    }
    .offer_content h4 {
        font-size: 18px;
    }
    h1 {
        font-size: 70px;
    }
}

.btn {
    padding: 10px 15px;
    background: var(--base1);
    border: 0;
    font-size: 20px;
    color: var(--light);
    border-radius: 2px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0px;
    transition: all 0.3s ease-out;
}

.btn:hover {
    background: var(--base1);
    color: #ffffff;
}

.btn.base {
    background: var(--base);
    color: var(--dark);
    border-color: var(--base);
}

.btn.base:hover {
    background: var(--light);
    color: var(--dark);
}

.divider {
    left: 0;
    position: absolute;
    bottom: 0;
    height: 50px;
    z-index: 50000;
}

header.on,
header.in {
    background: #fff;
}

.orderss {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 88888;
    width: 100%;
    text-align: center;
    width: 25%;
}

.btnn a {
    width: 50%;
    border: 2px solid var(--light);
    margin-bottom: 5px;
    padding: 10px 20px;
    background: var(--base1);
    font-size: 20px;
    font-weight: 600;
    color: var(--light);
    margin-left: 5px;
}

.btnn {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

@media (max-width:992px) {
    .orderss {
        width: 90%;
    }
    .btn {
        padding: 8px 10px;
        font-size: 16px;
    }
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1100;
    transition: all 0.5s;
}

header .add {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.5s ease-out;
    height: 20px;
    overflow: hidden;
    background: var(--base1);
    display: block;
}

header .add .msg,
header .add a {
    display: inline-block;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: var(--light);
    padding: 0 10px;
    display: block;
}

header .add a:hover {
    color: #ffc107;
}
header .add.fixed.animate {
    top: 0px;
    transition: all 1s ease-out;
}
header .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-out;
    background-color: var(--base2);
    box-shadow: 0 0 7px #00000045;
    padding: 7px 0;
}

header .nav .logo {
    display: block;
    width: auto;
    padding: 0;
}

header .nav .logo img:last-child {
    display: none;
}

header.on .nav .logo img:last-child,
header.in .nav .logo img:last-child {
    display: block;
}

header.on .nav .logo img:first-child,
header.in .nav .logo img:first-child {
    display: none;
}

header .nav .logo img {
    height: 60px;
    width: auto;
    transition: all 0.5s;
}

header .nav nav {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    margin: 0;
    height: 60px;
}

header .nav nav a {
    display: block;
    padding: 20px 20px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.discount {
    margin-top: -5px;
}
header.on .nav nav a,
header.in .nav nav a {
    color: var(--light);
}

header.on .nav nav a:hover,
header.in .nav nav a:hover {
    color: #630A10;
}

header.on .nav nav a.active:after,
header.in .nav nav a.active:after,
{
    border-color: var(--base);
}

header .nav nav a.cta {
    display: flex;
    align-items: center;
    color: rgb(248 249 250);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0px;
    position: relative;
    background-color: var(--base1);
    border-radius: 4px;
    margin: 6px;
}

header .nav nav a.cta small {
    text-align: center;
    display: block;
}

header .nav nav a.cta:hover {
    background: var(--base);
    color: var(--dark);
}

header .nav nav a:not(.cta):after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    position: absolute;
    transition: all 0.3s;
}

header .nav nav a.active:after {
    border-bottom: 2px dashed var(--base1);
}

header .nav nav a:hover {
    color: #ffc107;
}

header .order.btn {
    display: none;
}

header .nav #toggler {
    display: none;
    margin: 0;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    font-size: 30px;
    background: none;
    border: 2px solid var(--base1);
    color: var(--base1);
    border-radius: 0;
    cursor: pointer;
}

header.on .nav #toggler,
header.in .nav #toggler {
    color: var(--base1);
    border: 2px solid var(--base1);
}

header.on .add {
    padding: 0;
}

header.on .nav {
    border-top: 0;
    border-radius: 0 0 3px 3px;
    padding: 10px 10px;
}

header.in {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

header.on .order.btn,
header.in .order.btn {
    border: 1px solid var(--primary);
}

header .cta {
    background: #fff;
}

header .cta:hover {
    background: #f36e4d!important;
    color: #ffffff!important;
}

header.in .cta,
header.on .cta {
    background: transparent;
    color: var(--primary);
}

header.in .cta:hover,
header.on .cta:hover {
    border: 1px solid var(--primary);
}

@media (max-width:992px) {
    header .add {
        justify-content: center;
        height: auto;
        flex-wrap: wrap;
        padding: 5px 0;
        text-align: center;
    }
    header .add .msg,
    header .add div,
    header .add a {
        display: block;
        font-size: 11px;
        line-height: 12px;
        padding: 0;
    }
    header .nav nav a:hover {
        color: #ffc107 !important;
    }
    header .nav {
        padding: 5px;
        box-shadow: none;
        justify-content: space-between;
    }
    header .nav .logo {
        display: block;
        width: auto;
        padding: 0;
        margin-right: 10px;
    }
    header .nav .logo img {
        height: 46px;
        width: auto;
        margin-top: 5px;
        margin-left: 5px;
    }
    header .nav #toggler {
        display: block;
    }
    header .order.btn {
        display: block;
        padding: 10px 6px;
    	font-size: 17px;
        letter-spacing: 0;
        border-radius: 2px;
        background: var(--base1);
        border: 0;
        color: var(--light);
        margin-right: 10px;
    }
    header .order.btn small {
        display: block;
        font-size: 11px;
    }
    header .nav nav {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background: var(--dark9);
        width: 100%;
        height: auto;
        border-bottom: 2px solid var(--base1);
    }
    header .nav nav a {
        padding: 10px;
        color: #fff!important;
    }
    header .nav nav a.cta {
        display: none;
    }
    header .nav nav a:not(.cta):after {
        bottom: 0;
    }
}

.banner {
    position: relative;
    z-index: 10;
}

.banner .row {
    padding-top: 150px;
}

.banner .owl-banner {
    position: relative;
    z-index: 500;
}

.banner .item {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner h1 {
    margin: 0;
}


/*blue Water -- start */

.home-decor {
    padding: 0 0 50px 0;
    background-color: var(--base1);
    position: relative;
    z-index: 1;
}

.voucher_docor.z {
    background: url(img/1.png);
}

.home-decor::after {
    background-image: url(img/bg1.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background-attachment: fixed;
    opacity: .1;
}

.voucher_docor {
    padding: 50px;
    box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%) !important;
    background-size: 100% auto;
    background-repeat: no-repeat;
    text-align: center;
    border-radius: 5px;
    background: var(--light);
}
section.home-welcome {
    padding: 100px 0;
    background-image: url(img/simla.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--base2);
}
.voucher_docor.g {
    background: url(img/2.png);
    background-size: cover;
}
.voucher_docor.z h2{
    font-size: 30px;
}
.voucher_docor.g h2{
    font-size: 32px;
}
.voucher_docor h2 span,
.voucher_docor strong,
section.home-1 p {
    color: var(--base1);
    text-shadow: 0 1px 1px white;
    font-weight: 500;
}

.voucher_docor strong {
    font-family: var(--font1);
    text-transform: uppercase;
}

.voucher_docor .btn,
section.home-1 .btn {
    color: var(--light);
    background: var(--base1);
    font-family: var(--font1);
}

.voucher_docor strong {
    color: var(--base);
}

section.home-1 h2,
.home-3 h2 {
    font-family: var(--font2);
    color: var(--base1);
    font-weight: 900;
}

.home-4 .bg {
    width: calc(100% / 3 - 44px);
    margin: 15px;
    padding: 5px;
    background-color: #face7f;
    box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%) !important;
}

section.gall {
    padding: 100px 70px;
}

section.home-1 h2 span,
.home-3 h2 span {
    color: var(--dark);
    font-family: var(--font2);
    text-transform: capitalize;
}

section.home-1 h2 span,
section.home-1 h2 {
    color: #fff;
    font-size: 70px;
}

section.home-1 p {
    letter-spacing: 6px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

section.home-decor.g {
    padding: 85px 0;
}

section.home-1.g {
    background-image: url(img/after.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0 !important;
    background-color: #ffffffe6;
}
.voucher_docor.fgg p {
    font-size: 20px!important;
}
.conte_k .fgg {
    padding-top: 50px;
}
@media (max-width:992px) {
    .banner .item {
        height: 70vh;
        margin-top: 90px;
    }
}

.home-bg p {
    font-size: 27px;
    line-height: 40px;
}

.home-bg h2 {
    font-size: 50px;
}


.home-0 {
    padding: 100px 30px;
    background: url('img/home-0.jpg') no-repeat 50% 50% / cover var(--light);
    background-blend-mode: multiply;
}

.home-0 img {
    width: 100%;
    border: 3px solid var(--base);
}

@media (max-width:992px) {
    .home-decor {
        padding: 0px 0 160px 0;
    }
    section.home-1 h2 span,
    section.home-1 h2 {
        font-size: 30px;
    }
    .voucher_docor .btn,
    section.home-1 .btn {
        display: block;
    }
    .voucher_docor {
        padding: 50px 20px;
        margin-top: 0px;
        height: auto;
    }
    .voucher_docor.z {
        background: url(img/1.png);
        padding: 140px 10px 40px 10px;
    }
    .voucher_docor strong {
        font-size: 30px;
    }
    .home-bg h2 {
        font-size: 35px;
        line-height: 40px;
        text-transform: uppercase;
    }
    .home-0 {
        background: var(--base);
        padding: 30px;
        margin-bottom: 30px;
    }
    .home-0 .text {
        max-width: calc(100vw - 30px);
        justify-content: center;
        flex-wrap: wrap;
    }
    .home-0 .text h2 {
        margin: 0 0 30px;
    }
}

.home-1 {
    margin: 0;
    margin: 0;
    padding: 150px 0 150px 0;
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    background: url(img/simla2jpg.jpg);
    background-size: cover;
    background-position: 50% 50%;
    background-attachment: fixed;
}

.home-1 img {
    width: 100%;
}

.overlay {
    background: #FFF;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-1 .text {
    display: table;
    margin: 0 0 0 auto;
    width: 50%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.9);
}

.home-1 .text .btn {
    display: table;
    margin: 0 0 0 auto;
}

@media (max-width:992px) {
    .voucher_docor.g {
        padding: 36px 20px;
        margin-top: 12px;
    }
    .home-1 {
        padding: 100px 0;
        background-size: cover;
        background-position: 80% 50%;
        background-repeat: no-repeat;
    }
    .home-1 img {
        display: none;
    }
    .home-1 .text {
        margin: 0 auto;
        width: 100%;
    }
}

section.home-1.g {
    padding: 60px 0 !important;
    background-position: 20% 100%;
}

.home-2 .item {
    display: block;
    background: var(--dark);
    position: relative;
}

.home-2 .item img {
    position: relative;
    border: 3px solid var(--base);
    border-right: 0;
    z-index: 10;
}

.home-2 .item:after {
    content: "\f067";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--base);
    z-index: 30;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 30px;
    transition: all 0.5s;
}

.home-2 .item:hover:after {
    opacity: 0;
}

@media (max-width:992px) {
    .home-2 {
        margin: 0;
    }
}

.home-3 {
    padding: 100px 0;
    position: relative;
    background: url('img/dineindia_testimonial.jpg') no-repeat center / cover;
}

.home-3 .item {}

.home-3 h5 {
    color: var(--dark);
    font-size: 16px;
    margin: 0;
}

.home-3 p {
    color: var(--dark);
    font-style: italic;
    margin: 0;
    font-weight: 700;
}

.home-3 svg {
    margin: 15px 0;
    max-width: 100px;
}

.home-3 svg polygon {
    fill: #ffcb05;
}

.home-3 .owl-dots {
    margin: 20px 0 0;
}

.home-3 .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--dark);
    margin: 0 3px;
    transition: all 0.5s;
}

.home-3 .owl-dots .owl-dot.active {
    background: #face7f;
}

.home-3 .separator {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 20;
    width: 100%;
}

@media (max-width:992px) {
    .voucher_docor {
        background-size: cover;
        background-position: 60% 17%;
    }
    .home-3 {
        padding: 60px 0;
        background: url(img/gn.png);
        background-position: 48% 50%;
    }
    .home-3 p {
        font-size: 15px;
    }
    .text {
        margin-top: 50px;
    }
}

footer {}

footer .content {
    background: var(--base2);
    padding: 30px 0;
    box-shadow: 0 0 35px #00000042;
}

footer .content p {
    margin: 0 0 10px;
    color: var(--light);
    font-weight: 400;
}

footer .content a {
    display: block;
    margin: 0 0 10px;
    color: var(--light);
    font-weight: 400;
    font-size: 15px;
}

footer .content a:before {
    content: "• ";
    color: var(--base1);
}

footer .content a:hover {
    color: var(--base1);
}

footer .content a:last-child {
    margin: 0;
}

footer .content .contact {
    margin-bottom: 10px;
}

footer .content .contact img {
    width: 100%;
    max-width: 200px;
    margin: 0 0 10px;
}

footer .content .link {
    display: flex;
    justify-content: space-around;
}

footer .content .time p {
    margin: 0 0 10px;
    font-size: 20px;
}

footer .content .time table tr td {
    padding: 2px 10px;
    color: var(--light);
    font-size:13px;
}

footer .content .time table tr td:first-child {
    font-weight: 700;
}

footer .content .time table tr.active td {
    background: var(--base1);
    color: var(--light);
}

footer .copy {
    background: var(--base1);
    padding: 10px;
    font-size: 12px;
    text-align: center;
    color: var(--light);
}

@media (max-width:992px) {
    footer {
        margin: 0;
        box-shadow: 0 0 3px #0006;
    }
    footer .content a,
    footer .content p {
        display: block;
        text-align: center;
    }
    footer .content .contact img {
        max-width: 200px;
        margin: 0 auto 15px;
        display: table;
    }
    footer .content .time {
        display: none;
    }
    footer .content .time {
        display: none;
    }
}

.page-title {
    padding: 150px 0 50px;
}

#menu .item {
    width: 33%;
    padding: 0 10px 20px;
}

#menu .item .title {
    background: var(--base1);
    color: #ffffff;
    padding: 10px;
    border: 1px solid var(--base1);
}

#menu .item .title p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

#menu .item .title small {
    font-size: 12px;
    display: block;
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

#menu .content {
    padding: 20px 15px 10px;
    border: 1px solid var(--base1);
    border-top: 0;
}

#menu .content .meal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 15px;
}

#menu .content .meal .name {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

#menu .content .meal .dots {
    flex-grow: 1;
    border-bottom: 2px dashed var(--base1);
    height: 15px;
    margin: 0 10px;
}

#menu .content .meal .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

#menu .content .detail {
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
    margin: -10px 0 15px;
    color: var(--base1);
}

#menu .content .meal.sub {
    padding-left: 15px;
}

#menu .content .meal.sub .name:before {
    color: var(--base);
}

#menu .content .meal .names {
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width:992px) {
    #menu .item {
        width: 100%;
        padding: 0 0 10px;
    }
}

.gallery {
    padding: 0 0 60px;
}

.gallery #gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery #gallery a {
    display: block;
    background: var(--dark);
    margin: 10px;
    position: relative;
    width: calc(33% - 20px);
    box-shadow: 0 0 0 3px var(--base) inset;
}

.gallery #gallery a img {
    width: 100%;
    transition: all 0.4s;
    opacity: 0.8;
}

.gallery #gallery a:hover img {
    opacity: 1;
}

@media (max-width:992px) {
    .gallery #gallery a {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }
}

.contact {
    position: relative;
}

.contact-details {
    padding: 0px 0 60px;
}

.contact-details iframe.map {
    width: 100%;
    border: 0;
    height: 350px;
    position: relative;
    z-index: 10;
}

.contact-details>p {
    text-align: center;
}

.contact-details form input,
.contact-details form textarea {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-bottom: 0;
    margin: 0;
    background: transparent;
}

.contact-details form textarea {
    height: 150px;
    min-height: 150px;
    resize: vertical;
    border: 1px solid;
}

.contact-details form input:focus,
.contact-details form textarea:focus {
    box-shadow: none;
    outline: none;
    background: #ddd;
}

.contact-details form button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    margin-top: -4px;
    border-radius: 0;
}

.contact-details .social a {
    font-size: 30px;
    color: var(--base1);
    margin-right: 5px;
}

.contact-details a:hover {
    color: var(--base);
}

.contact-details .msg {
    margin-top: 20px;
}

.contact-details .msg.success {
    color: green;
}

.contact-details .msg.error {
    color: red;
}

section.contact-details {
    background: #fff7dd;
}

section.page-title {
    background-color: #fff7dd;
}
section.page-title.book {
    height: 540px;
}
section.gallery {
    background: #fff7dd;
}
.text.book{
    padding: 100px 0 0 0;
}
.mtop {
    display: none!important;
}

img.dtop {
    height: 100vh;
}

section.menu {
    background: #fff7dd;
}

.nav {
    padding-right: 15px;
}

@media (max-width:600px) {
    img.mtop {
        height: 70vh;
    }
    .contact {
        position: relative;
    }
    .dtop {
        display: none!important;
    }
    .mtop {
        display: block!important;
    }
}

.home-bg {
    background: url(http://localhost/website/dalchini/img/1.png);
    background-size: cover;
}

a.btn_oder {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #f73f47;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    border-radius: 5px;
    text-align:center;
}
@media (min-width:1500px) and (max-width:2000px) {
    .voucher_docor.fgg {
        padding: 30px 30px 30px 30px;
    }
    .conte_k .fgg {
        padding-top: 57px!important;
    }
}

.menu-3-list li {
    margin-bottom: 30px;
}
.menu-title-wrapper {
    margin: 0 0 3px;
    display: table;
}
.menu-item-title {
    position: relative;
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    padding: 0 10px 0 0;
}
.menu-item-price {
    display: table-cell;
    width: 1%;
    padding: 0 0 0 10px;
    white-space: nowrap;
}
#menu-3 .menu-item-desc p {
    font-size: 1.05rem;
    font-weight: 300;
    padding-right: 15%;
    margin-bottom: 3px;
}
.menu-item-dots {
    position: relative;
    display: table-cell;
    height: 3px;
    width: 98%;
    z-index: 1;
    background-image: radial-gradient(circle closest-side,#878889 99%,transparent 100%);
    background-position: 50% 100%;
    background-size: 5px 2px;
    background-repeat: repeat-x;
}
.lanch_menu{
    padding: 100px  0 50px 0;
}
.top_text {
    background: #233a42;
    padding: 10px 0 5px 0;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
@media (max-width: 320.95px){
    h5.h5-sm {
        font-size: 15px;
    }
.menu-3-item, .menu-4-item {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc;
}
}
.grill-post {
    border: 1px solid #233a42;
    padding: 5px;
}
@media (max-width:992px) {
    .text.book {
        padding: 0;
    }
    section.page-title.book {
        height: 485px;
    }
.btnn a {
    padding: 10px 15px;
}
.voucher_docor.fgg span{
font-size:38px;
}
section.home-welcome {
    padding: 50px 0;
}
.grill-post {
    margin: 10px 0;
    border: 1px solid #233a42;
    padding: 5px;
}
     a.btn_oder {
     font-size:15px;
     right:24px;
     }
    .voucher_docor.fgg p {
        font-size: 14px!important;
        line-height: 21px;
    }
    h5.h5-sm {
        font-size: 15px;
    }
    .voucher_docor.fgg {
        height: unset;
        padding: 20px;
        margin: 0 0 10px 0;
    }
    .voucher_docor.g {
        padding:70px 20px 30px 20px;
    }
    .home-decor.home-bg {
        padding: 50px 0 60px 0 !important;
    }
    .home-4 .bg {
        width: calc(100% / 2 - 10px);
        margin: 5px;
        padding: 1px;
        background-color: #d39e00;
        box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%) !important;
    }
    section.gall {
        padding: 0;
    }
    .voucher_docor {
        padding: 30px 20px 10px 20px;
        margin-top: 0px;
        background: #ffffffd1;
    }
    .page-title {
        padding: 100px 0 20px;
    }
    .home-bg p {
        font-size: 20px;
        line-height: 30px;
    }
    section.home-decor.g {
        padding: 37px 0;
    }
    .social {
        text-align: center;
    }
    .voucher_docor.z {
        margin-top: 30px;
    }
    .contact-details p,
    .contact-details h3 {
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }
    .contact-details .social {
        justify-content: center;
    }
    .contact-details {
        padding: 0px 0 30px;
    }
}

.tos {
    padding: 150px 0 0;
}

.tos p {
    font-size: 14px;
    line-height: 15px;
    margin: 0 0 10px;
    font-weight: 600;
    text-align: justify;
    letter-spacing: 0;
}

.tos p strong {
    font-weight: 700;
}

.g-recaptcha{
	margin:20px 0;
}
form.contact-form iframe {
    height: 90px;
}
