@import 'https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500&family=Roboto:wght@400;500&display=swap';

body {
    font-family: poppins, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #5d5a77;
    font-style: normal
}

p,
li,
a,
button,
span,
h5,
h6 {
    font-family: roboto, sans-serif
}

.img {
    max-width: 100%;
    transition: all .3s ease-out 0s
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.fix {
    overflow: hidden
}

a,
.button {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

a:focus,
.btn:focus,
.button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
    color: #2b96cc;
    text-decoration: none
}

a,
button {
    color: #1696e7;
    outline: medium
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

h4,
h5,
h6 {
    font-family: Poppins, sans-serif;
    color: #2c2c2c;
    margin-top: 0;
    font-style: normal;
    font-weight: 800
}

h1,
h2,
h3 {
    font-family: playfair display, serif;
    margin-top: 0
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit
}

h1 {
    font-size: 40px;
    font-weight: 700
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 10px
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #2c2c2c;
    margin-bottom: 15px
}

hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0;
    margin: 30px 0;
    padding: 0
}

a {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

label {
    color: #7e7e7e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none
}

::-moz-selection {
    background: #444;
    color: #fff;
    text-shadow: none
}

::selection {
    background: #444;
    color: #fff;
    text-shadow: none
}

*::-moz-placeholder {
    color: #555;
    font-size: 14px;
    opacity: 1
}

*::placeholder {
    color: #555;
    font-size: 14px;
    opacity: 1
}

#preloader {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0;
    top: 0;
    z-index: 999
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle
}

.loader .loader-outter {
    position: absolute;
    border: 4px solid #ffbe00;
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite
}

.loader .loader-inner {
    position: absolute;
    border: 4px solid #2a2a2a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite
}

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 105%;
    right: 30px;
    font-size: 16px;
    border-radius: 6px;
    z-index: 99;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background: #ffbe00;
    transition: 1s ease;
    border: none;
    opacity: 0
}

.scroll-top.open {
    bottom: 30px;
    opacity: 1
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%)
}

.scroll-top:hover {
    background: #ffbe00
}

.minsection {
    width: 100%;
    float: left
}

