/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    /* background: #0c0b09; */
    color: #000000;
    background-color: #f5f5f4;
}

a {
    color: #cda45e;
    text-decoration: none;
}

a:hover {
    color: #d9ba85;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Playfair Display", serif; */
    font-family: "Poppins";
}
.fs-18 {
    font-size: 18px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #5a37bb;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #1a1814;
    border-top-color: #cda45e;
    border-bottom-color: #cda45e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
    /* background: url("../img/qr_icon.jpg") center center; */
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #cda45e;
}

.back-to-top i {
    font-size: 28px;
    color: #cda45e;
    line-height: 0;
}

.back-to-top:hover {
    background: #cda45e;
    color: #1a1814;
}

.back-to-top:hover i {
    color: #444444;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #d9ba85;
}

#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .languages ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #cda45e;
}

#topbar .languages ul a {
    color: white;
}

#topbar .languages ul li + li {
    padding-left: 10px;
}

#topbar .languages ul li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #ff864c;
    /* background: rgb(151 151 151 / 74%); */
    /* border-bottom: 2px solid rgb(3, 3, 2); */
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    /* top: 40px; */
    top: 0px;
    /* box-shadow: 0px 10px 12px 3px rgb(157 141 141 / 65%);
    -webkit-box-shadow: 0px 10px 12px 3px rgb(199 176 176 / 65%);
    -moz-box-shadow: 0px 10px 12px 3px rgba(143, 88, 88, 0.65); */
}

#header.header-scrolled {
    top: 0;
    /* background: rgb(99 71 71 / 23%); */
    background: #ff864c;
    /* border-bottom: 1px solid #37332a; */
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 85px;
    width: 164px;
}

@media (max-width: 480px) {
    #header .logo img {
        max-height: 85px;
        width: 110px;
    }
}
/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
    margin: 0 0 0 15px;
    border: 2px solid #ffffff;
    color: #fff;
    border-radius: 10px;
    padding: 8px 25px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
    background: black;
}

.book-a-table-btn:hover {
    background: #ffffff;
    color: #000000;
}

@media (max-width: 992px) {
    .book-a-table-btn {
        margin: 0 15px 0 0;
        padding: 8px 20px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    display: none;
    height: fit-content;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 10px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 20px;
    margin: 0px 10px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #d9ba85;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #444444;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #cda45e;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    /* display: none; */
    display: block;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    justify-content: right;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    width: 450px;
    position: relative;
    height: 80vh;

    display: block;
    /* position: absolute; */
    /* top: 55px; */
    right: 15px;
    bottom: 15px;
    /* left: 15px; */
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    letter-spacing: 2px;
    padding: 10px 20px;
    font-size: 25px;
    color: #1a1814;
    font-weight: 700;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #cda45e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #cda45e;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}
@media (max-width: 992px) {
    .navbar-mobile ul {
        width: 425px;
        left: 15px;
    }
}
@media (max-width: 480px) {
    .navbar-mobile ul {
        width: 100%;
        left: 15px;
    }
    .navbar-mobile a,
    .navbar-mobile a:focus {
        letter-spacing: 1.5px;
        padding: 10px 5px;
        font-size: 16px;
        color: #1a1814;
        font-weight: 700;
    }
}
#main{
    margin-top: 80px;
}
@media (max-width: 480px){
    #main {
        margin-top: 65px;
    }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: #ffffff;
    background-size: cover;
    position: relative;
    padding: 0;
}

#hero:before {
    content: "";
    /* background: rgba(0, 0, 0, 0.18); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    /* padding-top: 110px; */
    padding-top: 0px;
    padding-left: 12rem;
}
.hero-content {
    padding-top: 10rem;
}

@media (max-width: 992px) {
    #hero .container {
        margin: auto;
        /* padding-top: 98px; */
        padding-left: 0px;
    }
    .hero-content {
        padding-top: 5rem;
    }
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #000;
    font-family: "Poppins", sans-serif;
}

#hero h1 span {
    color: #cda45e;
}

#hero h2 {
    color: #eee;
    margin-bottom: 10px 0 0 0;
    font-size: 30px;
}

#hero .btns {
    margin-top: 60px;
    text-align: center;
    padding-bottom: 4rem;
}

