/*
Theme Name: Alexandra Shaban
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
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. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/
/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/
:root {
    /** Font default */
    --body-font: 'Lato', sans-serif;
    --title-font: 'Prata', serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary-color: #000000;
    --secondary-color: #b88e34;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/
/* Sub Menu */
#nav li {
    position: relative;
    display: inline-block;
    margin-right: 40px;
}

#nav li a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.120em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

#nav > li > a:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    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;
    margin: 0 auto;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

#nav > li:focus-within > a:before, #nav > li:hover > a:before {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    width: 100%;
}

#nav li:last-child {
    margin-right: 0;
}

.navigation {
    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;
    font-size: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 235px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 34px;
}

#nav .sub-menu li a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#nav .sub-menu > li {
    position: relative;
    display: block;
    background: #101010;
    margin: 0 auto;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#nav .sub-menu li:hover {
    background: #0b0b0b;
}

#nav .sub-menu li:hover > a {
    color: #fff;
    text-decoration: none;
}

#nav li:focus-within > .sub-menu, #nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#nav li > .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    padding-top: 0;
}

/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/
/* Global */
body {
    font-family: var(--body-font);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

/*CSS Reset*/
a, a:hover, a:visited, a:focus, textarea {
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

.slick-track * {
    outline: none;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

select::-ms-expand {
    display: none;
}

input:focus, select:focus, textarea:focus {
    outline: none;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

[class*="ai-icon-"] {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

/*#main-wrapper{
    overflow: hidden;
}*/
footer.footer {
    overflow: hidden;
}

.attachment-fixed canvas {
    background-attachment: fixed!important;
}

/*Gradient Background*/
.gradient-bg {
    color: #b88e34;
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C4AE5B; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iphone .gradient-bg {

}

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

/*Global Title*/
.global-title-holder {
    display: block;
    position: relative;
    z-index: 2;
}

.global-title {
    display: inline-block;
    position: relative;
    padding-right: 60px;
    text-align: left;
    overflow: hidden;
    padding-top: 20px;
}

.global-title span {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.300em;
    color: #555555;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0;
}

.global-title h3, .global-title h2, .global-title h1 {
    font-size: 85px;
    line-height: normal;
    letter-spacing: -0.020em;
    font-family: var(--title-font);
    z-index: 1;
    position: relative;
    display: inline-block;
    margin-left: 89px;
}

.global-title em {
    font-size: 130px;
    font-family: var(--title-font);
    line-height: 1;
    letter-spacing: -0.050em;
    color: rgba(0,0,0,.10);
    text-transform: uppercase;
    font-style: normal;
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 5px 0;
}

.global-title-holder.is-left {
    text-align: right;
}

.global-title h2:before,
.global-title h1:before {
    position: absolute;
    content: '';
    top: 43%;
    right: calc(100% + 20px);
    width: 100vw;
    height: 1px;
    background-color: #868686;
}

.global-title-holder {
    padding: 0 0 15px;
}

.global-title-holder.is-center {
    text-align: center;
}

.global-title-holder.is-black .global-title span {
    color: #a0a0a0;
}

.global-title-holder.is-black .global-title em {
    color: rgba(255,255,255,.05);
}

.global-title-center:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 1px;
    background: #868686;
}

.global-title-center {
    display: inline-block;
    position: relative;
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 10px;
}

.global-title-center h2 {
    font-size: 85px;
    line-height: normal;
    letter-spacing: -0.020em;
    font-family: var(--title-font);
    z-index: 1;
    position: relative;
    display: inline-block;
}

.global-title-center em {
    font-size: 130px;
    font-family: var(--title-font);
    line-height: 1;
    letter-spacing: -0.050em;
    color: rgba(255,255,255,.05);
    text-transform: uppercase;
    font-style: normal;
    position: absolute;
    top: 39px;
    right: -31px;
    padding: 3px 0 0;
}

.global-title-center h3 {
    font-size: 85px;
    line-height: normal;
    letter-spacing: -0.020em;
    color: #fff;
    font-family: var(--title-font);
    display: block;
    position: relative;
    margin-top: -20px;
}

/*Global Button*/
.global-btn {
    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: 100%;
    height: 67px;
    max-width: 305px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    letter-spacing: 0.100em;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
}

.global-btn:before {
    position: absolute;
    content: '';
    top: -2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 86px;
    height: 2px;
    background-color: var(--secondary-color);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 2;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.global-btn:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    /*     background-image: url(images/gradient-hover.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.global-btn span {
    position: relative;
    z-index: 4;
}

.global-btn:focus:after, .global-btn:hover:after {
    opacity: 1;
    visibility: visible;
}

.global-btn:hover, .global-btn:focus {
    border: 1px solid transparent;
    color: var(--primary-color);
}

.global-btn:focus:before, .global-btn:hover:before {
    /* background-color: var(--primary-color); */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,131313+100 */
    background: rgb(0,0,0);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(19,19,19,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(19,19,19,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(19,19,19,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#131313',GradientType=1 );
    /* IE6-9 */
}

.global-btn.is-white {
    color: #fff;
    border-color: #fff;
}

.global-btn.is-white:hover, .global-btn.is-white:hover {
    border-color: transparent;
}

/*Fixed Header*/
#fixed-header {
    position: fixed;
    z-index: 1029;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-size: 0;
    padding: 28px 0;
    background: var(--primary-color);
    min-height: 100px;
display: flex;align-items: center;justify-content: center;}

#fixed-header.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#fixed-header:not(.active) {
    opacity: 0;
    pointer-events: none;
}

#fixed-header > .container {
    width: 100%;
    padding: 0 50px;
}

#fixed-header .header-col-top {
    margin-bottom: 0;
}

#fixed-header .logo img {
    max-width: 287px;
}

#fixed-header .header-col-bot, #fixed-header .header-col-top {
    display: inline-block;
    vertical-align: middle;
}

/* Sub Menu */
#fixed-nav li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

#fixed-nav li a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.120em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

#fixed-nav li:last-child {
    margin-right: 0;
}

#fixed-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 235px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 45px;
}

#fixed-nav .sub-menu li a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#fixed-nav .sub-menu > li {
    position: relative;
    display: block;
    background: #101010;
    margin: 0 auto;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#fixed-nav .sub-menu li:hover {
    background: #0b0b0b;
}

