@charset "UTF-8";

/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Poppins:300,400,600,800&display=swap&subset=latin-ext");
/* BODY */
* {
    outline: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #26282b;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

/* HTML ELEMENT */
img {
    max-width: 100%;
}

/* CUSTOM CLASSES */
.overflow {
    overflow: hidden;
}

/* LINKS */
a {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    color: #26282b;
}

a:hover {
    text-decoration: underline;
}

/* CUSTOM CONTAINER */
.container {
  /*  max-width: 1280px;*/
}

/* FORM ELEMENTS */

input[type=text] {
    width: 100%;
 /*   height: 54px;*/
    border: 1px solid #eee;
   /* padding: 0 20px;*/
}

textarea {
    width: 100%;
    height: 110px;
    padding: 15px 20px;
    border-radius: 4px;
    border: 1px solid #d1d5da;
    box-shadow: inset 0 1px 2px rgb(27 31 35 / 8%);
}

button[type=submit] {
    height: 54px;
    border: none;
    background: #F3A54A;
    color: #fff;
    padding: 0 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}




/* ACCORDION */
.accordion {
    width: 100%;
    float: left;
    background: #fff;
    padding: 0;
}
.accordion .card {
    background: none;
    border-radius: 0;
    margin-top: -1px;
    border: 1px solid #eaebee;
}
.accordion .card .card-header {
    background: none;
    padding: 0;
    border-bottom: none;
}
.accordion .card .card-header a {
    width: 100%;
    float: left;
    font-weight: 500;
    padding: 20px 25px;
    color: #26282b;
    font-weight: 600;
}
.accordion .card .card-header a:before {
    content: "+";
    float: left;
    text-align: center;
    margin-right: 8px;
    color: #26282b;
    font-weight: 600;
}
.accordion .card .card-header a:hover {
    color: #e8a75b;
    text-decoration: none;
}
.accordion .card .card-body {
    width: 100%;
    border-top: 1px solid #eee;
    line-height: 26px;
}
.accordion .card [aria-expanded=true] {
    color: #e8a75b !important;
}
.accordion .card [aria-expanded=true]:before {
    content: "-" !important;
    color: #e8a75b !important;
}

/* PAGINATION */
.pagination {
    display: flex;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;

}
.pagination .page-item {
    display: inline-block;
    margin-right: 6px;
}
.pagination .page-item.active .page-link {
    background: #e8a75b;
    color: #fff;
    border-color: transparent;
    position: relative;
    z-index: 2;
}

.pagination .page-item.active .page-link:hover {
    background: #e8a75b;
    border-color: transparent;
    color: #fff;
}
.pagination .page-item .page-link {
    display: inline-block;
    border-radius: 0 !important;
    padding: 10px 15px !important;
    color: #26282b;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #dee2e6;
    line-height: 1;
}
.pagination .page-item .page-link:hover {
    background: none;
    border-color: #dee2e6;
    color: #e8a75b;
}

/* GALLERY SLIDER*/
.gallery-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 30px 0;
    background: #26282b;
}
.gallery-container .swiper-wrapper {
    width: 100%;
    float: left;
    position: relative;
}
.gallery-container .swiper-slide {
    width: 80%;
    margin: 0;
    opacity: 0.6;
}
.gallery-container .swiper-slide.swiper-slide-active {
    width: 80%;
    opacity: 1;
}
.gallery-container .swiper-slide img {
    width: 100%;
}
.gallery-container .gallery-pagination {
    bottom: 20px;
    position: absolute;
    z-index: 2;
}
.gallery-container .gallery-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.gallery-container .gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ebcfa7;
    opacity: 1;
}


