@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

:root {
    --primaryColor: #DF921C;
    --lightBg: #F4FCF9;
    --textColor: #4E4E4E;
    --blackColor: #111;
    --textColor: #747474;
    --whiteColor: #fff;
    --smPadding: 2rem 1.5rem;
    --lgPadding: 4rem 0
}


/* start font family */
@font-face {
    font-family: 'righteousregular';
    src: url('../font/righteous-regular-webfont.woff2') format('woff2'),
        url('../font/righteous-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gilroyLight';
    src: url('../font/Gilroy-Light.eot');
    src: url('../font/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Light.otf') format('otf'),
        url('../font/Gilroy-Light.svg#Gilroy-Light') format('svg'),
        url('../font/Gilroy-Light.ttf') format('truetype'),
        url('../font/Gilroy-Light.woff') format('woff'),
        url('../font/Gilroy-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'gilroyRegular';
    src: url('../font/Gilroy-Regular.eot');
    src: url('../font/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Regular.otf') format('otf'),
        url('../font/Gilroy-Regular.svg#Gilroy-Regular') format('svg'),
        url('../font/Gilroy-Regular.woff') format('woff'),
        url('../font/Gilroy-Regular.ttf') format('truetype'),
        url('../font/Gilroy-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'gilroyMedium';
    src: url('../font/Gilroy-Medium.eot');
    src: url('../font/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Medium.otf') format('otf'),
        url('../font/Gilroy-Medium.svg#Gilroy-Medium') format('svg'),
        url('../font/Gilroy-Medium.ttf') format('truetype'),
        url('../font/Gilroy-Medium.woff') format('woff'),
        url('../font/Gilroy-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'gilroyBold';
    src: url('../font/Gilroy-Bold.eot');
    src: url('../font/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Bold.otf') format('otf'),
        url('../font/Gilroy-Bold.svg#Gilroy-Bold') format('svg'),
        url('../font/Gilroy-Bold.ttf') format('truetype'),
        url('../font/Gilroy-Bold.woff') format('woff'),
        url('../font/Gilroy-Bold.woff2') format('woff2');
}

body,
p,
a {
    font-family: gilroyMedium;
}

h1,
h2,
h3,
h4,
h5,
header .logo-container .container .menu-links ul .links-li .link,
header .login {
    font-family: righteousregular;
}

/* end font family */

html {
    scroll-behavior: smooth;
}

/* scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* start common css section */

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.4;
    margin-bottom: 0;
}

.font-righteous {
    font-family: righteousregular;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.text-color {
    color: var(--textColor);
}

section,
footer {
    padding: var(--smPadding);
}

.btn-primary {
    background-color: var(--primaryColor) !important;
    border: 0;
    font-family: "gilroyBold";
}

.owl-carousel {
    z-index: 0 !important;
}

.form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.dash-head {
    font-family: gilroyBold;
}

.badge.back {
    border-radius: 3px;
    padding: 7px 12px;
}

.card-img-overlay {
    width: fit-content;
    margin-left: auto;
    height: fit-content;
}

.lang-switch option {
    background-color: var(--primaryColor);
}

.lang-switch option:hover,
.lang-switch option:active,
.lang-switch option:focus {
    background-color: var(--textColor);
}

.breadcrumb {
    margin-bottom: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.modal-header {
    border-bottom: 1px dashed var(--primaryColor);
}

/* end common css section */

/* start keyframe */

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        /* opacity: 0; */
    }

}

@keyframes rotate {
    0% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(20px);
    }
}

@keyframes float1 {
    0% {
        transform: translateY(50px);
    }

    50% {
        transform: translateY(80px);
    }

    100% {
        transform: translateY(50px);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(20px);
    }
}

/* end keyframe */

/* start header css */

header#topbar-menu {
    box-shadow: 0px 10px 10px 0px #ddd;
}

header .logo-container .logo {
    max-width: 120px;
}

header .logo-container .menu {
    border: 1px solid var(--whiteColor);
    padding: 4px 0 0 10px;
    border-radius: 60px;
    width: 40px;
    height: 40px;
    font-size: 21px;
}

header .logo-container .menu-links {
    width: 0;
    transition: all 0.5s;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 15;
    background-color: #252120;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

header .logo-container .menu-links .menu-toggle {
    color: #F60707;
}

header .logo-container ul .links-li {
    padding: 16px 0;
    border-bottom: 1px dotted var(--primaryColor);
    text-transform: uppercase;
}

header .logo-container ul .links-li:first-child {
    padding-top: 0;
}

header .logo-container ul .links-li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

header .logo-container .menu.active {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

header .logo-container .menu.active+.menu-links {
    padding: 15px;
    width: 100%;
}

.logo-container .menu.active+.menu-links .menu-toggle {
    display: flex;
    font-size: 30px;
}

header .sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    box-shadow: 0 0 10px grey;
    transition: 1s;
    background: #252120;
    border-bottom: 1px solid var(--primaryColor);
    padding: 1rem 1.5rem;
}

header .sticky-up {
    top: -100px;
}

header .lang-switch .form-select {
    border: 0;
    background-color: transparent;
    padding: 5px 30px 5px 5px;
    box-shadow: none;
    color: var(--lightBg);
    font-family: righteousregular;
    background-image: url('../img/down-arrow.svg');
    background-size: 13px 12px;
}

header .noti .icon {
    width: 35px;
}

header .noti .number {
    background-color: #FF0000;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    color: var(--whiteColor);
    font-size: 12px;
    text-align: center;
    position: absolute;
    top: -6px;
    right: -10px;
}

/* end header css */

/* start banner section */

.area {
    width: 100%;
    height: 100vh;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.circles {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    inset: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 50px;
    height: 50px;
    background: url('../img/glow-circle.svg') no-repeat;
    background-size: 100% 100%;
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    animation-delay: 0s;
    animation-duration: 11s;
}

.banner {
    background: url('../img/banner-bg.png') no-repeat;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
}

.banner form .input-container i {
    position: absolute;
    left: 12px;
    color: #7E7E7E;
    font-size: 18px;
    z-index: 1;
    top: 15px;
}

.banner form .input-container input {
    padding: 12px 12px 12px 35px;
}

.banner .banner-content p {
    color: #928F8D;
    font-family: "gilroyLight";
}

.banner .banner-content h5 {
    font-family: "gilroyMedium";
}

/* end banner section */

/* start cities section */
.cities {
    background: url("../img/map-bg.png") no-repeat;
    background-size: cover;
}

.cities .city-list .city {
    background-color: var(--whiteColor);
    box-shadow: -1px 1px 17px #8080806b;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 20px;
    font-family: righteousregular;
}

.cities .city-list {
    gap: 20px;
}

/* end cities section */

/* start restaurants section */
.restaurants .restaurants-list {
    position: relative;
}

.restaurants .restaurants-list .card {
    width: 95%;
    border: 0;
    box-shadow: 0px 1px 12px #80808059;
    margin: 5px auto;
    border-radius: 11px;
}

.restaurants .restaurants-list .place {
    border-top: 1px dashed #BEBEBE;
}

.restaurants .card {
    transition: .5s ease-in-out;
}

.restaurants .card .scale-img {
    display: block;
    overflow: hidden;
    border-radius: 7px;
}

.restaurants .card .scale-img img {
    border-radius: 7px;
    height: 250px;
    object-fit: cover;
}

.restaurants .card:hover .scale-img img {
    transform: scale(1.1);
    transition: .5s ease-in-out;
}

.restaurants .owl-nav {
    display: flex !important;
}

.restaurants .owl-nav .owl-prev,
.restaurants .owl-nav .owl-next {
    background: url('../img/nav-arrow.svg') no-repeat;
    background-size: 100% 100%;
    width: 35px;
    height: 35px;
    position: absolute;
    inset: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.restaurants .owl-nav .owl-prev {
    transform: scaleX(-1);
}

.restaurants .owl-nav .owl-next {
    margin-left: auto;
}

/* end restaurants section */

/* start platform section */

.platform {
    overflow: hidden;
}

.platform .scooter .list li {
    width: 95px;
}

.platform .scooter-man {
    position: absolute;
    top: -105px;
    bottom: 0;
    right: auto;
    width: 100%;
    background-image: url("../img/delivery-boy.svg");
    background-size: cover;
    background-position: center;
}

/* end platform section */

/* start footer section */
footer {
    background: #1b1b1b;
}

footer .logo {
    width: 170px;
}

footer ul {
    display: grid;
    gap: 10px;
}

footer .nav-head {
    font-family: righteousregular;
}

footer a,
footer p {
    font-family: gilroyLight;
}

footer .follow li {
    background-color: #242424;
    border-radius: 7px;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 6px;
    font-size: 18px;
    color: #7C7C7C;
}

footer .icon {
    display: block;
    background-color: var(--primaryColor);
    border-radius: 5px;
    width: 45px;
    min-width: 45px;
    height: 40px;
    padding-top: 6px;
    font-size: 20px;
    color: var(--whiteColor);
    text-align: center;
}

footer .follow li:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

footer .newsletter input {
    border: 0;
    border-bottom: 1px solid #707070;
    background-color: transparent;
    padding-bottom: 5px;
    width: 100%;
    outline: none;
    box-shadow: 0;
}

footer .newsletter i {
    color: #494949;
    position: absolute;
    font-size: 20px;
    right: 7px;
    top: 3px;
}

/* end footer section */

/* start copyright section */
.copyright {
    background-color: var(--blackColor);
}

.copyright p,
.copyright a {
    font-family: gilroyLight;
}

/* end copyright section */

/* start scroll-top-wrapper */

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: var(--primaryColor);
    color: #eeeeee;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper:hover {
    background-color: var(--textColor);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
}

.scroll-top-wrapper i.fa {
    line-height: inherit;
}

/* end scroll-top-wrapper */


/* start inner pages */
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--whiteColor);
}

.inner-banner {
    background: url('../img/inner-bg.png') no-repeat;
    background-size: cover;
}

.login-form label {
    font-family: "righteousregular";
    font-size: 20px;
}

.login-form form {
    box-shadow: 0px 7px 6px #80808047;
    padding: 35px;
    background-color: var(--whiteColor);
    border-radius: 10px;
}

.login-form form h4 {
    border-bottom: 1px dashed #B0B0B0;
    font-size: 22px;
}

.testimonial .testimonial-list .item {
    box-shadow: 0px 7px 6px #80808047;
    padding: .6rem 1rem;
    border-radius: 15px;
    width: 95%;
    margin: 10px auto;
}

.testimonial .testimonial-list .item p {
    font-style: italic;
}

.testimonial .testimonial-list .item i {
    font-size: 60px;
    color: var(--primaryColor);
}


.testimonial .testimonial-list .owl-dots {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.testimonial .testimonial-list .owl-dots .owl-dot {
    width: 20px;
    height: 5px;
    border-radius: 50px;
    background: var(--primaryColor);
    opacity: .5;
}

.testimonial .testimonial-list .owl-dots .active {
    opacity: 1;
    width: 30px;
}

.services .item span::before {
    content: '';
    background-color: #FFCC19;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    position: absolute;
    left: 73px;
    top: -12px;
    z-index: -1;
    transition: .5s ease-in;
}

.services .item:hover span::before {
    left: 93px;
    top: -2px;
    transition: .5s ease-out;
}


.contact-info .info span {
    background-color: #FFCC19;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    padding: 21px;
}

.contact-info .info .social-icon {
    border: 1px solid black;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 3px;
}

.contact-info .info .social-icon:hover {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--lightBg);
}


.contact-form form label {
    font-family: "righteousregular";
}

.restaur-details .contact-detail {
    border: 1px dashed #707070;
    padding: 15px 15px 25px 15px;
    border-radius: 10px;
}

.restaur-details .contact-detail .icon,
.dash-box-list .dash-box .icon {
    width: 60px;
    height: 55px;
    background-color: var(--primaryColor);
    border-radius: 5px;
    text-align: center;
    font-size: 30px;
    padding: 6px 0 0 3px;
}

.restaur-details .contact-detail .info a,
.dash-box-list .dash-box .info a {
    font-size: 20px;
    font-family: "gilroyBold";
    word-break: break-word;
}

.contact-detail .social-icon li {
    border: 1px solid black;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 3px;
}

.main-dashboard-list form label {
    font-family: righteousregular;
    font-size: 18px;
}

.table-booking .text-success {
    color: #2ECC71 !important;
}

.table-booking .td-bold {
    font-family: gilroyBold;
}

.table-booking .badge {
    background-color: #2ECC71 !important;
    padding: 10px 12px;
}

.table-list {
    gap: 25px;
}

.table-grid .info-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    cursor: pointer;
    color: var(--lightBg);
}