#fixed-nav .sub-menu li:hover > a {
    color: #fff;
    text-decoration: none;
}

#fixed-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#fixed-nav li > .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    padding-top: 0;
}

/* Header */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    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;
    padding: 65px 0;
}

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

.header-col-bot, .header-col-top {
    display: block;
    text-align: center;
    position: relative;
}

.header-col-top {
    margin-bottom: 30px;
}

.header-col-bot > div {
    padding: 7px 15px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.header-col-bot > div:first-child {
    padding-left: 0;
}

.header-col-bot > div:last-child {
    padding-right: 0;
}

.header-contacts span {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    padding: 7px 15px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.120em;
}

.header-contacts span a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.header-contacts span a:hover {
    color: #a9941a;
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C4AE5B; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-contacts span:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.30);
}

.header-nav {
    border-right: 1px solid rgba(255,255,255,.30);
}

.header-contacts span:first-child {
    padding-left: 0;
}

.header-contacts span:last-child {
    padding-right: 0;
}

.logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.logo a {
    display: block;
    position: relative;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/*Popup*/
body.user-navigated-from-a-page-on-the-site .popup-container {
    display: none;
}

.popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    pointer-events: none;
    z-index: 1;
    border: 1px solid #beaa57;
}

.popup-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.30;
}

.popup-widget {
    display: block;
    position: relative;
    z-index: 6;
}

.popup-widget div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.popup-widget div.wpcf7-response-output {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: 0 auto!important;
    font-size: 13px;
    color: #fff!important;
    text-align: center;
}

.popup-widget form {
    display: block;
    position: relative;
}

.popup-cf-form {
    display: block;
    position: relative;
}

.popup-cf-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.popup-cf-row.full {
    display: block;
}

.popup-cf-row.full .popup-cf-field {
    display: block;
    width: 100%;
    position: relative;
}

.popup-cf-row .popup-cf-field {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 5px);
    position: relative;
}

.popup-cf-field input:not([type=submit]), .popup-cf-field textarea {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(255,255,255,.50);
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: 0.050em;
    line-height: normal;
    text-transform: uppercase;
    background-color: transparent;
    color: #fff;
}

.popup-cf-row:not(:last-child) {
    margin-bottom: 10px;
}

.popup-cf-field textarea {
    resize: none;
    height: 114px;
    padding: 25px 20px;
}

.popup-cf-row.full .popup-cf-field.global-btn {
    margin: 37px auto 0;
    max-width: 219px;
}

.popup-cf-row.full .popup-cf-field.global-btn input[type=submit] {
    height: 100%;
    width: 100%;
    border: none;
    padding: 0;
    background: transparent;
    font-size: 14px;
    letter-spacing: 0.100em;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.popup-cf-row.full .popup-cf-field.global-btn:hover input[type=submit] {
    color: #000;
}

.popup-container {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    overflow: hidden;
    font-size: 0;
}

.popup-container.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.popup-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px;
}

.popup-main {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    opacity: 0;
    padding: 20px;
}

.popup-container.active .popup-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.popup-close-btn {
    position: absolute;
    top: 30px;
    right: 28px;
    z-index: 2;
}

.popup-main .global-title h2 {
    font-size: 68px;
    letter-spacing: -0.020em;
}

.popup-main .global-title {
    padding: 0;
}

.global-title-holder {
    margin-bottom: 15px;
}

.popup-cf-row.full .popup-cf-field.global-btn {
    border-color: rgba(255,255,255,.50);
}

.popup-cf-row.full .popup-cf-field.global-btn:hover {
    border-color: transparent;
}

.popup-main .global-title span {
    color: #fff;
}

.popup-close-btn span {
    display: block;
    font-size: 32px;
    color: #6a6a6a;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.popup-close-btn span:hover {
    color: var(--secondary-color);
}

.popup-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup-bg-left canvas, .popup-bg-right canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    /*     background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C4AE5B; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.popup-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 746px;
    height: 467px;
}

.popup-bg-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 746px;
    height: 467px;
}

.popup-inner {
    display: block;
    position: relative;
    padding: 110px 115px 93px;
}

/*Burger Menu*/
.burger-menu-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

.burger-menu-icon {
    cursor: pointer;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    display: inline-block;
    vertical-align: middle;
}

.burger-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    /*     background-image: url(images/sm-line-bg.jpg);
    background-position: center;
    background-size: contain; */
    left: 0;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.bm-lines {
    display: block;
    width: 35px;
    height: 13px;
    position: relative;
}

.burger-menu-icon:hover .bm-lines span {
    opacity: .85;
}

.burger-menu-icon span:last-child {
    bottom: 0;
    top: auto;
}

.burger-menu-icon span:first-child {
    top: 0;
}

/*Side Menu*/
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    pointer-events: none;
    font-size: 0;
}

.side-menu.active .side-menu-bg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.side-menu-bar, .side-menu-overlay {
    height: 100%!important;
}

.side-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 139px);
    z-index: 1056;
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
    -webkit-transition: all ease .6s;
    -o-transition: all ease .6s;
    transition: all ease .6s;
    opacity: 0;
}

.side-menu-bg .simplebar-scrollbar:before {
    background: #eee;
}

.side-menu-container {
    width: 100%;
    position: relative;
    padding: 0 178px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1054;
    width: 100%;
    height: 100%;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    opacity: 0;
}

.side-menu-overlay.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.side-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.side-menu-wrapper {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sm-exit-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 20;
}

.sm-exit-btn span {
    font-size: 30px;
    color: var(--secondary-color);
    cursor: pointer;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.sm-exit-btn:hover span {
    opacity: .85;
}

.sm-exit-btn:hover span {
    /* color: #fff; */
}

#sidemenu-nav > li > a {
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.120em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    font-family: var(--title-font);
    position: relative;
    padding: 3px 45px;
}

#sidemenu-nav > li > a:hover {
    color: var(--secondary-color);
    -webkit-text-fill-color: transparent;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
}

#sidemenu-nav .sub-menu {
    margin-top: 25px;
    display: none;
    position: relative;
}

#sidemenu-nav .sub-menu li {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

#sidemenu-nav .sub-menu li a {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.150em;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    text-transform: uppercase;
}

#sidemenu-nav .sub-menu li a:hover {
    color: var(--secondary-color);
}

#sidemenu-nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -19px;
}

