/*
Theme Name: The Polito Group
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
 *
 *******************************************************/
@font-face {
    font-family: 'ivarfine';
    src: url("fonts/ivarfine/ivarfine-webfont.woff2") format("woff2"), url("fonts/ivarfine/ivarfine-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    /** Font default */
    --body-font: 'Prompt', sans-serif;
    /* --title-font: "ivarfine", 'Tiro Tamil', serif;*/
    --title-font: 'Tiro Tamil', serif;
    --spartan: 'Spartan', sans-serif;
    --montserrat: 'Montserrat', sans-serif;
    --playfair: 'Playfair Display', 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: #dd9933;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --plyr-color-main: #dd9933;
}

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

#nav li a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.150em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
    z-index: 1;
}

#nav > li > a:before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    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: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

#nav > li:focus-within > a:before, #nav > li:hover > a:before {
    opacity: 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: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 167px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#nav .sub-menu li a {
    display: block;
    padding: 11px 10px;
    font-size: 13px;
    letter-spacing: 0.100em;
    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-weight: 300;
}

#nav .sub-menu li a:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: #dd9933;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#dd9933),color-stop(50%, #f4ce6d),to(#dd9933));
    background: -o-linear-gradient(left, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    background: linear-gradient(to right, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#nav .sub-menu > li {
    position: relative;
    display: block;
    background: rgba(26,26,26,.80);
    margin: 0 auto 1px;
    -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 a:before {
    opacity: 1;
    visibility: visible;
}

#nav .sub-menu li:hover > a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

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

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

a:hover, a:focus {
    color: var(--secondary-color);
}

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

.attachment-fixed canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

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

/*Site Image*/
.site-img {
    display: block;
    position: relative;
}

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

.site-img img {
    position: absolute;
    top: 0;
    left: 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;
}

/* Global Button */
em.ai-icon-arrow {
    background-image: url(images/ai-icon-arrow-prev.png);
    width: 11px;
    height: 11px;
}

.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%;
    max-width: 215px;
    height: 60px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.250em;
    color: #000;
    text-transform: uppercase;
    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;
    font-family: var(--title-font);
    padding: 0 5px;
    text-align: center;
    z-index: 2;
}

.global-btn:before {
    position: absolute;
    content: '';
    left: 0;
    width: 3px;
    height: 100%;
    top: 0;
    -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: -1;
}

.global-btn.vertical-gd:before {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: #dd9933;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#dd9933),color-stop(50%, #f4ce6d),to(#dd9933));
    background: -o-linear-gradient(top, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    background: linear-gradient(to bottom, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=0 );
    /* IE6-9 */
}

.global-btn.horizontal-gd:before {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
}

.global-btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border: 1px solid #d9d9d9;
}

.global-btn:hover:before {
    width: 100%;
}

.global-btn:hover {
    color: #000;
}

.global-btn:hover:after {
    opacity: 0;
    visibility: hidden;
}

.global-btn em[class*="ai-icon-"] {
    margin-left: 12px;
}

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

.global-btn.is-white:after {
    border: 1px solid rgba(247,243,231,.50);
}

.global-btn.is-white em[class*="ai-icon-"] {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.global-btn.is-white:hover {
    color: #000;
}

.global-btn:hover em[class*="ai-icon-"] {
    -webkit-filter: invert(1) brightness(0);
    filter: invert(1) brightness(0);
}

/* Global Title */
em.ai-icon-logo {
    background-image: url(images/monogram-logo.png);
    width: 27px;
    height: 27px;
}

.global-title-holder {
    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;
}

.global-title {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-left: 47px;
    overflow: hidden;
    margin-bottom: 30px;
    padding-top: 6px;
}

.global-title h2 {
    font-size: 80px;
    line-height: 1;
    color: #000;
    letter-spacing: 0.025em;
    display: block;
    font-family: var(--title-font);
}

.global-title h2 span {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.500em;
    color: #888888;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: var(--body-font);
}

.global-title.is-white h2, .global-title.is-white h2 span {
    color: #fff;
}

.global-title em[class*="ai-icon-"] {
    position: absolute;
    top: 0;
    left: 0;
}

.global-title em[class*="ai-icon-"]:before {
    position: absolute;
    content: '';
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #c4c4c4;
    margin: 0 auto;
    min-height: 60px;
}

.global-title.is-white em[class*="ai-icon-"]:before {
    background-color: #fff;
}

/*Fixed Header*/
.header-wrapper.active .logo a {
    max-width: 311px;
}

.header-wrapper.active .header-phone {
    margin-bottom: 0;
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    height: 0;
    visibility: hidden;
}

.header-wrapper.active {
    padding: 12px 0;
    background-color: rgba(0,0,0,.50);
    min-height: 90px;
}

.header-wrapper.active .header-right {
    padding-bottom: 0;
}

.header-wrapper.active:before {
    opacity: 1;
    visibility: visible;
}

.header-wrapper.active #nav li:hover > .sub-menu {
    padding-top: 38px;
}

/* Header */
.header-wrapper {
    position: fixed;
    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: 35px 0;
}

.header-wrapper:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: #dd9933;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#dd9933),color-stop(50%, #f4ce6d),to(#dd9933));
    background: -o-linear-gradient(left, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    background: linear-gradient(to right, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
}

.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-nav {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border-right: 1px solid rgba(255,255,255,.30);
    padding: 10px 40px 10px 0;
}

.header-wrapper > .container {
    width: 100%;
    /* max-width: 1400px; */
    padding: 0 115px;
}

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

.logo a {
    display: block;
    position: relative;
    max-width: 100%;
    width: 100%;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

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

.header-contacts {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 10px 40px 10px;
}

.header-contacts span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 13px;
    color: #fff;
    line-height: 1;
}

.header-contacts span:not(:last-child) {
    margin-right: 30px;
}

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

.header-contacts span a:hover em {
    color: var(--secondary-color);
}

.header-phone {
    display: block;
    position: relative;
    text-align: right;
    margin-bottom: 30px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.header-phone span {
    font-size: 15px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.100em;
}

.header-phone span em[class^=ai-font] {
    color: var(--secondary-color);
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
}

.header-right {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 14px;
    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;
}

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

.header-col {
    display: block;
    position: relative;
}

.header-phone 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-phone span a:hover {
    color: var(--secondary-color);
}

/*Slideshow*/
.slideshow-container {
    position: relative;
}

.slideshow-wrapper {
    position: relative;
}

.slideshow-container .cycloneslider-slide:before,
.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0.65+0,0+40,0+60,0.65+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.65)),color-stop(40%, rgba(0,0,0,0)),color-stop(60%, rgba(0,0,0,0)),to(rgba(0,0,0,0.65)));
    background: -o-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */
}

.slideshow-container .cycloneslider-slide:after,
.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.20);
    pointer-events: none;
}

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

.burger-menu-icon {
    width: 27px;
    height: 33px;
    cursor: pointer;
    display: block;
    position: relative;
}

.bm-lines.open-btn span {
    height: 5px;
    background: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: inline-block;
    vertical-align: middle;
    width: calc(33.33% - 4px);
    margin: 0 1px;
}

