/*
Theme Name: Vine Valley Real Estate
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.4
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/

@font-face {
    font-family: "Josefin Sans";
    src: url("./fonts/josefin-sans/josefinsans-regular-webfont.woff2") format("woff2"), url("./fonts/josefin-sans/josefinsans-regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Josefin Sans";
    src: url("./fonts/josefin-sans/josefinsans-light-webfont.woff2") format("woff2"), url("./fonts/josefin-sans/josefinsans-light-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Josefin Sans";
    src: url("./fonts/josefin-sans/josefinsans-semibold-webfont.woff2") format("woff2"), url("./fonts/josefin-sans/josefinsans-semibold-webfont.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Josefin Sans";
    src: url("./fonts/josefin-sans/josefinsans-bold-webfont.woff2") format("woff2"), url("./fonts/josefin-sans/josefinsans-bold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Brittany Signature';
    src: url('./fonts/brittany/BrittanySignatureRegular.eot');
    src: url('./fonts/brittany/BrittanySignatureRegular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/brittany/BrittanySignatureRegular.woff2') format('woff2'),
        url('./fonts/brittany/BrittanySignatureRegular.woff') format('woff'),
        url('./fonts/brittany/BrittanySignatureRegular.ttf') format('truetype'),
        url('./fonts/brittany/BrittanySignatureRegular.svg#BrittanySignatureRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/


/* Menu and Sub Menus*/

.aios-split-nav,
.fixed-header-nav {
    position: relative;
    display: block;
    z-index: 1;
}


.aios-split-nav > li,
.fixed-header-nav > li {
    position: relative;
/*
    display: inline-block;
    vertical-align: middle;
    padding: 0 30px;
*/
}

.aios-split-nav > li:first-child,
.fixed-header-nav > li:first-child {
    padding-left: 0;
}

.aios-split-nav > li:first-child::before,
.fixed-header-nav > li:first-child::before {
    display: none;
}

.aios-split-nav > li:last-child,
.fixed-header-nav > li:last-child {
    padding-right: 0;
}


/*
.aios-split-nav > li::before,
.fixed-header-nav > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    height: 15px;
    width: 1px;
}
*/

.aios-split-nav > li > a,
.fixed-header-nav > li > a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font: 400 16px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    padding-top: .4em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.aios-split-nav > li:hover > a,
.fixed-header-nav > li:hover > a {
    color: #d8bc6b;
}

.fixed-header-nav > li > a {
    font: 400 13px/1 "Lato", sans-serif;
    color: #252525;
}

.aios-split-nav > li:hover > a::after,
.fixed-header-nav > li:hover > a::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}


/* 2nd Layer Menu */

.aios-split-nav > li:hover > .sub-menu,
.fixed-header-nav > li:hover > .sub-menu {
    display: block;
    visibility: visible;
    /* shows sub-menu */
    opacity: 1;
    z-index: 5;
    -webkit-transition-delay: 0s, 0s, 0.4s;
    transition-delay: 0s, 0s, 0.4s;
    -webkit-animation: menu-transition 1.5s ease-in-out;
    animation: menu-transition 1.5s ease-in-out;
}

.aios-split-nav .sub-menu,
.fixed-header-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    display: none;
    opacity: 0;
    padding-top: 10px;
    position: absolute;
    min-width: 208px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    visibility: hidden;
    overflow: hidden;
}

.toggle-fixed-header .aios-split-nav .sub-menu {
    padding-top: 26px;
}

.aios-split-nav .sub-menu > li,
.fixed-header-nav .sub-menu > li {
    position: relative;
    padding-bottom: 1px;
}

.aios-split-nav .sub-menu > li,
.fixed-header-nav .sub-menu > li {
    background: transparent;
}

.aios-split-nav .sub-menu > li > a,
.fixed-header-nav .sub-menu > li > a {
    display: block;
    padding: 10px;
    font: 400 15px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    padding-top: 1.04em;
    background: rgba(0, 0, 0, 1);
}

.aios-split-nav .sub-menu > li > a:hover,
.fixed-header-nav .sub-menu > li > a:hover {
    text-decoration: none;
    background: #d8bc6b;
    color: #000;
}


/* 3rd Layer Menu */

.aios-split-nav .sub-menu .sub-menu,
.fixed-header-nav .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
}

@-webkit-keyframes menu-transition {
    from {
        max-height: 0;
    }
    to {
        max-height: 1000px;
    }
}

@keyframes menu-transition {
    from {
        max-height: 0;
    }
    to {
        max-height: 1000px;
    }
}

@-webkit-keyframes autofill {
    to {
        color: #fff;
        background: transparent;
    }
}


/*******************************************************
   *
   * 2. Custom CSS
   *
   *******************************************************/


/* Global */

body {
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    background: #fff;
    color: #000000;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div#main-wrapper {
    overflow: hidden;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

.slick-slider,
.slick-slider *,
.slick-slider a,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

@-moz-document url-prefix() {
    select {
        text-indent: -2px;
    }
}

@supports (-ms-ime-align: auto) {
    select {
        text-indent: -2px;
    }
}

.sxn {
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    font-size: 0;
    z-index: 1;
}

.bg-light {
    background: #fff;
}

.bg-dark {
    background: rgba(0, 0, 0, 0.5);
}

.sxn-container {
    position: relative;
    width: 100%;
    max-width: 1450px;
    padding: 0 15px;
    margin: 0 auto;
}

.sxn-heading {
    position: relative;
    display: inline-block;
    font: 400 60px/1.2 "Marcellus", sans-serif;
    color: #000;
    text-transform: uppercase;
    text-align: center;
}

.sxn-heading span {
    display: block;
    font: 400 24px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.32em;
    color: #686868;
}

.sxn-heading--small {
    position: relative;
    display: block;
    font: 600 24px/1.2 "Josefin Sans", sans-serif;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sxn-heading--line {
    overflow: hidden;
}

.sxn-heading--line span {
    position: relative;
    display: inline-block;
}

.sxn-heading--line span::before,
.sxn-heading--line span::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100vw;
}

.sxn-heading--line span::before {
    right: 100%;
    margin-right: 20px;
}


/*.hero-sxn {
  z-index: 2;
}*/

.cycloneslider-template-video .cycloneslider-volume {
    top: 115px !important;
}

.sxn-heading--line span::after {
    left: 100%;
    margin-left: 20px;
}

.sxn-link {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    max-width: 175px;
    width: 100%;
    min-height: 45px;
    font: 700 13px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #000;
}

.sxn-link:hover,
.sxn-link:focus {
    color: #fff;
    background: #d8bc6b;
}

.contact-list li {
    display: inline-block;
    vertical-align: middle;
}

.contact-list li a,
.contact-list li span {
    font: 300 20px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
}

.contact-list li a:hover {
    color: #d8bc6b;
}

.contact-list em[class^="ai-font-"] {
    font-size: 12px;
    color: #d8bc6b;
    margin-right: 10px;
}

.contact-list em[class^="ai-font-envelope"] {
    font-size: 10px;
}

.contact-list em[class^="ai-font-location"] {
    font-size: 17px;
}

.contact-list.ft {
    margin-top: 57px;
}

.contact-list.ft li {
    margin-right: 95px;
}

.contact-list.ft li:last-child {
    margin-right: 0;
}

.contact-list.sd li {
    margin-top: 5px;
}

.contact-list.sd li.email a {
    font-size: 16px;
}

.contact-list.sd a,
.contact-list.sd span {
    font: 300 18px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #000;
}

.contact-list.sd em[class^="ai-font-"] {
    color: #000;
}

.smi-list > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
}

