/*******************************************************
 *
 * Global Styles
 *
 *******************************************************/
:root {
    /** Font default */
    --body-font: 'Spartan', sans-serif;
    --title-font: 'Qwigley', cursive;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary-color: #20b8f7;
    --secondary-color: #202020;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

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

#nav li a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#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: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

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

#nav > li:focus-within > a, #nav > li:hover > a {
    color: var(--primary-color);
}

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

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

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

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

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

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

.slick-track * {
    outline: none;
}

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

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

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

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

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

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

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

#main-wrapper {
    overflow: hidden;
}

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

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

.is-mobile {
    display: none!important;
}

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

.global-title span {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1.020em;
    color: #7d7d7d;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.global-title span em {
    font-style: normal;
    color: #20b8f7;
}

.global-title h2 {
    font-size: 70px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.050em;
    color: #000;
    display: block;
}

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

/* 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%;
    max-width: 218px;
    height: 59px;
    border: 1px solid #1e73be;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #000;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

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

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

.global-btn.is-white:hover, .global-btn.is-white:focus {
    background: #fff;
    color: #000;
}

.global-site-title span {
    /* display: block;
    font-size: 25px;
    color: #212121;
    text-transform: uppercase; */
}

.global-site-title span, .gst-name span {
    font-weight: 500;
    font-size: 60px;
    color: #212121;
    letter-spacing: normal;
    letter-spacing: -2.5px;
}

.gst-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gst-name .colored {
    color: #20b8f7 !important;
    padding-right: 18px;
}

/*Site Logo*/
.site-logo h2 {
    font-family: var(--title-font);
    font-size: 40px;
    line-height: 0.8;
    letter-spacing: normal;
    color: #fff;
    padding: 5px 0 0;
}

.site-logo h2 em {
    font-style: normal;
    font-family: var(--body-font);
    line-height: 1;
    font-size: 7px;
    letter-spacing: 0.025em;
    font-weight: 400;
    vertical-align: middle;
    display: inline-block;
    margin-top: -25px;
    margin-left: -7px;
}

/*Fixed Header*/
#fixed-header {
    position: fixed;
    z-index: 1029;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-size: 0;
    background: #000000;
    padding: 30px 0;
}

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

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

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

#fixed-header .site-logo h2 {
    font-size: 40px;
}

#fixed-header .site-logo h2 em {
    font-size: 7px;
    letter-spacing: 0.025em;
    margin-top: -25px;
    margin-left: -7px;
}

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

.broker-logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 10px;
    margin: 0 auto;
    text-align: center;
}

body.home .header-wrapper .broker-logo {
    margin-right: 0;
    margin-left: 0;
}

body.home .header-wrapper .broker-logo .site-logo h2 {
    font-size: 66px;
}

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

#fixed-header .header-nav {
    /* margin-left: 0; */
    /* margin-right: 89px; */
}

#fixed-header .broker-logo {
    text-align: center;
}

#fixed-header .broker-logo br {
    display: none;
}

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

#fixed-nav li a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

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

#fixed-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 180px;
    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;
}

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

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

#fixed-nav > li:focus-within > a, #fixed-nav > li:hover > a {
    color: var(--primary-color);
}

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

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

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

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

/* Header */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 42px 0;
}

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

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

body.home .header-wrapper > .container {
    /* padding: 0px 50px 0px 160px; */
}

.header-contacts {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0;
    margin-right: 49px;
}

.header-contacts span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 172px;
    max-width: 172px;
    height: 44px;
    border: 1px solid var(--primary-color);
    font-size: 15px;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.085em;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.header-contacts span em, .header-contacts span a {
    width: 100%;
    height: 100%;
    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;
}

.header-contacts span:hover {
    background: var(--primary-color);
}

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

.header-nav #nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

body.home .header-nav {
    margin-left: auto;
}

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

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

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

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

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

.burger-menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: 0.6s all ease-in-out;
    -o-transition: 0.6s all ease-in-out;
    transition: 0.6s all ease-in-out;
}

.bm-lines {
    display: block;
    width: 29px;
    height: 23px;
    position: relative;
    margin: 0 auto;
}

