/*
This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.


// Table of contents //

	01.	GOOGLE FONTS
	02.	BODY
	03.	CUSTOM CLASSES
	04. FORM ELEMENTS
	05.	SECTIONS
	06.	HTML TAGS
	07.	LINKS
	08.	MODAL
	09.	PAGINATION
	10. PRELOADER
	11.	TRANSITION OVERLAY
	12.	SANDWICH BUTTON
	13.	SCROLL DOWN
	14.	NAVIGATION MENU
	15.	HEADER
	16.	SOCIAL MEDIA
	17.	NAVBAR
	18.	SLIDER
	19.	PAGE HEADER
	20.	VIDEO BG
	21.	WORKS
	22.	FEATURES CONTENT
	23.	LISTING CONTENT
	24.	FULL MEDIA CONTENT
	25.	INTRODUCTION
	26. OUR TEAM
	27.	NEWS
	28.	SAY HELLO
	29.	LOGOS
	30.	FOOTER
	31.	RESPONSIVE TABLET FIXES
	32. REPSONSIVE MOBILE FIXES



*/
:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-black-light: #333333;
    --color-gray: #d3d3d3;
    --color-gray-2: #8e8e8e;
    --color-brown: #000000;
    --color-dark: #26282b;
    --color-light: var(--color-white);
    --primary-font: "Poppins";
    --secondary-font: "Playfair Display";
    --primary-color: var(--color-black);
    --card-yellow: #f8f3e3;
    --card-peach: #f5e6d3;
    --card-blue: var(--color-black);
    --marriott-red: var(--primary-color);
    --marriott-dark: var(--primary-color);
    --marriott-light-gray: #f5f5f5;
    --marriott-medium-gray: #666;
    --marriott-border: #e0e0e0;
}

/* BODY */
* {
    outline: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.no-spacing {
    margin: 0 !important;
    padding: 0 !important;
}

/* 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: var(--color-dark);
}

a:hover {
    text-decoration: underline;
    color: var(--color-brown);
}

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

/* SECTIONS */
main {
    display: block;
}

.video-section {
    width: 100%;
    display: block;
    position: relative;
}

.conts {
    padding: 200px 0px !important;
}

.content-section {
    width: 100%;
    display: block;
    padding: 100px 0;
    position: relative;
}

/* FORM ELEMENTS */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"] {
    width: 100%;
    height: 54px;
    border: 1px solid #eee;
    padding: 0 20px;
}

textarea {
    width: 100%;
    height: 160px;
    border: 1px solid #eee;
    padding: 15px 20px;
}

button[type="submit"],
input[type="submit"] {
    height: 54px;
    border: none;
    background: var(--color-brown);
    color: #fff;
    padding: 0 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ODOMETER */
.odometer {
    line-height: 1;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-car {
    padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit {
    padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
    left: 0;
}

/* 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: var(--color-dark);
    font-weight: 600;
}
.accordion .card .card-header a:before {
    content: "+";
    float: left;
    text-align: center;
    margin-right: 8px;
    color: var(--color-dark);
    font-weight: 600;
}
.accordion .card .card-header a:hover {
    color: var(--color-brown);
    text-decoration: none;
}
.accordion .card .card-body {
    width: 100%;
    border-top: 1px solid #eee;
    line-height: 26px;
}
.accordion .card [aria-expanded="true"] {
    color: var(--color-brown) !important;
}
.accordion .card [aria-expanded="true"]:before {
    content: "-" !important;
    color: var(--color-brown) !important;
}

/* PAGINATION */
.pagination {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-top: 50px;
}
.pagination .page-numbers {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.pagination li {
    display: inline-block;
    margin-left: -1px;
}
.pagination li .page-numbers {
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    border-radius: 0 !important;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    outline: none !important;
    border: 1px solid #dee2e6;
}
.pagination li .page-numbers.current {
    background: #e9ecef;
}
.pagination li .page-numbers:hover {
    background: #e9ecef;
    text-decoration: none;
}

/* GALLERY SLIDER*/
.gallery-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 30px 0;
    background: var(--color-dark);
}
.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: var(--color-light);
    opacity: 1;
}

/* VIDEO BG */
.video-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    background: #26282b;
    background: -moz-linear-gradient(
        161deg,
        #26282b 0%,
        #26282b 49%,
        #9f8054 100%
    );
    background: -webkit-linear-gradient(
        161deg,
        #26282b 0%,
        #26282b 49%,
        #9f8054 100%
    );
    background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",GradientType=1);
}
.video-bg video {
    min-width: 100%;
    min-height: 100%;
    float: left;
    /* opacity: 0.15; */
}

/* 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: var(--color-dark);
    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 var(--color-dark);
}

/* BREADCRUMB */
.breadcrumb {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: none;
}
.breadcrumb li {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    color: var(--color-light);
}
.breadcrumb li:first-child:before {
    display: none;
}
.breadcrumb li.active {
    color: var(--color-light);
}
.breadcrumb li 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: var(--color-light);
    -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 .layer {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background: #333;
    transition-delay: 0.3s;
    -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 .inner {
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 2;
    -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 .inner figure {
    display: block;
    margin-bottom: 10px;
    transition-delay: 0.1s;
    -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 .inner figure img {
    height: 60px;
}
.preloader .inner p {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    display: block;
}
.preloader .inner .text-rotater {
    width: 100px;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}
.preloader .inner .text-rotater span {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.preloader .inner .text-rotater span:first-child {
    display: block;
}

/* TRANSITION OVERLAY */
.transition-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 12;
    background: var(--color-light);
    -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 .text-rotater {
    transform: translateY(20px);
    opacity: 0;
}

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

.page-loaded .navbar .container .upper-side {
    transform: none !important;
    will-change: auto !important;
}

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

.page-loaded .slider .slider-container {
    transform: scale(1);
    opacity: 1;
}

/* SIDE NAVIGATION */
.side-navigation {
    width: 400px;
    max-width: 100%;
    height: 100vh;
    min-height: 400px;
    position: fixed;
    left: -100%;
    top: 0;
    background: var(--color-dark);
    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: var(--color-light);
    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;
    display: inline-block;
}
.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: var(--color-dark);
    background: var(--color-light);
}
.side-navigation.active {
    left: 0;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}
.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-right: auto;
}
.navbar .container .upper-side .logo img {
    height: 48px;
}
.navbar .container .upper-side .phone-email-icon {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 0;
}
.navbar .container .upper-side .phone-email-icon img {
    display: inline-block;
    height: 34px;
}
.navbar .container .upper-side .phone-email {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0;
    margin-left: auto;
    margin-top: 5px;
    text-align: right;
    color: #fff;
}
.navbar .container .upper-side .phone-email h4 {
    width: 100%;
    display: block;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
}
.navbar .container .upper-side .phone-email h4 a {
    color: #fff;
    float: right;
}
.navbar .container .upper-side .phone-email h4 a:hover {
    text-decoration: none;
}
.navbar .container .upper-side .phone-email small {
    width: 100%;
    display: block;
    line-height: 1;
}
.navbar .container .upper-side .phone-email small a {
    opacity: 0.5;
    color: #fff;
    float: right;
}
.navbar .container .upper-side .phone-email small a:hover {
    text-decoration: none;
    color: var(--color-light);
    opacity: 1;
}
.navbar .container .upper-side .language {
    margin-left: 30px;
    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: var(--color-light);
    text-decoration: none;
}
.navbar .container .upper-side .hamburger {
    width: 30px;
    height: 21px;
    margin-left: 30px;
}
.navbar .container .menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.navbar .container .menu div {
    margin-left: auto;
}
.navbar .container .menu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-left: auto;
    margin-bottom: 0;
    margin-top: -1px;
}
.navbar .container .menu ul li {
    margin: 0;
    margin-left: 40px;
    padding: 0;
    list-style: none;
    position: relative;
}
.navbar .container .menu ul li ul {
    min-width: 220px;
    position: absolute;
    left: -35px;
    top: 120%;
    background: var(--color-dark);
    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;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.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 var(--color-dark) 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:last-child {
    margin: 0;
}
.navbar .container .menu ul li ul li a {
    padding: 8px 0;
}
.navbar .container .menu ul li ul li a:focus {
    border-color: transparent;
    background: none;
}
.navbar .container .menu ul li ul li a:hover {
    border-color: transparent;
    background: none;
}
.navbar .container .menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
}
.navbar .container .menu ul li ul i {
    display: none !important;
}
.navbar .container .menu ul li ul li ul:before {
    display: none;
}
.navbar .container .menu ul li:hover ul li ul {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.navbar .container .menu ul li ul li ul {
    left: 100%;
    top: -26px;
}
.navbar .container .menu ul li:hover ul li:hover ul {
    visibility: visible;
    opacity: 1;
}
.navbar .container .menu ul li:hover ul li:hover ul li ul {
    visibility: hidden;
    opacity: 0;
}
.navbar .container .menu ul li:hover ul li:hover ul li:hover ul {
    visibility: visible;
    opacity: 1;
}
.navbar .container .menu ul li a {
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 25px 0;
    border-top: 1px solid transparent;
}
.navbar .container .menu ul li a:hover {
    text-decoration: none;
    color: var(--color-light);
    border-top: 1px solid var(--color-light);
}
.navbar .container .menu ul li a:focus {
    text-decoration: none;
    background: none;
    color: inherit;
}

/* VIDEO HEADER */
.video-header {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: var(--color-dark);
    overflow: hidden;
}
.video-header .container {
    position: relative;
    z-index: 1;
    padding-left: 100px;
}
.video-header .container h1 {
    font-size: 5vw;
    color: #fff;
    font-family: var(--secondary-font);
    color: var(--color-light);
    margin-bottom: 20px;
}
.video-header .container h1 span {
    display: inline-block;
    position: relative;
}
.video-header .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;
}
.video-header .container h2 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
}
.video-header .container .link {
    height: 60px;
    line-height: 56px;
    float: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    border: 2px solid var(--color-light);
    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;
}
.video-header .container .link i {
    margin-left: 10px;
}
.video-header .container .link:hover {
    text-decoration: none;
    background: var(--color-brown);
    border-color: var(--color-brown);
}
.video-header .social-media {
    width: 20px;
    position: absolute;
    left: 15px;
    top: calc(50% + 60px);
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
}
.video-header .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;
}
.video-header .social-media ul {
    margin: 0;
    padding: 0;
}
.video-header .social-media ul:before {
    content: "";
    width: 1px;
    height: 42px;
    background: #fff;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 10px;
}
.video-header .social-media ul li {
    margin: 0;
    padding: 3px 0;
    list-style: none;
}
.video-header .social-media ul li a {
    color: #fff;
    font-size: 12px;
}
.video-header .social-media ul li a:hover {
    color: var(--color-light);
}