.smi-list .smi-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-sizing: border-box;
    width: 54px;
    height: 54px;
    font-size: 23px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(216, 188, 107, 0.3);
    background: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.smi-list .smi-link:hover {
    border-color: #d8bc6b !important;
    background: #d8bc6b;
    color: #fff !important;
}

.smi-list.sd {
    margin-top: 15px;
}

.smi-list.sd > li {
    margin: 0 5px;
}

.smi-list.sd .smi-link {
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.3);
    width: 46px;
    height: 46px;
}

.smi-list.ft {
    margin-top: 30px;
}


/* Floating Contact Form */

.floating-form-view {
    position: fixed;
    top: 0;
    right: 0;
    font-size: 0;
    letter-spacing: 0;
    height: 100%;
    z-index: 1033;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
}


/* .home .floating-view-wrap {
  display: block;
} */

.floating-view-wrap {
    display: block;
    position: relative;
    width: 330px;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    pointer-events: auto;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.floating-view-wrap > div {
    height: 100%;
}

.floating-view-wrap.is-open .floating-body {
    opacity: 1;
}

.floating-form--btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 203px;
    height: 66px;
    background: #000;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 2;
    -webkit-transform: rotate(270deg) translateZ(0);
    transform: rotate(270deg) translateZ(0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    right: 66px;
    top: calc(50% + 101.5px);
}

.floating-form--btn span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font: 400 16px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.2em;
    color: #e5d48f;
    text-transform: uppercase;
    padding-right: 20px;
    margin-right: 20px;
    padding-top: 5px;
}

.floating-form--btn span::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
}

.floating-form--btn em {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: rotate(-90deg) translateZ(0);
    transform: rotate(-90deg) translateZ(0);
    font-size: 7px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: #e5d48f;
}

.floating-form--btn.is-active em {
    -webkit-transform: rotate(-270deg) translateZ(0);
    transform: rotate(-270deg) translateZ(0);
}

