/*
Theme Name: Hashtag Realty 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: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-Bold.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-BoldIt.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-BoldIt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-Light.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-Thin.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-SemiboldIt.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-SemiboldIt.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-Regular.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-RegularIt.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-RegularIt.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-Semibold.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-LightIt.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-LightIt.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova/ProximaNova-RegularIt.woff2') format('woff2'),
        url('fonts/ProximaNova/ProximaNova-RegularIt.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    /** Font default */
    --font-family-default: 'Montserrat', sans-serif;
    --font-family-title: 'Playfair Display', serif;
    --proxima-nova: 'Proxima Nova', 'Lato', Arial, Helvetica, Tahoma, sans-serif;
    --font-size-default: 14px;
    --font-size-title: 80px;
    --font-color-default: #000000;
    --font-color-title: #000000;

    /** Use for input, button, and any other element */
    --primary: #0669b3;
    --secondary: #e19632;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #ffffff;
    --dark: #3f3f3f;
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/

/* Sub Menu */
#nav li {
    position: relative;
    display: inline-block;
}

#nav .sub-menu {
    background: transparent;
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    position: absolute;
    min-width: 200px;
    list-style: none outside none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}

#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 var(--light);
    color: var(--font-color-default);
    text-decoration: none;
}

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

#nav li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

#nav .sub-menu li {
    position: relative;
}


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/

/* Global */

body {
    font-family: var(--font-family-default);
    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; */
}

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

.full-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.outer-container {
    max-width: 1335px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.inner-container {
    max-width: 1180px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

#main-wrapper {
    overflow: hidden;
}

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

.section-title {
    max-width: max-content;
    width: auto;
    position: relative;
    text-transform: uppercase;
    padding-left: 30px;
}

.section-title .small {
    font-size: 16px;
    letter-spacing: 0.15em;
    color: #8f8f8f;
    display: block;
    padding: 10px 0 14px;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 40px;
    background: #8f8f8f;
}

.section-title h2,
.section-title h1 {
    font-size: var(--font-size-title);
    font-family: var(--font-family-title);
    margin-top: -12px;
    line-height: 72px;
}

.section-title:after {
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 3px;
    height: calc(100% - 43px);
    background: var(--secondary);
    content: '';
}

.hp-btn {
    width: 100%;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #9b9b9b;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #000;
    position: relative;
}

.hp-btn:before {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 3px;
    height: 100%;
    background: #0569b2;
    content: '';
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.hp-btn:hover:before {
    width: calc(100% + 8px);
}

.hp-btn span {
    position: relative;
    z-index: 10;
    color: var(--font-color-default);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.hp-btn:hover span {
    margin-top: 9px;
    margin-left: 16px;
    color: var(--light);
    font-weight: 600;
}

/* Intro Animation */
body.intro-video-done {
    opacity: 1;
    pointer-events: auto;
    overflow: auto;
}


body.intro-video-isplaying {
    overflow: hidden;
}


.intro-video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    display: none;
}


.intro-vid-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1100;
    display: none;
}

.intro-vid-backdrop.backdrop-hidden,
.ip-container .intro-vid-backdrop {
    opacity: 0;
    pointer-events: none;
}

.intro-video.intro-hidden,
.ip-container .intro-video {
    opacity: 0;
    pointer-events: none;
}

.intro-video>div,
.intro-video .iv-inner,
.intro-video .iv-video,
.intro-video video {
    width: 100%;
    height: 100%;
}

.intro-video .iv-inner::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    opacity: 0;
}

.intro-video video {
    -o-object-fit: cover;
    object-fit: cover;
}

.intro-video .iv-inner {
    position: relative;
}

.intro-video .iv-btn {
    border: none;
    outline: none;
    background: transparent;
    outline: none;
    display: block;
    position: absolute;
    bottom: 14%;
    right: 7%;
    z-index: 5;
    font-size: 21px;
    letter-spacing: .3em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: var(--site-transition);
    transition: var(--site-transition);
}

.intro-video .iv-btn:hover {
    color: var(--primary-color);
}

.intro-video.intro-video-done {
    pointer-events: none;
}

.intro-video.hide-intro-video {
    display: none !important;
}

.intro-video.intro-video-done .iv-inner::after {
    opacity: 1;
}

/* Mobile Logo */
.mobile-logo {
    background: #000;
    text-align: center;
    padding: 30px 20px;
    display: none;
}

.mobile-logo a {
    display: block;
    max-width: 342px;
    font-size: 0;
    margin: 0 auto;
}

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

/* Header */
#main-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 40px 0;
    background: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    color: var(--light);
    min-height: 100px;
    display: flex;
    align-items: center;
}

#main-header.active {
    /*padding: 25px 0;*/
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.85);
}

#main-header .outer-container {
    max-width: 1380px;
}

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

.main-logo {
    /*max-width: 342px;*/
    max-width: 165px;
    width: 26%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-logo a {
    font-size: 0;
    display: block;
}

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

#main-header.active .main-logo {
    /*max-width: 266px;*/
    max-width: 75px;
    width: 20%;
}

.main-navigation {
    margin-left: 30px;
}

#nav {
    display: flex;
    align-items: center;
}

#nav>li {
    margin-left: 45px;
    white-space: nowrap;
}

#nav>li:first-child {
    margin-left: 0;
}

#nav>li>a {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light);
    position: relative;
}

#nav>li>a:after {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--light);
    content: '';
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#nav>li:hover>a:after {
    width: 100%;
}

#nav .sub-menu li {
    display: block;
    text-align: center;
}

#nav .sub-menu li a {
    background: rgba(0, 0, 0, 0.62);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--light);
    padding: 11px 10px;
    display: block;
}

#nav .sub-menu li a:hover {
    font-weight: 600;
    background: var(--primary);
    color: var(--light);
}

#main-header.active #nav .sub-menu {
    padding-top: 43px;
}

#main-header.active #nav>li>a:after {
    bottom: -41px;
}

/* Slideshow */
#main-slideshow {
    position: relative;
    width: 100%;
}

.slideshow-container {
    position: relative;
    width: 100%;
}

.slideshow-container:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(images/slide-overlay.png) no-repeat top center/ cover;
    z-index: 5;
}

.slideshow-smi {
    position: absolute;
    right: 25px;
    top: 40%;
    /* transform: translateY(-50%); */
    z-index: 10;
}

.ss-smi {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ss-smi a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: #fff;
    font-size: 19px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.ss-smi a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.follow-us {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--light);
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    transform: rotate(-90deg);
    top: 100%;
    margin-top: 82px;
}

.follow-us:after {
    content: '';
    width: 65px;
    height: 1px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    margin-left: 5px;
}

.volume-img {
    position: absolute;
    right: 1.25%;
    top: 89%;
    font-size: 0;
    max-width: 50px;
    z-index: 6;
    width: 3.125%;
    display: none;
}

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