.bm-lines.close-btn span {
    height: 4px;
    background: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin: 0 1px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.bm-lines.close-btn span:first-child {
    -webkit-transform: translate(0px, 5px) rotate(45deg);
    -ms-transform: translate(0px, 5px) rotate(45deg);
    transform: translate(0px, 5px) rotate(45deg);
}

.bm-lines.close-btn span:last-child {
    -webkit-transform: translate(0px, -12px) rotate(-45deg);
    -ms-transform: translate(0px, -12px) rotate(-45deg);
    transform: translate(0px, -12px) rotate(-45deg);
}

.bm-lines.open-btn {
    width: 100%;
    height: 100%;
}

.bm-lines.close-btn {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 0;
    visibility: hidden;
}

.bm-lines.open {
    width: 27px;
    height: 33px;
}

.bm-lines {
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    -webkit-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
    width: 100%;
    height: 100%;
}

.burger-menu-icon:hover .bm-lines span {
    background: var(--secondary-color);
}

/*Side Menu*/
html.burger-menu-active {
    overflow: hidden!important;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1043;
    width: 100%;
    height: 100vh;
    font-size: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

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

.side-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1056;
    background: #141414;
    -webkit-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.side-menu-bg-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

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

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

.side-menu-container {
    width: 100%;
    position: relative;
    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: calc(100vh - 40px);
    margin: 20px;
    background-color: rgba(0,0,0,.80);
}

.side-menu-content-holder {
    height: 100%;
    width: 100%;
}

.side-menu-content-holder .simplebar-track.horizontal {
    display: none;
}

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

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

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

.sidemenu-nav > li > a {
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.050em;
    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;
    position: relative;
    font-family: var(--title-font);
}

.sidemenu-nav > li:hover > a {
    color: #f4ce6d;
}

.sidemenu-nav .sub-menu {
    margin-top: 20px;
}

.sidemenu-nav .sub-menu li {
    display: block;
    position: relative;
}

.sidemenu-nav .sub-menu li:not(:last-child) {
    margin-bottom: 13px;
}

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

.sidemenu-nav .sub-menu li.two-lines > a {
    line-height: 1.7;
    margin-top: -5px;
    display: inline-block;
}

.sidemenu-nav .sub-menu li a:hover {
    color: #fff;
    font-weight: 600;
}

.sidemenu-nav {
    position: relative;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin: 0 -44px;
}

.sidemenu-nav > li {
    display: inline-block;
    position: relative;
    text-align: left;
    vertical-align: top;
    /* width: calc(100% / 3); */
    padding: 0 44px;
    min-width: 370px;
}

.sidemenu-nav > li:not(:last-child) {
    margin-bottom: 56px;
}

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

.side-menu-nav {
    display: block;
    position: relative;
    width: 100%;
    padding: 0 194px;
    max-width: 1560px;
    margin: 0 auto;
}

.side-menu-nav .menu-primary-menu-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sidemenu-nav > li > ul {
    display: block;
}

.sidemenu-nav > li.append-contacts {
    margin-bottom: 0!important;
}

.side-menu-contacts span:last-child {
    padding-left: 32px;
    line-height: 1.2;
}

.side-menu-contacts-info {
    display: inline-block;
    position: absolute;
    top: 89px;
    left: 50px;
}

.side-menu-contacts span em.ai-font-envelope {
    font-size: 12px;
}

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

.side-menu-contacts span a:hover {
    color: var(--secondary-color);
}

.side-menu-contacts {
    display: block;
    position: relative;
    margin-bottom: 38px;
}

.side-menu-contacts span {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #fff;
    font-weight: 400;
    display: block;
    position: relative;
}

.side-menu-contacts span em[class^=ai-font] {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-size: 15px;
    color: var(--secondary-color);
}

.side-menu-contacts span em.ai-font-location-c {
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 0;
    font-size: 21px;
}

.side-menu-contacts span em.ai-font-envelope-f {
    font-size: 12px;
}

.side-menu-contacts span em[class*="ai-icon-"] {
    margin-right: 15px;
    margin-left: 2px;
}

.side-menu-contacts span em.ai-icon-dre {
    background-image: url(images/ai-icon-dre.png);
    width: 16px;
    height: 14px;
}

.side-menu-contacts span:not(:last-child) {
    margin-bottom: 20px;
}

.side-menu-smis {
    display: block;
    position: relative;
    padding-left: 9px;
}

.side-menu-smis a {
    display: inline-block;
    vertical-align: middle;
    font-size: 21px;
    color: #fff;
    line-height: 1;
    -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-smis a:hover {
    color: var(--secondary-color);
}

.side-menu-smis a:not(:last-child) {
    margin-right: 25px;
}

.side-menu-content-top {
    display: block;
    position: relative;
    padding: 86px 0 80px;
    height: 100%;
}

.side-menu .burger-menu-wrap {
    position: absolute;
    top: 61px;
    right: 85px;
}

.side-menu .burger-menu-icon {
    width: 33px;
    height: 33px;
}

.side-menu.active .bm-lines.close-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.side-menu-accent-logo {
    position: absolute;
    top: 50%;
    right: 23px;
    width: 45.577%;
    height: 93.808%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.side-menu-accent-logo canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .03;
}

/* Fixed SMI */
.nav-active-section-meet-simon #fixed-smi ul li a, .nav-active-section-american-dream #fixed-smi ul li a, .nav-active-section-call-to-action #fixed-smi ul li a, .nav-active-section-featured-properties #fixed-smi ul li a {
    color: #000;
    border-color: #fff;
    background-color: #fff;
}

.nav-active-section-footer-form #fixed-smi, .nav-active-section-footer-main #fixed-smi, .nav-active-section-testimonials #fixed-smi, .nav-active-section-social-media #fixed-smi {
    opacity: 0;
}

#scroll-down ul.aios-section-nav {
    display: none;
}

#fixed-smi {
    position: fixed;
    top: 26vh;
    right: 18px;
    z-index: 10;
}

.ip-container #fixed-smi {
    display: none;
}

.fixed-smi-holder, .fixed-smi-holder ul, .fixed-smi-label {
    display: block;
    position: relative;
}

.fixed-smi-holder ul li {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    margin: 0 auto;
}

.fixed-smi-holder ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #fff;
    font-size: 20px;
    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;
    position: relative;
}

.fixed-smi-holder ul li:not(:last-child) {
    margin-bottom: 10px;
}

.fixed-smi-label {
    padding-top: 77px;
    margin-top: 10px;
}

.fixed-smi-label span {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    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: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    position: relative;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.300em;
    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;
}

.fixed-smi-label:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 1px;
    height: 56px;
    background-color: rgba(255,255,255,.50);
    right: 0;
    margin: 0 auto;
}

.fixed-smi-holder ul li a:hover {
    background-color: transparent!important;
    border-color: transparent!important;
    color: #000!important;
}

.fixed-smi-holder ul li a:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
}

.fixed-smi-holder ul li a:hover:before {
    opacity: 1;
    visibility: visible;
}

/*Slideshow Content*/
.slideshow-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding-bottom: 111px;
    pointer-events: none;
}


.slideshow-content .global-title,
.slideshow-content a {
    pointer-events: auto;
}



.slideshow-content .custom-container {
}

