/*******************************************************
 *
 * Global Style
 *
 *******************************************************/
 :root {
    /** Font default */
    --body-font: 'Montserrat', sans-serif;
    --title-font: 'Nanum Gothic', sans-serif;
    --roboto: 'Roboto', sans-serif;
    --playfair: 'Playfair Display', serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #292856;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary-color: #316cad;
    --secondary-color: #00a4ec;
    --primary: #316cad;
    --secondary: #00a4ec;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: 0.3s ease-in-out;
    --plyr-color-main: #316cad;
}

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

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: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

#main-wrapper {
    overflow: hidden;
}

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

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

.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: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

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

.aidefcf-wrapper form {
    position: relative;
}

.wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -39px;
    left: 0;
    right: 0;
    font-size: 12px;
    color: #fff !important;
    text-align: center;
    margin: 0 auto;
    line-height: 1;
}

.wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.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-control-wrap {
    display: block;
}

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

.global-title h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.100em;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: #fff;
    padding-left: 80px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.global-title h2 span {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.150em;
    color: #fff;
    display: block;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 10px;
}

.global-title img {
    position: absolute;
    top: 7px;
    left: 0;
    max-width: 100%;
    height: auto;
}

.global-title-inner {
    display: inline-block;
    position: relative;
}

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

/* Global Button */
.global-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    max-width: 287px;
    padding: 0 20px;
    text-align: center;
    font-size: 22px;
    font-family: var(--title-font);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.global-btn em.ai-icon-logo {
    background-image: url(../../assets/images/monogram-logo.png);
    width: 20px;
    height: 20px;
    margin-right: 19px;
}

.global-btn:hover,
.global-btn:focus {
    background-color: var(--primary-color);
    color: #fff;
}

.global-btn:hover em.ai-icon-logo {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

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

/*******************************************************
 *
 * Navigation
 *
 *******************************************************/
/* Sub Menu */
.main-nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 40.998%;
    top: 0;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    z-index: 1;
}

.main-nav:first-of-type {
    padding-left: 10%;
}

.main-nav:last-of-type {
    padding-right: 10%;
}

.main-nav>li {
    position: relative;
    display: inline-block;
}

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

.main-nav>li>a:before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 50px;
    height: 5px;
    background-color: #fff;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    opacity: 0;
    z-index: 2;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.main-nav>li:focus-within>a:before,
.main-nav>li:hover>a:before {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.header-nav .navigation {
    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;
    font-size: 0;
    width: 100%;
}

.main-nav>li .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    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;
}

.main-nav>li .sub-menu li a {
    display: block;
    padding: 18px 20px;
    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;
    color: #000;
    font-size: 14px;
}

.main-nav>li .sub-menu>li {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 0 !important;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.main-nav>li .sub-menu>li>a {
    background-color: rgba(255, 255, 255, .85);
}

.main-nav>li .sub-menu>li:hover>a {
    background-color: var(--primary-color);
}

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

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

.main-nav .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    min-width: 151px;
    padding: 0 !important;
}

.main-nav>li .sub-menu .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    min-width: 151px;
}

/*******************************************************
 *
 * Custom CSS
 *
 *******************************************************/
/* Header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    padding: 15px 0;
}

body.admin-bar .header-wrapper {
    top: 32px;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--secondary-color);
    opacity: 0;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    pointer-events: none;
    visibility: hidden;
}

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

.header-wrap {
    width: 100%;
    position: relative;
    text-align: center;
}

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

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

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

.logo a {
    display: block;
    position: relative;
    width: 193px;
    margin: 0 auto;
    max-width: 100%;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

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

.header-nav .menu-primary-menu-container {
    width: 100%;
    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;
}

/* Fixed Header */
.header-wrapper.active {
    padding: 10px 0;
    min-height: 100px;
}

.header-wrapper.active .logo img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.header-wrapper.active .logo a {
    width: 122px;
}

.header-wrapper.active .header-bg {
    opacity: .70;
    visibility: visible;
}

/*Fixed SMI*/
.nav-active-section-featured-video #fixed-smi,
.nav-active-section-footer #fixed-smi,
.nav-active-section-meet-the-team #fixed-smi {
    /* opacity: 0;
    visibility: hidden;
    pointer-events: none; */
}

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

#fixed-smi {
    position: fixed;
    top: 53%;
    right: 28px;
    z-index: 100;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

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

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

.fixed-smi-holder ul li a {
    color: #fff;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    text-align: center;
    font-size: 20px;
    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;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 108, 173, .75);
    border-radius: 50%;
}

.fixed-smi-holder ul li:nth-child(n+3)~li a {
    background-color: rgba(41, 40, 86, .75);
}

.fixed-smi-holder ul li:nth-child(n+3)~li a:hover {
    background-color: #63c8c3;
}