/* SLIDER */
.header-spacing {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.header-spacing .vc_column_container > .vc_column-inner {
    padding: 0 !important;
}

.slider {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    background: var(--color-dark);
    overflow: hidden;
}
.slider .slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    -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);
    /*transform: scale(1.3); transition-delay: 1.25s; opacity: 0; */
}
.slider .slider-container .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    background-size: cover;
}
.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%,
        #9f8054 100%
    );
    background: -webkit-linear-gradient(
        161deg,
        #26282b 0%,
        #26282b 49%,
        #9f8054 100%
    );
    background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",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: var(--secondary-font);
    color: var(--color-light);
    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 var(--color-light);
    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: var(--color-brown);
    border-color: var(--color-brown);
}
.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: 80vh;
}
.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: var(--color-light);
}
.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: 10px;
    top: calc(50% + 60px);
    z-index: 4;
    transform: rotate(90deg);
    -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: 14px;
    line-height: 1;
    cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-prev:hover {
    color: var(--color-light);
}
.slider .slider-container .inner-elements .container .button-prev:after {
    content: "";
    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: 10px;
    top: calc(50% + 60px);
    z-index: 4;
    transform: rotate(90deg);
    -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: 14px;
    line-height: 1;
    cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-next:hover {
    color: var(--color-light);
}

/* PAGE HEADER */
.page-header {
    width: 100%;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 200px;
    background-color: var(--color-dark);
    background-size: 100% auto !important;
    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%,
        #9f8054 100%
    );
    background: -webkit-linear-gradient(
        161deg,
        #26282b 0%,
        #26282b 49%,
        #9f8054 100%
    );
    background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",GradientType=1);
    opacity: 0.65;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header .container h1 {
    font-size: 5vw;
    color: #fff;
    font-family: var(--secondary-font);
    color: var(--color-light);
    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: var(--color-brown);
    width: 70%;
    padding: 40px 30px;
    padding-right: 60px;
    margin: 0;
}

/* SECTION TITLES */
.section-titles {
    width: 100%;
    display: block;
    margin: 0;
}
.section-titles.light {
    color: #fff;
}
.section-titles.light h2 em {
    color: var(--color-light);
}
.section-titles.center {
    text-align: center;
}
.section-titles b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.section-titles h2 {
    display: block;
    font-size: 40px;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}
.video-section h2 {
    display: block;
    font-size: 40px;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}

.mob-video-h2 {
    font-size: 40px;
}

.section-titles h2 em {
    color: var(--color-brown);
    font-style: normal;
}
.section-titles h3 {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 28px;
}
.section-titles small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.5;
}
.section-titles small:after {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--color-dark);
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 4px;
    opacity: 0.5;
}

/* SIDE IMAGE LEFT */
.side-image-left {
    display: inline-block;
    margin-bottom: 0;
    margin-top: -20px;
    background: var(--color-light);
    position: relative;
}
.side-image-left .pattern-bg {
    width: 120%;
    height: 100%;
    position: absolute;
    left: 5%;
    top: -5%;
    background: url(../images/side-pattern-bg.png);
    background-size: contain;
}
.side-image-left .holder {
    position: relative;
    width: 100%;
    float: left;
    display: block !important;
    transform: translate(85px, -65px);
}
.side-image-left .holder img {
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
    width: 525px;
}

/* SIDE IMAGE RIGHT */
.side-image-right {
    width: 100%;
    display: block;
    margin: 0;
}
.side-image-right p {
    display: block;
    padding-right: 40%;
    margin-bottom: 30px;
}
.side-image-right ul {
    display: block;
    margin-bottom: 60px;
    padding: 0;
}
.side-image-right ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.side-image-right ul li:nth-child(1) {
    margin-right: 30px;
}
.side-image-right ul li img {
    width: auto;
    height: 35px;
}
.side-image-right a {
    display: inline-block;
    color: var(--color-dark);
    font-weight: 600;
}
.side-image-right a img {
    width: auto;
    height: 46px;
    margin-right: 15px;
}
.side-image-right a:hover {
    color: var(--color-brown);
    text-decoration: none;
}

/* CLIENTS */
.vc_col-sm-2:last-child .clients:after {
    display: none;
}

.clients {
    width: 100%;
    margin: 0;
    position: relative;
}
.clients:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -15px;
    top: 0;
    border-right: 1px dashed #eee;
}
.clients * {
    -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;
}
.clients:hover img {
    opacity: 0;
    transform: scale(1.2);
}
.clients:hover a {
    opacity: 1;
    transform: scale(1);
}
.clients figcaption {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    text-align: center;
}
.clients img {
    width: 100%;
}
.clients a {
    width: 100%;
    height: 20px;
    line-height: 20px;
    margin: 0;
    opacity: 0;
    font-weight: 800;
    font-size: 13px;
    transform: scale(1.1);
    color: var(--color-dark);
}

/* ICON COUNTER */
.vc_col-sm-1\/5:nth-child(odd) .icon-counter {
    margin-top: 50px;
}

.vc_col-sm-1\/5:last-child .icon-counter:after {
    display: none;
}

.icon-counter {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    padding: 20px 0;
}
.icon-counter:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #eee;
    position: absolute;
    top: 0;
    right: -15px;
}
.icon-counter:hover figure:after {
    opacity: 1;
}
.icon-counter figure {
    display: block;
    margin-bottom: 20px;
    position: relative;
}
.icon-counter figure:after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    left: 50%;
    top: 0;
    background: var(--color-light);
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    margin-left: -35px;
}
.icon-counter figure img {
    height: 70px;
    position: relative;
    z-index: 2;
}
.icon-counter h6 {
    font-weight: 600;
    font-size: 14px;
}
.icon-counter .odometer {
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
}
.icon-counter .extra {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transform: translateY(10px);
}

/* GALLERY THUMB */
.gallery-thumb {
    display: block !important;
    margin: 0;
    position: relative;
}
.gallery-thumb img {
    width: 100%;
}

.vc_col-sm-4:nth-child(1) .gallery-thumb {
    margin-top: 100px;
}

.vc_col-sm-4:nth-child(2) .gallery-thumb {
    margin-top: 0;
}

.vc_col-sm-4:nth-child(3) .gallery-thumb {
    margin-top: 80px;
}

/* 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: var(--secondary-font);
    margin-bottom: 15px;
}
.property-plans h4 span {
    color: var(--color-brown);
}
.property-plans h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.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: var(--color-dark);
    font-weight: 600;
}

/* SIDE TEXT LEFT */
.side-text-left {
    width: 100%;
    display: block;
}
.side-text-left p {
    display: block;
    padding-right: 40%;
    margin-bottom: 30px;
}
.side-text-left table {
    width: auto;
    display: table;
    margin-bottom: 30px;
    font-size: 15px;
    border: none;
}
.side-text-left table tr td {
    padding: 5px 0;
    border: none;
}
.side-text-left table tr td:first-child {
    color: var(--color-brown);
    width: 120px;
    font-weight: 600;
}
.side-text-left .link {
    display: inline-block;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-bottom: 10px;
}
.side-text-left .link i {
    margin-left: 10px;
}
.side-text-left .link:hover {
    text-decoration: none;
}
.side-text-left .link:hover:before {
    width: 100%;
}
.side-text-left .link:before {
    content: "";
    width: 60px;
    height: 2px;
    background: var(--color-dark);
    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;
}

/* CONSULTATION BOX */
.consultation-box {
    width: 500px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 50px;
    margin-bottom: -100px;
    margin-top: 150px;
    color: #fff;
    background: var(--color-brown);
    position: relative;
    overflow: hidden;
}
.consultation-box:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 200px 100vh 0;
    border-color: transparent var(--color-light) transparent transparent;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.15;
}
.consultation-box b {
    width: 100%;
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.consultation-box h4 {
    display: block;
    font-size: 30px;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}
.consultation-box h4 em {
    color: var(--color-light);
    font-style: normal;
}
.consultation-box h3 {
    font-weight: 600;
    margin-bottom: 30px;
}
.consultation-box p {
    display: block;
    padding-right: 20%;
    margin-bottom: 40px;
}
.consultation-box a {
    height: 60px;
    line-height: 60px;
    float: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    background: var(--color-dark);
    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;
}
.consultation-box a i {
    margin-left: 10px;
}
.consultation-box a:hover {
    text-decoration: none;
    background: #fff;
    color: var(--color-brown);
}

/* RECENT POSTS */
.recent-posts {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}
.recent-posts b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.recent-posts h4 {
    display: block;
    font-size: 30px;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}
.recent-posts h4 span {
    color: var(--color-brown);
}
.recent-posts small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.5;
}
.recent-posts small:after {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--color-dark);
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 4px;
    opacity: 0.5;
}