.slideshow-btn {
    display: block;
    position: relative;
    margin-left: 48px;
}

/* Quicksearch */
#quick-search {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    font-size: 0;
    padding: 0 0 40px;
}

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

.qs-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

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

.qs-main-wrap {
    display: block;
    position: relative;
}

.qs-main {
    width: 96.491%;
    display: inline-block;
    vertical-align: middle;
}

.qs-icon {
    position: relative;
    width: 3.509%;
    display: inline-block;
    vertical-align: bottom;
}

.qs-icon span.ai-icon-magnifying {
    background-image: url(images/ai-icon-magnifying-glass.png);
    width: 23px;
    height: 25px;
}

.qs-main form {
    width: 100%;
    display: block;
    position: relative;
}
.qs-field button.btn.dropdown-toggle.bs-placeholder.btn-default,
.qs-field select, .qs-field input#maxprice, .qs-field input#minprice {
    width: 100%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #fff!important;
    padding: 0 14px 0 0;
    background-color: transparent!important;
    font-size: 10px;
    line-height: normal;
    color: #fff;
    letter-spacing: 0.050em;
    text-transform: uppercase;
    border-radius: 0;
    outline: none!important;
    box-shadow: none!important;
}


.qs-field .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    line-height: 1;
    color: #fff;
    letter-spacing: 0.050em;
    font-size: 10px;
    width: 95%;
    text-overflow: ellipsis;
}

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

.qs-field input#maxprice, .qs-field input#minprice {
    background-image: none;
}

.qs-field {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    margin-right: 1%;
}

.qs-form-main {
    display: block;
    position: relative;
}

.qs-form-main form.qs-form {
    width: 100%;
    position: relative;
    display: block;
}

.qs-field.submit input[type=submit] {
    width: 100%;
    height: 35px;
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0.100em;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.qs-field.submit .qs-adv {
    width: 100%;
    height: 35px;
    border: none;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0.050em;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.qs-field.submit .qs-adv span {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qs-field.submit .qs-adv:hover {
    color: #000;
}

.qs-field.submit:last-of-type {
    margin-right: 0;
}

.qs-field.long {
    width: 18.54%;
}

.qs-field.mlong {
    width: 18.54%;
}

.qs-field.short-b {
    width: 8.09%;
}

.qs-field.short-i {
    width: 9.90%;
}

.qs-field.short-i.fl-r {
    margin-right: 1.20%;
}

.qs-field.submit {
    width: 9.8%;
}

.qs-field select, .qs-field button.btn.dropdown-toggle.bs-placeholder.btn-default {
    background-image: url(images/ai-icon-arrow-d.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
}

.qs-wrapper .container {
    width: 1180px;
    padding: 0;
}

.qs-submit {
    display: block;
    position: relative;
}

.qs-field.submit .qs-adv:before, .qs-submit:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #dd9933;
    background: -webkit-gradient(linear, left top, left bottom, from(#dd9933),color-stop(50%, #f4ce6d),to(#dd9933));
    background: -o-linear-gradient(top, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    background: linear-gradient(to bottom, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=0 );
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.qs-field.submit .qs-adv:hover:before,
.qs-submit:hover:before {
    opacity: 1;
    visibility: visible;
}

.qs-field.submit .qs-adv:after,.qs-submit:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3cc6a;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.qs-field.submit .qs-adv:after {
    background-color: #000;
    /* z-index: -1; */
}

.qs-field.submit .qs-adv:before {
    /* z-index: -1; */
}

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


/*Featured Properties*/
.fp-hover {
    position: absolute;
    bottom: -108px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: inline-block;
    max-width: 440px;
    margin-left: 155px;
}

.fp-item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
    padding-bottom: 145px;
}

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

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

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

.fp-container {
    display: block;
    position: relative;
    padding: 88px 0 361px;
    font-size: 0;
}

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

.fp-price span {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #000;
    font-family: var(--title-font);
    display: block;
}

.fp-price {
    display: block;
    position: relative;
    padding: 20px 0;
    text-align: center;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
}

.fp-address h2 {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #000;
    display: block;
    text-transform: uppercase;
    font-weight: 500;
}

.fp-address h2 span {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.200em;
    color: #000;
    font-weight: 400;
    display: block;
}

.fp-info span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #000;
    text-transform: uppercase;
}

.fp-info span:not(:last-child) {
    margin-right: 23px;
}

.fp-desc p {
    font-size: 14px;
    line-height: 1.643;
    letter-spacing: 0.020em;
    color: #676767;
}

.fp-hover-info {
    display: block;
    position: relative;
    padding: 28px 45px 26px;
    text-align: center;
    -webkit-box-shadow: 3px 4px 59px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 3px 4px 59px 0px rgba(0, 0, 0, 0.16);
    background-color: rgba(255,255,255,.95);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fp-hover-btn span {
    margin: 0 auto;
    max-width: 236px;
}

.fp-hover-btn {
    margin-top: 22px;
    position: relative;
    z-index: 2;
}

.fp-address {
    margin-bottom: 18px;
}

.fp-info {
    margin-bottom: 22px;
}

.fp-info span em {
    display: block;
    margin: 0 auto 10px;
}

.fp-info span em.ai-icon-bed {
    background-image: url(images/ai-icon-bed.png);
    width: 15px;
    height: 13px;
}

.fp-info span em.ai-icon-bath {
    background-image: url(images/ai-icon-bath.png);
    width: 15px;
    height: 13px;
}

.fp-info span em.ai-icon-tile {
    background-image: url(images/ai-icon-tile.png);
    width: 15px;
    height: 15px;
}

.fp-desc {
    display: block;
    position: relative;
    height: 0;
    -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;
}

.fp-hover:hover .fp-hover-btn span.global-btn:before {
    width: 100%;
}

.fp-hover:hover .fp-hover-btn span.global-btn {
    color: #000;
}

.fp-hover:hover .fp-hover-btn span.global-btn:after {
    opacity: 0;
    visibility: hidden;
}

.fp-hover:hover .global-btn em[class*="ai-icon-"] {
    -webkit-filter: invert(1) brightness(0);
    filter: invert(1) brightness(0);
}

.fp-hover:hover .fp-desc {
    height: 138px;
    opacity: 1;
    visibility: visible;
}

.fp-hover:hover .fp-hover-info {
    background-color: #fff;
}

.fp-hover-accent-logo canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .03;
}

.fp-hover-accent-logo {
    position: absolute;
    top: 44%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 229px;
    height: 239px;
    -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;
    pointer-events: none;
}

.fp-hover:hover .fp-hover-accent-logo {
    opacity: 1;
    visibility: visible;
}

.fp-btn a {
    max-width: 100%;
}

.fp-disclaimer {
    display: block;
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    font-size: 12px;
    color: #000;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.020em;
}

.fp-btn-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: -235px;
    pointer-events: none;
}

.fp-control .fp-prev, .fp-control .fp-next {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.200em;
    color: #909090;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fp-control > div {
    padding: 17px 32px;
}

.fp-btn {
    display: inline-block;
    vertical-align: middle;
    width: 284px;
    pointer-events: auto;
}

.fp-control {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 52px;
    pointer-events: auto;
}

.fp-control > div:first-child {
    padding-left: 0;
}

.fp-control > div:last-child {
    padding-right: 0;
}

.fp-control > div em.ai-icon-prev {
    background-image: url(images/ai-icon-prev.png);
    width: 9px;
    height: 11px;
    margin-right: 15px;
}

.fp-control > div em.ai-icon-next {
    background-image: url(images/ai-icon-next.png);
    width: 9px;
    height: 11px;
    margin-left: 15px;
}

.fp-control .fp-prev span, .fp-control .fp-next span {
    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;
}

.fp-control > div:not(:last-child) {
    border-right: 1px solid #d4d4d4;
}

.fp-container:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: -1;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f1f1f1+100 */
    background: rgb(255,255,255);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),to(rgba(241,241,241,1)));
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1f1f1',GradientType=0 );
    /* IE6-9 */
}

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

.fp-accent-logo {
    position: absolute;
    top: 45px;
    right: 55px;
    width: 33.544%;
    height: 47.087%;
    pointer-events: none;
}

.fp-borders {
    position: absolute;
    top: 62px;
    left: -6px;
    width: 29%;
    height: 29%;
}

.fp-accent-logo canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .03;
}