/* NAV PILLS */
.nav-pills {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.nav-pills .nav-item {
    display: inline-block;
    margin-right: 30px;
}
.nav-pills .nav-item:last-child {
    margin-right: 0;
}
.nav-pills .nav-item .nav-link {
    background: none;
    color: #26282b;
    border-bottom: 2px solid transparent;
    padding: 4px 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
}
.nav-pills .nav-item .nav-link.active {
    border-bottom: 2px solid #26282b;
}

/* BREADCRUMB */
.breadcrumb {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: none;
}
.breadcrumb .breadcrumb-item {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
}
.breadcrumb .breadcrumb-item:first-child:before {
    display: none;
}
.breadcrumb .breadcrumb-item:before {
    content: "»";
    color: #fff;
    font-weight: 400;
    padding: 0 20px;
}
.breadcrumb .breadcrumb-item.active {
    color: #ebcfa7;
}
.breadcrumb .breadcrumb-item a {
    color: #fff;
}

/* HAMBURGER */
.hamburger {
    position: relative;
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.hamburger span {
    display: block;
    height: 2px;
    width: 30px;
    background: #fff;
    opacity: 1;
    position: absolute;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 9px;
}
.hamburger span:nth-child(3) {
    width: 10px;
    top: 19px;
}
.hamburger span:nth-child(4) {
    width: 6px;
    top: 19px;
    left: 15px;
}
.hamburger.open {
    margin: 0;
}
.hamburger.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: 20px;
}
.hamburger.open span:nth-child(3) {
    width: 30px;
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.hamburger.open span:nth-child(4) {
    opacity: 0;
    left: 20px;
}
.hamburger:hover span:nth-child(4) {
    width: 20px;
    left: 10px;
}

/* PRELAODER */
.preloader {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 12;
    background: #ebcfa7;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-delay: 0.95s;
    overflow: hidden;
}
.preloader * {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.preloader .layer {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background: #333;
    transition-delay: 0.3s;
}
.preloader .inner {
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 2;
}
.preloader .inner figure {
    display: block;
    margin-bottom: 10px;
    transition-delay: 0.1s;
}
.preloader .inner figure img {
    height: 60px;
}
.preloader .inner p {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    display: block;
}

/* TRANSITION OVERLAY */
.transition-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 12;
    background: #ebcfa7;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    overflow: hidden;
}
.transition-overlay .layer {
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -100%;
    top: 0;
    background: #333;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-delay: 0.6s;
}
.transition-overlay.active {
    left: 0;
}
.transition-overlay.active .layer {
    right: 0;
}

/* PAGE LOADED */
.page-loaded .preloader {
    right: -100%;
}

.page-loaded .preloader .inner figure {
    opacity: 0;
    transform: scale(1.5);
}

.page-loaded .preloader .inner p {
    transform: translateY(20px);
    opacity: 0;
}

.page-loaded .preloader .layer {
    left: -100%;
}

.page-loaded .navbar .container .upper-side {
    transform: translateY(0);
}

.page-loaded .navbar .container .menu {
    opacity: 1;
}

.page-loaded .slider .slider-container {
    transform: scale(1);
    opacity: 1;
    height: 100vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-color: #2a2933;
}

/* SIDE NAVIGATION */
.side-navigation {
    width: 400px;
    max-width: 100%;
    height: 100vh;
    min-height: 400px;
    position: fixed;
    left: -100%;
    top: 0;
    background: #26282b;
    z-index: 10;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 14px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.side-navigation .menu {
    display: none;
    margin-bottom: 20px;
}
.side-navigation .menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
}
.side-navigation .menu ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    position: relative;
}
.side-navigation .menu ul li ul {
    width: 100%;
    display: none;
    padding-left: 20px;
    margin-bottom: 10px;
}
.side-navigation .menu ul li ul li {
    display: block;
}
.side-navigation .menu ul li ul li a {
    font-size: 2vw;
}
.side-navigation .menu ul li a {
    display: inline-block;
    color: #fff;
    font-size: 3vw;
    font-weight: 600;
}
.side-navigation .menu ul li a:hover {
    color: #ebcfa7;
    text-decoration: none;
}
.side-navigation .side-content {
    width: 100%;
    display: block;
}
.side-navigation figure {
    display: block;
    margin-bottom: 30px;
}
.side-navigation figure img {
    height: 40px;
}
.side-navigation address {
    display: block;
    margin-bottom: 20px;
}
.side-navigation h6 {
    font-weight: 600;
    font-size: 20px;
}
.side-navigation p {
    display: block;
    margin-bottom: 30px;
}
.side-navigation p a {
    color: #fff;
}
.side-navigation .gallery {
    margin-bottom: 20px;
    padding: 0;
    margin-left: -5px;
    margin-right: -5px;
}
.side-navigation .gallery li {
    width: 33.33333%;
    float: left;
    margin: 0;
    padding: 0 5px;
    list-style: none;
}
.side-navigation .gallery li img {
    width: 100%;
}
.side-navigation .social-media {
    width: 100%;
    float: left;
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
}
.side-navigation .social-media li {
    float: left;
    margin-left: 5px;
    padding: 0;
    list-style: none;
}
.side-navigation .social-media li a {
    width: 40px;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 42px;
    font-size: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.side-navigation .social-media li a:hover {
    color: #26282b;
    background: #ebcfa7;
}
.side-navigation.active {
    left: 0;
    z-index: 13;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 12;
}
.navbar .container {
    flex-direction: column;
}
.navbar .container .upper-side {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    align-items: center;
}
.navbar .container .upper-side .logo {
    margin-left: 0;
}
.navbar .container .upper-side .logo img {
    height: 65px;
}
.navbar .container .upper-side .phone-email {
    margin-right: 50px;
    margin-left: auto;
    margin-top: 5px;
    text-align: right;
    color: #fff;
}
.navbar .container .upper-side .phone-email img {
    float: right;
    height: 34px;
    margin-left: 15px;
}
.navbar .container .upper-side .phone-email h4 {
    margin-bottom: -5px;
    margin-top: 3px;
    font-size: 17px;
    font-weight: 600;
    display: -webkit-box;
    line-height: 1;
}
.navbar .container .upper-side .phone-email small {
    line-height: 1;
}
.navbar .container .upper-side .phone-email small a {
    opacity: 0.5;
    color: #fff;
}
.navbar .container .upper-side .phone-email small a:hover {
    text-decoration: none;
    color: #ebcfa7;
    opacity: 1;
}
.navbar .container .upper-side .language {
    margin-right: 40px;
    margin-left: 60px;
    padding: 10px 0;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.navbar .container .upper-side .language a {
    display: inline-block;
    margin: 0 5px;
    color: #fff;
    font-weight: 600;
}
.navbar .container .upper-side .language a:hover {
    color: #ebcfa7;
    text-decoration: none;
}
.navbar .container .upper-side .hamburger {
    width: 30px;
    height: 21px;
    margin-right: 0;
}
.navbar .container .menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-delay: 1.4s;
    opacity: 0;
}
.navbar .container .menu ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: 0;
 /*   margin-top: 15px;*/

}
.navbar .container .menu ul li {
    margin: 0;
    margin-left: 40px;
    padding: 0;
    list-style: none;
    position: relative;
}
.navbar .container .menu ul li:hover ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.navbar .container .menu ul li ul {
    min-width: 220px;
    position: absolute;
    left: -35px;
    top: 120%;
    background: #26282b;
    margin: 0;
    padding: 25px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.navbar .container .menu ul li ul:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #26282b transparent;
    position: absolute;
    left: 35px;
    top: -10px;
}
.navbar .container .menu ul li ul li {
    margin: 0;
    padding: 0 35px;
    white-space: nowrap;
}
.navbar .container .menu ul li ul li a {
    padding: 8px 0;
}
.navbar .container .menu ul li ul li a:hover {
    border-color: transparent;
}
.navbar .container .menu ul li a {
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    border-top: 1px solid transparent;
}
.navbar .container .menu ul li a:hover {
    text-decoration: none;
    color: #ebcfa7;
    border-top: 1px solid #ebcfa7;
}

/* SLIDER */
.slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.slider .slider-container .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    background-size: auto 120%;
}
.slider .slider-container .swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #26282b;
    background: -moz-linear-gradient(161deg, #26282b 0%, #26282b 49%, #e8a75b 100%);
    background: -webkit-linear-gradient(161deg, #26282b 0%, #26282b 49%, #e8a75b 100%);
    background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #e8a75b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#e8a75b",GradientType=1);
    opacity: 0.65;
}
.slider .slider-container .swiper-slide .container {
    position: relative;
    z-index: 9;
    padding-left: 100px;
}
.slider .slider-container .swiper-slide .container h1 {
    font-size: 5vw;
    color: #fff;
    font-family: "Playfair Display", serif;
    color: #e8a75b;
    margin-bottom: 20px;
}
.slider .slider-container .swiper-slide .container h1 span {
    display: inline-block;
    position: relative;
}
.slider .slider-container .swiper-slide .container h1 span:before {
    content: "";
    width: 247px;
    height: 70px;
    position: absolute;
    left: 0;
    top: 40px;
    background: url(../images/title-mark.png) center no-repeat;
    background-size: contain;
    z-index: -1;
}
.slider .slider-container .swiper-slide .container h2 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
}
.slider .slider-container .swiper-slide .container a {
    height: 60px;
    line-height: 56px;
    float: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    border: 2px solid #ebcfa7;
    padding: 0 40px;
    box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.slider .slider-container .swiper-slide .container a i {
    margin-left: 10px;
}
.slider .slider-container .swiper-slide .container a:hover {
    text-decoration: none;
    background: #e8a75b;
    border-color: #e8a75b;
}
.slider .slider-container .swiper-slide .container figure {
    float: left;
    margin-left: 40px;
    margin-bottom: 0;
}
.slider .slider-container .swiper-slide .container figure img {
    height: 60px;
}
.slider .slider-container .inner-elements {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.slider .slider-container .inner-elements .container {
    position: relative;
    height: 100vh;
}
.slider .slider-container .inner-elements .container .social-media {
    width: 20px;
    position: absolute;
    left: 15px;
    top: calc(50% + 60px);
    transform: translateY(-50%);
    z-index: 4;
    text-align: center;
}
.slider .slider-container .inner-elements .container .social-media h6 {
    width: 120px;
    color: #fff;
    transform: rotate(90deg);
    transform-origin: left;
    margin-left: 9px;
    font-weight: 600;
    margin-bottom: 120px;
    font-size: 14px;
}
.slider .slider-container .inner-elements .container .social-media ul {
    margin: 0;
    padding: 0;
}
.slider .slider-container .inner-elements .container .social-media ul:before {
    content: "";
    width: 1px;
    height: 42px;
    background: #fff;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 10px;
}
.slider .slider-container .inner-elements .container .social-media ul li {
    margin: 0;
    padding: 3px 0;
    list-style: none;
}
.slider .slider-container .inner-elements .container .social-media ul li a {
    color: #fff;
    font-size: 12px;
}
.slider .slider-container .inner-elements .container .social-media ul li a:hover {
    color: #ebcfa7;
}
.slider .slider-container .inner-elements .container .pagination {
    width: auto;
    position: absolute;
    left: auto;
    right: 15px;
    bottom: 20px;
    z-index: 4;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 50px;
}
.slider .slider-container .inner-elements .container .pagination .swiper-pagination-current {
    font-size: 40px;
    font-weight: 800;
    margin-right: 5px;
}
.slider .slider-container .inner-elements .container .pagination .swiper-pagination-total {
    font-size: 20px;
    margin-left: 5px;
}
.slider .slider-container .inner-elements .container .button-prev {
    width: 40px;
    position: absolute;
    right: 65px;
    bottom: 28px;
    z-index: 4;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    transform-origin: bottom;
    margin-top: -60px;
    font-weight: 600;
    color: #fff;
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-prev:hover {
    color: #ebcfa7;
}
.slider .slider-container .inner-elements .container .button-prev:after {
    width: 42px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: calc(-100% - 20px);
    top: 5px;
}
.slider .slider-container .inner-elements .container .button-next {
    width: 40px;
    position: absolute;
    right: -45px;
    bottom: 28px;
    z-index: 4;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    transform-origin: bottom;
    margin-top: 60px;
    font-weight: 600;
    color: #fff;
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-next:hover {
    color: #ebcfa7;
}

/* PAGE HEADER */
.page-header {
    width: 100%;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 200px;
    background-color: #26282b;
    position: relative;
    margin-bottom: 30px;
}
.page-header:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #26282b;
    background: -moz-linear-gradient(161deg, #26282b 0%, #26282b 49%, #e8a75b 100%);
    background: -webkit-linear-gradient(161deg, #26282b 0%, #26282b 49%, #e8a75b 100%);
    background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #e8a75b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#e8a75b",GradientType=1);
    opacity: 0.65;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header .container h1 {
    font-size: 5vw;
    color: #fff;
    font-family: "Playfair Display", serif;
    color: #ebcfa7;
    margin-bottom: 20px;
}
.page-header .container p {
    display: block;
    color: #fff;
    font-size: 20px;
    margin: 0;
}
.page-header .container .breadcrumb {
    position: absolute;
    left: 15px;
    bottom: -30px;
    background: #e8a75b;
    width: 70%;
    padding: 40px 30px;
    padding-right: 60px;
    margin: 0;
}

/* INTRO */
.intro {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.intro figure {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 40px;
    background: #ebcfa7;
    position: relative;
}
.intro figure .pattern-bg {
    width: 120%;
    height: 100%;
    position: absolute;
    left: 5%;
    top: -5%;
    background: url(../images/side-pattern-bg.png);
    background-size: contain;
}
.intro figure .holder {
    position: relative;
    width: 100%;
    float: left;
    display: block !important;
    transform: translate(85px, -65px);
}
.intro figure .holder img {
    box-shadow: 10px 10px 50px rgb(0 0 0 / 20%);
    width: 485px;
    margin-top: 200px;
}
.intro .content-box {
    display: block;
    padding-left: 10%;
}
.intro .content-box b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.intro .content-box h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.intro .content-box h4 span {
    color: #e8a75b;
}
.intro .content-box h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.intro .content-box p {
    display: block;
    padding-right: 40%;
    margin-bottom: 30px;
}
.intro .content-box a {
    display: inline-block;
    color: #26282b;
    font-weight: 600;
}
.intro .content-box a img {
    height: 46px;
    margin-right: 15px;
}
.intro .content-box a:hover {
    color: #e8a75b;
    text-decoration: none;
}

/* LOGOS */
.logos {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}
.logos * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.logos .col-lg-2 {
    border-right: 1px dashed #eee;
}
.logos .col-lg-2:last-child {
    border-right: none;
}
.logos figure {
    width: 100%;
    margin: 0;
    position: relative;
}
.logos figure:hover img {
    opacity: 0;
    transform: scale(1.2);
}
.logos figure:hover h6 {
    opacity: 1;
    transform: scale(1);
}
.logos figure img {
    width: 100%;
}
.logos figure h6 {
    width: 100%;
    height: 20px;
    line-height: 20px;
    margin: 0;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    text-align: center;
    opacity: 0;
    font-weight: 800;
    font-size: 13px;
    transform: scale(1.1);
}

/* BENEFITS */
.benefits {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #f9f9f9;
    text-align: center;
}
.benefits .col {
    border-right: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
}
.benefits .col:nth-child(odd) {
    margin-top: 50px;
}
.benefits .col:hover figure:after {
    opacity: 1;
}
.benefits .col:last-child {
    border-right: none;
}
.benefits b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.benefits h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.benefits h4 span {
    color: #e8a75b;
}
.benefits h3 {
    font-weight: 600;
    margin-bottom: 50px;
}
.benefits figure {
    display: block;
    margin-bottom: 20px;
    position: relative;
}
.benefits figure:after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    left: 50%;
    top: 0;
    background: #ebcfa7;
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    margin-left: -35px;
}
.benefits figure img {
    height: 70px;
    position: relative;
    z-index: 2;
}
.benefits h6 {
    font-weight: 600;
    font-size: 14px;
}
.benefits .odometer {
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
}
.benefits .extra {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transform: translateY(10px);
}

/* RECENT GALLERY */
.recent-gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}
.recent-gallery b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.recent-gallery h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.recent-gallery h4 span {
    color: #e8a75b;
}
.recent-gallery h3 {
    font-weight: 600;
    padding-right: 40%;
    margin-bottom: 30px;
}
.recent-gallery .link {
    display: inline-block;
    color: #26282b;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-bottom: 10px;
}
.recent-gallery .link i {
    margin-left: 10px;
}
.recent-gallery .link:hover {
    text-decoration: none;
    color: #e8a75b;
}
.recent-gallery .link:hover:before {
    width: 100%;
}
.recent-gallery .link:before {
    content: "";
    width: 60px;
    height: 2px;
    background: #26282b;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.recent-gallery figure {
    display: block !important;
    margin: 0;
    position: relative;
}
.recent-gallery .col-md-4:nth-child(1) {
    margin-top: 100px;
}
.recent-gallery .col-md-4:nth-child(2) {
    margin-top: 0;
}
.recent-gallery .col-md-4:nth-child(3) {
    margin-top: 80px;
}

/* PROPERTY CALCULATOR */
.property-calculator {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 150px;
    margin-top: 100px;
    position: relative;
}
.property-calculator figure {
    display: inline-block;
    margin-bottom: 0;
    margin-top: -20px;
    background: #ebcfa7;
    position: relative;
}
.property-calculator figure:before {
    content: "";
    width: 50vw;
    height: 100%;
    background: #ebcfa7;
    position: absolute;
    left: -50vw;
    top: 0;
}
.property-calculator figure .pattern-bg {
    width: 120%;
    height: 100%;
    position: absolute;
    left: 5%;
    top: -5%;
    background: url(../images/side-pattern-bg.png);
    background-size: contain;
}
.property-calculator figure .holder {
    position: relative;
    width: 100%;
    float: left;
    display: block !important;
    transform: translate(85px, -35px);
}
.property-calculator figure .holder img {
    box-shadow: 10px 10px 50px rgb(0 0 0 / 20%);
    width: 485px;
}
.property-calculator .content-box {
    display: block;
    padding-left: 10%;
}
.property-calculator .content-box b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.property-calculator .content-box h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.property-calculator .content-box h4 span {
    color: #e8a75b;
}
.property-calculator .content-box h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.property-calculator .content-box ul {
    display: block;
    margin-bottom: 60px;
    padding: 0;
}
.property-calculator .content-box ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.property-calculator .content-box ul li:nth-child(1) {
    margin-right: 30px;
}
.property-calculator .content-box ul li img {
    height: 35px;
}
.property-calculator .content-box p {
    display: block;
    padding-right: 40%;
    margin-bottom: 30px;
}
.property-calculator .content-box a {
    display: inline-block;
    color: #26282b;
    font-weight: 600;
}
.property-calculator .content-box a img {
    height: 46px;
    margin-right: 10px;
}
.property-calculator .content-box a:hover {
    color: #e8a75b;
    text-decoration: none;
}

/* PROPERTY PLANS */
.property-plans {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 150px;
}
.property-plans b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.property-plans h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.property-plans h4 span {
    color: #e8a75b;
}
.property-plans h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.property-plans p {
    display: block;
    padding-right: 40%;
    margin-bottom: 30px;
}
.property-plans table {
    display: table;
    margin-bottom: 30px;
    font-size: 15px;
}
.property-plans table tr td {
    padding: 5px 0;
}
.property-plans table tr td:first-child {
    color: #e8a75b;
    width: 120px;
    font-weight: 600;
}
.property-plans .tab-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.property-plans .tab-nav li {
    display: inline-block;
    margin: 0;
    margin-right: 10px;
    padding: 0;
    list-style: none;
}
.property-plans .tab-nav li a {
    color: #26282b;
    font-weight: 600;
}

/* GET CONSULTATION */
.get-consultation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 150px;
    margin-bottom: 100px;
    background-size: auto 120%;
    background-position: right;
    background-repeat: no-repeat;
    background-color: #e5e4df;
}
.get-consultation .content-box {
    width: 500px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 50px;
    margin-bottom: -100px;
    color: #fff;
    background: #e8a75b;
    position: relative;
    overflow: hidden;
}
.get-consultation .content-box:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 200px 100vh 0;
    border-color: transparent #ebcfa7 transparent transparent;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.15;
}
.get-consultation b {
    width: 100%;
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.get-consultation h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.get-consultation h4 span {
    color: #ebcfa7;
}
.get-consultation h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.get-consultation p {
    display: block;
    padding-right: 20%;
    margin-bottom: 40px;
}
.get-consultation a {
    height: 60px;
    line-height: 60px;
    float: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    background: #26282b;
    padding: 0 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.get-consultation a i {
    margin-left: 10px;
}
.get-consultation a:hover {
    text-decoration: none;
    background: #fff;
    color: #e8a75b;
}



/* PROPERTY CUSTOMIZATION */
.property-customization {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #26282b;
    color: #fff;
    position: relative;
}
.property-customization b {
    width: 100%;
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.property-customization h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.property-customization h4 span {
    color: #ebcfa7;
}
.property-customization h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.property-customization figure {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 10px;
    margin: 15px 0;
}
.property-customization figure img {
    height: 40px;
    float: left;
    margin-right: 15px;
}
.property-customization figure figcaption {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}





/* SALES OFFICES */
.sales-offices {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 135px 0;
}
.sales-offices .office-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    margin: 15px 0;
    border: 1px solid #eee;
}
.sales-offices .office-box h5 {
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    font-size: 26px;
}
.sales-offices .office-box address {
    margin-bottom: 25px;
}
.sales-offices .office-box a {
    height: 44px;
    line-height: 44px;
    display: inline-block;
    padding: 0 20px;
    background: #26282b;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.sales-offices .office-box a i {
    margin-right: 7px;
}
.sales-offices .office-box a:hover {
    text-decoration: none;
}


/* PHOTO GALLERY */
.photo-gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}
.photo-gallery .gallery-filter {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0;
}
.photo-gallery .gallery-filter li {
    display: inline-block;
    margin-right: 25px;
    padding: 0;
    list-style: none;
}
.photo-gallery .gallery-filter li a {
    font-weight: 600;
    border-bottom: 2px solid transparent;
}
.photo-gallery .gallery-filter li a.current {
    border-bottom: 2px solid #ebcfa7;
}
.photo-gallery .gallery-filter li a:hover {
    color: #e8a75b;
    text-decoration: none;
}
.photo-gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-left: -4px;
    margin-right: -4px;
    padding: 0;
}
.photo-gallery .gallery li {
    width: 25%;
    margin: 0;
    padding: 4px;
    list-style: none;
}
.photo-gallery .gallery li img {
    width: 100%;
    float: left;
}

/* SALES TEAM */
.sales-team {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
}
.sales-team figure {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #eee;
    padding: 10px;
    margin: 15px 0;
}

.sales-team figure figcaption {
    display: inline-block;
}
.sales-team figure figcaption h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.sales-team figure figcaption h4 span {
    color: #e8a75b;
}
.sales-team figure figcaption small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.5;
}
.sales-team figure figcaption small:after {
    content: "";
    width: 50px;
    height: 1px;
    background: #26282b;
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 4px;
    opacity: 0.5;
}
.sales-team figure figcaption ul {
    display: block;
    margin: 0;
    padding: 0;
}
.sales-team figure figcaption ul li {
    display: inline-block;
    margin: 0;
    margin-right: 15px;
    padding: 0;
    list-style: none;
}
.sales-team figure figcaption ul li a {
    font-size: 14px;
    font-weight: 600;
}
.sales-team figure figcaption ul li a i {
    margin-right: 6px;
    font-size: 12px;
    font-weight: 400;
}
.sales-team figure figcaption ul li a:hover {
    text-decoration: none;
    color: #e8a75b;
}




/* FOOTER BAR */
.footer-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -80px;
}
.footer-bar .inner {
    background: #9F8054;
    padding: 60px 30px;
    color: #fff;
}
.footer-bar .inner figure {
    margin-bottom: 20px;
    float: left;
    margin-right: 30px;
}
.footer-bar .inner figure img {
    height: 70px;
}
.footer-bar .inner h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 15px;
}
.footer-bar .inner p {
    font-size: 16px;
    margin: 0;
}
.footer-bar .inner strong {
    font-weight: 600;
    text-decoration: underline;
}