.floating-body {
    position: absolute;
    top: 0;
    background: white;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 50px 40px 15px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.floating-body .sxn-heading {
    font-size: 40px;
    margin-bottom: 17px;
    margin-top: 85px;
}

.floating-body .sxn-heading span {
    font-size: 18px;
}

.floating-body img {
    display: block;
    width: 100%;
    max-width: 235px;
    margin: 0 auto;
}

.floating-body div.wpcf7 {
    position: relative;
    margin-bottom: 80px;
}

.floating-body div.wpcf7-response-output {
    font-size: 12px;
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0;
    text-align: center;
    color: #000;
}

.floating-body .form-view {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.floating-body .form-view .field-wrap {
    position: relative;
    margin-bottom: 12px;
}

.floating-body .form-view .field-wrap:nth-child(4) {
    margin: 0;
}

.floating-body .form-view input[type*="text"],
.floating-body .form-view input[type*="tel"],
.floating-body .form-view input[type*="email"] {
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    height: 39px;
    border: none;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0;
    background: transparent;
    outline: none;
    font: 400 11px/39px "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
}

.floating-body .form-view textarea {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 89px;
    border: none;
    padding: 13px 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0;
    background: transparent;
    outline: none;
    resize: none;
    overflow: hidden;
    font: 400 11px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
}

.floating-body .form-view input[type*="submit"] {
    position: relative;
    display: block;
    box-sizing: border-box;
    font: 700 13px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    margin: 0 auto;
    outline: none;
    border: none;
    min-height: 45px;
    width: 100%;
    max-width: 132px;
    background: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.floating-body .form-view input[type*="submit"]:hover {
    color: #fff;
    background: #d8bc6b;
}

.floating-body .form-view .wpcf7-form-control-wrap {
    display: block;
}

.floating-body .form-view span.wpcf7-not-valid-tip {
    font-size: 11px;
}

.floating-body .form-view .ajax-loader {
    position: absolute;
    margin: 0 !important;
    top: calc(100%);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* Burger Menu */

.bm-drop,
.floating-form-drop {
    position: fixed;
    z-index: 1032;
    top: 0;
    left: 0;
    right: initial;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.bm-drop {
    z-index: 1035;
}

.bm-menu {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 0;
    letter-spacing: 0;
    right: initial;
    z-index: 1036;
    visibility: hidden;
    height: 100%;
    width: 49%;
    max-width: 785px;
    background: rgba(0, 0, 0, 0.88);
    background-position: center center;
    background-size: cover;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.bm-btn-wrap {
    position: absolute;
    z-index: 1030;
    top: 52px;
    left: 0;
    right: 0;
}

.bm-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 58px;
    height: 52px;
    padding: 0 14px;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bm-btn .bm-inner {
    position: relative;
    width: 100%;
}

.bm-btn span,
.bm-btn span::before,
.bm-btn span::after {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #f2ebb7;
    display: block;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bm-btn span::before,
.bm-btn span::after {
    display: block;
    content: "";
}

.bm-btn span::before {
    top: -9px;
    width: 49%;
}

.bm-btn span::after {
    top: 9px;
    width: 78%;
}

.bm-btn.is-active {
    opacity: 0;
    visibility: hidden;
}

.bm-btn.bm-close {
    opacity: 1;
    visibility: visible;
}

.bm-btn.bm-close span {
    -webkit-transform: translate3d(0, -2px, 0) rotate(45deg);
    transform: translate3d(0, -2px, 0) rotate(45deg);
}

.bm-btn.bm-close span::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
    width: 100%;
}

.bm-btn.bm-close span::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
    transform: translate3d(0, -20px, 0) rotate(-90deg);
    top: 20px;
    width: 100%;
}

.bm-content {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.bm-head {
    padding: 52px 0 107px;
}

.bm-head .bm-btn {
    margin-left: 45px;
}

.bm-body {
    padding: 0 25px 0 90px;
}

.bm-view.is-open,
.floating-view.is-open {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slider-nav {
    font-size: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.slider-nav > li {
    display: inline-block;
    width: calc(50% - 55px);
    margin-right: 55px;
    margin-bottom: 70px;
    pointer-events: none;
}

.slider-nav > li:hover > a {
    color: #d8bc6b;
}

.slider-nav > li > a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font: 400 30px/1.2 "Marcellus", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.slider-nav .sub-menu > li {
    position: relative;
    pointer-events: none;
    display: block;
}

.slider-nav .sub-menu > li:hover > a {
    color: #d8bc6b;
}

.slider-nav .sub-menu > li > a {
    position: relative;
    font: 300 18px/22px "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #aeaeae;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Header */

#main-header {
    position: absolute;
    z-index: 1020;
    padding-top: 42px;
}

#main-header.toggle-fixed-header {
    position: fixed;
    z-index: 1030;
    background: rgba(0, 0, 0, 0.8);
    padding: 25px 0;
}

.toggle-fixed-header .header-logo img {
    max-width: 262px;
}

.toggle-fixed-header .header-contact {
    opacity: 0;
    pointer-events: none;
}

.toggle-fixed-header .header-others a.ips-link {
    font-size: 11.22px;
}

.header-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.toggle-fixed-header .header-main {
    align-items: center;
}

.header-bm {
    cursor: pointer;
}

.header-bm.bm-btn {
    position: absolute;
    top: 40px;
    left: 24px;
    z-index: 1;
}

.toggle-fixed-header .header-bm.bm-btn {
    top: 50%;
    transform: translateY(-50%);
}

.header-bm.bm-btn:hover span::before,
.header-bm.bm-btn:hover span::after {
    width: 100%;
}

.header-logo {
    padding: 0 15px;
}

.header-logo {
    width: 44%;
    margin: 0 auto;
}

.header-logo img {
    width: 100%;
    max-width: 391px;
    margin: 0 auto;
}

.header-left,
.header-right {
    width: 28%;
    display: flex;
    justify-content: space-between;
}

.header-misc {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1370px;
    padding: 0 110px;
}

.toggle-fixed-header .header-misc {
    display: none;
}


/*
.header-contact {
    padding-left: 134px;
}

.header-others {
    padding-right: 110px;
}
*/

.header-others li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 8px;
}

.header-others li:first-child::before {
    display: none;
}

.header-others li:last-child {
    padding-right: 0;
}

.header-others li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

.header-others .g-translate select {
    display: block;
    background: url(images/globe-icon.png) no-repeat center right;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font: 500 23px/1.2 "Josefin Sans", sans-serif;
    color: #fff;
    width: 223px;
}


/*
.header-others .g-translate select:hover {
    -webkit-transform: scale(1.1) translateZ(0);
    transform: scale(1.1) translateZ(0);
}
*/

.header-others .g-translate select option {
    font-size: 12px;
    color: #000;
}

.header-others a.ai-custom-search {
    width: 19px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    background: url(images/ic-search-white.png) no-repeat center center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.header-others a.ai-custom-search:hover {
    -webkit-transform: scale(1.1) translateZ(0);
    transform: scale(1.1) translateZ(0);
}

.header-others a.ips-link {
    font: 700 13px/1 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #f2ebb7;
    text-decoration: underline;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.header-others a.ips-link:hover {
    color: #d8bc6b;
}

.header-contact li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}

.header-contact li a {
    font: 500 23px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.header-contact li a:hover {
    color: #e5d48f;
}

.header-contact em[class^="ai-font-"] {
    font-size: 16px;
    color: #d8bc6b;
    margin-right: 10px;
}

.header-contact em[class^="ai-font-envelope-"] {
    font-size: 10px;
}


/* Slideshow */

#hero-sxn {
    position: relative;
}

#hero-sxn .cycloneslider-template-video .cycloneslider-volume {
    display: none;
}

.slideshow-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
}

.slideshow-view::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 52.4%;
    width: 100%;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.64) 0%, rgba(90, 90, 90, 0.36) 35%, rgba(160, 160, 160, 0.17) 62%, rgba(219, 219, 219, 0.05) 85%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.64) 0%, rgba(90, 90, 90, 0.36) 35%, rgba(160, 160, 160, 0.17) 62%, rgba(219, 219, 219, 0.05) 85%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}


/* .slideshow-view::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
} */

.slideshow-view .cycloneslider .cycloneslider-slides,
.slideshow-view .cycloneslider .cycloneslider-slide-image,
.slideshow-view .cycloneslider .cycloneslider-slide canvas {
    height: 100vh !important;
}

.hp-main-view {
    position: relative;
    padding-top: 595px;
}


/* QS */

#qs-sxn {
    text-align: center;
    padding-bottom: 102px;
    z-index: 2;
}

#qs-sxn .sxn-heading--small {
    margin-bottom: 25px;
    margin-top: 40px;
}

#qs-sxn .sxn-heading--small,
#qs-sxn .qs-buttons a.btn--text {
    text-shadow: 0 0 5px #000;
}
button.btn.dropdown-toggle.bs-placeholder.btn-default {
    display: block;
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    padding: 0 7px !important;
    border: none;
    border: 1px solid #fff;
    border-radius: 0 !important;
    background: none;
    font: 600 11px / 35px "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
}
#qs-sxn .qs-field select,
#qs-sxn .qs-field input:not(.form-control),
#qs-sxn .qs-field button.btn.dropdown-toggle.btn-default {
    box-shadow: 0 0 10px #000;
    text-shadow: 0 0 5px #000;
}

.qs-view {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.qs-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 7%;
    padding-left: 12px;
}

.qs-header em {
    display: inline-block;
    vertical-align: top;
    width: 38px;
    height: 39px;
    background: url(images/ic-search-yellow.png) no-repeat center center;
}