.burger-menu-icon:hover .bm-lines span {
    background: var(--primary-color);
    width: 100%!important;
}

.burger-menu-icon:hover .bm-text {
    color: #fff;
}

.burger-menu-icon span:nth-child(2) {
    top: 10px;
    width: 20px;
    right: 0;
    left: auto;
}

.burger-menu-icon span:last-child {
    bottom: 0;
    width: 25px;
    right: 0;
    left: auto;
}

.burger-menu-icon.active span:first-child {
    -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}

.burger-menu-icon.active span:last-child {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

.burger-menu-icon.active span:nth-child(2) {
    opacity: 0;
}

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

.side-menu.active .side-menu-bg {
    opacity: 1;
}

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

.side-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 730px;
    width: 100%;
    height: 100%;
    z-index: 1056;
    background: var(--primary-color);
    -o-transition: all ease .6s;
    -webkit-transition: all ease .6s;
    transition: all ease .6s;
    opacity: 0;
}

.side-menu-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url(../../images/sm-bg.jpg);
    background-position: center;
    background-size: cover;
}

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

.side-menu-container {
    width: 100%;
    position: relative;
    height: 100%;
}

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

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

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

.side-menu-wrapper {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 154px 115px 90px 97px;
}

.sm-exit-btn {
    position: absolute;
    top: 60px;
    right: 54px;
    z-index: 20;
    text-align: right;
}

.sm-exit-btn span {
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: block;
    font-weight: 700;
}

.sm-exit-btn span:hover {
    color: #666;
}

.sidemenu-nav > li > a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.060em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
}

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

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

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