.swiper {
    width: 100%;
    height: 100%
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cover-background {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    background-position: bottom
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    padding: 7em 0;
    min-height: 537px
}

.po-ab-se {
    width: 100%;
    display: inline-block;
    position: absolute;
    padding: 7em 0;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    z-index: 9
}

.content-slider {
    text-align: center
}

.search-f {
    width: 40%;
    margin: auto;
    margin-bottom: 2em;
    position: relative
}

.search-f input {
    width: 100%;
    padding: 15px;
    border: none;
    min-height: 65px;
    background: #ffffffcf
}

.search-f .po-b {
    background: #ffbe00;
    border: none;
    font-size: 33px;
    color: #0b0320;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 62px
}

.content-slider h1 {
    color: #ffbe00;
    font-size: 50px;
    font-weight: 700
}

.content-slider p {
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    margin-bottom: 20px
}

.explo {
    background: #ffbe00;
    padding: 17px 40px;
    color: #000;
    font-size: 25px;
    border-radius: 41px;
    position: relative;
    margin-top: 1em;
    display: inline-block
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.explo i {
    margin-left: 15px
}

.animation-cer-two:hover {
    background: #252525;
    color: #ffbe00
}

.animation-cer-two:hover .line {
    border: 2px dashed #ffbe00
}

.line {
    position: absolute;
    left: 7px;
    right: 7px;
    top: 7px;
    bottom: 7px;
    border-radius: 40px;
    border: 2px dashed #252525
}

.ab-before {
    position: relative
}

.ab-before:before {
    content: "";
    position: absolute;
    width: 53%;
    height: 65%;
    background: #ffbe00; 
    left: 0;
    bottom: 0;
    border-radius: 0 80px 80px 0
}

.coock-i {
    bottom:-3em;
    left: -2em;
    position: relative;
    z-index: 9
}



.po-cer {
    position: absolute;
    right: 2%;
    bottom: 24.5%
}

.cer-img {
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.about-area .about-shape img:nth-child(1) {
    right: 0;
    top: 23%;
    max-width: 780px;
    z-index: -1
}

.about-area .about-shape img:nth-child(2) {
    right: 6%;
    top: 21%;
    width: 36px
}

.about-area .about-shape img:nth-child(3) {
    right: 19%;
    top: 28%;
    width: 36px
}

.about-area .about-shape img:nth-child(4) {
    right: 33%;
    top: 24%;
    width: 36px
}

.about-area .about-shape img:nth-child(5) {
    right: 47%;
    top: 21%;
    width: 36px
}

.about-area .about-shape img {
    position: absolute
}

.con-ab h2 {
    color: #131313;
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 20px
}

.con-ab p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 26px;
    color: #383838
}

.animation-cer-btn {
    background: #ffbe00;
    padding: 17px 30px;
    color: #000;
    font-size: 18px;
    border-radius: 41px;
    position: relative;
    margin-top: 1em;
    display: inline-block
}

.line2 {
    position: absolute;
    left: 7px;
    right: 7px;
    top: 7px;
    bottom: 7px;
    border-radius: 40px;
    border: 2px dashed #252525
}

.animation-cer-btn i {
    margin-left: 15px
}

.animation-cer-btn:hover {
    background: #252525;
    color: #ffbe00
}

.animation-cer-btn:hover .line2 {
    border: 2px dashed #ffbe00
}

.ab-before:after {
    content: "";
    position: relative;
    background-image: url(/ba2df271-67c3-4825-b3b8-059231231994.jpg);
    width: 311px;
    height: 388px;
    right: 0;
    bottom: -211px;
    background-size: cover
}

.heading h1 {
    color: #131313;
    font-size: 40px;
    font-weight: 600;
    line-height: 47px
}

.download-img:after {
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear
}

@-webkit-keyframes download-animation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(0, -20px);
        transform: translate(0, -20px)
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@keyframes download-animation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(0, -20px);
        transform: translate(0, -20px)
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

.img-box>img {
    width: 100%
}

span.po-bg {
    position: absolute;
    top: 0;
    left: 0;
    background: #191919;
    width: 126px;
    height: 100%;
    text-align: center;
    padding-top: 20%
}

.img-box {
    position: relative;
    margin-bottom: 20px
}

.min-box h5 {
    color: #3a3a3a;
    text-align: center;
    font-weight: 500;
    font-size: 20px
}

.test-special-recipes .row {
    margin: 0
}

.test-special-recipes .row .col-lg-3 {
    width: 20%;
    -webkit-box-flex: 20%;
    -ms-flex: 20%;
    flex: 20%;
    min-width: 20%;
    max-width: 20%;
    z-index: 3;
    padding: 0 7px
}

.test-special-recipes .row .col-lg-3:first-child {
    padding-left: 0
}

.test-special-recipes .row .col-lg-3:last-child {
    padding-right: 0
}

.test-special-recipes .row .col-lg-3 {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: UpDown;
    animation: UpDown;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.test-special-recipes .row .col-lg-3:nth-child(1) {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: UpDown;
    animation: UpDown;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.test-special-recipes .row .col-lg-3:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: UpDown;
    animation: UpDown;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.test-special-recipes .row .col-lg-3:nth-child(2) {
    top: 80px
}

.test-special-recipes .row .col-lg-3:nth-child(3) {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: UpDown;
    animation: UpDown;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.test-special-recipes .row .col-lg-3:nth-child(3) {
    top: 40px
}

.test-special-recipes .row .col-lg-3:nth-child(4) {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: UpDown;
    animation: UpDown;
    -webkit-animation-duration: 13s;
    animation-duration: 13s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.test-special-recipes .row .col-lg-3:nth-child(4) {
    top: -40px
}

.test-special-recipes .row .col-lg-3:nth-child(5) {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: UpDown;
    animation: UpDown;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@keyframes UpDown {}

.test-special-recipes .one-home-menu a {
    display: block;
    position: relative
}

.test-special-recipes .col-lg-3 .one-home-menu a span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
    font-size: 20px;
    line-height: 56px;
    color: #ffbe00;
    font-weight: 500
}

.one-home-menu {
    position: relative
}

.test-special-recipes .col-lg-3 .one-home-menu:before {
    content: "";
    position: absolute;
    background-image: url(../images/line.png);
    width: 100%;
    left: 0;
    right: 0;
    z-index: 9;
    height: 200px;
    background-size: contain;
    bottom: 0
}

.test-special-recipes {
    background-color: #ffbe00;
    position: relative
}

.test-special-recipes:before {
    content: "";
    position: absolute;
    background-image: url(../images/bg-food.png);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0
}

.min-h h1 {
    color: #0c0c0c;
    font-size: 99px;
    text-align: center;
    line-height: 1;
    opacity: .8;
    margin-bottom: .6em
}

.view-r {
    float: right;
    margin-right: 2em;
    background: #031b1f;
    color: #ffbe00;
    position: absolute;
    right: 2.5em
}

.view-r .line2 {
    border: 2px dashed #ffbe00
}

.view-r:hover {
    background: #000;
    color: #ffbe00
}

.heading-top {
    text-align: center
}

.heading-top h1 {
    color: #131313;
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 15px
}

.heading-top p {
    font-size: 19px;
    font-weight: 400;
    color: #4a4949
}

.heading-top .span-one {
    position: relative
}

.heading-top .span-one:before {
    content: "";
    position: absolute;
    background-image: url(../images/left-s.png);
    height: 4px;
    width: 320px;
    left: -13.5em;
    top: 1.7em;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat
}

.heading-top .span-one:after {
    content: "";
    position: absolute;
    background-image: url(../images/right-s.png);
    height: 4px;
    width: 320px;
    left: 2.8em;
    top: 1.7em;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat
}

.img-s {
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0 0 20px 0 #dddddd82;
    box-shadow: 0 0 20px 0 #dddddd82
}

.po-i .img-se {
    height: 45px;
    margin-top: 25px;
    margin-bottom: 15px
}

.po-i {
    text-align: center;
    position: absolute;
    z-index: 9;
    bottom: 10px;
    background: #ffbe00;
    width: 155px;
    height: 155px;
    border-radius: 100%;
    left: 0;
    right: 0;
    margin: auto
}

.po-i h5 {
    margin-top: 0;
    color: #111;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px
}

.po-i h5 a {
    color: #111
}

.po-i h5 a:hover {
    color: #111
}

.po-i:before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: 0 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    z-index: -1;
    border: 2px dashed #252525;
    -webkit-animation: rotate 9s linear infinite;
    -moz-animation: rotate 9s linear infinite;
    -ms-animation: rotate 9s linear infinite;
    -o-animation: rotate 9s linear infinite;
    animation: rotate 9s linear infinite
}

.img-cer {
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.af-fo-i {
    position: absolute;
    top: -15%;
    left: -10%
}

.af-fo-i img {
    width: 240px
}

.af-fo-i2 {
    position: absolute;
    left: 5em
}

.af-fo-i2 img {
    width: 114px;
    opacity: .1;
    -webkit-animation: review-animation 8s infinite linear;
    animation: review-animation 8s infinite linear
}

.af-fo-i3 {
    position: absolute;
    right: -8em;
    top: 3em
}

.af-fo-i3 img {
    width: 244px
}

.po-r {
    position: relative;
    overflow: hidden
}

@-webkit-keyframes review-animation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(-50px, 0);
        transform: translate(-50px, 0)
    }

    10% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@keyframes review-animation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(-50px, 0);
        transform: translate(-50px, 0)
    }

    10% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

.heading-top .span-one-2:before {
    content: "";
    background-image: url(../images/y-left-s.png)
}

.heading-top .span-one-2:after {
    content: "";
    background-image: url(../images/y-right-s.png)
}

.bg-img {
    width: 100%;
    position: relative;
    background-image: url(../images/bg-scer.png);
    background-position: top center
}

.bg-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.69);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0
}

.w-t h1 {
    color: #ffbe00
}

.w-t p {
    color: #fff
}

.bg-w-m h4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.bg-w-m p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.menu-l {
    width: 86%;
    margin-left: 0;
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    padding: 20px 10px;
    float: right
}

.menu-left {
    width: 30%;
    margin-left: -4em;
    display: inline-block;
    float: left
}

.bg-w-m {
    width: 88%;
    padding-left: 15px;
    display: inline-block;
    float: left;
    padding-top: 6px;
    position: relative
}

.bg-w-m h4 {
    font-size: 18px;
    font-weight: 500;
    color: #191919;
    margin-bottom: 0
}

.bg-w-m hr {
    margin: 12px 0
}

.bg-w-m p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0
}

.bg-w-m h4 a {
    color: #191919
}

.menu-left img {
    border-radius: 50%
}

.price-l {
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 19px;
    font-weight: 500;
    color: red
}

.menu-l-m .col-md-4 {
    margin-bottom: 30px
}

.menu-l:hover {
    background: #ffbe00
}

.menu-l {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.menu-l:hover hr {
    background: #5d5a77;
    border-bottom: 1px solid #232323
}

.y-bg-be {
    position: relative;
    overflow: hidden
}

.y-bg-be:before {
    content: "";
    position: absolute;
    width: 36%;
    height: 100%;
    background: #ffbe00;
    top: 0
}

.min-box-w {
    width: 100%;
    display: inline-block;
    padding: 25px;
    margin-bottom: 27px;
    background-color: #2a2a2a;
    text-align: center
}

.min-box-w h2 {
    color: #ffbe00;
    font-size: 25px;
    text-align: center;
    margin-top: 12px
}

.min-box-w p {
    color: #dcdcdc;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0
}

.mar-top {
    margin-top: 4em
}

.why-t h4 {
    font-size: 17px;
    font-weight: 500;
    color: #ffbe00;
    margin-bottom: 20px
}

.why-t p {
    color: #171717
}

.why-t h2 {
    margin-bottom: 30px
}

.po-1 {
    position: absolute;
    right: 1em;
    top: 2em
}

.po-1 img {
    width: 114px;
    opacity: .1;
    -webkit-animation: review-animation 8s infinite linear;
    animation: review-animation 8s infinite linear
}

.af-fo-i-wh {
    position: absolute;
    right: -8em;
    bottom: 3em
}

.af-fo-i-wh img {
    width: 244px
}

.y-bg-be:after {
    content: "";
    position: absolute;
    width: 36%;
    height: 100%;
    background-image: url(../images/mural-shape-bg.png);
    top: 0;
    background-size: cover;
    background-repeat: no-repeat
}

.why-c {
    position: relative;
    z-index: 9
}

.container-full .row {
    margin: 0
}

.bg-img-b {

    background-image: url(../images/book-bg.png);
    position: relative
}

.bg-img-b:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(3, 27, 31, 0);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0
}

.cer-book {
    position: relative
}

.img-chef-img {    
    height: 464px;
    margin-right: 0px;
    width: 386px;
    display: block;
    margin: 0 auto;
    float: none;
    background: #ffbf0000;
    min-height: 464px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden
}

.dor-bor {
    width: 280px;
    height: 280px;
    border: 2px dashed #ffffff;
    display: block;
    margin: auto;
    float: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 50%;
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.dor-bor1 {
    width: 446px;
    min-height: 446px;
    border: 2px dashed #ffbe00;
    display: block;
    margin: auto;
    float: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 50%;
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.po-img-book {
    position: absolute;
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite;
    z-index: 9
}

.po-b1 {
    left: 11%;
    top: -19%
}

.po-b2 {
    left: 40%;
    top: -69%
}

.po-b3 {
    left: 69%;
    top: -15%
}

.po-b4 {
    right: 13%;
    top: 71%
}

.po-b5 {
    bottom: -65%;
    right: 40%
}

.po-b6 {
    bottom: -24%;
    left: 12%
}

.pd-250 {
    padding-top: 200px;
    padding-bottom: 200px
}

.round-s {}

.bg-y {
    background: #ffbe00;
    position: relative
}

.bg-y:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/mural-shape-bg.png);
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    right: 0
}

.booking-form {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 9
}

input.fill-co {
    width: 100%;
    padding: 10px;
    min-height: 55px;
    background: #e5e6e6;
    border: none;
    border-radius: 4px;
    font-size: 13px
}

.pl-5 {
    padding-left: 5px !important
}

.pr-5 {
    padding-right: 5px !important
}

.booking-form h2 {
    color: #131313
}

.booking-form p {
    color: #282828;
    font-size: 15px;
    font-weight: 400
}

.form-b {
    border-radius: 5px;
    width: 100%;
    border: none;
    margin-top: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    font-weight: 500
}

.form-b .line2 {
    border-radius: 0
}

.social-t li {
    float: left
}

.n-d h3 {
    font-weight: 500;
    font-size: 26px;
    color: #131313;
    margin-bottom: 2px;
    margin-top: 23px
}

.team-s h5 {
    font-size: 15px;
    font-weight: 400;
    margin: 9px 0;
    color: #535353
}

.social-t {
    width: auto;
    text-align: center;
    display: inline-block;
    float: none;
    margin-top: 20px
}

.social-t li:first-child a {
    margin-left: 0 !important
}

.social-t li a {
    float: left;
    width: 40px;
    height: 40px;
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%);
    display: inline-block;
    margin-left: 16px;
    border-radius: 50%;
    line-height: 40px;
    color: #fff
}

