/*******************************************************
 *
 * Global Style
 *
 *******************************************************/
:root {
    /** Font default */
    --body-font: "Outfit", sans-serif;
    --title-font: "Gloock", serif;
    --font-family-default: "Outfit", sans-serif;
    --font-family-title: "Gloock", serif;
    --font-size-default: 16px;
    --font-size-title: 60px;
    --font-color-default: #000000;
    --font-color-title: #383838;
    /** Use for input, button, and any other element */
    --primary-color: #000000;
    /* --secondary-color: #ff0000; */
    --secondary-color: #A52A2A;
    --primary: #000000;
    /* --secondary: #ff0000; */
    --secondary: #A52A2A;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: 0.3s ease-in-out;
}

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

#ihf-main-container .modal-dialog {
    left: unset;
}

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

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

a {
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

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

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

.attachment-scroll canvas {
    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: 1550px;
    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: #000;
    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;
    z-index: 2;
    margin-bottom: 35px;
}

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

.global-title h2 > small {
    display: block;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.200em;
    text-transform: uppercase;
    color: #808080;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    text-align: left;
    font-weight: 200;
}

.global-title h2 > small:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
}

.global-title h2 > span {
    display: block;
    font-size: 60px;
    line-height: 1;
    color: var(--font-color-title);
    font-family: var(--title-font);
}

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

.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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    border: none;
    background-color: transparent;
    color: var( --secondary-color);
    font-size: 14px;
    letter-spacing: 0.100em;
    line-height: 1;
    text-transform: uppercase;
    padding: 0 0 17px;
    text-align: left;
    position: relative;
}

.global-btn em.ai-icon-arrow {
    background-image: url(../../assets/images/ai-arrow-icon-updated.png);
    width: 16px;
    height: 9px;
    margin-left: 25px;
}

.global-btn:before, .global-btn:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    z-index: 1;
}

.global-btn:after {
    height: 3px;
    opacity: 0;
    visibility: hidden;
}

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

.global-btn.is-white:before, .global-btn.is-white:after {
    background-color: #fff;
}

.global-btn.is-white em.ai-icon-arrow {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

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

/* Global Slide Controls */
.global-slide-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.global-slide-controls button {
    display: inline-block;
    vertical-align: middle;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    position: relative;
    padding: 0;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.global-slide-controls button:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.global-slide-controls button:not(:last-child) {
    margin-right: 10px;
}

.global-slide-controls button em.ai-icon-arrow {
    background-image: url(../../assets/images/ai-arrow-icon.png);
    width: 16px;
    height: 9px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.global-slide-controls button.prev em.ai-icon-arrow {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}

.global-slide-controls button.next {
    background-color: rgba(56,56,56,.75);
}

.global-slide-controls button.next:before {
    opacity: 0;
}

.global-slide-controls button.next em.ai-icon-arrow {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.global-slide-controls button:hover {
    opacity: 0.75;
}

.global-slide-controls button:hover {
    background-color: var(--secondary-color);
}

.global-slide-controls button:hover em.ai-icon-arrow {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

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

#nav li a {
    font-size: 14px;
    letter-spacing: 0.100em;
    color: #fff;
    font-weight: 200;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

#nav > li > a:before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    margin: 0 auto;
    -webkit-transform: translateX(-50%) scaleX(0);
    -ms-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    -webkit-transition: all var( --default-transition);
    -o-transition: all var( --default-transition);
    transition: all var( --default-transition);
    opacity: 0;
}

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

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

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(10px);
    -ms-transform: translateX(-50%) translateY(10px);
    transform: translateX(-50%) translateY(10px);
    text-align: center;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 25px;
}

#nav .sub-menu li a {
    display: block;
    padding: 8px 23px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    text-shadow: 0px 2px 1px #000;
}

#nav .sub-menu > li {
    position: relative;
    display: block;
    margin: 0 auto;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition); 
    /* background-color: rgba(255, 0, 0, 0.5); */
    background-color: rgba(165, 42, 42, 0.5);
}

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

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

#nav li:focus-within > .sub-menu, #nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