/* FOOTER */
.footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 180px;
    padding-bottom: 30px;
    background: #26282b !important;
}
.footer p {
    color: #fff;
}
.footer .logo {
    height: 41px;
    margin-bottom: 15px;
}
.footer .logo img {
    height: 48px;
}
.footer .select-box {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 15px;
    padding-left: 25px;
    margin-top: 20px;
}
.footer .select-box:hover {
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.footer .select-box span {
    margin-right: 40px;
}
.footer .select-box .dropdown-toggle {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.footer .select-box .dropdown-toggle:hover {
    text-decoration: none;
}
.footer .select-box .dropdown-toggle img {
    width: 20px;
    margin-right: 5px;
}
.footer .select-box .dropdown-menu {
    width: 100%;
    background: #fff;
    border-radius: 0;
    border: none;
    margin-left: -25px;
    margin-top: 13px;
}
.footer .select-box .dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer .select-box .dropdown-menu li a {
    display: block;
    padding: 7px 25px;
    font-size: 14px;
    line-height: 1;
}
.footer .select-box .dropdown-menu li a:hover {
    background: none;
    color: #e8a75b;
}
.footer .select-box .dropdown-menu li a img {
    width: 20px;
    margin-right: 5px;
}
.footer .footer-menu {
    display: block;
    margin: 0;
}
.footer .footer-menu li {
    width: 100%;
    float: left;
    margin: 0;
    padding: 4px 0;
    list-style: none;
}
.footer .footer-menu li a {
    float: left;
    color: #fff;
}
.footer .footer-menu li a:hover {
    color: #ebcfa7;
}
.footer .contact-box {
    float: right;
    color: #fff;
    text-align: right;
}
.footer .contact-box h5 {
    margin-bottom: 10px;
    font-size: 19px;
    font-family: "Playfair Display", serif;
}
.footer .contact-box h3 {
    font-weight: 600;
    margin: 0;
}
.footer .contact-box p {
    margin-bottom: 10px;
}
.footer .contact-box p a {
    color: #fff;
    opacity: 0.5;
}
.footer .contact-box ul {
    float: right;
    margin: 0;
    margin-top: 20px;
    padding: 0;
}
.footer .contact-box ul li {
    float: left;
    margin-left: 5px;
    padding: 0;
    list-style: none;
}
.footer .contact-box ul li a {
    width: 40px;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 42px;
    font-size: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.footer .contact-box ul li a:hover {
    color: #26282b;
    background: #ebcfa7;
}
.footer .col-12 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 80px;
    color: #fff;
    font-size: 13px;
}
.footer .col-12 .copyright {
    float: left;
    border-top: none;
    color: white;
    padding-top:0px;
}
.footer .col-12 .creation {
    float: right;
}
.footer .col-12 .creation a {
    color: #fff;
}
.topsearch a {
    color: black !important;
}
.properties-by-home {
    font-family: var(--primary-font),sans-serif !important;
    margin-bottom: 50px;
    text-align: center;
}
/* RESPONSIVE MEDIUM  FIXES */
@media only screen and (max-width: 1199px), only screen and (max-device-width: 1199px) {
    .intro figure .holder {
        transform: translate(65px, -65px);
    }

    .intro figure .holder img {
        width: 450px;
    }

    .property-calculator figure .holder {
        transform: translate(65px, -65px);
    }

    .property-calculator figure .holder img {
        width: 450px;
    }

    .footer-bar .inner p {
        font-size: 15px;
        margin: 0;
    }

    .footer-bar .inner p br {
        display: none;
    }
}
/* RESPONSIVE TABLET FIXES */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
    .side-navigation .side-content {
        display: none;
    }

    .side-navigation .menu {
        display: block;
    }

    .navbar .container .menu {
        display: none;
    }

    .page-header .container h1 {
        font-size: 8vw;
    }

    .intro figure {
        width: 100%;
        margin-bottom: 80px;
    }

    .intro figure .pattern-bg {
        width: 100%;
        left: 0;
    }

    .intro figure .holder {
        transform: translate(0, -45px);
        padding: 0 15%;
    }

    .intro figure .holder img {
        width: 100%;
    }

    .intro .content-box {
        padding-left: 0;
    }

    .logos figure img {
        padding: 0 10%;
    }

    .about-content {
        padding: 80px 0;
    }

    .sales-offices {
        padding: 80px 0;
    }

    .press-relases {
        padding: 80px 0;
    }

    .photo-gallery {
        padding: 80px 0;
    }

    .photo-gallery .gallery li {
        width: 33.33333%;
    }

    .intro-video {
        padding: 80px 0;
    }

    .faq .sidebox {
        width: 100%;
        margin-left: 0;
        margin-top: 50px;
    }

    .apartment {
        padding: 80px 0;
    }

    .apartment .property-infos {
        width: 100%;
        margin-right: 0;
    }

    .apartment .property-plan {
        margin: 50px 0;
    }

    .apartment .gallery-slider {
        width: 100%;
    }

    .facilities {
        padding: 80px 0;
    }

    .blog .sidebar {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    .sales-team {
        padding: 80px 0;
    }

    .sales-team figure figcaption {
        width: 50%;
    }

    .sales-team figure figcaption h4 {
        font-size: 21px;
    }

    .sales-team figure figcaption small {
        margin-bottom: 20px;
    }

    .error404 {
        padding: 80px 0;
    }

    .recent-gallery {
        padding: 80px 0;
    }

    .recent-gallery h3 {
        padding-right: 0;
    }

    .recent-gallery .col-md-4 {
        margin-top: 0 !important;
    }

    .recent-gallery figure {
        margin-top: 80px;
    }

    .benefits {
        padding: 80px 0;
    }

    .property-calculator {
        padding-bottom: 80px;
        margin-top: 0;
    }

    .property-calculator .col-lg-6:nth-child(1) {
        order: 2;
    }

    .property-calculator .col-lg-6:nth-child(2) {
        order: 1;
    }

    .property-calculator figure {
        width: 100%;
    }

    .property-calculator figure:before {
        display: none;
    }

    .property-calculator figure .pattern-bg {
        width: 100%;
        left: 0;
    }

    .property-calculator figure .holder {
        transform: translate(0, -45px);
        padding: 0 15%;
    }

    .property-calculator figure .holder img {
        width: 100%;
    }

    .property-calculator .content-box {
        padding-left: 0;
        margin-bottom: 150px;
    }

    .property-plans {
        padding-bottom: 80px;
    }

    .property-plans .nav-pills {
        margin-top: 40px;
    }

    .recent-posts {
        padding: 80px 0;
    }

    .recent-posts .post-box {
        margin: 25px 0;
    }

    .property-customization {
        padding: 80px 0;
    }

    .video-bg video {
        float: right;
    }

    .certificates {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact address p a {
        display: block;
    }

    .contact .contact-form {
        padding-left: 0;
        margin-top: 50px;
    }

    .blog {
        padding: 80px 0;
    }

    .footer-bar .inner {
        padding: 30px;
    }

    .footer-bar .inner .col-lg-4 {
        margin: 20px 0;
    }

    .footer-bar .inner figure {
        width: 70px;
        margin-right: 0;
    }

    .footer-bar .inner figure img {
        height: 50px;
    }

    .footer {
        padding-top: 150px;
    }

    .footer .select-box {
        margin-bottom: 80px;
    }

    .footer .footer-menu {
        padding: 0;
    }

    .footer .contact-box {
        float: left;
        text-align: left;
        margin-top: 80px;
    }

    .footer .contact-box ul {
        float: left;
    }
}
/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
    .side-navigation {
        width: 80vw;
    }
    .topsearch{
        width:90% !important;
    }
    .phone-email {
        display: none !important;
    }
    .main-homes .description {
        margin-top: 90px;
    }
    #menu {
        display: none !important;
    }
    #menu-sticky {
        display: none !important;
    }

    .page-header .container h1 {
        font-size: 10vw;
    }

    .page-header .container .breadcrumb {
        width: calc(100% - 30px);
    }

    .navbar .container .upper-side .phone-email {
        display: none;
    }

    .navbar .container .upper-side .language {
        display: none;
    }

    .navbar .container .upper-side .hamburger {
        margin-left: auto;
    }

    .slider .slider-container .inner-elements .container .social-media {
        display: none;
    }

    .slider .slider-container .swiper-slide .container {
        padding-left: 15px;
        padding-right: 40px;
    }

    .slider .slider-container .swiper-slide .container figure {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .benefits .col {
        width: 50%;
        flex-basis: auto;
        border-right: none;
    }

    .benefits .col:nth-child(odd) {
        margin-top: 0;
    }

    .apartment h2 {
        font-size: 9vw;
    }

    .apartment figure {
        margin: 15px 0;
    }

    .apartment h4 {
        margin-top: 30px;
    }

    .about-content h2 {
        font-size: 10vw;
    }

    .blog .post .post-image {
        margin-bottom: 30px;
    }

    .blog .post .post-content {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .contact .map .holder iframe {
        width: 100%;
        height: 450px;
    }

    .side-navigation .menu ul li a {
        font-size: 5vw;
    }

    .side-navigation .menu ul li ul li a {
        font-size: 4vw;
    }

    .certificates figure {
        margin: 15px 0;
    }

    .footer .col-12 .creation {
        float: left;
        margin-top: 5px;
    }
}

.topsearch {
    position: absolute;
    width: 50%;
    text-align: center;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 9;
    margin: auto;
}
.topsearch .typesearch a.active {
    background: var(--primary-color) !important;
    color: #fff;
}
.topsearch .typesearch a {
    padding: 8px 12px;
    font-weight: 400 !important;
    margin: 0;
    display: inline-block;
    background-color: hsla(0,0%,100%,.7) !important;
    color: var(--primary-color);
    float: left;
    border: none !important;
    border-right-color: currentcolor;
    border-right-style: none;
    border-right-width: medium;
    border-right: 1px solid #fff !important;
}
.topsearch .typesearch a:last-child {
    border-right: none !important;
}
.topsearch .input-group-lg {
    border-radius: 0 5px 0px 0px !important;
    background-color: hsla(0,0%,100%,.7);
    padding: 25px 20px 5px;
    justify-content: center;
}
.topsearch .input-group-lg {
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
.topsearch .form-control{
    height: 54px !important;
}
header{
    z-index: 5 !important;
}
.bgheadproject{
    min-height: 200px;
}
.fixed {
    position: fixed;
    top:0; left:0;
    width: 100%;
    background: #26282B !important;
}
#menu-sticky {
    width: 84%;
    border:none;
}
.sticky-top.fixed .upper-side .logo img{

    height: 45px;
}
.sticky-top.fixed .upper-side{
    padding: 10px 0;
}
#menu-sticky ul li a{
    padding: 15px 0;
}
.stick-list {
    margin-bottom: 0px;
}
.listsuggest{
    width: 45% !important;
}
.login-register{
    background:#26282b;position: sticky;
}
.inner-header{
    background:#26282b;position: sticky;
}
.btn-blue
{
    background: #e8a75b !important;
}
#app .login-form
{
    padding: 0 !important;
}
.card-header-custom
{
    background:#1a1c1e;
    color:#ffffff;
    padding:10px;
    text-transform: uppercase;
}
.card-header-custom h4
{
    margin-bottom: 0;
}

#profile_link .profile-label{
    color:white;
}
#profile_link ul,li{
    list-style-type: none;
    margin-bottom: 0 !important;
}
#profile_link_sticky ul,li{
    list-style-type: none;
    margin-bottom: 0 !important;
}
#profile_link ul li a {
    padding: 5px;
    color:#000000 !important;

}
.dropdown-menu.show {
    padding: 5px !important;
    width: 100% !important;

}
#profile_link .dropdown-toggle::after {
    color:white;
}
#profile_link_sticky ul li a {
    padding: 5px;
    color:#000000 !important;

}

