*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
  font-family: "adobe-light";
  src: url(../font/AdobeCleanUXLight.otf);
}

@font-face {
  font-family: ElegantIcons;
  src: url(../font/ElegantIcons.woff);
}
:root{
    /*background-color: ;*/
    --primary-color: #6e6e6e;
    --secondary-color: #2c2c2c;
    --bg-color: #f5f5f5;
    --bg-white: #fff;
    --bg-black: #000;

    /*Text Style*/
    --primary-font: 'Poppins', sans-serif;
    --heading-font: 'Cormorant Garamond', serif;
    --primary-text: #555;
    --secondary-text: #444;
    --heading-text:#333;
    --text-white: #fff;
    --text-black: #000;
    --text-gray: #e4e4e4;
    --blue-color:#004dda;
    --yellow-color:#ffc107;
    --btn-color:#222;
}

body{
    font-family: var(--primary-font);
    background-color: var(--bg-white);
    color: var(--text-black);
}
a{
    text-decoration: none;
}
b, strong{
    font-weight:bold;
}
section{
    padding: 60px 0;
}
.main-btn{
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    background: var(--blue-color);
    border: 0px solid var(--blue-color);
    border-radius: 3px;
    line-height: 1;
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.3s;
    position:relative;
}
.main-btn:hover{
    background-color: var(--yellow-color);
    color: var(--btn-color);
   
}


input::-webkit-input-placeholder, select::-webkit-input-placeholder { /* Edge */
  color: #bbb;
}

input:-ms-input-placeholder, select:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bbb;
}

input::placeholder select::placeholder {
  color: #bbb;
}

h1{
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    /*text-transform: uppercase;*/
    font-family: var(--secondary-font);
}
h3{
    margin-bottom: 1.375rem;
    line-height: 1.875rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--heading-text);
    /*text-transform: uppercase;*/
    font-family: var(--heading-font);
}
h3 span{
    color: var(--secondary-color);
}
h5{
    font-size: 1.5rem;
    line-height: 1;
    color: var(--heading-text);
    font-weight: 500;
    font-family: var(--heading-font);
}
h6{
    font-size: 1.5rem;
    margin-bottom: .9375rem;
    color: var(--heading-text);
    /*text-transform: uppercase;*/
    font-weight: 300;
    font-family: var(--heading-font);
}
p{
    font-size: 1rem;
    line-height: 1.625rem;
    color: var(--text-black);
}

/*header css start*/

header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0);
    z-index: 99;
}

header .logo p{
    color: var(--text-white);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0px;
}