#nav li > .sub-menu .sub-menu {
    margin-left: calc(100% + 1px);
    top: 0;
    padding-top: 0!important;
}

/*******************************************************
 *
 * 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);
    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: 50px 0;
}

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

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

.header-nav {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 40px;
    margin-left: auto;
}

.header-wrapper > .custom-container {
    max-width: 100%;
    padding: 0 160px;
}

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

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

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

.header-contacts {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: auto;
}

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

.header-contacts span em.ai-font-phone {
    font-size: 14px;
}

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

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

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

.header-contacts span a em.ai-font-envelope-f {
    font-size: 10px;
}

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

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

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

/* Fixed Header */
.header-wrapper.active {
    background-color: var(--primary-color);
    padding: 17px 0;
    min-height: 89px;
}

.header-wrapper.active .header-broker-logo img {
    max-width: 55px;
}

.header-wrapper.active #nav .sub-menu {
    padding-top: 37px;
}

/* Footer Form */
.ff-container, .ff-main, .ff-widget, .ff-widget form {
    display: block;
    position: relative;
}

.ff-container {
    font-size: 0;
    padding: 95px 0 170px;
}

.ff-bg {
    background-color: #000;
}

.ff-bg canvas {
    opacity: .50;
}

.ff-field {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 15px);
    position: relative;
    margin-bottom: 20px;
}

.ff-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-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.ff-widget {
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
}

.ff-field input:not([type=submit]), .ff-field textarea {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.50);
    font-size: 12px;
    letter-spacing: 0.100em;
    color: #fff;
    font-weight: 200;
    line-height: normal;
    background-color: transparent;
    padding: 0;
}

.ff-field textarea {
    height: 80px;
    padding: 22px 0 15px;
    resize: none;
}

.ff-field.w-80 {
    width: calc(80% - 15px);
}

.ff-field.w-20 {
    width: calc(20% - 15px);
}

.ff-field.w-80, .ff-field.w-20 {
    margin-bottom: 0;
}

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

.ff-widget .wpcf7 form .wpcf7-response-output {
    color: #fff!important;
}

/*Footer*/
.footer-container, .footer-main, .footer-contacts-container, .footer-logo-holder, .footer-smi ul, .footer-disclaimer, .footer-nav-holder, #footer-nav, .copyright, .mls-logo {
    display: block;
    position: relative;
}

.footer-container {
    padding: 60px 0 80px;
    background-color: #1a1a1a;
    font-size: 0;
}

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

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

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

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

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

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

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

.footer-contacts, .footer-contacts span, .footer-smi, .footer-smi ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.footer-contacts-container {
    text-align: center;
    margin-bottom: 50px;
}

.footer-contacts span {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.100em;
    font-weight: 200;
}

.footer-smi ul li a {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    display: block;
    position: relative;
}

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

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

.footer-contacts span em[class^=ai-font] {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 10px;
    font-size: 15px;
}

.footer-contacts span em.ai-font-location-c {
    font-size: 20px;
}

.footer-smi ul li:not(:last-child) {
    margin-right: 33px;
}

.footer-nav-holder {
    margin-bottom: 50px;
    padding: 25px 0;
    border-top: 1px solid #484848;
    border-bottom: 1px solid #484848;
    text-align: center;
}

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

#footer-nav > li:not(:last-child) {
    margin-right: 52px;
}

#footer-nav > li:last-child {
    padding-left: 52px;
    border-left: 1px solid #8d8d8d;
}

#footer-nav > li > a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

#footer-nav > li > a:hover {
    color: var(--secondary-color);
}

/*Copyright*/
.footer-disclaimer {
    text-align: center;
    margin-bottom: 25px;
}

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

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

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

.copyright {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    margin-bottom: 18px;
    text-align: center;
}

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

.copyright a + a {
    font-weight: 500!important;
}

.mls-logo {
    text-align: center;
}

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

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

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

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

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

.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: var(--primary-color);
    font-weight: 700;
}

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