.fp-borders canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border: 6px solid;
    -o-border-image: -o-linear-gradient(330deg, #e2a43f, #f3cc6b, #f2ca68) 1;
    border-image: linear-gradient(120deg, #e2a43f, #f3cc6b, #f2ca68) 1;
}

.fp-main .custom-container {
    pointer-events: none;
}

.fp-img {
    background-color: #000;
}

/*Call to Action*/
.cta-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: calc(100% / 3);
    padding: 0 3px;
}

.cta-main {
    display: block;
    position: relative;
    margin: 0 -3px;
}

.cta-container {
    font-size: 0;
    display: block;
    position: relative;
    margin-top: -150px;
}

.cta-hover-btn span {
    max-width: 100%;
    height: 43px;
}

.cta-hover-btn span.global-btn:before {
    width: 100%;
}

.cta-hover-btn span.global-btn {
    color: #000;
}

.cta-hover-btn span.global-btn:after {
    opacity: 0;
    visibility: hidden;
}

.cta-hover-btn span.global-btn em[class*="ai-icon-"] {
    -webkit-filter: invert(1) brightness(0);
    filter: invert(1) brightness(0);
}

.cta-hover-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.cta-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    bottom: 0;
    margin: 20px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    background-color: transparent;
    overflow: hidden;
}

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

.cta-title img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 17px;
}

.cta-title {
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.cta-title span {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.294em;
    color: #fff;
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 300;
}

.cta-title h2 {
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
    display: block;
    font-family: var(--title-font);
}

.cta-img img {
    opacity: .20;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.cta-img {
    background-color: #000;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.cta-borders {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 1px solid rgba(255,255,255,.40);
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.cta-borders span {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 236px;
    height: 3px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
}

.cta-item a:hover .cta-img img {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
}

.cta-item a:hover .cta-info {
    background-color: rgba(0,0,0,.70);
}

.cta-item a:hover .cta-borders {
    opacity: 0;
    visibility: hidden;
}

.cta-item a:hover .cta-hover-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cta-item a:hover .cta-title {
    top: 45%;
}

.cta-container .custom-container {
    padding: 0 95px;
}

/*American Dream*/
.adm-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.adm-container {
    display: block;
    position: relative;
    padding: 0;
    font-size: 0;
    margin-bottom: 50px;
    margin-top: 99px;
}

.adm-content-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.adm-content-logo {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% / 4);
    padding: 10px;
}

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

.adm-content-logos {
    display: block;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 39px;
}

.adm-video-holder a {
    display: block;
    position: relative;
}

.adm-video-img {
    display: block;
    position: relative;
    background-color: #000;
    border: 4px solid;
    -o-border-image: -o-linear-gradient(330deg, #e2a43f, #f3cc6b, #f2ca68) 1;
    border-image: linear-gradient(120deg, #e2a43f, #f3cc6b, #f2ca68) 1;
}

.adm-video-holder a:before {
    position: absolute;
    content: '';
    top: calc(100% - 4px);
    left: 0;
    width: 100%;
    height: 61px;
    pointer-events: none;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(images/adm-shadow.png);
}

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

.adm-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* display: block; */
}

.adm-content-container {
    position: relative;
    height: calc(100% + 20px);
    background: rgba(255,255,255,.95);
    padding: 60px 40px 0 33px;
    margin-left: -22px;
    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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.adm-content-holder .global-title em[class*="ai-icon-"]:before {
    height: 100vh;
}

.adm-agent-holder {
    position: relative;
    padding-top: 23px;
    z-index: 5;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

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

.adm-video-img span.ai-icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 106px;
    height: 106px;
    border: 1px solid rgba(255,255,255,.50);
    border-radius: 50%;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    z-index: 5;
}

.adm-video-img span.ai-icon-play:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 19px solid #fff;
}

.adm-content {
    display: block;
    position: relative;
    margin-bottom: 33px;
    text-align: center;
}

.adm-content-tagline {
    display: block;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.adm-content-tagline span {
    font-size: 24px;
    line-height: 1.3333;
    letter-spacing: 0.050em;
    color: #000;
    font-family: var(--title-font);
}

.adm-content p {
    font-size: 15px;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.020em;
    color: #000;
}

.adm-content-holder .global-title img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

.adm-content-holder {
    display: block;
    position: relative;
    padding: 0 51px;
}

.adm-container .custom-container {
    padding: 0 153px 0 47px;
}

.adm-col:first-child {
    width: 45.7%;
}

.adm-col:last-child {
    width: 54.3%;
}

.adm-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    /* IE6-9 */
    z-index: 2;
}

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

.adm-bg canvas {
    background-position: right;
}

.adm-content-container:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: -25%;
    height: 30%;
    pointer-events: none;
    z-index: -1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)),to(rgba(255,255,255,1)));
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    /* IE6-9 */
    pointer-events: none;
}

.adm-video-holder a:hover .adm-video-img canvas {
    opacity: .95;
}

.adm-video-holder a:hover span.ai-icon-play {
    border-color: #fff;
}

.adm-content-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .03;
}

.adm-content-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 68.697%;
    height: 48.185%;
    pointer-events: none;
}

.adm-video-holder button.plyr__control.plyr__control--overlaid,
.video-js-holder button.vjs-big-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 106px;
    height: 106px;
    border: 1px solid rgba(255,255,255,.50);
    border-radius: 50%;
    margin: 0;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    z-index: 5;
    background-color: transparent!important;
}

.video-js-holder .video-js.vjs-playing button.vjs-big-play-button {
    opacity: 0;
    visibility: hidden;
}

.adm-video-holder button.plyr__control.plyr__control--overlaid:before,
.video-js-holder button.vjs-big-play-button .vjs-icon-placeholder:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 19px solid #fff;
}

.adm-video-holder .plyr__control--overlaid svg {
    display: none;
}

.adm-video-holder .plyr--video .plyr__controls,
.video-js-holder .vjs-control-bar {
    opacity: 0;
}