#profile_link_sticky .profile-label{
    color:white !important;
}
#profile_link_sticky .dropdown-toggle::after {
    color:white;
}

.recent-posts .post-box span {
    width: 100%;
    display: block;
    font-size: 13px;
    opacity: 0.5;
    margin-bottom: 10px;
}

.recent-posts .post-box h6 {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.recent-posts h4 span {
    color: #f3a54a;
}


.recent-posts h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 45px;
    text-align: center;
}





/*Home search */
.top-left-radius
{
    border-radius:5px 0px 0px 0px !important;
}
.top-right-radius
{
    border-radius:0px 5px 0px 0px !important;
}
.advanced-search-content
{
    border-radius: 0px 0px 5px 5px !important;
}
#submitBtn
{
    border-radius: 0px 5px 5px 0px !important;
}
.outer-radius
{
    border-radius: 5px 0px 0px 5px !important;
}
.advanced-search-content .form-group .form-control
{
    border-radius: 3px !important;
}
@media only screen and (max-width: 767px)
{
    .advanced-search-content .form-group .form-control
    {
        margin-bottom: 5px !important;
    }
}
/*home search category popup*/
.category-search-list {
    padding: 1rem;
    -webkit-box-shadow: 0 0.3rem 0.6rem 0 rgb(0 0 0 / 25%);
    box-shadow:0 0.3rem 0.6rem 0 rgb(0 0 0 / 25%);
    box-sizing: border-box;
    border-radius: .5rem;
    background-color: #ffffff;
}

