@import url('https://fonts.googleapis.com/css?family=Roboto|Rubik&display=swap');
body {
    font-family: 'Roboto', 'Poppins', sans-serif;
    font-size: 14px;
    background: #f5f3f3;
    /* position: relative; */
}
::selection
{
    background: red;
    color: white;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

ul, ol {
    list-style: none !important;
}

img {
    display: inline-block;
    width: 100%;
}

.buttons {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 30px;
    display: inline-block;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    overflow: hidden;
    border-radius: 2px;
    border: none;
    outline: none;
    color: #fff;

}
@font-face {
    font-family: "COCOGOOSE";
    src: url("cocogoosefont/Cocogoosetrial.eot"); /* IE9 Compat Modes */
    src: url("cocogoosefont/Cocogoosetrial.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
      url("cocogoosefont/Cocogoosetrial.otf") format("opentype"), /* Open Type Font */
      url("cocogoosefont/Cocogoosetrial.svg") format("svg"), /* Legacy iOS */
      url("cocogoosefont/Cocogoosetrial.ttf") format("truetype"), /* Safari, Android, iOS */
      url("cocogoosefont/Cocogoosetrial.woff") format("woff"), /* Modern Browsers */
      url("cocogoosefont/Cocogoosetrial.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
  }
/* back to top button */

.back_to_top {
    display: block;
    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    border-radius: 50%;
    text-align: center;
    height: 45px;
    width: 45px;
    padding-top: 8px;
    color: black;
    background: #fff;
    -webkit-box-shadow: 0 5px 33px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 33px rgba(0, 0, 0, .2);
    -webkit-transition: .3s ease;
    transition: .3s ease;
    display: none;
}

.back_to_top:hover {
    background: #2A708A;
    color: white;
    transform: translateY(-8px);
}

/* preloader */

/*PRELOADING------------ */

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: 10000000;
}

.preloader-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-logo img {
    width: 180px;
    /* transition: 0.5s linear; */
    animation: blur-image 2s linear;
}

@keyframes blur-image {
    0% {
        width: 170px;
    }
    100% {
        width: 180px;
    }
}

/* ================  header start here  ================ */

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/banner/banner1.jpg');
    background-size: cover;
    /* height: 100vh; */
    padding-bottom: 180px;
}

.navbar {
    z-index: 1030;
}

.nav.navbar.navbar-expand-lg.navbar-light.fixed-top.white {
    padding: 0 10px;
}

.navbar-brand img {
    width: 140px;
}

.navbar-brand h3 {
    font-weight: bold;
    font-size: 24px;
    display: none;
}

ul.navbar-nav li {
    margin-right: 3px;
}

.nav-item a {
    color: white !important;
    font-size: 13px !important;
    padding: 5px 15px !important;
    font-family: 'Roboto', sans-serif;
}

.nav-item a:hover {
    background-color: white;
    color: black !important;
    border-radius: 20px;
}

.nav-item .menu-active {
    background-color: white;
    color: black !important;
    border-radius: 20px;
}



.flag a img {
    width: 20px;
    margin-right: 18px;
}

/* header >> menu search option list */

/* header >> sidenav  */

.slideNav ul li a i {
    font-size: 18px;
    margin-right: 10px;
    width: 30px;
}

.slidenav-bg {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.33);
    z-index: 100000000;
    display: none;
}

@media screen and (min-width: 992px) {
    .slidenav-bg {
        display: none !important;
    }
}

.slideNav {
    background-color: #fff;
    color: #000;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    transition: 0.5s;
    will-change: transform;
    transform: translateX(-100%);
}

.slideNav ul li a {
    color: #000 !important;
    display: block;
    padding: 20px;
}

.slideNav ul li a:hover {
    background-color: #eee;
    color: #27bdf5 !important;
}

.slideNav ul li .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    transition: 1s;
}

.is-active.slidenav-bg .slideNav {
    transform: translateX(0);
}

@media screen and (min-width:1200px) {
    .slidenav-bg {
        display: none;
    }
}

/* header >> dropdown menu open on click */

.dropdown-menu {
    overflow: hidden;
}

.dropdown-menu a {
    transition: 0.5s linear;
    color: black !important;
}

.dropdown-menu a:hover {
    transform: translateX(8px);
}

/* header >> white-nav */

.white {
    background: white;
    /* border-bottom: 1px solid black; */
    color: black !important;
    box-shadow: 0 4px 21px rgba(120, 120, 120, .05);
}

.white .nav-search, .white .nav-item a {
    color: #000000 !important;
}

.white .nav-search input::placeholder {
    color: #000000 !important;
}

.white .navbar-toggler span i {
    color: #000000 !important;
}

/* header >> sing in butn */

.log-btn i {
    margin-right: 10px;
}

.log-btn:hover {
    color: rgba(255, 255, 255, 0.774) !important;
}

/* header >> nav-search  */

.nav-search {
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 10px 20px;
}

.nav-search i {
    margin-right: 10px;
}

.nav-search input {
    font-size: 13px;
    background: none;
    border: none;
    outline: none;
    color: #1d1d23;
    width: 220px;
}

.nav-search input::placeholder {
    color: #fff;
}

.nav-search.is-focus {
    color: #1d1d23 !important;
    background: #fff !important;
    box-shadow: 0px 6px 5px 0 rgba(0, 0, 0, 0.44);
    border-top: 1px solid #ebebeb;
}

.is-focus input::placeholder {
    color: #1d1d23 !important;
}

/* header >> mobile menu */

.navbar-toggler span i {
    color: white;
    font-size: 20px;
}

.navbar-light .navbar-toggler {
    border: none !important;
}

/* header >> mobile-header-search-bar */

.input-group-text {
    background-color: white;
    border-radius: 0 !important;
    border: none !important;
    padding-left: 28px;
}

/* @@@@@@@@@@@ media screen for menu @@@@@@@@@@@ */

@media screen and (max-width:1200px) {
    .nav-search input {
        display: none;
    }
    .nav-search i {
        cursor: pointer;
    }
}

@media screen and (max-width:992px) {
    .menu ul, .log-btn {
        display: none;
    }
    .nav-item a {
        padding: 10px 16px !important;
    }
}

/* // home page header title start here // */

/* home page >> header title */

.header-title {
    text-align: center;
    color: #fff;
    padding-top: 180px;
}

.header-title h2 {
    text-shadow: 2px 2px 6px #000000;
    margin-bottom: 20px;
    font-size: 28px;
    /* font-family: 'Roboto', sans-serif; */
    font-family: "COCOGOOSE";
    font-weight: lighter;
}

.header-title h4 {
    margin-bottom: 0 !important;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 23px;
}

.header-title p {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 29px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
}

/* home page >> main search feature box */

.feature-box {
    text-align: left;
    /* width: 68%; */
    margin: auto;
    margin-top: 50px;
}

.feature-box li {
    list-style: none;
    font-weight: bold;
}

.feature-box li i {
    margin-right: 10px;
    font-size: 24px;
}

/* home page >> main search box categories title */

.home-search-tab .nav-link {
    color: rgb(179, 179, 179);
    border: none;
    font-size: 13px !important;
}

.home-search-tab a i {
    font-size: 16px;
}

.home-search-tab .nav-link.active {
    background: none;
    color: white;
}

@media screen and (max-width:1100px) {
    .home-search-tab {
        overflow-x: auto;
        display: -webkit-box;
    }
}

.search-box {
    width: 100%;
    background: #fff;
    padding: 20px;
    /* border-radius: 10px; */
    border-radius: 30px;
    margin-top: 20px;
    position: relative;
}

/* home page >> search box little tri-angle */

/* .search-box span {
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: white;
        position: absolute;
        left: 34px;
        top: -5px;
        transform: rotate(45deg);
    } */

.input-field {
    position: relative;
    /* width: 30%; */
    /* width: 22%; */
    /* line-height: 44px; */
    line-height: 38px;
    /* display: inline-block;
    margin-right: 20px; */
    margin-top: 10px;
}

.input-field label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #1d1d23;
    transition: 0.2s all;
    cursor: text;
}

.input-field input {
    width: 100%;
    border: 0;
    outline: 0;
    border-bottom: 2px solid #dcdada;
    box-shadow: none;
    color: #111;
    transition: 1s linear;
}

.input-field input:focus {
    border-width: 2px;
    border-color: #2A708A;
}

.input-field input:focus~label, .input-field label.is-focus {
    font-size: 14px;
    top: -24px;
    /* color: #f24286; */
    color: #2A708A;
}

