* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    outline: none;
}

p {
    margin-top: 0;
    margin-bottom:0px !important;
}
/* ============================== outer header css open ============================== */

.header-top {
    background-color: rgb(255, 207, 219, 0.2);
    padding: 10px 0;
}
.header-top .contact-info a {
    color: #333;
    text-decoration: none;
    margin-right: 15px;
}
.contact-info, .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contact Links */
.contact-info a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.contact-info i {
    color: #d9534f; /* Custom color */
}

/* Social Icons */
.social-icons a {
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d9534f;
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
}
.tagline {
    font-size: 0.9rem;
    color: #777;
}
@media (max-width: 767px) {
    .header-top .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 10px;
    }
}

/* ================================slider css open =========================== */
.carousel-caption h2 {
    font-size: 43px;
    font-weight: bold;
    color: #b9e185;
    font-family: Kaushan Script;
}

.carousel-caption p {
    font-size:25px;
    color: #ff6796;
    font-family: Kaushan Script;
}
#sliderCarousel .carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    background: rgba(0, 0, 0, 0.5); /* Optional: Improves readability */
    padding: 10px;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        width: 10%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 768px) {
    #sliderCarousel .carousel-item img {
        object-fit: contain!important; /* Ensures images fill the space without stretching */
    }
}


.carousel-caption .btn {
    background-color: #b9e185 ;
    color: #ff6796;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
}
.carousel-caption {
    background-color: rgba(24, 22, 22, 0.4);
    box-sizing: border-box;
    /* color: #fff; */
    z-index: 8;
    width: 50%;
    text-align: center;
}

/*@media (max-width: 767px) {*/
/*    .carousel-caption {*/
/*        display: block !important;*/
        bottom: 20px; /* Adjust caption position */
/*        left: 50%;*/
/*        transform: translateX(-50%) !important;*/
/*        width: 75% !important;*/
        background: rgba(0, 0, 0, 0.6); /* Add slight background for readability */
/*        padding: 10px;*/
/*        border-radius: 10px;*/
/*    }*/

/*    .carousel-caption p,*/
/*    .carousel-caption h2 {*/
/*        color: #ff6796 !important;*/
/*        font-size: 14px;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    #sliderCarousel .carousel-item img {
        height: 300px; /* Adjust height for mobile screens */
        object-fit: cover;
    }
    #sliderCarousel .carousel-caption {
        width: 80%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    #sliderCarousel .carousel-caption h2 {
        font-size: 1.5rem; /* Reduce heading size */
    }
    #sliderCarousel .carousel-caption p {
        font-size: 1rem; /* Reduce paragraph size */
    }
}


/* ========================================= about us css============================ */
.cgymhub_section_subtitle {
    color: #ff6796;
    font-size: 33px !important;
    font-family: Kaushan Script;
}

.section_title {
    color: black;
    font-size: 55px !important;
    /* font-family: PT Sans; */
    font-weight: 800;
}
@media (max-width: 768px) {
    #welcomeareay .row {
        flex-direction: column-reverse; /* Stack image on top, text below */
        text-align: center; /* Center text for better readability */
    }
    
    #welcomeareay .col-md-6 {
        width: 100%;
    }

    #welcomeareay img {
        width: 90%; /* Make image responsive */
        height: auto;
        max-width: 400px; /* Prevents it from getting too large */
        margin-bottom: 20px;
    }

    #welcomeareay h2 {
        font-size: 1.8rem; /* Reduce heading size */
    }

    #welcomeareay p {
        font-size: 1rem; /* Adjust paragraph text */
    }
}


/* ====================================== product section open============================ */

/* #pagearea .btn{
    color: #ff6796;
    background-color: #ffffff;
    font-size: 17px;
    font-family: Roboto Condensed;
    border-color: #ff6796;
} */
.fw-bold {
    font-weight: 800 !important;
    font-size: 50px !important;
}

#pagearea .h5{
    color: black;
}
#pagearea p {
    color: #494848;
    font-size: 14px;
    font-family: PT Sans;
}
#pagearea h3 {
    color: #161616;
    font-size: 18px;
    font-family: PT Sans;
}

#pagearea .card {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

#pagearea .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image Zoom Effect */
#pagearea.card img {
    transition: transform 0.3s ease-in-out;
}

#pagearea .card:hover img {
    transform: scale(1.1);
}

/* Button Styling */
#pagearea .btn {
    color: #ff6796;
    background-color: #ffffff;
    font-size: 17px;
    font-family: Roboto Condensed;
    border-color: #ff6796;
    transition: all 0.3s ease-in-out;
}

#pagearea .btn:hover {
    background-color: #e6005c;
    color: white;
}

.bg-warning {
    color: white !important;
    border-color: #e6005c;
    background-color:#e6005c !important ;
}
#section-special-dishes .btn{
    border-color: #e6005c;
}
/* ======================================product section close ======================== */

/* ===================================disvcover section open ========================= */

#ourskills {
    position: relative;
    padding: 120px 0;
}

#ourskills:before {
    bottom: 0;
    content: "";
    position: absolute;
    left: -77.5%;
    top: 0px;
    width: 100%;
}

.history_thumbnail {
    float: right;
    width: 36%;
}

.history_thumbnail_image {
    position: relative;
    width: 100%;
    height: 100%;
}

.history_thumbnail_image:before {
    z-index: 1;
    position: absolute;
    content: '';
    top: 20px;
    right: 35px;
    background: none;
    width: 50%;
    height: 50%;
}

.thumbnail_image {
    width: 320px;
    position: relative;
    z-index: 999;
}

.history_thumbnail_image img {
    vertical-align: top;
}