#hero .btn-menu,
#hero .btn-book {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
    line-height: 1;
    color: white;
    border: 3px solid #ff864c;
    background: black;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
    background: #cda45e;
    color: #fff;
}

#hero .btn-book {
    margin-left: 15px;
}

#hero .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

#hero .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(205, 164, 94, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
    border-left: 15px solid #cda45e;
    transform: scale(20);
}

#hero .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
.hero .qr-buttons {
    margin-top: 4rem;
    display: grid;
    width: 50%;
    margin: auto;
}
.hero .qr-buttons a {
    padding: 5px;
    margin: 4rem 0rem;
    font-size: 21px;
    background: #00000040;
}
.hero .qr-buttons a:hover {
    background: #000000;
}

.hero .qr-contents {
    margin-bottom: 5px;
}
#hero .container .scan-qr {
    margin: auto;
}
@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero .play-btn {
        margin-top: 30px;
    }
    #hero .btns {
        margin-top: 25px;
        text-align: center;
        padding-bottom: 2rem;
    }
    #hero .btn-menu,
    #hero .btn-book {
        font-weight: 600;
        font-size: 18px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: auto;
    }

    #hero .container {
        padding-top: 130px;
        padding-bottom: 60px;
    }
}
@media (max-width: 400px) {
    #hero .btn-menu,
    #hero .btn-book {
        font-weight: 600;
        font-size: 25px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        display: inline-block;
        padding: 12px 30px;
        border-radius: 50px;
        transition: 0.3s;
        line-height: 1;
        color: white;
        border: 3px solid #ff864c;
        background: black;
    }
    #hero .btns {
        margin-top: 22px;
        text-align: center;
        padding-bottom: 1rem;
    }
}
@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .hero .qr-buttons a {
        padding: 5px;
        margin: 0.5rem 0rem;
        font-size: 18px;
        background: #00000040;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.page-title {
    padding-top: 150px;
    font-size: 40px;
    font-weight: 600;
}
.page-title h1 {
    color: #000000;
}
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    /* background-color: #1a1814; */
    background-color: #e9e9e9;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: rgb(0 0 0 / 17%);
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    /* font-family: "Playfair Display", serif; */
    color: #ffa100;
    font-family: "Poppins";
}
.home-facts {
    background: #b32626;
}
.home-facts .fact-items {
    display: inline-flex;
}
@media (max-width: 540px) {
    .home-facts .fact-items {
        display: inline-block;
        overflow: hidden;
    }
}

/* section qr-process */
.qr-process .process-steps {
    display: flex;
}
.qr-process .process-steps img {
    width: 80%;
    height: auto;
}

@media (max-width: 480px) {
    .qr-process .process-steps {
        display: block;
    }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    /* background: #1d1b16; */
    margin-top: 110px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 98px;
    }
}

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #37332a;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    /* background: url("../img/about-bg.jpg") center center; */
    /* background-size: cover; */
    /* position: relative; */
    padding: 0px 0;
}

/* .about:before {
    content: "";
    background: rgb(165 138 138 / 25%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
} */

.about .about-img {
    position: relative;
    transition: 0.5s;
}

.about .about-img img {
    max-width: 100%;
    border: 4px solid rgb(203 203 203 / 88%);
    position: relative;
}

.about .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #cda45e;
    border-top: 5px solid #cda45e;
    transition: 0.5s;
}

.about .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #cda45e;
    border-bottom: 5px solid #cda45e;
    transition: 0.5s;
}

.about .about-img:hover {
    transform: scale(1.03);
}

.about .about-img:hover::before {
    left: 10px;
    top: 10px;
}

.about .about-img:hover::after {
    right: 10px;
    bottom: 10px;
}

.about .content {
    position: relative;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #cda45e;
}

.about .content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .about {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    /* background: #1a1814; */
    background: #c1c1c157;
    box-shadow: 4px 9px 5px 1px rgba(2, 2, 2, 0.98);
    -webkit-box-shadow: 4px 9px 5px 1px rgb(2 2 2 / 55%);
    -moz-box-shadow: 0px 0px 5px 5px rgba(2, 2, 2, 0.98);
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #cda45e;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #000000;
}

.why-us .box p {
    color: #000000;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.why-us .box:hover {
    background: #cda45e;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
    color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
    padding: 0;
    margin: 0 auto 0 auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.menu #menu-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 12px 10px 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
    transition: all ease-in-out 0.3s;
    border-radius: 50px;
    font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
    color: #cda45e;
}