.facebook-change-co {
    background: #23a1cf;
    color: #fff
}

.twitter-change-co {
    background: #88d9f7;
    color: #fff
}

.pinterest-change-co {
    background: #f5235d;
    color: #fff
}

.linkedin-change-co {
    background: #1893da;
    color: #fff
}

.team-s {
    position: relative;
    background: #fff;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%);
    padding-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    padding-top: 60px
}

.team-s:before {
    content: "";
    position: absolute;
    background-color: #ffbe00;
    width: 100%;
    height: 41%;
    left: 0;
    top: 0
}

.team-s:after {
    content: "";
    position: absolute;
    background-image: url(../images/mural-shape-bg.png);
    width: 100%;
    height: 41%;
    left: 0;
    top: 0;
    background-size: cover
}

.min-t {
    position: relative
}

.img-t {
    background: #454440;
    display: inline-block;
    width: 159px;
    height: 159px;
    overflow: hidden;
    z-index: 9;
    position: relative;
    border-radius: 50%
}

.img-t img {
    width: 76%
}

.img-t2 {
    width: 171px;
    height: 171px;
    border: 2px dashed #080808;
    display: block;
    margin: auto;
    float: none;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    border-radius: 50%;
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.over-h {
    position: relative;
    overflow: hidden
}

element.style {}

.testmonial-box-two {
    display: inline-block;
    overflow: hidden
}

.testmonial-box {
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/10%);
    background: #fff;
    padding: 20px;
    position: relative;
    border-radius: 5px
}

.left-i {
    width: 25%;
    display: inline-block;
    position: relative;
    text-align: center;
    float: none;
    margin-top: 6%;
    margin-left: 0
}

.left-i .img-user {
    position: relative;
    margin-top: 13%
}

.right-side {
    width: 72%;
    float: right
}

.right-t {
    margin-top: 8px
}

.right-side .right-t h4 {
    font-size: 19px;
    font-weight: 500;
    color: #282828
}

.right-side .right-t p {
    font-size: 15px;
    margin-bottom: 8px
}

.right-t p {
    color: #666;
    line-height: 20px;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px
}

.right-t ul li {
    display: inline-block
}

.right-t ul li i {
    color: #ecad0e
}

.right-side .dis-test {
    margin-bottom: 0
}

.dis-test {
    width: 100%;
    margin: 15px 0;
    margin-top: 5px;
    display: inline-block
}

element.style {}

.right-side .dis-test p {
    margin-bottom: 0px !IMPORTANT;
    color: #282828;
    margin-top: 5px
}

.dis-test p {
    font-size: 14.5px;
    font-weight: 400;
    color: #515151;
    line-height: 23px;
    margin-bottom: 0
}

.testmonial-box:after {
    content: "";
    position: absolute;
    background-image: url(../images/l-co.png);
    width: 89px;
    height: 60px;
    background-size: contain;
    bottom: 0;
    right: 11px;
    opacity: .4;
    background-repeat: no-repeat
}