.input-field i {
    font-size: 18px !important;
    line-height: 0 !important;
    position: absolute;
    right: 0;
    top: 20px;
    color: #807e7e;
}
/* home page .search-box >> input categories select customize */
.input-field .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover
{
    background: #2f9bc3;
    border: none;
}
.ui-state-default.ui-state-active {
    background-color: #2f9bc3 !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    text-align: center;
}
/* home page search box event tab (search-box) >> calender customize */
.input-field .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    background: none;
    border: none;
    border-radius: 3px;
}
.input-field .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight
{
    background: #2f9bc3;
    color: white !important;
    border: none;
    border-radius: 3px;
    text-align: center;
}
.input-field .ui-state-highlight,  .ui-widget-header
{
    background-color: white !important;
    border: none !important;
}
#place-home .ui-state-default,#place-home .ui-widget-content .ui-state-default,#place-home .ui-widget-header .ui-state-default, #place-home .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    border:none;
    background: white;
    outline: none;
    border-bottom: 2px solid #dcdada;
    border-radius: 0;
    width: 100% !important;
    margin-top: 11px;

}
#place-home .ui-state-hover,#place-home .ui-widget-content .ui-state-hover,#place-home .ui-widget-header .ui-state-hover, #place-home .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus
{
    background: white;
    border: none;
    border-bottom: 2px solid #dcdada;
    
}
#events-home .ui-state-default,#events-home .ui-widget-content .ui-state-default,#events-home .ui-widget-header .ui-state-default, #events-home .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    border:none;
    background: white;
    outline: none;
    border-bottom: 2px solid #dcdada;
    border-radius: 0;
    width: 100% !important;
    margin-top: 11px;

}
#events-home .ui-state-hover,#events-home .ui-widget-content .ui-state-hover,#events-home .ui-widget-header .ui-state-hover,#events-home .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus
{
    background: white;
    border: none;
    border-bottom: 2px solid #dcdada;
    
}
#jobs-home .ui-state-default,#jobs-home .ui-widget-content .ui-state-default,#jobs-home .ui-widget-header .ui-state-default, #jobs-home .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    border:none;
    background: white;
    outline: none;
    border-bottom: 2px solid #dcdada;
    border-radius: 0;
    width: 100% !important;
    margin-top: 11px;

}
#jobs-home .ui-state-hover,#jobs-home .ui-widget-content .ui-state-hover,#jobs-home .ui-widget-header .ui-state-hover, #jobs-home .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus
{
    background: white;
    border: none;
    border-bottom: 2px solid #dcdada;
    
}
#categories-home .ui-state-default,#categories-home .ui-widget-content .ui-state-default,#categories-home .ui-widget-header .ui-state-default,#categories-home .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    border:none;
    background: white;
    outline: none;
    border-bottom: 2px solid #dcdada;
    border-radius: 0;
    width: 100% !important;
    margin-top: 11px;

}
#categories-home .ui-state-hover,#categories-home .ui-widget-content .ui-state-hover,#categories-home .ui-widget-header .ui-state-hover, #categories-home .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus
{
    background: white;
    border: none;
    border-bottom: 2px solid #dcdada;
    
}
/* home page featurebox(search) >> range slider option */
#real-estate-home > .ui-state-default,#real-estate-home  .ui-widget-content .ui-state-default,#real-estate-home  .ui-widget-header .ui-state-default, #real-estate-home  .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    /* border: none; 
    background: white;
    outline: none;
    border-bottom: 2px solid #dcdada;
    border-radius: 0;
    width: 100% !important;
    margin-top: 0px !important; */
}
#real-estate-home .ui-state-default,#real-estate-home .ui-widget-content .ui-state-default,#real-estate-home .ui-widget-header .ui-state-default,#real-estate-home .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    border: 1px solid #c5c5c5;
    background: white;
    font-weight: normal;
    color: #454545;
    border-radius: 50%;
    outline: none;
}
#real-estate-home .ui-widget-header
{
    /* background: #205fea; */
    background: #2f9bc3 !important;
    color: #333333;
    font-weight: bold;
}
#real-estate-home .ui-widget.ui-widget-content
{
    border: none;
}
#real-estate-home .ui-widget-content
{
   
    background: #f3f3f3;
    color: #333333;
}
#real-estate-home .ui-slider-horizontal
{
    height: 0.3em;
    margin-top: 5px;
}
#real-estate-home .ui-slider-horizontal .ui-slider-handle
{
    top:-0.5em;
}
/* home page search-box >> range slider for cars */
#cars-home .ui-state-default,#cars-home .ui-widget-content .ui-state-default,#cars-home .ui-widget-header .ui-state-default,#cars-home .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
{
    border: 1px solid #c5c5c5;
    background: white;
    font-weight: normal;
    color: #454545;
    border-radius: 50%;
    outline: none;
}
#cars-home .ui-widget-header
{
    /* background: #205fea; */
    background: #2f9bc3 !important;
    color: #333333;
    font-weight: bold;
}
#cars-home .ui-widget.ui-widget-content
{
    border: none;
}
#cars-home .ui-widget-content
{
   
    background: #f3f3f3;
    color: #333333;
}
#cars-home .ui-slider-horizontal
{
    height: 0.3em;
    margin-top: 5px;
}
#cars-home .ui-slider-horizontal .ui-slider-handle
{
    top:-0.5em;
}
.home-range p
{
    margin-bottom: 0 !important;
}
.home-range p label
{
    color: black !important;
    margin-bottom: 0 !important;
    font-size: 13px !important;
}
.home-range p input
{
    color: black;
    font-size: 12px;
    display: block;
}
.feature-btn {
    background-color: #2f9bc3;
    /* float: right; */
    /* width: 30%; */
    /* width: 22%; */
    width: 100%;
    border-radius: 20px;
    margin-top: 10px;
}

.feature-btn i {
    margin-right: 10px;
}

.feature-btn:hover {
    background-color: #2a708a;
}

/* @@@@@@@@@@@ media screen for header @@@@@@@@@@@ */

@media screen and (max-width:1000px) {
    .input-field {
        width: 100%;
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
    .feature-btn {
        float: none;
        width: auto;
        width: 100%;
    }
    .home-range
    {
        margin-bottom: 10px;
    }
}

/* ================ places start here  ================ */

.place {
    padding: 80px 0;
    text-align: center;
}

.place h6 {
    color: #2f9ac6;
}

.place h4 {
    color: #000000;
}

.place-container {
    margin-top: 50px;
}

/* home page >> floating card carousel  */

.card-box {
    /* width: 27%; */
    /* border: 1px solid gray; */
    border-radius: 15px;
    overflow: hidden;
    /* margin: 0 15px !important; */
    margin-bottom: 50px;
}

.card {
    overflow: hidden;
    width: 100% !important;
    border: none;
    border-radius: 0px;
}

.card-image {
    position: relative;
    border-radius: 15px 15px 0 0;
}

.card-image img {
    height: 250px !important;
    border-radius: 15px 15px 0 0;
}

.open-close-status {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 15px;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    padding: 5px 10px;
    z-index: 100;
}

.image-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.589);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 15px 15px 0 0;
}

.card-body {
    transition: 0.5s;
    background-color: white;
    height: 107px;
    position: relative;
    border-radius: 0 0 15px 15px;
}

.card-body h5 {
    color: black;
    font-size: 17px;
    margin-top: 20px;
}

.card-body p {
    color: #7e7e89;
    font-size: 12px;
}

.card-body img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    top: -46%;
    left: 5%;
}

.place-contact {
    text-align: center;
    margin-top: 12px;
}

.place-contact ul li {
    display: inline-block;
    margin-right: 12px;
    font-size: 13px;
}

.place-contact ul li a {
    color: #7e7e89;
}

.place-contact ul li a i {
    margin-right: 10px;
}

.card:hover .card-body {
    transform: translateY(-50px);
}

.feature-review {
    background-color: white;
    padding: 8px;
    box-sizing: border-box;
}

.feature-review-left {
    text-align: left;
    float: left;
}

.feature-review-left ul li {
    float: left;
}

.feature-review-left ul li a {
    color: #565662;
    font-size: 12px;
}

.feature-review-left ul li a i {
    width: 30px;
    height: 30px;
    background-color: #43cc30;
    color: white;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.feature-review-left ul li .shopping {
    background-color: #ed8c19;
}

.feature-review-left li span, .feature-review-right li span {
    display: inline-block;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 10px;
    color: #565662;
    border: 1px solid rgba(0, 0, 0, .07);
    cursor: pointer;
}

.feature-review-right {
    float: right;
}

.feature-review-right ul li {
    float: left;
}

.feature-review-right ul li span i {
    font-size: 14px;
}

.place .owl-item {
    opacity: 0.4;
}

.place .owl-item.active {
    opacity: 1;
}


/* /// >>> home page >> fixed card design ///
.card-box {
    // width: 27%; ///
    border-radius: 15px;
    overflow: hidden;
    /// margin: 0 15px !important; ///
    /// box-shadow: 2px 2px 5px rgb(196, 195, 195); ///
    margin-bottom: 50px;
}

.card {
    overflow: hidden;
    width: 100% !important;
    border: none;
    border-radius: 0px;
}

.card-image {
    position: relative;
    border-radius: 15px 15px 0 0;
}

    .card-image img {
        height: 250px !important;
        border-radius: 15px 15px 0 0;
    }

.open-close-status {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 15px;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    padding: 5px 10px;
    z-index: 100;
}

.image-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.589);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 15px 15px 0 0;
}

.card-body {
    transition: 0.5s;
    background-color: white;
    height: 107px;
    position: relative;
    border-radius: 0 0 15px 15px;
}

    .card-body img {
        display: inline-block !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        float: left;
    }

.card-place-info {
    /// display: inline-block;
    float: left; ///
    margin-left: 6px;
}

.card-body .card-place-info h5 {
    color: black;
    font-size: 15px;
    /// margin-top: 20px; ///
}

.card-body .card-place-info p {
    color: #7e7e89;
    font-size: 12px;
}
/// old card body img ///
/// .card-body img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    top: -46%;
    left: 41%;
} ///

.place-contact {
    text-align: center;
    margin-top: 12px;
}

    .place-contact ul li {
        display: inline-block;
        margin-right: 12px;
        font-size: 13px;
    }

        .place-contact ul li a {
            color: #7e7e89;
        }

            .place-contact ul li a i {
                margin-right: 10px;
            }

/// .card:hover .card-body {
    transform: translateY(-50px);
} ///

.feature-review {
    background-color: white;
    padding: 8px;
    box-sizing: border-box;
}

.feature-review-left {
    text-align: left;
    float: left;
}

    .feature-review-left ul li {
        float: left;
    }

        .feature-review-left ul li a {
            color: #565662;
            font-size: 12px;
        }

            .feature-review-left ul li a i {
                width: 30px;
                height: 30px;
                background-color: #43cc30;
                color: white;
                text-align: center;
                line-height: 30px;
                border-radius: 50%;
                margin-right: 10px;
            }

        .feature-review-left ul li .shopping {
            background-color: #ed8c19;
        }

    .feature-review-left li span, .feature-review-right li span {
        display: inline-block;
        width: 26px;
        height: 26px;
        text-align: center;
        line-height: 26px;
        border-radius: 50%;
        font-size: 12px;
        margin-left: 10px;
        color: #565662;
        border: 1px solid rgba(0, 0, 0, .07);
        cursor: pointer;
    }

.feature-review-right {
    float: right;
}

    .feature-review-right ul li {
        float: left;
    }

        .feature-review-right ul li span i {
            font-size: 14px;
        } */

/* owl-nav-control */

.owl-nav-control {
    margin-top: 30px;
}

.owl-nav-control div {
    display: inline-block;
}

.owl-nav-control span {
    display: inline-block;
    margin-right: 10px;
    background-color: none;
    border-radius: 50%;
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 45px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 50%;
    color: #7e7e89;
    text-align: center;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.owl-nav-control span:hover {
    /* background-color: #2A708A; */
    background-color: #17a2b8;
    color: white;
}

/* owl dots  */

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 35px;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: black !important;
}

.owl-theme .owl-dots .owl-dot.active {
    background: none !important;
    border: 1px solid black !important;
    border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: none !important;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 8px;
    outline: none;
}

/* =====================================  Main footer start here  =================================== */

footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('image/footer/footerdef.jpg');
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
}