.recent-news {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.recent-news figure {
    display: block;
    margin-bottom: 20px;
}
.recent-news h6 {
    display: block;
    font-size: 20px;
    font-weight: 600;
}
.recent-news h6 a {
    display: inline-block;
}
.recent-news h6 a:hover {
    color: var(--color-brown);
    text-decoration: none;
}
.recent-news p {
    display: block;
    margin: 0;
}
.recent-news span {
    width: 100%;
    display: block;
    font-size: 13px;
    opacity: 0.5;
    margin-bottom: 10px;
}

/* ICON BOX */
.icon-box {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 10px;
    margin: 15px 0;
}
.icon-box img {
    height: 40px;
    float: left;
    margin-right: 15px;
}
.icon-box figcaption {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* APARTMENTS */
.apartment {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}
.apartment figure {
    width: 100%;
    display: block;
    margin-bottom: 70px;
    margin-top: 50px;
}
.apartment .gallery-slider {
    width: 80%;
    margin-top: 50px;
    margin-bottom: 70px;
}
.apartment .gallery-slider .gallery-container {
    margin: 0;
}
.apartment .property-plan {
    display: inline-block;
}
.apartment .property-infos {
    display: inline-block;
    background: var(--color-brown);
    color: #fff;
    padding: 50px;
    margin-bottom: 50px;
    float: left;
    margin-right: 100px;
}
.apartment .property-infos .odometer {
    font-size: 60px;
    font-weight: 800;
    position: relative;
    display: inline-flex;
}
.apartment .property-infos .odometer:after {
    content: attr(data-text);
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
    margin-left: 5px;
    opacity: 0.5;
}
.apartment .property-infos p:last-child {
    margin-bottom: 0;
}

.info-counter {
    width: 100%;
    display: block;
    background: var(--color-brown);
    color: #fff;
    padding: 30px;
    margin-bottom: 1px;
}
.info-counter .odometer {
    font-size: 60px;
    font-weight: 800;
    position: relative;
    display: inline-flex;
}
.info-counter .char {
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
    margin-left: 5px;
    opacity: 0.5;
}
.info-counter h6 {
    display: block;
}

/* APARTMENT CONTENT */
.apartment-content {
    width: 100%;
    display: block;
}
.apartment-content h2 {
    font-size: 4vw;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
    line-height: 1;
}
.apartment-content h2 em {
    color: var(--color-brown);
    font-style: normal;
}
.apartment-content h4 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}
.apartment-content h6 {
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.5;
    font-size: 20px;
}
.apartment-content h3 {
    margin-bottom: 20px;
    font-weight: 600;
}
.apartment-content p {
    line-height: 1.7;
    margin-bottom: 20px;
}
.apartment-content p strong {
    font-weight: 600;
}
.apartment-content p:last-child {
    margin-bottom: 0;
}
.apartment-content ul {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding-left: 20px;
}
.apartment-content ul li {
    margin: 0;
    padding: 4px 0;
}
.apartment-content blockquote {
    display: inline-block;
    padding: 30px;
    background: var(--color-light);
    margin-bottom: 40px;
}
.apartment-content blockquote p {
    margin: 0;
}
.apartment-content blockquote strong {
    font-size: 20px;
}

/* ABOUT CONTENT */
.about-content {
    width: 100%;
    display: block;
}
.about-content h2 {
    font-size: 4vw;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
    line-height: 1;
}
em {
    font-family: var(--secondary-font);
    font-style: normal;
}
.about-content h2 em {
    color: var(--color-brown);
    font-style: normal;
}
.about-content h5 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}
.about-content h6 {
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.5;
    font-size: 20px;
}
.about-content h4 {
    margin-bottom: 20px;
    font-weight: 600;
}
.about-content p {
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-content p strong {
    font-weight: 600;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.about-content ul {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding-left: 20px;
}
.about-content ul li {
    margin: 0;
    padding: 4px 0;
}
.about-content blockquote {
    display: inline-block;
    padding: 30px;
    background: var(--color-light);
    margin-bottom: 40px;
}
.about-content blockquote p {
    margin: 0;
}
.about-content blockquote strong {
    font-size: 20px;
}

/* VIDEO CONTENT */
.video-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    margin-top: 30px;
    padding: 5px;
    background: var(--color-light);
}
.video-content video {
    width: 100%;
    height: 100%;
    float: left;
}

/* CERTIFICATES */
.certificates {
    display: block;
    margin: 15px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.certificates img {
    width: 100%;
}

/* FACILITIES BOX */
.facilities-box {
    width: 100%;
    float: left;
    margin: 15px 0;
    padding: 50px 30px;
    box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
}
.facilities-box img {
    height: 70px;
    float: left;
}
.facilities-box figcaption {
    width: calc(100% - 90px);
    float: right;
}
.facilities-box figcaption h5 {
    font-weight: 600;
    font-size: 16px;
}
.facilities-box figcaption p {
    font-size: 14px;
    opacity: 0.5;
    margin: 0;
}

/* SIDE SUPPORT BOX */
.side-support-box {
    width: 100%;
    float: left;
    padding: 40px 30px;
    text-align: center;
    background: var(--color-brown);
    color: #fff;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
}
.side-support-box i {
    font-size: 100px;
    margin-bottom: 20px;
    display: inline-block;
}
.side-support-box h3 {
    display: block;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
}
.side-support-box p {
    color: #fff;
}

/* SALES OFFICE */
.sales-office {
    width: 100%;
    display: block;
    padding: 30px;
    margin: 15px 0;
    border: 1px solid #eee;
}
.sales-office h5 {
    font-family: var(--secondary-font);
    margin-bottom: 20px;
    font-size: 26px;
}
.sales-office address {
    margin-bottom: 25px;
}
.sales-office a {
    height: 44px;
    line-height: 44px;
    display: inline-block;
    padding: 0 20px;
    background: var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.sales-office a i {
    margin-right: 7px;
}
.sales-office a:hover {
    text-decoration: none;
}

/* PRESS RELEASE */
.press-release {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 15px 0;
    border: 1px solid #eee;
}
.press-release a {
    width: 40%;
    display: inline-block;
}
.press-release a img {
    width: 100%;
}
.press-release figcaption {
    width: 60%;
    padding-left: 20px;
}
.press-release figcaption h5 {
    display: block;
    font-size: 22px;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}
.press-release figcaption p {
    font-size: 14px;
}
.press-release figcaption small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    opacity: 0.5;
}

/* PHOTO GALLERY */
.gallery-filter {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0;
}
.gallery-filter li {
    display: inline-block;
    margin-right: 25px;
    padding: 0;
    list-style: none;
}
.gallery-filter li a {
    font-weight: 600;
    border-bottom: 2px solid transparent;
}
.gallery-filter li a.current {
    border-bottom: 2px solid var(--color-light);
}
.gallery-filter li a:hover {
    color: var(--color-brown);
    text-decoration: none;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-left: -4px;
    margin-right: -4px;
    padding: 0;
}
.photo-gallery li {
    width: 25%;
    margin: 0;
    padding: 4px;
    list-style: none;
}
.photo-gallery li img {
    width: 100%;
    float: left;
}

/* SALES TEAM */
.sales-team {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #eee;
    margin: 15px 0;
}
.sales-team img {
    width: 50%;
    display: inline-block;
}
.sales-team figcaption {
    width: 50%;
    display: inline-block;
}
.sales-team figcaption h4 {
    display: block;
    font-size: 30px;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}
.sales-team figcaption h4 span {
    color: var(--color-brown);
}
.sales-team figcaption small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.5;
}
.sales-team figcaption small:after {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--color-dark);
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 4px;
    opacity: 0.5;
}
.sales-team figcaption ul {
    display: block;
    margin: 0;
    padding: 0;
}
.sales-team figcaption ul li {
    display: inline-block;
    margin: 0;
    margin-right: 15px;
    padding: 0;
    list-style: none;
}
.sales-team figcaption ul li a {
    font-size: 14px;
    font-weight: 600;
}
.sales-team figcaption ul li a i {
    margin-right: 6px;
    font-size: 12px;
    font-weight: 400;
}
.sales-team figcaption ul li a:hover {
    text-decoration: none;
    color: var(--color-brown);
}

/* ERROR 404*/
.not-found {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    text-align: center;
}
.not-found figure {
    display: block;
    margin-bottom: 60px;
    padding: 0 20%;
}
.not-found figure img {
    width: 100%;
}
.not-found h2 {
    font-size: 50px;
    font-weight: 800;
    color: var(--color-brown);
}
.not-found p {
    display: block;
    margin-bottom: 40px;
}
.not-found a {
    height: 60px;
    line-height: 56px;
    display: inline-block;
    color: var(--color-brown);
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    border: 2px solid var(--color-light);
    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;
}
.not-found a:hover {
    text-decoration: none;
    color: #fff;
    background: var(--color-brown);
    border-color: var(--color-brown);
}

/* BLOG */
/* BLOG POST */
.blog-post {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.blog-post:last-child {
    margin-bottom: 0;
}
.blog-post:nth-child(even) {
    display: flex;
    flex-wrap: wrap;
}
.blog-post:nth-child(even) .post-image {
    /*order: 2;*/
}
.blog-post:nth-child(even) .post-content {
    width: 100%;
    /* order: 1; border-left: 1px solid #eee; border-right: none;*/
}
.blog-post.post-single {
    width: 100%;
    margin-bottom: 25px;
}
.blog-post.post-single .post-image {
    width: 100%;
    flex: inherit;
    margin-bottom: 30px;
}
.blog-post.post-single .post-content {
    width: 100%;
    flex: inherit;
    display: block;
    padding: 0;
    border: none;
}
.blog-post.post-single .post-content .post-title {
    width: 100%;
    display: block;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.3;
}
.blog-post .post-image {
    /* flex: 1; display: block; margin-bottom: 0;  */
    margin-bottom: 30px;
}
.blog-post .post-image img {
    width: 100%;
}
.blog-post .post-content {
    /* flex: 1; display: flex; flex-wrap: wrap; align-items: center; position: relative; z-index: 2; border: 1px solid #eee; padding: 30px; font-size: 17px; */
    width: 100%;
    display: block;
}
.blog-post .post-content .post-inner {
    width: 100%;
}
.blog-post .post-content .post-date {
    width: 100%;
    display: block;
    color: #727479;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.blog-post .post-content .post-title {
    width: 100%;
    display: block;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.3;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.blog-post .post-content .post-title a {
    color: var(--color-dark);
}
.blog-post .post-content .post-title a:hover {
    color: var(--color-brown);
    text-decoration: none;
}
.blog-post .post-content .post-author {
    width: 100%;
    display: block;
    /*margin-bottom: 40px;*/
}
.blog-post .post-content .post-author img {
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}
.blog-post .post-content .post-author b {
    color: #727479;
    font-weight: 400;
}
.blog-post .post-content .post-author b a {
    color: var(--color-dark);
}
.blog-post .post-content .post-author b a:hover {
    text-decoration: none;
}
.blog-post .post-content .post-categories {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding: 0;
}
.blog-post .post-content .post-categories li {
    display: inline-block;
    margin: 0;
    margin-right: 10px;
    padding: 0;
    list-style: none;
}
.blog-post .post-content .post-categories li a {
    color: var(--color-dark);
    font-size: 11px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--color-dark);
}
.blog-post .post-content .post-categories li a:hover {
    text-decoration: none;
    border-color: var(--color-brown);
}
.blog-post .post-content .social-share {
    width: 100%;
    float: left;
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
}
.blog-post .post-content .social-share li {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 0;
    list-style: none;
}
.blog-post .post-content .social-share li.facebook a {
    background: #475993;
}
.blog-post .post-content .social-share li.twitter a {
    background: #76a9ea;
}
.blog-post .post-content .social-share li.google-plus a {
    background: #f34a38;
}
.blog-post .post-content .social-share li.linkedin a {
    background: #0077b7;
}
.blog-post .post-content .social-share li.youtube a {
    background: #f61c0d;
}
.blog-post .post-content .social-share li a {
    line-height: 44px;
    float: left;
    padding: 0 20px;
    background: var(--color-dark);
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 0;
}
.blog-post .post-content .social-share li a:hover {
    text-decoration: none;
}
.blog-post .post-content blockquote {
    background: var(--color-brown);
    color: #fff;
    padding: 30px;
    margin-bottom: 25px;
}
.blog-post .post-content blockquote h5 {
    font-weight: 800;
}
.blog-post .post-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.blog-post .post-content h3 {
    font-weight: 600;
}
.blog-post .post-content h4 {
    font-weight: 600;
}
.blog-post .post-content h5 {
    font-weight: 600;
}
.blog-post .post-content h6 {
    font-weight: 600;
}
.blog-post .post-content strong {
    font-weight: 600;
}
.blog-post .post-content u {
    text-decoration: none;
    border-bottom: 2px solid var(--color-dark);
}
.blog-post .post-content .custom-list {
    width: 100%;
    display: block;
    padding-left: 20px;
}
.blog-post .post-content .custom-list li {
    font-size: 17px;
}
.blog-post .post-content .image-full {
    display: block;
    height: auto;
    margin-bottom: 30px;
    margin-top: 30px;
}
.blog-post .post-content .image-full img {
    width: 100%;
}
.blog-post .post-content .post-link {
    display: inline-block;
    overflow: hidden;
}
.blog-post .post-content .post-link a {
    display: inline-block;
    position: relative;
    -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;
    font-weight: 600;
}
.blog-post .post-content .post-link a:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
}
.blog-post .post-content .post-link a:hover {
    transform: translateY(-100%);
    text-decoration: none;
}

/* CONTACT BOX */
.contact-box {
    display: block;
}
.contact-box strong {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.contact-box p {
    display: block;
    margin: 0;
}

/* GOOGLE MAPS */
.map {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 100px;
    background: var(--color-light);
    position: relative;
}
.map:before {
    content: "";
    width: 50vw;
    height: 100%;
    background: var(--color-light);
    position: absolute;
    left: -50vw;
    top: 0;
}
.map .pattern-bg {
    width: 120%;
    height: 100%;
    position: absolute;
    left: 5%;
    top: -5%;
    background: url(../images/side-pattern-bg.png);
    background-size: contain;
}
.map .holder {
    position: relative;
    width: 100%;
    float: left;
    display: block !important;
    transform: translate(85px, -35px);
}
.map .holder iframe {
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
    width: 525px;
    height: 657px;
    border: none;
}

/* CONTACT */
.contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}
.contact b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    opacity: 0.2;
}
.contact h4 {
    display: block;
    font-size: 30px;
    font-family: var(--secondary-font);
    margin-bottom: 15px;
}
.contact h4 span {
    color: var(--color-brown);
}
.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: var(--color-dark);
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 4px;
    opacity: 0.5;
}
.contact .contact-form {
    width: 100%;
    display: block;
    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: none;
    position: relative;
    z-index: 2;
}
.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: none;
    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;
}
.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;
}