.left-i img {
    z-index: 9;
    position: relative;
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    border-radius: 50%
}

.img-user {
    float: none;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0;
    border-radius: 50%;
    text-align: center;
    margin: auto;
    display: inline-block;
    margin-top: 0px !IMPORTANT
}

.owl-stage {
    padding: 20px 0
}

.line-c {
    border: 2px dashed #ffbe00;
    display: block;
    margin: auto;
    float: none;
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.bg-bl {
    background: #fff;
    position: relative
}

.bg-bl:before {
    content: "";
    position: absolute;
    background-color: #031b1f;
    width: 100%;
    height: 65%;
    top: 0
}

.owl-theme button {
    width: 46px;
    height: 46px;
    background: #fff !important;
    display: inline-block !important;
    float: left !important;
    border: 1px solid #000 !important;
    margin-right: 15px;
    margin-top: 15px;
    border-radius: 3px
}

.bg-app {
    background-image: url(../images/bg-app.png);
    background-size: cover
}

.app-se ul li {
    float: left;
    margin-right: 10px
}

.app-se h2 {
    margin-bottom: 20px;
    color: #000;
    font-size: 43px;
    line-height: 54px
}

.sub-banner {
    width: 100%;
    background-image: url(../images/sub-banner.png);
    display: inline-block;
    position: relative
}

.sub-banner:before {
    content: "";
    position: absolute;
    background: rgb(6 6 6/88%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.text-line h1 {
    color: #ffffff;
    font-size: 54px;
    position: relative;
    font-weight: 500;
    padding-bottom: 18px;
    margin-bottom: 20px
}

.text-c {
    display: inline-block;
    color: #fff
}

.text-line ul li {
    float: left;
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: 500
}

.color-t {
    color: #ffbe00
}

.about-p {
    position: relative
}

.about-p:before {
    content: "";
    position: absolute;
    width: 25%;
    height: 100%;
    background: #ffbe00;
    top: 0
}

.min-ab {
    position: relative
}

.two-i {
    position: absolute;
    right: -13%;
    top: 69%;
    width: 79%
}

.video-p {
    width: 90px;
    height: 90px;
    background: #191919;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    font-size: 57px;
    color: #fff;
    position: relative
}

.video-p:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: 0 0;
    left: -10px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    border: 2px dashed #191919;
    -webkit-animation: rotate 9s linear infinite;
    -moz-animation: rotate 9s linear infinite;
    -ms-animation: rotate 9s linear infinite;
    -o-animation: rotate 9s linear infinite;
    animation: rotate 9s linear infinite
}

a.video-p {
    position: absolute;
    bottom: -43%;
    left: 7%
}

.bf-in {
    position: relative
}

.bf-in:before {
    content: "";
    position: absolute;
    width: 95.2%;
    background-color: #f8f8f8;
    height: 65%;
    top: 0
}

.min-con-h {}

.min-con-h h4 {
    font-size: 15px;
    font-weight: 500;
    color: #ffbe00;
    margin-bottom: 14px;
    text-transform: uppercase
}

.min-con-h h2 {
    color: #131313;
    font-size: 40px;
    font-weight: 600;
    line-height: 58px;
    margin-bottom: 20px
}

.min-con p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #252525;
    padding-right: 40px
}

.ser-box {
    background: #ffb206;
    padding: 25px;
    position: relative
}

.min-s-n {
    position: absolute;
    right: 8%;
    top: 4%;
    font-size: 80px;
    opacity: .6
}

.min-cont-s {
    margin-top: 13px;
    display: inline-block
}

.min-cont-s h3 {
    color: #252525;
    font-size: 31px;
    margin-bottom: 15px
}

.min-cont-s p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
    color: #252525
}

.po-i-s {
    position: absolute
}

.icon-b-s {
    position: relative;
    width: 100%;
    display: inline-block;
    float: left;
    height: 100px
}

.ser-box,
.two-i-s,
.one-i-s {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.ser-box:hover {
    background-color: #0f0f0f
}

.two-i-s {
    opacity: 0
}

.ser-box:hover .two-i-s {
    opacity: 1
}

.ser-box:hover .one-i-s {
    opacity: 0
}

.ser-box:hover .min-s-n {}

.ser-box:hover .min-cont-s h3 {
    color: #ffb206
}

.ser-box:hover .min-cont-s p {
    color: #b0afaf
}

.af-fo-i6 {
    position: absolute;
    left: 3em;
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear;
    top: 3em
}

.min-s-ab {
    width: 100%;
    display: inline-block
}

.min-top {
    min-height: 276px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.pd-0-to-0 .col-md-4 {
    padding: 0
}

.min-top h3 {}

.min-top p {}

.min-top .min-cont-s h3 {
    color: #131313;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600
}

.min-s-ab:hover .ser-box {
    background-color: #0f0f0f
}

.min-s-ab:hover .min-cont-s p {
    color: #b0afaf
}

.min-s-ab:hover .min-cont-s h3 {
    color: #ffb206
}

.af-fo-i8 {
    position: absolute;
    left: -15%;
    bottom: 4%;
    top: inherit
}

.af-fo-i8 img {
    width: 350px
}

.af-fo-i31 {
    position: absolute;
    right: -7em;
    top: 1em
}

.af-fo-i16 {
    position: absolute;
    right: 2em;
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear;
    bottom: 5em
}

.min-con-h p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #252525;
    padding-right: 40px
}

.icon-ch img {
    height: 73px
}

.icon-ch {
    float: left
}

.ri-ch-t h4 {
    font-weight: 500;
    font-size: 19px;
    color: #0f0f0f;
    margin-bottom: 0
}

.ri-ch-t p {
    color: #252525;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    margin-top: 5px
}

.ri-ch-t {
    float: left;
    width: 68%;
    margin-left: 7%
}

.min-con-ab-t .col-md-6 {
    margin-bottom: 20px
}

.save-bg {
    position: relative
}

.save-bg:before {
    content: "";
    position: absolute;
    width: 36%;
    height: 100%;
    background: #ffbe00;
    top: 0;
    right: 0
}

.save-bg:after {
    content: "";
    position: absolute;
    width: 36%;
    height: 100%;
    background-image: url(../images/mural-shape-bg.png);
    top: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat
}

.po-coock {
    position: absolute;
    z-index: 9;
    bottom: 0;
    right: 3%
}

.af-fo-i161 {
    position: absolute;
    right: -6%;
    top: -16%
}

.af-fo-i31 img {
    width: 280px
}

.bg-gray-be {
    position: relative
}

.bg-gray-be:before {
    content: "";
    position: absolute;
    background-color: #f8f8f8;
    width: 64%;
    bottom: 0;
    top: 0
}

.min-test {
    position: relative;
    width: 100%;
    display: inline-block;
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%)
}