.footer-menu {
    margin-top: 80px;
}

footer p {
    margin-bottom: 0 !important;
    font-size: 13px;
}

.get-the-app img {
    width: 100px;
    display: block;
}

/* footer-box */

.footer-box {
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* footerbox >> footer-social */

.footer-social ul li {
    float: left;
    ;
}

.footer-social ul li a {
    display: block;
    padding: 5px;
    color: white;
}

/* footerbox >> footer-navigation */

.footer-navigation ul li a {
    display: block;
    color: white;
}
.footer-navigation .go-to-event
{
    background-color: #17a2b8;
    width: 50%;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
}
/* footerbox >> footer-brandlogo */

.footer-brandlogo {
    width: 130px;
    text-align: center;
}

/* footer-box >> footer-copyright */

.footer-copyright {
    text-align: center;
}

/* @@@@@@@@@@@@@ media screen for footer @@@@@@@@@@@@@@@@ */

@media screen and (max-width:768px) {
    .footer-box p {
        text-align: left !important;
    }
}

/* =====================[02-PAGE]============================== EXPLORE PAGE START HERE   ================================[02-PAGE]=================== */

/* explore page >> finder header */

.explore-content-box {
    padding-top: 100px;
}

.explore-finder-header {
    /* height: 70px; */
    background-color: white;
    /* padding: 21px 0; */
    box-shadow: 0 1px 2px black;
    text-align: center;
}

.explore-finder-header span h5 {
    padding-top: 10px;
    margin-bottom: 0 !important;
}

.explore-finder-header ul {
    margin-bottom: 0 !important;
    width: 100%;
}

.explore-finder-header ul li {
    display: inline-block;
}

.explore-finder-header ul li a {
    display: inline-block;
    color: black;
    padding: 20px 9px;
    border-bottom: 2px solid transparent;
    transition: border 0.5s linear;
    width: 100%;
}

.explore-finder-header ul li a i {
    margin-right: 6px;
    font-size: 15px;
}

.explore-finder-header ul li a:hover {
    color: #2f9bc3;
    border-bottom: 2px solid #2f9bc3;
}

.scrollmenu ul li a.active {
    color: #2f9bc3 !important;
    border-bottom: 2px solid #2f9bc3 !important;
}

@media screen and (max-width: 991px) {
    .explore-finder-header ul {
        overflow: auto;
        white-space: nowrap;
        display: block;
    }
}

@media screen and (max-width:580px) {
    .explore-finder-header ul li {
        width: 130px;
    }
}

@media screen and (min-width:580px) {
    .explore-finder-header ul li {
        width: 20%;
    }
}

/* @media screen and (max-width:1200px) {
    .finder-hint {
        display: none;
    }
} */

/* explore page >> main explore section */

.explore-section {
    position: absolute;
    top: 120px;
    width: 100%;
    overflow: hidden !important;
    padding-top: 60px;
}

/* explore >> explore-header  */

/* .explore-header
{
    margin-top: 20px;
    padding: 10px 0;
    background-color: white;
    box-shadow: 2px 2px 3px black;
    height: 50px;
    border-bottom: 1px solid black;
} */

/* explore >> findbox main  */

.find-box {
    width: 32%;
    padding: 10px 15px;
    background: white;
    height: 78vh;
    text-align: center;
    overflow: auto;
    float: left;
    border-right: 1px solid rgb(241, 241, 241);
    transition: 0.5s;
}

.find-box::-webkit-scrollbar {
    width: 4px;
}

.find-box::-webkit-scrollbar-track {
    /* background-color: red; */
}

.find-box::-webkit-scrollbar-thumb {
    background-color: rgb(236, 236, 236);
    border-radius: 16px;
}

/* .find-box h2 {
        color: #242429;
        margin-bottom: 10px;
        font-size: 20px;
        padding-top: 20px;
    }

    .find-box p {
        color: #565d62;
        font-size: 13px;
    } */

/* Find Box Search 1-box*/

.find-box-filter {
    width: 25%;
}

/* Find Box All Place 2-box*/

.find-box-all-place {
    width: 30%;
}

/* find-box filter first box section */

.f-box-tab {
    margin-right: 2px;
    width: 49%;
}

.f-box-tab a {
    display: inline-block;
    color: black !important;
    padding: 10px 60px;
    border-bottom: 2px solid rgba(0, 0, 0, .25) !important;
    width: 100% !important;
}

.f-box-tab a i {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
}

.f-box-tab a:hover {
    background-color: none !important;
    border-radius: 0 !important;
}

.f-box-tab a.active {
    color: #2f9bc3 !important;
    border-color: #2f9bc3 !important;
}

@media screen and (max-width:1200px) {
    .find-box-filter {
        width: 100%;
    }
}

/* explore find box >>  filter-header middle section */

.placefilter-header {
    padding-top: 3 0px;
}

.filter-area a {
    display: flex;
    color: #484848;
    font-size: 12px;
}

.filter-area span {
    cursor: pointer;
}

.filter-area i {
    /* margin-right: 10px; */
}

.filter-area a i:hover {
    color: #484848 !important;
}

.find-box-place-container {
    padding-top: 20px;
}

.find-box-place-card-container {
    margin-bottom: 20px;
}

@media screen and (min-width:1200px) {
    /* Fillter In Col 2 */
    .find-box-two-col .row .col-xl-12 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .find-box-three-col .row .col-xl-12 {
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
    }
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: none;
    border: none;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: transparent;
}

/* find box select categories section */

.all-categories-select select {
    width: 100%;
    border: none;
    border-bottom: 2px solid gray;
    color: #1d1d23;
    outline: none;
}

/* explore >> place in filter selection-box */

.find-box-fig {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find1.jpg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig2 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find2.jpeg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig3 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find3.jpg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig4 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find4.jpg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig5 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find5.jpg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig6 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find6.jpg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig7 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find7.jpeg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig8 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find8.jpg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig9 {
    margin: 15px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/explore/find9.jpg');
    background-size: cover;
    padding: 50px 0;
    border-radius: 5px;
    display: block;
}

.find-box-fig i, .find-box-fig2 i, .find-box-fig3 i, .find-box-fig4 i, .find-box-fig5 i, .find-box-fig6 i, .find-box-fig7 i, .find-box-fig8 i, .find-box-fig9 i {
    font-size: 26px;
    text-align: left !important;
    display: block;
    color: white;
    padding-left: 30px;
}

.find-box-fig p, .find-box-fig2 p, .find-box-fig3 p, .find-box-fig4 p, .find-box-fig5 p, .find-box-fig6 p, .find-box-fig7 p, .find-box-fig8 p, .find-box-fig9 p {
    font-size: 20px;
    text-align: left !important;
    margin-top: 30px;
    color: white;
    padding-left: 30px;
}

.find-box-fig:hover, .find-box-fig2:hover, .find-box-fig3:hover, .find-box-fig4:hover, .find-box-fig5:hover, .find-box-fig6:hover, .find-box-fig7:hover, .find-box-fig8:hover, .find-box-fig9:hover {
    opacity: 0.8;
}

/* explore >> filter multi-option-sectioin-box */

.explore-filter {
    width: 100%;
    /* height: 44px; */
    display: block;
    margin-top: 50px;
}

.explore-filter label, .explore-filter p {
    text-align: left;
}

.multi-choose-section {
    text-align: left;
    margin-top: 20px;
}

.multi-section-left {
    float: left;
}

.multi-section-left li, .multi-section-right li {
    /* padding: 8px 0; */
}

.multi-section-right {
    float: right;
}

.fillter-input-radio li {
    float: left;
    width: 50%;
}

/* filter section customize radio butn */

.radio-custom-label {
    position: relative;
}

.radio-custom {
    opacity: 0;
    position: absolute;
    top: 20px;
}

.radio-custom, .radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
    font-size: 13px;
}

.radio-custom+.radio-custom-label:before {
    content: '';
    background: white;
    border: 2px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    width: 23px;
    height: 23px;
    /* padding: 2px; */
    margin-right: 10px;
    text-align: center;
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked+.radio-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: white;
    background: #2a6f8a;
}

.filter-btn {
    background-color: #2f9bc3;
    color: white;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 3px;
    padding: 10px 0;
    font-size: 17px;
}

/* @@@@@@@@@@@ media screen for handle bottom footer of explore page @@@@@@@@@@@ */

@media screen and (min-width:1200px) {
    .find-box-filter {
        display: block !important;
    }
}

@media screen and (max-width:1200px) {
    .find-box-filter {
        display: none;
    }
}

/* explore >> find-box >> all-place-find box (middle section) */

/* change width on click of grid view btn */

.find-box-two-col {
    width: 50%;
}

.find-box-three-col {
    width: 75%;
}

@media screen and (min-width:1200px) {
    .find-box-all-place {
        display: block !important;
    }
}

@media screen and (max-width:1200px) {
    .find-box-all-place {
        width: 100%;
    }
}

/* explore >> find-box >> find-box map */

.find-box-map {
    width: 45%;
}

.find-box-map.find-box-map-col-2 {
    width: 25%;
}

@media screen and (min-width:1200px) {
    .find-box-map {
        display: block !important;
    }
}

@media screen and (max-width:1200px) {
    .find-box-map {
        display: none;
        width: 100% !important;
    }
}

/* explore >> mobile-mode-explore-footer */

.mobile-mode-explore-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: white;
    text-align: center;
    display: none;
}