._4c9282ef {
    /*width:32.5rem;*/
}

.category-parent-inactive {
/*  //  font-weight: 700;*/
    display: inline-block;
    /* margin-bottom: 1rem !important;*/
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    padding:4px 12px;
    color: #111111;
    border: none;
    margin-right: 5px;
    border-radius:4rem;
}

.category-parent-active,.project-category-parent-active {
    /*font-size: 1.2rem;*/
    font-weight: 700;
    display: inline-block;
    /* margin-bottom: 1rem !important;*/
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    padding:4px 12px;
    color: #ffffff;
    border: none;
    margin-right: 5px;
    border-radius:4rem;
    background-color:var(--primary-color) !important;
}

.category-ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

.category-li {
   /* display: inline-block;*/
    margin-top: 1rem;
    vertical-align: top;
    /* width: calc(50% - 1rem);*/
    /*margin-right: 1rem;*/
}
.category-li-item {
    font-size: 15px;
    line-height: 1.8rem;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height:2rem;
    margin-bottom: .3rem !important;
    padding: 0 8px;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    color: #222;
    border: .1rem solid #dedede;
    border-radius: .4rem;
}
.category-li-item-active
{
    background:var(--primary-color) !important;
    color:#ffffff;
}
.category-li:nth-child(odd) {
    margin-right: .5rem;
}
.ab3dd470 {
    margin-left: auto;
    margin-top: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.category-parent{
    /*display: inline-block;
    margin-top: 1rem;
    vertical-align: top;
     width: calc(50% - 1rem);
    margin-right: 1rem;*/
}
.project-category-search-dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    /*right: 0;*/
    z-index: 5;
    margin-top: .2rem;
    width:60% !important;
}
.property-category-search-dropdown
{
    position: absolute;
    top: 100%;
    left: 0;
    /*right: 0;*/
    z-index: 5;
    margin-top: .2rem;
    width:60% !important;
}
/*price popup*/
.project-price-search-dropdown
{
    position: absolute;
    top: 100%;
    /*left: 0;*/
    right: 200px;
    z-index: 5;
    margin-top: .2rem;
}
.price-search-list {
    padding: 1rem;
    -webkit-box-shadow:0 0.3rem 0.6rem 0 rgb(0 0 0 / 25%);
    box-shadow:0 0.3rem 0.6rem 0 rgb(0 0 0 / 25%);
    box-sizing: border-box;
    border-radius: .5rem;
    background-color: #ffffff;
}
.price-category-ul input{
    padding: 1rem;
    border:1px solid #a2a2a2;
    border-radius: .5rem;

}

.price-dropdown  .dropdown-menu.show {
    padding: 5px !important;
    width: 150% !important;

}
.input[data-dropdown-id=price-min]
{

    border:1px solid #a2a2a2 !important;
}
.price-li-item
{
    font-size:medium;

}
.btn-reset-price
{
    background:var(--primary-color);
    border-radius: 2px !important;
    color:white !important;
    right:0 !important;
    margin-top: 2px !important;
    float: right;
}
.btn-reset-unit
{
    background:var(--primary-color);
    border-radius: 2px !important;
    color:white !important;
    right:0 !important;
    margin-top: 2px !important;
    float: right;
}
.row.second-row {
    margin-top: 15px;
}
.price-from-to, .unit-from-to{
    position: relative;
    top: -28px;
    padding-left: 13px;
}
.price-label{
    height: 36px !important;
}
.form-control.price-label {
    height: 36px !important;
}
.toggleBtn
{
    position:absolute;

    right: 0;
    z-index: 2;
    padding: 10px;
}
/*properties page */
.searchFilers
{
    margin-top: 60px;
    margin-bottom: 5px;
}
.layout-properties{
    display: flex;
}

#map-container{
    flex: 4;
    z-index: 1;
}

.img-size {
    height: auto;
    width: 200px;
}

.bg-list{
    padding: 1px;
    margin-top:15px;
}
.side-listing
{
    height: 580px;
    overflow: auto;
}
.properties_side_list .pagination {
    background: #f2f2f2;
    padding: 10px;
    text-align: center;
    display: block;
}

.layout-col{
    padding-left:0 !important;
    padding-right:0 !important;
}
.layout-single-col{
    padding-left: 0 !important;
}
.left-border{
    border-left: 0 !important;
}
.right-border{
    border-right: 0 !important;
}
.border-box{
    border:1px solid #ddd;
}

.border-remove{
    border: 0 !important;
}

.bg-gray hr {
    margin: 0px;
}
.results {
    padding: 10px 10px;
}

.sort-by {
    margin-left: 0px;
}
#sort_by {
    border: 1px solid #E0E0E0;
    height: 40px;
    width: 100% !important;
}
.thumb.img-fluid.img-size {
    margin-left: 10px;
}
.text-orange.heart.add-to-wishlist {
    float: right;
   /* margin-right: 10px;*/
}
.text-brown.heart.add-to-wishlist {
    float: right;
    margin-right: 10px;
}
.wishlist-wrap{
    display: inline-block;
    width: 100%;
}

.far.fa-heart {
   /* font-size: 17px;*/
}
.bs-example .btn.btn-primary.active.clickBtn {
    background: #804c13 !important;
    border: 0px !important;
}
.bs-example .btn.btn-primary.clickBtn {
    background: #e89029;
    border: 0px !important;
}

.Properties .btn.btn-primary {
    background: #f3a54a;
    height: 50px;
    border: 0px !important;
}


.bs-example .btn-primary {
    height: 35px !important;
    border: 0px !important;
}


.search-data-wrap.layout-col {
    width: 300px;
    background: #FFFFFF !important;
}
.minprice-wrap.layout-col {
    width: 150px;
}
.maxprice-wrap.layout-col {
    width: 150px;
}
.price-dropdown.layout-col
{
    width: 250px;

    flex: inherit !important;
    /* width: 100% !important; */
    margin-left: 5px;
    height: 50px;
    color: #9F8053;
    background: white;
    font-size: 14px;
    font-weight: bold;
    border-radius:5px;
    /* text-indent: 10px;*/
}
.price-dropdown.layout-col form-control
{
    border: none !important;
}
.Properties.search-component {
    display: inline-block;
    width: 100%;
}
.bedroom-wrap.layout-col {
    width: 150px;
    margin-left: 5px;
}
.bathroom-wrap.layout-col {
    width: 200px;
    margin-left: 5px;
}

.select-bathroom-vue{
    width: 140px !important;
}
.active-icon{
    height: 50px;
    padding-top: 15px;
}