.fixed-smi-holder ul li a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

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

.fixed-smi-holder ul li.divider:after {
    position: absolute;
    content: '';
    top: calc(100% + 10px);
    left: 0;
    width: 1px;
    height: 20px;
    right: 0;
    margin: 0 auto;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    background-color: #fff;
}

.fixed-smi-holder ul li span.ai-font-phone-alt {
    font-size: 14px;
}

.fixed-smi-holder ul li span.ai-font-envelope-f {
    font-size: 12px;
}

.fixed-smi-holder ul li a span.ai-font-whatsapp-outline {
    font-size: 20px;
}

.fixed-smi-holder ul li a span[class*=ai-font-] {
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.fixed-smi-holder ul li.divider {
    margin-bottom: 40px;
}

/*Popup Container*/
body.popup-active {
    overflow: hidden;
}

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

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

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

.popup-main {
    position: relative;
    width: 100%;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    background-color: #316baa;
    padding: 79px 97px 89px;
    margin: 0 auto;
    max-width: 720px;
    border: 10px solid rgba(41, 40, 86, .75);
}

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

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

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

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

.popup-close {
    position: absolute;
    top: 55px;
    right: 45px;
    font-size: 21px;
    color: #fff;
    line-height: 1;
    padding: 0;
    background-color: transparent;
    border: none;
    z-index: 2;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

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

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

.popup-form-field input:not([type=submit]),
.popup-form-field textarea {
    width: 100%;
    height: 70px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, .46);
    font-size: 14px;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 0.050em;
    color: #aeaecc;
    padding: 0;
}

.popup-form {
    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;
}

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

.popup-form-field textarea {
    height: 119px;
    padding: 30px 0;
    resize: none;
}

.popup-form-field.form-submit {
    display: block;
    margin: 40px 0 0;
    width: 100%;
}

.popup-form-field.form-submit button {
    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: 50px;
    border: 1px solid #fff;
    background-color: transparent;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.050em;
    max-width: 183px;
    margin: 0 auto;
    padding: 0 10px;
    color: #fff;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.popup-form-field.form-submit button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

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

/*Footer*/
.footer-container,
.footer-main,
.footer-logo,
.footer-contact-holder,
.footer-logo-holder,
.footer-contact-title,
.footer-contact-list,
.footer-contact-address,
.footer-contact-smi,
.footer-nav-wrap,
.copyright,
.mls-logo,
.footer-form-container,
.footer-form-main,
.footer-form-widget,
.footer-form-widget form {
    display: block;
    position: relative;
}

.footer-container {
    padding: 60px 0 70px;
    font-size: 0;
}

.footer-container .custom-container {
    max-width: 1170px;
}

.footer-bg {
    background-color: #F1DBB2;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 28px;
}

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

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

.footer-contact-title h2,
.footer-contact-address span {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.025em;
    color: #292856;
    font-weight: 500;
}

.footer-contact-title {
    margin-bottom: 28px;
}

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

.footer-contact-item {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.footer-contact-item span {
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #292856;
}

.footer-contact-item span a {
    color: inherit;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.footer-contact-item span a:hover {
    color: var(--secondary-color);
}

.footer-contact-item span em.footer-contact-label {
    display: block;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.325em;
    color: #3674ab;
    margin-bottom: 8px;
}

.footer-contact-item:not(:last-child) {
    margin-right: 40px;
}

.footer-contact-list {
    margin-bottom: 28px;
}

.footer-contact-smi a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 19px;
    line-height: 1;
    color: #292856;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.footer-contact-smi a:not(:last-child) {
    margin-right: 35px;
}

.footer-contact-address {
    margin-bottom: 28px;
}

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

/*Footer Form*/
.footer-form-container {
    padding: 85px 0 50px;
}

.footer-form-main .global-title h2,
.footer-form-main .global-title h2 span {
    color: #292856;
}

.footer-form-main .global-title {
    margin-bottom: 28px;
}

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

.footer-form-field input:not([type=submit]),
.footer-form-field textarea {
    width: 100%;
    height: 55px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(41, 40, 86, .46);
    font-size: 14px;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 0.050em;
    color: #292856;
    padding: 0;
}

.footer-form-field input[type="checkbox"],
.popup-form-widget input[type="checkbox"] {
     height: auto;
     width: auto;
}

.footer-form-field .wpcf7-acceptance .wpcf7-list-item label,
.popup-form-widget .wpcf7-acceptance .wpcf7-list-item label {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 15px;
      font-size: 12px;
}

.footer-form {
    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;
}

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

.footer-form-field textarea {
    height: 94px;
    padding: 20px 0;
    resize: none;
}

.footer-form-field.form-submit {
    display: block;
    margin: 33px 0 0;
    width: 100%;
}

.footer-form-field.form-submit button {
    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: 50px;
    border: 1px solid #292856;
    background-color: transparent;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.050em;
    max-width: 183px;
    margin: 0 auto;
    padding: 0 10px;
    color: #292856;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.footer-form-field.form-submit button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.footer-form-widget {
    width: 100%;
    max-width: 643px;
    margin: 0 auto;
}

.footer-form-widget .wpcf7 form .wpcf7-response-output {
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
}

/*.footer-form-widget div.wpcf7-validation-errors,
.footer-form-widget div.wpcf7-acceptance-missing,
.footer-form-widget .wpcf7 form.invalid .wpcf7-response-output,
.footer-form-widget .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #dc3232!important;
}*/


/* Footer Logo */
.footer-logo-holder {
    display: block;
    text-align: center;
    padding: 0;
}

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

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

.footer-affliate-logo:not(:last-child) {
    margin-right: 35px;
}

.footer-nav-wrap {
    margin-bottom: 25px;
}

.footer-wrapper {
    background-color: #fff;
}

.footernav>li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 35px;
}

.footernav>li:first-child {
    padding-left: 0;
}

.footernav>li:last-child {
    padding-right: 0;
}

.footernav>li>a {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.025em;
    color: #292856;
    text-transform: uppercase;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.footernav>li>a:hover {
    color: var(--secondary-color);
}

/*Copyright*/
.footer-copyright {
    display: block;
    text-align: center;
    position: relative;
    padding-top: 38px;
    border-top: 1px solid rgba(0, 0, 0, .40);
    margin-top: 43px;
}

.copyright {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.025em;
    color: #292856;
    margin-bottom: 14px;
}

.copyright a {
    color: inherit;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

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

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

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

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

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

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

/*Pojo*/
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;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

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

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

.ip-container #breadcrumbs a {
    color: inherit;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.ip-container #breadcrumbs a:hover {
    color: var(--secondary-color);
}

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

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

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

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

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

.ip-banner h1 {
    font-weight: 400;
    font-size: 45px;
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

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

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

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

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

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

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.100em;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: #292856;
    margin: 30px 0;
}

#content .entry {
    font-size: 14px;
    line-height: 1.429;
    letter-spacing: 0.040em;
    color: #292856;
    font-weight: 400;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.100em;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: #292856;
}

/* IP Custom GIT | Start*/
.non_parallax_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    font-size: 0;
}

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

.parallax_bg canvas {
    background-attachment: fixed;
}

.safari-true .parallax_bg canvas {
    background-attachment: scroll;
}

.ip-custom-git {
    /* height: 936px; */
    padding: 83px 0 91px;
    z-index: 12;
    margin-bottom: -99px;
    z-index: 1;
}

.ip-custom-git-wrap {
    background-color: rgba(42, 41, 86, .75);
    margin-left: 9.5625vw;
    padding: 11px 10px;
    width: 41.6875vw;
    max-width: 555px;
}

.ip-custom-git-cont {
    /* width: 535px; */
    /* height: 740px; */
    border: 1px solid rgba(255, 255, 255, .60);
    background-color: rgba(49, 108, 173, .60);
    padding-top: 67px;
    padding-bottom: 47px;
}

.ip-custom-git-block {
    width: 90%;
    /* width: 69.860896445131%; */
    max-width: 452px;
    margin: auto;
    min-width: 330px;
}

.ip-custom-git-block .global-title {
    padding-right: 2px;
}

.ip-custom-git-block p,
.ip-custom-git-radio label {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

.ip-custom-git-block p {
    padding: 35px 0 20px;
}

.ip-custom-git-form form {
    position: relative;
}

.ip-custom-git-holder {
    display: flex;
    flex-wrap: wrap;
    padding-left: 12px;
    margin-top: -25px;
}

.ip-custom-git-item {
    width: 100%;
    padding: 10.5px 6.5px;
}

.ip-custom-git-item-short {
    width: 50%;
}

.ip-custom-git-item input:not([type="submit"]),
.ip-custom-git-item textarea {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, .46);
    padding: 17px 5px;
}

.ip-custom-git-item textarea {
    height: 50px;
    resize: none;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ip-custom-git-radio>div {
    padding: 11px 0;
    text-align: center;
}

.ip-custom-git-radio .wpcf7-list-item {
    margin: 0;
    padding: 0 15px;
}

.ip-custom-git-radio .contact-preference .wpcf7-list-item {
    padding: 6px 19px;
    position: relative;
}

.ip-custom-git-radio .contact-preference .wpcf7-list-item:not(:last-child):before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #fff;
}

.ip-custom-git-radio input[type="radio"] {
    appearance: none;
    outline: none;
}

.ip-custom-git-radio .looking-to input[type="radio"] {
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 100%;
    margin: 0;
    margin-bottom: 3px;
    margin-right: 10px;
}

.ip-custom-git-radio .looking-to input[type="radio"]:checked {
    background: #316cad;
}

.ip-custom-git-radio span label {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    cursor: pointer;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.ip-custom-git-radio span label:hover,
.ip-custom-git-radio .contact-preference input[type="radio"]:checked+span {
    color: #8cbcf0;
}

.ip-custom-git-form button {
    background: transparent;
    border: navajowhite;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--title-font);
    font-size: 22px;
    margin: 26px auto 0;
    width: 112px;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.ip-custom-git-form button:hover {
    opacity: 0.75;
}

.ip-custom-git-form button img {
    margin-bottom: 4px;
}

.ip-custom-git-form form.use-floating-validation-tip .wpcf7-not-valid-tip {
    left: 5px;
}

.ip-custom-git-form form .wpcf7 form .wpcf7-response-output {
    bottom: -34px;
}

.ip-custom-git+.footer-container {
    padding-top: 128px;
}

/* IP Custom GIT | End*/
body #listings-results .listings-list .listings-link {
    color: #fff;
    background-color: #262648;
}

body #listings-results .listings-list .listings-link:hover {
    background-color: #316cad;
    color: #fff;
}