/* FOOTER BAR */
.footer-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 100px;
    /* background: var(--color-dark); */
}
.footer-bar:before {
    content: "";
    width: 100%;
    /* height: 100px; */
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}
.footer-bar .inner {
    background: var(--color-brown);
    padding: 60px 30px;
    color: #fff;
    position: relative;
}
.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: var(--secondary-font);
    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: var(--color-dark);
}
.footer p {
    color: #fff;
}
.footer .logo {
    width: auto;
    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: var(--color-brown);
}
.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: var(--color-light);
}

.footer .company-box {
    float: right;
}

.footer .contact-box {
    float: right;
    color: #fff;
    text-align: right;
}
.footer .contact-box h5 {
    margin-bottom: 10px;
    font-size: 19px;
    font-family: var(--secondary-font);
}
.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 {
    width: auto;
    float: right;
    margin-bottom: 50px;
    margin-top: 20px;
    padding: 0;
}
.footer .contact-box ul li {
    width: auto;
    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: var(--color-dark);
    background: var(--color-light);
}

/* RESPONSIVE MEDIUM  FIXES */
@media only screen and (max-width: 1199px),
    only screen and (max-device-width: 1199px) {
    .side-image-left .holder {
        transform: translate(65px, -65px);
    }

    .side-image-left .holder img {
        width: 450px;
    }

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

    .footer-bar .inner p br {
        display: none;
    }

    .photo-gallery li {
        width: 33.33333%;
    }
}
/* RESPONSIVE TABLET FIXES */
@media only screen and (max-width: 991px),
    only screen and (max-device-width: 991px) {
    .sidebar {
        padding-left: 0 !important;
        margin-top: 40px;
    }

    .side-navigation .side-content {
        display: none;
    }

    .side-navigation .menu {
        display: block;
        overflow: auto;
        padding: 50px 0;
    }

    .navbar {
        overflow: hidden;
    }

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

    .page-header {
        background-size: inherit !important;
    }

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

    .slider .slider-container .swiper-slide {
        background-size: auto 120%;
    }

    .side-image-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .side-image-left .holder {
        transform: translate(0, 0);
        padding: 0 30px;
    }

    .side-image-left .holder img {
        width: 100%;
    }

    .side-image-left figure {
        width: 100%;
        margin-bottom: 80px;
    }

    .side-image-left .pattern-bg {
        width: 100%;
        left: 0;
    }

    .map {
        width: 100%;
        margin-bottom: 40px;
    }

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

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

    .map iframe {
        width: 100%;
        margin-bottom: 80px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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 .post-box {
        margin: 25px 0;
    }

    .video-bg video {
        float: right;
    }

    .contact address p a {
        display: block;
    }

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

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

    .footer-bar {
        padding-bottom: 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: 100px; */
    }

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

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

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

    .footer .company-box {
        float: left;
    }

    .footer .contact-box ul {
        float: left;
    }

    .content-section {
        padding: 100px 0;
    }

    .video-section {
        padding-top: 300px;
    }

    .content-section .vc_custom_1584721711573 {
        margin-bottom: 0 !important;
    }

    .content-section .vc_custom_1584954196020 {
        padding-left: 15px !important;
    }

    .content-section .vc_custom_1584953605262 {
        padding-left: 15px !important;
    }

    .content-section .vc_custom_1584959318998 {
        padding-left: 15px !important;
    }

    .content-section .col-lg-4.col-md-6:last-child .recent-news {
        display: none;
    }

    .side-navigation .menu ul li a:hover {
        background: none;
    }

    .side-navigation .menu ul li a:focus {
        background: none;
    }

    .side-navigation .menu ul li ul {
        position: static;
        opacity: 1;
        visibility: visible;
    }

    .side-navigation .menu ul li.dropdown:hover ul {
        display: none;
    }

    .blog .sidebar {
        margin-top: 50px;
    }

    .content-slider .swiper-slide {
        width: 100% !important;
    }

    .content-slider .swiper-button-prev,
    .content-slider .swiper-button-next {
        display: none;
    }

    input,
    textarea {
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}
/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 767px),
    only screen and (max-device-width: 767px) {
    /* Hero Section Styling */
    .section-titles.center {
        padding: 0;
    }

    .side-navigation {
        width: 80vw;
    }

    .slider .slider-container .swiper-slide .container h1 {
        font-size: 14vw;
    }

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

    .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;
        display: none;
    }

    .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;
    }

    .map:before {
        display: none;
    }

    .map .holder {
        padding: 0 30px;
        transform: translate(0, 0);
    }

    .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;
    }

    .consultation-box {
        padding: 40px;
    }

    .nav-pills .nav-item {
        margin-right: 20px;
    }

    .side-image-right p {
        padding-right: 10%;
    }

    .side-text-left p {
        padding-right: 10%;
    }

    .consultation-box p {
        padding: 0;
    }

    .gallery-thumb {
        margin: 15px 0 !important;
        position: static !important;
    }

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

    .pagination li {
        display: none;
    }

    .pagination li:first-child {
        display: inline-block;
    }

    .pagination li:nth-child(2) {
        display: inline-block;
    }

    .pagination li:last-child {
        display: inline-block;
    }

    .footer-bar .inner figure {
        margin-bottom: 40px;
    }

    .vc_col-sm-4:last-child .gallery-thumb {
        margin-bottom: 100px;
    }

    .col-lg-4.col-md-6:nth-child(2) .recent-news {
        margin: 50px 0;
    }

    .content-section .col-lg-4.col-md-6:last-child .recent-news {
        display: block;
    }

    .content-section.bg-image {
        background-size: cover !important;
    }

    .sales-team img {
        order: 2;
        width: 100%;
    }

    .sales-team figcaption {
        order: 1;
        width: 100%;
        padding: 30px;
    }

    .accordion {
        margin-bottom: 50px;
    }

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

    .info-counter:last-child {
        margin-bottom: 50px;
    }

    .apartment-content h2 {
        font-size: 10vw;
    }
}
/* CONTENT SLIDER */
.content-slider {
    width: 100%;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    background: #000;
    overflow: hidden;
}