.menu #menu-flters li:last-child {
    margin-right: 0;
}

.menu .menu-item {
    margin-top: 50px;
}

.menu .menu-img {
    width: 70px;
    border-radius: 50%;
    float: left;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
    margin-left: 85px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.menu .menu-content::after {
    content: "......................................................................"
        "...................................................................."
        "....................................................................";
    position: absolute;
    left: 20px;
    right: 0;
    top: -4px;
    z-index: 1;
    color: #bab3a6;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
    padding-right: 10px;
    background: #1a1814;
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: white;
    transition: 0.3s;
}

.menu .menu-content a:hover {
    color: #cda45e;
}

.menu .menu-content span {
    background: #1a1814;
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
    color: #cda45e;
}

.menu .menu-ingredients {
    margin-left: 85px;
    font-style: italic;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
    overflow: hidden;
}

.specials .nav-tabs {
    border: 0;
}

.specials .nav-link {
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: #000000;
    border-radius: 0;
    border-right: 2px solid #cda45e;
    font-weight: 600;
    font-size: 15px;
}

.specials .nav-link:hover {
    color: #cda45e;
}

.specials .nav-link.active {
    color: #1a1814;
    background: #cda45e;
    border-color: #cda45e;
}

.specials .nav-link:hover {
    border-color: #cda45e;
}

.specials .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}
/* .tab-pane .details .fst-italic{
    letter-spacing: 2.2px;
    font-size: 24px;
} */
.specials .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.specials .details p {
    /* color: #aaaaaa; */
    color: #000000;
}

.specials .details p:last-child {
    margin-bottom: 0;
}
.specials .details ul > li {
    padding: 5px;
}
.specials .feature-image img {
    height: 400px;
    width: 100%;
    border-radius: 18px;
}
@media (max-width: 480px) {
    .specials .feature-image img {
        height: auto;
        width: 100%;
    }
}
@media (max-width: 992px) {
    .specials .nav-link {
        border: 0;
        padding: 15px;
    }
}

/*--------------------------------------------------------------
# themes/ Themes
--------------------------------------------------------------*/
.themes {
    /* background: url(../img/themes-bg.jpg) center center no-repeat; */
    background-size: cover;
    position: relative;
}

.themes::before {
    content: "";
    /* background-color: rgba(0, 0, 0, 0.18); */
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.theme-btns a {
    background: #6d70ede0;
    font-size: 20px;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    font-weight: 400;
    margin: 0px 18px;
}
.theme-btns a:hover {
    background: #00ff1599;
    color: #000000;
    font-weight: 400;
}
.theme-sample .theme-btns {
    margin: 1rem 0rem;
    text-align: center;
}
/* .themes .section-title h2 {
    color: #fff;
} */

.themes .container {
    position: relative;
}
.theme-sample-qr {
    width: 100%;
    text-align: center;
}
.theme-sample-qr img {
    width: 150px;
    height: 140px;
}
@media screen and (min-width: 768px) and (max-width: 990px) {
    .theme-sample-qr {
        /* margin: 0rem -3rem; */
        margin: 0;
    }
}
@media (max-width: 480px) {
    .theme-btns a {
        background: #6d70ede0;
        font-size: 18px;
        color: #fff;
        border-radius: 5px;
        padding: 8px 14px;
        font-weight: 400;
        margin: 16px 5px;
    }
}
@media (min-width: 1024px) {
    .themes {
        background-attachment: fixed;
    }
}

.themes .themes-carousel {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.themes .event-item {
    color: #fff;
}

.themes .event-item h3 {
    font-weight: 600;
    font-size: 26px;
    color: #cda45e;
}

.themes .event-item .price {
    font-size: 26px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.themes .event-item .price span {
    border-bottom: 2px solid #cda45e;
}

.themes .event-item ul {
    list-style: none;
    padding: 0;
}

.themes .event-item ul li {
    padding-bottom: 10px;
}

.themes .event-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #cda45e;
}

.themes .event-item p:last-child {
    margin-bottom: 0;
}

.themes .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.themes .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(14, 6, 6, 0.171);
    opacity: 1;
}

.themes .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f19c08;
}
/* Clients */
.clients {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}