.sort-wrap {
    text-align: right;
}
.sort-wrap select {
    width: 200px !important;
}
.results-wrap {
    width: 25%;
    display: inline-block;
}
.sort-wrap {
    text-align: right;
    float: right;
}
/*properties page tabs styling*/

a:hover,a:focus{
    outline: none;
    text-decoration: none;
}
.tab .nav-tabs{ border-bottom: 5px solid #bbbabc; }

.tab .nav-tabs li a:hover, .tab .nav-tabs li.active a{
    color:#F3A54A !important;
}
.tab .nav-tabs li a{
    display: block;
    padding: 10px;
    /* border: 2px solid #593082;*/
    border-radius: 0;
    background: #fff;
    font-size: 20px;
    font-weight: 700;
    color: #bbbabc;
    text-align: center;
    margin: 0 5px 30px 0;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
}
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a{
    /* color: #593082;
     border: 2px solid #593082;*/
}
.tab .nav-tabs li a:before{
    content: "";
    width: 15px;
    height: 15px;
    background: #bbbabc;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}
.tab .nav-tabs li.active a:before {
    background: #F3A54A;
    border: 2px solid #fff;
    box-shadow: 0 0 3px 1px rgb(0 0 0 / 25%);
    transform: scale(2);
}

.tab .tab-content{
    padding: 20px;
    margin-top: 0;
    border-radius: 0 0 5px 5px;
    font-size: 15px;
    color: #7a9181;
    background: #fff;
    line-height: 30px;
}
.tab .tab-content h3 {
      color: #F3A54A;
      font-size: 24px;
      margin-top: 35px;
      margin-bottom: 20px;
      font-weight: normal;
      font-family: "Playfair Display", serif;
}

@media only screen and (max-width: 479px){
    .tab .nav-tabs li{
        width: 100%;
        text-align: center;
    }
    .tab .nav-tabs li a{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .tab .nav-tabs li a:before,
    .tab .nav-tabs li.active a:before{
        width: 0;
        height: 0;
        background: none;
        box-shadow: none;
        border: none;
        bottom: -10px;
        transform: scale(1);
    }
    .tab .nav-tabs li.active a:before{
        border-top: 10px solid #593082;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }
}

.boxshadow{
    box-shadow: 0 3px 16px rgb(0 0 0 / 10%);
}
.background-gray{
    background:#f1f1f1;
}
.light-gray-border{
    border: 1px solid #11222208;
}

.direction-layout{
    display: flex;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

/*map settings by Ahmed*/

.row.search-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
    text-align: center;
}

.location-wrap.layout-col {
    width: 150px;
}




.listing-type-side {
    display: inline-block;
    width: 100%;
    margin-left: 28px;
    margin-right: 3px;
}

.ml-1, .mx-1 {
    margin-left: 0.4rem!important;
}

.listing-type-side h6, .listing-type-side p {
    font-size: 14px;
    font-weight: bold;
}



.results h4 {
    font-weight: bold;
    font-size: 20px;
}



@media only screen and (max-width: 600px) {
    .layout-properties {  display: block;
    }

    .ml-3.bold {

        margin-left: 6px !important;
        padding-left: 0px;
        font-weight: bold;
        font-size: 14px;
    }

    .input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control, .input-group>.form-control-plaintext {

        position: relative;
        flex: 1 1 auto;
        width: 1%;
        margin-bottom: 10px;


    }

    .active-icon {
        margin-top: 0px;
        margin: 0px auto;
    }
}
.showGrid{
    display: grid !important;
    margin-right:50px !important;

}
/*property page */

/*property detail page */
.titlehouse{
    color: #222 !important;
    font-size: 25px !important;
    font-weight: 700 !important;
}


property-price {
    color: #F3A54A;
    font-size: 34px;
    font-weight: bold;
    font-family: "Playfair Display", serif;

}


.text-orange{
    color:var(--primary-color);
}
.text-brown {
    color: #F3A54A!important;
}


i.fas.fa-map-marker-alt{
    color: #F3A54A;
}


button.btn.btn-lg.btn-orange.btn-block{
    font-size: 18px;
    font-weight: bold;
}


.tab .nav-tabs li a:hover,.tab .nav-tabs li.active a{
    color: #e8a75b;
}


.tab .tab-content{
    padding: 20px;
    margin-top: 0;
    border-radius: 0 0 5px 5px;
    font-size: 15px;
    color: #4f4f4f;
    background: #fff;
    line-height: 30px;
}


.primary-head {
    color: #f3a54a !important;
    font-weight: normal !important;
    margin-bottom: 30px !important;
    font-family: "Playfair Display", serif;
}


.boxright h5{
    font-weight: bold;
    margin-top: 10px;
    color: #f3a54a;
    font-size: 20px;
    margin-bottom: 25px;
}


.boxright .head{
    font-weight: 700;
    color: #e8a75b;
    font-size: 21px;
}


.form-control {
    font-size: 14px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: all .4s ease;
}



span.fas.fa-arrow-circle-right{
    color: #F3A54A;
}

.boxright{
    box-shadow: 1px 3px 7pxrgb(0 0 0 / 10%);
    border-radius: 0px;
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 15px;
    border: 1pxsolid#f1f1f1;
}


.background-gray{
    background: #f1f1f1;
}

.item-price-wrap li:not(.h-type):before {
    border-bottom: 30px solid rgb(27 28 30) !important;
    border-left: 25px solid transparent !important;
    right: 100% !important;
}

.item-price-wrap li.item-price {
    font-size: 14px !important;
    font-weight: 600 !important;
    float: left !important;
    background-color: rgb(27 28 30) !important;
    color: #fff !important;
    position: relative !important;
    padding: 2px 15px !important;
    text-align: center !important;

}



.boxright .itemagent .info p{
    margin: 0;
    padding: 2px 0;
}


.boxright .itemagent img{
    margin-bottom: 0px;
    padding: 0;
    border-radius: 0px;
}
/*property page*/
.ml-3.bold {
    margin-left: 8px !important;
    padding-left: 0px;
    font-weight: bold;
    font-size: 14px;
}


.search-background{
    background: #e6e6e6;
}

.bg-gray{
    background: #f2f2f2;
    padding: 5px;
    margin-bottom: 0;
    margin-top: 0;
}


.properties_side_list{
    flex: 1;
    background-color: #f2f2f2;
}


element.style{
    max-height: 461px;
    padding: 30px;
}


.active-icon{
    color: #e8a75b;
    background: white;
    border: 1pxsolid!important;
}




.ml-3,.mx-3{
    margin-left: 0rem!important;
    font-size: 23px;
    font-weight: bold;
}


.status-label.label-success{
    background-color: #F3A54A !important;
}


.Properties input {
    flex: inherit !important;
    width: 100% !important;
    margin-left: 5px;
    height: 50px;
  /*  color: #9F8053;*/
    background: white;
    font-size: 14px;
    font-weight: bold;
    text-indent: 10px;
    border-radius: 5px;
}

.Properties select {
    flex: inherit !important;
    width: 100% !important;
    /*margin-left: 6px;*/
    height: 50px;
    background: white;
    font-size: 15px;
    border-radius: 5px;
}

.hourseitem p.threemt span{
    font-size: 5.5px !important;
    float: left !important;
    margin-right: 10% !important;
}


.hourseitem .city{
    color: #4f4f4f !important;
    max-height: 30px !important;
    overflow: hidden;
    text-overflow: ellipsis !important;
}


.hourseitem h3 a{
    line-height: 5px !important;
}

input#location {
    font-weight: normal;
    font-size: 16px;
}


.active-icon {
    color: #495057;
    background: #f2a54b;
    height: 50px;
    width: 46px;
    padding-top: 15px;
    margin-left: -1%;
    border-radius: 5px;
    cursor:pointer;
}
hr {
    margin-top: 0rem;
    margin-bottom: 0rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}
.pl-0, .px-0 {
    padding-left: 0!important;
    background-color: white;
    padding: 10px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    width: 100%;
    text-align: left;
}
.sales-team figure figcaption {
    display: inline-block;
    margin-left: 6%;
}

.sales-team figure img {
    width: 20%;
    display: inline-block;
}

.phone {margin-top: 9px;}
.phone i {font-size: 12px; margin-right:5px; }
.sales-team h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
    text-align: center;;

}
.sales-team h4 span {
    color: #e8a75b;
}
.content-box .link {
    display: inline-block;
    color: #26282b;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-bottom: 10px;
}
.content-box .link i {
    margin-left: 10px;
}
.content-box .link:hover {
    text-decoration: none;
}
.content-box .link:hover:before {
    width: 100%;
}
.content-box .link:before {
    content: "";
    width: 60px;
    height: 2px;
    background: #26282b;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.readmore{
    color: #f3a54a;
}
.leaflet-popup-content-wrapper{
    width:380px !important;

}
.leaflet-popup-content{
    width:350px !important;
  /* // height: 220px !important;*/
    /*margin-bottom: 0 !important;*/
}
body { padding-right: 0 !important }
/*.modal-backdrop
{
    opacity:0 !important;
}*/
.leaflet-container a {
    color: black !important;
    font-size: 17px !important;
}

.img-thumbnail-info img {
    width: 80% !important;
    /*float: left;*/
}
.title-info{
    /*float: right;
    padding-right: 10px;*/
    margin-left: 10px;
    max-width: 240px;
}
.location-info{
  /*  float: right;
    padding-right: 10px;*/
    margin-left: 10px;
    max-width: 240px;
}
.price-info{
    margin-left: 10px;
    max-width: 240px;
    /*padding-right: 15px;
    width: 100%;
    text-align: center;*/
}
.room-info{
 /*  float: right;
    padding-right: 10px;*/
    width: 100%;

}
.right-side{
   /* float: right;
    padding-right: 10px;*/
    /*padding: 0px 0px 0px 14px;*/
   /* width: 100%;*/

}
.btn-info-modal{
    background: #f3a54a !important;
    color:white;
}
.btn-info {
    color: #fff !important;
    background-color: #f3a54a !important;
    border-color: #f3a54a !important;
}
.btn-reset-modal{
    background:#e8a75b;
    color:white;
}
.btn-login a{
    color:white !important;
    font-weight: 600;
}
.btn-login a:hover{

    color:#e8a75b !important;
}
.input-container {
    position: relative;
}

.input-container .list_suggest {

    left: 0;
    right: 0;
    top: calc(100% - 1px);

    color: #fff !important;
    position: absolute;
    background:#fff !important;
    width: 100%;
    z-index: 2;
    max-height: 400px;
    overflow-y: scroll;
}
.input-container .list_suggest ul li {
    padding: 5px !important;
    border-bottom: 1px solid #ccc;
}
.input-container .list_suggest ul li p{
    margin: 0 !important;
    padding:0 !important;
    text-align: left !important;
    color:#111111 !important;
}
.bed-icon{
    color:#f3a54a;
    padding-right: 20px;
    font-size: 20px;
}
.bath-icon{
    color:#f3a54a;
    font-size: 20px;
    padding-right:20px;
}
.square-icon{
    color:#f3a54a;
    padding-right:5px;
    font-size: 20px;
}
.square-no {
    color: #f3a54a;
    font-size: 15px;
}

.bed-no {
    color: #f3a54a;
    font-size: 15px;
}

.bath-no {
    color: #f3a54a;
    font-size: 15px;
}
.p-select-list{
    width: 25% !important;
}
.mg-left{
    margin-left: 10px;
}
.hourseitem h3{
    height: 53px !important;
}
.title-info p {
    font-size: 14px !important;
    font-weight: bold !important;
    margin:0 !important;
}
.price-info p{
    font-size: 14px !important;
    font-weight: bold !important;
    margin:0 !important;
}
.location-info p{
    font-size: 14px !important;
    font-weight: bold !important;
    margin:0 !important;
    color:#a1a1a1;
}
/*Wanted*/
select.selectWanted {

    width: 96%;
    height: 35px;
    border: 1px solid #eee;
    padding: 0 20px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #d1d5da;
    box-shadow: inset 0 1px 2px rgb(27 31 35 / 8%);
}
input.selectWanted{
    width: 96% !important;
    height: 35px;
    border: 1px solid #eee;
    padding: 0 20px;
    border-radius: 4px;
    border: 1px solid #d1d5da;
    box-shadow: inset 0 1px 2px rgb(27 31 35 / 8%);
    font-size: 14px;
}
select.select_Wanted1{
    width: 96% !important;
    height: 35px;
    border: 1px solid #eee;
    padding: 0 20px;
    border-radius: 4px;
    border: 1px solid #d1d5da;
    box-shadow: inset 0 1px 2px rgb(27 31 35 / 8%);
    font-size: 14px;
}
.contact .contact-form {
    width: 100%;
    display: block;
    margin-top: 48px;
    /* padding-left: 10%; */
}


.bg2{
    background-color: #f6f6f6;
    min-height: 1452px;
    /*padding-left: 30px;*/

}


.contact .map {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 0px;
    background: #ebcfa7;
    position: relative;
}

.contact .contact-form #contact .form-group input[type=text]{
        background: white;
    position: relative;
    z-index: 2;
}


.contact .contact-form #contact .form-group textarea {
    background: white;
    position: relative;
    z-index: 2;
}
/* CONTACT */
.contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding:50px 0;
}
.contact b {
    display: block;
    color: black !important;
    font-weight: 800;
    opacity: 0.2;
}
.contact h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.contact h4 span {
    color: #e8a75b;
}
.contact small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0.5;
}
.contact small:after {
    content: "";
    width: 50px;
    height: 1px;
    background: #26282b;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 4px;
    opacity: 0.5;
}
.contact address {
    display: block;
    margin-bottom: 50px;
}
.contact address strong {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.contact address p {
    display: block;
    margin: 0;
}
.contact .map {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 0px;
    background: #ebcfa7;
    position: relative;
}
.contact .map:before {
    content: "";
    width: 50vw;
    height: 100%;
    background: #ebcfa7;
    position: absolute;
    left: -50vw;
    top: 0;
}
.contact .map .pattern-bg {
    width: 120%;
    height: 100%;
    position: absolute;
    left: 5%;
    top: -5%;
    background: url(../images/side-pattern-bg.png);
    background-size: contain;
}
.contact .map .holder {
    position: relative;
    width: 100%;
    float: left;
    display: block !important;
    transform: translate(85px, -35px);
}
.contact .map .holder iframe {
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
    width: 525px;
    height: 657px;
    border: none;
}
.contact .contact-form {
    width: 100%;
    display: block;
    margin-top: 48px;
    /* padding-left: 10%; */
}
.contact .contact-form h5 {
    margin-bottom: 40px;
}
.contact .contact-form #contact {
    display: block;
}
.contact .contact-form #contact .form-group {
    display: block;
    position: relative;
    margin-bottom: 35px;
}
.contact .contact-form #contact .form-group span {
    width: 100%;
    line-height: 54px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 20px;
    z-index: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.contact .contact-form #contact .form-group span.label-up {
    font-size: 13px;
    line-height: 16px;
    top: -20px;
    font-weight: 600;
}
.contact .contact-form #contact .form-group input[type=text] {
    background: white;
    position: relative;
    z-index: 2;
}
.contact .contact-form #contact .form-group input[type=email] {
    width: 100%;
    height: 54px;
    border: 1px solid #eee;
    padding: 0 20px;
}
.contact .contact-form #contact .form-group input[type=number] {
    width: 100%;
    height: 54px;
    border: 1px solid #eee;
    padding: 0 20px;
}
.contact .contact-form #contact .form-group input:focus + span {
    font-size: 13px;
    line-height: 16px;
    top: -20px;
    font-weight: 600;
}
.contact .contact-form #contact .form-group textarea {
    background: white;
    position: relative;
    z-index: 2;
}
.contact .contact-form #contact .form-group textarea:focus + span {
    font-size: 13px;
    line-height: 16px;
    top: -20px;
    font-weight: 600;
}
.contact .contact-form #contact .form-group label.error {
    color: red;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 13px;
}
#message-error {
    color: red;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 13px;
}
.contact .contact-form #success, .contact .contact-form #error {
    display: none;
    float: left;
}
.contact .contact-form #error {
    background: red;
    color: #fff;
}
.contact .contact-form #success {
    background: green;
    color: #fff;
}
.contact .contact-form .alert {
    border: none;
    border-radius: 0;
    padding: 20px 30px;
}