#sidemenu-nav > li {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    position: relative;
}

#sidemenu-nav > li > .sub-menu > li:last-child {
    margin-bottom: 0;
}

.side-menu-nav {
    display: block;
    position: relative;
    min-height: 115px;
}

.side-menu-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #000;
}

.side-menu-main-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .25;
}

.side-menu-logo {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 70px;
}

.side-menu-logo a {
    display: inline-block;
    position: relative;
}

.side-menu-logo img {
    max-width: 100%;
    height: auto;
}

#sidemenu-nav > li:not(:last-child) > a:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 3px;
    height: 40px;
    -webkit-transform: rotate(-19deg);
    -ms-transform: rotate(-19deg);
    transform: rotate(-19deg);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.side-menu-contacts span {
    font-size: 25px;
    color: #fff;
    line-height: 1;
    padding: 3px 30px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    letter-spacing: 0.050em;
}

.side-menu-contacts {
    display: block;
    text-align: center;
}

.side-menu-contacts span:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.30);
}

.side-menu-contacts span:first-child {
    padding-left: 0;
}

.side-menu-contacts span:last-child {
    padding-right: 0;
}

.side-menu-contacts span a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.side-menu-contacts span a:hover {
    color: var(--secondary-color);
    -webkit-text-fill-color: transparent;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
}

/*Hero*/
.hero-container {
    display: block;
    position: relative;
}

.hero-wrapper {
    display: block;
    position: relative;
    z-index: -1;
}

.hero-container .slide-spacer {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 660px;
}

.hero-img-holder canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.25;
}

.hero-img-holder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-color);
}

/*Hero Content */
.hero-tagline h1 {
    font-size: 160px;
    line-height: 1;
    font-family: var(--title-font);
    text-transform: uppercase;
}

.hero-tagline span {
    font-size: 100px;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
    font-family: var(--title-font);
    text-transform: uppercase;
}

.hero-agent-container {
    position: absolute;
    bottom: -195px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-agent-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 80px 0 130px;
}

.hero-tagline-holder {
    display: inline-block;
    position: relative;
    padding-bottom: 85px;
}

.hero-agent-col {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 50%;
}

.hero-agent-holder {
    display: block;
    position: relative;
}

.hero-agent-holder img {
    width: 100%;
    max-width: 100%;
    position: relative;
    height: auto;
}

.hero-agent-col:first-child {
    width: 54.988%;
}

.hero-agent-col:last-child {
    width: 45.012%;
}

.hero-sub-title {
    display: block;
    position: relative;
    text-align: right;
}

.hero-sub-title h2 {
    font-size: 70px;
    color: var(--primary-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.hero-sub-title span {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.150em;
    color: var(--primary-color);
    text-transform: uppercase;
}

/*Featured Properties*/
.fp-container {
    position: relative;
    display: block;
    background-color: #fff;
    z-index: 1;
    padding: 265px 0 50px;
    font-size: 0;
    overflow: hidden;
}

.fp-wrapper {
    display: block;
    position: relative;
}

.fp-main {
    display: block;
    position: relative;
}

.fp-main .global-title-holder {
    padding-right: 64px;
}

.fp-bg {
    position: absolute;
    top: -13%;
    left: 0;
    width: 839px;
    height: 962px;
    pointer-events: none;
    width: 53%;
    height: 55.754%;
}

.fp-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .10;
}

.fp-slide {
    display: block;
    position: relative;
    margin: 0 -15px;
}

.fp-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: calc(100% / 2);
    padding: 15px;
}

.fp-item a {
    display: block;
    position: relative;
}

.fp-img {
    display: block;
    position: relative;
    background-color: var(--primary-color);
}

.fp-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fp-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.fp-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 98px);
    padding: 18px 23px;
    z-index: 2;
    background: var(--primary-color);
    right: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fp-col {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
}

.fp-logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-right: 15px;
    /* border-right: 1px solid var(--secondary-color); */
}

.fp-logo:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.fp-details {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    padding-left: 13px;
    padding-bottom: 10px;
}

.fp-logo img {
    max-width: 100%;
    height: auto;
}

.fp-details h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.048em;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.fp-details span {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
}

.fp-listing-details {
    display: block;
    position: relative;
    padding-bottom: 10px;
}

.fp-listing-details span {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
}

.fp-item a:hover .fp-img img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.fp-slide:not(.slick-initialized) .fp-item:nth-child(n+4) ~ div {
    display: none;
}

.fp-control {
    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;
    margin: 45px auto 0;
}

.fp-prev, .fp-next {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.fp-prev em.ai-icon-arrow-p {
    background-image: url(images/ai-arrow-p-a.png);
    width: 27px;
    height: 50px;
}

.fp-next em.ai-icon-arrow-n {
    background-image: url(images/ai-arrow-n-a.png);
    width: 27px;
    height: 50px;
}

.fp-prev span, .fp-next span {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.100em;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: block;
}

.fp-prev span em {
    margin-right: 10px;
}

.fp-next span em {
    margin-left: 10px;
}

.fp-more-btn {
    width: 307px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 18px;
}

.fp-prev span:before, .fp-next span:before {
    position: absolute;
    content: '';
    top: 50%;
    left: calc(100% + 13px);
    width: 100%;
    height: 1px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.fp-prev span {
    margin-right: 50px;
}

.fp-next span {
    margin-left: 50px;
}

.fp-next span:before {
    left: auto;
    right: calc(100% + 13px);
}

.fp-prev span:hover em, .fp-next span:hover em {
    opacity: .60;
}

.fp-prev span:hover, .fp-next span:hover {
    color: var(--secondary-color);
}

/* Welcome */
.welc-container {
    display: block;
    position: relative;
    font-size: 0;
    background-color: #fff;
    z-index: 1;
    padding: 40px 0 119px;
}

.welc-wrapper {
    display: block;
    position: relative;
}

.welc-main {
    display: block;
    position: relative;
}

.welc-image .global-title-holder {
    text-align: center;
}

.welc-image .global-title {
    padding-right: 0;
    text-align: center;
}

.welc-image .global-title em {
    position: relative;
}

.welc-row {
    display: block;
    position: relative;
    margin: 0 -15px;
}

.welc-col {
    display: inline-block;
    vertical-align: bottom;
    width: 50%;
    position: relative;
    padding: 0 15px;
}

.welc-agent-holder {
    display: block;
    position: relative;
}

.welc-agent-holder {
}

.welc-agent-holder img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
    max-width: 476px;
}

.welc-content-container {
    display: block;
    position: relative;
}

.welc-content {
    display: block;
    position: relative;
    margin: 0 -15px;
}

.welc-btn {
    display: block;
    position: relative;
    margin-top: 40px;
}

.welc-content p {
    font-size: max(0.938vw, 10px);
    display: block;
    position: relative;
    line-height: 1.667;
    letter-spacing: 0.010em;
    color: #555555;
}

.welc-content-col {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    position: relative;
    padding: 0 15px;
}

.welc-content p:not(:last-child) {
    margin-bottom: 25px;
}

.welc-content-container .global-title h2, .welc-content-container .global-title h3 {
    text-transform: uppercase;
}

.welc-content-container .global-title h3 {
    margin-top: -30px;
    display: block;
}

.welc-btn a {
    max-width: 213px;
}

.welc-content p strong {
    font-size: max(1.125vw, 10px);
    line-height: 1.806;
    color: #000;
    letter-spacing: 0.010em;
    font-family: var(--title-font);
}

.welc-agent-holder-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C4AE5B; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    ;}