.slideshow-container .cycloneslider-slides,
.slideshow-container .cycloneslider-slide,
.slideshow-container canvas {
    min-height: 800px;
}


/* Quick Search */

.main-qs {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 11;
    padding: 25px 0;
}

#qs-form {
    display: flex;
    align-items: center;
    color: var(--light);
}

#qs-form label {
    display: none;
}

#qs-form select {
    width: 100%;
    height: 41px;
    border: 1px solid #fff;
    background: transparent url(images/arrow.png) no-repeat right 10px center;
    text-transform: uppercase;
    padding: 0 5px 0 10px;
    font-size: 11px;
    letter-spacing: 0.025em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
}

#qs-form select option {
    color: var(--dark);
}

.qs-radio {
    max-width: 214px;
    width: 19%;
    display: flex;
    align-items: center;
}

.qs-radio label {
    display: block !important;
    text-transform: uppercase;
    font-size: 12px;
    padding-left: 25px;
    white-space: nowrap;
}

.qs-radio input {
    position: absolute;
    margin: 0;
    opacity: 0;
    visibility: hidden;
}

.qs-radio>div {
    position: relative;
}

.qs-radio label:before {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    border: 1px solid #fff;
    border-radius: 50px;
    transform: translateY(-50%);
}

.qs-radio label:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    left: 5px;
    top: 50%;
    background: var(--secondary);
    border-radius: 50px;
    transform: translateY(-50%);
    opacity: 0;
}

.qs-radio>.for-lease {
    margin-left: 20px;
}

.qs-radio input:checked+label:after {
    opacity: 1;
}

#qs-form>div {
    margin-left: 5px;
}

#qs-form>div:first-child {
    margin-left: 0;
}

#qs-form>.p-type,
#qs-form>.city {
    max-width: 198px;
    width: 18%;
}

#qs-form>.beds,
#qs-form>.baths {
    max-width: 80px;
    width: 8%;
}

#qs-form>.min-price,
#qs-form>.max-price {
    max-width: 90px;
    width: 8%;
}

#qs-form>.min-price select,
#qs-form>.max-price select {
    background: transparent
}

#qs-form>.qs-submit {
    max-width: 154px;
    width: 14%;
}

.qs-submit button {
    width: 100%;
    height: 41px;
    border: 1px solid #fff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.025em;
    color: var(--light);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.qs-submit button i {
    margin-left: 10px;
    font-size: 14px;
}

.qs-submit button:hover {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}

.qs-text {
    font-size: 13px;
    color: var(--light);
    text-align: right;
    letter-spacing: 0.01em;
    line-height: 1.3;
    display: block;
    margin-top: 10px;
}


.main-qs .inner-container {
    padding: 0 5.25%;
    max-width: calc(1140px + 10.5%);
}

/* About */
#main-welcome {
    position: relative;
    width: 100%;
    padding-bottom: 80px;
    overflow: hidden;
}

.safari #main-welcome {
    background-attachment: unset;
}

.welcome-accent {
    max-width: 60px;
    width: 3.75%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    /* background: url(images/accent2.jpg) no-repeat left center/ cover;
    background-attachment: fixed; */
    z-index: 11;
}

.section-accent canvas {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.welcome-accent:before {
    width: 100%;
    content: '';
    max-height: 293px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: rgba(25, 50, 88, 0.8);
}

.safari .welcome-accent {
    background-attachment: scroll;
    background-position: 100% 0;
    background-size: 100vw;
}

#main-welcome .outer-container {
    max-width: 1443px;
    padding: 0 75px;
}

.welcome-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    /* background: url(images/about-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed; */
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-bg canvas {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-bg canvas.fixed {
    background-attachment: fixed;
}

.welcome-wrap:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.welcome-wrap:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 527px;
    left: 0;
    top: 0;
    background: url(images/about-overlay.png) no-repeat top center/ cover;
    z-index: 1;
}