.table-box {
    /* background-color: #D69763; */
    background: url('../img/table-bg.jpg') no-repeat;
    background-size: cover;
    border-radius: 10px;
    border: 5px solid #181818;
    height: 120px;
    cursor: initial !important;
    position: relative;
    /* background: #e9dfc4;
    background: -moz-linear-gradient(left, #e9dfc4 0%, #e9dfc4 1%, #ede3c8 2%, #ede3c8 24%, #ebddc3 25%, #e9dfc4 48%, #ebddc3 49%, #e6d8bd 52%, #e6d8bd 53%, #e9dbc0 54%, #e6d8bd 55%, #e6d8bd 56%, #e9dbc0 57%, #e6d8bd 58%, #e6d8bd 73%, #e9dbc0 74%, #e9dbc0 98%, #ebddc3 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #e9dfc4), color-stop(1%, #e9dfc4), color-stop(2%, #ede3c8), color-stop(24%, #ede3c8), color-stop(25%, #ebddc3), color-stop(48%, #e9dfc4), color-stop(49%, #ebddc3), color-stop(52%, #e6d8bd), color-stop(53%, #e6d8bd), color-stop(54%, #e9dbc0), color-stop(55%, #e6d8bd), color-stop(56%, #e6d8bd), color-stop(57%, #e9dbc0), color-stop(58%, #e6d8bd), color-stop(73%, #e6d8bd), color-stop(74%, #e9dbc0), color-stop(98%, #e9dbc0), color-stop(100%, #ebddc3));
    background: -webkit-linear-gradient(left, #e9dfc4 0%, #e9dfc4 1%, #ede3c8 2%, #ede3c8 24%, #ebddc3 25%, #e9dfc4 48%, #ebddc3 49%, #e6d8bd 52%, #e6d8bd 53%, #e9dbc0 54%, #e6d8bd 55%, #e6d8bd 56%, #e9dbc0 57%, #e6d8bd 58%, #e6d8bd 73%, #e9dbc0 74%, #e9dbc0 98%, #ebddc3 100%);
    background: -o-linear-gradient(left, #e9dfc4 0%, #e9dfc4 1%, #ede3c8 2%, #ede3c8 24%, #ebddc3 25%, #e9dfc4 48%, #ebddc3 49%, #e6d8bd 52%, #e6d8bd 53%, #e9dbc0 54%, #e6d8bd 55%, #e6d8bd 56%, #e9dbc0 57%, #e6d8bd 58%, #e6d8bd 73%, #e9dbc0 74%, #e9dbc0 98%, #ebddc3 100%);
    background: -ms-linear-gradient(left, #e9dfc4 0%, #e9dfc4 1%, #ede3c8 2%, #ede3c8 24%, #ebddc3 25%, #e9dfc4 48%, #ebddc3 49%, #e6d8bd 52%, #e6d8bd 53%, #e9dbc0 54%, #e6d8bd 55%, #e6d8bd 56%, #e9dbc0 57%, #e6d8bd 58%, #e6d8bd 73%, #e9dbc0 74%, #e9dbc0 98%, #ebddc3 100%);
    background: linear-gradient(to right, #e9dfc4 0%, #e9dfc4 1%, #ede3c8 2%, #ede3c8 24%, #ebddc3 25%, #e9dfc4 48%, #ebddc3 49%, #e6d8bd 52%, #e6d8bd 53%, #e9dbc0 54%, #e6d8bd 55%, #e6d8bd 56%, #e9dbc0 57%, #e6d8bd 58%, #e6d8bd 73%, #e9dbc0 74%, #e9dbc0 98%, #ebddc3 100%);
    background-size: 120px;
    background-repeat: repeat; */
}