.qs-view--form {
    display: inline-block;
    vertical-align: top;
    width: 93%;
}

.qs-view--form .qs-fields {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(80.6% + 10px);
    margin: 0 -5px;
}

.qs-view--form .qs-buttons {
    display: inline-block;
    vertical-align: top;
    width: 19.4%;
    text-align: right;
    padding-right: 17px;
    padding-left: 15px;
}

.qs-large {
    width: 22.3%;
}

.qs-small {
    width: 13.85%;
}

.qs-field {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    padding: 0 5px;
}

.qs-field.qs-city::before {
    font-size: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 5px;
    color: #3f3b42;
}

.qs-field.qs-city select {
    padding-left: 28px;
}

.qs-dropdown::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 3px 0 3px;
    border-color: #fff transparent transparent transparent;
    display: inline-block;
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

.qs-field select,
.qs-field input {
    display: block;
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    padding: 0 7px;
    border: none;
    border: 1px solid #fff;
    border-radius: 0;
    background: none;
    font: 600 11px/33px "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    padding-top: 3px;
}

.qs-field select option {
    color: #000;
}

.qs-buttons .qs-btn {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    border: none;
    height: 45px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    background: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0;
    max-width: 160px;
}

.qs-buttons .qs-btn:hover {
    background: #d8bc6b !important;
    color: #fff !important;
}

.qs-buttons .qs-btn.btn--text,
.qs-buttons a.btn--text {
    font: 700 13px/43px "Josefin Sans", sans-serif;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.qs-buttons a.btn--text {
    display: block;
    max-width: 160px;
}

.qs-buttons a.btn--text:hover {
    color: #d8bc6b;
}

.qs-field .bootstrap-select.btn-group .dropdown-menu {
    top: 35px;
    bottom: auto;
}

.qs-field .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 200px !important;
}

.qs-field .bootstrap-select.btn-group .dropdown-menu li a span.text {
    width: 90%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/* CTA */

#cta-sxn {
    padding: 0 0 120px;
}

.cta-item a {
    display: block;
    position: relative;
    text-decoration: none;
    /* overflow: hidden; */
    text-align: center;
    width: 100%;
    max-width: 360px;
    min-height: 104px;
    background: rgba(0, 0, 0, 0.33);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cta-item a:hover {
    background: #000;
}

.cta-item h2 {
    font: 400 22px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    padding-top: 7px;
}

.cta-border {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center;
    background: url(images/border-cta.png) no-repeat center center;
    background-size: 100% 100%;
    box-sizing: border-box;
    background-origin: content-box;
}


/* FP */

#fp-sxn {
    padding: 105px 0;
    text-align: center;
}

#fp-sxn .sxn-heading {
    margin-bottom: 47px;
}

.fp-wrap {
    position: relative;
}

.fp-slick .slick-list {
    margin: 0 -31px;
}

.fp-slick .slick-slide {
    margin: 0 31px;
}

.fp-slick--btn {
    position: absolute;
    top: calc(50% - 29px);
    left: 0;
    right: 0;
}

.fp-slick--btn span {
    display: inline-block;
    vertical-align: middle;
    font: 700 13px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    margin: 0 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fp-slick--btn .slick-arrow {
    cursor: pointer;
}

.fp-slick--btn .slick-arrow:hover span {
    color: #d8bc6b;
}

.fp-slick--btn .slick-btn--prev {
    position: absolute;
    left: calc(26.6% - 224px);
}

.fp-slick--btn .slick-btn--next {
    position: absolute;
    right: calc(26.6% - 224px);
}

.fp-prev em {
    display: inline-block;
    vertical-align: middle;
    width: 125px;
    height: 58px;
    background: url(images/ic-circle-prev-l.png) no-repeat center center;
    background-size: 100% auto;
}

.fp-next em {
    display: inline-block;
    vertical-align: middle;
    width: 124px;
    height: 58px;
    background: url(images/ic-circle-next-l.png) no-repeat center center;
    background-size: 100% auto;
}

.fp-item {
    position: relative;
    display: block;
    margin: 0 auto;
    pointer-events: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fp-item:hover .fp-textview {
    top: 0;
    background: rgba(0, 0, 0, 0.8);
}

.fp-item:hover .fp-misc {
    opacity: 1;
}

.fp-item:hover .fp-imageview::before {
    opacity: 0.06;
}

.fp-item::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    bottom: 0;
    height: 51.7%;
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.02) 8%, rgba(0, 0, 0, 0.11) 29%, rgba(0, 0, 0, 0.44) 83%, rgba(0, 0, 0, 0.51) 99%, rgba(0, 0, 0, 0.53) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.02) 8%, rgba(0, 0, 0, 0.11) 29%, rgba(0, 0, 0, 0.44) 83%, rgba(0, 0, 0, 0.51) 99%, rgba(0, 0, 0, 0.53) 100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.slick-current .fp-textview {
    opacity: 1;
}

.slick-current .fp-item {
    pointer-events: auto;
}

.slick-current .fp-item::after {
    opacity: 1;
}

.slick-current .fp-imageview::after {
    opacity: 0;
}

.slick-current .fp-imageview canvas {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.fp-imageview {
    position: relative;
}

.fp-imageview::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70.8%;
    height: 73.33%;
    background: url(images/vine-valley-mark.png) no-repeat center center;
    background-size: 100% auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.fp-imageview::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fp-imageview canvas {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fp-textview {
    position: absolute;
    top: calc(100% - 237px);
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    background: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0 40px;
    z-index: 1;
}

.fp-textview .fp-price {
    font: 400 30px/1.2 "Marcellus", sans-serif;
    letter-spacing: 0.2em;
    color: #fff;
}

.fp-textview .fp-address {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.fp-textview .fp-address,
.fp-textview .fp-misc {
    font: 400 18px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.1em;
    color: #fff;
    margin-top: 17px;
}

.fp-textview .fp-misc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.fp-textview .fp-misc span {
    position: relative;
    padding: 0 25px;
}

.fp-textview .fp-misc span.separator::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    pointer-events: none;
    width: 1px;
    height: 17px;
    background: #fff;
}

.fp-textview .fp-misc > div {
    width: 100%;
}

.fp-textview .view-details {
    color: #fff;
    background: #d8bc6b;
    margin: 35px auto 0;
}

#wc-sxn {
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(images/bg-wc.jpg) no-repeat center center;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(images/bg-wc.jpg) no-repeat center center;
    background-size: cover !important;
}

.wc-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wc-row .wc-col {
    width: 50%;
}

.wc-textview {
    background: #fff;
    padding: 75px 15px 75px 68px;
}

.wc-textview h1 {
    font: 400 24px/24px "Josefin Sans", sans-serif;
    letter-spacing: 0.32em;
    color: #686868;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.wc-textview img {
    padding-bottom: 44px;
}

.wc-textview p {
    font: 300 18px/24px "Josefin Sans", sans-serif;
    letter-spacing: 0.02em;
    color: #343434;
    margin-top: 18px;
    max-width: 445px;
}

.wc-textview p.synopsis {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    max-width: 420px;
}

.wc-textview .sxn-link {
    margin-top: 46px;
}

.wc-imageview img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

#fc-sxn {
    padding: 110px 0 0;
    text-align: center;
}