.welcome-outer {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.welcome-left {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 504px;
    width: 31.5%;
    z-index: 11;
}

.agent-photo {
    position: relative;
    font-size: 0;
    width: 100%;
}

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

.welcome-inner {
    max-width: 1293px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.welcome-right {
    max-width: 945px;
    background: #fff;
    width: 73.1%;
    padding: 80px 40px 10px;
    margin: 0 0 0 auto;
}

.wr-inner {
    max-width: 695px;
    margin: 0 auto;
    position: relative;
}

.welcome-house {
    position: absolute;
    max-width: 262px;
    width: 100%;
    font-size: 0;
    top: -30px;
    right: -15px;
}

.welcome-house img {
    width: 100%;
}

.welcome-title.section-title {
    margin-bottom: 35px;
}

.welcome-desc {
    width: 100%;
}

.welcome-desc .highlight {
    font-size: 24px;
    font-family: var(--font-family-title);
    line-height: 34px;
    color: #000000;
}

.welcome-desc p {
    font-size: 14px;
    line-height: 28px;
    color: #3f3f3f;
    margin-bottom: 20px;
}

.wd-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.wd-flex>p {
    width: 50%;
    margin-left: 25px;
    letter-spacing: -0.8px;
}

.wd-flex>p:first-child {
    margin-left: 0;
}

.welcome-bottom {
    max-width: 945px;
    width: 73.1%;
    margin: 0 0 0 auto;
    position: relative;
    padding: 15px 40px 30px;
}

.wb-inner {
    z-index: 10;
    max-width: 695px;
    margin: 0 auto;
    position: relative;
}

.welcome-btn {
    max-width: 286px;
    width: 100%;
}

.welcome-btn .hp-btn span {
    font-size: 13px;
    letter-spacing: 0.8px;
}

.welcome-bottom:before {
    width: 56.93%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: #fff;
    height: 100%;
    z-index: 1;
}

.welcome-bottom:after {
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    content: '';
    z-index: 0;
}

.welcome-contact {
    position: absolute;
    right: 0;
    top: 0;
    width: 43.07%;
    height: 100%;
    background: rgba(0, 0, 0, 0.74);
    z-index: 10;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.welcome-contact:after {
    position: absolute;
    left: 100%;
    height: 100%;
    top: 0;
    width: 1000%;
    content: '';
    background: rgba(0, 0, 0, 0.74);
}

.wc-contact {
    margin-top: 15px;
    color: var(--light);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 10;
}

.wc-contact:first-child {
    margin-top: 0;
}

.wc-contact a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.wc-contact a:hover {
    color: #e2b46c;
}

.wc-contact i {
    color: #e2b46c;
    min-width: 18px;
    text-align: center;
    margin-right: 20px;
    font-size: 18px;
}

.wc-contact .ai-envelope-f {
    font-size: 12px;
}

/* Meet The Team */
#main-mtt {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mtt-top {
    position: absolute;
    background: #fff;
    /*max-width: 530px;*/
    max-width: 580px;
    padding: 10px 15px 45px;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mtt-title.section-title {
    margin: 0 auto;
}

.mtt-container {
    width: 1600px;
}

#mtt-transparent {
    width: 1600px;
    height: 847px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    opacity: 0;
}

#mttTrueMap {
    display: block;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#mttTrueMap.active {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}


.mtt-hovers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.mtt-hovers>div {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.mtt-pin {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -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: 5;
    display: block;
    text-align: center;
}

.mtt-hovers>div.active .mtt-pin {
    opacity: 1;
}

.mtt-img {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.mtt-img img {
    width: 100%;
}

.mtt-hovers>div.active .mtt-img {
    opacity: 1;
}

.mtt-text>div {
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0;
}

.mtt-text>div>div {
    position: absolute;
    width: max-content;
    z-index: 10;
    opacity: 0;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.mtt-ernest .mtt-box {
    top: 616px;
    left: 119px;
}

.mtt-tonia .mtt-box {
    top: 416px;
    left: 136px;
}

.mtt-deshondra .mtt-box {

      top: 508px;
      left: 21px;
}

.mtt-rachelle .mtt-box {
    top: 618px;
    left: 864px;
}

.mtt-leandrew .mtt-box {
    top: 618px;
    left: 1257px;
}

.mtt-box {
    padding: 25px;
    text-align: center;
    border-bottom: 4px solid #e7a745;
    background: rgb(227, 227, 227);
    background: linear-gradient(0deg, rgba(227, 227, 227, 1) 0%, rgba(255, 255, 255, 1) 63%, rgba(255, 255, 255, 1) 100%);
    color: #000;
    min-width: 306px;
    max-width: 306px;
}

.mtt-box h3 {
    font-size: 28px;
    font-family: var(--font-family-title);
    margin-bottom: 10px;
}

.mtt-box .position {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.mtt-contact {
    padding-top: 15px;
    border-top: 1px solid #a8a8a8;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 18px;
}

.mtt-contact a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    color: #000;
    margin-top: 3px;
}

.mtt-contact a:hover {
    color: var(--secondary);
}

.mtt-box:before {
    position: absolute;
    bottom: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 75px;
    height: 44px;
    border-bottom: 22px solid #fff;
    border-left: 38px solid transparent;
    border-right: 38px solid transparent;
}

.mtt-text>div.active>div {
    opacity: 1;
    visibility: visible;
}

/* Featured Listings */
#main-fl {
    padding: 115px 0 110px;
    position: relative;
    /* background: url(images/fl-bg.jpg) no-repeat top center/ cover; */
    overflow: hidden;
}

.fl-accent {
    max-width: 60px;
    width: 3.75%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /* background: url(images/accent.jpg) no-repeat left center/ cover;
    background-attachment: fixed; */
}

.fl-accent:before {
    width: 100%;
    content: '';
    max-height: 271px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: rgba(25, 50, 88, 0.8);
}

.safari .fl-accent {
    background-attachment: scroll;
    background-position: 100% 0;
    background-size: 100vw;
}

#main-fl .outer-container {
    max-width: 1445px;
    padding: 0 75px;
}

.fl-top {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.fl-house {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0;
    max-width: 262px;
}

.fl-house img {
    width: 100%;
    height: auto;
}

.fl-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px 0;
}

.fl-buttons button {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.6em;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fl-buttons button i {
    font-style: normal;
    top: -1px;
    position: relative;
}

.fl-buttons:before {
    position: absolute;
    left: 50%;
    margin-left: -0.5px;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--secondary);
    content: '';
    transform: translateX(-50%);
}

.fl-buttons .prev-slick {
    margin-right: 30px;
}

.fl-buttons .next-slick {
    margin-left: 35px;
}

.fl-buttons button:hover {
    color: var(--primary);
}

.fl-slider {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.fl-slider .slick-list {
    margin-left: -16.5px;
    margin-right: -16.5px;
    padding-bottom: 190px;
}

.fl-slider .slick-slide {
    margin: 0 16.5px;
}

.fl-item-wrap {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    max-width: 409px;
    display: block !important;
    margin: 0 auto;
}

.fl-item {
    position: relative;
    display: block;
    width: 100%;
}

.fl-img {
    position: relative;
    width: 100%;
    font-size: 0;
    overflow: hidden;
}

.fl-img canvas {
    width: 100%;
    display: block;
}

.fl-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
}

.fl-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.32);
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fl-item:hover .fl-img:before {
    opacity: 1;
}

.fl-img:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 93.88%;
    max-width: 384px;
    background: #fff;
    content: '';
    z-index: 5;
    max-height: 110px;
    height: 23.50%;
    transform: translateX(-50%);
}

.fl-desc {
    top: 78.418%;
    position: absolute;
    z-index: 10;
    max-width: 367px;
    left: 50%;
    transform: translateX(-50%);
    width: 89.73%;
    background: url(images/fld-bg.jpg) no-repeat center center/ cover;
    padding: 30px 20px 40px;
    color: var(--light);
    text-align: center;
}

.fl-desc:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.75);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fld-inner {
    position: relative;
    z-index: 10;
    max-width: 301px;
    margin: 0 auto;
}

.fl-item:hover .fl-desc:before {
    background: rgba(231, 167, 69, 0.9);
}

.fl-desc .price {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 500;
    font-family: 'Cinzel';
}