.table-box .number {
    background-color: var(--whiteColor);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    font-size: 25px;
    font-weight: bold;
    margin: auto;
}

.right-face-chair img {
    transform: rotate(270deg);
}

.right-face-chair p {
    inset: 14px 19px;
}

.left-face-chair img {
    transform: rotate(-270deg);
}

.left-face-chair p {
    inset: 16px 14px;
}

.up-face-chair img {
    transform: rotate(-180deg);
}

.up-face-chair p {
    inset: 11px 15px;
}

.t_c-9-10 {
    width: 260px
}

.t_c-5-6 {
    width: 160px;
}

.t_c-7-8 {
    width: 200px;
}

.t_c-1-4 {
    width: 100px;
}

.chair-number {
    position: absolute;
    inset: 19px 16px;
    font-weight: bolder;
    font-size: 14px;
}

.table-grid img {
    max-width: 50px;
}

.table-border {
    border: 1px dashed #ddd;
    border-radius: 10px;
}

.select-box {
    width: 15px;
    display: block;
    height: 15px;
    border-radius: 3px;
}

.table-grid span {
    cursor: pointer;
}

/* end inner pages */


/* modal css */

.booking-form i {
    position: absolute;
    right: 25px;
    top: 23px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}


.booking-form .fa-clock {
    top: 0;
}