.sidemenu-nav .sub-menu li a {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.060em;
    line-height: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

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

.sidemenu-nav {
    display: block;
    position: relative;
    text-align: right;
}

.sidemenu-nav > li {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    position: relative;
}

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

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

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

.side-menu-nav {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    padding-bottom: 57px;
}

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

.side-menu.active .sm-exit-btn span {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.side-menu-logo a {
    display: block;
    text-align: left;
    width: 100%;
}

.side-menu-logo img {
    display: block;
    margin-top: auto;
}

.side-menu-contacts, .side-menu-contacts > div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.side-menu-smis {
    display: block;
    position: absolute;
    top: 30vh;
    right: 30px;
}

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

.side-menu-contacts span em.ai-font-phone-alt {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 10px;
    font-size: 23px;
    color: var(--primary-color);
}

.side-menu-contacts span em.ai-font-envelope-f {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 10px;
    font-size: 17px;
    color: var(--primary-color);
}

.side-menu-contacts-container {
    position: relative;
    display: block;
    padding: 34px 0 0;
    border-top: 1px solid rgba(255,255,255,.30);
}

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

.side-menu-smis a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.side-menu-contacts span a:hover {
    opacity: .7;
}

.side-menu-smis ul {
    display: block;
    position: relative;
}

.side-menu-smis ul li {
    display: block;
    width: 43px;
    height: 43px;
    position: relative;
}

.side-menu-smis ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    font-size: 18px;
    color: #fff;
}

.side-menu-smis ul li:not(:last-child) {
    margin-bottom: 17px;
}

/* floating Form */
.floating-form-view {
    position: fixed;
    top: 23vh;
    left: 0;
    font-size: 0;
    letter-spacing: 0;
    height: 439px;
    z-index: 1033;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
}

.floating-view-wrap {
    display: block;
    position: relative;
    width: 518px;
    height: auto;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    pointer-events: auto;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.floating-view-wrap > div {
    height: 100%;
    width: 100%;
    display: block;
}

.floating-view-wrap.is-open .floating-body {
    opacity: 1;
}

.floating-form--btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 241px;
    height: 60px;
    background: var(--primary-color);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 2;
    -webkit-transform: rotate(270deg) translateZ(0);
    transform: rotate(270deg) translateZ(0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    right: 60px;
    top: 100%;
    left: 100%;
}

.floating-form--btn.js-trigger-form img {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.floating-form--btn span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.500em;
    text-transform: uppercase;
    padding-left: 0;
    margin-right: 0;
    font-weight: 500;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.floating-form--btn.is-active {
    width: 200px;
    height: 60px;
    right: 60px;
}

.floating-form--btn i {
    cursor: pointer;
    font-size: 15px;
    color: #fff;
}

.floating-form--btn.is-active {
    background: #9d9d9d;
}

.floating-form--btn:hover {
    background: #fff;
}

.floating-form--btn:hover span {
    color: #7d7d7d;
}

.floating-form--btn.is-active span {
    padding-left: 20px;
    font-size: 10px;
    letter-spacing: 0.3em;
}

.fl-active, .floating-form--btn i {
    display: none !important;
}

.floating-form--btn.is-active .fl-active {
    display: inline-block !important;
}

.floating-form--btn.is-active i {
    display: inline-block !important;
}

.floating-form--btn.is-active .fl-not-active, .floating-form--btn.is-active img {
    display: none !important;
}

.floating-form--btn.is-active:hover {
    background: #777;
}

.floating-body {
    position: absolute;
    top: 0;
    background: #fff;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 55px 55px 33px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.floating-form-drop {
    position: fixed;
    z-index: 1008;
    top: 0;
    left: 0;
    right: initial;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.floating-view.is-open {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.ff-title span {
    display: block;
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.050em;
    font-weight: 300;
}

.ff-title p {
    font-size: 12px;
    line-height: 20px;
    margin: 11px 0 30px;
    letter-spacing: 0.025em;
}

.ff-title span:last-child {
    font-weight: 500;
    color: var(--primary-color);
    margin: 8px 0 42px;
}

.ff-form {
    position: relative;
    color: #777777;
    font-size: 0;
}

.floating-phone {
    font-size: 15px;
    padding: 58px 0 0;
    letter-spacing: 0.025em;
    line-height: 20px;
}

.floating-phone a:hover {
    color: var(--primary-color);
}

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

.ff-md.pad-right {
    padding-right: 12px;
}

.ff-md.pad-left {
    padding-left: 12px;
}

.ff-lg {
    position: relative;
}

.ff-md input, .ff-lg textarea {
    width: 100%;
    height: 46px;
    font-size: 13px;
    border: none;
    border-bottom: 1px solid #777777;
    outline: none;
    background: transparent;
    overflow: hidden;
    resize: none;
}

.ff-lg textarea {
    height: 87px;
    padding-top: 23px;
    padding-right: 50px;
}

.ff-btn {
    position: absolute;
    width: 34px;
    height: 34px;
    bottom: 22px;
    right: 11px;
}

.ff-btn input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: url(../../images/ai-plane-icon.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0;
    font-size: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ff-btn input:hover {
    opacity: .75;
}

.ff-form div.wpcf7-response-output {
    font-size: 13px;
    text-align: center;
    position: absolute;
    bottom: -43px !important;
    width: 100%;
    left: 0;
    margin: 0 auto!important;
}

.ff-form span.wpcf7-not-valid-tip {
    font-size: 13px;
}

.ff-form .wpcf7-form-control-wrap {
    display: block;
}

.ff-form div.wpcf7 .ajax-loader {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -19px;
}

.ff-form form {
    position: relative;
}

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

/* Fixed SMI */
.nav-active-section-featured-properties #fixed-smi ul li a, .nav-active-section-inner-page-wrapper #fixed-smi ul li a, .nav-active-section-hp_youtube #fixed-smi ul li a, .nav-active-section-hp_instagram #fixed-smi ul li a, .nav-active-section-call-to-action #fixed-smi ul li a, .nav-active-section-featured-communities #fixed-smi ul li a,  .nav-active-section-about #fixed-smi ul li a {
    color: #000;
    border-color: #000;
    -webkit-box-shadow: 0 0 3px #ffffff;
            box-shadow: 0 0 3px #ffffff;
    text-shadow: 0 0 3px #ffffff;
}

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

#fixed-smi ul {
    display: block;
    position: relative;
}

#fixed-smi ul li {
    display: block;
    position: relative;
    width: 100%;
    height: 43px;
}

#fixed-smi ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 3px #333333;
            box-shadow: 0 0 3px #333333;
    text-shadow: 0 0 3px #333333;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    font-size: 18px;
    color: #fff;
}

#fixed-smi.active ul li a {
    color: #565656;
    border-color: #565656;
}

#fixed-smi ul li a span.ai-font-google-plus {
    width: 12px;
    overflow: hidden;
}

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