.welc-agent-holder-bg {
    position: absolute;
    top: 40px;
    right: 12px;
    width: 50%;
    height: calc(100% - 149px);
}

.welc-content-inner {
    display: block;
    position: relative;
    margin-left: 89px;
}

.welc-col:first-child {
    width: 37.936%;
}

.welc-col:last-child {
    width: 62.064%;
}

.welc-wrapper .custom-container {
    padding: 0 75px 0 75px;
}

.welc-content-container .global-title {
    padding-right: 90px;
}

/* Call to Action */
.cta-container {
    display: block;
    position: relative;
    font-size: 0;
    background-color: #fff;
    z-index: auto;
    padding: 105px 0;
}

.cta-wrapper {
    display: block;
    position: relative;
    z-index: 3;
}

.cta-main {
    display: block;
    position: relative;
}

.cta-row {
    display: block;
    position: relative;
}

.cta-col {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    pointer-events: none;
    z-index: 3;
}

.cta-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.25;
}

.cta-content {
    display: block;
    position: relative;
    padding-left: 90px;
}

.cta-list {
    display: block;
    position: relative;
    padding-right: 100px;
}

.cta-item {
    display: block;
    position: relative;
    margin-left: -73px;
}

.cta-item a {
    display: block;
    position: relative;
}

.cta-img {
    display: block;
    position: relative;
    padding-bottom: 10px;
    padding-left: 10px;
}

.cta-img-holder {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}

.cta-img-holder canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    /*     background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.cta-accent-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    /* background-position: center; */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.cta-accent-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 90px);
    height: calc(100% - 40px);
}

.cta-item:not(:last-child) {
    margin-bottom: 20px;
}

.cta-content-container {
    display: block;
    position: relative;
    padding: 0 218px 0 100px;
}

.cta-content p {
    font-size: max(0.875vw, 11px);
    line-height: 1.786;
    letter-spacing: 0.020em;
    color: #b3b3b3;
}

.cta-content p:not(:last-child) {
    margin-bottom: 25px;
}

.cta-item:nth-child(even) {
    left: -60px;
}

.cta-content-container .global-title em {
    /* color: rgba(255,255,255,.05); */
}

.cta-title {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 60px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.cta-title span {
    font-size: 20px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.210em;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    -webkit-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
}

.cta-title h2 {
    font-size: 45px;
    line-height: 1;
    letter-spacing: 0.010em;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--title-font);
    display: inline-block;
    vertical-align: top;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-item:nth-child(odd) .cta-accent-bg {
    width: calc(100% - 295px);
}

.cta-img-holder:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*     background-image: url(images/gradient-cta-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.cta-item a:hover .cta-img-holder:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.cta-item a:hover .cta-img-holder:before {
    opacity: 1;
    visibility: visible;
}

.cta-item a:hover .cta-title span, .cta-item a:hover .cta-title h2 {
    color: #000;
}

.cta-img-holder:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: 5;
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    opacity: 0;
    visibility: hidden;
}


#cta-listing {
    position: relative;
    z-index: 3;
}

#call-to-action {
    overflow: hidden;
}

/*Sold Listings*/

.sl-container {
    display: block;
    position: relative;
    font-size: 0;
    background-color: #fff;
    z-index: auto;
    padding: 97px 0 105px;
    overflow: hidden;
}

.sl-bg {
    position: absolute;
    top: 24%;
    left: 0;
    width: 1230px;
    height: 962px;
    pointer-events: none;
    z-index: 2;
}

.sl-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .10;
}

.sl-bg > div {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.sl-img {
    display: block;
    position: relative;
    height: 100%;
}

.sl-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sl-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.sl-col {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 50%;
}

.sl-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 50%;
    padding: 0 130px;
}

.sl-slide {
    display: block;
    position: relative;
    margin-right: -56%;
    margin-left: -130px;
}

.sl-content-container {
    display: block;
    background-color: var(--primary-color);
    position: relative;
    height: 100%;
    padding: 74px 70px 70px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
}

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

.sl-main .global-title-holder {
    margin-bottom: 50px;
    padding: 0 156px;
}

.sl-info-a {
    display: block;
    position: relative;
    margin-bottom: 23px;
    z-index: 2;
}

.sp-info-b {
    display: block;
    position: relative;
    margin-bottom: 26px;
    z-index: 2;
}

.sl-info-btn {
    display: block;
    position: relative;
    z-index: 4;
}

.sl-info-a h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sl-info-a span {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #a7a7a7;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sp-info-b span {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sl-info-btn a {
    max-width: 163px;
    height: 50px;
    font-size: 12px;
    letter-spacing: 0.100em;
}

.sl-info-btn a:before {
    width: 43px;
}

.sl-main {
    display: block;
    position: relative;
}