#fc-sxn .sxn-heading {
    margin-bottom: 50px;
}

.fc-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.fc-item {
    position: relative;
    width: calc(100% / 4);
}

.fc-item:hover .fc-textview {
    background: rgba(0, 0, 0, 0.8);
}

.fc-item:hover .fc-textview::before {
    opacity: 0.08;
}

.fc-viewmore:hover .fc-textview h2 {
    color: #d8bc6b;
}

.fc-imageview canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.fc-textview {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fc-textview h2 {
    font: 400 24px/1.2 "Marcellus", sans-serif;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fc-textview::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76.25%;
    height: 59%;
    background: url(images/vine-valley-mark.png) no-repeat center center;
    background-size: 100% auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fc-viewmore .fc-textview {
    background: #000 !important;
}

.fc-viewmore .fc-textview::before {
    opacity: 0.08;
}

.fc-viewmore .fc-textview h2 {
    position: relative;
    padding-bottom: 15px;
}

.fc-viewmore .fc-textview h2::before {
    content: "";
    bottom: 0;
    left: 50%;
    position: absolute;
    width: 60px;
    height: 3px;
    background: -webkit-linear-gradient(left, #d0b35c 0%, #d5ba69 10%, #ecd99f 38%, #f0dfaa 50%, #efdda7 58%, #ecd9a1 63%, #e7d395 70%, #d8be70 87%, #d1b45e 100%, #fcfbf5 100%);
    background: linear-gradient(to right, #d0b35c 0%, #d5ba69 10%, #ecd99f 38%, #f0dfaa 50%, #efdda7 58%, #ecd9a1 63%, #e7d395 70%, #d8be70 87%, #d1b45e 100%, #fcfbf5 100%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* WBH */

#wbh-sxn {
    padding: 120px 0;
}

#wbh-sxn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(images/bg-wbh.jpg) no-repeat center center;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(images/bg-wbh.jpg) no-repeat center center;
    background-size: cover !important;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.wbh-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wbh-textview .sxn-heading {
    text-align: left;
    color: #fff;
    margin-bottom: 25px;
}

.wbh-textview .sxn-heading span {
    color: #d8bc6b;
}

.wbh-textview p {
    font: 300 18px/25px "Josefin Sans", sans-serif;
    letter-spacing: 0.02em;
    color: #fff;
    margin-top: 22px;
    max-width: 600px;
}

.wbh-textview p.synopsis {
    font-size: 24px;
    font-weight: 400;
    max-width: 100%;
}

.wbh-textview .sxn-link {
    margin-top: 70px;
}

.wbh-form {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 460px;
    padding: 60px 15px 59px;
    background: rgba(0, 0, 0, 0.8);
}

.wbh-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: url(images/border-gradient.png) no-repeat center center;
    background-size: 100% 100%;
    box-sizing: border-box;
    background-origin: content-box;
}

.wbh-form .sxn-heading {
    font-size: 40px;
    color: #fff;
    margin-bottom: 32px;
}

.wbh-form .sxn-heading span {
    font-size: 18px;
    color: #d8bc6b;
}

.wbh-form div.wpcf7 {
    position: relative;
}

.wbh-form div.wpcf7-response-output {
    font-size: 12px;
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 310px;
    margin: 0;
    text-align: center;
    color: #fff;
}

.wbh-form .form-view {
    position: relative;
    margin-top: 40px;
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
}

.wbh-form .form-view .field-wrap {
    position: relative;
    margin-bottom: 15px;
}

.wbh-form .form-view .field-wrap:nth-child(4) {
    margin: 0;
}

.wbh-form .form-view input[type*="text"],
.wbh-form .form-view input[type*="tel"],
.wbh-form .form-view input[type*="email"] {
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    height: 37px;
    border: none;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    background: transparent;
    outline: none;
    font: 300 12px/37px "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
}

.wbh-form .form-view textarea {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 96px;
    border: none;
    padding: 12px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    background: transparent;
    outline: none;
    resize: none;
    overflow: hidden;
    font: 300 12px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
}

.wbh-form .form-view input[type*="submit"] {
    position: relative;
    display: block;
    box-sizing: border-box;
    font: 700 13px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    margin: 0 auto;
    outline: none;
    border: none;
    min-height: 45px;
    width: 100%;
    max-width: 132px;
    background: #d8bc6b;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.wbh-form .form-view input[type*="submit"]:hover {
    background: rgba(216, 188, 107, 0.6);
    color: #fff;
}

.wbh-form .form-view .wpcf7-form-control-wrap {
    display: block;
}

.wbh-form .form-view span.wpcf7-not-valid-tip {
    font-size: 11px;
}

.wbh-form .form-view .ajax-loader {
    position: absolute;
    margin: 0 !important;
    top: calc(100%);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* Testi */

#testi-sxn {
    padding: 90px 0 70px;
    text-align: center;
    background: url(images/bg-testi-gradient.jpg) no-repeat bottom center;
    background-size: 100% auto !important;
}

#testi-sxn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    pointer-events: none;
    z-index: -1;
}

#testi-sxn .sxn-heading {
    margin-bottom: 30px;
}

#testi-sxn .sxn-wrap {
    position: relative;
    z-index: 1;
}

.testi-slick {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.testi-item p {
    font: 300 18px/25px "Josefin Sans", sans-serif;
    letter-spacing: 0.02em;
    color: #343434;
}

.testi-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 45px;
    color: #fff;
}