body #listings-results .listings-sort .dropdown-menu input[type=submit] {
    background: var(--aios-listing-primary-color);
}

body #listings-results .listings-sort .dropdown-menu input[type=submit]:hover {
    background-color: #316cad;
}

body.page-id-29 #inner-page-wrapper>.container,
body.page-id-30 #inner-page-wrapper>.container,
body.listing-module-page .container-theme-filter {
    width: 100%;
    padding: 0;
}

body.page-id-24 #content h2.aios-contact-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.100em;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: #292856;
    padding-left: 0 !important;
}

body.page-id-24 #content h2.aios-contact-title span {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.150em;
    color: #292856;
    display: block;
    font-family: var(--body-font);
    margin-bottom: 10px;
}

body.page-id-24 #content .aios-contact-form input[type="submit"] {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.050em;
    max-width: 183px;
    margin: 30px auto 0;
    padding: 0 10px;
    color: #292856;
    height: 50px;
}

body.page-id-24 #content .aios-contact-form input[type="submit"]:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

body.page-id-24 #content .aios-contact-form div.wpcf7-response-output {
    color: #000 !important;
}

.ip-cstmcntr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-id-48 #agents-results .agents-contact li {
    font-size: 16px;
    font-weight: 500;
}

.page #listings-results .listings-grid .listings-img canvas {
    min-height: 300px;
}