#fixed-smi {
    position: fixed;
    top: 28vh;
    right: 30px;
    width: 43px;
    z-index: 100;
}

#fixed-smi a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color)!important;
    color: #fff!important;
}

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

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

.footer-bg .textwidget.custom-html-widget {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.footer-container {
    display: block;
    position: relative;
    font-size: 0;
    padding: 90px 0 134px;
    z-index: 10;
}

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

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

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

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

.footer-info-container {
    display: block;
    position: relative;
    padding-right: 4px;
}

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

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

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

.footer-contact-info {
    position: relative;
    margin-top: 32px;
    padding-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-cinfo-col {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    width: 50%;
}

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

.footer-form-title {
    display: block;
    position: relative;
    margin-bottom: 28px;
}

.footer-form {
    display: block;
    position: relative;
    padding: 48px 55px 67px;
}

.footer-form-bg {
    display: block;
    position: relative;
}

.footer-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e73be+0,20b8f7+100 */
    background: #1e73be;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(left, #1e73be 0%,#20b8f7 100%);
    background: -webkit-gradient(linear, left top, right top, from(#1e73be),to(#20b8f7));
    background: linear-gradient(to right, #1e73be 0%,#20b8f7 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e73be', endColorstr='#20b8f7',GradientType=1 );
    /* IE6-9 */
}

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

/* Footer Form */
.footer-form-main {
    display: block;
    position: relative;
}

.footer-form-md {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
}

.footer-form-md.pad-right {
    padding-right: 12px;
}

.footer-form-md.pad-left {
    padding-left: 12px;
}

.footer-form-lg {
    position: relative;
}

.footer-form-md input, .footer-form-lg textarea {
    width: 100%;
    height: 46px;
    font-size: 13px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.75);
    outline: none;
    background: transparent;
    overflow: hidden;
    resize: none;
    color: #fff;
}

.footer-form-lg textarea {
    height: 87px;
    padding-top: 23px;
    padding-right: 50px;
}

.footer-form-btn {
    position: absolute;
    width: 34px;
    height: 34px;
    bottom: 22px;
    right: 11px;
}

.footer-form-btn input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: url(../../images/ai-plane-icon.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0;
    font-size: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.footer-form-btn input:hover {
    opacity: .75;
}

.footer-form div.wpcf7-response-output {
    font-size: 13px;
    text-align: center;
    position: absolute;
    bottom: -43px !important;
    width: 100%;
    left: 0;
    margin: 0 auto!important;
}

.footer-form span.wpcf7-not-valid-tip {
    font-size: 13px;
}

.footer-form .wpcf7-form-control-wrap {
    display: block;
}

.footer-form div.wpcf7 .ajax-loader {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -19px;
}

.footer-form form {
    position: relative;
}

.footer-form form label {
    display: none;
}

.footer-form-title h2 {
    display: block;
    text-align: center;
    font-size: 30px;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.050em;
    font-weight: 300;
}

/* Footer Contacts */
.footer-contacts span {
    font-size: 13px;
    color: #fff;
    display: block;
    line-height: normal;
    position: relative;
    line-height: 25px;
}

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

.footer-contacts span a:hover {
    color: var(--primary-color);
}

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

.footer-contacts span em.ai-font-phone-alt {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 13px;
    font-size: 15px;
}

.footer-contacts span em.ai-font-envelope-f {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 13px;
    font-size: 11px;
}

.footer-contacts span:nth-child(3),
.footer-contacts span:nth-child(4) {
    padding-left: 29px;
}

.footer-contacts span:nth-child(3) em.ai-font-location-c,
.footer-contacts span:nth-child(4) em.ai-font-location-c {
    display: inline-block;
    vertical-align: middle;
    font-size: 19px;
    position: absolute;
    top: 4px;
    left: 0;
}

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

.footer-col:first-child {
    width: 56.916%;
}

.footer-col:last-child {
    width: 43.084%;
}

.footer-cinfo-col:first-child {
    width: calc(58% - 15px);
}

.footer-cinfo-col:last-child {
    width: calc(42% - 15px);
}

.footer-contact-info:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: calc(100% - 57px);
    height: 1px;
    background: rgba(255,255,255,.25);
}

.footer-logos {
    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 85px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.footer-logo-item {
    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%;
}

.footer-logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    /* padding: 0 15px; */
    text-align: center;
}

.footer-logo img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
    margin: 0 auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    max-width: 100%;
}

.footer-logo img.invert-color {
    -webkit-filter: none;
    filter: none;
}

.footer-logo img.img-lg {
    max-width: 200px !important;
}

.footer-logo img.filter-1 {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.footer-logo:first-child img {
    max-width: 299px;
}

.footer-logo a:hover img {
    opacity: .75;
}

.footer-logo-item:last-child {
    margin-left: 0;
    margin-right: -45px;
}

.footer-logo-item:first-child .footer-logo {
    padding: 0;
}

.footer-logo-item:not(:last-child) {
    margin-bottom: 10px;
}

/* Footer Nav */
#footer-nav {
    margin-bottom: -27px;
    display: block;
}

#footer-nav > li {
    position: relative;
    margin-bottom: 27px;
    line-height: normal;
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

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

#footer-nav > li > a {
    font-size: 13px;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    line-height: normal;
}

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

/*Copyright*/
.footer-copyright {
    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;
    padding-top: 36px;
}

.footer-logo-widget {
    padding: 39px 0 37px;
    margin-top: 55px;
    border-top: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
}

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

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

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

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

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

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

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

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

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

.single-aios-listings .aiosp-wrap .aiosp-container .aios-popup-body {
    padding: 30px 0 11px;
}

.single-aios-listings .aiosp-content .listings-popup form {
    margin: 0 auto;
}

.aiosp-content .listings-popup input[type=email], .aiosp-content .listings-popup input[type=tel], .aiosp-content .listings-popup input[type=text], .aiosp-content .listings-popup select, .aiosp-content .listings-popup textarea, .aiosp-content .listings-popup .form-control {
    line-height: 1.5;
}

.ippd-vt iframe#virtual-tour {
    display: block;
    width: 100%;
}