.sl-info-border {
    display: block;
    position: relative;
    height: 75px;
    margin-bottom: 23px;
    border-left: 1px solid var(--secondary-color);
    z-index: 2;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sl-more-btn {
    margin: 35px auto 0;
    display: block;
    position: relative;
}

.sl-more-btn a {
    margin: 0 auto;
    margin-left: 46.1%;
    max-width: 19.5%;
}

.sl-content-container:before {
    position: absolute;
    content: '';
    bottom: -77px;
    right: 0;
    width: 382px;
    height: 374px;
    background-image: url(images/accent-logo-2.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .10;
    filter: brightness(0) invert(1);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sl-content-container:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border: 5px solid var(--secondary-color); */
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    border: 5px solid;
    border-image: linear-gradient(45deg, #B88E34, #FFC13B, #B88E34) 1;
}

.sl-content-container:hover {
    background: #fff;
}

.sl-content-container:hover .sp-info-b span {
    color: #000;
}

.sl-content-container:hover .sl-info-a span {
    color: #000;
}

.sl-content-container:hover .sl-info-a h2 {
    color: #000;
}

.sl-content-container:hover .sl-info-border {
    border-color: #000;
}

.sl-content-container:hover:before {
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

.sl-content-container:hover:after {
    opacity: 1;
    visibility: visible;
}

.sl-content-container:hover .global-btn {
    color: #000;
    border-color: #000;
}

.sl-content-container .global-btn:hover {
    border-color: transparent;
    color: #fff;
}

.sl-wrapper {
    display: block;
    position: relative;
    z-index: 5;
}

.sl-slide:not(.slick-initialized) .sl-item:nth-child(n+2) ~ div {
    display: none;
}

.sl-control {
    display: block;
    position: absolute;
    top: 50%;
    right: 23%;
}

.sl-control > div {
    display: block!important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sl-prev em.ai-icon-arrow-p {
    background-image: url(images/ai-arrow-p-a.png);
    width: 27px;
    height: 50px;
}

.sl-next em.ai-icon-arrow-n {
    background-image: url(images/ai-arrow-n-a.png);
    width: 27px;
    height: 50px;
}

.sl-prev span, .sl-next span {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.100em;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: block;
}

.sl-prev span em {
    margin-right: 10px;
}

.sl-next span em {
    margin-left: 10px;
}

.sl-prev span:before, .sl-next span:before {
    position: absolute;
    content: '';
    top: 50%;
    left: calc(100% + 13px);
    width: 100%;
    height: 1px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.sl-prev span {
    margin-right: 50px;
}

.sl-next span {
    margin-left: 50px;
}

.sl-next span:before {
    left: auto;
    right: calc(100% + 13px);
}

.sl-prev span:hover em, .sl-next span:hover em {
    opacity: .60;
}

.sl-prev span:hover, .sl-next span:hover {
    color: var(--secondary-color);
}

.sl-control > div:not(:last-child) {
    margin-bottom: 20px;
}

.sl-slide .slick-slide.slick-current.slick-active + .slick-slide .sl-img img {
    -webkit-filter: grayscale();
    filter: grayscale();
}

.sl-control.is-mobile{
    display: none;
}


/*Marketing Expertise*/
.me-container {
    display: block;
    position: relative;
    font-size: 0;
    background-color: #fff;
    padding: 80px 0 87px;
}

.me-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 740px;
    background-color: var(--primary-color);
    pointer-events: none;
    z-index: 1;
}

.me-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.50;
}

.me-wrapper {
    display: block;
    position: relative;
    z-index: 3;
}

.me-wrapper .custom-container {
    padding: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.me-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.me-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.me-img-holder {
    display: block;
    position: relative;
}

.me-accent-bg {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 336px;
    height: 403px;
}

.me-main-title {
    display: block;
    position: relative;
    text-align: center;
    padding: 50px 0 27px;
}

.me-item {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
    padding: 0 30px;
}

.me-list {
    display: block;
    position: relative;
    margin: 0 -90px;
}

.me-list .slick-track {
    padding-bottom: 65px;
}

.me-main-title span {
    font-size: 40px;
    font-family: var(--title-font);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.100em;
    display: block;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.me-tagline {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.me-tagline p {
    font-size: 18px;
    line-height: 1.834;
    letter-spacing: 0.020em;
    color: #fff;
}

.me-main {
    text-align: center;
    position: relative;
}

.me-item-inner {
    display: block;
    position: relative;
    padding: 29px;
    background: #fff;
    box-shadow: 0px 23px 50px 0px rgb(0 0 0 / 23%);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.me-item:last-child .me-accent-bg {
    bottom: auto;
    left: auto;
    top: -20px;
    right: -20px;
}

.me-item a {
    display: block;
    position: relative;
}

.me-accent-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    ;}

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

.me-item a:hover .me-main-title span {
    color: #fff;
}

.me-item a:hover .me-img img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.me-btn a {
    margin: 0 auto;
    position: relative;
}

.me-btn {
    margin: 57px auto 0;
}

.me-list-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 100%;
    padding: 0 90px;
}

.me-list:not(.slick-initialized) .me-list-item:nth-child(n+2) {
    display: none;
}

.me-control {
    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;
    margin: 20px auto 0;
}

.me-prev, .me-next {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.me-prev em.ai-icon-arrow-p {
    background-image: url(images/ai-arrow-p-a.png);
    width: 27px;
    height: 50px;
}

.me-next em.ai-icon-arrow-n {
    background-image: url(images/ai-arrow-n-a.png);
    width: 27px;
    height: 50px;
}

.me-prev span, .me-next span {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.100em;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: block;
}

.me-prev span em {
    margin-right: 10px;
}

.me-next span em {
    margin-left: 10px;
}

.me-more-btn {
    width: 307px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 18px;
}

.me-prev span:before, .me-next span:before {
    position: absolute;
    content: '';
    top: 50%;
    left: calc(100% + 13px);
    width: 100%;
    height: 1px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

.me-prev span {
    margin-right: 50px;
}

.me-next span {
    margin-left: 50px;
}

.me-next span:before {
    left: auto;
    right: calc(100% + 13px);
}

.me-prev span:hover em, .me-next span:hover em {
    opacity: .60;
}

.me-prev span:hover, .me-next span:hover {
    color: var(--secondary-color);
}

/*Video*/
#hp-videos {
    position: relative;
    overflow: hidden;
    font-size: 0;
    letter-spacing: normal;
    line-height: 1;
}

#hp-videos .hp-videos-info {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    padding-bottom: 113px;
}

#hp-videos .hp-videos-info.active {
    bottom: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

#hp-videos iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#hp-videos .plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 0;
}

#hp-videos .plyr--paused iframe {
    opacity: 0;
}

#hp-videos .plyr--paused .plyr__poster {
    opacity: 1;
}

#hp-videos .plyr--paused .plyr__video-wrapper {
    opacity: .50;
}

#hp-videos .plyr--paused.plyr--stopped .plyr__controls {
    opacity: 0;
}

#hp-videos .plyr--paused .plyr__controls {
    opacity: 0;
}