.fl-desc .address1 {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.fl-desc .address2 {
    font-size: 14px;
}

.fl-desc .other-details {
    margin: 20px auto 30px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.fl-desc .other-details>span {
    margin-left: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.fl-desc .other-details>span:first-child {
    margin-left: 0;
}

.fl-desc .other-details>span i {
    margin-right: 8px;
    position: relative;
}

.fl-desc .other-details>span i:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fl-desc .other-details>span i:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fl-item:hover .fl-desc .other-details>span i:after {
    opacity: 1;
}

.fl-item:hover .fl-desc .other-details>span i:before {
    opacity: 0;
}

.beds-icon {
    width: 16px;
    height: 12px;
}

.beds-icon:before {
    background: url(images/beds.png) no-repeat center center/ contain;
}

.beds-icon:after {
    background: url(images/beds-white.png) no-repeat center center/ contain;
}

.baths-icon {
    width: 17px;
    height: 17px;
}

.baths-icon:before {
    background: url(images/baths.png) no-repeat center center/ contain;
}

.baths-icon:after {
    background: url(images/baths-white.png) no-repeat center center/ contain;
}

.sqft-icon {
    width: 15px;
    height: 15px;
}

.sqft-icon:before {
    background: url(images/sqft.png) no-repeat center center/ contain;
}

.sqft-icon:after {
    background: url(images/sqft-white.png) no-repeat center center/ contain;
}


.fl-desc .view-details {
    max-width: 154px;
    width: 100%;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #fff;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fl-item:hover .fl-desc .view-details {
    color: #e7a745;
    background: #fff;
    font-weight: 600;
}

.fl-btn {
    max-width: 229px;
    margin: 0 auto;
}

/* CTA */
#main-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-item-wrap {
    width: 33.33%;
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}

.cta-item-wrap:before {
    position: absolute;
    left: -1.5px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    background: #e7a745;
    content: '';
    width: 3px;
    z-index: 10;
}

.cta-item {
    display: block;
    position: relative;
    width: 100%;
}

.cta-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 0;
}

.cta-img canvas {
    width: 100%;
    display: block;
}

.cta-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cta-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cta-house {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.cta-house img {
    /* max-width: 283px; */
    height: auto;
    width: 45%;
    max-width: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cta-item:hover .cta-house img {
    max-width: 283px;
}

.cta-desc {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    padding-bottom: 14.79%;
}

.cta-desc h3 {
    /*font-size: 70px;*/
    font-size: 40px;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    color: var(--light);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cta-flex:hover .cta-desc h3 {
    opacity: 0.2;
}

.cta-item:hover .cta-desc h3 {
    opacity: 1;
}

.cta-btn {
    width: 100%;
    max-width: 182px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cta-btn .hp-btn span {
    margin-top: 9px;
    margin-left: 16px;
    color: var(--light);
    font-weight: 600;
}

.cta-item:hover .cta-btn {
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
    max-height: 66px;
}

.cta-btn .hp-btn:before {
    width: 100%;
}

.cta-item:hover .cta-desc {
    max-height: 100%;
    padding-bottom: 0;
}

.cta-item-wrap:first-child:before {
    display: none;
}

.cta-item-wrap:after {
    position: absolute;
    left: -0.5px;
    top: 0;
    width: 1px;
    height: 100%;
    content: '';
    background: #fff;
    z-index: 5;
}

.cta-item-wrap:first-child:after {
    display: none;
}

.cta-flex:hover .cta-item .cta-img:before {
    background: rgba(0, 0, 0, 0.37);
}

.cta-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cta-bg canvas {
    width: 100%;
}

.cta-bg img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
}

.cta-item-wrap.buy-cta:hover~.buy-bg {
    z-index: 1;
    opacity: 1;
}

.cta-item-wrap.sell-cta:hover~.sell-bg {
    z-index: 1;
    opacity: 1;
}

.cta-item-wrap.value-cta:hover~.value-bg {
    z-index: 1;
    opacity: 1;
}

/* Featured Areas */
#main-fa {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fa-accent {
    max-width: 60px;
    width: 3.75%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: url(images/accent2.jpg) no-repeat left center/ cover;
    background-attachment: fixed;
    z-index: 11;
}

.fa-accent:before {
    width: 100%;
    content: '';
    max-height: 293px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: rgba(25, 50, 88, 0.8);
}

.safari .welcome-accent {
    background-attachment: scroll;
    background-position: 100% 0;
    background-size: 100vw;
}

.fa-left-wrap {
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 12;
    pointer-events: none;
}

.fa-left {
    position: relative;
    max-width: 270px;
    z-index: 11;
    pointer-events: none;
}

.fa-left:after {
    position: absolute;
    left: 100px;
    top: calc(100% - 175px);
    max-width: 438px;
    height: 439px;
    width: 438px;
    background: url(images/compass.png) no-repeat center center/ contain;
    content: '';
    z-index: 0;
}

.fa-house {
    position: absolute;
    max-width: 227px;
    left: 155px;
    top: -90px;
    font-size: 0;
    width: 100%;
}

.fa-house img {
    width: 100%;
    height: auto;
}

.fa-title.section-title {
    margin-bottom: 75px;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.fa-title.section-title h2 {
    font-size: 75px;
}

.map-properties {
    max-width: 270px;
    width: 100%;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.map-properties li {
    margin-top: 15px;
    position: relative;
}

.map-properties li a {
    /*font-size: 23px;*/
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    letter-spacing: 0.05em;
    position: relative;
    padding: 14px 20px;
    display: block;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    color: var(--font-color-default);
    /*max-width: 175px;*/
    max-width: 270px;
}

.map-properties li a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #088dd2;
    content: '';
    z-index: 1;
}

.map-properties li a:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 175px;
    background: #eeeeee;
    content: '';
    z-index: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-properties li a span {
    position: relative;
    z-index: 10;
}

.map-properties li a:hover:after,
.map-properties li.active a:after {
    max-width: 100%;
}

.map-properties li a:hover,
.map-properties li.active a {
    max-width: 100%;
}

.fa-right {
    width: 100%;
}

#main-fa .outer-container {
    z-index: unset;
}

.map-container {
    width: 1289px;
}

#map-transparent {
    width: 1289px;
    height: 1405px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    opacity: 0;
}

#trueMap {
    display: block;
    width: 100%;
    max-width: 100%;
}

.map-hovers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.map-hovers>div {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-pin {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -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: 5;
    display: block;
    text-align: center;
}

.map-hovers>div.active .map-pin {
    opacity: 1;
}

.map-img {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-img img {
    width: 100%;
}

.map-hovers>div.active .map-img {
    opacity: 1;
}

.map-text>div {
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0;
}

.map-text>div>div {
    position: absolute;
    width: max-content;
}

.map-text a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 11px;
    color: var(--light);
    letter-spacing: 0.05em;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.44);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-text a i {
    font-size: 14px;
    margin-bottom: 3px;
}

.mt-32011 {
    top: 284px;
    left: 546px;
}

.mt-32241 {
    top: 190px;
    left: 792px;
}

.map-text a:hover {
    opacity: 0.7;
}

.mt-32218 {
    top: 362px;
    left: 749px;
}

.mt-32219 {
    top: 412px;
    left: 656px;
}

.mt-32220 {
    top: 498px;
    left: 610px;
}

.mt-32205 {
    top: 572px;
    left: 688px;
}

.mt-32210 {
    top: 614px;
    left: 655px;
}

.mt-32244 {
    top: 651px;
    left: 674px;
}

.mt-32212 {
    top: 651px;
    left: 720px;
}

.mt-32221 {
    top: 595px;
    left: 554px;
}

.mt-32222 {
    top: 650px;
    left: 571px;
}

.mt-32234 {
    top: 623px;
    left: 430px;
}

.mt-32226 {
    top: 391px;
    left: 885px;
}

.mt-32208 {
    top: 468px;
    left: 718px;
}

.mt-32209 {
    top: 509px;
    left: 716px;
}

.mt-32206 {
    top: 507px;
    left: 764px;
}

.mt-32204 {
    top: 543px;
    left: 723px;
}

.mt-32202 {
    top: 536px;
    left: 761px;
}

.mt-32277 {
    top: 514px;
    left: 814px;
}

.mt-32211 {
    top: 541px;
    left: 826px;
}

.mt-32207 {
    top: 587px;
    left: 774px;
}

.mt-32216 {
    top: 612px;
    left: 816px;
}

.mt-32217 {
    top: 647px;
    left: 796px;
}

.mt-32257 {
    top: 686px;
    left: 802px;
}

.mt-32223 {
    top: 732px;
    left: 771px;
}

.mt-32225 {
    top: 518px;
    left: 901px;
}

.mt-32246 {
    top: 560px;
    left: 870px;
}

.mt-32224 {
    top: 603px;
    left: 901px;
}

.mt-32233 {
    top: 518px;
    left: 971px;
}

.mt-32266 {
    top: 567px;
    left: 980px;
}

.mt-32250 {
    top: 618px;
    left: 986px;
}

.mt-32256 {
    top: 660px;
    left: 858px;
}

.mt-32258 {
    top: 737px;
    left: 843px;
}

.mt-32082 {
    top: 674px;
    left: 999px;
}

.mt-32004 {
    top: 707px;
    left: 1005px;
}

.mt-32073 {
    top: 716px;
    left: 688px;
}

.mt-32065 {
    top: 725px;
    left: 613px;
}

.mt-32050 {
    top: 777px;
    left: 562px;
}

.mt-32068 {
    top: 828px;
    left: 501px;
}

.mt-32003 {
    top: 790px;
    left: 689px;
}

.mt-32081 {
    top: 785px;
    left: 982px;
}

.mt-32259 {
    top: 815px;
    left: 803px;
}

.mt-32095 {
    top: 892px;
    left: 986px;
}

.mt-32092 {
    top: 975px;
    left: 872px;
}

.mt-32080 {
    top: 1052px;
    left: 1095px;
}

/* Featured Communities */
#main-fc {
    padding: 110px 0 115px;
    /* background: url(images/fc-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed; */
    position: relative;
    overflow: hidden;
}

.safari #main-fc {
    background-attachment: unset;
}