.mobile-mode-explore-footer span {
    display: block;
    cursor: pointer;
    color: #2f9bc3;
    padding: 7px 0;
    border-bottom: 2px solid transparent;
    transition: 0.5s linear;
}

.mobile-mode-explore-footer span:hover {
    border-bottom: 2px solid #2f9bc3;
}

.mobile-mode-explore-footer .active-span {
    border-bottom: 2px solid #2f9bc3;
}

@media screen and (max-width:1200px) {
    .mobile-mode-explore-footer {
        display: block;
    }
}

/* =====================[EXPLORE-SUB-PAGE]============================== EXPLORE-SUB PAGE START HERE   ================================[EXPLORE-SUB-PAGE]=================== */

.explore-subpage-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/exploreSub/exploresubbanner.jpg');
    background-size: cover;
    background-attachment: fixed;
    /* height: 80vh; */
    /* height: 400px; */
}
/* vendor-detail-display */
.vendor-display
{
    /* padding-top: 300px; */
    padding-top: 500px;
}
.vendor-detail-display
{
    padding-bottom: 15px;
}
.vendor-logo-info
{
    color: white;
}
@media screen and (max-width:1000px)
{
    .vendor-logo-info
    {
        text-align: center;
    }
}
.vendor-detail-display .vendor-logo-info img
{
    width: 60px;
    border-radius: 50%;
    vertical-align: baseline;
    margin-right: 12px;
}
.vendor-logo-info .vendor-shop-title
{
    display: inline-block;
}
.vendor-shop-title span 
{
    display: inline-block;
    background-color: rgb(63, 180, 248);
    color: white;
    padding: 5px;
    margin-bottom: 12px;
    font-size: 10px;
    border-radius: 5px;
}
.vendor-shop-title p
{
    margin-bottom: 0 !important;
}
/*  vendor-detail-display >> vendor-contact-detail */
.vendor-contact-detail 
{
    text-align: center; 
    padding-top: 28px;
}
.vendor-contact-detail ul
{
    margin-bottom: 0 !important;
}
.vendor-contact-detail ul li
{
    display: inline-block;
}
.vendor-contact-detail ul li a
{
    display: block;
    color: white;
    margin-right: 15px;
}
.vendor-contact-detail ul li a i
{
    display: block;
    font-size: 16px;
}
/* explore-sub-page >> explore-sub-cover-btn */

.explore-sub-page-cover-btn {
    padding-top: 360px !important;
    color: white;
}

.explore-sub-page-cover-btn ul {
    float: right;
}

.explore-sub-page-cover-btn ul li {
    display: inline-block;
    margin-right: 3px;
}

.explore-sub-page-cover-btn ul li a {
    display: inline-block;
    color: white;
    padding: 8px 12px;
    border: 1px solid rgba(253, 253, 253, 0.616);
    font-size: 13px;
}

.explore-sub-page-cover-btn .material-icons {
    font-size: 18px !important;
}

.explore-sub-page-cover-btn ul li a i {
    margin-right: 8px;
}

.border-none {
    border: none !important;
}

.explore-sub-page-cover-btn ul li a:hover {
    border-color: white;
}

/* explore-sub-page >> profile-header */

.profile-header {
    background-color: white;
    position: relative;
    /* padding: 5px 0; */
    position: sticky;
    top: 62px;
    z-index: 1020;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .1);
}

.profile-image {
    float: left;
}

.profile-image img {
    width: 90px;
    border: 2px solid white;
    position: absolute;
    top: -60px;
    transition: width 0.5s linear;
}

@media screen and (max-width:1100px) {
    .profile-image img {
        position: static;
        top: auto;
        display: inline-block;
        width: 80px;
        border: none;
        padding-top: 5px;
    }
}

.profile-image.scrollTop  
{
    padding: 8px 0;
}
.profile-image.scrollTop img {
    position: static;
    top: auto;
    display: inline-block;
    width: 60px;
    border: none;
}
.profile-image.scrollTop p
{
    display: none;
}
.profile-image.scrollTop .profile-discription {
    padding-left: 10px;
}

.profile-discription {
    display: inline-block;
    padding-left: 120px;
}
.profile-image.scrollTop .explore-sub-profile-menu ul
{
    margin-top: 20px !important;
}
.profile-discription a {
    display: inline-block;
    color: black;
    padding-right: 10px;
}
.profile-discription h3
{
    margin-bottom: 0 !important;
    padding-top: 5px;
}
.profile-discription p
{
    margin-bottom: 0 !important;
}
.profile-discription a i {
    margin-right: 5px;
}

.profile-discription h3 {
    font-size: 18px;
}

@media screen and (max-width:1100px) {
    .profile-discription {
        padding-left: 0px;
        display: block;
    }
    .profile-image.scrollTop p
    {
        display: block;
    }
}
/* profile header >> explore-sub-profile-menu */

.explore-sub-profile-menu .nav-tabs .nav-link {
    border: none;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.explore-sub-profile-menu ul {
    /* float: right !important; */
    /* margin-top: 48px; */
    padding-top: 20px;
    display: block;
   text-align: center;
}

.explore-sub-profile-menu ul li {
    /* padding: 10px 0; */
    /* border-right: 1px solid gray !important;
    padding: 0 5px !important; */
    display: inline-block;
}

.explore-sub-profile-menu ul li a {
    color: #242429 !important;
    opacity: .7;
    font-size: 13px;
    padding: 5px 20px !important;
    /* margin-right: 15px; */
    position: relative;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
    display: block !important;
    /* border-right: 1px solid gray !important; */
    
}
/* .explore-sub-profile-menu ul li a::after 
{
    content: "";
    border-right: 2px solid black;
    padding-left: 20px;
} */
.explore-sub-profile-menu ul li a.active
{
    border-bottom: 2px solid #14bae4 !important;
}
.explore-sub-profile-menu ul li a:hover {
    opacity: 1;
    background-color: none !important;
    border-radius: 0 !important;
}

.items-counter {
    display: inline-block;
    width: auto;
    min-width: 18px;
    height: 18px;
    border: 1px solid #bac1c1;
    border-radius: 50px;
    margin-left: 6px;
    text-align: center;
    font-size: 11px;
    padding: 1px 5px 0;
}

/* @@@@@@@ media for explore-sub-page-cover-btn @@@@@@@  */

@media screen and (max-width:768px) {
    .explore-sub-page-cover-btn {}
}

/* @@@@@@@ media for profile header @@@@@@@  */

@media screen and (max-width:1100px) {
    .profile-image {
        float: none;
        text-align: center;
    }
    .profile-image img {
        margin: auto;
    }
    .profile-image.scrollTop img {
        display: block;
    }
    .explore-sub-profile-menu ul {
        white-space: nowrap;
        display: block;
        overflow: auto;
        float: none !important;
    }
    .explore-sub-profile-menu ul li {
        float: none;
        display: inline-block;
        margin-bottom: 0 !important;
    }
}

/* ==tab1== explore-sub-page >> profile header tab one content ==tab1==  */

.tab-one {
    padding-top: 60px;
}

.second-tab-for-mobile
{
    display: none;
}
@media screen and (max-width:1100px)
{
    .first-tab-for-large
    {
        display: none;
    }
    .second-tab-for-mobile
    {
        display: block;
    }
    
}
.profile-box {
    /* width: 400px; */
    background-color: white;
    /* padding: 10px; */
    margin-bottom: 20px;
}

/* profile-box >> light-gallery */
.lightgallery
{
    padding: 10px;
    /* min-height: 350px; */
}
.lightgallery a 
{
   margin-bottom: 20px;
}
.lightgallery a img
{
    width: 100%;
    position :relative;
}
.lightgallery-overlay
{
    background-color: rgba(0, 0, 0, 0.534);
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    left: 14px;
    opacity: 0;
}
.lightgallery a:hover .lightgallery-overlay
{
    opacity: 1;
}
.lightgallery-overlay i
{
   display: block;
    color: white;
    text-align: center;
    padding-top: 30px;
}
/* light-gallery-see-all button */
.light-gallery-see-all
{
    /* display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0 !important;
    color: gray; */
}
.btn-own {
    color: gray;
    font-size: 14px;
    width: auto;
    outline: none;
}
.btn-own:hover
{
    text-decoration: none;
   
}
.btn-own:focus
{
    box-shadow: none;
}
.light-gallery-see-all:hover
{
    color: gray;
}
.light-gallery-see-all a
{
    display: block;
    width: 98%;
    background: no-repeat;
    border: none;
    outline: none;
    color:#b9b7b7;
    padding: 15px 0;
}
.lightgallery-overlay-more
{
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.534);
    position: absolute;
    top: 0;
    right: 14px;
    bottom: 0;
    left: 14px;
   
}
.lightgallery-overlay-more p
{
    margin-bottom: 0 !important;
    padding: 10px;
}
/* profile-box .lightgallery >> light gallery full image button customize */
.lg-actions .lg-next,.lg-actions .lg-prev
{
    background: white;
    font-size: 16px;
    padding: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid red;
}
.lg-actions .lg-next:hover,.lg-actions .lg-prev:hover
{
    color: #999;
}
/* .store-gallery {
    padding-top: 15px;
}

.store-gallery .items {
    width: 60px !important;
} */
/* media screen for all light-gallery */
@media screen and (max-width:1000px)
{
    .lightgallery-overlay i,.lightgallery-overlay-more p
    {
        padding-top: 120px;
        font-size: 18px;
    }
    .light-eye i
    {
        padding-top: 0;
        font-size: 15px;
    }
    .e-light-more p
    {
        padding-top: 0;
        font-size: 13px;
    }
    .mobile-lightgallery i,.mobile-lightgallery p
    {
        padding-top: 10px;
        font-size: 15px;
    }

}
@media screen and (max-width:600px)
{
    .mobile-lightgallery i
    {
        padding-top: 5px;
        font-size: 12px;
    }
    .mobile-lightgallery p
    {
        font-size: 11px;
    }
}
/* profile-box >> work hour */