#hp-videos button.plyr__control.plyr__control--overlaid svg {
    display: none;
}

#hp-videos button.plyr__control.plyr__control--overlaid:hover {
    opacity: 0.65;
}

#hp-videos .plyr__poster {
    background-size: cover;
}

#hp-videos button.plyr__control.plyr__control--overlaid {
    background-image: url(images/ai-play-btn-a.png)!important;
    background-position: center!important;
    background-size: contain!important;
    background-color: transparent!important;
    width: 106px;
    height: 106px;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#hp-videos button.plyr__control.plyr__control--overlaid:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 140px;
    border: 2px solid rgba(255,255,255,.20);
    height: 140px;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#hp-videos button.plyr__control.plyr__control--overlaid:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 183px;
    border: 1px solid rgba(255,255,255,.06);
    height: 183px;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#hp-videos .hp-video-title {
    display: block;
    text-align: center;
}

#hp-videos p.default-heading {
    display: block;
    margin-bottom: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
}

#hp-videos span.more-videos {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.050em;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#hp-videos span.more-videos a:hover {
    color: var(--secondary-color);
}

#hp-videos span.more-videos a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

/*Social Media*/
.soc-container {
    display: block;
    position: relative;
    font-size: 0;
    background-color: #fff;
}

.soc-wrapper {
    display: block;
    position: relative;
    z-index: 4;
}

.soc-main {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.soc-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    pointer-events: none;
    z-index: 1;
}

.soc-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.50;
}

.soc-agent-holder {
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 32.344%;
}

.soc-smi-list {
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 245px;
    margin-bottom: -54px;
}

.soc-smi-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0.5px;
    width: calc(100% / 5);
}

.soc-smi-item a {
    display: block;
    position: relative;
}

.soc-smi-img {
    display: block;
    position: relative;
    background-color: #000;
}

.soc-smi-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.global-title-holder {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
}

.soc-smi-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: block;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.soc-smi-title span {
    font-size: 20px;
    color: #949494;
    line-height: 1;
    letter-spacing: 0.050em;
    font-family: var(--title-font);
}

.soc-smi-title span em {
    display: block;
    font-size: 108px;
    margin-bottom: 20px;
}

.soc-smi-item:first-child {
    margin-left: 20%;
    top: -29px;
    left: -27px;
}

.soc-smi-item.is-ig a {
    /* border: 1px solid var(--secondary-color); */
    border: 1px solid;
    border-image: linear-gradient(45deg, #B88E34, #FFC13B, #B88E34) 1;
}

.soc-smi-title span em[class^=ai-font]:before {
    color: #b88e34;
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C4AE5B; */
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C4AE5B; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.soc-smi-item[class*="is-"] .soc-smi-img canvas {
    opacity: .50;
}

.soc-smi-item[class*="is-"] .soc-smi-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 13px;
    height: 100%;
    pointer-events: none;
    background-color: #000;
    z-index: 2;
}

.soc-main .global-title em {
    /* color: rgba(255,255,255,.05); */
}

.soc-main .global-title-holder {
    padding-bottom: 96px;
}

.soc-agent-holder img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.soc-main .global-title {
    margin-left: 10%;
}

.soc-smi-item a:hover .soc-smi-img canvas {
    opacity: .85;
}

.soc-smi-title span em.ai-font-youtube {
    font-size: 120px;
}

.soc-smi-title span em.ai-font-instagram {
    font-size: 100px;
}

/*Footer Form*/
.ff-container {
    display: block;
    position: relative;
    font-size: 0;
    background-color: #fff;
    padding: 206px 0 133px;
}

.ip-container .ff-container {
    padding: 100px 0 133px;
}

.ff-wrapper {
    display: block;
    position: relative;
    z-index: 4;
}

.ff-main {
    display: block;
    position: relative;
}

.ff-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    pointer-events: none;
    z-index: 1;
}

.ff-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
}

.footer-container {
    display: block;
    position: relative;
}

.footer-wrapper {
    display: block;
    position: relative;
}

.header-wrapper > .container, .hp-videos-info .custom-container, .ff-wrapper .custom-container, .footer-main-wrapper > .custom-container {
    padding: 0 15px;
    max-width: 1170px;
    margin: 0 auto;
}

.ff-tagline {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.ff-widget {
    display: block;
    position: relative;
}

.ff-widget div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.ff-widget div.wpcf7-response-output {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: 0 auto!important;
    font-size: 13px;
    color: #000!important;
    text-align: center;
}

.ff-widget form {
    display: block;
    position: relative;
}

.ff-cf-form {
    display: block;
    position: relative;
}

.ff-cf-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.ff-cf-row.full {
    display: block;
}

.ff-cf-row.full .ff-cf-field {
    display: block;
    width: 100%;
    position: relative;
}

.ff-cf-row .ff-cf-field {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 5px);
    position: relative;
}

.ff-cf-field input:not([type=submit]), .ff-cf-field textarea {
    width: 100%;
    height: 54px;
    border: 1px solid #000;
    padding: 0 20px;
    font-size: max(0.813vw, 11px);
    letter-spacing: 0.050em;
    line-height: normal;
    text-transform: uppercase;
    background-color: transparent;
}

.ff-cf-row:not(:last-child) {
    margin-bottom: 10px;
}

.ff-cf-field textarea {
    resize: none;
    height: 114px;
    padding: 25px 20px;
}

.ff-cf-row.full .ff-cf-field.global-btn {
    margin: 57px auto 0;
    max-width: 219px;
}