#main-fc:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, 0.32);
}

#main-fc:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 388px;
    content: '';
    background: url(images/fc-overlay.png) no-repeat bottom center/ cover;
    z-index: 1;
}

#main-fc .outer-container {
    max-width: 1500px;
}

.fc-title.section-title {
    margin: 0 auto 90px;
}

.fc-slider-wrap {
    width: 100%;
    position: relative;
}

.fc-slider {
    width: 100%;
    position: relative;
}

.fc-item-wrap {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    position: relative;
    max-width: 480px;
    display: block !important;
    margin: 10px auto;
}

.fc-slider .slick-slide {
    margin: 0 5px;
}

.fc-slider .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.fc-item {
    width: 100%;
    display: block;
    position: relative;
}

.fc-img {
    position: relative;
    font-size: 0;
    width: 100%;
    overflow: hidden;
}

.fc-img canvas {
    width: 100%;
    display: block;
    min-height: 320px;
}

.fc-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fc-item:hover .fc-img img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.fc-desc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    max-width: 340px;
    text-align: center;
    width: 70.833%;
    background: rgba(0, 0, 0, 0.75);
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fc-desc h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--light);
    font-family: var(--font-family-title);
}

.fc-item:hover .fc-desc {
    opacity: 0;
    visibility: hidden;
}

.fc-desc-hover {
    position: absolute;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    color: var(--light);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 25px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.fc-desc-hover h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-family-title);
    letter-spacing: 0.05em;
}

.fc-desc-hover p {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 20px;
}

.fc-desc-hover .view-details {
    max-width: 154px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 41px;
    background: #088dd2;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
}

.fc-item:hover .fc-desc-hover {
    opacity: 1;
    visibility: visible;
}

.fc-buttons {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-buttons button {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.6em;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fc-buttons button i {
    font-style: normal;
    top: -1px;
    position: relative;
}

.fc-buttons button:hover {
    color: var(--primary);
}

.fc-btn {
    max-width: 250px;
    width: 100%;
    margin: 0 35px;
}

/* Career Highlights */
#main-ch {
    padding: 100px 0 85px;
    position: relative;
    /* background: url(images/career-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed; */
}

.safari #main-ch {
    background-attachment: unset;
}

.ch-flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ch-left {
    max-width: 581px;
    position: absolute;
    left: 0;
    width: 44%;
}

.ch-right {
    max-width: 633px;
    width: 49%;
}

.ch-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.ch-item-wrap {
    width: 50%;
    padding: 10px;
    position: relative;
}

.ch-item {
    display: block;
    width: 100%;
    max-width: 272px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.ch-img {
    position: relative;
    font-size: 0;
    width: 100%;
    z-index: 5;
}

.ch-img canvas {
    width: 100%;
    display: block;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(23, 23, 23, 1) 50%, rgba(0, 0, 0, 1) 100%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.ch-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 165px;
    width: 61%;
    height: auto;
    z-index: 5;
}

.ch-img:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: #e7a745;
    content: '';
}

.cs-item .ch-img img {
    max-width: 159px;
    width: 59%;
}

.yoe-item .ch-img img {
    max-width: 149px;
    width: 55%;
}

.adotm-item .ch-img img {
    max-width: 127px;
    width: 47%;
}

.ch-desc {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ch-desc h3 {
    font-size: 60px;
    font-family: var(--font-family-title);
    margin-bottom: 15px;
}

.ch-desc span {
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ch-item .ch-img:before {
    background: rgba(231, 167, 69, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.ch-item:hover .ch-img:before {
    opacity: 1;
    v
}

.ch-title.section-title {
    margin-bottom: 35px;
}

.ch-content p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 20px;
}

.ch-title.section-title h2 {
    color: var(--light);
}

.ch-content .highlight {
    font-size: 20px;
    line-height: 34px;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

.ch-content {
    color: var(--light);
}

#main-ch:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.75);
}

.ch-item-wrap a:after {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 27px;
    background: url(images/ch-shadow.png) no-repeat top center/ cover;
    content: '';
    z-index: 0;
}

/* Testimonials */
#main-testimonials {
    padding: 220px 0 105px;
    position: relative;
}

#main-testimonials .outer-container {
    max-width: 1450px;
}

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

.testi-left {
    max-width: 470px;
    width: 34%;
}

.testi-right {
    max-width: 415px;
    width: 30%;
    margin-left: 30px;
}

.testi-title.section-title {
    margin-bottom: 55px;
    padding-left: 25px;
    white-space: nowrap;
}

.testi-title.section-title:after {
    max-height: 130px;
    top: 40px;
    bottom: unset;
}

.testi-btn {
    max-width: 260px;
}

.testi-btn .hp-btn:hover span {
    margin-left: 23px;
    margin-top: 13px;
}

.testi-middle {
    position: relative;
    max-width: 382px;
    width: 28%;
    margin-left: 55px;
}

.testi-photo {
    font-size: 0;
    position: relative;
    z-index: 10;
}

.testi-photo img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
}