.small_image {
    position: absolute;
    bottom: -55px;
    right: 0;
    width: 210px;
    height: 275px;
    z-index: 999;
}

.small_image {
    position: absolute;
    bottom: -55px;
    right: 0;
    width: 210px;
    height: 275px;
    z-index: 999;
}

.skillwrap .sec_content_main_title {
    color: #121212;
    font-size: 58px;
    /* font-family: Open Sans; */
}

.sec_content_main_title {
    /* color: #242424; */
    font-weight: 800;
    /* font-size: 55px; */
    line-height: 100%;
    text-align: center;
    margin-bottom: 17px;
    /* position: relative; */
    text-transform: none;
    position: relative;
    /* font-family: 'Open Sans'; */
}

.skillwrap .sec_content_main_title .sub-title-head {
    color: #ff6796;
    font-size: 32px;
    /* font-family: Kaushan Script; */
}

span.sub-title-head {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    padding-bottom: 0;
    font-family: 'Kaushan Script';
}

#ourskills .subtitle {
    color: #717171;
    font-size: 15px;
    text-align: center;
    /* padding-bottom: 15px; */
    margin: 0;
    font-family: Open Sans;
}


/* #ourskills .subtitle {
    margin-bottom: 50px;
} */

.skillwrap .area_row {
    /* display: inline-block; */
    text-align: center !important;
}

.counterlist {
    float: none;
    text-align: center;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    display: inline-block;
}

.circle_countr {
    display: block;
    margin: 0;
    width: 182px;
    height: 172px;
    padding: 41px 30px;
    border-radius: 50%;
}

.circle_countr {
    background-color: #ffe7ed;
}

.counterlist h6 {
    color: #535353;
    font-size: 18px;
    font-weight: 600;
    margin: 7px 0 7px 0;
    font-family: Open Sans;
}

.counterlist .counter {
    color: #535353;
    font-size: 50px;
    display: block;
    font-weight: 800;
    line-height: 100%;
    /* font-family: Open Sans; */
}
/* ================================discover section close ============================ */

/* ================================= BLOG CSS START============================= */


#foodmenuid , .foodmenu-wrap{
    background-color: #fff7f9;
}
.foodmenu-wrap .sec_content_main_title {
    color: #121212;
    font-size: 57px;
    /* font-family: Open Sans; */
    font-weight: 800;
    line-height: 100%;
    text-align: center;
    margin-bottom: 17px;
    position: relative;
    text-transform: none;
}

.foodmenu-wrap span.sub-title-head {
    color: #ff6796;
    font-size: 33px;
    font-family: Kaushan Script;
}

span.sub-title-head {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    padding-bottom: 0;
}

.foodmenu-wrap .subtitle {
    color: #454545;
    font-size: 17px;
    text-align: center;
    padding-bottom: 15px;
    margin: 0;
    font-family: Open Sans;
}

/*ul.ourmenu-area {*/
/*    display: flex;*/
/*    flex-wrap:no-wrap;*/
/*    margin: 0 -15px;*/
/*    padding: 0;*/
/*}*/

ul.ourmenu-area li {
    float: left;
    text-align: left;
    width: 48%;
    padding: 15px;
    box-sizing: border-box;
    vertical-align: top;
    list-style: none;
    margin: 0;
    vertical-align: top;
}

.ourmenu-thumb {
    float: left;
    padding: 0;
    width: 230px;
    height: 200px;
    margin: 0 30px 30px 0;
    position: relative;
    top: 5px;
    overflow: hidden;
}

.ourmenu-thumb img {
    min-height: 200px;
}

.menu-title {
    margin: 0 0 10px 0;
}

.foodmenu-wrap .menu-title strong {
    color: #373735;
    font-size: 16px;
    font-family: Open Sans;
}
.menu-title strong {
    text-transform: uppercase;
}

.foodmenu-wrap .menu-title strong span {
    color: #ffffff;
    background-color: #ff6796;
    font-size: 16px;
    font-family: Open Sans;
}

.menu-title span {
    float: right;
    padding: 0 9px;
}

.foodmenu-wrap .menu-content p {
    color: #373735;
    font-size: 16px;
    font-family: Open Sans;
}

.foodmenu-wrap .menuordernow {
    color: #ff6796;
    background-color: #ffffff;
    font-size: 16px;
    font-family: Roboto Condensed;
    border-color: #ff6796;
}
.menuordernow {
    padding: 12px 42px;
    margin: 15px 0 0 0;
    font-weight: bold;
    display: inline-table;
    background: #ff0000;
    border: 1px solid;
}
@media (max-width: 768px) {
    .ourmenu-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .ourmenu-item {
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
        list-style: none;
    }

    .ourmenu-thumb img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .menu-title {
        font-size: 1.4rem;
        text-align: center;
        margin-top: 10px;
    }

    .menu-title strong span {
        display: block;
        font-size: 1.2rem;
        color: #d9534f;
    }

    .menu-content {
        font-size: 1rem;
        text-align: center;
        padding: 5px;
    }

    .menuordernow {
        display: inline-block;
        padding: 10px 20px;
        background: #ff5722;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        text-align: center;
    }

    .menuordernow:hover {
        background: #e64a19;
    }
}


/* =====================================blog css close============================== */

/* ======================================news and article open============================ */

#newswraper {
    background-attachment: inherit !important;
    background-size: auto !important;
}

.blogpostwrap .sec_content_main_title {
    color: #242424;
    font-size: 57px;
    /* font-family: Open Sans; */
}
.sec_content_main_title {
    font-weight: 800;
    line-height: 100%;
    text-align: center;
    margin-bottom: 17px;
    position: relative;
    text-transform: none;
}