.page #listings-results .listings-grid .listings-price {
    top: 0 !important;
    padding: 15px;
    background-color: #4ec0e0;
    max-width: 280px;
    height: 110px;
}

.page #listings-results .listings-grid .listings-price:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #fff;
    margin: 4px;
}

.page #listings-results .listings-grid .listings-plan {
    padding: 15px;
    bottom: 18px !important;
}

.page #listings-results .listings-grid .listings-plan span {
    transition: none !important;
}

.page #listings-results .listings-grid .listings-price,
.page #listings-results .listings-grid .listings-plan {
    text-shadow: none;
}


/* IP Property Search - 06-20-2024 | Start*/
#ip-property-search {
    width: 100%;
    margin: auto;
    padding-top: 10px;
}

.ip-ps-fields {
    position: relative;
    padding-bottom: 20px;
}

.ip-ps-fields p,
.ip-ps-fields br {
    display: none;
}

.ip-ps-fields label {
    text-transform: uppercase;
    padding-bottom: 10px;
    font-weight: 700;
    color: #292856;
}

.ip-ps-fields input,
.ip-ps-fields select {
    text-transform: uppercase;
    width: 100%;
    background: transparent;
    outline: none !important;
    padding: 10px;
    border: 1px solid #000;
}

.ip-ps-fields select {
    background-image: url('https://cdn.agentimagehosting.com/lkMBQanmLmnNvINe1IcU0/2024/06/ip-ps-dropdown-icon-black.png');
    background-size: 10px 5px;
    background-position: center right 10px;
    background-repeat: no-repeat;
}

.ip-ps-fields .price-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ip-ps-fields span em {
    font-size: 14px;
    text-transform: uppercase;
    font-style: normal !important;
}

#ip-property-search .range-input-scoller {
    height: 1px;
    background: #000;
    border-radius: 5px;
    margin: 5px auto;
    width: calc(100% - 14px);
}

#ip-property-search .ui-slider-horizontal .ui-slider-handle,
#ip-property-search .ip-ps-price::-webkit-slider-thumb {
    -webkit-appearance: none;
    text-align: center;
    border-radius: 100%;
    background: #292856;
    margin-top: -5px;
    outline: none !important;
    border: none !important;
}