.clients_slider_container {
    height: 130px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 50px;
    padding-right: 50px;
    background: #fff;
}

.clients_slider {
    height: 100%;
    /* margin-top: 50px; */
}

.clients_item {
    /* height: 100%; */
    height: 130px;
}

.clients_item img {
    max-width: 200px;
    width: 200px;
}

.clients_nav {
    position: absolute;
    /* top: 50%; */
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer;
}

.clients_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.clients_nav:hover i {
    color: #676767;
}

/* .clients_prev {
                left: 40px
            } */

/* .clients_next {
        right: 40px
    } */
.clients_prev {
    left: 3rem;
    margin-top: -4rem;
}
.clients_next {
    right: 3rem;
    margin-top: -4rem;
}

@media screen and (min-width: 1440px) {
    .clients_prev {
        left: 20rem;
        margin-top: -4rem;
    }
    .clients_next {
        right: 20rem;
        margin-top: -4rem;
    }
}
@media screen and (max-width: 480px) {
    .clients_prev {
        left: 2rem;
        margin-top: -4rem;
    }
    .clients_next {
        right: 2rem;
        margin-top: -4rem;
    }
}

/* payment-gateway */
.payment-gateway .payment-items {
    border: 1px solid #000000;
    margin: 5px;
    text-align: center;
}
.payment-gateway .payment-items img {
    padding: 18px;
    height: 130px;
}

.checkout-form .checkout-card .single-widget ul li{
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}
.checkout-form .checkout-card .single-widget.payment-method{
    padding: 5px 0;
}
.checkout-form .checkout-card  .form-check .form-check-input {
    border: solid 2px #b1adad;
}
/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
    width: 100%;
}

.book-a-table .php-email-form .form-group {
    padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.book-a-table .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
    margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
}

.book-a-table .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #cda45e;
    border-top-color: #1a1814;
    animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    /* background: #0c0b09; */
    border-color: #625b4b;
    /* color: white; */
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
    border-color: #cda45e;
}

.book-a-table .php-email-form input {
    height: 44px;
}

.book-a-table .php-email-form textarea {
    padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
    background: #cda45e;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
    background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    /* color: white; */
    color: #0c0b09;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    /* color: rgba(255, 255, 255, 0.6); */
    margin: 0 0 0 45px;
    color: rgb(75 69 69);
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #d3af71;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    /* background: #26231d; */
    background: #d7d3cc;
    color: #000000a8;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgb(133 120 120 / 54%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #cda45e;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #454035;
    border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
}

.contact .info i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: #cda45e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #bab3a6;
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #cda45e;
    border-top-color: #1a1814;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: #0c0b09;
    border-color: #625b4b;
    color: white;
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
    color: #a49b89;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #cda45e;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #cda45e;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #d3af71;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* pricing page  */

.pricing-main .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #1a1814;
    box-shadow: 8px 12px 8px 0px rgb(4 4 6 / 98%);
    -webkit-box-shadow: 8px 12px 8px 0px rgb(11 10 14 / 98%);
    -moz-box-shadow: 8px 12px 8px 0px rgba(11, 11, 15, 0.98);
}