.store-work-hour {
    width: 100%;
    background-color: white;
    border: none;
    outline: none !important;
    border-radius: 2px;
    padding:15px 10px;
    border: 1px solid #e3e4e8;
}

.store-work-hour:hover {
    box-shadow: 0 2px 7px 1px rgba(0, 0, 0, .01);
}

.store-work-hour p {
    display: inline-block;
    float: left;
    color: red;
}

.store-work-hour h6 {
    display: inline-block;
    float: right;
    font-size: 14px;
    color: #565D62;
}

.store-work-hour p i, .store-work-hour h6 i {
    margin: 0 8px;
}

.store-work-hour p i {
    color: #a8d613;
}

.profile-box .card-body {
    min-height: 260px !important;
    padding: 10px !important;
    z-index: 100;
    height: auto;
}

.profile-box .opening-hours-body {
    margin-top: 0 !important;
}

.profile-box .opening-hours-body ul {
    list-style: none !important;
}

/* profile-list-box */

.profile-list-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #e3e4e8;
    box-shadow: 0 2px 7px 1px rgba(0, 0, 0, .01);
    border-radius: 2px;
}

.profile-list-box h6 {
    color: #242429;
}
.profile-box button p i
{
    color: #a8d613;
    /* margin-right: 8px; */
    font-size: 20px;
}
.profile-box button p,.profile-box button h6
{
    margin-bottom: 0 !important;
    line-height: 0 !important;
}
.profile-list-box h6 i {
    color: #a8d613;
    margin-right: 8px;
    font-size: 20px;
}
.map-title span i
{
    color: #a8d613;
    font-size: 20px;
}
.profile-list-box ul {
    margin-top: 20px;
}

.profile-list-box ul li {
    display: inline-block;
    width: 30%;
    text-align: center;
    margin-bottom: 12px;
}

.profile-list-box ul li a {
    display: inline-block;
    color: rgba(0, 0, 0, .6);
    width: 40px;
    height: 40px;
    border: 1px solid gray;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

.profile-list-box ul li span {
    display: block;
    margin-top: 8px;
}

@media screen and (max-width:600px) {
    .profile-list-box ul li span {
        font-size: 12px;
    }
}

.link-green:hover {
    background-color: #70ada5;
    color: white;
    border: none;
}

.link-blue:hover {
    background-color: #23527c;
    color: white;
    border: none;
}

/* profile-lis- box >> categories */

.profile-list-box .link-dark-green {
    background-color: #43cc30;
    color: white;
    border: none;
}

/* profile-list-box >> presentation */

.profile-list-box .profile-list-box-presentation p {
    margin-top: 17px;
    font-family: 'Rubik', sans-serif;
    color: #565D62;
    font-size: 13px;
}

/* profile-list-box >> Emplacement */

.profile-list-box .announce-subpage-contact-detail-box {
    border: none;
}

/* ==tab2== explore-sub-page >> profile header tab Two content ==tab2==  */

.Evénements-review-tab {
    padding: 60px 0;
}
/* .macy-box
{
    width: 50%;
} */
.Evénements-review-box {
    background-color: white;
    /* box-shadow: 2px 2px 3px black; */
    margin-bottom: 30px;
}
/* .masonry-items
{
    width: 50%;
    margin: 10px;
    float: left;
} */
/* .macy-box
{
    width: 100%;
    height: auto;
    display: block;
} */

/* review box head */

.Evénements-review-box-head {
    border-bottom: 1px solid rgb(218, 218, 218);
}

.Evénements-review-box-head p i {
    margin-right: 8px;
}

/* review box body */

.Evénements-review-box-body .review-highlight h6, .Evénements-review-box-body .review-highlight p {
    margin-bottom: 0 !important;
}

.Evénements-review-box-body .review-highlight {
    float: left;
}

.review-highlight h6 {
    color: rgb(48, 151, 8);
}

.Evénements-review-box-body ul {
    float: right;
}

.Evénements-review-box-body ul li {
    float: left;
    text-align: center;
    padding: 0 13px;
}

.Evénements-review-box-body ul li span {
    color: rgb(48, 151, 8);
    font-weight: bold;
    font-size: 16px;
}

.Evénements-review-box-body ul li span p {
    display: block;
    margin-bottom: 0 !important;
    color: gray !important;
    font-weight: lighter !important;
    font-size: 14px !important;
}

/* review box footer */

.Evénements-review-box-footer {
    border-top: 1px solid rgb(218, 218, 218);
}

.Evénements-review-box-footer-btn {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 10px 0;
}

.Evénements-review-box-footer-btn i {
    margin-right: 8px;
}

/* review-detail-box-head start here //box-2// */

.review-detail-box-head {
    padding: 15px 20px 0 20px;
    border-bottom: 1px solid rgb(218, 218, 218);
}

.review-detail-box-head-idsection {
    float: left;
}

.review-detail-box-head-idsection a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: gray;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    vertical-align: top;
}

.id-info {
    display: inline-block;
    padding-left: 7px;
}

.id-info p {
    margin-bottom: 0 !important;
}

.review-detail-box-head-rating-section {
    float: right;
}

.review-detail-box-head-rating-section .review-highlight h6 {
    margin-bottom: 0 !important;
}

/* review-detail-box-body */

.review-detail-box-body {}

.review-detail-box-body-upper {
    border-bottom: 1px solid rgb(218, 218, 218);
}

.comment-of-review {
    padding: 15px 20px;
}

.review-detail-box-body .comment-of-review span i {
    margin-right: 8px;
}

.review-detail-box-body-middle {
    padding: 12px 10px;
}
.review-detail-box-body-middle img
{
    /* margin-bottom: 20px; */
}
.review-page-gallery a
{
    margin-bottom: 0 !important;
}
.review-detail-box-body-footer {
    border-top: 1px solid rgb(218, 218, 218);
}

.review-detail-box-body-footer-see-more {
    padding: 15px 20px;
    border-bottom: 1px solid rgb(218, 218, 218);
}
.review-detail-box-body-footer-see-more p
{
    cursor: pointer;
}
.review-detail-box-body-footer-see-more ul li {
    float: left;
    margin-right: 12px;
}

.review-detail-box-body-footer-see-more ul li a {
    display: block;
    color: gray;
}