header .col-9{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

header .col-3.logo{
    display: flex;
    align-items: center;
}

header a.nav-link {
    font-weight: 500;
    color: var(--text-white);
    font-size: 14px;
    padding-top: 0px;
    padding-bottom: 0px;
}

header a.nav-link:hover {
    opacity: .7;
     color: var(--text-white);
}

header .top-menu .main-btn{
    font-size: 13px;
    font-weight: 600;
}

header.scrolleed {
    background-color: var(--bg-white);
    transition: .3s ease-in-out;
    padding: 15px 20px;
   border-bottom: 1px solid #ededed;
}

header .top-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .top-menu i{
    font-size: 22px;
    color: var(--text-white);
}

header .top-menu i:hover{
    color: var(--text-white);
     opacity: .7;
}

header.scrolleed .logo p {
    color: var(--secondary-text);
}

header.scrolleed a.nav-link{
     color: var(--secondary-text);
}

header.scrolleed a.nav-link:hover{
     color: var(--blue-color);
}

header.scrolleed .top-menu i{
     color: var(--secondary-text);
}
/*header css end*/

/*banner sec start*/
section.banner {
    background: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 620px;
    padding: 0px;
    position:relative;
    background-position: center;
}

.overlay {
    background-color: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-content h1{
    color: var(--text-white);
    font-size: 42px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-family:var(--primary-font);
    text-shadow: 4px 4px 12px rgb(0 0 0 / 30%);
    line-height: 1.2;
}

.banner-content p{
    font-weight: 400;
    margin: 5px 0 20px;
    padding: 0;
    font-size: 1.3125rem;
    text-shadow: 4px 4px 12px rgb(0 0 0 / 30%);
    line-height: 1.4;
    color: var(--text-white);
}

section.banner .container{
    height:100%;
}

.custom-search-input-2 {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-top: 0px;
    -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 30%);
}

.banner-content form{
    width:100%;
}

.custom-search-input-2 input {
    border: 0;
    height: 50px;
    padding-left: 15px;
    border-right: 1px solid #d2d8dd;
    font-weight: 500;
    border-radius: 3px;
    color: #495057;
    font-size: 14px;
    font-family:var(--primary-font);
}

.custom-search-input-2 i {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 1.125rem;
    position: absolute;
    background-color: #fff;
    line-height: 50px;
    top: 1px;
    right: 1px;
    padding-right: 15px;
    display: block;
    width: 20px;
    box-sizing: content-box;
    height: 48px;
    z-index: 9;
    color: #999;
}

.banner-content form .form-group {
    position: relative;
}

.banner-content .nice-select {
    -webkit-tap-highlight-color: transparent;
    border-radius: 3px;
    border: none;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-weight: 400;
    height: 50px;
    line-height: 48px;
    outline: 0;
    padding-left: 15px;
    padding-right: 27px;
    position: relative;
    text-align: left!important;
    transition: .2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
    color: #555;
    padding-top: 2px;
    z-index:10;
}

.banner-content .nice-select, .banner-content .nice-select .list {
    background-color: #fff;
    box-sizing: border-box;
}

.nice-select, .pagination .next, .pagination .prev {
    font-size: 14px;
}

.banner-content .nice-select.wide {
    width: 100%;
    display:none;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 8px;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: .15s ease-in-out;
    width: 8px;
}

.nice-select .current, .custom-search-input-2 .nice-select .current {
    font-weight: 500;
    color: #6f787f;
}

.nice-select .list {
    margin: 0 0 25px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
    margin-top: 4px;
    opacity: 1;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(.75) translateY(-25px);
    transition: .2s cubic-bezier(.5, 0, 0, 1.25),opacity .15s ease-out;
    z-index: 9999;
    height: 23vh;
    overflow: auto;
    list-style: none;
}

.nice-select.wide .list {
    left: -1px!important;
    right: -1px!important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 38px;
    list-style: none;
    min-height: 38px;
    outline: 0;
    padding-left: 15px;
    padding-right: 26px;
    text-align: left;
    transition: .2s;
}

.nice-select .option.focus, .nice-select .option.selected.focus, .nice-select .option:hover {
    background-color: #f6f6f6;
}

.nice-select .option.selected{
    font-weight: 500;
}

.custom-search-input-2 button{
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    padding: 0 25px;
    height: 50px;
    background-color: #004dda;
    color: #fff;
    cursor: pointer;
    outline: 0;
}

.custom-search-input-2 button{
    transition: .3s ease-in-out;
    font-weight: 600;
    font-size: .875rem;
    border: 0;
    width: 100%;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    margin-right: -1px;
}

.custom-search-input-2 button:hover{
    color: #222;
    background-color: #ffc107;
}

.custom-search-input-2 select{
    border: 0;
    height: 50px;
    padding-left: 15px;
    width: 100%;
    color: #495057;
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight:500;
}
/*banner sec end*/


/*main categories start*/

section.main-categories{
    margin-top: -30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
    padding: 0px;
}

section.main-categories ul {
    background-color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    text-align: center;
    padding: 15px 0;
    width: 90%;
    margin: auto;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.main-categories ul li{
    width: 20%;
    border-right: 1px solid #d2d8dd;
}

section.main-categories ul li:last-child {
    border-right: none;
}

section.main-categories ul li a{
    display:block;
}

section.main-categories ul li i{
    color: var(--blue-color);
    font-size: 1.625rem;
    padding-left: 5px;
    padding-right: 5px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform:rotateY(0);
    transition: .5s ease;
}

section.main-categories ul li a:hover i{
    transform:rotateY(360deg);
    color: #111;
}

section.main-categories h3{
    font-size: 16px;
    font-family: var(--primary-font);
    color:var(--heading-text);
    margin-bottom:8px;
    font-weight: 500;
    line-height: 1.2;
}
/*main categories end*/

main.pattern {
    background: url(../images/svgexport.svg) center center/cover no-repeat #f8f8f8;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    z-index: 1;
}

/*categories start*/

section.categories .head-section{
    position: relative;
    border-left: 2px solid #e1e1e1;
    padding-left: 15px;
    margin-bottom: 20px;
}

section.categories .head-section span {
    width: 2px;
    height: 30px;
    position: absolute;
    left: -2px;
    top: 0;
    display: block;
    background-color: var(--blue-color);
}

section.categories .head-section h2{
    font-size: 1.625rem;
    margin: 0;
    color:var(--heading-text);
}

section.categories .head-section p{
    line-height: 1.4;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 0px;
    color:var(--primary-text);
}

section.categories .head-section a{
    display: inline-block;
    right: 0;
    bottom: 0;
    position: absolute;
    line-height: 1.6;
    font-size: 14px;
    color: var(--blue-color);
}

section.categories .head-section a:hover{
    color:#111;
}

section.categories .row.ctg-list img{
  
    width: 100%;
    object-fit: cover; 
    transition: .3s ease-in-out;
    transform: scale(1);
     height: 174px;
}

section.categories .row.ctg-list .image-section {
    height: 174px;
    overflow: hidden;
     border-radius: 3px;
}

section.categories .row.ctg-list a{
    position:relative;
    display:block;
}

section.categories .row.ctg-list a:hover img{
    transform: scale(1.1);
}

section.categories .row.ctg-list .cont-section{
    padding: 35px 15px 0;
    position: absolute;
    width: 100%;
    z-index: 9;
    display: block;
    color: #fff;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom,transparent,#000);
    box-sizing: border-box;
    border-radius: 3px;
}

section.categories .row.ctg-list h3{
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-white);
    font-size: 16px;
    font-family: var(--primary-font);
}

section.categories .cat_star i{
    color: #ffc107;
    font-size: 12px;
    margin-right: 2px;
}

section.hotels.categories, section.restaurants.categories {
    padding-top: 0px;
}

.main-title{
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.main-title span{
    width: 120px;
    height: 2px;
    background-color: #e1e1e1;
    display: block;
    margin: auto;
}

.main-title span em{
    width: 60px;
    height: 2px;
    display: block;
    margin: auto;
    background-color: var(--blue-color);
}

.main-title h2{
    font-weight: 500;
    line-height: 1.2;
    margin-top: 25px;
    margin-bottom: 0px;
    color: var(--heading-text);
}

.main-title p{
    line-height: 1.4;
    font-weight: 300;
    font-size: 24px;
    color: var(--primary-text);
    margin-bottom: 30px;
}

section.home-listing{
    background:#fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

section.home-listing .strip {
    margin-bottom: 30px;
    border-radius: 3px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    background-color: #fff;
}

section.home-listing .strip figure {
    margin-bottom: 0;
    overflow: hidden;
    height: 200px;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    position:relative;
}

section.home-listing .strip a.wish_bt {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
    background-color: rgba(0,0,0,.6);
    padding: 9px 10px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    transition: .3s ease-in-out;
}

section.home-listing .list-content{
    padding-left:15px;
     padding-right:15px;
     opacity: .5;
    transform: scale(.85);
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(.85,.85);
    transition: .3s ease-in-out;
    overflow: hidden;
}

section.home-listing .list-content.slick-current{
    opacity: 1;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1,1);
    transform: scale(1);
}
.strip a.wish_bt:after {
    font-family: ElegantIcons;
    content: "\e012";
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}

.strip figure a img {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    backface-visibility: hidden;
    width: 100%;
    transition: .3s ease-in-out;
    left: 50%;
}

.strip figure .read_more {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -12px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    -webkit-transition: .6s;
    transition: .6s;
    z-index: 2;
}

.strip figure .read_more span {
    background-color: rgba(255,255,255,.8);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    display: inline-block;
    color: #222;
    font-size: .75rem;
    padding: 5px 10px;
}

.strip figure small {
    padding: 7px 10px 4px;
    background-color: rgba(0,0,0,.6);
    text-transform: uppercase;
}

.strip figure small {
    position: inherit;
    left: 20px;
    top: 22px;
    color: #fff;
    font-weight: 600;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    line-height: 1;
}

.strip .wrapper {
    padding: 20px 25px 15px;
    position: relative;
}

.strip .wrapper h3 {
    font-size: 1.25rem;
    margin: 0;
}

.strip .wrapper h3 a{
    color: var(--blue-color);
    font-family: var(--primary-font);
    font-weight: 500;
}

.strip .wrapper p{
    margin-bottom: 15px;
    color:var(--primary-text);
    font-size:14px;
    line-height: 1.6;
    height: 90px;
    overflow: hidden;
}

.strip .wrapper a.address {
    display: inline-block;
    font-weight: 500;
    color: #999;
    line-height: 1;
    font-size: 14px;
}

.strip .wrapper a.address:hover {
     color: var(--blue-color);
}

.strip .wrapper a.address i{
    margin-right: 5px;
}

.strip figure a:hover img{
    -webkit-transform: translate(-50%,-50%) scale(1.1);
    -moz-transform: translate(-50%,-50%) scale(1.1);
    -ms-transform: translate(-50%,-50%) scale(1.1);
    -o-transform: translate(-50%,-50%) scale(1.1);
    transform: translate(-50%,-50%) scale(1.1);
}

.strip figure:hover .read_more{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

section.home-listing .slick-list.draggable{
    padding:0px !important;
}

section.home-listing .slick-dots li button:before{
    font-size:15px;
    opacity: 1;
    color: #d6d6d6;
}

section.home-listing .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #004dda;
}

.strip ul {
    padding: 20px 15px 17px 20px;
    border-top: 1px solid #ededed;
    list-style: none;
}

.strip ul li:first-child {
    font-size: .8125rem;
    margin-top: -4px;
    display: inline-block;
    margin-right: 15px;
}

.loc_closed, .loc_open {
    position: relative;
    top: -2px;
    font-size: .6875rem;
    font-weight: 600;
    padding: 2px 8px;
    line-height: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.loc_open {
    color: #32a067;
    border: 1px solid #32a067;
}

.strip ul li:last-child{
    margin-right: 0;
    float: right;
     display: inline-block;
}

.strip ul li .score{
    margin-top: -10px;
    display: flex;
    align-items: center;
}
.score span {
    display: inline-block;
    top: 7px;
    font-size: .75rem;
    text-align: right;
    line-height: 1.1;
    font-weight: 500;
    margin-right: 8px;
    color: var(--primary-text);
}

.score span em {
    display: block;
    font-weight: 400;
    font-size: .6875rem;
    color: var(--primary-text);
}

.score strong {
    background-color: #32a067;
    color: #fff;
    line-height: 1;
    -webkit-border-radius: 5px 5px 5px 0;
    -moz-border-radius: 5px 5px 5px 0;
    -ms-border-radius: 5px 5px 5px 0;
    border-radius: 5px 5px 5px 0;
    padding: 10px;
    display: inline-block;
    font-size:14px;
}

section.home-listing .view-more{
    text-align:center;
    margin-top:50px;
}

section.home-listing .view-more a{
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
}

section.home-categories{
   padding-top: 80px;
    padding-bottom: 55px;
    background: #f8f8f8;
}

section.home-categories img{
    width:55px;
}

section.home-categories a.box_cat_home {
    background-color: #fff;
    display: block;
    padding: 25px 15px;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 25px;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    color: #999;
}

section.home-categories a.box_cat_home:hover {
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

section.home-categories a.box_cat_home i {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.125rem;
    color: #0054a6;
    opacity: 0;
    -moz-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
    -webkit-transition: .6s ease-in-out;
    -ms-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
}

section.home-categories a.box_cat_home:hover i{ 
    opacity:1;
}

section.home-categories .row h3{
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 8px;
    height:44px;
}

section.home-categories .row p{
    border-top: 1px solid #ededed;
    margin-top: 20px;
    padding-top: 10px;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

section.home-categories .row p strong{
    margin-right: 5px;
    font-weight: 600;
    color: #777;
}

section.how-works{
    background: url(../images/call.jpg) center center/cover no-repeat fixed #004dda;
    padding:0px;
}

section.how-works .wrapper{
    background-color: rgba(0,0,0,.8);
    padding-top:80px;
    padding-bottom:80px;
}

section.how-works .main-title h2{
    color: var(--text-white);
}

section.how-works .main-title p{
    color: var(--text-white);
}

section.how-works .col-md-4{
    text-align:center;
    color:var(--text-white);
}

section.how-works .col-md-4 i{
    font-size: 50px;
    margin-bottom: 10px;
    color: #ffc107;
}

section.how-works .col-md-4 h3{
    font-family: var(--primary-font);
    color: var(--text-white);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
}

section.how-works .col-md-4 p{
   color: var(--text-white); 
    font-size: 14px;
    margin-bottom: 30px;
    line-height:1.6;
}

section.how-works .register{
    text-align: center;
    margin-top: 30px;
}

section.how-works .register a{
   padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
}

footer{
    border-top: 1px solid #ededed;
    background-color: #fff;
    padding-top:60px;
    padding-bottom:35px;
}

footer h3{
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: var(--primary-font);
    font-size: 18px;
}

footer ul{
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0px;
}

footer li{
    margin-bottom:5px;
    color:var(--primary-text);
    font-size:14px;
}

footer a{
    color:var(--primary-text);
    font-size:14px;
    position:relative;
}

footer ul.links i{
    opacity:0;
    margin-left: 5px;
    font-size: 12px;
}

footer li a{
    transition: .3s ease-in-out;
    display:block;
}

footer ul.links li a:hover {
    -webkit-transform: translate(5px,0);
    -moz-transform: translate(5px,0);
    -ms-transform: translate(5px,0);
    -o-transform: translate(5px,0);
    transform: translate(5px,0);
    color:var(--blue-color);
}

footer ul.links li a:hover i{
    opacity:1;
}

footer ul.contacts i{
    font-size: 18px;
    color: var(--blue-color);
}

footer ul.contacts li{
    margin-bottom:20px;
}

footer ul.contacts li, footer ul.contacts li a{
    display:flex;
    gap:10px;
}

footer input.form-control{
    border: 0;
    height: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 15px;
    font-size: 14px;
    background-color: rgba(0,0,0,.06);
}

footer .form-group{
    display:flex;
}

footer #submit-newsletter{
    color:var(--text-white);
    font-size: 13px;
    font-weight: 600;
    top: 0;
    border: 0;
    padding: 0 12px;
    height: 40px;
    line-height: 42px;
    cursor: pointer;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color:  var(--blue-color);
    transition: .3s ease-in-out;
    outline: 0;
}

footer #submit-newsletter:hover {
    background-color: var(--yellow-color);
    color: var(--btn-color);
}

footer .follow_us h5 {
    font-size: 1rem;
    margin-top: 35px;
    font-family: var(--primary-font);
}

footer .follow_us ul{
    display: flex;
    gap: 20px;
}

footer .follow_us i{
    font-size:20px;
    color: #555;
    opacity: .6;
}

footer .follow_us i:hover{
    color:var(--blue-color);
}

footer hr {
    margin: 30px 0;
    color: #ddd;
    opacity: 1;
}

ul#footer-selector {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul#footer-selector li {
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .styled-select {
    width: 100%;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    border: none;
    background-color: rgba(0,0,0,.05);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding-right: 35px;
    color: #555;
    position:relative;
}

footer .styled-select select {
    background: 0 0;
    width: 110%;
    padding-left: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 30px;
    color: #555;
    font-size: .75rem;
    margin: 0;
    font-weight: 500;
    -moz-appearance: window;
    -webkit-appearance: none;
    cursor: pointer;
    outline: 0;
    position:relative;
}

.styled-select i{
    position: absolute;
    right: 10px;
    color: #555;
    top: 9px;
}

footer ul#additional_links li a{
    color: #555;
    opacity: .8;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    font-size:13px;
    margin-right:20px;
}

footer ul#additional_links li span {
    color: #555;
    opacity: .8;
    font-size:13px;
}

footer ul#additional_links {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
    margin-top: 8px;
}