.testi-accent {
    width: 91.88%;
    height: 100%;
    top: -8.375%;
    left: -13.87%;
    background: url(images/testi-accent.jpg) no-repeat center center/ cover;
    position: absolute;
}

.testi-house {
    font-size: 0;
    position: absolute;
    top: -19.26%;
    right: -27.48%;
    max-width: 227px;
    width: 60%;
}

.testi-house img {
    width: 100%;
    height: auto;
}

.testi-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
}

.testi-item p {
    font-size: 14px;
    line-height: 22px;
    color: #3f3f3f;
    margin-bottom: 20px;
}

.testi-item .highlight {
    font-size: 24px;
    color: #000000;
    font-family: var(--font-family-title);
    line-height: 33px;
    max-width: 370px;
}

.testi-item .author {
    font-size: 16px;
    color: #555555;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
    display: block;
}

.testi-buttons {
    margin-top: 40px;
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
    max-width: max-content;
}

.testi-buttons button {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.6em;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.testi-buttons button i {
    font-style: normal;
    top: -1px;
    position: relative;
}

.testi-buttons:before {
    position: absolute;
    left: 50%;
    margin-left: -0.5px;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--secondary);
    content: '';
    transform: translateX(-50%);
}

.testi-buttons .prev-slick {
    margin-right: 30px;
}

.testi-buttons .next-slick {
    margin-left: 35px;
}

.testi-buttons button:hover {
    color: var(--primary);
}

/* Videos */
.main-tv {
    position: relative;
    width: 100%;
    /* background: url(images/tv-bg.jpg) no-repeat top center/ cover; */
}

#main-videos {
    padding: 70px 0 65px;
    position: relative;
    overflow: hidden;
}

.videos-box {
    height: 77.32%;
    width: 69.625%;
    position: absolute;
    right: 0;
    top: 0;
    border: 8px solid rgba(181, 181, 181, 0.38);
    border-right: 0;
}

#main-videos .outer-container {
    max-width: 1520px;
}

.videos-flex {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.videos-left {
    max-width: 798px;
    width: 53.92%;
}

.videos-right {
    max-width: 649px;
    margin-left: 12px;
    width: 43.86%;
}

.vl-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.videos-buttons {
    max-width: 70px;
    width: 70px;
    min-width: 70px;
}

.videos-buttons button {
    width: 100%;
    display: block;
    font-size: 19px;
    padding: 0;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--light);
    height: 70px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.videos-buttons button:hover {
    background: transparent;
    color: var(--primary);
}

.videos-buttons button.next-slick {
    color: #c6b792;
    border-color: #baa87f;
    background: transparent;
}

.videos-buttons button.next-slick:hover {
    color: #01294a;
    background: #ffbf00;
}

.vl-slider-wrap {
    width: calc(100% - 70px);
    position: relative;
    margin-left: 1px;
}

.vl-slider {
    width: 100%;
    font-size: 0;
}

.vl-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    position: relative;
}

.vl-item a {
    display: block;
    border: 6px solid #cdcdcd;
    position: relative;
}

.vl-img {
    position: relative;
    width: 100%;
    font-size: 0;
}

.vl-img canvas {
    width: 100%;
    display: block;
}

.vl-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.vl-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.vl-item a:hover .vl-img:before {
    background: rgba(0, 0, 0, 0.35);
}

.vl-desc {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.vl-desc .play-btn {
    width: 126px;
    height: 126px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 50px;
    position: relative;
}

.watch-video {
    position: absolute;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--light);
    top: calc(100% + 20px);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.vl-item a:hover .watch-video {
    opacity: 1;
}

.vr-top {
    margin-bottom: 50px;
    margin-left: 13.86%;
    max-width: 430px;
}

.videos-title.section-title {
    margin-bottom: 35px;
}

.videos-desc {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 30px;
    color: #151515;
}

.videos-btn {
    max-width: 233px;
}

.vr-slider-wrap {
    position: relative;
    width: 100%;
}

.vr-slider {
    width: 100%;
}

.vr-slider .slick-slide {
    margin: 0 4.5px;
}

.vr-slider .slick-list {
    margin-left: -4.5px;
    margin-right: -4.5px;
}

.vr-item {
    position: relative;
    max-width: 210px;
    margin: 0 auto;
    display: block !important;
}

.vr-item a {
    display: block;
    position: relative;
    border: 6px solid #c2c2c2;
}

.vr-img {
    position: relative;
    font-size: 0;
    width: 100%;
    overflow: hidden;
}

.vr-img canvas {
    width: 100%;
    display: block;
}

.vr-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
}

.vr-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.vr-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
    background: rgba(15, 25, 32, 0.5);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.vr-item a:hover .vr-img:before {
    background: rgba(15, 25, 32, 0.3);
}

.vr-desc .play-btn {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 30px;
    position: relative;
}

.play-btn i {
    margin-left: 5px;
}

/* Social Media */
#main-sm {
    position: relative;
    padding: 130px 0 115px;
    overflow: hidden;
}

.sm-accent {
    max-width: 60px;
    width: 3.75%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /* background: url(images/accent.jpg) no-repeat left center/ cover;
    background-attachment: fixed; */
}

.sm-accent:before {
    width: 100%;
    content: '';
    max-height: 303px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: rgba(25, 50, 88, 0.8);
}

.safari .sm-accent {
    background-attachment: scroll;
    background-position: 100% 0;
    background-size: 100vw;
}

#main-sm .outer-container {
    padding: 0 75px;
    max-width: 1350px;
}

.sm-title.section-title {
    margin: 0 auto 30px;
}

.sm-house {
    font-size: 0;
    position: absolute;
    top: -65px;
    right: -125px;
    max-width: 232px;
    width: 100%;
}

.sm-house img {
    width: 100%;
    height: auto;
}