body.single-aios-listings .aiosp-content .listings-popup > h2 {
    margin-top: 65px;
}
/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (min-width: 992px) and (max-height: 550px) {
    #fixed-smi {
        top: 31vh;
    }

    #fixed-smi ul li:not(:last-child) {
        margin-bottom: 6px;
    }
}

@media only screen and (min-width: 1601px) {
    .broker-logo {
        margin-right: auto;
        margin-left: 60px;
    }
}

@media only screen and (max-width: 1560px) {
    .global-site-title span, .gst-name span {
        font-size: 55px;
    }

    #fixed-header .header-nav, .header-nav {
        margin: 0 auto 0 0;
    }

    #fixed-header > .container, .header-wrapper > .container {
        padding: 0 50px;
    }

    .header-wrapper > .container {
        /* padding: 0 50px 0 85px; */
    }
}

@media only screen and (max-width: 1440px) {
    .global-site-title span, .gst-name span {
        font-size: 50px;
    }

    .header-contacts {
        margin-right: 30px;
    }

    #nav li a, #fixed-nav li a {
        font-size: 14px;
    }

    .side-menu-wrapper {
        padding: 125px 115px 90px 97px;
    }
}

@media only screen and (max-width: 1366px) {
    body.home .header-wrapper .broker-logo .site-logo h2 {
        font-size: 60px;
    }

    .site-logo h2 {
        /* font-size: 45px; */
    }

    .sm-exit-btn {
        right: 30px;
    }

    .side-menu-smis, #fixed-smi {
        right: 15px;
    }

    #fixed-header > .container, .header-wrapper > .container {
        padding: 0 30px;
    }

    .header-wrapper > .container {
        /* padding: 0 30px 0 60px; */
    }
}