.pricing-main .box:hover {
    background: #6493c9;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.pricing-main .box:hover span,
.pricing-main .box:hover h4,
.pricing-main .box:hover p {
    color: #fff;
}

/* about page */
.about-main .box {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: inline-block;
    padding: 50px 30px;
    transition: all ease-in-out 0.3s;
    background: #0c8eed;
    box-shadow: 0px 4px 10px 1px rgb(29 35 41 / 83%);
    -webkit-box-shadow: 0px 4px 10px 1px rgb(29 35 41 / 83%);
    -moz-box-shadow: 0px 4px 10px 1px rgb(29 35 41 / 83%);
}

.about-main .box p {
    color: #f1c20c;
    font-size: 21px;
    font-weight: 600;
}
.work-icon {
    font-size: 60px;
    line-height: 2em;
    position: relative;
    margin-bottom: 0px;
}

/* .about-main .box:hover {
    background: #00000036;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
  }

  .about-main .box:hover span,
  .about-main .box:hover h4,
  .about-main .box:hover p {
    color: #fff;
  } */

.about-alternative p,
ul li {
    color: #000000;
}
.about-alternative-second .box {
    /* padding: 20px 30px 24px 30px; */
    border-radius: 50px 0px;
    transition: all ease-in-out 0.3s;
    /* background: #1a1814; */
    background: #fbb03b;
    box-shadow: 4px 9px 5px 1px rgba(2, 2, 2, 0.98);
    -webkit-box-shadow: 4px 9px 5px 1px rgb(2 2 2 / 55%);
    -moz-box-shadow: 0px 0px 5px 5px rgba(2, 2, 2, 0.98);
}
.about-alternative-second .box h4 {
    color: #000000;
    font-size: 30px;
    font-weight: 600;
}
.about-alternative-second .box img {
    border-radius: 50px 0px;
    /* height: 150px; */
    height: 300px;
    width: 100%;
    /* margin: 0px 30px; */
}
.about-alternative-third .box {
    padding: 50px 30px;
    border-radius: 20px;
    transition: all ease-in-out 0.3s;
    /* background: #1a1814; */
    background: linear-gradient(60deg, #c3b0a6 0, #292049 100%);
}

.about-alternative-third .theme-btns a {
    background: #cb4105a3;
    font-size: 25px;
    color: #000000a8;
    border-radius: 10px;
    padding: 8px 25px;
    font-weight: 500;
    margin: 0px 18px;
}
.about-alternative-third .theme-btns a:hover {
    background: #fbb03b;
    color: #ffffff;
}

@media (max-width: 480px) {
    .about-alternative-third .theme-btns a {
        background: #cb4105a3;
        font-size: 16px;
        color: #000000a8;
        border-radius: 5px;
        padding: 10px 10px;
        font-weight: 600;
        margin: 16px 5px;
    }
    .about-alternative-second .box img {
        border-radius: 50px 0px;
        height: auto;
        width: 100%;
    }
}

/* contact page */
.contact-main .contact-form {
    background: #ffffff;
}
.contact-main .contact-form p {
    color: #000000;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    padding-top: 10px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: black;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    /* background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f; */
    background: #747271;
    border-top: 1px solid #000000;
    border-bottom: 3px solid #ffffff;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Playfair Display", serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #28251f;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #cda45e;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #cda45e;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #cda45e;
}

#footer .footer-top .footer-newsletter .newsletter-inner {
    margin-top: 30px;
    background: #28251f;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter .newsletter-inner input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
    background: #28251f;
    color: white;
}

#footer .footer-top .footer-newsletter .newsletter-inner button {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #cda45e;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter .newsletter-inner button:hover {
    background: #d3af71;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.pricing-head-sec {
    height: 40vh;
}

/* home page animation */
.circle {
    position: absolute;
    border-radius: 50%;
    background: #ff864c6b;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
}

.small {
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
}

.medium {
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -200px;
}

.large {
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -300px;
}

.xlarge {
    width: 800px;
    height: 800px;
    left: -400px;
    bottom: -400px;
}

.xxlarge {
    width: 1000px;
    height: 1000px;
    left: -500px;
    bottom: -500px;
}

.shade1 {
    opacity: 0.2;
}

.shade2 {
    opacity: 0.5;
}

.shade3 {
    opacity: 0.7;
}

.shade4 {
    opacity: 0.8;
}

.shade5 {
    opacity: 0.9;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.8);
    }
}

@media (max-width: 992px) {
    .large {
        width: 450px;
        height: 450px;
        left: -260px;
        bottom: -280px;
    }
    .xlarge {
        width: 600px;
        height: 600px;
        left: -325px;
        bottom: -340px;
    }
    .xxlarge {
        width: 850px;
        height: 850px;
        left: -485px;
        bottom: -500px;
    }
}

/* advantage-section */
.advantage .wrapper {
    margin: 0 auto;
}

.advantage ol {
    list-style: none;
    padding: 0;
}

.advantage .wrapper li + li {
    margin-top: 1rem;
}

.advantage .wrapper li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: aliceblue;
    padding: 0.5rem;
    border-radius: 1rem;
    width: calc(100% - 2rem);
    box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
}