.ip-ps-btn {
    padding-bottom: 10px;
}

.ip-ps-btn button {
    background: transparent;
    width: 100%;
    height: 42px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #292856;
    border: 1px solid #292856;
    outline: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.ip-ps-btn button:hover {
    background: #292856;
    color: #fff;
}

/* IP Property Search - 06-20-2024 | End*/

.listing-module-page .container-theme-filter {
    margin-top: 0;
}

body.page-id-48 #inner-page-wrapper #breadcrumbs {
    padding: 0;
}



/*Meet the Team*/
.mtt-container,
.mtt-main,
.mtt-slide {
    display: block;
    position: relative;
}

.mtt-container {
    padding: 75px 0 0;
    font-size: 0;
    margin-bottom: -1px;
}

.mtt-container .global-title {
    margin-bottom: 30px;
}

.mtt-container .global-title h2,
.mtt-container .global-title h2 span {
    text-shadow: 0 5px 20px rgba(0, 0, 0, .75);
}

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

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

.mtt-bg canvas {
    opacity: .85;
}

.mtt-map-main:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    pointer-events: none;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(94%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 94%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 94%, rgba(0, 0, 0, 0.8) 100%);
}

.mtt-map-container {
    display: block;
    position: relative;
    overflow: hidden;
}

.mtt-map-transparent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.mtt-map-base {
    max-width: 100%;
    height: auto;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.mtt-map-main {
    position: relative;
    width: 1600px;
}

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

.mtt-map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    pointer-events: auto;
    z-index: 4;
}

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

.mtt-map-hovers>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.mtt-map-container.grayscale .mtt-map-base {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.mtt-map-info {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 338px;
    height: 92px;
    text-align: center;
    padding: 22px 28px 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.mtt-map-info-name {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 8px;
}

.mtt-map-info-position {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #80b2ea;
}

.mtt-map-info::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    opacity: 90%;
    z-index: -1;
    pointer-events: none;
}

.mtt-map-hovers>div.active .mtt-map-info {
    opacity: 1;
    visibility: visible;
}

.mtt-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto 47px;
    display: block;
    text-align: center;
    z-index: 10;
}

.mtt-label a.global-btn {
    margin: 0 auto;
}

.mtt-label h2 {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--title-font);
    overflow: hidden;
    margin-bottom: 24px;
}

.mtt-label h2 span {
    display: inline-block;
    position: relative;
}

.mtt-label h2 span:before,
.mtt-label h2 span:after {
    position: absolute;
    content: '';
    top: 50%;
    left: calc(100% + 60px);
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, .35);
    pointer-events: none;
}

.mtt-label h2 span:after {
    left: auto;
    right: calc(100% + 60px);
}

.mtt-slide-control {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    width: calc(100% + 150px);
    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;
    pointer-events: none;
}

.mtt-slide-control button {
    display: inline-block;
    vertical-align: middle;
    border: none;
    padding: 0;
    font-size: 45px;
    color: #fff;
    background-color: transparent;
    line-height: 1;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    background-color: rgba(50, 108, 173, .75);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    pointer-events: auto;
}

.mtt-slide-control button:hover {
    background-color: var(--primary-color);
}

.mtt-slide-control button.slide-prev {
    padding-left: 60px;
}

.mtt-slide-control button.slide-next {
    padding-right: 60px;
}

.mtt-slide {
    z-index: 2;
}


.ip-as-wrap p {
    min-height: auto !important;
}

.main-nav>li a {
    font-size: clamp(0.688rem, 0.658vw + 0.28rem, 0.938rem);
}
.footernav>li>a{
    font-size: clamp(0.688rem, 0.329vw + 0.484rem, 0.813rem);
}
iframe[name="widgetCta"] {
    /* bottom: 8% !important; */
}

.ip-custom-git .wpcf7-acceptance span.wpcf7-list-item-label{
    color: white;
}
.ip-custom-git .wpcf7-acceptance span.wpcf7-list-item-label a{
    color: white;
}

.post-page-recent-sales #inner-page-wrapper > .container{
    width: 100%;
    padding: 0;
}
.post-page-developments #inner-page-wrapper > .container{
    width: 100%;
}
.aios-roadmaps-default-wrapper .aios-roadmaps-default-content img {
    height: auto;
}

body.page-id-4004 #inner-page-wrapper > .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.post-page-exclusive-properties #inner-page-wrapper > .container {
    width: 100%;
}
.aios-contact-photo img {
    object-fit: contain;
}
html body.pojo-a11y-readable-font *[class^=ai-font] {
    font-family: agentimage!important;
}