.min-test:before {
    content: "";
    position: absolute;
    width: 90px;
    height: 3px;
    background-color: #131313;
    left: 0;
    top: 0
}

.bg-gray-be {
    overflow: hidden
}

.test-box {
    padding: 25px;
    background: #fff;
    border: 1px solid #f5f5f6
}

.test-box ul li {
    display: inline-block
}

.test-box ul li i {
    color: #ecad0e
}

.test-box p {
    margin-bottom: 0px !IMPORTANT;
    color: #434343;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px
}

.user-view {
    padding: 10px;
    background: #ffb206;
    display: inline-block;
    width: 100%
}

.user-icon {
    width: 100px;
    float: left;
    position: relative;
    margin-right: 10px;
    text-align: center
}

.user-icon img {
    border-radius: 50%;
    width: 70px !IMPORTANT;
    height: 70px;
    margin: 0px !IMPORTANT;
    display: inline-block !IMPORTANT
}

.right-u-t h4 {
    font-size: 18px;
    font-weight: 500;
    color: #030303;
    margin: 0
}

.right-u-t p {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    margin: 0
}

.right-u-t {
    padding-top: 10px
}

.user-icon:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: 0 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px dashed #252525;
    -webkit-animation: rotate 6s linear infinite;
    -moz-animation: rotate 6s linear infinite;
    -ms-animation: rotate 6s linear infinite;
    -o-animation: rotate 6s linear infinite;
    animation: rotate 6s linear infinite
}

.min-img-ser {
    text-align: center
}

.ser-ab {
    position: relative
}

.left-ser {
    position: absolute;
    top: 7.2%;
    width: 25%;
    left: 2.9%;
    z-index: -1
}

.left-ser img {
    width: 100%
}

.right-ser {
    position: absolute;
    top: 7.2%;
    width: 25%;
    right: 4.9%
}

.right-ser img {
    width: 100%
}

.ser-about-p {
    position: relative
}

.w-t-co h4 {
    color: #fff
}

.ser-min {
    position: relative
}

.ser-min:before {
    content: "";
    position: absolute;
    background-color: #ffb206;
    width: 64%;
    bottom: 0;
    top: 0
}

.ser-min:after {
    content: "";
    position: absolute;
    background-color: #ffb206;
    width: 64%;
    height: 100%;
    background-image: url(../images/bg-food.png);
    top: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat
}

.po-r-z {
    position: relative;
    z-index: 9
}

.ser-icon-n {
    height: 69px
}

.w-t-bg {
    background: #fff;
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%)
}

a.read-ser {
    color: #252525;
    font-size: 19px;
    margin-top: 10px;
    display: inline-block
}

.ser-box:hover .min-cont-s a.read-ser {
    color: #ffb206
}

.w-t-bg .min-s-n {
    line-height: 91px
}

.mar-bottom-col .col-md-3 {
    margin-bottom: 30px
}

.w-t-bg .min-s-n {
    line-height: 91px;
    color: rgb(188 188 188/73%);
    font-size: 64px
}

.w-t-bg .min-cont-s {
    margin-top: 0 !IMPORTANT;
    display: initial;
    width: 100%
}

.w-t-bg .min-cont-s h3 {
    color: #252525;
    font-size: 28px;
    margin-bottom: 15px
}

.po-t-ser {
    position: absolute;
    right: 0;
    top: -15%;
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear
}

.be-right-s {
    position: relative
}

.be-right-s:before {
    content: "";
    position: absolute;
    width: 25%;
    height: 100%;
    background: #ffbe00;
    top: 0;
    right: 0
}

.img-cer-ser {
    position: relative
}

.img-cer-ser:before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    background: 0 0;
    left: -18%;
    right: 0;
    top: 3%;
    bottom: 0;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px dashed #252525;
    -webkit-animation: rotate 9s linear infinite;
    -moz-animation: rotate 9s linear infinite;
    -ms-animation: rotate 9s linear infinite;
    -o-animation: rotate 9s linear infinite;
    animation: rotate 9s linear infinite
}

.one-r-1 img {
    width: 120px
}

.one-r-1 {
    position: absolute;
    right: -15%;
    top: -16%;
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.two-r-2 img {
    width: 100px
}

.two-r-2 {
    position: absolute;
    right: 3%;
    top: 7%;
    -webkit-animation: rotate 30s linear infinite;
    -moz-animation: rotate 30s linear infinite;
    -ms-animation: rotate 30s linear infinite;
    -o-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite
}

.three-r-3 img {
    width: 100px;
    opacity: .2
}

.three-r-3 {
    position: absolute;
    right: 3%;
    bottom: 3%;
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear
}

.menu-box-list {
    background: #efefef
}

.img-menu-l {}

.menu-det {
    padding: 20px;
    border: 1px solid #cacaca
}

.menu-det h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #0f0f0f;
    margin-bottom: 15px
}

.test-rating {
    width: 100%;
    float: left;
    margin-bottom: 15px
}

.test-rating li {
    float: left;
    margin-right: 5px
}

.full-side-l {
    width: 100%;
    display: inline-block
}

.menu-det h4 a {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #0f0f0f;
    margin-bottom: 15px;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.full-side-l ul {}

.full-side-l ul li {}

.full-side-l ul li:first-child {
    float: left
}

.full-side-l ul li:last-child {
    float: right
}

.menu-list-mar .col-md-3 {
    margin-bottom: 30px
}

.menu-p {
    position: relative
}

.menu-p:before {
    content: "";
    position: absolute;
    width: 38%;
    height: 100%;
    background: #ffbe00;
    top: 0;
    right: 0
}

.menu-p:after {
    content: "";
    position: absolute;
    width: 38%;
    height: 100%;
    background-image: url(../images/mural-shape-bg.png);
    top: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat
}

.po-re-z {
    position: relative;
    z-index: 9
}

.icon-v {
    text-align: center;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 6px;
    background: rgb(255 255 255/82%);
    border-radius: 50%;
    line-height: 32px;
    top: 6px
}

.img-menu-l {
    position: relative
}

.test-rating li i {
    color: #fb9708
}

.current-price {
    font-weight: 600;
    color: #000
}

.menu-p {
    overflow: hidden
}

.menu-p .af-fo-i3 {
    z-index: 9
}

.af-fo-i77 {
    position: absolute;
    left: 39%;
    top: 4%;
    -webkit-animation: review-animation 8s infinite linear;
    animation: review-animation 8s infinite linear
}

.af-fo-i77 img {}

.bg-gray-l {
    background-color: #f5f5f5
}

.min-list-menu {
    background-color: #fff;
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    width: 100%
}

.img-food {
    float: left;
    width: 27%;
    margin-right: 5%
}

.img-food img {
    width: 100%;
    border-radius: 5px
}

.right-menu-d {
    display: inline-block;
    padding-top: 10px;
    width: 67%;
    float: left
}

.right-menu-d .test-rating {
    margin-bottom: 10px
}

.right-menu-d h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #0f0f0f;
    margin-bottom: 10px;
    padding-left: 32px;
    position: relative
}