.blogpostwrap span.sub-title-head {
    color: #ff6796;
    font-size: 33px;
    font-family: Kaushan Script;
}
span.sub-title-head {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    padding-bottom: 0;
}

.fourcolumn-news {
    width: 100%;
    /* display: inline-block; */
    text-align: center;
    margin-top: 30px;
}

.news-box {
    width: 33%;
    float: none;
    margin: 0 5px 0 0;
    position: relative;
    vertical-align: top;
    display: inline-block;
}

.news-box .news-thumb {
    height: 256px;
    overflow: hidden;
    position: relative;
}

.news-box .news-thumb img {
    width: 100%;
    height: auto;
    min-height: 256px;
}

.news-box .PostMeta {
    color: #ffffff;
    background-color: #ff6796;
    font-size: 13px;
    /* font-family: Open Sans; */
}

.news-box .PostMeta {
    text-transform: capitalize;
    font-weight: 600;
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    background: #ff0000;
    padding: 5px 25px;
}

.news-box .PostMeta a {
    color: #ffffff;
    font-size: 13px;
    /* font-family: Open Sans; */
}

.newsdesc {
    position: relative;
    padding: 12px 22px 23px;
}

.news-box .postdt {
    color: #364558;
    font-size: 14px;
    /* font-family: Open Sans; */
}
.news-box .postdt {
    margin-bottom: 10px;
}

.news-box h3 {
    color: #595959;
    font-size: 22px;
    /* font-family: Open Sans; */
}
.news-box h3 {
    margin: 0 0 0 0px;
    font-weight: 600;
    line-height: 32px;
}   

.news-box p {
    color: #364558;
    font-size: 14px;
    /* font-family: Open Sans; */
}
.news-box p {
    margin: 0;
}

.last {
    margin-right: 0 !important;
}
/* ========================================news and article close========================= */

/* ==========================================meet proffesional open =================== */

.team-wrap .sec_content_main_title {
    color: #121212;
    font-size: 57px;
    /* font-family: Open Sans; */
}

.sec_content_main_title {
    font-weight: 800;
    line-height: 100%;
    text-align: center;
    margin-bottom: 17px;
    position: relative;
    text-transform: none;
}

.team-wrap .sec_content_main_title {
    color: #121212;
    font-size: 57px;
    /* font-family: Open Sans; */
}

.team-wrap span.sub-title-head {
    color: #ff6796;
    font-size: 33px;
    /* font-family: Kaushan Script; */
}

span.sub-title-head {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    padding-bottom: 0;
}

.sec_content_main_title {
    color: #242424;
    font-weight: 800;
    font-size: 55px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 17px;
    position: relative;
}

.team-wrap .subtitle {
    color: #717171;
    font-size: 16px;
    /* font-family: Open Sans; */
}

.team-wrap .subtitle {
    margin-bottom: 50px;
}
.subtitle {
    text-align: center;
    padding-bottom: 15px;
    margin: 0;
}

#team_members {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.teammember-list {
    vertical-align: top;
    display: inline-block;
    text-align: center;
    width: 30%;
    margin: 0 1% 1% 0;
    float: none;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    border-radius: 0;
}

.teammember-list .thumnailbx {
    border-color: #ff6796;
}

.teammember-list .thumnailbx {
    background-color: #ff6796;
}

.teammember-list .thumnailbx {
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 0%;
    border: 0px solid #fff;
    margin: 0 auto;
}

.teammember-list img {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.team-bottom {
    background-color: #f7f7f7;
}
.team-bottom {
    background: #F1F6FB;
    padding: 0 0 25px;
}

.teammember-list .titledesbox {
    text-align: center;
    padding-top: 30px;
}

.teammember-list cite, .single-caveteam .titledesbox cite {
    color: #676767;
    font-size: 14px;
    /* font-family: Open Sans; */
}
.teammember-list cite, .single-featherteam .titledesbox cite {
    display: block;
    font-style: normal;
    margin: 10px 0;
}

.member-social-icon {
    text-align: center;
}

.member-social-icon {
    padding-top: 0;
}
.member-social-icon {
    margin: 0;
}

.team-wrap .member-social-icon a {
    color: #282828;
}

.member-social-icon a {
    margin: 0 5px 0 0;
    text-align: center;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 40px;
    border-radius: 50%;
}

.member-social-icon i {
    font-size: 14px;
}

.teammember-list a.menuordernow, .single-caveteam a.menuordernow {
    color: #ff6796;
    font-size: 14px;
    font-family: Roboto Condensed;
    border-color: #ff6796;
}

.teammember-list .menuordernow {
    background: none;
}
.menuordernow {
    padding: 12px 42px;
    margin: 15px 0 0 0;
    font-weight: bold;
    display: inline-table;
    border: 1px solid;
}

.teammember-list span.title, .single-caveteam .titledesbox span.title {
    color: #282828;
    font-size: 22px;
    font-weight: 600;
}
/* ========================================meet proffesional close ====================== */

/* =======================================contact detail open========================== */

#openinghourid {
    padding: 0;
}

.openinghour-wrap {
    display: inline-block;
    text-align: center;
}

.bgcolor-contact {
    padding: 60px 70px 57px !important;
}
.left-column-2 {
    width: 48.333%;
}
.left-column-2 {
    float: none;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

#openinghourid .bgcolor-contact .sec_content_main_title {
    color: #121212;
    font-size: 33px;
    /* font-family: Kaushan Script; */
}
#openinghourid .sec_content_main_title {
    text-transform: uppercase;
    line-height: 60px;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
}