.custom-sumbit button {
    display: block;
    max-width: 100%;
    width: 338px;
    padding: 26px 0 23px;
    margin: 48px auto 0;
    font-size: 13px;
    letter-spacing: .46em;
    color: var(--font-color-default);
    text-transform: uppercase;
    border: 1px solid var(--font-color-default);
    background: transparent;
    text-align: center;
    -webkit-transition: background .3s, color .3s, border-color .3s;
    -o-transition: background .3s, color .3s, border-color .3s;
    transition: background .3s, color .3s, border-color .3s;
}

.custom-sumbit button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.error404 .wpcf7 form .wpcf7-response-output {
    color: #000 !important;
}



.ip-ex-form-wrap {
    background: #415881;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
}

.ip-ex-form-inner {
    border: 1px solid #fff;
    background: rgba(49, 108, 173, .60);
    padding: 50px 40px;
}
.ip-ex-form-wrap .ip-custom-git-holder {
    padding-top: 40px;
}

.ip-ex-form-wrap button {
    background: none;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border: none;
    margin: 0 auto;
    font-size: 23px;
}
.ip-ex-form-wrap button img {
    margin-right: 10px;
}
.ip-ex-form-wrap .wpcf7-spinner {
    position: absolute;
    bottom: 15px;
}

.ip-ex-form-wrap .global-title h2 {
    font-size: 50px !important;
    font-weight: 700 !important;
    margin: 0 !important;

}
.ip-ex-form-wrap .global-title p {
    display: none;
}
body.page-id-13600 #content .entry-title {
    text-align: center;
}
/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (max-width: 1560px) {
    .main-nav:first-of-type {
        padding-left: 8%;
    }

    .main-nav:last-of-type {
        padding-right: 8%;
    }
}

@media only screen and (max-width: 1440px) {
    #fixed-smi {
        right: 20px;
    }

    .fixed-smi-holder ul li {
        width: 40px;
        height: 40px;
    }

    .fixed-smi-holder ul li a {
        font-size: 18px;
    }

    .fixed-smi-holder ul li span.ai-font-phone-alt {
        font-size: 13px;
    }

    .fixed-smi-holder ul li span.ai-font-envelope-f {
        font-size: 11px;
    }

    .fixed-smi-holder ul li a span.ai-font-whatsapp-outline {
        font-size: 18px;
    }

    .logo a {
        max-width: 175px;
    }
}