.content-slider .swiper-slide {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.content-slider .swiper-slide video {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.content-slider .swiper-slide .slide-inner {
    width: 100%;
    padding: 0 100px;
    color: #fff;
}

.content-slider .swiper-slide .slide-inner a {
    color: #fff;
}

.content-slider .swiper-button-prev {
    width: auto;
    height: auto;
    background: none;
    margin: 0;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    left: 30px;
    transform: translateY(-50%);
}

.content-slider .swiper-button-next {
    width: auto;
    height: auto;
    background: none;
    margin: 0;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    right: 30px;
    transform: translateY(-50%);
}

.content-slider .swiper-button-prev,
.content-slider .swiper-button-next:hover {
    opacity: 0.6;
}

.content-slider .swiper-pagination-bullet {
    background: #fff;
}

.content-slider .swiper-pagination-bullet-active {
    background: #fff;
}

/* CUSTOM FIXES */
.wp-block-quote p:last-child {
    margin-bottom: 0;
}

.page.type-page code {
    background: #eee;
    padding: 4px;
    color: #0e0e0e;
    font-family: Courier;
}

.page-links {
    position: relative;
}

.post-501 .page-links {
    float: left;
    margin-top: 60px;
}

.post-501 .post-entry-footer {
    float: left;
}

.post-1133 .post-entry-footer {
    float: left;
}

.wp-image-907 {
    width: 100%;
}

.error-404.not-found {
    text-align: center;
}

.error-404.not-found .screen-reader-text {
    display: none;
}

.error-404.not-found img {
    margin-bottom: 30px;
}

.is-style-squared .wp-block-button__link {
    border-radius: 0 !important;
}

.blog-post .post-content .wp-block-quote {
    border: none;
    color: #fff;
    background: #9f8054;
    color: #fff;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-post .post-content .wp-block-quote a {
    color: #fff;
}

.blog-post .post-content .has-medium-font-size {
    font-size: 20px;
}

.page.type-page {
    width: 100%;
}

.blog-post .post-content select {
    width: 100%;
}

.logged-in.admin-bar .navbar {
    top: 32px;
}

select {
    max-width: 100%;
    height: 60px;
    border-radius: 0;
}

.menu-horizontal {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.menu-horizontal * {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.menu-horizontal li {
    margin-left: 40px;
    padding: 15px 0;
    white-space: nowrap;
    position: relative;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.menu-horizontal li:first-child {
    margin-left: 0;
}

.menu-horizontal li div {
    float: left;
    overflow: hidden;
}

.menu-horizontal li.dropdown i {
    display: inline-block;
}

.menu-horizontal li.dropdown ul li i {
    display: none;
    left: 5px;
}

.menu-horizontal li.dropdown ul li.dropdown i {
    display: inline-block;
}

.menu-horizontal li.dropdown ul li.dropdown ul li i {
    display: none;
}

.menu-horizontal li.dropdown ul li.dropdown ul li.dropdown i {
    display: inline-block;
}

.menu-horizontal li.dropdown ul li.dropdown ul li.dropdown ul li i {
    display: none;
}

.menu-horizontal li.dropdown ul li.dropdown ul li.dropdown ul li.dropdown i {
    display: inline-block;
}

.menu-horizontal li.dropdown ul li.dropdown ul li.dropdown ul li.dropdown li i {
    display: none;
}

.menu-horizontal
    li.dropdown
    ul
    li.dropdown
    ul
    li.dropdown
    ul
    li.dropdown
    li.dropdown
    i {
    display: inline-block;
}

.menu-horizontal li a {
    color: #fff;
    display: inline-block;
    position: relative;
    padding: 0;
}

.menu-horizontal li ul {
    min-width: 200px;
    display: none;
    flex-wrap: wrap;
    position: absolute;
    left: -30px;
    top: 100%;
    background: #0e0e0e;
    margin: 0;
    padding: 20px 0;
    border: none;
    border-radius: 0;
}

.menu-horizontal li ul li {
    width: 100%;
    float: left;
    padding: 5px 20px;
    padding-left: 30px;
    margin: 0;
}

.menu-horizontal li ul li ul {
    background: #252525;
    left: 200px;
    top: 0;
    margin-top: -20px;
}

.menu-horizontal li ul li ul li ul {
    background: #313131;
    left: -200px;
}

.menu-horizontal li ul li ul li ul li ul {
    background: #444444;
    left: 200px;
}

/* STICKY POST STYLE */
.blog-post.sticky {
    border: 1px solid #eee;
    padding: 30px;
    position: relative;
}

.blog-post.sticky:before {
    content: "";
    width: 14px;
    height: 25px;
    background: #0e0e0e;
    position: absolute;
    right: 30px;
    top: -10px;
}

.blog-post.sticky:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 6px 7px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    right: 30px;
    top: 9px;
}

/* BLOG FIXES */
.blog-post .post-content .post-tags {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding: 0;
}

.blog-post .post-content .post-tags li {
    display: inline-block;
    margin: 3px 0;
    margin-right: 10px;
    padding: 0;
    list-style: none;
}

.blog-post .post-content .post-tags li a {
    background: #9f8054;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
}

.blog-post .post-content .wp-block-button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.blog-post .post-content .wp-block-button:last-child {
    margin-bottom: 0;
}

.blog-post .post-content .wp-block-button__link {
    background: #0e0e0e;
    font-size: 13px;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 50px;
}

.blog-post
    .post-content
    .wp-block-button.is-style-outline
    .wp-block-button__link {
    background: none;
}

.blog-post .post-content .wp-block-cover {
    margin-bottom: 40px;
}

.blog-post
    .post-content
    .wp-block-cover.has-background-dim
    .wp-block-cover-text {
    color: #fff;
}

.blog-post
    .post-content
    .wp-block-cover-image.has-background-dim
    .wp-block-cover-image-text {
    color: #fff;
}

.blog-post .post-content .wp-block-gallery {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
}

.blog-post .post-content .wp-block-gallery .blocks-gallery-caption {
    font-size: 13px;
}

.blog-post .post-content .wp-block-gallery .blocks-gallery-item figure {
    width: 100%;
    position: relative;
}

.blog-post
    .post-content
    .wp-block-gallery
    .blocks-gallery-item
    figure
    figcaption {
    padding: 10px;
    bottom: 0;
}

.blog-post .post-content .wp-block-quote {
    margin: 20px 0;
}

.blog-post .post-content .wp-block-quote a {
    color: #fff;
}

.blog-post .post-content .wp-block-quote cite {
    font-family: georgia;
    font-style: italic;
    font-size: 13px;
}

.blog-post .post-content .wp-block-quote cite br {
    display: none;
}

.blog-post .post-content .blocks-gallery-grid {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.blog-post .post-content .wp-block-group.has-background {
    padding: 30px;
}

.blog-post .post-content .has-background {
    margin-bottom: 20px;
}

.blog-post .post-content .more-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    display: none;
}

.blog-post .post-content .gallery {
    display: block;
    margin-bottom: 40px;
}

.blog-post .post-content .gallery .gallery-item {
    position: relative;
}

.blog-post .post-content .gallery .gallery-item .gallery-caption {
    font-size: 13px;
    color: #727479;
}

.blog-post .post-content .gallery .gallery-item a {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.blog-post .post-content .gallery .gallery-item a img {
    width: 100%;
    height: auto;
}

.blog-post .post-content .wp-block-archives {
    width: 100%;
    display: block;
    margin-bottom: 40px;
    padding: 0;
    font-size: 16px;
}

.blog-post .post-content .wp-block-archives li {
    width: 100%;
    display: block;
    margin: 0;
    margin-bottom: 10px;
    padding: 3px 0;
    list-style: none;
    color: #727479;
}

.blog-post .post-content .wp-block-archives li .comment-author-link a {
    text-decoration: none;
    font-weight: 600;
}

.blog-post .post-content .wp-block-archives li a {
    margin: 0;
    color: #0e0e0e;
}

.blog-post .post-content .wp-block-calendar {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.blog-post .post-content .wp-block-calendar caption {
    width: 100%;
    padding-bottom: 20px;
    font-weight: 600;
    color: #727479;
}

.blog-post .post-content .wp-block-calendar a {
    display: inline-block;
    color: #0e0e0e;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.blog-post .post-content .wp-block-table {
    width: 100%;
}

.blog-post .post-content .wp-block-table a {
    color: #0e0e0e;
}

.blog-post .post-content .wp-block-table table {
    width: 100%;
    border: 1px solid #f3f4f5;
}

.blog-post .post-content .wp-block-table table tr {
    border-bottom: 1px solid #f3f4f5;
}

.blog-post .post-content .wp-block-table table td {
    height: 50px;
    padding: 0 20px;
}

.blog-post .post-content .wp-block-search {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.blog-post .post-content .wp-block-search .wp-block-search__label {
    display: none;
}

.blog-post .post-content .wp-block-search input[type="search"] {
    border: 1px solid #eee;
    padding: 0 15px;
}

.blog-post .post-content .wp-block-categories {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.blog-post .post-content .wp-block-latest-comments {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 40px;
}

.blog-post
    .post-content
    .wp-block-latest-comments
    .wp-block-latest-comments__comment-author {
    text-decoration: none;
    font-weight: 600;
}

.blog-post .post-content .wp-block-latest-comments a {
    text-decoration: underline;
}

.blog-post .post-content .wp-block-latest-comments p {
    font-weight: 400;
    padding: 0;
    border: none;
    text-transform: inherit;
}

.blog-post .post-content .wp-block-latest-posts {
    padding: 0;
    margin-bottom: 40px;
}

.blog-post .post-content .wp-block-tag-cloud {
    font-weight: 400;
    margin-bottom: 40px;
}

.blog-post .post-content .wp-block-tag-cloud a {
    display: inline-block;
    font-size: 13px !important;
    background: #0e0e0e;
    color: #fff;
    padding: 0 20px;
}

.blog-post .post-content .wp-block-rss {
    margin-bottom: 40px;
}

.blog-post .post-content .post-entry-footer {
    width: 100%;
    display: block;
    padding: 20px;
    border: 1px solid #e2e2e2;
    margin-bottom: 30px;
    box-shadow: 6px 6px 0 #f5f5f5;
    margin-top: 40px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.blog-post .post-content .post-entry-footer .cat-links {
    width: 100%;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
    font-weight: 600;
}

.blog-post .post-content .post-entry-footer .cat-links a {
    text-decoration: underline;
    font-weight: 400;
}

.blog-post .post-content .post-entry-footer .cat-links a:hover {
    text-decoration: none;
}

.blog-post .post-content .post-entry-footer .tags-links {
    width: 100%;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
    font-weight: 600;
}

.blog-post .post-content .post-entry-footer .tags-links a {
    text-decoration: underline;
    font-weight: 400;
}

.blog-post .post-content .post-entry-footer .tags-links a:hover {
    text-decoration: none;
}

.blog-post .post-content .post-entry-footer .edit-link {
    width: 100%;
    display: block;
    font-weight: 600;
}

.blog-post .post-content .post-entry-footer .edit-link .screen-reader-text {
    display: inline-block;
    font-weight: 400;
}

.blog-post .post-content .post-navigation {
    width: 100%;
    display: block;
}

.blog-post .post-content .post-navigation .navigation {
    width: 100%;
    display: block;
    padding: 20px;
    border: 1px solid #e2e2e2;
    margin-bottom: 30px;
    box-shadow: 6px 6px 0 #f5f5f5;
}

.blog-post .post-content .post-navigation .navigation:last-child {
    margin-bottom: 0;
}

.blog-post .post-content .post-navigation .navigation .screen-reader-text {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.blog-post .post-content .post-navigation .navigation .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.blog-post .post-content .post-navigation .navigation .nav-links .nav-previous {
    flex: 1;
    width: 50%;
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.blog-post .post-content .post-navigation .navigation .nav-links .nav-next {
    flex: 1;
    width: 50%;
    padding-left: 20px;
    text-align: right;
}

.blog-post .post-content .page-links {
    width: 100%;
    display: block;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.blog-post .post-content .page-links h6 {
    display: none;
}

.blog-post .post-content .page-links .post-page-numbers {
    height: 60px;
    line-height: 60px;
    display: inline-block;
    border: 1px solid #eee;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
}

.blog-post .post-content .page-links .post-page-numbers.current {
    background: #0e0e0e;
    border-color: #0e0e0e;
    color: #fff;
}

.blog-post .post-content .size-large {
    width: 100%;
    height: auto;
}

.blog-post .post-content code {
    background: #eee;
    padding: 4px;
    color: #0e0e0e;
    font-family: Courier;
}

.blog-post .post-content blockquote {
    background: #9f8054;
    color: #fff;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-post .post-content blockquote cite {
    display: block;
    margin-top: 10px;
}

.blog-post .post-content blockquote a {
    color: #fff;
    text-decoration: underline;
}

.blog-post .post-content h3 {
    font-weight: 600;
}

.blog-post .post-content h4 {
    font-weight: 600;
}

.blog-post .post-content h5 {
    font-weight: 600;
}

.blog-post .post-content h6 {
    font-weight: 600;
}

.blog-post .post-content strong {
    font-weight: 600;
}

.blog-post .post-content ol {
    padding-left: 20px;
}

.blog-post .post-content ul {
    padding-left: 20px;
}

.blog-post .post-content ul li {
    margin-bottom: 10px;
}

.blog-post .post-content ul li:last-child {
    margin-bottom: 0;
}

.blog-post .post-content ol li {
    margin-bottom: 10px;
}

.blog-post .post-content ol li:last-child {
    margin-bottom: 0;
}

.blog-post .post-content u {
    text-decoration: none;
    border-bottom: 5px solid #9f8054;
}

.blog-post .post-content .image-full {
    display: block;
    height: auto;
    margin-bottom: 30px;
}

.blog-post .post-content .post-author {
    margin-bottom: 40px;
}

.blog-post .post-content .post-link {
    width: 100%;
    display: inline-block;
}

.blog-post .post-content .link-more {
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

.blog-post .post-content .link-more a {
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-weight: 600;
}

.blog-post .post-content .link-more a:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
}

.blog-post .post-content .link-more a:hover {
    transform: translateY(-100%);
    text-decoration: none;
}

table {
    width: 100%;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

table tr {
    padding: 15px 0;
}

table tr th {
    padding: 15px;
    border: 1px solid #eee;
}

table tr td {
    padding: 15px;
    border: 1px solid #eee;
}

.tag-content-2 {
    position: relative;
}

.tag-content-2 .screen-reader-text {
    display: none;
}

.post-1788 .post-entry-footer {
    margin-top: 200px !important;
}

.post-1177 .post-entry-footer {
    margin-top: 200px !important;
}

.post-password-form label {
    width: 100%;
}

.post-password-form input[type="password"] {
    width: 100%;
    border: 1px solid #eee;
    padding: 0 15px;
    margin-top: 10px;
}

.post-password-form input[type="submit"] {
    margin-top: 5px;
}

.page-links {
    width: 100%;
    display: block;
    border-top: 1px solid #eee;
    padding-top: 40px;
    font-size: 16px;
}

.page-links h6 {
    display: none;
}

.page-links .post-page-numbers {
    height: 60px;
    line-height: 60px;
    display: inline-block;
    border: 1px solid #eee;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
}

.page-links .post-page-numbers.current {
    background: #0e0e0e;
    border-color: #0e0e0e;
    color: #fff;
}

.post-entry-footer {
    width: 100%;
    display: block;
    padding: 20px;
    border: 1px solid #e2e2e2;
    margin-bottom: 30px;
    font-size: 16px;
    box-shadow: 6px 6px 0 #f5f5f5;
    margin-top: 40px;
}

.post-entry-footer:last-child {
    margin-bottom: 0;
}

.post-entry-footer .cat-links {
    width: 100%;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #0e0e0e;
    font-weight: 600;
}

.post-entry-footer .cat-links a {
    text-decoration: underline;
    font-weight: 400;
}

.post-entry-footer .tags-links {
    width: 100%;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #0e0e0e;
    font-weight: 600;
}

.post-entry-footer .tags-links a {
    text-decoration: underline;
    font-weight: 400;
}

.post-entry-footer .edit-link {
    width: 100%;
    display: block;
    font-weight: 600;
}

.post-entry-footer .edit-link .screen-reader-text {
    display: inline-block;
    font-weight: 400;
}

.post-comment {
    width: 100%;
    display: block;
    padding: 20px;
    border: 1px solid #e2e2e2;
    margin: 30px 0;
    box-shadow: 6px 6px 0 #f5f5f5;
}

/* COMMENTS */
.post-comment .comments-title {
    width: 100%;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.post-comment .comment-list {
    width: 100%;
    display: block;
    margin-bottom: 60px;
    padding: 0 !important;
}

.post-comment .comment-list .comment {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.post-comment .comment-list .children {
    margin-bottom: 20px;
}

.post-comment .comment-list .comment .comment-list {
    margin-bottom: 20px;
}

.post-comment .comment-list .comment .comment-content {
    width: calc(100% - 100px);
    display: inline-block;
}

.post-comment .comment-list .comment .comment-content p:empty {
    display: none;
}

.post-comment .comment-list .comment .comment-content p {
    margin-bottom: 10px;
}

.post-comment .comment-list .comment .comment-content h4 {
    font-size: 13px;
    font-weight: 600;
}

.post-comment .comment-list .comment .comment-content small {
    width: 100%;
    display: block;
    margin-bottom: 5px;
    opacity: 0.6;
}

.post-comment .comment-list .comment .comment-content .comment-reply-link {
    display: inline-block;
    padding: 3px 8px;
    background: #0e0e0e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.post-comment
    .comment-list
    .comment
    .comment-content
    .comment-reply-link:hover {
    background: #73efcc;
    color: #0e0e0e;
    text-decoration: none;
}

.post-comment .comment-list .comment .comment-avatar {
    margin-right: 20px;
}

.post-comment .comment-list .comment .comment-avatar:empty {
    display: none;
}

.post-comment .comment-list .comment .comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.post-comment .comment-form {
    width: 100%;
    display: block;
}

.post-comment .comment-form .comment-respond {
    width: 100%;
    display: block;
}

.post-comment .comment-form .comment-respond .comment-reply-title {
    width: 100%;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.post-comment .comment-form .comment-respond form {
    position: relative;
}

.post-comment .comment-form .comment-respond form .comment-notes {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-comment
    .comment-form
    .comment-respond
    form
    .comment-form-cookies-consent {
    padding: 0 15px;
}

.post-comment
    .comment-form
    .comment-respond
    form
    .comment-form-cookies-consent
    input[type="checkbox"] {
    margin-right: 10px;
}

.post-comment
    .comment-form
    .comment-respond
    form
    .comment-form-cookies-consent
    label {
    width: auto;
    display: inline-block;
}

.post-comment .comment-form .comment-respond form .logged-in-as {
    font-weight: 400;
    text-transform: inherit;
    border: none;
    padding: 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.post-comment .comment-form .comment-respond form .logged-in-as a {
    text-decoration: underline;
}

.post-comment .comment-form .comment-respond form label {
    width: 100%;
    display: block;
    font-size: 13px;
    color: #727479;
}

.post-comment .comment-form .comment-respond form input[type="text"] {
    width: 100%;
    display: block;
    border: 1px solid #dadada;
    padding: 0 15px;
    background: #f7f7f7;
}

.post-comment .comment-form .comment-respond form input[type="email"] {
    width: 100%;
    display: block;
    border: 1px solid #dadada;
    padding: 0 15px;
    background: #f7f7f7;
}

.post-comment .comment-form .comment-respond form textarea {
    width: 100%;
    display: block;
    border: 1px solid #dadada;
    padding: 15px;
    background: #f7f7f7;
}

/* SIDEBAR */
.sidebar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 60px;
    font-size: 16px;
}

.sidebar .widget {
    width: 100%;
    display: block;
    margin-bottom: 50px;
    background: #fff;
    padding: 40px;
    padding-top: 0;
    border: 1px solid #e2e2e2;
    position: relative;
    box-shadow: 6px 6px 0 #f5f5f5;
}

.sidebar .widget:last-child {
    margin-bottom: 0;
}

.sidebar .widget strong {
    font-weight: 600;
}

.sidebar .widget .categories {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget .categories li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 3px 0;
    list-style: none;
}

.sidebar .widget .categories li a {
    margin: 0;
}

.sidebar .widget .categories li a:hover {
    color: #73efcc;
    text-decoration: none;
}

.sidebar .widget .categories li span {
    float: right;
    opacity: 0.5;
}

.sidebar .widget .tags {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.sidebar .widget .tags li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 0;
    list-style: none;
}

.sidebar .widget .tags li a {
    color: #fff;
    background: #73efcc;
    display: inline-block;
    font-size: 13px;
    padding: 3px 6px;
}

.sidebar .widget .tags li a:hover {
    color: #73efcc;
    background: #0e0e0e;
    text-decoration: none;
}

.sidebar .widget .side-gallery {
    display: block;
    margin-left: -1px;
    margin-right: -1px;
    padding: 0;
}

.sidebar .widget .side-gallery li {
    width: 50%;
    float: left;
    margin: 0;
    padding: 1px;
    list-style: none;
}

.sidebar .widget p {
    margin-bottom: 0;
}

.sidebar .widget select {
    width: 100%;
}

.sidebar .widget ol {
    padding-left: 0;
}

.sidebar .widget ul {
    padding-left: 15px;
}

.sidebar .widget form {
    margin: 0;
}

.sidebar .widget form input[type="search"] {
    width: 100%;
    margin-bottom: 10px;
}

.sidebar .widget form button[type="submit"] {
    margin-top: 5px;
    margin-left: 0;
}

.sidebar .widget .widget-title {
    width: 100%;
    display: block;
    border-bottom: 4px solid #eee;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 30px 0;
    margin-bottom: 30px;
    color: #0e0e0e;
    position: relative;
}

.sidebar .widget h2.wp-block-heading {
    width: 100%;
    display: block;
    border-bottom: 4px solid #eee;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 30px 0;
    margin-bottom: 30px;
    color: #0e0e0e;
    position: relative;
}

.sidebar .widget_search {
    width: 100%;
}

.sidebar .wp-block-search__label {
    width: 100%;
    display: block;
    border-bottom: 4px solid #eee;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 30px 0;
    margin-bottom: 30px;
    color: #0e0e0e;
    position: relative;
}

.sidebar .wp-block-search__inside-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.sidebar .widget_search .widget-title {
    margin-bottom: 0;
}

.sidebar .widget_search .search-form {
    padding-top: 40px;
}

.sidebar .widget_search .screen-reader-text {
    display: none;
}

.sidebar .widget_search label {
    width: 100%;
    display: block;
}

.sidebar .widget_search input[type="search"] {
    border: 1px solid #eee;
    padding: 0 15px;
}

.sidebar .widget_archive {
    position: relative;
}

.sidebar .widget_archive .screen-reader-text {
    display: none;
}

.sidebar .widget_archive ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_archive ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    color: #727479;
}

.sidebar .widget_archive ul li a {
    margin: 0;
    color: #0e0e0e;
}

.sidebar .widget_calendar {
    position: relative;
}

.sidebar .widget_calendar caption {
    padding-bottom: 0;
    color: #727479;
    font-weight: 600;
}

.sidebar .widget_calendar table {
    width: 100%;
    text-align: center;
}

.sidebar .widget_calendar table thead {
    margin-bottom: 10px;
}

.sidebar .widget_calendar table thead th {
    height: 50px;
    border-bottom: 1px solid #eee;
    padding: 0;
}

.sidebar .widget_calendar table tbody {
    margin-bottom: 10px;
}

.sidebar .widget_calendar table tbody td {
    height: 30px;
    padding: 0;
}

.sidebar .widget_calendar table tfoot {
    padding-top: 10px;
}

.sidebar .widget_calendar table tfoot td {
    border-top: 1px solid #eee;
    height: 50px;
    padding: 0;
}

.sidebar .widget_calendar table tfoot td:last-child {
    text-align: right;
}

.sidebar .widget_categories {
    position: relative;
}

.sidebar .widget_categories .screen-reader-text {
    display: none;
}

.sidebar .widget_categories ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_categories ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    color: #727479;
}

.sidebar .widget_categories ul li ul {
    padding-left: 20px;
}

.sidebar .widget_categories ul li a {
    margin: 0;
    color: #0e0e0e;
}

.sidebar .widget_pages {
    position: relative;
}

.sidebar .widget_pages ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_pages ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    color: #727479;
}

.sidebar .widget_pages ul li ul {
    padding-left: 20px;
}

.sidebar .widget_pages ul li a {
    margin: 0;
    color: #0e0e0e;
}

.sidebar .widget_meta {
    position: relative;
}

.sidebar .widget_meta ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_meta ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    color: #727479;
}

.sidebar .widget_meta ul li a {
    margin: 0;
}

.sidebar .widget_recent_comments {
    position: relative;
}

.sidebar .widget_recent_comments ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_recent_comments ul li {
    width: 100%;
    display: block;
    margin: 0;
    margin-bottom: 10px;
    padding: 3px 0;
    list-style: none;
    color: #727479;
    position: relative;
    padding-left: 15px;
}

.sidebar .widget_recent_comments ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #0e0e0e;
    position: absolute;
    left: 0;
    top: 12px;
    border-radius: 50%;
}

.sidebar .widget_recent_comments ul li:last-child {
    margin-bottom: 0;
}

.sidebar .widget_recent_comments ul li .comment-author-link a {
    text-decoration: none;
    font-weight: 600;
}

.sidebar .widget_recent_comments ul li a {
    margin: 0;
    color: #0e0e0e;
    text-decoration: underline;
}

.sidebar .widget_recent_comments ul li a:hover {
    text-decoration: none;
}

.sidebar .widget_recent_entries {
    position: relative;
}

.sidebar .widget_recent_entries ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_recent_entries ul li {
    width: 100%;
    display: block;
    margin: 0;
    margin-bottom: 20px;
    padding: 3px 0;
    list-style: none;
    color: #727479;
}

.sidebar .widget_recent_entries ul li:last-child {
    margin-bottom: 0;
}

.sidebar .widget_recent_entries ul li a {
    margin: 0;
}

.sidebar .widget_rss {
    position: relative;
}

.sidebar .widget_rss .rss-widget-icon {
    display: none;
}

.sidebar .widget_rss ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_rss ul li {
    width: 100%;
    display: block;
    margin: 0;
    margin-bottom: 10px;
    padding: 3px 0;
    list-style: none;
}

.sidebar .widget_rss ul li:last-child {
    margin-bottom: 0;
}

.sidebar .widget_rss ul li .rss-date {
    width: 100%;
    display: block;
    font-size: 12px;
    color: #727479;
    margin: 5px 0;
}

.sidebar .widget_rss ul li .rssSummary {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.sidebar .widget_rss ul li cite {
    display: block;
    font-family: georgia;
    color: #727479;
}

.sidebar .widget_rss ul li a {
    margin: 0;
    color: #0e0e0e;
    font-weight: 600;
}

.sidebar .widget_text {
    position: relative;
}

.sidebar .widget_text .wp-caption-text {
    margin-top: 0;
}

.sidebar .widget_text img {
    height: auto;
    margin-top: 5px;
    margin-bottom: 10px;
}

.sidebar .widget_text a {
    display: inline-block;
}

.sidebar .widget_text p {
    margin-bottom: 20px;
}

.sidebar .widget_text p:empty {
    display: none;
}

.sidebar .widget_tag_cloud {
    position: relative;
}

.sidebar .widget_tag_cloud .tagcloud {
    width: 100%;
    display: block;
}

.sidebar .widget_tag_cloud .tagcloud a {
    color: #fff;
    background: #9f8054;
    display: inline-block;
    font-size: 12px !important;
    padding: 3px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.sidebar .widget_tag_cloud .tagcloud a:hover {
    color: #fff;
    background: #0e0e0e;
    text-decoration: none;
}

.sidebar .widget_nav_menu {
    position: relative;
}

.sidebar .widget_nav_menu ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.sidebar .widget_nav_menu ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    color: #727479;
}

.sidebar .widget_nav_menu ul li ul {
    padding-left: 17px;
}

.sidebar .widget_nav_menu ul li a {
    margin: 0;
    color: #0e0e0e;
}

/* FOOTER WIDGETS */
.footer-widget {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 40px;
}

.footer-widget table th,
.footer-widget table td {
    padding: 0;
    text-align: center;
}

.footer-widget a {
    color: #fff;
}

.footer-widget .widget-title {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
    font-weight: 600;
    font-size: 15px;
}

.footer-widget .screen-reader-text {
    display: none;
}

.footer-widget .calendar_wrap {
    width: 100%;
    display: block;
}

.footer-widget .calendar_wrap caption {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.footer-widget .calendar_wrap table {
    width: 100%;
}

.footer-widget .recentcomments {
    margin-bottom: 10px !important;
}

.footer-widget .recentcomments .comment-author-link {
    text-decoration: underline;
}

.footer-widget .recentcomments .comment-author-link a {
    font-weight: 400;
}

.footer-widget .recentcomments a {
    font-weight: 600;
}

.footer-widget .rss-widget-icon {
    display: none;
}

.footer-widget .rsswidget {
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-widget .rss-date {
    width: 100%;
    display: block;
    font-size: 13px;
    opacity: 0.3;
}

.footer-widget .rssSummary {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.footer-widget .textwidget {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.footer-widget .search-form {
    width: 100%;
    display: block;
}

.footer-widget .search-form label {
    width: 100%;
}

.footer-widget .tagcloud {
    width: 100%;
    display: block;
}

.footer-widget .tagcloud a {
    font-size: 13px !important;
    margin-right: 10px;
    margin-bottom: 5px;
}

.footer-widget img {
    margin-top: 5px;
    margin-bottom: 10px;
    height: auto;
    width: 100%;
}

.footer-widget strong {
    font-weight: 600;
}

.footer-widget cite {
    width: 100%;
    display: block;
    font-family: georgia;
    font-size: 13px;
    margin-bottom: 30px;
}

.footer-widget select {
    width: 100%;
}

.footer-widget input[type="search"] {
    width: 100%;
    border: none;
    padding: 0 15px;
}

.footer-widget ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-widget ul li {
    width: 100%;
    display: block;
    margin: 2px 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li ul {
    padding-left: 10px !important;
}

/* WOOCOMMERCE COMPATIBLE */
.woocommerce {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.woocommerce .woocommerce-notices-wrapper {
    width: 100%;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
    width: 100%;
    display: block;
    line-height: 40px;
    margin-bottom: 50px;
    padding: 20px 30px;
    padding-left: 60px;
    background: none;
    border: 1px solid #eee;
    box-shadow: 6px 6px 0 #f5f5f5;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    top: 21px;
    left: 30px;
    font-size: 20px;
    color: green;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message .button {
    border-radius: 0;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    padding: 0 20px;
    background: #0e0e0e;
    color: #fff;
}

.woocommerce .woocommerce-result-count {
    line-height: 50px;
    margin-bottom: -50px;
}

.woocommerce .woocommerce-ordering {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.woocommerce .woocommerce-ordering select {
    height: 50px;
    float: right;
}

.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.woocommerce ul.products.columns-3 {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce ul.products.columns-3 li.product {
    width: 33.33333%;
    display: inline-block;
    margin: 0;
    margin-bottom: 40px;
    padding: 0 15px;
}

.woocommerce ul.products.columns-4 {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce ul.products.columns-4 li.product {
    width: 25%;
    display: inline-block;
    margin: 0;
    margin-bottom: 40px;
    padding: 0 15px;
}

.woocommerce ul.products li.product .onsale {
    border-radius: 0;
    right: 25px;
    top: 10px;
    margin: 0;
    padding: 0 15px;
    background: #9f8054;
}

.woocommerce ul.products li.product .price {
    color: #0e0e0e;
    font-size: 18px;
}

.woocommerce ul.products li.product .price ins {
    float: right;
}

.woocommerce ul.products li.product .button {
    padding: 0;
    margin: 0;
    color: #0e0e0e;
    text-transform: uppercase;
    background: none;
    border-radius: 0;
}

/* PRODUCT PAGE */
.woocommerce .blog-post .post-image {
    display: none;
}

.woocommerce div.product {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.woocommerce span.onsale {
    border-radius: 0;
    left: 10px;
    top: 10px;
    margin: 0;
    padding: 0 15px;
    background: #9f8054;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    border-radius: 0;
}

.woocommerce div.product div.images .flex-control-thumbs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    flex: 1;
}

.woocommerce div.product div.summary {
    padding-left: 50px;
}

.woocommerce div.product p.price {
    color: #0e0e0e;
    font-size: 28px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    width: 100%;
    display: block;
}

.woocommerce div.product form.cart {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.woocommerce .quantity .qty {
    height: 60px;
}

.woocommerce div.product form.cart .button {
    height: 60px;
    border-radius: 0;
    background: #0e0e0e;
    color: #fff;
}

.woocommerce div.product form.product_meta {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.woocommerce div.product .product_meta .posted_in {
    width: 100%;
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}

.woocommerce div.product .product_meta .posted_in a {
    font-weight: 400;
    text-decoration: underline;
}

.woocommerce div.product .product_meta .tagged_as {
    width: 100%;
    display: block;
    font-weight: 600;
}

.woocommerce div.product .product_meta .tagged_as a {
    font-weight: 400;
    text-decoration: underline;
}

.woocommerce div.product .woocommerce-tabs {
    width: 100%;
    display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 1px solid #eee;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 0;
    border: 1px solid #eee;
    margin: 0;
    padding: 0 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    padding: 0;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    font-weight: 400;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs .panel {
    width: 100%;
    display: block;
    border: 1px solid #eee;
    border-top: none;
    padding: 30px;
    box-shadow: 6px 6px 0 #f5f5f5;
    margin-bottom: 60px;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.woocommerce div.product .woocommerce-tabs .panel p:last-child {
    margin-bottom: 0;
}

.related.products {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.related.products h2 {
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.related.products .products.columns-4 {
    padding-left: 0;
}

.related.products .products.columns-3 {
    padding-left: 0;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-wrapper {
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-wrapper:hover,
.search-wrapper.active {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: #e9ecef;
}

.search-input-wrapper {
    flex-grow: 1;
    position: relative;
    cursor: pointer;
}

.search-input {
    border: none !important;
    outline: none !important;
    background: transparent;
    font-size: 16px;
    color: #333;
    width: 100%;
    padding: 12px 0;
    cursor: pointer;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-icon {
    color: #666;
    margin-right: 15px;
    font-size: 18px;
}

.search-btn {
    background: var(--color-black);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.search-btn:hover {
    background: var(--color-black-light);
    transform: translateY(-1px);
    color: white !important;
    box-shadow: 0 8px 25px rgba(44, 95, 93, 0.3);
}

.dd-menu {
    /* position: absolute; */
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: none;
    margin-top: 10px;
    padding: 20px 0;
    z-index: 2500;
    max-height: 300px;
    overflow-y: auto;
}

.city-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.city-item:hover {
    background: #f8f9fa;
    color: #2c5f5d;
    text-decoration: none;
}

.city-icon {
    color: #666;
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.city-name {
    font-size: 16px;
    font-weight: 500;
}

.search-results-text {
    padding: 15px 25px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

/* Custom scrollbar */
.dd-menu::-webkit-scrollbar {
    width: 6px;
}

.dd-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dd-menu::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.dd-menu::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .search-container {
        margin: 0 20px;
    }

    .search-wrapper {
        padding: 6px 6px 6px 16px;
    }

    .search-input {
        font-size: 14px;
        padding: 10px 0;
    }

    .search-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .city-item {
        padding: 10px 20px;
    }

    .city-name {
        font-size: 15px;
    }
}

/* Animation for dropdown */
.dropdown-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.dropdown-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.city-card {
    border: none;
    box-shadow: none;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.gallery-thumb {
    margin: 0;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-card:hover .gallery-thumb img {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c5f5d;
    margin: 0;
    background: rgba(248, 249, 250, 0.9) !important;
    border-radius: 0 0 15px 15px;
}

/* Grid Heights for Different Layouts */
.city-small .gallery-thumb {
    height: 200px;
}

.city-medium .gallery-thumb {
    height: 250px;
}

.city-large .gallery-thumb {
    height: 400px;
}

.city-xlarge .gallery-thumb {
    height: 500px;
}

/* Custom border radius for specific images */
.rounded-corner {
    border-top-right-radius: 70px !important;
}

.px-lg-6,
.py-lg-6 {
    padding: 0 !important; /* remove all padding by default */
}

@media (min-width: 992px) {
    .px-lg-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .section-titles h2 {
        font-size: 1.5rem;
    }
    .video-section h2 {
        font-size: 1.5rem;
    }

    .mob-video-h2 {
        font-size: 1.5rem;
    }

    .city-small .gallery-thumb,
    .city-medium .gallery-thumb,
    .city-large .gallery-thumb,
    .city-xlarge .gallery-thumb {
        height: 250px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .city-large .gallery-thumb {
        height: 300px;
    }

    .city-xlarge .gallery-thumb {
        height: 350px;
    }
}

/* Hero Section Styling */
.hero-section {
    height: 80vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Mobile override */
@media (max-width: 767px) {
    .hero-section {
        height: 35vh;
    }
    .slider {
        height: 35vh;
        min-height: 0px;
    }
}

/* Floating Search Container */
.floating-search-container {
    position: relative;
    z-index: 1;
    margin-top: -60px;
    margin-bottom: 60px;
}

.hamburger-wrapper {
    position: relative;
    z-index: 200;
}

/* Lower the search dropdown z-index */
.dd-menu {
    position: absolute;
}

/* Also ensure the search wrapper doesn't interfere */
.search-wrapper {
    position: relative;
    z-index: 1; /* Very low */
}

.search-wrapper.active {
    z-index: 1; /* Keep it low even when active */
}

/* Search Input Section */
.search-input-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: text;
}

.search-input-section:hover {
    background-color: #f8f9fa;
}

.search-icon {
    color: #6c757d;
    margin-right: 12px;
    font-size: 18px;
}

.search-input {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    background: transparent;
    width: 100%;
}

.search-input::placeholder {
    color: #6c757d;
    font-weight: 400;
}

testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: "Georgia", serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 500px;
}

.testimonial-card {
    height: 400px;
    border-radius: 40px;
    border: none;
    padding: 2.5rem;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.card-yellow {
    background: linear-gradient(135deg, var(--card-yellow) 0%, #f5f0d8 100%);
    color: #5a5a5a;
}

.card-peach {
    background: linear-gradient(135deg, var(--card-peach) 0%, #f0dcc9 100%);
    color: #5a5a5a;
}

.card-blue {
    background: linear-gradient(135deg, var(--card-blue) 0%, #1e4644 100%);
    color: white;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-location {
    font-size: 1rem;
    opacity: 0.8;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) opacity(0.7);
}

.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .testimonial-grid {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        height: 280px;
        margin: 0;
        padding: 2rem;
        width: 100%;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: -25px;
    }

    .carousel-control-next {
        right: -25px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        height: 250px;
        padding: 1.5rem;
        margin: 0;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Search Container */
.property-search-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 15px;
    padding: 25px;
}

.search-field label {
    color: var(--marriott-medium-gray);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-field label i {
    font-size: 12px;
}

.search-field input,
.search-field select {
    border: none;
    border-bottom: 1px solid transparent;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: var(--marriott-dark);
    padding: 8px 0;
    width: 100%;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-bottom: 2px solid var(--marriott-red);
}

.update-search-btn {
    background-color: var(--marriott-light-gray);
    border: 2px solid var(--marriott-border);
    color: var(--marriott-dark);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
}

.update-search-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Filters */
.filters-container {
    margin: 0 15px 20px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-btn.all-filters {
    background-color: var(--marriott-dark);
    color: white;
}

.filter-btn.inactive {
    background-color: white;
    color: var(--marriott-dark);
    border: 1px solid var(--marriott-border);
}

.filter-btn.inactive:hover {
    background-color: var(--marriott-light-gray);
}

.filter-btn.pool-filter {
    background-color: white;
    border: 1px solid var(--marriott-border);
    color: var(--marriott-dark);
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px 20px 15px;
    font-size: 14px;
    color: var(--marriott-medium-gray);
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sort-dropdown {
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--marriott-dark);
    font-size: 14px;
}

/* Hotel Cards */
.hotel-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 15px 20px 15px;
    overflow: hidden;
    position: relative;
}

.hotel-price {
    display: inline-flex;
    align-items: baseline;
    background: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hotel-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: -4px;
    right: -4px;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 100%
    );
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-price:hover::before {
    opacity: 1;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: #6366f1;
    margin-right: 1px;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.025em;
    line-height: 1;
}

.night {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-left: 2px;
}

.hotel-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
}

.hotel-badge.recently-viewed {
    background-color: var(--marriott-orange);
    color: white;
}

.hotel-badge.new {
    background-color: var(--marriott-orange);
    color: white;
}

.hotel-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.hotel-image-slider {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.hotel-image {
    min-width: 100%;
    height: 100;
    overflow: hidden; /* Add this line */
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--marriott-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.image-nav:hover {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.image-nav.prev {
    left: 15px;
}

.image-nav.next {
    right: 15px;
}

.image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Fix the image sizing - this replaces your current .hotel-image img rule */
.hotel-image img,
.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Keep your existing slider CSS but ensure proper sizing */
.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hotel-brand {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    z-index: 5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hotel-info {
    padding: 25px;
    height: 320px;
}

.hotel-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--marriott-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--marriott-medium-gray);
    flex-wrap: wrap;
}

.star-rating {
    color: #ffd700;
    font-weight: 600;
}

.hotel-description {
    color: var(--marriott-medium-gray);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hotel-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-details {
    color: var(--marriott-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.view-details:hover {
    color: var(--marriott-red);
    text-decoration: none;
}

.view-rates-btn {
    background-color: var(--marriott-dark);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.view-rates-btn:hover {
    background-color: #1a1a1a;
}

.map-btn {
    background-color: white;
    border: 1px solid var(--marriott-border);
    color: var(--marriott-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.map-btn:hover {
    background-color: var(--marriott-light-gray);
}

/* Destination Dropdown */
.destination-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--marriott-border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-mobile .dropdown-item:hover,
.dropdown-mobile .dropdown-item:focus,
.dropdown-mobile .dropdown-item:active {
    background-color: #000 !important; /* black */
    color: #fff !important; /* white text for contrast */
}

.destination-dropdown-header {
    padding: 20px 20px 15px 20px;
    border-bottom: 1px solid var(--marriott-border);
}

.destination-dropdown-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--marriott-dark);
    margin-bottom: 5px;
}

.destination-dropdown-subtitle {
    color: #c0c0c0;
    font-size: 20px;
    font-weight: 300;
}

.location-section {
    padding: 15px 0;
}

.location-section-title {
    padding: 0 20px 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--marriott-medium-gray);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.location-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.location-item:hover {
    background-color: var(--marriott-light-gray);
}

.location-icon {
    color: var(--marriott-orange);
    font-size: 14px;
    width: 16px;
}

.location-text {
    font-size: 16px;
    color: var(--marriott-dark);
    font-weight: 500;
}

.clear-recents {
    padding: 15px 20px;
    color: var(--marriott-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.clear-recents:hover {
    color: var(--marriott-red);
}

.destination-field-container {
    position: relative;
}

/* Mobile Bottom Navigation */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--marriott-dark);
    color: white;
    padding: 8px 0;
    z-index: 1000;
}

.mobile-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.mobile-nav-icon {
    font-size: 16px;
    cursor: pointer;
}

.mobile-nav-url {
    font-size: 13px;
    color: #ccc;
}

/* Desktop Layout (Large screens) */
@media (min-width: 992px) {
    .property-search-container {
        margin: 30px 0;
        padding: 30px;
    }

    .hotel-card {
        margin: 0 0 25px 0;
        height: 320px;
    }

    .hotel-image {
        width: 100%;
        height: 320px; /* Match card height */
        overflow: hidden;
    }

    .hotel-image-container {
        width: 45%;
        height: 100%;
    }

    .hotel-name {
        font-size: 26px;
    }

    .filters-container {
        margin: 0 0 30px 0;
    }

    .results-header {
        margin: 0 0 25px 0;
    }

    .mobile-nav {
        display: none;
    }

    .map-btn {
        display: none;
    }
}

/* Tablet Layout */
@media (min-width: 768px) and (max-width: 991px) {
    .property-search-container {
        margin: 20px 10px;
        padding: 25px;
    }

    .hotel-card {
        margin: 0 10px 20px 10px;
        height: 280px; /* Fixed height for tablets */
    }

    .hotel-image {
        width: 100%;
        height: 280px; /* Match card height */
        overflow: hidden;
    }

    .filters-container {
        margin: 0 10px 20px 10px;
    }

    .results-header {
        margin: 0 10px 20px 10px;
    }

    .mobile-nav {
        display: none;
    }

    .map-btn {
        display: none;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }

    .header {
        padding: 8px 0;
    }

    .header-nav {
        font-size: 12px;
        gap: 15px;
        justify-content: center;
    }

    .property-search-container {
        margin: 15px 10px;
        padding: 20px;
        border-radius: 12px;
    }

    .search-field {
        margin-bottom: 15px;
    }

    .search-field input,
    .search-field select {
        font-size: 16px;
    }
    .hotel-card {
        margin: 0 10px 20px 10px;
        border-radius: 12px;
        /* Remove any fixed height for mobile - let content determine height */
    }

    .hotel-image {
        width: 100%;
        height: 250px; /* Fixed height for mobile images */
        overflow: hidden;
    }

    .hotel-image-container {
        height: 220px;
    }

    .hotel-name {
        font-size: 20px;
    }

    .hotel-info {
        padding: 35px;
        height: 100%;
    }

    .hotel-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .view-rates-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .filters-container {
        margin: 0 10px 15px 10px;
    }

    .filter-btn {
        font-size: 13px;
        padding: 8px 15px;
    }

    .results-header {
        margin: 0 10px 15px 10px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .header-nav {
        gap: 10px;
        font-size: 11px;
    }

    .header-nav span {
        display: none;
    }

    .property-search-container {
        margin: 10px 5px;
        padding: 15px;
    }

    .hotel-card {
        margin: 0 5px 15px 5px;
    }

    .image-nav {
        top: 50%;
    }

    .filters-container {
        margin: 0 5px 15px 5px;
    }

    .results-header {
        margin: 0 5px 15px 5px;
    }
}
/* All Filters Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 25px 25px 20px 25px;
    border-bottom: 1px solid var(--marriott-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--marriott-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--marriott-medium-gray);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--marriott-dark);
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--marriott-dark);
    margin-bottom: 15px;
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.filter-option label {
    font-size: 14px;
    color: var(--marriott-dark);
    cursor: pointer;
    flex: 1;
    text-transform: none;
    margin-bottom: 0;
}

.filter-count {
    color: var(--marriott-medium-gray);
    font-size: 13px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--marriott-border);
    display: flex;
    gap: 15px;
}

.btn-clear {
    background: white;
    border: 1px solid var(--marriott-border);
    color: var(--marriott-dark);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    flex: 1;
}

.btn-apply {
    background: var(--marriott-dark);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    flex: 1;
}

@media (max-width: 767px) {
    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* Custom Radio Button Styling */
.custom-radio {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-black);
}

.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio .radio-mark {
    height: 20px;
    width: 20px;
    background-color: var(--color-white);
    border: 2px solid var(--marriott-border);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-radio input[type="radio"]:checked ~ .radio-mark {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.custom-radio input[type="radio"]:checked ~ .radio-mark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-white);
    transform: translate(-50%, -50%);
}

.custom-radio:hover .radio-mark {
    border-color: var(--marriott-medium-gray);
}

.custom-radio input[type="radio"]:focus ~ .radio-mark {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Custom Checkbox Styling */
.custom-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-black);
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .checkbox-mark {
    height: 20px;
    width: 20px;
    background-color: var(--color-white);
    border: 2px solid var(--marriott-border);
    border-radius: 3px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-mark {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-mark:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox:hover .checkbox-mark {
    border-color: var(--marriott-medium-gray);
}

.custom-checkbox input[type="checkbox"]:focus ~ .checkbox-mark {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
/* Count styling */
.option-count {
    color: var(--marriott-medium-gray);
    font-weight: 500;
    margin-left: auto;
}

/* Skeleton loading styles */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-text.wide {
    width: 80%;
}

.skeleton-text.medium {
    width: 60%;
}

.skeleton-text.narrow {
    width: 40%;
}

.skeleton-text.small {
    width: 25%;
    height: 0.8rem;
}

.skeleton-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.skeleton-button {
    height: 2.5rem;
    border-radius: 6px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.skeleton-button.primary {
    width: 120px;
}

.skeleton-button.secondary {
    width: 160px;
}

.skeleton-price {
    height: 2rem;
    width: 100px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.skeleton-title {
    height: 1.5rem;
    width: 70%;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.skeleton-dropdown {
    height: 2.25rem;
    width: 150px;
    border-radius: 4px;
}

/* Pulse animation for variety */
.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.rounded-xlg {
    border-radius: 22px;
}

/*# sourceMappingURL=style.css.map */