footer ul#additional_links li{
     position:relative;
}

footer ul#additional_links li:after {
    content: "|";
    font-weight: 300;
    right: 8px;
    position: absolute;
    top: 0px;
}

footer ul#additional_links li.copy:after {
    display:none;
}

#toTop {
   position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    background-color: rgba(0,0,0,.6);
    border-radius: 50%;
    font-size: 23px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity:0;
}

#toTop:hover {
    background-color: var(--blue-color);
}
#toTop.show {
  opacity: 1;
  visibility: visible;
}

header.header1 {
    background-color: var(--bg-white);
    transition: .3s ease-in-out;
    padding: 15px 20px;
    border-bottom: 1px solid #ededed;
    position: relative;
}

header.header1 .logo p {
    color: var(--secondary-text);
}

header.header1 a.nav-link {
    color: var(--secondary-text);
}

header.header1 .top-menu i {
    color: var(--secondary-text);
}

header.header1 a.nav-link:hover {
    color: var(--blue-color);
}

section.pro.banner img.img-fluid.hero{
    animation: 5s cubic-bezier(0,.5,0,1) .1s forwards pop-in;
    height:400px;
    object-fit:cover;
    width:100%;
}

section.pro.banner{
    height:400px;
    background:none;
    overflow: hidden;
}