.review-detail-box-body-footer-see-more ul li a span {
    margin-right: 7px;
}
.review-detail-box-body-footer-two
{
    padding: 15px 20px;
}
.review-detail-box-body-footer-two ul li
{
    float: left;
    margin-right: 12px;
}
.review-detail-box-body-footer-two ul li a
{
    display: block;
    color: gray;
}
.review-detail-box-body-footer-two ul li a i
{   
    margin-right: 7px;
}
/* review-detail-box-footer //box-2// */
.review-detail-box-footer
{
    border-top: 1px solid rgb(218, 218, 218);
    background-color: rgb(245, 245, 245);
}
.review-detail-box-footer-description
{
    padding: 15px 20px;
}
.review-detail-box-footer-description a
{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: gray;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
}
.review-detail-box-footer-description input
{
    width: 80%;
    margin-left: 15px;
    border: none;
    border: 1px solid gray;
    outline: none;
    border-radius: 20px;
    padding: 5px 7px;
}
/* ////// review filter section [box-3] */
.review-filter-section
{
    background-color: white;
    padding: 8px;
    width: 60%;
    margin: auto;
    
}
.review-filter-box,.review-hint
{
    border: 1px solid rgb(207, 207, 207);
    border-radius: 5px;
    padding: 8px;
}
.review-filter-box-upper-sec h5,.review-filter-box-footer-sec h5
{
    font-size: 13px;
}
.review-filter-box-upper-sec h6,.review-filter-box-footer-sec h6
{
    font-size: 13px;
    width: 20px;
}
.review-filter-box-upper-sec select
{
    width: 100%;
    padding: 8px;
    border-radius: 7px;
    margin: 10px 0;
    outline: none;
    border-color: rgb(207, 207, 207);
}
.review-filter-box-upper-sec select option
{
    border-radius: 7px !important;
}
.review-filter-box-footer-sec ul li h6,.review-filter-box-footer-sec ul li p 
{
    display: inline-block;
}
.review-filter-box-footer-sec ul li p 
{
    width: 60%;
    height: 8px;
    background-color: rgb(207, 207, 207);
    margin-bottom: 0 !important;
    border-radius: 5px;
    margin: 0 8px;

}
.review-filter-box-footer-sec ul li p span
{
    display: block;
    height: 8px;
    background-color: green;
    width: 60%;
    border-radius: 5px 0 0 5px;
}
/* review-filter-sec >> review-hint */
.review-hint
{
    margin-top: 15px;
}
.review-hint .review-hint-sec .review-hint-sec-text
{
    display: inline-block;
}
.review-hint .review-hint-sec i
{
    font-size: 26px;
    margin-right: 10px;
    color: #00ffd0;
}
.review-hint .review-hint-sec .review-hint-sec-text h6
{
    margin-bottom: 0 !important;
}
.review-hint .review-hint-sec .review-hint-sec-text p
{
    font-size: 12px;
    margin-bottom: 0 !important;
}   
/* review-filter-add-review button */
.review-filter-add-review-btn
{
    text-align: center;
}
.review-filter-add-review-btn button
{
    width: 60%;
    /* margin-top: 15px; */
    margin: 20px 0;
    padding: 7px 5px;
    /* background: #f751b4; */
    background: gray;
    color: white;
    border: none;
    outline: none;
}
.review-filter-add-review-btn button i
{
    margin-right: 8px !important;
}
/* .Evenments-tab {
    padding: 60px 0;
}

.EvÃ©nements-review-tab {
    padding: 20px;
    background-color: white;
    border: 1px solid gray;
}
    // EvÃ©nements-review-tab head //
    .EvÃ©nements-review-tab h6 i {
        color: #a8d613;
        font-size: 14px;
        margin-right: 10px;
    }
// EvÃ©nements-review-tab body //
.review-tab-body {
    padding-top: 20px;
}

.review-classification {
    border-bottom: 1px solid #d7d8d9;
    padding: 10px 0;
}

.classification-label {
    float: left;
    color: #565D62;
}

.classification-number {
    float: right;
}

    .classification-number ul li {
        // display: inline-block; //
        float: left;
    }

        .classification-number ul li span {
            display: block;
            cursor: pointer;
        }

            .classification-number ul li span i {
                font-size: 20px !important;
                color: rgba(45,45,45,.21);
            }

                .classification-number ul li span i:hover, .classification-number ul li span i:focus {
                    color: red;
                }
// submit detail upload btn //
.submit-detail-upload label {
    display: block;
}
// EvÃ©nements-review-tab body >> submit detail section //
.EvÃ©nements-review-tab-submit-detail {
    padding-top: 30px;
}

.EvÃ©nements-review-tab-user-form {
    padding: 12px 0;
}

.EvÃ©nements-review-tab-user-form-box {
    padding: 10px 0;
}

    .EvÃ©nements-review-tab-user-form-box label {
        display: block;
        margin-bottom: none !important;
    }

    .EvÃ©nements-review-tab-user-form-box input, .EvÃ©nements-review-tab-user-form-box textarea {
        width: 100%;
        display: block;
        border: none;
        resize: none;
        background-color: transparent;
        padding: 14px 0;
        color: #1d1d23;
        outline: none;
        font-size: 12px;
        border-bottom: 1px solid rgba(0,0,0,.25);
        -webkit-transition: padding .25s ease-in-out;
        transition: padding .25s ease-in-out;
    }

        .EvÃ©nements-review-tab-user-form-box input:focus, .EvÃ©nements-review-tab-user-form-box textarea:focus {
            box-shadow: 0 1px 0 0 #2A708A;
            padding-left: 5px;
        }

.EvÃ©nements-review-tab-user-check-box label {
    font-size: 12px;
}

.EvÃ©nements-review-tab-user-check-box input {
} */

/* ==tab3== explore-sub-page >> profile header tab three content ==tab3==  */

.eshop-no-results-wrapper {
    padding: 70px 0;
    text-align: center;
}

/* =====================[03-PAGE]============================== ANNOUNCES PAGE START HERE   ================================[03-PAGE]=================== */

.announce-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/annonces.jpg');
    background-size: cover;
    height: 85vh;
    position: relative;
}

.announce-title {
    padding-top: 280px;
}

.announce-title h2 {
    font-size: 50px;
}

/* announce page >> category option */

.announce-category-option {
    /* position: absolute;
   bottom: 10px;
   left: 100px; */
    text-align: center !important;
    /* margin-top: 140px; */
    /* display: -webkit-box;
    overflow-x: auto; */
    position: absolute;
    bottom: -15px;
    /* left: 300px; */
    left: 0;
    right: 0;
}

 .announce-category-option ul {
    text-align: center;
}

/* .announce-category-option ul li {
    
    display: inline-block;
}  */

.announce-category-option a {
    /* text-align: center; */
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #14bae4;
    border-radius: 20px;
    margin-right: 13px;
    box-shadow: 2px 2px 5px #5d5b5b;
    margin-bottom: 6px;
}

.category-option-blue {
    background-color: #23527c !important;
}

.category-option-red {
    background-color: red !important;
}

.category-option-green {
    background-color: green !important;
}

.category-option-black {
    background-color: black !important;
}

.category-option-brown {
    background-color: brown !important;
}

/* @@@@@@@@@@@@  media screen for category-option btn @@@@@@@@@@@@ */

@media screen and (max-width:1000px) {
    .announce-category-option .announce-category-option-btn {
        padding: 7px 8px;
    }
    .announce-category-option 
    {
        left: 50px;
    }
}
@media screen and (max-width:700px) 
{
    .announce-category-option {
        display: -webkit-box;
        overflow-x: auto;
        white-space: nowrap;
        position: static;
        padding-top: 185px;
    }
}
/* announce page >> announce box */

.announce-box-container {
    padding: 100px 0;
}

.announce-box {
    text-align: center;
    /* border: 1px solid rgb(231, 231, 231); */
    position: relative;
    margin-bottom: 30px;
    border-radius: 13px;
    /* box-shadow: 2px 5px 5px gray; */
}