.ff-cf-row.full .ff-cf-field.global-btn input[type=submit] {
    height: 100%;
    width: 100%;
    border: none;
    padding: 0;
    background: transparent;
    font-size: 14px;
    letter-spacing: 0.100em;
    color: var(--secondary-color);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ios-true .ff-cf-row.full .ff-cf-field.global-btn input[type=submit],
.safari .ff-cf-row.full .ff-cf-field.global-btn input[type=submit] {
    -webkit-text-fill-color: initial;
    color: var(--secondary-color);
}

.ff-cf-row.full .ff-cf-field.global-btn:hover input[type=submit] {
    color: #000;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100;Neutral+Density */
    background: rgb(0,0,0);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=0 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ios-true .ff-cf-row.full .ff-cf-field.global-btn:hover input[type=submit],
.safari .ff-cf-row.full .ff-cf-field.global-btn:hover input[type=submit] {
    -webkit-text-fill-color: initial;
    color: #000;
}

.ff-tagline span {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.020em;
    color: #858585;
}

/*Footer*/
.ff-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    pointer-events: none;
}

.ff-main-bg > div {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.ff-main-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.30;
}

.footer-main-container {
    display: block;
    position: relative;
    font-size: 0;
    background-color: #fff;
    padding: 97px 0 78px;
}

.footer-main-wrapper {
    display: block;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: block;
    position: relative;
    margin-bottom: 55px;
    text-align: center;
}

.footer-contacts {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 65px;
}

.footer-disclaimer {
    display: block;
    position: relative;
    margin-bottom: 20px;
    margin-top: 28px;
    padding-top: 43px;
    text-align: center;
}

.footer-logo a {
    display: inline-block;
    position: relative;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-blogo {
    display: block;
    position: relative;
    margin-top: 40px;
}

.footer-blogo img {
    max-width: 100%;
    height: auto;
}

.footer-disclaimer p {
    font-size: max(0.75vw, 11px);
    line-height: 2.084;
    color: #9f9f9f;
    letter-spacing: 0.030em;
}

.footer-disclaimer p a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-disclaimer p a:hover {
    color: var(--secondary-color);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.footer-contacts span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 18px;
    color: #fff;
    padding: 0 7px;
    line-height: 1;
    letter-spacing: 0.050em;
    font-family: var(--title-font);
}

.footer-contacts span a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-contacts span a:hover {
    color: var(--secondary-color);
    -webkit-text-fill-color: transparent;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
}

.footer-contacts span:last-child {
    display: block;
    margin-top: 18px;
}

.footer-contacts span em.ai-icon-phone {
    background-image: url(images/ai-phone-icon-a.png);
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: bottom;
}

.footer-contacts span em.ai-icon-envelope {
    background-image: url(images/ai-envelope-icon-a.png);
    width: 19px;
    height: 15px;
    margin-right: 10px;
    vertical-align: baseline;
}

.footer-contacts span .ai-font-location-c {
    font-size: 27px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}

.footer-contacts span .ai-font-location-c:before {
    color: var(--secondary-color);
    -webkit-text-fill-color: transparent;
    background: rgb(184,142,52);
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    -webkit-background-clip: text;
}


.footer-disclaimer:before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    width: 100vw;
    height: 4px;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center; */
    /*     background-repeat: repeat-x; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
}

#footer-nav > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 8px 19px;
    border-right: 1px solid rgba(255,255,255,.30);
}

#footer-nav > li:first-of-type {
    padding-left: 0;
}

#footer-nav > li:last-of-type {
    padding-right: 0;
    border: none;
}

.footer-nav-wrap {
    display: block;
    text-align: center;
}

#footer-nav > li > a {
    font-size: max(0.875vw, 14px);
    line-height: 1;
    letter-spacing: 0.120em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#footer-nav > li > a:hover {
    color: var(--secondary-color);
    -webkit-text-fill-color: transparent;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
}

/*Copyright*/
.copyright {
    font-size: max(0.75vw, 11px);
    line-height: 1;
    letter-spacing: 0.030em;
    color: #cccccc;
    position: relative;
    display: block;
    margin-bottom: 17px;
    text-align: center;
}

.copyright a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.copyright a:hover {
    color: var(--secondary-color);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.copyright span {
    color: #fff;
    font-weight: 700;
}

.mls-logo {
    position: relative;
    display: block;
    text-align: center;
}

.mls-logo span[class^=ai-font-]:before {
    color: #b88e34;
    /*     background-image: url(images/gradient-text-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C4AE5B; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mls-logo span {
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
    color: #fff;
    margin: 0 5px;
}

.mls-logo span:first-child {
    margin-left: 0;
}

.mls-logo span:last-child {
    margin-right: 0;
}

.mls-logo span.ai-font-realtor-mls {
    font-size: 38px;
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-container #footer-form .global-title em {
    display: none;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
    font-size: 12px;
    top: 20%;
    left: 20%;
    width: auto;
}

.ip-container .header-wrapper {
    background-color: var(--primary-color);
    position: relative;
    padding: 20px 0;
}

.ip-container #breadcrumbs {
    font-size: 16px;
}

.ip-container #breadcrumbs span.breadcrumb_last {
    color: var(--primary-color);
    font-weight: 700;
}

.ip-banner {
    position: relative;
    overflow: hidden;
}

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

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 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: 400;
    font-size: 45px;
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

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

/* 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: 74.08%;
}

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

/* Adjust width of sidebar */
.sidebar {
    width: 23.83%;
    margin-top: 80px;
}

/* 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-size: 42px;
    letter-spacing: .02em;
    line-height: normal;
    letter-spacing: -0.020em;
    font-family: var(--title-font);
    color: #000000;
    font-weight: 400;
}

#content .entry {
    font-size: 15px;
    line-height: 1.667;
    letter-spacing: 0.010em;
    color: #555555;
    font-weight: 400;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 42px;
    letter-spacing: .02em;
    line-height: normal;
    letter-spacing: -0.020em;
    font-family: var(--title-font);
    color: #000000;
    font-weight: 400;
}

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

#content .archive-list:before, #content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail, #content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

/** End of Archive Default Layout (Archive Page) */
body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
    background: var(--primary-color);
    color: #fff;
}

body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
    background: #fff;
}

body.page-id-16.ip-container #breadcrumbs {
    padding: 0 122px;
}

body.ihf-details-template #inner-page-wrapper > .container {
    max-width: 100%;
}

body.single-aios-communities #inner-page-wrapper>.container {
    max-width: 100%;
}

body.single-aios-communities #content .community-featured-image {
    display: none;
}

/*IDX Fixes*/
#content ul#idx-mlm-nav-links {
    list-style: none;
    margin: 0 0 0 0;
}