section.pro.banner .overlay {
    background-color: rgba(0,0,0,.2);
}

section.pro.banner a.btn_photos{
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,.2);
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
    line-height: 1;
    padding: 10px 15px;
    color: #444;
    font-weight: 500;
    font-size:14px;
}

.hidden {
  overflow: hidden;
  display: none;
  visibility: hidden;
}

.des-head {
    padding: 15px 0px;
    background: var(--blue-color);
}

.des-head ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    gap: 20px;
}

.des-head a{
    color: rgba(255,255,255,.5);
    transition: .3s ease-in-out;
    font-weight: 500;
}

.des-head a.active, .des-head a:hover{
    color: #fff;
}

.is_stuck{
   position: fixed;
    top: 0px;
    width:100%;
    z-index:99;
}

section.des-detail {
    background-color: #f8f8f8;
}

section.des-detail h1{
    font-weight: 500;
    line-height: 1.2;
    font-size: 32px;
    margin-bottom: 0px;
    color: var(--heading-text);
}

section.des-detail a.address{
    font-weight: 500;
    color: #999;
    line-height: 1.2;
    font-size: 14px;
    margin-bottom: 25px;
    display:block;
}

section.des-detail a:hover{
    color:var(--blue-color);
}


section.des-detail a.address i{
    margin-right:5px;
    
}

section.des-detail .overview-content p{
    line-height: 1.6;
    color: #555;
    font-size: 14px;
    margin-bottom: 30px;
}

section.des-detail h5{
    font-weight: 500;
    line-height: 1.2;
    font-size: 20px;
    font-family: var(--primary-font);
    margin-bottom: 15px;
}

section.des-detail .brand i{
    background: #32a067;
    padding: 5px;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    width: 20px;
    height: 20px;
    margin-right: 9px;
}

section.des-detail .brand ul{
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

section.des-detail .brand li{
    width: 33.33%;
    line-height: 1.8;
    font-size: 14px;
    color: var(--primary-text);
    margin-bottom: 5px;
}

section.des-detail .opening {
    background-color: rgba(0,77,218,.05);
    padding: 25px 25px 25px 80px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    position: relative;
}

section.des-detail .opening .ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

section.des-detail .opening .ribbon span {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    position: absolute;
    top: 19px;
    right: -21px;
}

section.des-detail .opening .ribbon span.open {
    background: #79a70a;
}

.ribbon span.open::after, .ribbon span.open::before {
    content: "";
    top: 100%;
    z-index: -1;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #5d8108;
}

.ribbon span.open::before {
    position: absolute;
    left: 0;
    border-left: 3px solid #5d8108;
    border-right: 3px solid transparent;
}

.ribbon span.open::after {
    position: absolute;
    right: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid #5d8108;
}

section.des-detail .opening i {
    position: absolute;
    left: 25px;
    top: 25px;
    font-size: 2.25rem;
    color: #555;
}

section.des-detail .opening h4{
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
    font-size: 18px;
    color: var(--heading-text);
}

section.des-detail .opening ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

section.des-detail .opening ul li{
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text);
}

section.des-detail .opening ul li span {
    display: inline-block;
    float: right;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text);
}