.right-menu-d h4 img {
    position: absolute;
    left: 0;
    top: 5px
}

.right-menu-d h4 a {
    font-size: 18px;
    font-weight: 500;
    color: #0f0f0f;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.ma-a {
    margin: auto
}

.col-50-w {
    padding: 0;
    margin-top: 30px
}

.col-50-w .col-md-6 {
    margin-bottom: 30px
}

.bg-gray-l {
    overflow: hidden;
    position: relative
}

.af-fo-i1-right {
    bottom: 5em;
    position: absolute;
    right: 0
}

.af-fo-i1-right img {
    width: 120px
}

.af-fo-i81 {
    bottom: 0;
    position: absolute;
    left: -10%;
    top: 0;
    margin: auto;
    width: 244px;
    height: 244px
}

.af-fo-i81 img {
    width: 245px
}

.af-fo-i777 {
    position: absolute;
    right: 21%;
    top: 6%;
    -webkit-animation: review-animation 8s infinite linear;
    animation: review-animation 8s infinite linear
}

.af-fo-i777 img {}

.ye-bg-be {
    position: relative
}

.ye-bg-be:before {
    content: "";
    position: absolute;
    width: 25%;
    height: 100%;
    background: #ffbe00;
    top: 0
}

.head-m h3 {
    font-size: 35px;
    color: #000;
    margin-bottom: 16px
}

.av-me {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px
}

.av-me .left-t-m {
    float: left
}

.av-me .test-rating {
    float: right;
    width: auto;
    margin-bottom: 0
}

.left-t-m {
    font-size: 14px;
    color: #929292
}

.left-t-m b {
    color: #000;
    font-weight: 500;
    font-size: 16px
}

.m-price {
    width: 100%;
    display: inline-block;
    margin-bottom: 15px
}

.m-price .current-price {
    font-size: 20px;
    margin-right: 15px
}

.m-price .old-price {
    font-size: 20px;
    font-weight: 400
}

.m-det-c p {
    font-weight: 400;
    color: #434242;
    line-height: 29px;
    margin-bottom: 0
}

.menu-de-con {
    padding-top: 25px
}

.mod-menu .social-m {
    float: right;
    margin-top: 10px
}

.af-fo-i16-menu {
    position: absolute;
    right: 26%;
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear;
    bottom: 4em
}

.gray-bg {
    background-color: #f8f8f8
}

.tab-detail .nav-link {
    font-size: 22px;
    color: #888;
    padding: 10px 25px 15px;
    font-weight: 400
}

.tab-detail .nav.nav-tabs {
    margin-bottom: 20px
}

.tab-detail .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #0e0e0e !IMPORTANT;
    background: 0 0;
    border: none;
    border-bottom: 2px solid #0e0e0e !IMPORTANT
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent !IMPORTANT;
    color: #0e0e0e !IMPORTANT
}

.dis-con {}

.dis-con h4 {
    font-size: 20px;
    font-weight: 500;
    color: #151515
}

.dis-con ul {
    margin-bottom: 15px;
    padding-left: 20px
}

.dis-con p {
    color: #373636;
    font-weight: 400;
    line-height: 27px;
    font-size: 16px
}

.dis-con ul li {
    color: #373636;
    font-weight: 400;
    line-height: 27px;
    font-size: 16px;
    list-style: disc;
    padding-bottom: 5px
}

.list-com {
    margin-bottom: 15px
}

.comment-b-reply {
    width: 87%;
    display: inline-block;
    margin-left: 13%;
    margin-top: 10px
}

.img-user-co {
    width: 11%;
    border-radius: 50%;
    float: left;
    overflow: hidden
}

.comment-b-reply .comment-b {
    width: 88.5%
}

.comment-re h2 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 0;
    color: #000
}

.form-com {
    min-height: 49px;
    background: #f8f8f8
}

.form-com-message {
    min-height: 100px;
    background: #f8f8f8
}

.img-user-co img {
    width: 60px;
    height: fit-content;
    border-radius: 50%;
    float: left;
    border: 2px solid #f60
}

.comment-b {
    background: #272727;
    display: inline-block;
    width: 90%;
    margin-left: 11px;
    padding: 25px;
    border-radius: 5px;
    position: relative
}

.view-all button {
    border: none
}

.post-com p {
    font-weight: 400
}

button {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.comment-b h4 {
    font-size: 18px;
    font-weight: 500;
    color: #ffbe00
}

.comment-b p {
    font-size: 15px;
    color: #cbcbcb;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0
}

.po-date {
    color: #747474;
    font-size: 15px;
    position: absolute;
    right: 10px;
    top: 24px;
    font-weight: 400
}

.reply-com {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #5b5b5b;
    color: #ffc312;
    border-radius: 5px 0;
    border: none;
    width: auto;
    height: 29px;
    line-height: 29px;
    font-size: 11px
}

.user-icon {
    width: 100px;
    float: left;
    position: relative;
    margin-right: 0;
    text-align: center
}

.user-icon:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: 0 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px dashed #252525;
    -webkit-animation: rotate 6s linear infinite;
    -moz-animation: rotate 6s linear infinite;
    -ms-animation: rotate 6s linear infinite;
    -o-animation: rotate 6s linear infinite;
    animation: rotate 6s linear infinite
}

.user-icon img {
    border-radius: 50%;
    width: 70px !IMPORTANT;
    height: 70px;
    margin: 0px !IMPORTANT;
    display: inline-block !IMPORTANT
}

.post-comment {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    margin-top: 30px
}

.af-fo-i3-pd {
    position: absolute;
    left: -6em;
    bottom: 3em
}

.af-fo-i3-pd img {
    width: 168px
}

.min-ser-d {}

.min-ser-d .min-con-h h4 {
    text-align: center
}

.min-ser-d .min-con-h h2 {
    text-align: center
}

.min-ser-d .min-con-h p {
    text-align: center
}

.img-ser-s {
    margin: 20px 0
}

.dis-p-text p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #252525;
    padding-right: 40px
}

.dis-p-text h3 {
    color: #000;
    margin-bottom: 20px
}

.back-cote {
    background-color: #d7d7d7;
    padding: 20px 50px;
    margin-bottom: 20px;
    position: relative
}

.back-cote h3 {
    color: #000;
    margin: 0;
    font-size: 23px;
    line-height: 38px
}

.back-cote:before {
    content: "";
    position: absolute;
    width: 4px;
    left: 0;
    background: #ffbe00;
    top: 0;
    bottom: 0
}

.bg-w-ser-det {
    position: relative;
    overflow: hidden
}