@media only screen and (max-width: 1280px) {
    .global-title h2 {
        font-size: 60px;
    }

    .global-title span {
        font-size: 20px;
        letter-spacing: 0.500em;
    }

    .side-menu-wrapper {
        padding: 116px 75px 90px 60px;
    }

    .side-menu-bg {
        max-width: 650px;
    }

    .header-wrapper > .container {
        /* padding: 0 30px 0 70px; */
    }

    .broker-logo img {
        width: 148px;
    }

    #fixed-header .site-logo h2 {
        /* font-size: 44px; */
    }

    #fixed-nav li, #nav li {
        margin-right: 16px;
    }

    #nav li a, #fixed-nav li a {
        font-size: 13px;
    }

    #nav .sub-menu li a, #fixed-nav .sub-menu li a {
        font-size: 16px;
    }

    #fixed-smi ul li {
        height: 36px;
    }

    #fixed-smi {
        width: 36px;
    }

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

    .side-menu-smis ul li a {
        font-size: 16px;
    }

    .side-menu-smis ul li {
        width: 36px;
        height: 36px;
    }

    .floating-body {
        padding: 35px 40px 25px;
    }

    .floating-form-view {
        height: 383px;
        top: 28vh;
    }

    .floating-phone {
        padding: 49px 0 0;
    }

    .ff-title p {
        margin: 11px 0;
    }

    .floating-form--btn {
        width: 210px;
        height: 55px;
    }

    .floating-form--btn.is-active {
        width: 175px;
        height: 55px;
        right: 55px;
    }

    .footer-wrapper > .container {
        width: 100%;
        max-width: 1100px;
    }

    .footer-form {
        padding: 35px 40px 67px;
    }

    #footer-nav > li > a, .footer-contacts span {
        font-size: 12px;
    }

    .footer-contacts span {
        line-height: 23px;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    .global-site-title span, .gst-name span {
        font-size: 42px;
    }

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

    .global-title h2 {
        font-size: 55px;
    }

    .global-title span {
        font-size: 18px;
    }

    .global-btn {
        font-size: 13px;
        max-width: 190px;
        height: 55px;
    }

    body.home .header-wrapper .broker-logo .site-logo h2 {
        font-size: 50px;
    }

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

    .sidemenu-nav > li > a {
        font-size: 16px;
    }

    .sidemenu-nav .sub-menu li a {
        font-size: 14px;
    }

    .side-menu-nav {
        padding-bottom: 40px;
    }

    .side-menu-wrapper {
        padding: 110px 75px 90px 60px;
    }

    .sm-exit-btn {
        top: 50px;
        right: 20px;
    }

    .floating-body {
        padding: 30px 25px 25px;
    }

    .floating-form-view {
        height: 370px;
    }

    .floating-form--btn {
        width: 185px;
        height: 55px;
    }

    .floating-form--btn span {
        letter-spacing: 0.200em;
    }

    .ff-title span {
        font-size: 35px;
    }

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

    .site-logo h2 {
        font-size: 40px;
    }

    .site-logo h2 em {
        font-size: 7px;
        margin-top: -32px;
        margin-left: -10px;
    }

    .header-contacts span {
        width: 155px;
        font-size: 13px;
    }

    .header-contacts {
        margin-right: 20px;
    }

    #nav li a, #fixed-nav li a {
        font-size: 11px;
    }

    #fixed-header > .container {
        padding: 0 15px;
    }

    .broker-logo img {
        width: 121px;
    }

    .site-logo h2, #fixed-header .site-logo h2 {
        font-size: 28px;
    }

    #fixed-nav li {
        margin-right: 20px;
    }

    #nav .sub-menu li a, #fixed-nav .sub-menu li a {
        font-size: 14px;
    }

    .footer-logos {
        padding: 0 35px;
    }

    .footer-wrapper > .container {
        max-width: 920px;
    }

    .footer-cinfo-col:first-child {
        width: calc(58% - 5px);
    }

    .footer-cinfo-col:last-child {
        width: calc(42% - 5px);
    }

    #footer-nav > li > a, .footer-contacts span {
        letter-spacing: normal;
        font-size: 11px;
    }

    .footer-form {
        padding: 31px 25px 55px;
    }

    .footer-form-md.pad-right {
        padding-right: 5px;
    }

    .footer-form-md.pad-left {
        padding-left: 5px;
    }

    .footer-container {
        padding: 75px 0 90px;
    }

    .footer-main-logo img {
        width: 220px;
    }
}

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

    #fixed-header {
        opacity: 1!important;
        pointer-events: auto!important;
        background: #202020;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        z-index: 10;
        padding: 20px 0;
        position: relative;
        margin-top: 52px;
    }

    #fixed-smi, .header-wrapper, .floating-form-drop, .floating-form-view, .header-nav, .header-contacts, .burger-menu-wrap {
        display: none;
    }

    .header-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-logo {
        margin-bottom: 10px;
    }

    .site-logo h2 br {
        display: none;
    }

    .broker-logo img {
        width: 170px;
    }

    .footer-col {
        display: block;
        width: 100%!important;
    }

    .footer-main-logo {
        text-align: center;
    }

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

    .footer-cinfo-col {
        display: block;
        width: 100%!important;
    }

    #footer-nav > li {
        width: 100%;
        display: block;
        margin-bottom: 15px;
    }

    #footer-nav {
        margin-bottom: 0;
    }

    .footer-nav-wrap {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-contacts {
        display: block;
        width: 100%;
        max-width: 197px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-info-container {
        padding: 0;
        margin-bottom: 50px;
    }

    .footer-contacts span:nth-child(3),
    .footer-contacts span:nth-child(4) {
        padding-left: 2px;
    }

    .footer-contacts span:nth-child(4) em.ai-font-location-c {
        left: -14px;
    }

    .footer-contacts span em.ai-font-phone-alt {
        font-size: 12px;
    }

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

    .footer-contact-info:before {
        width: 100%;
    }

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

    .footer-logo-widget {
        padding: 30px 0;
        margin-top: 40px;
    }

    .footer-copyright {
        display: block;
        text-align: center;
        padding-top: 30px;
    }

    .copyright {
        display: block;
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.2;
    }

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

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

    .footer-logo {
        display: block;
    }

    .footer-logo {
        padding: 0 15px;
        width: 100%;
    }

    .footer-logo {
        padding: 0;
        display: block;
        margin: 0 auto;
    }

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

    .footer-logos .footer-logo img {
        max-width: 130px;
        width: 100%;
    }

    .footer-logo-item {
        display: block;
        margin: 0!important;
    }

    .footer-logo-item:not(:last-child) {
        margin-bottom: 25px!important;
    }

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

    .footer-logo-item:first-child .footer-logo:first-child img {
        max-width: 299px;
    }

    .footer-logo-item:first-child .footer-logo:nth-child(2) img {
        max-width: 130px;
    }

    .footer-logo-item:first-child .footer-logo:nth-child(3) img {
        max-width: 124px;
    }

    .footer-logo-item:first-child .footer-logo:nth-child(4) img {
        max-width: 118px;
    }

    .footer-logo-item:last-child .footer-logo:first-child img {
        max-width: 101px;
    }

    .footer-logo-item:last-child .footer-logo:nth-child(2) img {
        max-width: 194px;
    }

    .footer-logo-item:last-child .footer-logo:nth-child(3) img {
        max-width: 235px;
    }

    .footer-logo-item:last-child .footer-logo:nth-child(4) img {
        max-width: 129px;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .global-title h2 {
        font-size: 45px;
    }

    .global-title span {
        letter-spacing: normal;
    }

    .footer-form {
        padding: 30px 15px 55px;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    .global-site-title span, .gst-name span {
        font-size: 35px;
    }

    .gst-name .colored {
        padding-right: 10px;
    }

    .global-title h2 {
        font-size: 40px;
    }
}

/*******************************************************
 *
 * End of Global Style
 *
 *******************************************************/