section.des-detail hr{
    margin: 30px 0;
    color: #d2d8dd;
    opacity: 1;
}

ul.menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.menu_list li{
  height: 120px;
    display: flex;
    gap: 20px;
}

ul.menu_list li .thumb {
    width: 100px;
    height: 100px;
    left: 0;
    top: 0;
    overflow: hidden;
    border: 1px solid #ddd;
    padding: 5px;
    
}

ul.menu_list li .thumb img {
    width: 88px;
    height: auto;
    text-align: center;
    object-fit:cover;
}

ul.menu_list li h6 {
    font-size: .875rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 5px;
    font-family: var(--primary-font);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    padding-top: 10px;
}

ul.menu_list .content{
    width:236px;
}

ul.menu_list p{
    font-size: 13px;
    color: var(--primary-text);
}

.filters_listing ul li:nth-child(4), .nice-select.right, ul.menu_list li h6 span {
    float: right;
}

section.des-detail .details-area {
    border-bottom: 3px solid #d2d8dd;
    margin-bottom: 30px;
    padding-bottom: 40px;
}

section.des-detail .reviews h2{
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
    font-size: 24px;
    color: var(--heading-text);
}

#review_summary {
    text-align: center;
    background-color: #32a067;
    color: #fff;
    padding: 20px 10px;
    -webkit-border-radius: 3px 3px 3px 0;
    -moz-border-radius: 3px 3px 3px 0;
    -ms-border-radius: 3px 3px 3px 0;
    border-radius: 3px 3px 3px 0;
}

#review_summary strong {
    font-size: 2.625rem;
    display: block;
    line-height: 1;
    font-weight: 600;
    color:var(--text-white);
    text-align:center;
}

#review_summary em {
    font-style: normal;
    font-weight: 500;
    display: block;
}
.small, small {
    font-size: 12px;
}

small strong{
    font-weight: 600;
}

.reviews-container .progress {
    margin-bottom: 12px;
    border-radius: 0.375rem;
}

.reviews-container.head{
    margin-bottom:30px;
}

.reviews-container .progress-bar {
    background-color: #32a067;
}

.reviews-container .rev-thumb {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
}

.reviews-container .rev-thumb img {
    width: 80px;
    height: auto;
    object-fit:cover;
}
.reviews-container .rev-content {
   position: relative;
    padding: 25px 25px 25px;
    border-radius: 3px;
    background-color: #fff;
    margin-bottom: 25px;
    width: 616px;
}

.reviews-container .rating {
    color: #ccc;
}

.reviews-container i{
    font-size: 14px;
    margin-right: 2px;
    color: #ccc;
}

.reviews-container i.voted{
    color: #ffc107;
}

.reviews-container .rev-info {
    font-size: .75rem;
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

.reviews-container .rev-text p{
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.review-box.clearfix{
    display: flex;
    gap: 0px;
    justify-content: space-between;
}

section.des-detail hr.r{
    margin-top:5px;
   color: #ddd;
   opacity: 1;
}

.add-review label{
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--primary-text);
    font-size: 14px;
}

.add-review .form-control{
    height: calc(2.55rem + 2px);
    font-size: .875rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    color: #495057;
    border: 1px solid #d2d8dd;
}

.add-review .form-group {
    position: relative;
    margin-bottom: 1rem;
}

.add-review select{
    height: calc(2.55rem + 2px);
    font-size: .875rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    color: #495057;
    border: 1px solid #d2d8dd;
    width: 100%;
    padding: 0.375rem 0.75rem;
}

.add-review input#submit-review {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
}

section.des-detail .box_detail {
    padding: 25px 25px 15px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    border-radius: 3px;
    margin-bottom: 30px;
    background-color: #fff;
}

section.des-detail .box_detail .price {
   line-height: 1;
    border-bottom: 1px solid #ededed;
    padding: 0px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.des-detail .box_detail h5 {
    font-weight: 500;
    line-height: 1.2;
    font-size: 20px;
    font-family: var(--primary-font);
    margin-bottom: 0px;
}

section.des-detail .box_detail .score strong{
    font-size:14px;
}

section.des-detail .score{
    display: flex;
    align-items: center;
}

section.des-detail .box_detail .form-control {
    height: calc(2.55rem + 2px);
    font-size: .875rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    color: #495057;
    border: 1px solid #d2d8dd;
}

section.des-detail .box_detail input{
    font-weight: 500;
    height: 45px;
}

section.des-detail .box_detail .form-group{
    margin: 0 0 10px;
}

section.des-detail .box_detail textarea {
    font-weight: 500;
    height: 100px !important;
    padding-right: 25px;
}

section.des-detail .box_detail input#submit-contact-detail {
    font-size: 14px;
    width: 100%;
    /* padding: 15px 30px; */
    margin-top: 15px;
    margin-bottom: 0px;
}

section.des-detail .box_detail input#submit-contact-detail:hover {
    color:var(--text-white);
    background-color: #32a067;
}

section.des-detail .box_detail .btn_1.full-width.wishlist, section.des-detail .box_detail a.btn_1.full-width.wishlist {
    border: 2px solid #004dda;
    border-color: #555;
    color: #555;
    padding: 11px 40px;
    background: 0 0;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    line-height: 1;
    transition: .3s ease-in-out;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-size:14px;
}

section.des-detail .box_detail .btn_1.full-width.wishlist:hover, section.des-detail .box_detail a.btn_1.full-width.wishlist:hover {
    color: #fff!important;
    background-color: #555;
    border-color: #555;
}

.text-center small{
    color:#555;
}

ul.share-buttons {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0 0 25px;
}

ul.share-buttons li {
    display: inline-block;
    margin: 0 5px 5px;
}

ul.share-buttons li i {
    font-size: 1rem;
    position: relative;
    right: 3px;
    top: 2px;
}

ul.share-buttons li a {
    background: #fff;
    border: 1px solid #ededed;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: .8125rem;
    padding: 7px 20px;
    transition: .3s;
    display: inline-block;
    line-height: 17px;
    font-weight: 500;
}
ul.share-buttons li a.fb-share {
    color: #3b5998;
}

ul.share-buttons li a.fb-share:hover {
    background: #3b5998;
    color: #fff;
    border-color: #3b5998;
}