.video-js-holder .vjs-control-bar {
    background: none !important;
    z-index: 10;
    transition: opacity .4s ease-in-out,transform .4s ease-in-out;
}

.adm-video-holder:hover .plyr--video .plyr__controls,
.video-js-holder:hover .vjs-control-bar {
    opacity: 1!important;
}

.adm-video-holder .plyr__video-wrapper,
.video-js-holder .video-js {
    display: block;
    position: relative;
    background-color: #000;
}

.video-js-holder .video-js {
    aspect-ratio: 640/360;
    width: 100%;
    height: auto;
}

.adm-video-holder .plyr__video-wrapper:before,
.video-js-holder .video-js:before {
    z-index: 2;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border: 4px solid;
    -o-border-image: -o-linear-gradient(330deg, #e2a43f, #f3cc6b, #f2ca68) 1;
    border-image: linear-gradient(120deg, #e2a43f, #f3cc6b, #f2ca68) 1;
}

.adm-video-holder:before,
.video-js-holder:before {
    position: absolute;
    content: '';
    top: calc(100% - 4px);
    left: 0;
    width: 100%;
    height: 61px;
    pointer-events: none;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(images/adm-shadow.png);
}


.adm-video-holder,
.video-js-holder {
    display: block;
    position: relative;
}



.adm-video-holder .plyr__video-wrapper:after,
.video-js-holder .video-js:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(40,39,60,.70);
    z-index: 2;
    margin: 4px;
}

.adm-video-holder .plyr--playing .plyr__video-wrapper:after,
.video-js-holder .video-js.vjs-playing:after {
    opacity: 0;
}

#adm-player canvas.data-poster {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
}

#adm-player.active canvas.data-poster{
    opacity: 1;
    visibility: visible
}


/*Meet Simon*/
.ms-container {
    display: block;
    position: relative;
    font-size: 0;
    padding: 0;
    padding-top: 140px;
    margin-bottom: 155px;
}

.ms-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

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

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

.ms-agent-border {
    position: absolute;
    top: -3%;
    left: 50%;
    width: 100vw;
    height: 589px;
}

.ms-agent-border canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border: 6px solid;
    -o-border-image: -o-linear-gradient(330deg, #e2a43f, #f3cc6b, #f2ca68) 1;
    border-image: linear-gradient(120deg, #e2a43f, #f3cc6b, #f2ca68) 1;
}

.ms-agent-photo {
    display: block;
    position: relative;
    z-index: 5;
    padding-right: 20px;
}

.ms-agent-photo img {
    max-width: 100%;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.ms-agent-photo:before {
    position: absolute;
    content: '';
    bottom: 12%;
    right: 0;
    width: 50%;
    height: 63%;
    background-color: #373737;
}

.ms-container .custom-container {
    padding: 0 90px 0 95px;
}

.ms-content-container {
    display: block;
    position: relative;
    padding: 0 35px 48px 60px;
    z-index: 5;
}

.ms-content {
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.ms-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 5;
}

.ms-content p {
    font-size: 15px;
    line-height: 2.134;
    color: #000;
    display: block;
    letter-spacing: 0.020em;
    font-weight: 300;
}

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

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

.ms-btn:first-child {
    width: 214px;
}

.ms-btn:last-child {
    width: 244px;
}

.ms-btn a {
    max-width: 100%;
}

.ms-btn:not(:last-child) {
    margin-right: 30px;
}

.ms-col:first-child {
    width: 56%;
}

.ms-col:last-child {
    width: 44%;
}

.ms-agent-holder {
    display: block;
    position: relative;
    margin-bottom: -155px;
    z-index: 6;
}

.ms-content p strong {
    font-size: 20px;
    line-height: 1.9;
    letter-spacing: 0.050em;
    font-family: var(--title-font);
    font-weight: 400;
}

.ms-content-container .global-title {
    margin-bottom: 35px;
}

.ms-content, .ms-btns {
    padding-left: 50px;
}

.ms-container:before {
    position: absolute;
    content: '';
    bottom: -155px;
    left: 0;
    width: 55.528%;
    height: 33px;
    z-index: 5;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
}

.ms-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 77%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+60,0+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),color-stop(60%, rgba(255,255,255,1)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(255,255,255,0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    /* IE6-9 */
    z-index: 2;
}

.ms-accent-logo canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .03;
}

.ms-accent-logo {
    position: absolute;
    top: 4%;
    left: 0;
    right: 9%;
    margin: 0 auto;
    width: 33.544%;
    height: 63.376%;
    pointer-events: none;
    z-index: 6;
}

.ms-row:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #fff;
    z-index: 2;
}

/*Social Media*/
.sm-container {
    display: block;
    position: relative;
    padding: 88px 0 0;
    font-size: 0;
}

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

.sm-bg canvas {
    opacity: .15;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.sm-main {
    display: block;
    position: relative;
    z-index: 5;
}

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

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

.sm-list {
    display: block;
    position: relative;
    margin: -5px;
}

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

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

.sm-content-container {
    display: block;
    position: relative;
    padding: 0 0 53px 63px;
}

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

.sm-smi-list {
    display: block;
    position: relative;
    text-align: center;
    margin-top: 45px;
}

.sm-acct-info {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 25px;
}

.sm-acct-btn {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 155px;
}

.sm-acct-img {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 67px;
    margin-right: 15px;
}

.sm-acct-info-title {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.sm-acct-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #575757;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 135%;
}

.sm-acct-info-title h2 {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.100em;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 13px;
}

.sm-tagline span {
    font-size: 15px;
    line-height: 1.867;
    font-weight: 300;
    letter-spacing: 0.050em;
    color: #fff;
}

.sm-acct-det span {
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.020em;
    color: #fff;
    font-weight: 600;
    font-family: var(--montserrat);
}

.sm-acct-det span em {
    font-weight: 400;
    font-style: normal;
}

.sm-acct-det span:not(:last-child) {
    margin-right: 9px;
}

.sm-acct-btn a {
    max-width: 100%;
    height: 50px;
}

.sm-container .custom-container {
    padding: 0 95px;
}

.sm-acct-holder {
    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;
}

.sm-smi-list h2 {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.150em;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

.sm-smis {
    position: relative;
    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;
}

.sm-smis a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 43px;
    height: 41px;
    border: 1px solid rgba(255,255,255,.30);
    font-size: 20px;
    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;
    background-color: transparent;
}

.sm-smis a:not(:last-child) {
    margin-right: 15px;
}

.sm-smis a:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.sm-acct-btn a em {
    margin-left: 10px;
    font-size: 18px;
}

.sm-content-container .global-title.is-white h2 span {
    color: #888888;
}

.sm-content-container .global-title.is-white em[class*="ai-icon-"]:before {
    background-color: #888888;
}

.sm-col:first-child {
    width: 56.138%;
    margin-bottom: -38px;
}

.sm-col:last-child {
    width: 43.862%;
}

.sm-content-container .global-title {
    margin-bottom: 25px;
}

.sm-img {
    background-color: #000;
}

.sm-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    margin: 18px;
    background-color: rgba(0,0,0,.80);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-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: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
    text-align: center;
}

.sm-info-likes span {
    font-size: 19px;
    color: #fff;
    display: block;
    letter-spacing: 0.160em;
    line-height: 1;
    font-weight: 300;
}