.ip-banner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.40)),to(rgba(0,0,0,0)));
    background: -o-linear-gradient(top, rgba(0,0,0,0.40) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%,rgba(0,0,0,0) 100%);
}

.ip-banner:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-color: rgba(0,0,0,.10);
}

.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: var(--font-size-title);
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
}

.ip-banner h1 span {
    display: block;
    font-size: 25px;
}

/* 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: 60px;
    line-height: 1;
    color: var(--font-color-title);
    font-family: var(--title-font);
    font-weight: 400;
    margin: 30px 0;
}

#content .entry {
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.020em;
    color: var(--font-color-title);
    font-weight: 300;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 32px;
    line-height: 1;
    color: var(--font-color-title);
    font-family: var(--title-font);
    font-weight: 400;
}

.aios-custom-ihomefinder-results-template #inner-page-wrapper>.container {
    width: 100%;
}

#ai-modern-about .ai-modern-about-photo:after {
    background: #f9f5f3 !important;
}

#content .entry:after {
	clear: both;
	content: "";
	display: table
}

#content .aios-starter-theme-entry-meta {
	display: none
}

/* #content .archive-subtitle,
#content .archive-title,
#content .entry-title {
	font-size: 24px
} */

#content .archive-thumbnail {
	float: left;
	width: 27%
}

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

#content .archive-content.archive-has-thumbnail {
	float: right;
	width: 70%
}

#content .archive-more {
	font-style: italic;
	text-decoration: underline
}

#content .post {
	margin-bottom: 20px;
	padding-bottom: 20px
}

/*home valuation*/
.page-id-65 #inner-page-wrapper {
    margin: 0;
    background: url(http://statelylivingcom.rs6.aios-staging.com/wp-content/uploads/2024/10/slide-img-3.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding-bottom: 100px;
    padding-top: 200px;
}

.page-id-65 .ip-banner {
    display: none;
}

.safari-true .page-id-65 #inner-page-wrapper {
  background-attachment: scroll;
}

.page-id-65 #inner-page-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 63%;
  pointer-events: none;
  z-index: -1;
}

.page-id-65 h1.entry-title,
.page-id-65 .aidefcf-title,
.page-id-65 .aidefcf-subtitle {
    color: #fff !important;
}

.page-id-65 #inner-page-wrapper .git-form {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.page-id-65 #inner-page-wrapper .git-row textarea {
  height: 110px;
  padding-top: 13px;
}

.page-id-65 #inner-page-wrapper .git-row.sbmt {
  margin-top: 80px;
}

.page-id-65 div#footer-form {
  display: none;
}

.page-id-65 #inner-page-wrapper .git-form {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.page-id-65 #inner-page-wrapper .git-form>div {
  width: calc(50% - 20px);
}

.page-id-65 .git-row {
    margin: 26px 0 0;
}

.page-id-65 .git-form .wpcf7-form-control-wrap {
    display: block;
}

.page-id-65 .git-row input[type="email"], 
.page-id-65 .git-row input[type="tel"], 
.page-id-65 .git-row input[type="text"], 
.page-id-65 .git-row select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 12px;
    letter-spacing: 0.050em;
    color: #fff;
    background: none;
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #fff;
    outline: 0;
    padding: 0;
    height: 42px;
}

.page-id-65 .git-row.dual, .page-id-65 .git-row.trial {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.page-id-65 #inner-page-wrapper .git-row textarea {
    height: 110px;
    padding-top: 13px;
}

.page-id-65 .git-row textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 12px;
    letter-spacing: 0.050em;
    color: #fff;
    background: none;
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #fff;
    outline: 0;
    padding: 0;
    height: 69px;
    resize: none;
}

.page-id-65 .git-row.trial>div {
    max-width: 290px;
    width: calc(calc(100% / 3) - 10px);
}

.page-id-65 .git-row.dual>div {
    max-width: 290px;
    width: calc(50% - 10px);
}

.page-id-65 #inner-page-wrapper .git-row.sbmt {
    margin-top: 80px;
}

.page-id-65 .git-row.sbmt {
    margin: 55px 0 0;
}