.testi-navigation span {
    display: inline-block;
    vertical-align: middle;
    font: 700 13px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    margin: 0 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.testi-navigation .sxn-link {
    margin: 0 32px;
}

.testi-navigation .slick-arrow {
    cursor: pointer;
}

.testi-navigation .slick-arrow:hover span {
    color: #d8bc6b;
}

.testi-prev em {
    display: inline-block;
    vertical-align: middle;
    width: 71px;
    height: 40px;
    background: url(images/ic-circle-prev.png) no-repeat center center;
    background-size: 100% auto;
}

.testi-next em {
    display: inline-block;
    vertical-align: middle;
    width: 71px;
    height: 40px;
    background: url(images/ic-circle-next.png) no-repeat center center;
    background-size: 100% auto;
}


/* Blog */

.blog-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.blog-col {
    position: relative;
}

.blog-left {
    width: 38.75%;
}

.blog-left > div {
    height: 100%;
}

.blog-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(images/bg-blog.jpg) no-repeat center center;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(images/bg-blog.jpg) no-repeat center center;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    background-size: cover !important;
}

.blog-right {
    width: 61.25%;
}

.blog-head {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    z-index: 1;
    padding: 15px;
    max-width: 405px;
    width: 100%;
    height: 100%;
    margin-left: auto;
}

.blog-head .sxn-heading {
    text-align: left;
    color: #fff;
    margin-bottom: 32px;
}

.blog-head .sxn-heading span {
    color: #d8bc6b;
}

.blog-head p {
    font: 300 18px/25px "Josefin Sans", sans-serif;
    letter-spacing: 0.02em;
    color: #fff;
    max-width: 290px;
}

.blog-head .sxn-link {
    margin-top: 45px;
}

.blog-imageview {
    position: relative;
}

.blog-imageview canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.blog-date {
    position: absolute;
    left: 50%;
    bottom: -38px;
    -webkit-transform: translateX(-50%) translateZ(0);
    transform: translateX(-50%) translateZ(0);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background: #000;
    width: 78px;
    height: 78px;
    box-sizing: border-box;
}

.blog-date::before {
    content: "";
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: url(images/border-blog.png) no-repeat center center;
    background-size: 100% 100%;
    box-sizing: border-box;
    background-origin: content-box;
}

.blog-date small {
    font: 400 12px/1 "Josefin Sans", sans-serif;
    letter-spacing: 0.1em;
    color: #d0b35c;
    text-transform: uppercase;
}

.blog-date span {
    display: block;
    font: 400 38.79px/1 "Marcellus", sans-serif;
    letter-spacing: 0.02em;
    color: #fff;
}

.blog-textview {
    padding: 80px 10px 40px;
    text-align: center;
}

.blog-textview .blog-title {
    display: block;
    font: 600 18px/25px "Josefin Sans", sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #343434;
}

.blog-textview p {
    font: 300 18px/25px "Josefin Sans", sans-serif;
    letter-spacing: 0.02em;
    color: #343434;
    max-width: 275px;
    margin: 16px auto 0;
}

.blog-textview .sxn-link {
    color: #fff;
    margin: 27px auto 0;
}


/* Footer */

.ip-container footer.footer .sxn {
    z-index: unset;
}

.footer-top {
    padding: 95px 0;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/bg-footer.jpg) repeat center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/bg-footer.jpg) repeat center;
    background-size: cover !important;
}

.footer-logo img {
    display: block;
    margin: 0 auto;
}

.footer-contact {
    text-align: center;
}

.footer-bot--wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-bot {
    padding: 40px 0;
    background: #000;
}

.footer-nav {
    margin: 0 -20px;
}

.footer-nav li {
    display: inline-block;
    margin: 0 20px;
}

.footer-nav li a {
    font: 300 14px/28px "Josefin Sans", sans-serif;
    color: #a5a5a5;
    text-transform: uppercase;
}

.footer-nav li a:hover {
    color: #d8bc6b;
}

.footer-copyright {
    display: inline-block;
    vertical-align: middle;
}

.footer-copyright .copyright {
    font: 300 14px/28px "Josefin Sans", sans-serif;
    color: #a5a5a5;
}

.footer-copyright .copyright .sitename {
    color: #d8bc6b;
}

.footer-copyright .copyright a:hover {
    color: #d8bc6b;
}

.broker-logos {
    display: inline-block;
    vertical-align: middle;
}

.broker-logos em {
    color: #777777;
    font-size: 31px;
    margin-left: 22px;
}

.broker-logos em:first-child {
    margin-left: 0;
}


/* Floating Contact */

.floaing-contact-view {
    position: fixed;
    top: 0;
    left: 50px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1010;
    font-size: 0;
}

.home .floating-contact {
    display: block;
}

.floating-contact {
    display: none;
}

.floating-contact li {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-sizing: border-box;
    width: 45px;
    height: 45px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    background: transparent;
    margin-top: 7px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}

.floating-contact li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.floating-contact li:hover {
    background: #d8bc6b !important;
    border-color: #d8bc6b !important;
    color: #fff !important;
}

.floating-contact li em {
    display: inline-block;
    vertical-align: middle;
}

.floating-contact li.email,
.floating-contact li.phone {
    font-size: 13px;
}

.floating-contact li.bg-blue {
    background: #000;
    border: 1px solid #000;
}

.floating-contact li.bg-dark {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-contact li.separator {
    margin-top: 42px;
}

.floating-contact li.separator::before {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -1px;
    height: 42px;
    width: 1px;
    background: #fff;
    top: -43px;
    pointer-events: none;
}


/*******************************************************
   *
   * 3. IP Styles
   *
   *******************************************************/

.ip-banner {
    position: relative;
    width: 100%;
}

.ip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 64.4%;
    width: 100%;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.64) 0%, rgba(90, 90, 90, 0.36) 35%, rgba(160, 160, 160, 0.17) 62%, rgba(219, 219, 219, 0.05) 85%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.64) 0%, rgba(90, 90, 90, 0.36) 35%, rgba(160, 160, 160, 0.17) 62%, rgba(219, 219, 219, 0.05) 85%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.ip-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.35);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 350px;
    background: #f9f7f7;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.ip-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
}


/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}


/** Adjust width of content columns **/

#content-sidebar #content {
    width: 77.08%;
}

#content-full #content {
    width: 100%;
}


/* Adjust width of sidebar */

.sidebar {
    width: 20.83%;
}


/* fullwidth template */

.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
    margin-left: -15px;
    margin-right: -15px;
}