.sm-desc {
    text-align: center;
    margin: 0 auto 60px;
    font-size: 14px;
    color: var(--dark);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.sm-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sm-left {
    max-width: 554px;
    width: 49%;
}

.sm-right {
    max-width: 529px;
    width: 45%;
    margin-left: 30px;
}

.sm-item {
    width: 100%;
}

.sm-top {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.sm-top:hover {
    opacity: 0.7;
}

.sm-icon {
    font-size: 0;
    max-width: 112px;
    margin-right: 35px;
    width: 21%;
}

.sm-icon img {
    width: 100%;
    height: auto;
}

.sm-top h3 {
    font-size: 50px;
    font-family: var(--font-family-title);
    color: #000000;
    text-transform: uppercase;
}

.sm-top h3 span {
    display: block;
    font-size: 15px;
    color: #8f8f8f;
    letter-spacing: 0.15em;
    font-family: var(--font-family-default);
}

.fb-item .sm-icon {
    max-width: 110px;
}

.sm-followers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sm-followers>span {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.sm-followers>span i {
    font-weight: 700;
    font-style: normal;
    color: #088dd2;
}

.sm-followers>a {
    color: #088dd2;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin: 0 10px;
}

.smf-btn {
    max-width: 145px;
    width: 100%;
}

.smf-btn .hp-btn {
    height: 40px;
    font-size: 12px;
}

.smf-btn .hp-btn:before {
    left: 3px;
    top: 3px;
    height: calc(100% + 3px);
}

.smf-btn .hp-btn:hover span {
    margin-left: 7px;
    margin-top: 7px;
}

.sm-gallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.ig-img {
    width: 33.33%;
    padding: 5px;
    position: relative;
    font-size: 0;
    overflow: hidden;
}

.ig-img canvas {
    width: 100%;
    display: block;
}

.ig-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    transform: translate(-50%, -50%);
}

.ig-icon {
    font-size: 25px;
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: #fff;
    z-index: 11;
}

.ig-desc {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: rgba(11, 125, 191, 0.77);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--light);
    letter-spacing: 0.16em;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.ig-desc>span {
    position: relative;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.ig-desc>span:first-child {
    margin-left: 0;
}

.ig-desc>span:before {
    display: inline-block;
    content: '';
    margin-right: 10px;
}

.likes:before {
    width: 23px;
    height: 20px;
    background: url(images/heart.png) no-repeat center center/ contain;
}

.comments:before {
    width: 28px;
    height: 21px;
    background: url(images/comments.png) no-repeat center center/ contain;
}

.ig-img:hover .ig-desc {
    opacity: 1;
}

.sm-posts {
    width: 100%;
}

.smp-item {
    padding: 20px 0;
    border-top: 1px solid #dcdcdc;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.smp-item:first-child {
    padding-top: 0;
    border-top: none;
}

.smp-photo {
    max-width: 97px;
    position: relative;
    font-size: 0;
    margin-right: 25px;
    border: 2px solid #ebebeb;
    border-radius: 50px;
    overflow: hidden;
    min-width: 97px;
}

.smp-photo canvas {
    width: 100%;
    display: block;
}

.smp-photo img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}

.smp-right {
    width: 100%;
}

.smp-right h3 {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.05em;
}

.smp-right p {
    font-size: 13px;
    line-height: 1.3;
    color: #333333;
    margin-bottom: 10px;
}

.smp-right .hashtags {
    font-size: 13px;
    color: #037ac8;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.smp-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.date-published {
    font-size: 12px;
    color: #868686;
    letter-spacing: 0.1em;
}

.smp-share-like {
    display: flex;
    align-items: center;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.smp-share-like a {
    margin-left: 45px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.smp-share-like a:first-child {
    margin-left: 0;
}

.smp-gallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fb-img {
    width: 20%;
    font-size: 0;
    position: relative;
    margin-left: 10px;
}

.fb-img:first-child {
    margin-left: 0;
}

.fb-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fb-img.fb-more canvas {
    background: #0569b2;
}

.fb-desc {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 23px;
    font-family: 'Roboto Condensed';
    color: var(--light);
}

.fb-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fb-img canvas {
    width: 100%;
    display: block;
}

.fb-img:hover:before {
    opacity: 1;
}

.smp-right h3 a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* Contact */
#main-contact {
    position: relative;
    padding: 45px 0;
    /* background: url(images/contact-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed; */
}

.safari #main-contact {
    background-attachment: unset;
}

#main-contact:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.61);
}

#main-contact .outer-container {
    max-width: 1445px;
}

.contact-outer {
    padding: 55px 20px 90px;
    background: rgba(15, 30, 58, 0.9);
}


.contact-inner {
    max-width: 1140px;
    margin: 0 auto;
    color: var(--light);
    width: 90%;
}

.contact-title.section-title {
    margin: 0 auto 30px;
}

.contact-title.section-title h2 {
    color: var(--light);
}

.contact-desc {
    margin-bottom: 45px;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.contact-wrap {
    position: relative;
    width: 100%;
}

.git-form {
    width: 100%;
    position: relative;
}

.git-form input {
    width: 100%;
    padding: 25px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    outline: 0;
}

.git-form textarea {
    width: 100%;
    padding: 25px 50px 25px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    outline: 0;
    max-height: 115px;
    min-height: 115px;
}

.git-form input[type="submit"] {
    width: 41px;
    height: 41px;
    padding: 0;
    font-size: 0;
    border: none;
    background: url(images/plane.png) no-repeat center center/ contain;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.git-flex {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.git-flex>div {
    width: 33.33%;
    margin-left: 30px;
}

.git-flex>div:first-child {
    margin-left: 0;
}

.git-message-send {
    position: relative;
}

.git-message {
    font-size: 0;
}

.git-send {
    position: absolute;
    right: 0;
    bottom: 35px;
}

.git-send .ajax-loader {
    position: absolute;
    margin: 0;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 50%;
    width: max-content;
}

.contact-wrap .wpcf7-response-output {
    text-align: center;
    padding: 10px !important;
    font-size: 13px;
    position: absolute;
    width: 100%;
    margin: 15px auto 0 !important;
}

.git-form input[type="submit"]:hover {
    opacity: 0.7;
}

/* Footer */
#main-footer {
    position: relative;
    /* background: url(images/footer-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed; */
}

.safari #main-footer {
    background-attachment: unset;
}

#main-footer:after {
    width: 50%;
    content: '';
    max-height: 268px;
    height: 41.48%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: rgba(25, 50, 88, 0.8);
}

#main-footer .outer-container {
    max-width: 1520px;
}

.footer-outer {
    padding: 80px 20px 40px;
    background: rgba(255, 255, 255, 0.93);
}

.footer-inner {
    max-width: 1140px;
    display: block;
    margin: 0 auto;
}

.footer-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 45px;
}

.footer-item {
    max-width: 290px;
    width: 26%;
    margin-left: 25px;
}

.footer-item:first-child {
    margin-left: 0;
    padding-left: 1.78%;
}

.footer-item:last-child {
    padding-left: 4.28%;
}

.footer-item:nth-child(2) {
    max-width: 509px;
    width: 45%;
    /*padding-top: 45px;*/
    padding-top: 10px;
}

.footer-item h3 {
    font-size: 25px;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-contact {
    width: 100%;
}

.fcontact-item {
    margin-top: 25px;
}

.fcontact-item:last-child {
    padding-right: 5px;
}

.fcontact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary);
}

.fc-contact {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 18px;
}

.fc-contact i {
    min-width: 16px;
    color: var(--secondary);
    margin-right: 20px;
    top: 3px;
    font-size: 15px;
}