.announce-box img {
    height: 180px;
    border-radius: 13px 13px 0 0;
    position: relative;
}
.announce-box-image-overlay
{
    background-color: rgba(0, 0, 0, 0.493);
    /* background-color: black; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 124px;
    border-radius: 13px 13px 0 0;
}
.date-status {
    position: absolute;
    top: 13px;
    left: 17px;
}

.date-status span {
    display: inline-block;
    color: white;
    /* border: 1px solid white; */
    padding: 8px 12px;
    border-radius: 2px;
    border-radius: 10px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#24e0a8+0,11d0cf+100 */
    background: #24e0a8;
    /* Old browsers */
    background: -moz-linear-gradient(top, #24e0a8 0%, #11d0cf 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #24e0a8 0%, #11d0cf 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #24e0a8 0%, #11d0cf 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24e0a8', endColorstr='#11d0cf', GradientType=0);
    /* IE6-9 */
}

.annouce-body {
    background-color: white;
    padding: 10px;
    border-radius: 0 0 13px 13px;
}

.announce-box .annouce-body a, .announce-box .annouce-body span {
    display: block;
    font-size: 20px;
    color: #242429;
    padding: 10px 0;
}

.announce-box-place-title {
    position: absolute;
    top: 60px;
    left: 40px;
    /* color: black !important; */
    color: white !important;
}

.announce-box .annouce-body a:hover {
    color: #27bdf5;
}

.announce-box .annouce-body p {
    font-size: 13px;
    color: #565d62;
    margin-bottom: 0 !important;
}

.announce-footer {
    padding-top: 10px;
}

.announce-footer a {
    font-size: 14px !important;
}

.announce-footer span i {
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: #ed8c19;
    color: white;
    line-height: 35px;
    margin-right: 10px;
}

.announce-footer a:hover {
    color: gray !important;
}

.page-select {
    text-align: center;
}

.page-select ul {}

.page-select ul li {
    display: inline-block;
}

.page-select ul li a {
    display: block;
    padding: 8px 13px;
    border: 1px solid;
    border-color: #d0d1d5;
    font-size: 13px;
    background-color: white;
    color: #484848;
    margin-top: 0;
    border-radius: 2px;
    line-height: 16px;
}

.page-select ul li a:hover {
    background-color: #f24286;
    color: white;
}

.page-active {
    background-color: #d0d1d5 !important;
}

/* =====================[SUB-PAGE]============================== ANNOUNCES-SUB PAGE START HERE   ================================[SUB-PAGE]=================== */

.announce-subpage-header {
    background-image: url('image/announce/annouce2.jpg');
    background-size: cover;
    background-position: center center;
    padding-bottom: 40px;
}

.announce-subpage-title {
    padding-top: 180px;
}

.announce-subpage-title h2 {
    font-size: 35px;
    font-weight: bold;
}

.cover-buttons {
    float: right;
    padding-top: 120px;
}

.cover-buttons ul li {
    float: left;
    margin-right: 4px;
}

.cover-buttons ul li a {
    display: block;
    color: white;
    width: 100px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid hsla(0, 0%, 100%, .5);
    border-radius: 2px;
}

.cover-buttons ul li a:hover {
    border: 1px solid hsla(0, 0%, 100%, .8);
}

.cover-buttons ul li a i {
    margin-right: 8px;
    display: inline-block;
}

/* media screen for cover button  */

@media screen and (max-width:400px) {
    .cover-buttons {
        float: none;
    }
    .cover-buttons ul li a {
        width: 90px;
        height: 40px;
        font-size: 11px;
    }
    .cover-buttons ul li a i {
        margin-right: 5px;
    }
}

/*  announce-sub-page >> announce-subp-info */

.announce-subp-info {
    background-color: #28bebf;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #e5e6e9;
    margin-top: 0px;
    margin-bottom: 15px;
    padding: 30px 15px 30px 15px;
    text-align: center;
    color: white;
    margin: 60px 0 15px 0;
    border-radius: 13px;
}

.announce-subp-info h3 {
    font-size: 26px;
    line-height: 1.4em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.announce-subp-info p {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
}

/* announce-sub-page >> announce-sub-about */

.announce-sub-about {
    background: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.announce-sub-about h3 {
    color: #28bebf;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: bold;
}

.announce-sub-about p {
    font-family: 'Rubik', sans-serif;
    color: #000614;
    font-size: 16px;
}

.announce-sub-about-gallery {
    margin: 40px 0;
}

.about-gallery-box {
    margin-bottom: 20px;
}

.announce-sub-about-product-title {
    margin: 30px 0;
}

.announce-sub-about-product-title h5 {
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
}

.announce-sub-about-product-container {
    margin-top: 40px;
}

.announce-sub-about-product-box p {
    font-size: 14px;
    margin-top: 10px;
}

/* announce-sub-page >> announce-subpage-allpage-contact-us start */

.announce-subpage-allpage-contact-us {
    margin-top: 40px;
}

.announce-subpage-follow-us {
    text-align: center;
}

.announce-subpage-follow-us h4 {
    color: #28bebf;
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    margin-bottom: 15px;
}

.announce-subpage-follow-us ul li {
    display: inline-block;
    margin-right: 11px;
}

.announce-subpage-follow-us ul li a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #28bebf;
    color: white;
    border-radius: 50%;
    border: 1px solid #818a91;
    transition: 0.5s;
}

.announce-subpage-follow-us ul li a:hover {
    background-color: #23527c;
}

/* announce-sub-page >> announce-subpage-contact-detail */

.announce-subpage-contact-detail {
    margin-top: 40px;
}

.announce-subpage-contact-detail-box {
    padding: 12px;
    background-color: white;
    height: 332px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 13px;
}

.announce-subpage-contact-detail-box h6 {
    color: #28bebf;
    font-size: 17px;
    font-family: 'Rubik', sans-serif;
    padding-top: 100px;
    font-weight: bold;
}

.map-title {
    margin-bottom: 15px;
}

.map-title span, .map-title a {
    display: inline-block;
}

.map-title span, .opening-hours-head span {
    /* float: left; */
}

.map-title span i, .opening-hours-head i {
    margin-right: 8px;
}

.map-title a {
    float: right;
}

/* Opning Hours */

.opening-hours-body {
    margin-top: 20px;
}

.extra-details li {
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.extra-details li span:last-child {
    float: right;
}

.extra-details li span {
    font-size: 13px;
    color: #696565;
}

.extra-details li:first-child {
    border: none;
}

.extra-details {
    list-style: disc !important;
    padding-left: 14px;
}

/* >>>>>>> comment next previous butn start here <<<<<<< */

.comment-butn {
    margin-top: 40px;
}

.comment-butn a {
    display: block;
    color: #484848;
}

.comment-butn a:hover {
    color: #2F9BC3;
}

/* >>>>>>> comment-section start here <<<<<<< */

.comment-section {
    margin-top: 50px;
}

.section-title h2 {
    font-size: 26px;
    color: #242429;
    margin-bottom: 30px;
    margin-top: 0;
    font-weight: bold;
}

/* no result section */

.no-results-wrapper {
    text-align: center;
    padding-top: 100px;
}

/* comment message box */

.element {
    background: white;
    padding: 15px;
}

.title-style-1 h5 {
    display: inline-block;
    font-size: 18px;
}

.title-style-1 i {
    font-size: 18px;
    margin-right: 12px;
}

h3#reply-title {
    display: none;
}

p.comment-notes {
    display: none;
}

.comment-contact-form {
    margin-top: 15px;
}

.contact-textbox {
    margin-bottom: 15px;
}

.comment-contact-form label {
    display: block;
    color: #565662;
    font-size: 12px;
    font-weight: 400;
}

.comment-contact-form input {
    width: 100%;
    display: block;
    border: none;
    resize: none;
    line-height: 18px;
    background-color: transparent;
    padding: 14px 0;
    color: #1d1d23;
    outline: none;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .25);
    -webkit-transition: padding .25s ease-in-out;
    transition: padding .25s ease-in-out;
}

.contact-textbox input::placeholder {
    color: #000;
}

.md-checkbox input {
    width: 16px;
    height: 16px;
    background: #fff !important;
    border: 2px solid rgba(0, 0, 0, .24);
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
}

.comment-contact-form input:focus {
    box-shadow: 0 1px 0 0 #2A708A;
    padding-left: 5px;
}

.md-checkbox label {
    display: inline-block;
    white-space: normal;
    font-size: 12px;
    color: #6e6e6e;
}

.comment-respond button {
    background: #2f9bc3;
    padding: 10px 40px;
}

.comment-respond button:hover {
    background: #2a708a;
}

/* =====================[04-PAGE]============================== DEALS PAGE START HERE   ================================[04-PAGE]=================== */

.deals-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/deals01245.jpg');
    background-size: cover;
    background-position: center center;
    /* height: 600px; */
    height: 100vh;
}

.deals-title {
    text-align: center;
    padding-top: 250px;
    color: white;
}

.deals-title p {
    font-size: 50px;
}

/* =====================[05-PAGE]============================== NEWSLETTER PAGE START HERE   ================================[05-PAGE]=================== */

.newsletter-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/banner/newsletter.jpg');
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    padding-bottom: 100px;
}

.newsletter-container {
    position: relative;
}

.newsletter-title {
    /* position: absolute;
    right: 0;
    left: 0;
    top: 180px; */
    /* background-color: #5bc0de82; */
    /* padding: 50px 0; */
    padding-top: 300px;
    text-align: center;
}

.newsletter-fig {
    /* width: 35%;
    z-index: 1000; */
    /* position: absolute;
    top: 100px;
    left: 60px; */
}

.newsletter-fig img {
    width: 100%;
    /* display: inline-block; */
}

.newsletter-subscribe {
    /* width: 60%; */
    /* float: right; */
    color: white;
    /* padding-left: 80px; */
}

.newsletter-subscribe h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    font-size: 35px;
}

.newsletter-subscribe p {
    font-family: 'Rubik', sans-serif;
}

.subscribe-form {
    margin-top: 50px;
}

.nl-input1, .nl-input2, .newslatter-btn {
    display: inline-block;
    margin-right: 15px;
}

.subscribe-form label {
    display: block;
    font-weight: bold;
    font-size: 16px;
}

.nl-input1 input, .nl-input2 input {
    background: white;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
}

.newslatter-btn input {
    background-color: #2F9ABF;
    color: #fff;
    border-radius: 5px;
    padding: 10px 40px;
    margin-right: 0 !important;
    border: none;
    outline: none;
}

.newslatter-btn input:hover {
    background-color: #2A708A;
}

/* >>>>>>>>> newsletter footer <<<<<<<< */

.nw-footer {
    background-color: black;
    padding-top: 2px !important;
}

/* @@@@@@@@@@@ media screen for newsletter @@@@@@@@@@@ */

@media screen and (max-width:1100px) {
    .nl-input1 input, .nl-input2 input {
        width: 120px;
    }
    .newslatter-btn input {
        padding: 9px 15px;
    }
}

@media screen and (max-width:768px) {
    .newsletter-title {
        top: 290px;
    }
    .newsletter-subscribe {
        width: 100%;
        text-align: left;
        color: white;
        padding-left: 10px !important;
    }
    .newsletter-fig {
        width: 50%;
        left: 120px;
        top: 130px;
    }
    .nl-input1, .nl-input2, .newslatter-btn {
        margin-right: 5px;
    }
    .nl-input1 input, .nl-input2 input {
        padding: 5px;
    }
    .newslatter-btn input {
        padding: 8px 15px;
    }
}

@media screen and (max-width:600px) {
    .nl-input1 input, .nl-input2 input {
        width: 110px;
    }
    .newsletter-subscribe h2 {
        font-size: 24px;
    }
}

@media screen and (max-width:400px) {
    .newslatter-btn input {
        margin-top: 10px;
    }
}

/* =====================[06-PAGE]============================== CONTACT PAGE START HERE   ================================[06-PAGE]=================== */

.contact-header {
    background-image: url('image/contact.jpg');
    background-position: center center;
    background-size: cover;
    /* height: 100vh; */
    padding-bottom: 120px;
}

.contact-form-container {
    padding: 180px 0 100px 0;
}

.contact-form {
    width: 70%;
    margin: auto;
}

.search-box-contact {
    margin-bottom: 15px;
}

.search-box-contact label {
    display: inline-block;
    width: 16%;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
}

.search-box-contact input, .search-box-contact textarea, .search-box-contact select {
    width: 80%;
    display: inline-block;
    padding: 9px 6px;
    border-radius: 2px;
    background-color: #fff;
    border: none;
    outline: none;
    resize: none;
}

.search-box-contact input:focus {
    box-shadow: 0 1px 0 0 #2A708A;
    border-color: #2A708A;
}

.contact-form input[type="submit"] {
    background: #2F9BC3 !important;
    font-size: 13px;
    font-weight: 400;
    padding: 15px 40px;
    display: inline-block;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    overflow: hidden;
    border-radius: 2px;
    line-height: 16px;
    color: #fff;
    border: none;
    width: auto;
    text-align: left !important;
}

/* @@@@@@@@@@@ media screen for contact @@@@@@@@@@@ */

@media screen and (max-width:600px) {
    .contact-form-container {
        padding: 140px 0 60px 0;
    }
    .contact-form {
        width: 100%;
    }
}

/* .is-active.slidenav-bg {
    display: block;
} */