.contact-info-gride {
    width: 100%;
    margin: 0 0 13px 0;
    padding: 0;
    display: inline-block;
}

.bgcolor-contact .contact-info-gride-icon {
    border-color: #454545;
}

.contact-info-gride-icon {
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: solid 2px #fff;
    margin: 0 15px 0 0;
}

.contact-info-gride-icon i {
    font-size: 20px;
    color: #121212;
}

.contact-info-gride-con {
    display: table;
    text-align: left;
}

.bgcolor-contact .contact-info-gride h6 {
    color: #121212;
    font-size: 17px;
}

.contact-info-gride h6 {
    text-transform: uppercase;
    margin: 5px 0;
    text-align: left;
}

.bgcolor-contact .contact-info-gride p, .bgcolor-contact .contact-info-gride a {
    color: #121212;
    font-size: 15px;
    font-family: Open Sans;
}

.bgcolor-hours {
    padding: 60px 70px !important;
}
.left-column-2 {
    width: 48.333%;
}
.left-column-2 {
    float: none;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

#openinghourid .sec_content_main_title {
    text-transform: uppercase;
    line-height: 60px;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
}
#openinghourid .bgcolor-hours .sec_content_main_title {
    color: #121212;
    font-size: 33px;
    /* font-family: Kaushan Script; */
}

.bgcolor-hours .workinghours {
    border-color: #454545;
}

.workinghours {
    padding: 0;
    width: 100%;
    margin-bottom: 7.4px;
    padding-bottom: 7px;
    border-bottom: dashed 1px #b0ccb3;
}

.bgcolor-hours .workinghours p {
    color: #454545;
    font-size: 15px;
    /* font-family: Open Sans; */
}
.workinghours p {
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
}

.bgcolor-hours .workinghours span {
    color: #454545;
    font-size: 17px;
    font-family: Open Sans;
}

.workinghours span {
    font-weight: 500;
    float: left;
    text-align: left;
}

.menuordernow {
    padding: 12px 42px;
    margin: 15px 0 0 0;
    font-weight: bold;
    display: inline-table;
    border: 1px solid;
}

.bgcolor-contact .menuordernow {
    background: none;
}

.bgcolor-contact .menuordernow {
    color: #ff6796;
    font-size: 17px;
    font-family: Roboto Condensed;
    border-color: #ff6796;
}
/* =====================================contact detail close =========================== */


/* ====================================footer css open ================================= */

#footer-wrapper {
    color: #555555;
    position: relative;
    background-color: red;
}

.footer {
    border-color: #d9d9d9;
}

.footer {
    padding: 45px 0 35px;
    border-bottom: none;
}

.cols-3 .widget-column-1 {
    width: 29%;
    float: left;
    margin: 0 6% 0 0;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 15px;
    border-bottom: none;
    color: black;
    font-size: 22px;
    /* font-family: Poppins; */
    border-color: #ffffff;
}

.footer .footer_aboutus {
    color: #b3b3b3;
    font-size: 14px;
    font-family: Poppins;
}

.cols-3 .widget-column-2 {
    width: 29%;
    float: left;
    margin: 0 6% 0 0;
}

.recent-post {
    color: #b3b3b3;
    font-size: 14px;
    font-family: Poppins;
}

.recent-post {
    min-height: 70px;
    margin: 0 0 20px 0;
}

.recent-post img {
    border-color: #b3b3b3 !important;
}
.recent-post img {
    float: left;
    width: 70px;
    margin: 3px 10px 5px 0;
    border: 2px solid;
}

.recent-post h6 {
    color: #b3b3b3;
    font-size: 15px;
    font-family: Poppins;
}
.recent-post h6 {
    margin: 0 0 5px;
    font-weight: 600;
}

.cols-3 .widget-column-3 {
    width: 29%;
    float: left;
    margin-right: 0px;
}

.footer h5 {
    color: #ffffff;
    font-size: 22px;
    font-family: Poppins;
    border-color: #ffffff;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: none;
}

.contactdetail {
    line-height: 22px;
    margin-bottom: 20px;
    padding: 0 0 0 20px;
}

#footer-wrapper .contactdetail p {
    color: #b3b3b3;
    font-size: 14px;
    font-family: Poppins;
}
.contactdetail p {
    margin-bottom: 8px;
}

.contactdetail i {
    margin-right: 15px;
    font-size: 16px;
}

.ftcommon {
    padding: 4px 0 6px;
}

#footer-wrapper .contactdetail .phno i {
    color: #b3b3b3;
}

.contactdetail i {
    margin-right: 15px;
    font-size: 16px;
}

#footer-wrapper .contactdetail .phno a {
    color: #b3b3b3;
    font-size: 14px;
    font-family: Poppins;
}

.ftcommon {
    padding: 4px 0 6px;
}

#footer-wrapper .contactdetail .contactemail i {
    color: #b3b3b3;
}
.contactdetail i {
    margin-right: 15px;
    font-size: 16px;
}

#footer-wrapper .contactdetail .contactemail a {
    color: #b3b3b3;
    font-size: 14px;
    font-family: Poppins;
}

.ftcommon {
    padding: 4px 0 6px;
}

#footer-wrapper .contactdetail .contacturl i {
    color: #b3b3b3;
}
.contactdetail i {
    margin-right: 15px;
    font-size: 16px;
}

#footer-wrapper .contactdetail .contacturl a {
    color: #b3b3b3;
    font-size: 14px;
    font-family: Poppins;
}

#footer-wrapper .social-icons a {
    color: #b3b3b3;
    font-size: 14px;
    border-color: #b3b3b3;
}