/* Adjust line height of page elements */

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7;
}


/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */

#content .entry-title,
#content .archive-title {
    font: 400 40px/1.2 "Marcellus", sans-serif;
    color: #000;
    text-transform: uppercase;
}


/* Styles for category/archive/search/etc subheadings (h2) */

#content .entry {
    font-weight: 400;
    font-size: 16px;
    font-family: "Josefin Sans", sans-serif;
    color: #343434;
}

.ai-default-cf7wrap input[type="submit"],
.ai-default-cf7wrap input.wpcf7-submit {
    background: #000 !important;
}

.ai-contact-wrap input.wpcf7-submit:hover,
.ai-default-cf7wrap input.wpcf7-submit:hover,
.error-forms input.wpcf7-submit:hover {
    background: #d8bc6b !important;
}


/* Sidebar Goes Here */

.sidebar-item {
    padding: 15px 0;
    text-align: center;
    font-size: 0;
    letter-spacing: 0;
}

.sidebar-qs .qs-header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sidebar-qs .qs-header em {
    margin-bottom: 10px;
}

.sidebar-qs .qs-header,
.sidebar-qs .qs-view--form,
.sidebar-qs .qs-view--form .qs-fields,
.sidebar-qs .qs-view--form .qs-buttons {
    width: 100%;
    padding: 0;
    font-size: 0;
    text-align: center;
}

.sidebar-qs .qs-view--form > form {
    margin: 0 -5px;
}

.sidebar-qs .qs-field {
    padding: 5px;
}

.sidebar-qs .qs-large {
    width: 100%;
}

.sidebar-qs .qs-small {
    width: 50%;
}

.sidebar-qs .qs-view--form .qs-buttons {
    padding: 5px;
}

.sidebar-qs .qs-dropdown::after {
    border-color: #686868 transparent transparent transparent;
}

.sidebar-qs .qs-field select,
.sidebar-qs .qs-field input:not(.form-control),
.sidebar-qs .qs-field button.btn.dropdown-toggle.btn-default {
    color: #686868;
    border-color: #686868;
}

.sidebar-qs .qs-buttons .qs-btn {
    max-width: 100%;
}

.sidebar-cta .cta-item {
    display: block;
    position: relative;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 360px;
    min-height: 104px;
    background: -webkit-linear-gradient(45deg, #d8bc6b 0%, #f1ebb6 52%, #f1ebb6 52%, #d8bc6b 100%);
    background: linear-gradient(45deg, #d8bc6b 0%, #f1ebb6 52%, #f1ebb6 52%, #d8bc6b 100%);
    padding: 3px;
    margin-bottom: 15px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar-cta .cta-item:hover .cta-border {
    background: #d8bc6b;
}

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

.sidebar-cta .cta-item h2 {
    font-size: 18px;
}

.sidebar-cta .cta-border {
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.qs-field button.btn.dropdown-toggle.btn-default {
    display: block;
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    padding: 0 7px;
    border: none;
    border: 1px solid #fff;
    border-radius: 0;
    background: none;
    font: 600 11px/35px "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
}

.qs-field .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 11px;
}

input.form-control {
    color: #000;
}

.sidebar button.btn.dropdown-toggle.btn-default {
    border: 1px solid #686868!important;
}


/* Sidebar Ends Here */


/* Meet Our Team Page */

.page-id-21 #content .entry {
    /*  text-align: center;*/
}

.page-id-21 .agent-holder {
    display: inline-block;
    max-width: 360px;
    width: calc(calc(100% / 4) - 15px);
    margin: 0 5px;
}

.page-id-21 .agent-multi-list {
    padding: 0;
    border: none;
}

.page-id-21 .agent-holder:hover .agent-contacts {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-id-21 .attachment-agent-image {
    float: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    font-size: 0;
    padding: 0;
}

.page-id-21 .agent-contacts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s ease-in-out;
    float: none;
    padding: 10px;
}

.page-id-21 .agent-contact-name {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.48px;
    text-align: center;
    color: #fff;
}

.page-id-21 .agent-contact-position {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #fff;
    margin-top: 5px;
}

.page-id-21 .agent-contacts-main-info {
    margin: 0;
}

.page-id-21 .agent-contacts-main-info .agent-contact-detail:first-child {
    margin-top: 0;
}

.page-id-21 .agent-contact-detail {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    margin-top: 5px;
}

.page-id-21 .agent-contact-detail a:hover {
    color: #e5d48f;
}

.page-id-21 .agent-contacts-main-info .aios-agents-module-fa,
.page-id-21 .agent-social,
.page-id-21 .agent-contact-lang {
    display: none;
}

.page-id-21 .agent-description {
    font-size: 0;
}

.page-id-21 .agent-description a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #fff;
    margin: 30px auto 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.page-id-21 .agent-description a:hover {
    border-color: #000;
    background: #000;
}

.postid-219 #content .entry-title,
.postid-219 #content .archive-title {
    display: none;
}


/* End Meet Our Team Page */


/******************************
**** Additional CSS Here ******
*******************************/

div.wpcf7-response-output {
    text-align: center;
}


/*.single-aios_agent .agent-contacts .agent-contacts-heading .agent-contact-name {
  display: none;
}*/

.single-aios_agent h1.entry-title {
    display: none;
}

.ihf-grid-result-address {
    display: block;
}

#ihf-main-container .ihf-listing-search-results .btn-group.pull-right {
    text-align: right;
}

#ihf-main-container .ihf-listing-search-results .btn-group.pull-right > .btn-group {
    float: none;
}

ul#ihf-search-location-tabs,
ul#ihf-detail-extrainfotabs,
ul.chosen-results {
    margin-left: 0px !important;
    padding-left: 0px !important;
}

.grecaptcha-badge {
    z-index: 1020;
}

#ihf-main-container .mc-total-payment-subline {
    color: #666;
}

.floatingrate {
    position: fixed;
    bottom: 12px;
    left: 12px;
    z-index: 99999;
    text-align: center;
}

.floatingrate li {
    display: inline-block;
    vertical-align: top;
}