.bg2 {
    background-color: #f6f6f6;
    min-height: 1452px;
}
.wanted{
    color: #f3a54a !important;
}
/*Choices Multi-Select*/
.choices__list--dropdown{
    z-index: 3 !important;
}
.red{
    color:red !important;
}

#term_condition_body{
    overflow-y: scroll;
    height: 500px;

}
.btn-outline-warning{
    color: #f3a54a !important;
    border-color:#f3a54a !important;
}

.btn-outline-warning:hover{
    background: #f3a54a !important;
    color:#FFFFFF !important;
}
.tokenfield .token-input {
    width: 100% !important;
}
#search_data-tokenfield{
    background:#FFFFFF !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;


}
.heading-center{
    text-align: center;
}
.comment-head{
    padding: 10px 0;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #e0e0e0;
    font-size: 18px;
    margin-bottom: 15px
}
.comment-box{
    overflow-y: scroll;
    max-height: 400px;
}
.display-comment .display-comment {
    margin-left: 40px
}
/* ratin css*/
/*.rating-section {*/

.cross {
    padding: 10px;
    color: #000 !important;
    cursor: pointer;
    font-size: 23px
}

.cross i {
    margin-top: -5px;
    cursor: pointer
}

.comment-box {
    padding: 5px
}

.comment-area textarea {
    resize: none;
    border: 1px solid #f3a54a !important
}


.send {
    color: #fff;
    background-color: #f3a54a !important;
    border-color: #f3a54a !important
}

.send:hover {
    color: #fff;
    background-color: #f3a54a !important;
    border-color: #f3a54a !important
}

.rating {
    display: inline-flex;
    margin-top: -10px;
    flex-direction: row-reverse
}

.rating > input {
    display: none
}

.rating > label {
    position: relative;
    width: 28px;
    font-size: 35px;
    color: #f3a54a !important;
    cursor: pointer
}

.rating > label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating > label:hover:before,
.rating > label:hover ~ label:before {
    opacity: 1 !important
}

.rating > input:checked ~ label:before {
    opacity: 1
}

.rating:hover > input:checked ~ label:before {
    opacity: 0.4
}
.property-head h4 {
    display: block;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}
.property-head h4 span {
    color: #e8a75b;
}
.recent-posts .post-box .link {
    display: inline-block;
    color: #26282b;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-bottom: 10px;
}
.recent-posts .post-box .link i {
    margin-left: 10px;
}
.recent-posts .post-box .link:hover {
    text-decoration: none;
    color: #e8a75b;
}
.recent-posts .post-box .link:hover:before {
    width: 100%;
}
.recent-posts .post-box .link:before {
    content: "";
    width: 60px;
    height: 2px;
    background: #26282b;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.mx-left{
    margin-left: 6px;
}
.img-agents
{
    background: url(../images/search-bg.jpg) center no-repeat;

    width: 100%;
    padding-top: 300px;
}
#agent_form
{
    border: 1px solid #514b4b11;
    border-radius: 2px;
    padding: 30px;
    margin-top: -50px;
    padding-top: -20px;
    background: #fff;

}
.tokenfield.input-lg, .input-group-lg .tokenfield {
    min-height: 54px !important;
    padding-bottom: 4px !important;
    background:#FFFFFF !important;
}
#agent_search_desc{
    font-size: 0.85em;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #848485;
    /* padding-left: 200px; */
    /* padding-right: 200px; */
    text-align: center;
}
.rc-anchor-normal {

    width: 250px !important;
}