.social-icons a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 23px;
    text-align: center;
    /* border: 1px solid #e6005c; */
    color: #e6005c;
    vertical-align: middle;
    display: inline-block;
    transition: 0.6s;
    -moz-transition: 0.6s;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    margin: 0 4px 0 0;
}
/* .copyright-wrapper {
    background-color: #333333;
    position: relative;
    padding: 30px 0;
    text-align: center;
} */
.copyright-txt {
    color: #d9d9d9;
    font-size: 15px;
    font-family: PT Sans;
}
#footer-wrapper .copyright-wrapper a {
    color: #d9d9d9;
    font-size: 15px;
    font-family: PT Sans;
}
#footer-wrapper .middle-dash {
    color: #d9d9d9;
}
.design-by {
    color: #d9d9d9;
    font-size: 15px;
    font-family: PT Sans;
}
.design-by {
    color: #d9d9d9;
    font-size: 15px;
    font-family: PT Sans;
}

/* ======================================footer css close=============================== */



@media (max-width: 1168px) {
    .maintopheader .container{padding:0;}
    .header-box.header-right {
        text-align: right;
        float: left;
        padding: 0 0 0 0;
        width: 61.7%;
    }
}

@media (max-width: 1111px) {
	.logo { width: 100%; padding: 10px;}
    .header-box.header-right {width:100%; float: none; text-align: center; clear: both;}
    .pp_topstrip{float: none; padding: 2px;}
    .pp_topstrip .social-icons{line-height: normal;}
    .header-nav{text-align: center;}
    .top-align-right{ text-align: center;}
	
}

@media (max-width: 1100px) {
  #slider .nivo-caption{width: auto;}
  .nivo-caption{top:50%;}
  .slide_info{width: auto; }
  .mainheader{position: relative;}
   /* opening hour */
  #openinghourid .left-column-2 { width: 49%;}
  
  /* counter */
  .counterlist{padding: 0;}

  /* our chef */
.our-chef{ width: 400px;}

/* special dish */
.special-dishes {width: 295px;}
.special_dishes_right {
	width: 100%;
	float: none;
	padding: 50px 30px;
	height: auto;
}
.special_dishes_left {
	width: 100%;
	float: none;
	padding: 75px 0 60px 0;
	height: auto;
}

}