ul.share-buttons li a.twitter-share {
    color: #1da1f2;
}

ul.share-buttons li a.twitter-share:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

ul.share-buttons li a.gplus-share {
    color: #dd4b39;
}

ul.share-buttons li a.gplus-share:hover {
    background: #dd4b39;
    color: #fff;
    border-color: #dd4b39;
}

section.des-detail .sidebar-container {
    position: sticky;
    top: 65px;
}

section.listing {
    padding: 0px;
}

section.listing .des-head{
    padding: 20px 0px;
}

section.listing.is_stuck .des-head{
    padding: 10px 0px;
}

section.listing .des-head h4{
    color: var(--text-white);
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0px;
}

section.listing .des-head .col-lg-3.col-md-4 {
    display: flex;
    align-items: center;
}

section.listing .des-head .col-lg-9 .row {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-top: 10px;
    -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 30%);
    margin-top: 0px;
    position: relative;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
section.listing .des-head .form-group{
    margin: 0;
    position: relative;
}

section.listing .des-head input {
    border: 0;
    height: 40px;
    padding-left: 15px;
    border-right: 1px solid #d2d8dd;
    font-weight: 500;
    font-size: .875rem;
    border-radius: 3px;
    color: #495057;
}

section.listing .des-head i {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 1.125rem;
    position: absolute;
    background-color: #fff;
    line-height: 50px;
    top: 1px;
    right: 1px;
    padding-right: 15px;
    display: block;
    width: 20px;
    box-sizing: content-box;
    height: 48px;
    z-index: 9;
    color: #999;
    height: 38px;
    line-height: 38px;
    padding-right: 10px;
}

section.listing .des-head .col-lg-4{
    padding:0px;
}

section.listing .des-head .col-lg-9 .col-lg-3{
   padding:0px;  
}

section.listing .des-head select.wide{
    -webkit-tap-highlight-color: transparent;
    border-radius: 3px;
    border: none;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-weight: 400;
    height: 50px;
    line-height: 48px;
    outline: 0;
    padding-left: 15px;
    padding-right: 27px;
    position: relative;
    text-align: left!important;
    transition: .2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
    color: #555;
    padding-top: 2px;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    width: 100%;
    font-weight: 500;
}

section.listing .des-head .col-lg-1{
    padding:0px;
}

section.listing .des-head .col-lg-1 input{
    border-radius: 0 3px 3px 0;
    background: url(../images/search.svg) center center no-repeat #ffc107;
    text-indent: -999px;
    width: 101%;
    padding: 0px;
    right: 0px;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    border: 0;
    height: 40px;
    cursor: pointer;
    outline: 0;
}

section.listing .filters_listing {
    padding: 10px 0 10px;
    background: #fff;
    border-bottom: 1px solid #ededed;
    z-index: 99!important;
}

section.listing .filters_listing ul{
  list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.listing .filters_listing ul li{
    margin-right: 10px;
}

section.listing .filters_listing .switch-field {
   overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    height: 30px;
    display: flex;
    align-items: center;
}

section.listing .filters_listing .switch-field a{
    box-shadow: none;
    /* color: rgba(0,0,0,.9); */
    min-width: 65px;
    color: rgba(0,0,0,.5);
    font-weight: 600;
    font-size: .75rem;
    text-align: center;
    text-shadow: none;
    padding: 10px 8px 8px;
    line-height: 1;
    border-right: 1px solid rgba(0,0,0,.08);
    transition: .2s ease-in-out;
    margin: 0;
}

section.listing .filters_listing .switch-field a:hover{
    color:var(--blue-color);
}

section.listing .filters_listing .switch-field a.active{
    color: rgba(0,0,0,.9);
}

section.listing .filters_listing a.btn_map{
    padding: 8px 12px 8px 10px;
    color: rgba(0,0,0,.5);
    margin-bottom: 5px;
    line-height: 1;
    font-size: .75rem;
    font-weight: 600;
    border-radius: 3px;
   
    border: 1px solid rgba(0,0,0,.08);
}

section.listing .filters_listing a.btn_map:hover{
     color:var(--blue-color);
}

section.listing .filters_listing a.btn_map i{
    margin-right:5px;
}

.hide{
    display:none;
}

section.listing .filters_listing li.right {
    margin-left: auto;
    margin-right: 0px;
}

section.listing .filters_listing .layout_view {-webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; border-radius: 3px; border: 1px solid rgba(0,0,0,.08); padding: 4px 8px 3px; display: flex; gap: 10px; }
section.listing .filters_listing .layout_view a {
    color: rgba(0,0,0,.5);
}

section.listing .filters_listing .layout_view a i{
    font-size:14px;
}

section.listing .filters_listing .layout_view a.active {
    color: rgba(0,0,0,.8);
}

section.listing .filters_listing ul li:last-child{
    margin-right:0px;
}

section.listing-detail {
    background-color: #f8f8f8;
}

.col-3.aside-sidebar #filters_col {
    background-color: #fff; padding: 20px 20px 15px; margin-bottom: 25px; border: 1px solid #ededed; }
.col-3.aside-sidebar a#filters_col_bt {
    display: flex;
    color: #333;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
}

.col-3.aside-sidebar a#filters_col_bt p{
     color: #333;
      font-weight: 600;
    font-size: 16px;
    margin-bottom:0px;
}

.col-3.aside-sidebar a#filters_col_bt img{
    width:22px;
}

.col-3.aside-sidebar .filter_type h6 {
    border-top: 1px solid #ededed;
    margin: 15px 0;
    font-size: .8125rem;
    padding: 15px 0 0;
    font-family: var(--primary-font);
    font-weight: 500;
    line-height: 1.2;
}

.col-3.aside-sidebar .container_check {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    -webkit-user-select: none;
    cursor: pointer;
    display: block;
    font-size: .875rem;
    line-height: 1.4;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.col-3.aside-sidebar #filters_col label {
    color: #333;
    font-weight: 400;
}

.col-3.aside-sidebar .container_check .checkbox {
   height: 20px;
    width: 20px;
    border: #d2d8dd;
    border-radius: 3px;
    position: absolute;
    left: 0px;
    transition: .3s ease-in-out;
}