.page-id-65 input[type="submit"].global-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    vertical-align: middle;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    border-width: 3px;
    border-style: solid;
    border-color: #fff;
    min-width: 166px;
    min-height: 55px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.100em;
    text-transform: uppercase;
    padding: 10px 41px;
}

.page-id-65 input[type="submit"].global-button:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (min-width: 992px) {

    .page-id-65 #inner-page-wrapper>.container {
        width: 100%;
        padding: 0 15px;
        max-width: 1140px;
    }

    .custom-container {
        padding: 0 0.781vw;
        max-width: 80.729vw;
    }

    .wpcf7 form .wpcf7-response-output {
        bottom: -2.031vw;
        font-size: 0.625vw;
    }

    .wpcf7-spinner {
        bottom: -1.563vw;
        width: 1.250vw;
        height: 1.250vw;
    }

    .wpcf7-spinner::before {
        top: 0.208vw;
        left: 0.208vw;
        width: 0.313vw;
        height: 0.313vw;
        -webkit-transform-origin: 0.417vw 0.417vw;
        -ms-transform-origin: 0.417vw 0.417vw;
        transform-origin: 0.417vw 0.417vw;
    }

    .use-floating-validation-tip .wpcf7-not-valid-tip {
        font-size: 0.625vw;
    }

    /* Global Title */
    .global-title {
        margin-bottom: 1.823vw;
    }

    .global-title h2 > small {
        font-size: 0.938vw;
        margin-bottom: 0.521vw;
        padding-left: 1.042vw;
    }

    .global-title h2 > small:before {
        width: 0.104vw;
    }

    .global-title h2 > span {
        font-size: 3.125vw;
    }

    /* Global Button */
    .global-btn {
        font-size: 0.729vw;
        padding: 0 0 0.885vw;
    }

    .global-btn em.ai-icon-arrow {
        width: 0.833vw;
        height: 0.469vw;
        margin-left: 1.302vw;
    }

    .global-btn:after {
        height: 0.156vw;
    }

    /* Global Slide Controls */
    .global-slide-controls button {
        width: 3.385vw;
        height: 3.385vw;
    }

    .global-slide-controls button:not(:last-child) {
        margin-right: 0.521vw;
    }

    .global-slide-controls button em.ai-icon-arrow {
        width: 0.833vw;
        height: 0.469vw;
    }

    /*******************************************************
     *
     * Navigation
     *
     *******************************************************/
    /* Sub Menu */
    #nav li {
        margin-right: 2.865vw;
    }

    #nav li a {
        font-size: 0.729vw;
    }

    #nav > li > a:before {
        bottom: -0.469vw;
    }

    #nav .sub-menu {
        padding-top: 1.302vw;
    }

    #nav .sub-menu li a {
        padding: 0.417vw 1.198vw;
        text-shadow: 0vw 0.104vw 0.052vw #000;
    }

    /*******************************************************
     *
     * Custom CSS
     *
     *******************************************************/
    /* Header */
    .header-wrapper {
        padding: 2.604vw 0;
    }

    body.admin-bar .header-wrapper {
        top: 1.667vw;
    }

    .header-nav {
        margin-right: 2.083vw;
    }

    .header-wrapper > .custom-container {
        padding: 0 8.333vw;
    }

    .logo img {
        width: 8.438vw;
        width: 11.438vw;
        /* height: 2.292vw; */
    }

    .header-contacts span {
        font-size: 0.573vw;
    }

    .header-contacts span em.ai-font-phone {
        font-size: 0.729vw;
    }

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

    .header-contacts span a em.ai-font-envelope-f {
        font-size: 0.521vw;
    }

    .header-broker-logo img {
        width: 4.219vw;
        height: 4.219vw;
    }

    /* Fixed Header */
    .header-wrapper.active {
        padding: 0.885vw 0;
        min-height: 4.635vw;
    }

    .header-wrapper.active .header-broker-logo img {
        max-width: 2.865vw;
        height: auto;
    }

    .header-wrapper.active #nav .sub-menu {
        padding-top: 1.927vw;
    }

    /* Footer Form */
    .ff-container {
        padding: 4.948vw 0 8.854vw;
    }

    .ff-field {
        width: calc(50% - 0.781vw);
        margin-bottom: 1.042vw;
    }

    .ff-widget {
        max-width: 32.813vw;
    }

    .ff-field input:not([type=submit]), .ff-field textarea {
        height: 2.604vw;
        font-size: 0.625vw;
    }

    .ff-field textarea {
        height: 4.167vw;
        padding: 1.146vw 0 0.781vw;
    }

    .ff-field.w-80 {
        width: calc(80% - 0.781vw);
    }

    .ff-field.w-20 {
        width: calc(20% - 0.781vw);
    }

    /*Footer*/
    .footer-container {
        padding: 3.125vw 0 4.167vw;
    }

    .footer-container > .custom-container {
        max-width: 74.479vw;
    }

    .footer-logo a img {
        width: 8.438vw;
        height: 2.292vw;
    }

    .footer-broker-logo img {
        width: 4.219vw;
        height: 4.219vw;
    }

    .footer-logo:not(:last-child) {
        margin-right: 1.667vw;
    }

    .footer-logo-holder {
        margin-bottom: 1.667vw;
    }

    .footer-contacts-container {
        margin-bottom: 2.604vw;
    }

    .footer-contacts span {
        font-size: 0.729vw;
    }

    .footer-smi ul li a {
        font-size: 1.042vw;
    }

    .footer-contacts span:not(:last-child), .footer-contacts {
        margin-right: 3.125vw;
    }

    .footer-contacts span em[class^=ai-font] {
        margin-right: 0.521vw;
        font-size: 0.781vw;
    }

    .footer-contacts span em.ai-font-location-c {
        font-size: 1.042vw;
    }

    .footer-smi ul li:not(:last-child) {
        margin-right: 1.719vw;
    }

    .footer-nav-holder {
        margin-bottom: 2.604vw;
        padding: 1.302vw 0;
    }

    #footer-nav > li {
        padding: 0.156vw 0;
    }

    #footer-nav > li:not(:last-child) {
        margin-right: 2.708vw;
    }

    #footer-nav > li:last-child {
        padding-left: 2.708vw;
    }

    #footer-nav > li > a {
        font-size: 0.729vw;
    }

    /*Copyright*/
    .footer-disclaimer {
        margin-bottom: 1.302vw;
    }

    .footer-disclaimer p {
        font-size: 0.677vw;
    }

    .copyright {
        font-size: 0.677vw;
        margin-bottom: 0.938vw;
    }

    .mls-logo span {
        font-size: 0.781vw;
        margin: 0 0.156vw;
    }

    .mls-logo span.ai-font-realtor-mls {
        font-size: 1.042vw;
    }

    /*******************************************************
     *
     * 4. IP Styles
     *
     *******************************************************/
    .ip-container #breadcrumbs {
        font-size: 0.781vw;
    }

    .ip-banner canvas {
        min-height: 20.833vw;
    }

    .ip-banner h1 span {
        font-size: 1.302vw;
    }

    /* Adjust minimum height of page area */
    #content-sidebar, #content-full {
        min-height: 26.042vw;
        margin-top: 1.042vw;
    }

    /* Adjust width of sidebar */
    .sidebar {
        margin-top: 4.167vw;
    }

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

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

    /* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
    #content .entry-title, #content .archive-title {
        font-size: 3.125vw;
        margin: 1.563vw 0;
    }

    #content .entry {
        font-size: 0.833vw;
    }

    /* Styles for category/archive/search/etc subheadings (h2) */
    #content .archive-subtitle {
        font-size: 1.667vw;
    }

    #inner-page-wrapper {
        margin-bottom: 1.875vw;
    }

    #inner-page-wrapper>.container {
        width: 73.125vw;
        padding: 0 0.938vw;
    }

    .ai-contact-wrap span {
        font-size: 1.563vw;
        line-height: 1.2;
    }

    .ai-contact-wrap span.content-title {
        margin-bottom: 0.313vw;
    }

    .aidefcf-title {
        margin-bottom: 1.875vw;
        line-height: 1.563vw;
    }

    .aidefcf-title span {
        font-size: 1.250vw;
    }

    .ai-contact-wrap span.context-mob, .ai-contact-wrap span.context-email {
        line-height: 1.875vw;
        font-size: 1.125vw;
        font-weight: 500;
    }

    .ai-contact-wrap span.context-email em.ai-font-envelope {
        font-size: 0.813vw;
    }

    .ai-contact-wrap span.context-mob em.ai-font-phone {
        font-size: 1.125vw;
    }

    .ai-contact-wrap span.context-mob em.ai-font-phone, .ai-contact-wrap span.context-email em.ai-font-envelope {
        min-width: 1.563vw;
    }

    *[class*=aidefcf-wrapper-contact-us] .wpcf7 {
        max-width: 22.188vw;
    }

    .ai-default-cf7wrap input[type="text"], .ai-default-cf7wrap input[type="tel"], .ai-default-cf7wrap input[type="email"], .ai-default-cf7wrap textarea {
        height: 1.750vw;
        padding: 0.313vw 0.563vw !important;
        font-size: 0.688vw;
        margin: 0.313vw 0;
    }

    .ai-default-cf7wrap textarea {
        height: 6.438vw;
    }

    .ai-contact-wrap input[type="submit"], .ai-contact-wrap input.wpcf7-submit {
        margin-top: 0.938vw;
    }

    .ai-default-cf7wrap input[type="submit"], .ai-default-cf7wrap input.wpcf7-submit {
        height: 1.750vw;
        font-size: 1.063vw;
        letter-spacing: 0.125vw;
    }

    body #content .aios-roadmaps-pagination a {
        font-size: 1vw;
    }

    body #content .aios-roadmaps-pagination a.aios-roadmaps-next::after, body #content .aios-roadmaps-pagination a.aios-roadmaps-prev::before {
        width: 3.313vw;
        height: 1.063vw;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    /* Mortgage Calculator */
    .aios-mortgage-calculator-standalone form input {
        padding: 0 0.625vw;
        height: 2.250vw;
    }

    .aios-mortgage-calculator-standalone form label {
        margin-bottom: 0.250vw;
    }

    .aios-mortgage-calculator-standalone form .aios-mortgage-calculator-standalone-full-input {
        padding: 0 0.938vw;
    }

    .aios-mortgage-calculator-standalone form .aios-mortgage-calculator-standalone-mort-row {
        margin: 0 -0.938vw;
    }

    .aios-mortgage-calculator-standalone form .aios-mortgage-calculator-standalone-mortgage-buttons button {
        height: 2.250vw;
        font-size: 0.875vw;
    }

    .aios-mortgage-calculator-standalone form .aios-mortgage-calculator-standalone-half-input {
        padding: 0 0.938vw;
    }

    .aios-mortgage-calculator-standalone form .aios-mortgage-calculator-standalone-half-input span {
        font-size: 0.813vw;
    }

    body #aios-testimonials .aios-testimonials-lists .aios-testimonials-content {
        font-size: 0.885vw;
    }

    body #aios-testimonials .aios-testimonials-lists:first-child h3,body #aios-testimonials .aios-testimonials-lists:first-child p {
        font-size: 1.302vw;
    }

    body #aios-testimonials .aios-testimonials-lists h3 {
        font-size: 1.042vw;
    }

    body #aios-testimonials .aios-testimonials-lists .star_rating_display i, .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content .star_rating_display i {
        font-size: 1.302vw;
    }

    body #aios-testimonials .aios-testimonials-lists a {
        padding: 4.167vw 2.604vw;
    }

    body #aios-testimonials .aios-testimonials-lists {
        padding: 0.781vw;
    }

    body #aios-testimonials .aios-testimonials {
        margin: 0 -0.781vw;
    }

    body .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content .aios-testimonials-popup-content {
        font-size: 1.042vw;
    }

    body .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content .star_rating_display {
        padding-bottom: 1.563vw;
    }

    body .aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content h2 {
        padding-top: 1.563vw;
        font-size: 1.042vw;
    }
}

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

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

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