@media only screen and (max-width: 1366px) {

    body.page-id-24 #content h2.aios-contact-title,
    #content .entry-title,
    #content .archive-title,
    .global-title h2 {
        font-size: 45px;
    }

    .global-title h2 {
        padding-left: 75px;
    }

    body.page-id-24 #content h2.aios-contact-title span,
    .global-title h2 span {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .global-title img {
        max-width: 65px;
        top: 2px;
    }

    .global-btn {
        font-size: 20px;
        max-width: 250px;
    }

    .global-btn em.ai-icon-logo {
        margin-right: 10px;
    }

    .main-nav:first-of-type {
        padding-left: 7%;
    }

    .main-nav:last-of-type {
        padding-right: 7%;
    }

    .footer-container .custom-container {
        max-width: 1100px;
    }
}

@media only screen and (max-width: 1280px) {
    #fixed-smi {
        right: 10px;
        top: 55%;
    }

    .footer-container .custom-container {
        max-width: 1040px;
    }

    .footernav>li {
        padding: 0 30px;
    }

    html .attachment-fixed,
    html.safari-true .attachment-fixed {
        background-attachment: scroll !important;
    }
    .mtt-slide-control button {
        width: 130px;
        height: 130px;
        font-size: 37px;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    .parallax_bg canvas {
        background-attachment: scroll;
    }

    html.safari-true .attachment-fixed canvas {
        background-attachment: scroll !important;
        background-size: 170vw !important;
    }

    body.page-id-24 #content h2.aios-contact-title,
    #content .entry-title,
    #content .archive-title,
    .global-title h2 {
        font-size: 40px;
    }

     .global-title h2 {
        padding-left: 70px;
    }

    .global-title img {
        max-width: 60px;
    }

    .global-btn {
        font-size: 17px;
        height: 55px;
        max-width: 230px;
    }

    .main-nav:first-of-type {
        padding-left: 3%;
    }

    .main-nav:last-of-type {
        padding-right: 3%;
    }

    .main-nav {
        width: 39%;
    }

    .main-nav>li a {
        font-size: 11px;
    }

    .main-nav>li .sub-menu li a {
        font-size: 13px;
        padding: 15px 18px;
    }

    .main-nav>li>a:before {
        max-width: 35px;
    }

    .logo a {
        max-width: 150px;
    }

    .logo {
        width: 22%;
    }

    .fixed-smi-holder ul li {
        width: 35px;
        height: 35px;
    }

    .fixed-smi-holder ul li a {
        font-size: 16px;
    }

    .fixed-smi-holder ul li span.ai-font-phone-alt {
        font-size: 12px;
    }

    .fixed-smi-holder ul li span.ai-font-envelope-f {
        font-size: 10px;
    }

    .fixed-smi-holder ul li a span.ai-font-whatsapp-outline {
        font-size: 17px;
    }

    .fixed-smi-holder ul li.divider {
        margin-bottom: 40px;
    }

    .fixed-smi-holder ul li.divider:after {
        top: calc(100% + 8px);
    }

    .popup-main {
        padding: 65px 40px 70px;
    }

    .popup-form-field textarea {
        height: 100px;
        padding: 20px 0;
    }

    .popup-form-field input:not([type=submit]),
    .popup-form-field textarea {
        font-size: 13px;
    }

    .popup-close {
        top: 30px;
        right: 30px;
    }

    .footer-contact-title h2,
    .footer-contact-address span {
        font-size: 15px;
    }

    .footer-contact-item span {
        font-size: 16px;
    }

    .footer-form-widget {
        max-width: 550px;
    }

    .footernav>li>a {
        font-size: 11px;
    }

    .footernav>li {
        padding: 0 23px;
    }

    .footer-container .custom-container {
        max-width: 900px;
    }

    .footer-affliate-logo:not(:last-child) {
        margin-right: 25px;
    }

    .footer-affliate-logo img {
        max-width: 147px;
    }

    .copyright {
        font-size: 13px;
    }

    .ip-custom-git {
        padding-top: 70px;
    }
    .mtt-label h2 {
        font-size: 20px;
        letter-spacing: 0.050em;
        margin-bottom: 18px;
    }

    .mtt-label {
        max-width: 880px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 1199px) and (max-height: 700px) {
    .popup-wrapper {
        display: block;
    }

    .popup-main {
        margin: 50px auto;
    }
}

@media only screen and (min-width: 320px) and (max-height: 550px) {
    .popup-wrapper {
        display: block;
    }

    .popup-main {
        margin: 50px auto;
    }
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    html.safari-true .attachment-fixed canvas {
        background-position: center !important;
        background-size: cover !important;
    }

    .header-wrapper {
        position: relative;
        margin-top: 52px;
        display: block;
        background-color: var(--primary-color);
        z-index: 10;
    }

    ul.aios-split-nav.main-nav {
        display: none !important;
    }

    .logo {
        width: 100%;
    }

    .header-nav .navigation {
        display: block;
        text-align: center;
    }

    .header-nav .menu-primary-menu-container {
        display: block;
        text-align: center;
    }

    .header-bg {
        display: none;
    }

    #fixed-smi {
        display: none;
    }

    .popup-main {
        padding: 60px 20px;
        max-width: 567px;
    }

    .popup-form-field.form-submit {
        margin: 20px 0 0;
    }

    .popup-form-field input:not([type=submit]),
    .popup-form-field textarea {
        height: 60px;
    }

    .popup-form-field textarea {
        height: 90px;
        padding: 15px 0;
    }

    .popup-close {
        top: 15px;
        right: 15px;
    }

    .footer-contact-item:not(:last-child) {
        margin: 0 0 20px;
    }

    .footer-contact-item {
        display: block;
    }

    .footer-contact-title,
    .footer-contact-list {
        margin-bottom: 20px;
    }

    .footer-contact-item span em.footer-contact-label {
        margin-bottom: 5px;
    }

    .footer-contact-smi a:not(:last-child) {
        margin-right: 28px;
    }

    .footer-form-container {
        padding: 60px 0 50px;
    }

    .footer-form-field input:not([type=submit]),
    .footer-form-field textarea {
        font-size: 13px;
    }

    .footer-form-field.form-submit {
        margin: 20px 0 0;
    }

    .footer-form-field textarea {
        height: 85px;
        padding: 15px 0;
    }

    .footer-form-field.form-submit button {
        max-width: 170px;
    }

    .footernav>li {
        padding: 0px 0px 10px;
        display: block;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-container {
        padding: 60px 0 40px;
    }

    .footer-nav-wrap {
        margin-bottom: 15px;
    }

    .footer-copyright {
        padding-top: 30px;
        margin-top: 30px;
    }

    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }

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

    .outer {
        width: 100%;
        min-width: 100%;
    }

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

    #pojo-a11y-toolbar {
        display: none;
    }

    .ip-banner canvas {
        min-height: 300px;
    }

    .ip-banner:after {
        display: none;
    }

    #content .entry {
        font-size: 14px;
    }

    .ip-custom-git-wrap {
        margin: auto;
        width: 90%;
        max-width: 700px;
    }

    .ip-custom-git-block {
        min-width: unset;
        width: 93%;
        max-width: 500px;
    }

    .ip-custom-git-block p,
    .ip-custom-git-radio label {
        font-size: 13px;
    }

    .ip-cstmcntr-row {
        flex-direction: column;
    }


    body #agents-results .agents-img {
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-affliate-logo {
        display: block;
    }
    .mtt-container {
        padding: 60px 0 0;
    }

    .mtt-map-main:before {
        height: 70%;
    }

    #inner-page-wrapper {
        padding: 0px 15px;
    }
    .post-page-properties .amh-header-right-btn {
        display: block !important;
    }
    .post-page-properties .amh-header-buttons .amh-center {
        width: 55.64% !important;
        padding: 5px 0 !important;
        text-align: center !important;
    }
    .ip-ex-form-wrap .global-title h2 {
        font-size: 35px !important;

    }
    .ip-ex-form-inner {
        padding: 30px 20px;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
     .mtt-label h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .mtt-label h2 span:before,
    .mtt-label h2 span:after {
        left: calc(100% + 10px);
    }

    .mtt-label h2 span:after {
        left: auto;
        right: calc(100% + 10px);
    }

    .mtt-label a.global-btn {
        height: 45px;
        font-size: 13px;
        max-width: 165px;
    }

    .mtt-label a.global-btn em.ai-icon-logo {
        width: 15px;
        height: 15px;
        margin-right: 5px;
    }

    .mtt-label {
        margin-bottom: 15px;
    }

    .mtt-slide-control button {
        width: 100px;
        width: 100px;
        height: 100px;
        font-size: 24px;
        height: 100px;
        font-size: 24px;
    }

    .mtt-slide-control {
        width: calc(100% + 135px);
        display: none;
    }
    .ip-banner .container {
        width: 100%;
    }

    body.page-id-24 #content h2.aios-contact-title,
    #content .entry-title,
    #content .archive-title,
    .global-title h2 {
        font-size: 35px;
        letter-spacing: 0.050em;
    }

    .global-title h2 {
        padding-left: 60px;
    }

    .global-title img {
        max-width: 55px;
    }

    .footer-form-field {
        width: calc(50% - 4px);
    }

    /* .footer-logo-holder {
        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: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    } */

    .footer-affliate-logo:not(:last-child) {
        margin: 0;
    }

    .footer-affliate-logo {
        padding: 10px;
    }

    .footernav>li {
        padding: 5px 10px;
    }

    .copyright {
        line-height: 1.2;
        font-size: 13px;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {

    body.page-id-24 #content h2.aios-contact-title,
    #content .entry-title,
    #content .archive-title,
    .global-title h2 {
        letter-spacing: normal;
        font-size: 35px;
    }

    .global-title h2 {
        padding-left: 55px;
    }

    .global-title img {
        max-width: 48px;
        top: 4px;
    }

    body.page-id-24 #content h2.aios-contact-title span,
    .global-title h2 span {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .global-btn {
        font-size: 16px;
    }

    .popup-main {
        padding: 60px 15px;
        border: 7px solid rgba(41, 40, 86, .75);
    }

    .popup-form-field {
        width: calc(50% - 4px);
    }

    .popup-main .global-title h2 {
        font-size: 33px;
        padding-left: 47px;
    }

    .popup-main .global-title img {
        max-width: 45px;
        top: 0;
    }

    .popup-main .global-title h2 span {
        font-size: 14px;
    }

    .footer-form-main .global-title h2 {
        font-size: 32px;
    }

    .ip-custom-git-item-short {
        width: 100%;
    }

    .ip-custom-git-radio .contact-preference .wpcf7-list-item {
        padding: 6px 9px;
    }

    .page-id-48 #agents-results .agents-contact li {
        font-size: 12px;
        letter-spacing: normal;
    }

    body #content  #agents-results .agents-button {
        margin-right: auto;
        margin-left: 0;
    }

    body #agents-results .agents-contact li {
        padding: 6px;
    }

    body #agents-results .agents-contact {
        padding: 10px 5px;
    }

    .mtt-label a.global-btn {
        height: 40px;
        font-size: 12px;
        max-width: 145px;
        padding: 0 10px;
    }

    .mtt-label h2 {
        font-size: 15px;
        margin-bottom: 9px;
    }

    .mtt-label {
        margin-bottom: 10px;
    }


    .ip-as02-contact-item span a {
        font-size: 11px;
    }
    .ip-ex-form-inner {
        padding: 30px 10px;
    }
}


html #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items li.pojo-a11y-toolbar-item a {
    font-size: 15px;
}

html #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay p.pojo-a11y-toolbar-title {
    line-height: normal;
    font-size: 18px;
}