/* Login */

.break {
    flex-basis: 100%;
    height: 0;
    width: 100%;
}

.flex-wrap_wrap {
    flex-wrap: wrap;
}

.justify-content_center {
    justify-content: center !important;
}

.z-index_full {
    z-index: 11111111111111111111;
}

/* Search List */

.nav-search {
    position: relative;
}

.instant-results {
    position: absolute;
    width: 100%;
    background: #fff;
    /* box-shadow: 0px 6px 5px 0 rgba(0, 0, 0, 0.44); */
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    top: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    left: 0;
    right: 0;
    border-radius: 0 0 20px 20px;
    padding: 10px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-top: none;
}

.nav-search.is-focus .instant-results {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    /* box-shadow: 0px 11px 5px #e6e6e6; */
}

.header-light-skin:not(.header-scroll) .instant-results, .header-scroll-light-skin.header-scroll .instant-results {
    box-shadow: none;
}

.header-light-skin:not(.header-scroll) .is-focused input {
    background: transparent;
}

.is-focused .instant-results {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.instant-results ul {
    margin-bottom: 0;
}

.instant-results ul li {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.header-search input:focus {
    border-radius: 2px;
}

.instant-results ul li:hover {
    background: #f3f4f5;
}

.instant-results ul li:last-child:hover {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.instant-results ul li .cat-icon i {
    font-size: 18px;
}

.instant-results ul li .cat-icon {
    width: 30px;
    height: 30px;
}

.instant-results ul li a {
    display: block;
    font-size: 13px;
    padding: 10px;
}

.instant-results ul li a:hover {
    color: #484848;
}

.instant-results ul li a span.category-name {
    line-height: 30px;
    padding-left: 5px;
}

.instant-results ul li .avatar {
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 5px;
}

.instant-results ul li .avatar img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.instant-results .view-all-results {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.instant-results ul li.ir-cat {
    background: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-bottom: 1px solid #f7f7f7;
    border-top: 1px solid #f7f7f7;
}

/* Mobile Search */

#quicksearch-mobile-modal {
    z-index: 1111111111111;
}

#quicksearch-mobile-modal .modal-content {}

#quicksearch-mobile-modal .modal-dialog {
    margin: 0;
    left: 0;
    right: 0;
    max-width: inherit;
}

#quicksearch-mobile-modal .close {
    display: inline-block;
    height: 40px;
    width: 40px;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 3px #d7cdcd;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000000000;
    background-color: #fff !important;
    opacity: 1;
}

#quicksearch-mobile-modal input[type="search"] {
    width: 100%;
    padding: 20px 10px;
    border: navajowhite;
    border-bottom: 1px solid #eee;
    padding-left: 34px !important;
}

#quicksearch-mobile-modal .instant-results {
    position: relative;
    top: 0;
    padding: 0 10px;
    box-shadow: none;
}

#quicksearch-mobile-modal i {
    position: absolute;
    top: 24px;
    left: 15px;
}

/* explore sub gallery slider */

.outer {
    margin: 0 auto;
    max-width: 500px;
}

#big .item {
    margin: 2px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
}

#thumbs .item {
    height: 70px;
    line-height: 70px;
    padding: 0px;
    margin: 2px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

#thumbs .item h1 {
    font-size: 18px;
}

#thumbs .current .item {}

.owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

#big.owl-theme {
    position: relative;
}

#big.owl-theme .owl-next, #big.owl-theme .owl-prev {
    background: #333;
    width: 22px;
    line-height: 40px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    text-align: center;
    top: 50%;
}

#big.owl-theme .owl-prev {
    left: 10px;
}

#big.owl-theme .owl-next {
    right: 10px;
}

#thumbs.owl-theme .owl-next, #thumbs.owl-theme .owl-prev {
    background: #333;
}
/* =====================[07-PAGE]============================== EVENT PAGE START HERE   ================================[07-PAGE]=================== */
.event-header
{
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('image/banner/banner1.jpg');
    background-size: cover;
    /* background-position: center center; */
    /* padding-bottom: 150px; */
    padding-bottom: 72px;
 
}
.event-header-title
{
    padding-top: 160px;
}
.event-header-title h1,.event-header-title p
{
    font-family: 'Roboto', sans-serif;
}

/* event show time main container */
.event-show-time-container
{
    padding-top: 50px;
}
.event-review-display
{ 
   color: white;
    text-align: center;
    padding-top: 10px;
}
.event-review-display span
{
    display: inline-block;
    padding: 10px;
    background-color: #14bae4;
    color: white;
    font-weight: bold;
    border-radius: 10px;
}
/* .event-review-display p
{
    margin-bottom: 0 !important;
} */
.event-show-time
{
    
    text-align: center;
}
.event-show-time ul
{
    margin-bottom: 0 !important;
}
.event-show-time ul li
{   
    display: inline-block;
}
.event-show-time ul li a
{
    display: block;
    padding: 11px;
    background-color: white;
    color: yellowgreen;
    border-radius: 10px;
    font-size: 12px;
}
.event-show-time ul li a big
{
    font-size: 23px;
}
/* event page >> event info card */
.event-info-card
{
    padding: 26px 10px;
    background-color:white;
    position: relative;
    bottom: 50px;
    z-index: 1;
}
.event-main-date-show 
{
    text-align: center;

}
.event-main-date-show h6
{
    display: inline-block;
    background-color: white;
    /* color: yellowgreen; */
    width: 30%;
    padding: 10px 5px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 0 !important;
    margin-top: 8px;
    box-shadow: 1px 6px 3px grey;
    border: 1px solid #f8f8f8;
}
.event-main-date-show h6 span
{
    color:#14bae4;
}
.event-start-info 
{
    margin-bottom: 5px;
}
.event-start-info h6
{
    color: yellowgreen;
}
.event-start-info span i
{
    margin-right: 5px;
}
.event-address span i
{
    margin-right: 5px;
}
/* event page >> event info card >> event butn */
.event-butn 
{
    text-align: center;
}
.event-butn button
{
    color: white;
    background-color: yellowgreen;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 10px;
    margin-top: 20px;
}
/* event page >> event-detail-section  */
.white-section
{
    background-color: white;
    padding-bottom: 158px;
    /* position: relative; */
    /* top: -158px; */
    position: absolute;
    left: 0;
    right: 0;
    top: 463px;
}
.event-detail-section
{
    background-color: white;
    /* margin-bottom: 40px; */
    /* position: relative;
    top: -158px;
    padding-top: 100px; */
    margin-bottom: 70px;
}
.event-detail-box
{
   
}
.event-detail-box
{
    text-align: center;
    padding: 30px 0 0px 0;
}
.event-tab 
{
    margin-bottom: 0 !important;
   
}
.event-tab li 
{
    display: inline-block;
    margin-right: 5px;
}
.event-tab li.active:after
{
    content: "";
    display: block;
    height: 5px;
    background-color: #242c41;
    margin-top: 10px;
}
.event-tab li span
{
    display: block;
    padding: 6px 17px;
    border: 1px solid gray;
    border-radius: 20px;
    color: gray;
    cursor: pointer;
    margin: 0 16px;
}
.event-tab li span a
{
    display: inline-block;
    border: 1px solid gray;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 12px;
    color: black;
}
.event-share {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #83e0ef;
    border-radius: 50%;
    background: white;
    color: gray !important;
    line-height: 45px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    position: absolute;
    right: -74px;
    top: 23px;

}
@media screen and (max-width:1290px)
{
    .event-share
    {
        right: -22px;
    }
}
@media screen and (max-width:1100px)
{
    .event-share
    {
        right: -22px;
    }
}
@media screen and (max-width:1000px)
{
    .event-share
    {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
        right: 12px;
    }
}
/* @@@@@@@@ media screen for event-detail section @@@@@@@@ */
@media screen and (max-width:1200px)
{
    .white-section
    {
       padding-bottom: 200px;
    }
}
@media screen and (max-width:990px)
{
    .white-section
    {
       padding-bottom:386px;
       top: 551px;
    }
}
@media screen and (max-width:460px)
{
    .white-section
    {
       padding-bottom:434px;
    }
}

/* event page >> event-detail-box section  */
.event-box
{
    padding: 15px;
    border: 1px solid #e3e4e8;
}
.event-box .event-host span i 
{
    margin-right: 8px;
}
.event-box .event-host h6 a
{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 10px;
} 
.event-host-contact ul li 
{
    padding: 5px 0;
}
.event-host-contact ul li a 
{
    color: #14bae4;
}
.event-host-contact ul li a i 
{
    margin-right: 10px;
    color: teal;
}
/* event page >> event-box-categories */
.event-box-categories ul li a
{ 
    background-color: #ed8c19;
    color: white;
}
/* event page >> event-box-gallery */
.event-box-gallery
{
    /* padding: 15px; */
    border: 1px solid #e3e4e8;
}
.event-box-gallery-head
{
    border-bottom: 1px solid rgb(216, 216, 216);
    padding: 10px 20px;
}
.event-box-gallery-head span 
{
    display: block;
}
.event-box-gallery-head span i
{
    margin-right: 8px;
    font-size: 20px;
    color: #a8d613;
}
.event-box-see-all-btn
{
    border-top: 1px solid rgb(216, 216, 216);
}
.event-box-see-all-btn button
{
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 10px 0;
}
.event-gallery-dark-section img
{
    position: relative;
}
.event-gallery-overlay
{
    text-align: center;
    background-color: rgba(0, 0, 0, 0.582);
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 20px;
    left: 15px;
    color: white;
}
.event-gallery-overlay span
{
    display: inline-block;
    padding-top: 30px;
}
/* event page >> event-review-tab */
.event-page-review-section
{
    padding: 0;
}