.bg-w-ser-det .po-i-ser img {
    width: 259px
}

.round-s-1 {
    position: absolute;
    right: -8em;
    top: 37%
}

.round-s-2 {
    position: absolute;
    left: -8em;
    top: 7%
}

.round-s-3 {
    position: absolute;
    left: -8em;
    bottom: 8%
}

.round-s-01 {
    position: absolute;
    right: 1%;
    top: 8%;
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear
}

.round-s-02 {
    position: absolute;
    left: 1%;
    top: 48%;
    -webkit-animation: download-animation 3s infinite linear;
    animation: download-animation 3s infinite linear
}

.round-s-03 {
    position: absolute;
    right: 2%;
    bottom: 5%
}

.bg-yello {
    position: relative;
    background-color: #ffb206
}

.po-t .post-comment {
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%);
    margin-top: -7%
}

.po-r-d {
    position: relative;
    overflow-x: clip
}

.po-i-ser44 img {
    width: 295px
}

.po-i-ser44 {
    position: absolute;
    left: -8em;
    bottom: 26%
}

.po-i-ser445 img {
    width: 280px
}

.po-i-ser445 {
    position: absolute;
    right: -8em;
    bottom: 26%
}

.review-d h2 {
    color: #131313;
    margin-bottom: 41px;
    font-weight: 600
}

.blog-list {
    background: #f8f8f8;
    border: 1px solid #cacaca;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.blog-list:hover {
    background-color: #0f0f0f
}

.blog-list:hover .blog-dis h4 a {
    color: #fff
}

.blog-list:hover .blog-read {
    color: #ffb206
}

.img-blog {}

.blog-dis {
    padding: 20px
}

.blog-dis ul {
    width: 100%;
    display: inline-block;
    margin-bottom: 7px
}

.blog-dis ul li {
    font-size: 12px
}

.blog-dis ul li:first-child {
    float: left;
    color: #ffb206
}

.blog-dis ul li:last-child {
    float: right;
    color: #686868
}

.blog-dis h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #0f0f0f;
    margin-bottom: 15px
}

.blog-dis h4 a {
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    color: #0f0f0f;
    margin-bottom: 15px;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.blog-read {
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    color: #0f0f0f
}

.blog-l .col-md-3 {
    margin-bottom: 14px;
    padding: 0 7px
}

.blog-l .col-md-3 .min-con-h {
    padding-top: 80px
}

.blog-gb-list {
    position: relative;
    background: #f8f8f8
}

.blog-two-l {
    background-color: #fff;
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    width: 100%
}

.blog-l-two {
    float: left;
    width: 27%;
    margin-right: 5%
}

.blog-l-two img {
    width: 100%;
    border-radius: 5px
}

.blog-so-two-dis {
    display: inline-block;
    padding-top: 10px;
    width: 67%;
    float: left
}

.blog-so-two-dis ul {
    width: 100%;
    display: inline-block;
    margin-bottom: 7px
}

.blog-so-two-dis ul li {
    font-size: 12px
}

.blog-so-two-dis ul li:first-child {
    float: left;
    color: #ffb206
}

.blog-so-two-dis ul li:last-child {
    float: right;
    color: #686868
}

.blog-so-two-dis h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #3d3d3d;
    margin-bottom: 15px
}