.advantage .wrapper li::before {
    /* counter-increment: list-item; */
    /* content: counter(list-item); */
    content: "";
    font-size: 11px;
    font-weight: 700;
    width: 1em;
    height: 1em;
    background: black;
    flex: 0 0 auto;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage .wrapper li:nth-child(even) {
    flex-direction: row-reverse;
    background: lavender;
    margin-right: -2rem;
    margin-left: 2rem;
}
.advantage .advantage-snap {
    display: flex;
}
.advantage .advantage-snap .snap-detail {
    height: 30vh;
    text-align: center;
    padding-top: 2rem;
}
.advantage .advantage-snap .snap-detail img {
    /* width: 80%; */
    width: 50%;
    height: 100%;
    text-align: center;
    object-fit: scale-down;
}
.advantage .advantage-snap .snap-detail .img-desc {
    display: none;
}
@media (max-width: 480px) {
    .advantage .advantage-snap {
        display: block;
    }
}

.advantage-snap-content ul {
    display: flex;
    list-style: none;
}

.advantage-snap-content li {
    width: 25%;
    padding: 10px 31px;
    /* border: 1px solid black; */
    margin: 0 0 0 6rem;
    position: relative;
}

.advantage-snap-content li span {
    font-size: 15px;
}

.advantage-snap-content li:not(:last-child):after {
    /* content: '';
    height: 1px;
    background: black;
    width: 136px;
    position: absolute;
    right: -70px;
    top: 50%; */
    content: "";
    height: 1px;
    background: black;
    width: 136px;
    position: absolute;
    right: -20px;
    top: -6rem;
}

.advantage-snap-content li:not(:last-child):before {
    /* content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    border-style: solid;
    border-width: 10px 0 10px 30px;
    border-color: transparent transparent transparent black;
    right: -100px;
    transform: translateY(-50%); */
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -6rem;
    border-style: solid;
    border-width: 10px 0 10px 30px;
    border-color: transparent transparent transparent black;
    right: -3rem;
    transform: translateY(-50%);
}
@media (max-width: 1440px) {
    .advantage .advantage-snap .snap-detail {
        /* height: 16vh; */
        text-align: center;
        padding-top: 2rem;
    }
}
@media (max-width: 1024px) {
    .advantage-snap-content ul {
        padding-left: 0rem;
    }

    .advantage-snap-content li {
        padding: 10px 4px;
        /* border: 1px solid black; */
        margin: 0 26px;
        position: relative;
    }

    .advantage-snap-content li:not(:last-child):after {
        content: "";
        height: 1px;
        background: black;
        width: 50px;
        position: absolute;
        right: -50px;
        top: 50%;
    }

    .advantage-snap-content li:not(:last-child):before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        top: 50%;
        border-style: solid;
        border-width: 7px 0 7px 20px;
        border-color: transparent transparent transparent black;
        right: -50px;
        transform: translateY(-50%);
    }
}
.advantage-snap-content {
    margin: 2rem 0;
}
@media (max-width: 767px) {
    .advantage .advantage-snap .snap-detail {
        height: 30vh;
        text-align: center;
        padding-top: 2rem;
    }
    .advantage .advantage-snap .snap-detail img {
        width: 50%;
        height: 100%;
        text-align: center;
        object-fit: scale-down;
    }
}
@media (max-width: 576px) {
    .advantage-snap-content {
        display: none;
    }
    .advantage .advantage-snap .snap-detail .img-desc {
        display: block;
    }
}

.plan-subscription .card ul {
    border: none;
}

.plan-subscription .card ul li {
    text-align: center;
    border: none;
}

.plan-subscription .card .card-plan-cost {
    color: #cda45e;
}
.plan-subscription .empty-col {
    width: 100%;
    padding: 0px;
    background: #efb355;
    margin: 0px;
    text-align: center;
    color: #ffffff;
}
.plan-subscription .empty-col p {
    margin: 0;
    padding: 5px;
    font-weight: 600;
}
.plan-subscription .empty-ts {
    height: 35px;
    width: 100%;
    padding: 0px;
    background: none;
    margin: 0px;
}
.about-alternative-second .image-desc ul > li {
    margin-bottom: 5px;
}
.plan-subscription .card-body .btm-cnt {
    font-size: 14px;
    padding-top: 8px;
}
.content-shadow{
    box-shadow: 25px 27px 7px -20px rgb(199 176 176 / 65%);
    -webkit-box-shadow: 25px 27px 7px -20px rgb(199 176 176 / 65%);
    -moz-box-shadow: 25px 27px 7px -20px rgba(199 176 176 / 65%);
}