.fc-contact .ai-envelope-f {
    font-size: 11px;
    top: 4px;
}

.fc-contact .ai-font-location-c {
    font-size: 18px;
}

.fc-contact a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fcontact-item:first-child h4 {
    color: #0480d5;
}

.fcontact-item:nth-child(2) h4 {
    color: #016ccc;
}

.fcontact:last-child h4 {
    color: #0057c1;
}

.footer-logo {
    /*max-width: 509px;*/
    max-width: 230px;
    margin: 0 auto 25px;
    font-size: 0;
    width: 100%;
}

.footer-logo a {
    display: block;
    width: 100%;
}

.footer-logo img {
    width: 100%;
    height: auto;
}
.footer-broker{
    text-align: center;
    font-size: 33px;
    margin: 0 0 0.6em;
}
.footer-smi {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-smi a {
    width: 41px;
    height: 41px;
    color: #0a256b;
    border: 1px solid #0a256b;
    border-radius: 50px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 19px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-smi a:hover {
    background: #0a256b;
    color: var(--light);
}

.footernav {
    width: 100%;
}

.footernav li {
    margin-top: 15px;
}

.footernav li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.footer-text {
    text-align: center;
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #5e5e5e;
    line-height: 21px;
}

.footer-text a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-bottom {
    text-align: center;
    padding-top: 45px;
    border-top: 1px solid rgba(62, 62, 62, 0.2);
}

.footer-copyright {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
    font-weight: 300;
}

.footer-copyright .capitalize {
    text-transform: uppercase;
    font-weight: 600;
    color: #037acc;
}

.footer-copyright a:last-child {
    color: #037acc;
}

.footer-copyright a:last-child:hover {
    color: #111111;
}

.footer-copyright a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-mls {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-mls span {
    margin: 0 5px;
}

.footer-mls .ai-eho {
    font-size: 28px;
}

/* POJO */
body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
    background: #fff;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
}

html body.pojo-a11y-focusable a:focus {
    outline-style: initial !important;
    outline-width: 1px !important;
    outline-color: #FF0000 !important;
}

body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
    background: var(--primary);
    color: #fff;
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-container .slideshow-smi {
    display: none;
}

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

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

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

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

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

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

/* Adjust minimum height of page area */
#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
    width: 77.08%;
}

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

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
}

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

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

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {}

.main-qs button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 41px;
    border: 1px solid #fff;
    background: transparent url(images/arrow.png) no-repeat right 10px center;
    text-transform: uppercase;
    padding: 0 5px 0 10px;

    letter-spacing: 0.025em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
    border-radius: unset;
}

.main-qs span.filter-option.pull-left {
    font-size: 11px !important;
    color: #fff !important;
}

.main-qs input.form-control {
    color: #000 !important;
}

.post-page-agents #inner-page-wrapper,
.single-aios-agents #inner-page-wrapper {
    margin-top: 20px;
}

.post-page-agents #agents-results .agent-top {
    margin: 0 auto;
}

.post-page-agents #agents-results .agents-name a {
    color: #0569b2;
}

.post-page-agents #agents-results .agents-name a:hover {
    color: #000;
    opacity: 0.7;
}

.post-page-agents #agents-results .agents-contact,
.single-aios-agents #agents-single .agents-img {
    background: #0569b2;
}

.post-page-agents #agents-results .agents-contact li,
.post-page-agents #agents-results .agents-contact li span {
    color: #ffffff;
}

.post-page-agents #agents-results .agents-contact li a:hover {
    opacity: 0.7
}

.single-aios-agents #agents-single .agents-contact li a:hover {
    color: #0569b2;
}

.post-page-agents #agents-results .agents-smi li a,
.single-aios-agents #agents-single .agents-smi li a {
    background: #0569b2;
}

.single-aios-agents #agents-single .agents-smi li a:hover {
    color: #0569b2;
    border-color: #0569b2;
}

.post-page-agents #agents-results .agents-smi li a:hover {
    color: #ffffff;
    opacity: 0.7;
}

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

/* Roadmaps */
.aios-roadmaps .aios-roadmap-link .aios-roadmap-icon {
    font-weight: 700;
}

/* Listings */
#listings-details .listings-slideshow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgba(14, 14, 14, 0)), to(rgba(14, 14, 14, 1)));
    background: linear-gradient(to top, rgba(14, 14, 14, 0) 35%, rgba(14, 14, 14, 1) 100%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 10;
}

.grecaptcha-badge {
    z-index: 1000;
    bottom: 74px !important;
}


/* IHF */
#ihf-main-container #ihf-map-canvas {
    z-index: 10;
}

ul#ihf-search-location-tabs {
    margin-left: 0 !important;
}

#ihf-main-search-form .chosen-results,
#ihf-valuation-request-form .chosen-results {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

#ihf-main-container .glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

div#ihf-main-container .chosen-container .chosen-drop {
    max-height: 149px !important;
}

#ihf-main-search-form .chosen-results {
    max-height: 133px !important;
}

/* COntact */
.ai-contact-wrap a:hover {
    color: #0669b3 !important;
}

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

span.filter-option.pull-left {
    text-overflow: ellipsis;
}

.single-aios-agents .aiosp-content.aios-popup-body {
    max-width: 555px !important;
}

/* Our Areas */
ul.map-properties.ip-map-properties {
    margin-top: 195px !important;
    list-style: none !important;
}

/* Listings */
.ihf-results-template-shortcode #content-full .entry-title,
.ihf-results-template-shortcode #content-full #breadcrumbs,
.ihf-results-template #content-full #breadcrumbs {
    width: 1170px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

#content .entry {
    position: relative;
}

.page-id-300 #content .section-title h2 {
    font-size: 50px !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.page-id-300 #content .section-title p {
    display: none;
}

.main-qs ul.dropdown-menu.inner {
    max-height: 200px !important;
}

/* Communities */
body .aios-communities-legacy .aioscomu-label {
    font-size: 24px;
    line-height: 1;
}


.mtt-shameka .mtt-box {
    top: 336px;
    left: 235px;
}

.mtt-demetrius .mtt-box{
    left: 514px;
    top: 598px;
}

.mtt-rachelle .mtt-box {
    top: 318px;
    left: 600px;
}

.mtt-leandrew .mtt-box {
    top: 350px;
    left: 1036px;
}


.mtt-nicole .mtt-box {
    left: 1158px;
    top: 460px;
}

.mtt-terrica .mtt-box {
    left: 1314px;
    top: 546px;
}
















.opt .wpcf7-list-item-label {
    width: calc(100% - 22px ) !important;
    line-height: 1.4;
    font-size: 12px;
}

.opt span {
    width: 100% !important;
    margin: 0px !important;
}

.opt {
    margin-top: 15px;
}

.opt span.wpcf7-list-item label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.opt input {
    width: auto;
}




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