.sm-info-likes span em {
    margin-right: 15px;
}

.sm-info-likes span em.ai-icon-heart {
    background-image: url(images/ai-icon-heart.png);
    width: 34px;
    height: 29px;
}

.sm-info-likes span em.ai-icon-comment {
    background-image: url(images/ai-icon-comment.png);
    width: 41px;
    height: 30px;
}

.sm-info-likes span:not(:last-child) {
    margin-bottom: 11px;
}

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

.sm-item a:hover .sm-info {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sm-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid;
    -o-border-image: -o-linear-gradient(330deg, #e2a43f, #f3cc6b, #f2ca68) 1;
    border-image: linear-gradient(120deg, #e2a43f, #f3cc6b, #f2ca68) 1;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

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

/*Testimonials*/
.testi-container {
    display: block;
    position: relative;
    padding: 120px 0 0;
    font-size: 0;
}

.testi-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testi-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 59%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+60,0+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),color-stop(60%, rgba(255,255,255,1)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(255,255,255,0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    /* IE6-9 */
    z-index: 2;
}

.testi-main {
    display: block;
    position: relative;
    z-index: 5;
}

.testi-container .custom-container {
    padding: 0 117px 0 68px;
}

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

.testi-agent-holder {
    display: block;
    position: relative;
    padding-left: 19px;
}

.testi-agent-photo {
    display: block;
    position: relative;
    z-index: 2;
}

.testi-agent-photo img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

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

.testi-agent-bg {
    position: absolute;
    bottom: 0;
    left: 8.5%;
    width: 83.704%;
    height: 80.61%;
    pointer-events: none;
}

.testi-agent-holder:before {
    position: absolute;
    content: '';
    top: 11.6%;
    left: 0;
    width: 45%;
    height: 74%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
}

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

.testi-accent-logo {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 431px;
    height: 432px;
    pointer-events: none;
    margin: 0 auto;
}

.testi-bg canvas {
    opacity: .64;
}

.testi-content-container {
    display: block;
    position: relative;
    margin-left: -229px;
    z-index: 5;
    margin-bottom: -67px;
}

.testi-main-slide {
    display: block;
    position: relative;
    padding: 0 100px 60px;
    background-color: #fff;
    -webkit-box-shadow: 3px 4px 35px 0px rgb(0 0 0 / 15%);
    box-shadow: 3px 4px 35px 0px rgb(0 0 0 / 15%);
    min-height: 536px;
}

.testi-quote-icon {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.testi-quote-icon em.ai-icon-quote {
    background-image: url(images/ai-icon-quote.png);
    width: 55px;
    height: 44px;
    margin: -26px auto 0;
}

.testi-slide {
    display: block;
    position: relative;
}

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

.testi-item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.testi-content {
    display: block;
    position: relative;
    text-align: center;
}

.testi-content p {
    font-size: 14px;
    line-height: 2;
    font-weight: 300;
    color: #373737;
    display: block;
    margin-bottom: 25px;
}

.testi-content p strong {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.050em;
    color: #000;
    font-family: var(--title-font);
    font-weight: 400;
}

.testi-author {
    display: block;
    position: relative;
    margin-top: 30px;
}

.testi-author h2 {
    font-size: 22px;
    line-height: 1;
    color: #000;
    letter-spacing: 0.050em;
    display: block;
    margin-bottom: 10px;
    font-family: var(--title-font);
}

.testi-author span {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #000;
    display: block;
}

.testi-btn a {
    max-width: 100%;
    margin: 0 auto;
}

.testi-btn {
    display: inline-block;
    vertical-align: middle;
    width: 315px;
    margin: 0 40px;
}

.testi-controls {
    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: 43px auto 0;
    position: relative;
    z-index: 5;
}

.testi-content-container .global-title {
    margin-bottom: 70px;
}

.testi-controls > div em.ai-icon-prev {
    background-image: url(images/ai-icon-prev.png);
    width: 9px;
    height: 11px;
    margin-right: 24px;
}

.testi-controls > div em.ai-icon-next {
    background-image: url(images/ai-icon-next.png);
    width: 9px;
    height: 11px;
    margin-left: 24px;
}

.testi-controls .testi-prev, .testi-controls .testi-next {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.200em;
    color: #909090;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.testi-controls .testi-prev span, .testi-controls .testi-next span {
    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;
}

.testi-container:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: -1;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f1f1f1+100 */
    background: rgb(255,255,255);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),to(rgba(241,241,241,1)));
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1f1f1',GradientType=0 );
    /* IE6-9 */
}

.testi-controls .testi-prev:hover, .testi-controls .testi-next:hover {
    color: var(--secondary-color);
}

.testi-col:first-child {
    width: 48.284%;
}

.testi-col:last-child {
    width: 51.716%;
}

.testi-accent-logo canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .03;
}

/*Footer Form*/
.ff-container {
    position: relative;
    display: block;
    padding: 178px 0 100px;
    font-size: 0; 
    z-index: 0;
}

.ff-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 84.839%;
    height: 100%;
    pointer-events: none;
}

.ff-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+60,0+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),color-stop(60%, rgba(255,255,255,1)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 60%,rgba(255,255,255,0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    /* IE6-9 */
    z-index: 2;
}

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

.ff-container .custom-container {
    padding: 0 115px;
}

.ff-main {
    display: inline-block;
    width: 63.12%;
    position: relative;
}

.ff-main .global-title h2 {
    letter-spacing: -0.02em;
    font-size: 78px;
}

.ff-main .global-title {
    margin-bottom: 20px;
}

.ff-accent-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 50.47%;
    height: 75.132%;
    margin: 0 auto;
}

.ff-accent-logo canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .03;
}

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

.ff-tagline span {
    font-size: 14px;
    line-height: 1.929;
    font-weight: 300;
    letter-spacing: 0.020em;
    color: #000;
}

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

.ff-form-widget {
    padding-left: 10px;
    padding-right: 65px;
}

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

.ff-form-row {
    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;
    position: relative;
}

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

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

.ff-form-field input:not([type=submit]), .ff-form-field textarea {
    width: 100%;
    height: 60px;
    font-size: 14px;
    line-height: normal;
    font-weight: 300;
    letter-spacing: 0.050em;
    color: #000;
    text-transform: uppercase;
    padding: 0 5px;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    background-color: transparent;
}

.ff-form-field textarea {
    resize: none;
    height: 93px;
    padding: 28px 5px 20px;
}

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

.ff-form-field.form-submit button.global-btn {
    background-color: transparent;
    border: none;
    max-width: 100%;
}

.ff-form-field.form-submit {
    width: 27.47%;
}

.ff-form-row.full .ff-form-field {
    width: 100%;
    display: block;
}

.ff-form-field.recaptcha input.wpcf7-captchar {
    border: 1px solid #cfcfcf;
    font-size: 16px;
    letter-spacing: 0.050em;
    color: #000;
    padding: 0 25px;
    text-align: center;
    font-weight: 400;
}

.ff-form-field.recaptcha {
    width: 41.207%;
}

.ff-form-captcha img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 6px;
}