.blog-so-two-dis h4 a {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #3d3d3d;
    margin-bottom: 15px;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.blog-two-list .col-md-6 {
    margin-bottom: 25px
}

.blog-two-l {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.blog-two-l:hover {
    background-color: #0f0f0f
}

.blog-two-l:hover .blog-so-two-dis h4 a {
    color: #fff
}

.blog-gb-list {
    overflow: hidden
}

.blog-gb-list:before {
    content: "";
    position: absolute;
    width: 18%;
    height: 100%;
    background: #ffbe00;
    top: 0;
    right: 0
}

.blog-list-min-3 {
    position: relative;
    width: 100%;
    display: inline-block;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    box-shadow: 0 0 20px 0 #dddddd82
}

.blog-list-min-3 img {
    border-radius: 5px
}

.blog-md-b-30 .col-md-4 {
    margin-bottom: 25px
}

.po-t-blog-three {
    margin: auto;
    width: 88%;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.blog-list-min-3:hover .po-t-blog-three {
    background: #ffb206
}

.blog-list-min-3:hover .po-t-blog-three ul li:first-child {
    color: #1b1b1b
}

.po-t-blog-three ul {
    width: 100%;
    display: inline-block;
    margin-bottom: 7px
}

.po-t-blog-three ul li:first-child {
    float: left;
    color: #ffb206
}

.po-t-blog-three ul li:last-child {
    float: right;
    color: #686868
}

.po-t-blog-three ul li {
    font-size: 12px
}

.po-t-blog-three h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #1b1b1b;
    margin-bottom: 0
}

.po-t-blog-three h4 a {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #1b1b1b;
    margin-bottom: 0;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.blog-md-b-30 {
    margin: auto
}

.blog-list-three {
    position: relative;
    overflow: hidden
}

.blog-det-con h2 {
    color: #131313;
    font-size: 35px;
    font-weight: 600;
    line-height: 45px;
    margin-bottom: 20px
}

.date-blog {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px
}

.date-blog ul {
    width: 100%;
    display: inline-block;
    margin-bottom: 7px
}

.date-blog ul li:first-child {
    float: left;
    color: #ffb206
}

.date-blog ul li {
    font-size: 14px
}

.min-f-t li a:hover {
    color: #ffb206
}

.bg-befor-con {
    position: relative;
    overflow: hidden
}

.bg-befor-con:before {
    content: "";
    position: absolute;
    width: 25%;
    height: 100%;
    background: #ffbe00;
    top: 0
}

.date-blog ul li:last-child {
    float: right;
    color: #686868
}

.add-con {
    padding: 14px;
    display: inline-block;
    margin-bottom: 30px;
    background: #f8f8f8;
    border: 1px solid #cacaca;
    width: 100%;
    min-height: 100px;
    vertical-align: initial
}

span.left-co-i {
    width: 60px;
    height: 60px;
    background: #ffbe00;
    display: inline-block;
    float: left;
    margin-right: 15px;
    text-align: center;
    line-height: 60px
}

span.left-co-i {
    width: 70px;
    height: 70px;
    background: #ffbe00;
    display: inline-block;
    float: left;
    margin-right: 20px;
    text-align: center;
    line-height: 70px
}

.con-text h5 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px
}

.con-text p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    color: #555;
    line-height: 22px
}

.mar-auto-add {
    margin: auto
}

.mart-0-cont {
    margin-top: 0;
    box-shadow: 0 5px 19.53px 1.47px rgb(85 80 98/19%)
}

.mart-0-cont .comment-re h2 {
    margin-bottom: 17px
}

.mart-0-cont button.animation-cer-btn {
    margin-top: 0
}

.mart-0-cont .form-com-message {
    min-height: 71px;
    background: #f8f8f8
}

.mart-0-cont .form-group {
    margin-bottom: 14px
}

.bg-befor-con .po-i-ser445 img {
    width: 259px
}

.bg-befor-con .po-i-ser44 img {
    width: 259px
}

.bg-befor-con2 {
    position: relative;
    overflow: hidden
}

.bg-befor-con2 .po-i-ser445 img {
    width: 259px
}

.bg-befor-con2 .po-i-ser44 img {
    width: 259px
}

.header-two {
    width: 100%;
    float: left
}

.header-so {
    padding: 7px 0;
    position: relative;
    background: #fff;
    box-shadow: 0 9px 37.2px 2.8px rgb(128 123 173/15%)
}

.call-email {
    display: flex;
    flex-grow: 1
}

.call-email ul {
    display: inline-block;
    margin-left: auto
}

.call-email ul li {
    display: inline-flex;
    position: relative;
    float: left;
    margin-right: 48px
}

.call-email ul li .icon-call {
    float: left;
    margin-right: 15px;
    margin-top: 1px
}

.cont-con span {
    font-size: 15px;
    color: #929292;
    font-weight: 400
}

.cont-con a {
    color: #494949
}

.call-email ul li .icon-call {
    float: left;
    margin-right: 15px;
    margin-top: 1px
}

.d-md-block-two span {
    font-size: 40px;
    color: #000;
    cursor: pointer
}

.no-dis {
    display: none
}

.gray-bg-light {
    background-color: #f8f8f8
}

ul.wi-50-ser li:before {
    content: "";
    position: absolute;
    background-image: url(../images/tick.png);
    width: 32px;
    height: 32px;
    left: 0
}

.small-check .wi-50-ser li {
    width: 100%;
    display: inline-block;
    float: left;
    line-height: 34px;
    font-weight: 400;
    color: #0f0f0f;
    font-weight: 500;
    padding-left: 45px;
    margin-bottom: 10px;
    position: relative
}

.com-one {
    width: 100%;
    display: inline-block
}

.typo-p {
    margin-bottom: 20px
}

.be-l {
    width: 100%;
    padding-left: 60px;
    position: relative;
    margin-bottom: 0;
    float: left
}

.be-l:before {
    content: "";
    background-image: url(../images/l-check.png);
    position: absolute;
    width: 34px;
    height: 34px;
    left: 2px;
    top: 5px
}

span.w-50.right-img {
    float: right
}

.text {
    background: #0000008f;
    padding: 30px
}

.text h6 {
    color: #fff
}

.text h1 {
    color: #fff
}

.text p {
    color: #fff;
    margin-bottom: 30px
}

.theme-btn.btn-style-orange {
    padding: 10px 15px;
    background: #ffbe00;
    color: #000;
    border-radius: 8px
}

.Categories {
    background: #000
}

.cat {
    text-align: center;
    width: 100%;
    margin-bottom: 40px
}

.cat h2 {
    color: #fff;
    margin: 0
}

.cate img {
    width: 50px
}

.cate {
    text-align: center
}

.categor {
    text-align: center;
    padding-top: 20px
}

.categor h6 {
    color: #fff;
    font-weight: 500;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.food-service img {
    width: 70px
}

.f-service h4 {
    font-size: 16px;
    margin: 0;
    padding: 10px 0;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.f-service p {
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.f-discover {
    color: #000;
    font-weight: 600;
    font-size: 15px
}

.ab-home img {
    position: relative;
    width: 70%
}

.food-img img {
    position: absolute;
    width: 230px;
    left: 50%;
    top: 15%
}

.about-home {
    position: relative
}

.about-home-home2:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 40%;
    background: #ffbe00;
    bottom: 0;
    border-radius: 0 80px 80px 0
}

.ab-list {
    font-size: 14px;
    color: #ffbe00;
    font-weight: 500;
    padding-right: 10px
}

.ab-list img {
    width: 18px
}

.right h2 {
    margin: 10px 0;
    color: #000
}

.right h2 span {
    font-weight: 400;
    color: #ffbe00
}

.right p {
    font-weight: 400
}

.delicious-img img {
    width: 150px;
    position: relative
}

.youtube img {
    width: 50px;
    position: absolute;
    left: 11%;
    top: 65%
}

.delicious {
    display: flex;
    border-bottom: 2px solid;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.delicious-list li {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    padding: 0 15px
}

.delicious-list i {
    color: #ffbe00;
    padding-right: 5px
}

.ceo-btn {
    padding: 8px 15px;
    background: #ffbe00;
    border-radius: 6px;
    color: #fff
}

.ceo-btn:hover {
    color: #000;
    background: #fff;
    border: 1px solid #000
}

.ceo {
    display: flex
}

.designation {
    display: flex;
    padding-left: 30px
}

.ceo-t h4 {
    font-size: 12px;
    margin: 0
}

.ceo-t span {
    font-size: 12px;
    font-weight: 400
}

.ceo-t {
    padding: 0 14px
}

.ceo-i img {
    width: 40px
}

.count-title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #fff
}

.count-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.counter {
    background: url(../images/count-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: #000000c9
}

.b-home img {
    width: 100%
}

.b-h {
    text-align: center;
    width: 100%;
    margin-bottom: 20px
}

.b-h h2 {
    color: #000;
    margin: 10px 0
}

.b-h p {
    font-size: 16px;
    font-weight: 400
}

.blog-h-list {
    display: flex
}

.blog-h-list li {
    padding-right: 10px;
    font-size: 10px;
    color: #000
}

.blog-h-list i {
    padding-right: 5px;
    color: #ffbe00
}

.blog-h h4 {
    font-weight: 500;
    line-height: 30px;
    border-bottom: 1px solid;
    padding: 5px 0;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.blog-h:hover {
    background: #000
}

.blog-h:hover li {
    color: #fff
}

.blog-h:hover a {
    color: #fff
}

.blog-h:hover h4 {
    color: #fff
}

.blog-h-btn {
    font-size: 15px;
    font-weight: 500;
    color: #000
}

.blog-h {
    padding: 15px;
    background: #f5f5f5
}

.popular-d h2 {
    color: #000;
    margin: 0
}

.popular-d p {
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0
}

.popular-d {
    padding-left: 15px;
    margin-bottom: 20px
}

.dishes img {
    width: 100%
}

.d-n {
    font-size: 16px;
    font-weight: 500;
    background: #f5f5f5;
    width: 70%;
    margin: 0;
    padding: 10px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden
}

.dishes-name {
    display: flex
}

.dollar {
    background: #ffbe00;
    width: 30%;
    text-align: center;
    padding: 10px
}

.dis-txt p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    margin: 10px 0
}

.star {
    display: flex
}

.star li {
    color: #ffbe00
}