.g-recaptcha {
    transform: scale(0.83);
    transform-origin: 0 0;
}
@media (min-width: 768px) {
    .offset-md-2 {
        margin-left: 4.666667%;
    }

}
/*@media (min-width: 720px) {
    select.selectWanted {
        width: 100%;
        height: 54px;
        border: 1px solid #eee;
        padding: 0 20px;
    }
    input.selectWanted {
        width: 100%;
        height: 54px;
        border: 1px solid #eee;
        padding: 0 20px;
    }

    .contact .contact-form #contact .form-group {
        position: relative;
        margin-bottom: 35px;
        width: 100% !important;
        float: left;
    }

}*/


.infowindow-wrap{
    overflow: hidden !important;
}
.status-label.label-danger {
    background-color: #968d8e !important;
}
/*}*/
/*neighbourhood style css*/
.vertical {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 300px;
    background-color: #ffffff;
    border: 1px solid #cccccc;

}

.vertical  li a {
    display: block;
    color: #000;
    padding: 0px 16px;
    text-decoration: none;
}

.vertical  li {
    text-align: left;

}

.vertical  li:last-child {
    border-bottom: none !important;
}



.vertical  li:hover {
    background-color: #555;
    color:#FFFFFF !important;
}
.vertical  li.active {
    background-color: #e8a75b !important;
    color: white !important;
}
.border-li {  border-bottom: 1px solid #cccccc !important;   padding: 7px;}

i.far.fa-hospital {
    margin-right: 12px;
}
i.far.fa-school {
    margin-right: 12px;
}
i.fas.fa-parking {
    margin-right: 12px;
}
i.far.fa-utensils-alt
{
    margin-right: 12px;
}
.loader-spin{
    position: absolute;
    z-index: 5;
    /* padding: 50px; */
    color: #e8a75b;
    /* padding-top: 20px; */
    font-size: 60px;
    margin-top: 200px;

}
.invalid-error{

    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}
.infowindow-wrap .img-fluid {
    margin-left: 0px !important;
    padding-top: 0px !important;
}

.infowindow-wrap .img-fluid img {
    width: 260px !important;
}
.termsandconditions li {
    white-space: unset !important;
}
a[href^="http://maps.google.com/maps"]{display:none !important}
a[href^="https://maps.google.com/maps"]{display:none !important}

.gmnoprint a, .gmnoprint span, .gm-style-cc {
    display:none;
}

.infowindow-neighbour-wrap .thumb img {
    object-fit: cover;
    height: 175px;
}
ol.termsandconditions li {
    margin-left: 18pt !important;
}
.modal-dialog {
    max-width: 700px !important;

}
.input-spacer {
    margin-bottom: 15px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margins are still there even though it's hidden */
}
.mortage-calculator{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
}
.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}
/*Wanted Property*/
.contact .contact-form #contact .form-group {
    position: relative;
    margin-bottom: 35px;
    width: 50%;
    float: left;
}

.contact .contact-form #contact .form-group input[type=text] {
    background: white;
    position: relative;
    z-index: 2;
    width: 96%;
    /* float: left; */
}


select#cars {
    width: 96%;
    height: 54px;
    border: 1px solid #eee;
    padding: 0 20px;

}


.textarea1 {
    width: 100%;
    height: 160px;
    padding-right: 25px;

}

button#submit {
    float: right;
    margin-top: 20px;
}


.bg_box {
    background-color: #f6f6f6;
    min-height: 800px;
    padding-left: 30px;
    padding-right: 0px;
}


.wanted { margin-bottom: 60px; }
.sub-category{
    margin-left: 20px !important;
}
.btn-default
{
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default.active
{
    color:#fff;
    background:#e8a75b;
}
.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle {
    color: #fff !important;
    background-color: #e8a75b !important;
    border-color: #e8a75b !important;
}
.btn-success:hover {
    color: #111111;
    background-color:transparent;
    border-color: #e8a75b;
}
.btn-default:hover {
    color: #111111;

    border-color: #e8a75b;
}
.year-radio{
    display: contents;
}
.btn-year
{
    width: 100%;
}
.p-square-icon
{
    color:#f3a54a;
    padding-right:35px;
    font-size: 20px;
}
ul.bold {
    margin-left: 8px !important;
    padding-left: 0px;
    font-weight: bold;
    font-size: 14px;
}
.fas fa-info-circle{
    color:#f3a54a;
    background:#f3a54a ;
}

.infoTitle{
    position: absolute;
    background: white;
    padding: 5px;
    width: 100%;
    border-radius: 5px;
    margin-top: 25px !important;
    border: 1px solid #111111;
    z-index: 2;
}
.infoTitle ul li{
    color:#111111;
    padding: 2px;

}
.infoTitle ul{
    padding: 0 !important;
}
.label-success{
    background: #f3a54a !important;
}
.label-warning{
    background: #bd2130 !important;
}
.fab .fa-facebook-f
{
    color: #3B5998 !important;

    font-size: 13px;
    line-height: 19.5px;
}
.fab .fa-linkedin-in
{
    color: #007bb5 !important;
;
    font-size: 13px;
    line-height: 19.5px;
}
.fab .fa-twitter
{
    color: #55ACEE !important;

    font-size: 13px;
    line-height: 19.5px;
}
.fab .fa-whatsapp {
    color: #25D366 !important;

    font-size: 13px;
    line-height: 19.5px;
}
.social_icons{
    width: 30px;

}
.socials_links li{
    display: inline-block !important;
}
.porperties_list{
    display: none;
}
#menu
{
    z-index: 2;
    position:relative;
}
.upper-side{
    z-index: 3;
    position: relative;
}
.bg-list .align-items-center div:nth-child(2) {
    padding-left: 0px;
}


.bg-list .align-items-center div:nth-child(1) {
    padding-right: 0px;
}
.generic-form .col-md-2.control-label {
    text-align: center;
}
.parent-category li{
    padding-top:5px !important;
    padding-bottom:5px !important;
    width: fit-content;
    font-weight: normal;
}


.tokenfield.form-control {
    border: none;
}
.custom_form{
    padding-left:0px !important;
}
/* form-control.is-invalid, .was-validated .form-control:invalid */
.selectWanted.error
{

    border-color: #dc3545 !important;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url(../images/error-icon.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right calc(.375em + .1875rem) center !important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem) !important;
}


.valid {
    border:none;
}
.price-dropdown .dropdown-menu.show{
    padding:0 !important
}
.inner-header .stick-list {
    margin-bottom: 15px !important;
    margin-top: 15px !important;
}
.chosen-choices{
    height: 100% !important;
    background: white !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
}
.keyword-input{
    width: calc(50% - 98px) !important;
    display: inline-block;
    position: relative;
    background: #ffff;
}
.chosen-container-multi .chosen-choices li.search-field input[type=text]
{
    font-weight: 100 !important;
    height: 30px !important;
    border: none !important;
}
.chosen-container .chosen-results {
    max-height: 150px !important;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{
    background: url(../images/chosen-sprite.png) -42px 1px no-repeat !important;
}
.filter-btn{
    padding-left: 20px;
}
/*.modal-backdrop {
    z-index: 1040 !important;
}
.modal-content {
    margin: 2px auto;
    z-index: 1100 !important;
}*/
.modal-backdrop {
    z-index: -1;
}

.price-range{
    width: 250px;height:150px; overflow-y: auto;overflow-x:hidden
}
.price-from-to-vue{
    position: absolute;
    top: 30px;
    right: 20px;
    margin: auto;
    left: 0px;
    text-align: right;
    padding-left: 13px;
}
.price-from-to-vue.modalclass{
    position: relative;
       top:unset !important;
       right: unset !important;
     margin: auto;
    width: 100%;
    left: 0px;
    text-align: right;
    padding-left: 13px;
}
.price-from-to-vue .min_price_text {
    color: black;
    float: left;
    font-weight: 400;
}
.price-from-to-vue .max_price_text {
     color: black;

    font-weight: 400
 }
.price_to_text
{
    color: black;

    font-weight: 400;
    text-align:center;
}
.search-background .chosen-choices{
    display: flex;
}
.mg-left-15{

    border-radius: 5px !important;
    border: 1px solid #e1e1e1;
}
.chosen-container-multi .chosen-choices li.search-field input[type=text]{
    margin: 10px 0 !important;
}
.mg-top-31{
    margin-top: 31px;
}

.chosen-container-multi .chosen-choices li
{
    height: 20px !important;
    /* margin-right: 5px; */
    margin-left: 5px !important;
}
.chosen-container{

    height: 53px;
    box-shadow: none;
}
.chosen-choices:focus {
    box-shadow: none;
}
.chosen-drop{
    border:none !important;
}
.search-choice{
    padding-right: 15px !important;
}
.chosen-container-multi .chosen-choices {
    box-shadow: none !important;
    border-radius: 5px !important;
}
.Properties .search-data-wrap.layout-col {
    width: 50%;
    height: 49px;
    border-radius: 5px;
}

#search_data_chosen_chosen {
    width: 100% !important;
}
.Properties #search_data_chosen_chosen {
    width: 100% !important;
    height: 49px !important;
    border-radius: 5px !important;
}