.ff-form-captcha span.captcha-refresh {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.100em;
    color: #636363;
    text-decoration: underline;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ff-form-captcha span.captcha-refresh:hover {
    color: var(--secondary-color);
    -webkit-text-decoration-color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
}

.ff-form-captcha {
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    width: 31.323%;
    text-align: center;
}

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

.ff-form-row.captcha {
    margin-top: 43px;
}

.ff-form-widget .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    font-size: 13px;
    color: #000!important;
    text-align: center;
    margin: 0;
}

.ff-form-widget .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 11px;
    z-index: 2;
}

.remove-validation .wpcf7-response-output, .remove-validation .wpcf7-not-valid-tip {
    display: none!important;
}

/*Footer*/
.footer-container {
    display: block;
    position: relative;
    font-size: 0;
    padding: 20px;
}

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

.footer-bg canvas {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

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

.footer-copyright {
    display: block;
    position: relative;
    padding: 67px 0 50px;
    text-align: center;
}

.footer-copyright:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.80);
    pointer-events: none;
}

.footer-copyright .custom-container {
    padding: 0 210px;
}

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

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

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

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

.footer-contacts span {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.100em;
    font-weight: 300;
}

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

.footer-contacts span em[class^=ai-font], .footer-contacts span em[class*="ai-icon-"] {
    display: block;
    color: var(--secondary-color);
    font-size: 15px;
    margin: 0 auto 16px;
}

.footer-contacts span:not(:last-child) {
    margin-right: 55px;
}

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

.footer-smis a {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    color: #fff;
    line-height: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-smis a:hover {
    color: var(--secondary-color);
}

.footer-smis a:not(:last-child) {
    margin-right: 32px;
}

.footer-contacts span em.ai-icon-dre {
    background-image: url(images/ai-icon-dre.png);
    width: 16px;
    height: 14px;
}

.footer-contacts span em.ai-font-location-c {
    font-size: 21px;
    line-height: 1;
    margin-bottom: 9px;
}

.footer-contacts span em.ai-font-envelope-f {
    font-size: 12px;
}

#footer-nav > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 34px;
}

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

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

.footer-nav-wrap {
    display: block;
    text-align: center;
    margin-bottom: 44px;
}

#footer-nav > li > a {
    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;
}

#footer-nav > li > a:hover {
    color: #f4ce6d;
}

/*Copyright*/
.footer-disclaimer {
    display: block;
    position: relative;
    text-align: center;
    margin: 0 auto 35px;
    width: 100%;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.924;
    font-weight: 300;
    letter-spacing: 0.050em;
    color: #c7c7c7;
}

.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: #f4ce6d;
}

.copyright {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #c7c7c7;
    position: relative;
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

.copyright span {
    color: #f4ce6d;
    font-weight: 600;
}

.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 + a + a {
    color: #f4ce6d;
}

.copyright a + a:hover {
    color: var(--secondary-color);
}

.copyright a:hover {
    color: #f4ce6d;
}

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

.mls-logo span {
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
    margin: 0 5px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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: 40px;
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-container #breadcrumbs {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.250em;
    line-height: 1;
}

.ip-container #breadcrumbs span.breadcrumb_last {
    color: #222222;
    font-weight: 700;
}

.ip-banner {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.ip-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0.65+0,0+40,0+60,0.35+100 */
    background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.35) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.35) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#59000000',GradientType=0 );
    /* IE6-9 */
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: .80;
}

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

.ip-banner .global-title {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    
}

.ip-banner .global-title.no-subtitle{
    min-height: 80px;
    padding-top: 25px;
}

.ip-banner h1.no-subtitle {
    font-size: 80px;
    line-height: normal;
    color: #fff;
    letter-spacing: 0.025em;
    display: block;
    font-family: var(--title-font);
}

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

.ip-banner h1:not(.no-subtitle) {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.500em;
    text-transform: uppercase;
    line-height: 1;
}

.ip-banner h1:not(.no-subtitle) span {
    font-size: 80px;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.025em;
    display: block;
    font-family: var(--title-font);
    margin-top: 10px;
    text-transform: none;
}



/* 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: 80px;
    line-height: 1;
    color: #000;
    letter-spacing: 0.025em;
    font-family: var(--title-font);
    font-weight: 400;
}

#content .entry {
    font-size: 15px;
    line-height: 2.134;
    color: #000;
    letter-spacing: 0.020em;
    font-weight: 300;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 32px;
    line-height: 1;
    color: #000;
    letter-spacing: 0.025em;
    font-family: var(--title-font);
    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;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}

body.single-post .entry-thumbnail img {
    width: 100%;
    max-width: 100%;
    display: block;
}

/** 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;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

/*Agents*/
body #agents-results .agent-top {
    display: none;
}

body.page-id-34 h1.entry-title {
    display: none;
}

body #agents-results .agents-contact li a:hover {
    color: #222;
}

body #agents-single .agents-smi li a, body #agents-results .agents-smi li a {
    background: #000;
    color: #fff;
}

body #agents-single .agents-smi li a:hover, 
body #agents-results .agents-smi li a:hover {
    background: #fff;
    color: #000;
    border-color: var(--secondary-color);
}

body #agents-single .agents-contact li a:hover {
    color: var(--secondary-color);
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--secondary-color);
}

body #agents-single .agents-contact li.agent-email-address {
    margin: 0 auto 20px;
}

body #agents-single .agents-right .agents-description-line {
    opacity: .10;
    background: var(--secondary-color);
}

body #agents-results .agents-button:hover, body #agents-single .agents-button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

body #agents-results .agents-pagination .page-numbers:hover, body #agents-results .agents-pagination .current {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

body #agents-results .agents-pagination .page-numbers {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

body #agents-results .agents-pagination .page-numbers:hover, body #agents-results .agents-pagination .current {
    background: transparent;
}

body #agents-results .agents-pagination .page-numbers:hover {
    color: var(--primary-color);
}

body #agents-results .agents-col .agents-name {
    align-items: flex-start;
    font-family: var(--title-font);
}

body #agents-results .agents-button {
    display: none;
}

body #agents-results .agents-contact {
    margin: 0;
    background-color: transparent;
    width: auto;
    padding: 0;
}

body #agents-results .agents-contact li, body #agents-results .agents-contact li a {
    color: #000;
}

body #agents-single .agents-smi {
    margin: 20px auto;
}

body #agents-single li.agent-contact-centered.agent-contact-short {
    margin: 0;
}

body.single-aios-agents h1.agent-entry-title {
    display: none;
}

body.single-aios-agents #breadcrumbs {
    margin: 20px 0;
}

body #agents-results .agents-smi {
    justify-content: center!important;
    width: auto;
    align-items: center!important;
    margin: 0!important;
}

body #agents-results .agents-contact-info {
    margin: 50px 0 0px;
    padding: 10px 10px;
    position: relative;
    width: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: rgb(221,153,51);
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    /* IE6-9 */
    margin-bottom: 0;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
}

body #agents-results .agents-contact-info > ul:not(:last-child) {
    margin-right: 5px!important;
}

body #agents-results .agents-img {
    width: 25%;
}

body #agents-results .agents-main {
    margin-left: 40px;
}

body #agents-results .agents-name a:hover {
    color: var(--secondary-color);
}