#content .ihf-search .ihf-select-options ul, #content .ihf-search .ihf-select-options, #content .ihf-search .ihf-pagination, #content #ihf-main-container .nav-tabs, #content #ihf-main-container .chosen-results {
    margin: 0 0 0;
    padding: 0 0 0;
    list-style: none;
}

#content ul.ihf-navbar-nav {
    list-style: none;
    margin: 0 0 0;
}

#content .ihf-eureka ul.ihf-dropdown-menu {
    margin: 0 0 0;
    padding: 0 0 0 0;
    list-style: none;
}

body #listings-details .listings-cta > li > a.button-legacy {
    border-color: #000;
    color: #000;
}

body #listings-details .listings-cta.white > li > a.active, body #listings-details .listings-cta.white > li > a:hover {
    background: #000!important;
    border-color: #666!important;
}

body #listings-details .listings-cta > li > a.button-legacy {
    border-color: #000;
    color: #000;
}

body #listings-details .listings-cta.white > li > a.active, body #listings-details .listings-cta.white > li > a:hover {
    background: #000!important;
    border-color: #fff!important;
}

body #listings-details .listings-smi ul > li > a:hover {
    background: #fff!important;
    color: #000!important;
    border-color: #fff!important;
}

body.aios-custom-ihomefinder-printable-template #fixed-header {
    display: none;
}

body.aios-custom-ihomefinder-printable-template #inner-page-wrapper > .container {
    padding: 0;
    max-width: 100%;
}

body.aios-custom-ihomefinder-printable-template #breadcrumbs {
    display: none;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-header {
    background-color: #000;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-photo div {
    display: none;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-price, body.aios-custom-ihomefinder-printable-template #content .listings-printable-amenities h2, body.aios-custom-ihomefinder-printable-template .listings-printable-price, body.aios-custom-ihomefinder-printable-template #content .listings-printable-git h2, body.aios-custom-ihomefinder-printable-template #content .listings-printable-git strong, body #listings-details .listings-plan > ul > li > strong, body #ihf-main-container.ihf-modal-container .modal .modal-header .modal-title, body #listings-details .listings-slideshow-text span, body #listings-details .listings-smi h2, body #listings-details .listings-extras > li > strong, body #listings-details .listings-price, body #listings-details .listings-address strong, body #listings-details .listings-open-house h2, body #listings-details .listings-form h2 span, body #listings-details .listings-accordion-content ul li, body #listings-details .listings-accordion h2, body #listings-details .listings-description h2, body #listings-details .listings-address {
    font-family: var(--title-font);
    font-weight: 400!important;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-description p, body #listings-details .listings-description p {
    font-size: 15px;
    line-height: 25px;
    color: #555;
}

body #listings-details .listings-accordion-content ul li p {
    font-family: var(--body-font);
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-header span {
    display: none;
}

body.page-id-21 #inner-page-wrapper > .container {
    padding: 0 5%;
    max-width: 100%;
}

body .aios-contact-title {
    letter-spacing: -0.020em;
    font-family: var(--title-font);
}

body .aios-contact-title strong {
    font-weight: 400!important;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-form .aios-contact-form-title strong {
    font-weight: 400!important;
}

body .aios-contact-form-title {
    letter-spacing: -0.020em;
    font-family: var(--title-font);
}

body .aios-contact-wrap .aios-contact-main:before, body .aios-contact-wrap .aios-contact-main:after {
    height: 100%;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-smi ul li a:before, body .aios-contact-wrap .aios-contact-main .aios-contact-info ul li i:before {
    color: #b88e34;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b88e34+0,ffc13b+47,b88e34+100 */
    background: rgb(184,142,52);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(184,142,52,1) 0%, rgba(255,193,59,1) 47%, rgba(184,142,52,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(184,142,52,1) 0%,rgba(255,193,59,1) 47%,rgba(184,142,52,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88e34', endColorstr='#b88e34',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-info ul li a:hover {
    color: #ccc;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-smi ul li a:hover {
    opacity: .75;
    color: inherit;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-info ul li a, body .aios-contact-wrap .aios-contact-main .aios-contact-smi ul li a {
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

body.page-id-16 #footer-form {
    display: none;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-info ul li {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title-font);
    padding: 0 19px;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-form .aios-contact-control {
    font-size: 15px;
}

#content .aios-contact-wrap .aios-contact-main .aios-contact-title img {
    max-width: 50%;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-info ul li i {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

body .aios-contact-wrap .aios-contact-main .aios-contact-smi ul li a {
    font-size: 26px;
}
.grecaptcha-badge{
    z-index: 999;
}

/* Breadcrumbs */
.ip-container p#breadcrumbs {
    font-size: max(0.75vw, 12px);
    text-transform: uppercase;
    letter-spacing: 0.300em;
    font-weight: 300;
}

.ip-container #breadcrumbs span.breadcrumb_last {
    font-weight: 300;
    color: var(--secondary-color);
}

.hp-vid-popup a{
    display: block;
    position: relative;
}

.hp-vid-popup a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 106px;
    height: 106px;
    background: url(images/ai-play-btn-a.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 5;
    right: 0;
    bottom: 0;
    margin: auto;
}

.hp-vid-popup a canvas{
    display: block;
    width: 100%;
    background: #000;
    position: relative;
    z-index: 2;
    opacity: .4;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.hp-vid-popup a:hover canvas{
    opacity: .6;
}

.hp-vid-popup a img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.home #main-wrapper {
    overflow: hidden;
}
.ihf-details-template #listings-details .listings-seller-rep{
    /*display: none;*/
    font-size: 8px;
}

body #listings-details .listings-form textarea {
    padding-right: 50px;
}

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

body.ip-container.aios-custom-ihomefinder-details-template.ihf-details-template .wpcf7-not-valid-tip {
    top: 20%;
    left: 20%;
    right: auto;
}

.aios-custom-ihomefinder-shortcode #listings-results {
    margin-bottom: 41px;
}


body #listings-results .listings-table .listings-table-body .listings-table-label {
    color: #fff;
}

ihf-search.ihf-eureka i.ihf-fa.ihf-fa-search {
    font-style: normal!important;
}

.sl-section-disclaimer{
    color: #b88e34;
    padding: 16px;
    margin-top: 24px;
    line-height: 16px;
    font-size: 12px;
}

.single-post li::marker{
    font-weight:600;
}



.welc-row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