@media (max-width: 992px) {
	.BlogPost { width: 80%; margin: 0 auto; height: auto;}
	.BlogPost.oddnumb{ float: none; }
    .logo h1{margin-top:5px;}
    h2.section_title{margin-bottom: 10px;}
    
    /* resource */
    .Pagee3Column { width:49%;}

    /* about us */
    .left-column-50, .right-column-50{width:50%; float:none; text-align: center; margin: 0 auto;}
    .welcome-boxy .cgymhub_section_subtitle.welcome-boxyclass-subtitle{ margin-top: 20px;}

    /* opening hour */
    #openinghourid .left-column-2 { width: 49%; margin-bottom: 10px;}
    .contact-info-gride h6{text-align: left;}

    /* food menu */
    ul.ourmenu-area li {
      float: none;
      text-align: left;
      width: 100%;     
      clear: both;      
    }

    /* video section */
    #Videocave .sec_content_main_title{ text-align: center;}
    .videocave-wrap .subtitle{ text-align: center;}

    /* feature section */
    .featurewrap .one_half {
        width: 50%; float: none; margin: 0 auto;
      }
      .featurewrap .one_half.last_column {
        width: 100%; float: none; margin: 0 auto;
      }

      /* counter */
  .skillwrap .small_image {
    position: relative;
    top: -80px;    
    z-index: 9999;
    margin: 0 auto;
  }
  .skillwrap .thumbnail_image { 
    margin: 0 auto;
  }
  .skillwrap .history_thumbnail {
    float: none;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .skillwrap .history_counter { text-align: center; float: none; width: 100%;}
      

     

      /*team */
      .teammember-list{ width:46%;}

      /* news */
      .news-box{ width: 48%; margin-bottom: 15px;}

     
      /* testimonial */
      .testimonials-wrap .left-column-60 {
        width: 100%;
      }

      /* footer */
      .cols-2 .widget-column-1, .cols-2 .widget-column-2, .cols-3 .widget-column-1, .cols-3 .widget-column-2, .cols-3 .widget-column-3, .cols-4 .widget-column-1, .cols-4 .widget-column-2, .cols-4 .widget-column-3, .cols-4 .widget-column-4 {
        width: 49%;
        margin: 0 0 30px;
        min-height: 244px;
        padding: 14px;
    }
    .footer {
        padding: 40px 20px 0;
      }

   

      /* section */
      section {background-repeat:repeat !important;}
      section#creativeteam{background-repeat:no-repeat !important;}
    
}
/* Mobile Portrait View */
@media screen and (max-width:767px) {
*{box-sizing:border-box;}
/* resource */
#pagearea .container{ width: 100%;}

/* opening hour */
#openinghourid .left-column-2 { width: 100%;}
#openinghourid .sec_content_main_title{ text-align: center;}

/* counter */
.counterlist{margin-bottom: 15px; }
.Pagee3Column{ width: 100%;}

/* our chef */
.our-chef{width: 100%;}

 /* food menu */
 ul.ourmenu-area li{ text-align: center;}
 ul.ourmenu-area li .ourmenu-thumb{ float: none; width: 100%; height: auto; text-align: center; margin-bottom: 20px;}
 .ourmenu-thumb img{ margin: 0 auto;}
 .menu-title span {	float: none;padding: 0 9px;	width: 20%;	display: block;	text-align: center;	margin: 7px auto;}

.blog-left 
{
    float: none;
    width: 100%;
}
.blog-right 
{
    float: none;
    width: 100%;
}
.header-top .social-icons{ text-align: center; }
.header-top .right{ text-align: center; }
.left, .right{ float:none;}
.headercommon {    width: 100%; text-align: center;}
.container { width:auto; padding:0 20px;}
.wrap_one, .signin_wrap{width:auto; text-align:center;}
.header { width:100%; padding:0 0 10px; position:relative;}
.header .header-inner{ width:100%; padding:0 20px; box-sizing:border-box;}
.logo.logo-left.header-box {	text-align: center;	width: 100%;}
.header span.tagline {	color: #333;	text-align: center;}
.header-box.header-right {text-align: left;	float: none;	width: 100%;}
.logo{ float:none; text-align:center; margin:0; padding:10px 0;}
.logo img{ max-width:90%; height:50px;}
/*coloumn css*/
.one_half, .one_third, .two_third, .one_fourth, .three_fourth, .one_fifth, .four_fifth{ float:none; width:100%; margin:0 0 5% !important;}
/*sidebar css*/
#sidebar{ width:100%; float:none;}
.sidebar-left{ float:none !important; width:100%;}
.flotRight{ float:none !important;}
.blog-post-repeat .post-thumb img{ float:none; margin-right:0; width:100%; height:100%;}
/*gallery css */
.photobooth .filter-gallery{ width:auto;}
.sitefull .photobooth .gallery ul li, .photobooth .gallery ul li{ width:100%;}
.photobooth .filter-gallery ul li a{ padding:5px 15px;}
.photobooth .gallery ul li img{ height: auto;}
/* --------- Pages ------- */
.content-area{ width:auto; margin:0; padding:50px 20px;}
.site-main{ width:auto; margin:0; padding:0; float:none;}
/*slider css*/
#slider{ top:0; margin:0;}
.nivo-directionNav a{ top:39% !important;}

.nivo-caption{ display:none !important;}
/*latest news*/


#testimonials .clientdetails{ text-align: center; }
#testimonials ul li{ text-align:center;}
#testimonials ul li img{ float:none;}
.teammember-list{ width:100%; float:none; margin:0 0 10%; text-align:center;}
#clienttestiminials .arrow_box::before{border: none;}
.testimonials-wrap .left-column-60{width: 100%; float: none; text-align: center;}
#clienttestiminials .tmthumb{float: none; margin: 0 auto;}
#testimonialmain .testimonials-wrap h2{ text-align: center;}
#clienttestiminials .owl-controls .owl-dots {    width: auto;    text-align: center;    margin: 0;}
#clienttestiminials{padding: 0;}
#clienttestiminials .arrow_box {padding: 40px 0 0 0;    margin: 0 0 0 0;}
#testimonialmain .testimonials-wrap h2{margin-bottom:0;}
#clienttestiminials h4{ margin-top:20px;}
.contact_left, .contact_right{ float:none; width:100%; margin-bottom:10%;}
/*footer css */
.cols-3{ width:100% !important; display:block; margin-right:0; margin-bottom:15%;}
.copyright-txt, .design-by { text-align:center; float:none;}
.copyright-txt, .design-by{ width: 100%; }
#contactform_main input[type="text"], #contactform_main input[type="email"], #contactform_main input[type="tel"], #contactform_main input[type="url"], #contactform_main textarea{width:100%;}
/*custom css*/
.signin_wrap{ text-align: center; line-height:25px; padding:10px 0;}
.signin_wrap .fa{ display:inline; }
.services-wrap, .welcome-wrap{ text-align:center;}
.quovolve-nav span a{ bottom:10%; top:auto;}
.searchbox{ width:100%; padding-left:0;}
.wrap_one .fa{ float:none; display:block; text-align:center; margin-right:0;}

.services-wrap .one_third .fa{ float:none;}
.services-wrap .one_third h4{ margin:20px 0 0;}
h2.section_title, .client-wrap{ text-align:center;}
h2.section_title{ font-size:24px!important;}

.tm_thumb, #testimonials ul li .tm_description{ float:none; width:100%;}
ol.nav-numbers{ display:none;}
#testimonialsarea #testimonials{ float:none; width:auto; text-align:center;}
#testimonials ul li .tm_description p, #testimonialsarea .testimonials-wrap h2{ text-align:center;}
.signin_wrap .right, .signin_wrap .left{ text-align:center;}
.signin_wrap .social-icons{ width:auto;}
.signin_wrap .left span{ float:none;}
.BlogPost{ float:none; width:auto; margin:0 0 5%;}
#testimonialsarea .container{ overflow:visible;}
#testimonialsarea .last_column img{ position:relative;}
.frdbox{ float:none; width:100%; margin:0 0 5%;}
.quovolve-nav{ display:none;}
.team_column{ width:270px; float:none; margin:0 auto 20px !important; display:block;}
#Grid .mix{ width:100%; float:none; height:auto;}
.top4box{ float:none; width:100%; margin:0 0 25px;}
.controls li{ margin-left:10px;}
/*footer css */
.footer{ padding:40px 20px;}
.cols-2 .widget-column-1, 
.cols-2 .widget-column-2, 
.cols-3 .widget-column-1, 
.cols-3 .widget-column-2, 
.cols-3 .widget-column-3, 
.cols-4 .widget-column-1, 
.cols-4 .widget-column-2, 
.cols-4 .widget-column-3, 
.cols-4 .widget-column-4{ 
width:auto !important; float:none; min-height:inherit; margin:0 0 30px; 
}

/*.blog-left {    float: none;    width: 100%;}
.blog-right {    float: none;    width: 100%;}*/

.pricing_table.pcol3 .price_col {
    width: 100%;
  }
  .nivo-directionNav{display: none;}

}

/* Mobile Landscape View */
@media screen and (min-width: 481px) and (max-width: 767px){
*{box-sizing:border-box;}
.container, .content-area, #pageboxes .container{ width:440px; margin:0 auto;}
.nivo-caption { display:block !important;}

.slide_info h2{ font-size:20px !important; padding:0 !important; margin-bottom:10px !important; line-height:28px; text-shadow:1px 0 0 #333;}

#slider .nivo-caption{bottom:0;}
.frdbox{ width:45%; margin:0 5% 5% 0; float:left;}
.header-navigation{ width: 100%; }
.welcome-boxy{ width: 100%; }

.news-box{ width: 100%; float: none; text-align: center; display: inline-block; margin-bottom: 25px; clear: both;}
.news-box .news-thumb{ float: none; width: auto; height: auto; text-align: center;display: inline-block; }
.news-box .news-thumb img{ width: auto; }
#newswraper .news{ width: 100%; float: none; text-align: center; display: inline-block; }
#newswraper .post-row:nth-child(2n) .news-thumb{ float: none; }
.vacation-wrap{ float: none; }
.featurewrap .one_half{width: 100%;}
.featurewrap .one_half.last_column{ width: 100%; }
.feature-2-column{width: 100%;}
#bestoffer{ padding-bottom: 15px; } 
.pp_topstrip::before{display: none;} 
}

/* Tablet View */
@media screen and (max-width:1169px) and (min-width:768px) { 
*{box-sizing:border-box;}
.header-box.header-left {width: 100%;float: none; padding-bottom:11px;}
.logo.logo-left.header-box{ text-align:center;}
.header span.tagline{ text-align:center;}
/* .header-box.header-right { text-align: left;    float: none;   width: 100%;} */
.news-box .news-thumb{height:auto;}
.news-box .news-thumb img{min-height:auto;}
#slider .nivo-caption{ bottom:1px;}
.header-navigation{ width: 100%; }
.signin_wrap .social-icons a{ box-sizing:content-box; padding:0 4px;}
.container { width:auto; padding:0 20px;}
.maintopheader .container{ padding:0 20px;}
.wrap_one, .signin_wrap{width:auto;}
.header .header-inner{ width:auto; padding:0 0px;}
.toggle a{ text-align: left; }
.logo{ margin:0; padding:10px 0 0; float:none; text-align:center; margin-bottom:10px;}
.content-area{ width:auto; margin:0; padding:50px 20px;}
.quovolve-nav .nav-next a{ right:0px;}
.sitefull .photobooth .gallery ul li, .photobooth .gallery ul li{ width:24.5%;}

#sidebar{ width:30%;}
.sidebar-left{ width:30%;}
.sidebar-left #sidebar{ width:100%;}
.site-main{ width:65%;}

.slide_info h2{ font-size:24px !important; padding:0 !important; margin-bottom:10px !important; line-height:30px; text-shadow:1px 0 0 #333;}
.slide_info p{ padding:5px 0 !important;  font-size:13px !important; text-shadow:1px 0 0 #333; }


/*custom  css*/
.services-wrap .one_third{ text-align:center;}
.services-wrap .one_third .fa{ float:none;}
.services-wrap .one_third h4{ margin:15px 0;}
.wrap_one .fa{ margin-bottom:30px;}
.recent-post h6{ padding-top:7px;}
ol.nav-numbers{ bottom:10%;}
.frdbox{ width:45%; margin:0 5% 5% 0; float:left;}
.BlogPost{ min-height:255px; height: auto;}
.panel{ min-height:350px; height:auto;}
.team_column{ margin:0 2% 2% 0; width:23%;}
.box1, .box2{ width:175px; height:auto;}
#Grid .mix{ height:150px;}
.footer{ padding:40px 20px;}

/*header */


}

@media screen and (max-width:1169px) and (min-width:981px) { 
html{overflow-x:hidden; }
/*pricing table*/
.pricing_table.pcol1 .price_col{width:99%;}
.pricing_table.pcol2 .price_col{width:49.5%;}
.pricing_table.pcol3 .price_col{width:33%;}
.pricing_table.pcol4 .price_col{width:24.75%;}
.pricing_table.pcol5 .price_col{width:19.75%;}
.logo{ padding:10px 0 10px 10px; float:left; text-align:right;}
.panel{ min-height:350px; height:auto;}
.team_column{ margin:0 2% 2% 0; width:23%;}
.box1, .box2{ width:220px; height:auto;}
}

@media screen and (max-width: 980px){
    .headercommon{width:49%;}
    .maintopheader{position:relative;}
.toggleMenu{display: block;}
.header-nav{float:none; margin:0; position:relative; overflow-x:hidden; background-color:#333 !important; }
.header-nav ul{width:100% !important; float:none !important; margin:0; padding:0;}
.header-nav ul li{border-top:none; display:block; float:none; text-align:left;}

.header-nav ul li a{padding:5px 10px !important; display:block; color:#000; text-align:left; }
.header-nav ul li ul li a{border:none;}
.header-nav ul li a:hover{color:#28374a;}
.header-nav ul.sub-menu{ /*margin-left:10px;*/}
.header-nav ul li ul, .header-nav ul li ul ul{ display:block !important;}
.header-nav ul li ul li a:before{content:"\00BB \00a0";}
.header-nav ul li ul li a{padding-left:20px !important; border-top:none;}
.header-nav ul li ul li ul li a{padding-left:30px !important;}
.header-nav ul li ul li ul li ul li a{padding-left:40px !important;}
.header-nav ul li:hover > ul{ background:none !important;}

.header-nav ul li:hover > ul{ background: transparent !important; width:auto !important; display:block; position: relative !important; left:0; right:0; top:0;}
.header-nav ul li:hover ul li ul, .header-nav ul li:hover ul li:hover > ul, .header-nav ul li:hover ul li:hover > ul li ul{  background: transparent !important; display:block; position:relative !important;  right:0; left:0; top:0;}
.header-nav ul li:hover ul li:hover ul, .header-nav ul li:hover ul li:hover ul li:hover ul{ left:0 !important;}
.header-nav ul li a:hover, .header-nav ul li.current_page_item a{ border-bottom:none;}
.header { width:100%; padding:0 0 10px; position:relative;}

.header-nav ul.sub-menu li a{ color: #fff !important; }
.header{ padding: 0; }
#welcomearea .one_half{ width: 100%; float: none;}
#welcomearea .one_half.last_column{ width: 100%; float: none; }
#welcomearea .featureslists{ width: 100%; }
.box1, .box2{ width: auto; }
.tpostdetails{ border: none; }
}
@media screen and (max-width:800px) {
	#welcomearea .one_half{ width: 100%; float: none;}
#welcomearea .one_half.last_column{ width: 100%; float: none; }
#welcomearea .featureslists{ width: 100%; }

}
@media screen and (max-width:767px) {
.headercommon {    width: 100%;}
.header-box.header-left{ width:100%; float:none;}
.threebox{ width:100%; margin-bottom:17px;}
.left-column-50, .right-column-50{width:100%; float:none;}
#testimonialmain::after{ background-color:#ffffff !important;}
.left_videobox{padding:0;}
.right_testimonial{padding:0;}
#testimonialmain .testimonials-wrap h2{ margin-bottom:0px;}
#testimonialmain .testimonials-wrap .left_videobox h2{margin-bottom: 30px;}
.nivo-controlNav{display: none;}

.right-column-50{margin-top: 20px;}
.slider-main{ height:auto; min-height:auto; overflow:visible;}
.innerbanner{ height:auto; overflow:visible;}
.header-nav ul.sub-menu li a{ color: #fff !important; }
.header{ padding: 0; }
.toggle a{ text-align: left; }
.header .header-inner{ padding: 0; }
.home .sliderlogo.logo.logo-left.header-box {	top: 26%;	left: 10%;	right: 10%;	padding: 5px 5px;}
#welcomearea .one_half{ width: 100%; float: none;}
#welcomearea .one_half.last_column{ width: 100%; float: none; }
#welcomearea .featureslists{ width: 100%; }
.header-nav ul li ul li a{border-bottom: none;}
.header-nav ul li a:hover{border-bottom: none;}
.vacation-wrap{ float: none; width: 100%; }
}
@media screen and (max-width:673px) {
        .nivo-caption{display:none !important;}
.logo a{ text-align: center; }
.header span.tagline{text-align: center;}
.header-box{ width: 100%; } 
.header-box.header-right {	text-align: center;	float: none;}
.header-nav ul.sub-menu li a{ }
.header{ padding: 0; }
.toggle a{ text-align: left; }
.header .header-inner{ padding: 0; }
.home .sliderlogo.logo.logo-left.header-box {	top: 26%;	left: 10%;	right: 10%;	padding: 5px 5px;}
#welcomearea .one_half{ width: 100%; float: none;}
#welcomearea .one_half.last_column{ width: 100%; float: none; }
#welcomearea .featureslists{ width: 100%; }
.header-nav ul li ul li a{border-bottom: none;}
.header-nav ul li a:hover{border-bottom: none;}
}


@media screen and (min-width:300px) and (max-width: 480px){

.slider-main{ height:auto; min-height:auto; overflow:visible;}
.innerbanner{ height:auto; overflow:visible;}
.header-navigation{ width: 100%; }
.header-nav ul.sub-menu li a{ }
.header{ padding: 0; }
.toggle a{ text-align: left; }
.header .header-inner{ padding: 0; }
.logo h1{ font-size: 25px !important; }
.home .sliderlogo span.tagline{ font-size: 13px !important; margin-top: 0; }
#welcomearea .one_half{ width: 100%; float: none;}
#welcomearea .one_half.last_column{ width: 100%; float: none; }

.welcome-boxy{ width: 100%; }
.chooseus-wrap .one_third{ width: 100%; }
.destinationlist { width: 100%; float: none; padding-bottom: 50px; }
.destinationlist p.price{ padding: 0; margin: 20px 0; }
.destinationlist .description{ border:none; margin:10px 0; }
.news-box{ width: 100%; float: none; text-align: center; display: inline-block; margin-bottom: 25px; clear: both;}
.news-box .news-thumb{ float: none; width: auto; height: auto; text-align: center;display: inline-block; }
.news-box .news-thumb img{ width: auto; }
#newswraper .news{ width: 100%; float: none; text-align: center; display: inline-block; }
#newswraper .post-row:nth-child(2n) .news-thumb{ float: none; }
.vacation-wrap{ float: none; width: 100%; }
.featurewrap .one_half{width: 100%;}
.featurewrap .one_half.last_column{ width: 100%; }
.feature-2-column{width: 100%;}
#bestoffer{ padding-bottom: 15px; } 
}
@media screen and (max-width:1169px) and (min-width:768px) { 
.slider-main{ height:auto; min-height:auto; overflow:visible;}
.innerbanner{ height:auto; overflow:visible;}
}