@media only screen and (max-width: 1280px) {
   .attachment-fixed canvas,
    html.safari-true .attachment-fixed canvas {
        background-attachment: scroll!important;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    html.safari-true .attachment-fixed canvas {
        background-attachment: scroll!important;
        background-size: 170vw!important;
    }
}

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

    #content .entry-title, #content .archive-title, .global-title h2 > span {
        font-size: 40px;
    }

    .global-title h2 > small {
        font-size: 16px;
        letter-spacing: 0.150em;
        margin-bottom: 7px;
        padding-left: 15px;
    }

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

    .global-btn {
        font-size: 13px;
        letter-spacing: 0.050em;
        padding: 0 0 12px;
    }

    .global-btn em.ai-icon-arrow {
        margin-left: 15px;
    }

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

    .logo {
        margin-right: 15px;
    }

    .header-wrapper {
        background-color: #000;
        padding: 10px 0;
        min-height: 70px;
        margin-top: 52px;
        position: relative;
        z-index: 10;
    }

    .header-wrapper > .custom-container {
        padding: 0 15px;
    }

    .header-nav {
        display: none;
    }

    .header-contacts {
        display: none;
    }

    .logo img {
        max-width: 135px;
        width: 100%;
    }

    .header-broker-logo img {
        max-width: 50px;
        width: 100%;
    }

    .ff-container {
        padding: 70px 15px;
    }

    .ff-field textarea {
        padding: 15px 0;
    }

    .ff-field.w-80, .ff-field.w-20 {
        width: 100%;
        display: block;
    }

    .ff-field.w-80 {
        margin-bottom: 25px;
    }

    .ff-field {
        width: calc(50% - 5px);
        margin-bottom: 15px;
    }

    .ff-bg canvas {
        opacity: .40;
    }

    .ff-field.w-20 .global-btn {
        margin: 0 auto;
    }

    .footer-logo-holder {
        margin-bottom: 30px;
    }

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

    .footer-contacts span {
        display: block;
    }

    .footer-contacts {
        display: block;
        margin: 0 0 20px;
    }

    .footer-smi {
        display: block;
    }

    .footer-smi ul li:not(:last-child) {
        margin-right: 20px;
    }

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

    .footer-nav-holder {
        margin-bottom: 30px;
        padding: 15px 0;
    }

    #footer-nav > li:not(:last-child) {
        margin-right: 10px;
        margin-bottom: 3px;
        padding: 3px 0;
    }

    #footer-nav > li:last-child {
        padding-left: 10px;
    }

    #footer-nav > li > a {
        font-size: 13px;
        letter-spacing: 0.050em;
    }

    .footer-disclaimer p br {
        display: none;
    }

    .footer-contacts-container {
        margin-bottom: 30px;
    }

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

    .copyright {
        line-height: 1.539;
    }

    .footer-disclaimer {
        margin-bottom: 15px;
    }

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

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

    #content .archive-content.archive-has-thumbnail,
	#content .archive-thumbnail {
		float: none;
		width: 100%
	}

	#content .archive-content h2,
	#content .archive-thumbnail {
		margin-left: auto;
		margin-right: auto;
		text-align: center
	}

	#content .archive-more {
		font-style: italic;
		text-decoration: underline
	}
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }

    .ff-main .global-title h2 > span {
        font-size: 34px;
    }

    .ff-field {
        width: 100%;
    }

    .ff-widget .wpcf7 form .wpcf7-response-output {
        bottom: -45px;
    }

    .page-id-65 #inner-page-wrapper .git-form>div {
        width: 100%;
    }

    .page-id-65 .git-row.sbmt {
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    #content .entry-title, #content .archive-title, .global-title h2 > span {
        font-size: 35px;
    }

    .global-title h2 > small {
        font-size: 15px;
        letter-spacing: 0.100em;
    }

    .page-id-65 .git-row.dual>div, 
    .page-id-65 .git-row.trial>div {
        max-width: none;
        width: 100%;
        margin: 26px 0 0;
    }
}