.nav-underline .nav-link {
    color: var(--blackColor);
}

.nav-underline .nav-link.active,
.nav-underline .show>.nav-link {
    color: var(--primaryColor);
}

.card-radio {
    margin: 0.5rem;
}

.card-radio input[type=radio] {
    position: absolute;
    opacity: 0;
}

.card-radio input[type=radio]+.radio-label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.card-radio input[type=radio]:checked+.radio-label:before {
    background-color: var(--primaryColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.card-radio input[type=radio]:focus+.radio-label:before {
    outline: none;
    border-color: var(--primaryColor);
}

.card-radio input[type=radio]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.card-radio input[type=radio]+.radio-label:empty:before {
    margin-right: 0;
}

.card-detail.active {
    background-color: #f3e5cf;
    border-color: var(--primaryColor);
}

.detail-box {
    border: 1px solid #df921c;
    padding: 20px 1px;
    border-radius: 7px;
    margin-top: 12px;
}

#preloader {
    background-color: #ffffffdb;
    padding: 0;
    margin: 0;
    height: 100%;
    position: fixed;
    z-index: 99999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaur-details .info {
    width: calc(100% - 70px);
}

.partner-name {
    width: 105px;
}

.btn-sticky {
    position: fixed;
    bottom: -2px;
    background: white;
    padding: 15px 0px;
    box-shadow: 0 0 10px silver;
}

.fs-14 {
    font-size: 14px;
}

.like-share {
    position: absolute;
    color: white;
    right: 10px;
    top: 10px;
    background: #000000c7;
    padding: 7px 9px;
    border-radius: 12px;
    width: fit-content;
    font-size: 17px;
    cursor: pointer;
}

.like-info {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: var(--lightBg);
    padding: 7px 9px;
    border-radius: 12px;
    width: fit-content;
    font-size: 22px;

}

.share #social-links {
    display: none;
    /* transition: .5s cubic-bezier(0, 0, 0, -0.07); */
    transition: all 1s ease-in;
}

.share:hover #social-links {
    display: block;
    /* transition: .5s cubic-bezier(0, 0, 0, -0.07); */
    transition: all 1s ease-out;
}

.like-info .star {
    width: 35px;
}

.restro-img {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.owl-item.cloned.active {
    visibility: hidden;
}


/* start process section */

.simple-process .process-list .process .process-img img {
    width: 90px;
    height: 90px;
}

.simple-process .process-list .process .number {
    width: 35px;
    height: 35px;
    background-color: var(--primaryColor);
    border-radius: 100px;
    font-size: 16px;
    position: absolute;
    right: -30px;
}

/* end process section */

/* start ads section */
.ads .slide {
    background-image: url('../img/banner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 450px; */
}
/* end ads section */

.google-facebook {
    display: flex;
    align-items: center;
    background: white;
    box-shadow: 0 0 10px lightgrey;
    border-radius: 7px;
    padding: 11px;
}