.floatingrate li a {
    height: 43px;
    width: 43px;
    display: block;
    background-color: #000;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

a.like {
    background: url(https://vinevalleyre.com/wp-content/themes/vinevalley.com/images/likedislikeicn.png);
    background-position: 11px -22px;
    background-size: 54% auto;
    background-repeat: no-repeat;
}

a.dislike {
    background: url(https://vinevalleyre.com/wp-content/themes/vinevalley.com/images/likedislikeicn.png);
    background-position: 10px 14px;
    background-size: 54% auto;
    background-repeat: no-repeat;
}

.floatingrate li a:hover {
    background-color: #000 !important;
}

.floatingrate span {
    text-align: center;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    font-size: 11px;
}

#ihf-main-container .save-listing-btn,
#ihf-main-container .schedule-showing-btn {
    font-size: 24px;
    font-weight: bold;
}


/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

.qs-view-new input[type="text"] {
    width: 100%;
    border: 0;
    border-radius: 30px;
    padding: 16.5px 24px;
    /* font: 400 18px/1.2 "Josefin Sans", sans-serif; */
    color: #949494;
    font-size: 16px;
    height: 54px;
}

.qs-view-new {
    width: 100%;
    position: relative;
    max-width: 600px;
    display: block;
    margin: 0px auto;
    padding: 5px 6px;
    background: #fff;
    border-radius: 40px;
    border: 1px solid #d5d8de;
}

.qs-view-new input.sndbtn {
    width: 100%;
    border: 0;
    border-radius: 30px;
    padding: 14px 24px;
    font: 400 18px/1.2 "Josefin Sans", sans-serif;
}

.qs-view-new input.sndbtn {
    width: 100%;
    border: 0;
    border-radius: 30px;
    padding: 14px 24px;
    font: 400 18px/1.2 "Josefin Sans", sans-serif;
    max-width: 100px;
    position: absolute;
        top: 5px;
    right: 6px;
    background: #000;
    color: #e5d48f;
    text-transform: uppercase;
    z-index: 99;
    margin-right: -1px;
    height: 54px;
}

button.btn.dropdown-toggle.btn-default,
button.btn.dropdown-toggle.btn-default:active,
button.btn.dropdown-toggle.btn-default:focus,
button.btn.dropdown-toggle.btn-default:hover {
    width: 100%;
    border: 0;
    border-radius: 30px;
    padding: 16.5px 24px;
    font: 400 18px/1.2 "Josefin Sans", sans-serif !important;
    color: #949494;
    font-size: 16px;
}

.qs-view-new select {
    width: 92%;
    border: 0;
    border-radius: 30px;
    /* padding: 16.5px 24px; */
    /* font: 400 18px/1.2 "Josefin Sans", sans-serif; */
    color: #949494;
    font-size: 11px;
}

.agent-holder .attachment-agent-image img {
    aspect-ratio: 270 / 350;
    object-fit: cover;
    object-position: top center;
    background-color: #edeef0;
}

.agent-holder .attachment-agent-image img[src="https://vinevalleyre.com/wp-content/uploads/2019/10/agent-join-team-1-1.png"] {
    background-color: transparent;
}

.page-id-11930 #content video,
.page-id-11933 #content video {
    max-width: 700px;
    display: block;
    margin: 0 auto;
}

.jon-wrapper {}

.jon-wrapper .sxn-heading {
    display: block;
    color: #fff;
    text-align: center;
    margin-bottom: 13px;
}

.jon-wrapper .sxn-heading span {
    color: #fff;
}

.jon-wrapper p {
    font-family: "Josefin Sans";
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.jon-form {
    max-width: 753px;
    margin: 35px auto 0;
}

.jon-form-inner {}

.jon-form-inner > div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -15px;
}

.jon-form-inner span {
    display: block;
    width: 100%;
    padding: 0 15px;
    position: relative;
    margin-bottom: 26px;
}

.jon-form-inner .col-2 span {
    width: 50%;
}

.jon-form-inner input,
.jon-form-inner textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    font-family: "Josefin Sans";
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    padding: 16px 5px;
}

.jon-form-inner select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: url(images/git-arrow.png) calc(100% - 5px) center no-repeat;
    background-size: 12px auto;
    font-family: "Josefin Sans";
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    padding: 16px 22px 16px 5px;
}
.jon-form-inner textarea {
    height: 55px;
    resize: none;
    overflow: hidden;
}

.jon-form-inner input[type="submit"] {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    max-width: 175px;
    width: 100%;
    min-height: 45px;
    font: 700 13px/1.2 "Josefin Sans", sans-serif;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #000;
    border: none;
    margin: 0 auto;
}

.jon-form .form-button {
    margin: 31px auto 0;
}

.jon-form .ajax-loader {
    position: absolute;
    margin: 0 !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jon-form .wpcf7-response-output {
    width: 100%;
    margin: 30px 0 0 !important;
    padding: 5px 10px !important;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.jon-form .wpcf7-not-valid-tip {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    max-width: 90%;
    padding: 5px 10px !important;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.main-header .navigation {
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 110px;
}

.main-header .sxn-wrap {
    position: relative;
}

#wpcf7-f11974-o2 select.wpcf7-form-control.wpcf7-select option {
    color: #020202;
}

.aiosp-wrap .aiosp-container.aiosp-ref-\#voting-popup .aios-popup-body {
  width: 100%;
  max-width: 600px;
  text-align: center;
  min-height: 0;
  padding-bottom: 20px;
}

.aiosp-wrap .aiosp-container.aiosp-ref-\#voting-popup .aios-popup-body h2 {
	font-size: 26px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 20px;
}

.search-widget-wrap {
    max-width: 600px;
    margin: 20px auto 0 !important;
}

.search-widget-wrap form {
    padding: 0 !important;
}

#content .coop-wrp h2 {
	font-size: 45px;
	letter-spacing: -2px;
	margin-top: 100px;
}

.coop-wrp {
	margin-bottom: 50px;
}

.coop-wrp .sxn-link {
	margin: 70px auto 0;
}

.syp-bold {
	font-size: 24px;
	margin-top: 20px;
	display: block;
}


.coop-wrp  a.sxn-link.dc {
    margin-top: 0;
}

.dc-tt {
    margin-top: 70px;
    text-align: center;
}











.page-id-62703 #content .entry-title {
    display: none;
}


#content .coop-wrp h2.coop-title span {
    font-weight: 300;
}




a.hvl {
    font-size: 14px;
    background: #000;
    width: 100%;
    display: flex;
    max-width: 240px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 20px;
    color: #e5d48f;
    transition: all 0.3s ease-in-out;
}

a.hvl:hover {
    background: #d8bc6b;
    color: #fff;
}


.loan-item br:nth-child(2) {
    display: none !important;
}