body #agents-single ul.agents-contact li > div {
    text-align: center;
    padding: 0;
}

body #agents-single .agents-contact li > div > span {
    float: none;
}

body #aios-testimonials .aios-testimonials-lists .star_rating_display i, .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content .star_rating_display i {
    background: rgb(221,153,51);
    background: -webkit-gradient(linear, left top, right top, from(rgba(221,153,51,1)),color-stop(50%, rgba(244,206,109,1)),to(rgba(221,153,51,1)));
    background: -o-linear-gradient(left, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    background: linear-gradient(to right, rgba(221,153,51,1) 0%,rgba(244,206,109,1) 50%,rgba(221,153,51,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content h2, body #aios-testimonials .aios-testimonials-lists h3 {
    font-weight: 400;
    font-family: var(--title-font);
}

body #aios-testimonials.aios-testimonials-page .aios-testimonials-content {
    padding: 0;
}


body .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-button a + a,
body .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-button a,
body .aios-home-valuation-step-wrap .aios-home-valuation-form .aios-home-valuation-form-row input[type="submit"], 
body .aios-home-valuation-step-wrap .aios-home-valuation-form .aios-home-valuation-form-row a,
body .aios-home-valuation-step-1 .aios-home-valuation-property-search .aios-home-valuation-next {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: #dd9933;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#dd9933),color-stop(50%, #f4ce6d),to(#dd9933));
    background: -o-linear-gradient(top, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    background: linear-gradient(to bottom, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=0 );
    /* IE6-9 */
    color: #000;
    text-shadow: none;
    font-weight: 400;
    font-family: var(--title-font);
    font-size: 15px;
    letter-spacing: 0.250em;
}

body .aios-home-valuation-step-1 .aios-home-valuation-property-search i{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd9933+0,f4ce6d+50,dd9933+100 */
    background: #dd9933;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#dd9933),color-stop(50%, #f4ce6d),to(#dd9933));
    background: -o-linear-gradient(top, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    background: linear-gradient(to bottom, #dd9933 0%,#f4ce6d 50%,#dd9933 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd9933', endColorstr='#dd9933',GradientType=0 );
    /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 }

body .aios-home-valuation-step-1 .aios-home-valuation-property-search .aios-home-valuation-next:hover,
body .aios-home-valuation-step-wrap .aios-home-valuation-form .aios-home-valuation-form-row input[type="submit"]:hover, 
body .aios-home-valuation-step-wrap .aios-home-valuation-form .aios-home-valuation-form-row a:hover,
body .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-button a: hover{
    opacity: 0.75;
}

body .aios-home-valuation-step-1 .aios-home-valuation-property-search input[type="text"] {
    font-size: 15px;
}

body .aios-home-valuation-form-steps-wrap .aios-home-valuation-title h2 {
    font-family: var(--title-font);
}

body .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-button a, 
body .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-button a + a {
    letter-spacing: normal;
    font-size: 13px;
}

body .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-info h3 {
    text-transform: none;
    font-family: var(--title-font);
    font-weight: 400;
}

body .aios-home-valuation-step-wrap .aios-home-valuation-form p {
    color: #fff;
}

body .aios-home-valuation-step-wrap .aios-home-valuation-map h3 {
    color: #fff;
    text-shadow: none;
}

body #aios-home-valuation-wrap {
    padding: 220px 0 100px;
}

.aios-home-valuation-custom-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aios-home-valuation-custom-title .global-title h2 span {
    letter-spacing: 0.050em;
    margin-top: 15px;
    font-size: 14px;
    margin-bottom: 0;
}

.aios-home-valuation-custom-title .global-title em[class*="ai-icon-"]:before {
    height: 100vh;
    top: calc(100% + 12px);
    width: 1px;
}

.aios-home-valuation-custom-title .global-title h2 {
    font-size: 80px;
}

.aios-home-valuation-custom-title .global-title {
    padding-left: 47px;
    margin-bottom: 0;
    padding-top: 6px;
}

.aios-home-valuation-custom-title .global-title em[class*="ai-icon-"] {
    width: 27px;
    height: 27px;
}


body .aios-home-valuation-form-steps-wrap .aios-home-valuation-form-steps-container .aios-home-valuation-process-warp {
    padding: 70px 0 90px;
}

body.single-aios-communities .ip-banner .global-title h1 {
    display: block;
}
.grecaptcha-badge{
    z-index: 1001;
}


.single-aios-agents .agents-popup-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 11px;
    left: auto;
    right: 0;
}

.single-aios-agents .agents-popup-form .wpcf7 form .wpcf7-response-output {
    text-align: center;
    font-size: 12px;
}

.ihf-details-template .ip-listing-popup-form-widget .use-floating-validation-tip .wpcf7-not-valid-tip {
    left: auto;
    right: 0;
    top: 3px;
}

.ihf-details-template .wpcf7-form-control-wrap {
    display: block;
}
#ip-listing-details .ip-ld-det-cta-container{
    font-size: 15px; 
    padding: 50px; 
    text-align: left;
}
#ip-listing-details .ip-ld-det-cta-container img{
    width: 350px;
}


.ihf-details-template .ip-ld-det-cta-item em {
    display: none;
}

.ihf-details-template .ip-ld-det-cta-container img {
    width: 100% !important;
    max-width: 300px
}

.ihf-details-template #ip-listing-details .ip-ld-det-cta-container{
    font-size: 13px;
}

body.error404 .wpcf7 form .wpcf7-response-output {
    text-align: center;
}

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

.fp-mls-logo canvas{
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    height: 25px;
    width: 125px;
    margin: 25px auto 0px;
    display: block;
}


.qs-form button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #fff!important;
    padding: 0 14px 0 0;
    background-color: transparent!important;
    font-size: 10px;
    line-height: normal;
    color: #fff;
    letter-spacing: 0.050em;
    text-transform: uppercase;
    border-radius: 0;
    outline: none!important;
    box-shadow: none!important;
}

/* IDX FIX */
ul#ihf-detail-extrainfotabs, #ihf-search-tabs > ul.nav-tabs, 
#ihf_select_property_type_chosen ul.chosen-results, 
#ihf_select_bedrooms_homes_chosen ul.chosen-results, 
#ihf_select_baths_homes_chosen ul.chosen-results{
    margin-left:0!important;
    padding-left: 0;
}

.ihf-advanced-property-search ul.chosen-results {
    padding-left: 0 !important;
    margin-left:0!important;
}

body.custom-breadcrumbs.ip-container #breadcrumbs span:first-child span.breadcrumb_last {
    font-weight: 400;
}


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;
}
button:focus-visible, a:focus-visible {
  outline-style: solid !important;
  outline-width: 5px !important;
  outline-color: red !important;
  transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}

#listings-details .listings-smi ul > li > a {
   font-family: 'agentimage'!important;
}
[class^=ai-font]:before {
    font-family: agentimage!important;
}

body.pojo-a11y-readable-font em[class^=ai-font] {
    font-family: agentimage!important;
}


.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 12px;
    padding: 0.2em 0.8em;
    width: auto;
}

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

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

body #agents-single li.agent-contact-centered.agent-contact-short {
    margin: 0 0 12px;
}

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