.col-3.aside-sidebar .filter_type ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.col-3.aside-sidebar .filter_type ul li small {
    float: right;
    position: relative;
    top: 4px;
}

.col-3.aside-sidebar .distance{
    font-size: 14px;
    color: var(--primary-text);
    margin-bottom: 10px;
}

.col-3.aside-sidebar .distance span {
    font-weight: 600;
    color: var(--blue-color);
}

.col-3.aside-sidebar .range{
    width:100%;
}

section.listing-detail .col-9 .strip {
    margin-bottom: 30px;
    border-radius: 3px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    background-color: #fff;
}

section.listing-detail .col-9 .strip.list_view {
    min-height: 290px;
}

.strip.list_view figure{
   margin-bottom: 0;
    overflow: hidden;
    position: relative;
    min-height: 307px;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -ms-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.strip.list_view figure small {
    right: 30px;
    top: 15px;
    left: 10px;
}

.strip.list_view figure a img {
    height: 360px;
    width: 100%;
    max-width: none;
    transition: .3s ease-in-out;
}

.strip a.wish_bt {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
    background-color: rgba(0,0,0,.6);
    padding: 9px 10px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}
.strip.list_view a.wish_bt {
    background-color: rgba(0,0,0,.1);
    color: #555;
    top: 25px;
    right: 25px;
}

.strip a.wish_bt:after {
    font-family: ElegantIcons;
    content: "\e012";
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}

.strip.list_view a.wish_bt:hover:after{
    color: #444;
}

.strip a.wish_bt:hover:after {
    content: "\e078";
}


.strip a.wish_bt.liked:after {
    content: "\e078";
    color: var(--blue-color);
}

.strip .wrapper small {
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    font-size: .8125rem;
}

.strip.list_view .wrapper {
    padding: 30px 30px 20px;
    min-height: 235px;
}

.strip.list_view ul {
    padding: 20px 15px 20px 30px;
    margin-bottom: 0;
}

.loc_closed {
    color: #eb5c65;
    border: 1px solid #eb5c65;
}

.theiaStickySidebar {
    position: sticky;
    top: 40px;
}

section.listing-detail a.main-btn{
    font-size: 14px;
    padding: 15px 30px;
    margin-top: 30px;
    border-radius: 25px;
    font-weight: 600;
}

section.listing .des-head .col-lg-1 input:hover{
    background-color: #32a067;
}

section.home-categories.sign-in, section.home-categories.sign-up, section.home-categories.forgot {
    background: #f8f8f8;
    padding-top: 60px;
    background: url(../images/svgexport.svg) center center/cover no-repeat #f8f8f8;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

section.home-categories.sign-in .main-title, section.home-categories.sign-up .main-title, section.home-categories.forgot .main-title{
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

section.home-categories.sign-in .col-lg-6.col-md-6.text-center, section.home-categories.sign-up .col-lg-6.col-md-6.text-center, section.home-categories.forgot .col-lg-6.col-md-6.text-center{
    background: #fff;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    padding: 30px;
    max-width: 600px;
}

section.home-categories.sign-in label, section.home-categories.sign-up label, section.home-categories.forgot label, section.home-categories.contact label {
    display: block;
    color: #333;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    font-size:14px;
}

section.home-categories.sign-in input, section.home-categories.sign-up input, section.home-categories.sign-up select, section.home-categories.forgot input, section.home-categories.contact input, section.home-categories.contact textarea {
   width: 100%;
    height: 40px;
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #333;
    box-shadow: 0px 0px;
    border-radius: 0px;
}

button#login-button-submit {
    width: 250px;
    height: 40px;
    border-radius: 25px;
}

section.home-categories.sign-in a, section.home-categories.sign-up a, section.home-categories.forgot a {
    color: #0a58ca;
    text-decoration:underline;
}

section.home-categories.sign-in a:hover, section.home-categories.sign-up a:hover, section.home-categories.forgot a:hover{
    color:#ffc107;
}
section.home-categories.sign-in .passw {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0px;
}

section.home-categories.sign-in p, section.home-categories.sign-up p, section.home-categories.forgot p{
    border-top: 0px solid #ededed !important;
}

section.home-categories.sign-up .main-title p, section.home-categories.forgot .main-title p {
    line-height: 1.4;
    font-weight: 400;
    font-size: 14px;
    margin-top: 20px;
    color: var(--primary-text);
    margin-bottom: 10px;
}

section.home-categories.sign-up .name {
    display: flex;
    gap: 0 2%;
    flex-wrap: wrap;
}

section.home-categories.sign-up .name.passw input{
     margin-bottom: 0px !important;
}

section.home-categories.sign-up .name p.pass {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-bottom: 20px !important;
    font-size: 12px !important;
}

section.home-categories.sign-up form .col-lg-6 {
    flex: 0 0 auto;
    width: 49%;
    padding: 0px;
}
section.home-categories.sign-up .phone {
    display: flex;
    gap: 2%;
}

section.home-categories.sign-up .col-lg-6.col-md-6.form-up {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px 0px;
    /* max-width: 600px; */
    background: rgb(255, 255, 255);
    padding: 30px;
}
section.home-categories.sign-up input#check {
    width: 20px;
    height: 20px;
    margin-bottom: 0px;
    margin-right: 5px;
}

section.home-categories.sign-up span.check {
    font-size: 14px;
}

section.home-categories.sign-up span.check {
    font-size: 14px;
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
button#register-button-submit {
    width: 250px;
    height: 40px;
    border-radius: 25px;
}

section.home-categories.sign-up .sub{
    text-align:center;
}

section.home-categories.privacy {
    padding-top: 60px;
    background: url(../images/svgexport.svg) center center/cover no-repeat #f8f8f8;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

section.home-categories.privacy .main-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

section.home-categories.privacy .row p {
    border-top: 0px solid #ededed;
    margin-top: 0px;
    padding-top: 0px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

button#forget-button-submit {
    width: 250px;
    height: 40px;
    border-radius: 25px;
}

section.home-categories.about{
    padding-top: 60px;
    padding-bottom: 55px;
    background:transparent;
}

section.home-categories.about .row p {
    border-top: 0px solid #ededed;
    margin-top: 0px;
    padding-top: 0px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

section.home-categories.about .row p strong {
    margin-right: 5px;
    font-weight: 600;
    color: #000;
}

section.home-categories.about a{
    color: rgb(10, 88, 202);
}

section.home-categories.about a:hover{
    color: rgb(255, 193, 7);
}

section.home-categories.about .row h3 {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 20px;
    height: auto;
}


section.home-categories.contact {
    padding-top: 60px;
    padding-bottom: 55px;
    background: transparent;
}

section.home-categories.contact .row h3{
    margin-top: 0px;
    height: auto;
    margin-bottom:20px;
}
section.home-categories.contact .row p {
    border-top: 0px solid #ededed;
    margin-top: 0px;
    padding-top: 0px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

section.home-categories.contact .cont-addr p{
    margin-bottom:0px;
}

section.home-categories.contact a{
    color: rgb(10, 88, 202);
}

section.home-categories.contact a:hover{
    color: rgb(255, 193, 7);
}

section.home-categories.contact form {
    margin-top: 30px;
}

section.home-categories.contact button.main-btn {
   width: 250px;
    height: 40px;
    border-radius: 25px;
}
section.home-categories.contact button.main-btn i{
    margin-right:5px;
}
section.home-categories.contact .con{
    text-align:center;
}

section.home-categories.contact img {
    width: 200px;
}

.breadcrumb{
    display:none;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

section.user-dashboard-wrapper{
    padding: 50px 0px;
}

.user-dash-links-inner {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.user-dash-links-inner ul {
    padding: 12px 15px 12px;
    list-style-type: none;
}

.user-dash-links-inner ul li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.342);
}

.user-dash-links-inner ul li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    color: #000;
    padding-top: 15px;
    padding-bottom: 15px;
}
.user-dash-links-inner ul li a:hover{
   background-color: var(--blue-color);
    color: white !important;
}
.user-detail-inner, .change-password-inner {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px 30px 30px;
}
.user-detail-title h4, .change-profile-title h4, .change-password-title h4{
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: #333;
}

.user-detail-title a{
    color: var(--text-white);
    background: var(--blue-color);
    border: 0px solid var(--blue-color);
    border-radius: 3px;
    line-height: 1;
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.user-detail-title a:hover{
    background-color: var(--yellow-color);
    color: var(--btn-color);
}

.user-detail-title, .change-password-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 12px;
}

.user-detail-content {
    margin-top: 15px;
}

.user-detail-content img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    object-fit: cover;
}

.user-detail-content ul {
    padding-left: 0px;
}
.user-detail ul li {
    margin: 10px;
}

.user-detail-content ul li p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 24px;
}
.user-detail-content ul li p span {
    font-weight: 600;
}

.change-profile-inner {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px 30px 30px;
}

.change-profile-title{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 12px;
}

.change-profile-form {
    margin-top: 20px;
}

.change-profile-form form .upload-img {
    padding: 18px 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.change-profile-form form .upload-img .img {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    margin-right: 30px;
    overflow: hidden;
}
.change-profile-form form .upload-img .img img {
    width: 100%;
    height: 100%;
}
.change-profile-form form .upload-img .file-upload-area {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.change-profile-form form .upload-img .file-upload-area .upload-file {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}
.change-profile-form form input {
    border-radius: 0px;
    padding: 12px 10px;
    font-size:14px;
}

.change-profile-form form .upload-img .file-upload-area .upload-file .upload {
    opacity: 1;
    cursor: pointer;
    padding-left: 0px;
}

.change-profile-form form .upload-img .file-upload-area .upload-file span {
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    display: block;
    border-radius: 0.2rem;
    background: var(--blue-color);
    color: #fff;
    border: 0px solid var(--blue-color);
    width: 200px;
    font-size: 14px;
}
.change-profile-form form .upload-img .file-upload-area .upload-file span:hover{
    background-color: var(--yellow-color);
    color: var(--btn-color);
}

.change-profile-form .form-group {
    margin-bottom: 0px;
}

.change-profile-form form .change-password-button, .change-password-form form .change-password-button {
    width: 180px;
    height: 50px;
    background: var(--blue-color);
    color: #fff;
    font-size: 14px !important;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: 0px;
    border-radius: 3px;
    cursor: pointer;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
}
.change-profile-form .form-group.mt-4 {
    padding-left: 12px;
    margin-top: 0px !important;
}
.change-profile-form form .change-password-button:hover, .change-password-form form .change-password-button:hover{
     background-color: var(--yellow-color);
    color: var(--btn-color);
}
.change-password-form {
    margin-top: 20px;
}

.change-password-form form input {
    border-radius: 0px;
    padding: 12px 10px;
    margin-bottom: 26px;
    width: 40%;
    font-size:14px;
}

.change-password-form  .form-group.mt-4 {
    margin-top: 0px !important;
}

.change-password-form form .change-password-button{
    width: 150px;
    margin-top:0px;
}

.change-password-form form .change-password-button i.fa.fa-save {
    margin-right: 10px;
}

.card-header.bg-info{
   background-color: var(--blue-color) !important;
}

.card-header.bg-info h6.card-title {
    color: white;
    font-weight: 500;
    letter-spacing: 0px;
    font-family: var(--primary-font);
}

a.btn.btn-app.btn-sm {
    background: #fff;
    color: var(--btn-color);
    font-size: 13px !important;
}
div.dataTables_wrapper div.dataTables_length label, div.dataTables_wrapper div.dataTables_filter label, div.dataTables_wrapper div.dataTables_paginate ul.pagination{
    font-size:14px;
}

.page-item.active .page-link{
    background-color: var(--blue-color);
    border-color: var(--blue-color)
}

.list-elips {
    text-align: center;
    cursor: pointer;
    /* height: 45px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.active-list-pro {
    display: none;
    position: absolute;
    width: 150px;
    right: 0px;
    padding: 15px 10px;
    /* box-shadow: 0px 2px #000; */
    border: 1px solid rgba(0,0,0,.125);
    background: #fff;
    z-index: 9;
    border-radius: 5px;
}
.list-elips i {
    font-size: 25px;
}
.page-link{
    color: var(--primary-text);
}

section.listing-detail .col-12 .strip {
    margin-bottom: 30px;
    border-radius: 3px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    background-color: #fff;
    min-height: 290px;
}
@keyframes pop-in{0%{opacity:1}100%{opacity:1;-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}}