body {
    font-family: var(--body-font);
    font-size: 17px;
    background: #ffffff;
    color: var(--body-color);
    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;*/
}

p {
    font-size: 18px;
    color: #202020;
}

#content ul li {
    font-size: 18px;
    color: #202020;
}

.slick-slide {
    outline: none !important;
}

a {
    outline: none !important;
}

.global-title,
#content .global-title {
    position: relative;
}

.global-title h1,
.global-title h2,
#content .global-title h1,
#content .global-title h2 {
    font: 400 80px/0.86 var(--title-font);
    color: var(--tertiary-color);
    text-transform: uppercase;
    margin: 0;
}

.global-title.is-text-white h1,
.global-title.is-text-white h2,
#content .global-title.is-text-white h1,
#content .global-title.is-text-white h2 {
    color: #ffffff;
}

.global-title span,
#content .global-title span {
    display: block;
    font: 600 24px/1 var(--body-font);
    /* color: #a5a5a5; */
    color: #949494;
    letter-spacing: 0.25em;
    margin-bottom: 40px;
}

.global-title strong,
#content .global-title strong {
    display: block;
    font-weight: 400;
    color: var(--primary-color);
}

.global-title em,
#content .global-title em {
    display: block;
    font: normal 500 24px/1 var(--body-font);
    letter-spacing: 0.25em;
    margin-top: 8px;
}

.global-button {
    display: inline-block;
    position: relative;
    width: 260px;
    max-width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: var(--tertiary-color);
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    padding: 0 10px;
    border: 2px solid #c6c6c6;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.parent-button:hover .global-button,
.global-button:hover {
    color: #ffffff;
}

.global-button::before,
.global-button::after {
    content: '';
    display: block;
    position: absolute;
    width: 3px;
    height: calc( 100% + 4px);
    top: -2px;
    background: var(--tertiary-color);
    z-index: 1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.parent-button:hover .global-button::before,
.parent-button:hover .global-button::after,
.global-button:hover::before,
.global-button:hover::after {
    width: calc( 50% + 2px);
    background: var(--hover-color);
}

.global-button::before {
    left: -2px;
}

.global-button::after {
    right: -2px;
}

.global-button span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 54px;
    z-index: 2;
}

.global-button.is-white {
    border-color: #ffffff;
    color: #ffffff;
}

.global-button.is-white::before,
.global-button.is-white::after {
    background: #ffffff;
}

.parent-button:hover .global-button.is-white::before,
.parent-button:hover .global-button.is-white::after,
.global-button.is-white:hover::before,
.global-button.is-white:hover::after {
    background: var(--hover-color);
}

.global-overlay {
    position: absolute;
    background: url(../../images/site-overlay.jpg) no-repeat center center/cover;
    background-attachment: fixed;
    width: 134px;
    height: 496px;
    left: 0;
    z-index: 8;
}

.is-mobile .global-overlay {
    background-attachment: scroll;
}

.global-overlay::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: calc( 100% - 130px);
    left: 0;
    top: 0;
    background: var(--primary-color);
    opacity: 0.7;
}

.global-overlay::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 130px;
    left: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 0.7;
}

.global-overlay span {
    display: block;
    position: absolute;
    width: 588px;
    height: 130px;
    left: 134px;
    bottom: 0;
    background: var(--background-color);
}

.global-overlay.is-reverse::before {
    top: 130px;
}

.global-overlay.is-reverse::after {
    top: 0;
    bottom: inherit;
}

.global-overlay.is-full::before {
    height: 100%;
}

.global-overlay.is-full::after {
    display: none;
}

.global-overlay.is-dark::before,
.global-overlay.is-dark::after {
    background: var(--background-color);
    opacity: 0.7;
}

.global-overlay.right {
    right: 0;
    left: inherit;
}

.global-overlay.right span {
    left: inherit;
    right: 134px;
}

.global-accent {
    position: absolute;
    top: 0;
    left: 48px;
    z-index: 10;
}

.global-accent img {
    margin: auto;
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

.global-accent.is-white img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.global-accent span {
    display: block;
    font: 400 18px/1 var(--title-font);
    color: var(--tertiary-color);
    letter-spacing: 0.15em;
    text-align: center;
}

.global-accent span::before {
    content: '';
    display: block;
    width: 1px;
    height: 54px;
    margin: 21px auto 27px;
    background: #d1d1d1;
}

.global-accent span.num-invisible {
    font-size: 0;
}

.global-accent.is-white span {
    color: #ffffff;
}

.form-input input:not([type="submit"]),
.form-input select,
.form-input textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: 100%;
    outline: none;
}

.form-input textarea {
    resize: none;
}

.form-button {
    position: relative;
    width: 163px;
    max-width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: var(--tertiary-color);
    letter-spacing: 0.2em;
    border: 2px solid #c6c6c6;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.form-button:hover {
    color: #ffffff;
}

.form-button::before,
.form-button::after {
    content: '';
    display: block;
    position: absolute;
    width: 3px;
    height: calc( 100% + 4px);
    top: -2px;
    background: var(--tertiary-color);
    z-index: 1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.form-button:hover::before,
.form-button:hover::after {
    width: calc( 50% + 2px);
    background: var(--hover-color);
}

.form-button::before {
    left: -2px;
}

.form-button::after {
    right: -2px;
}

.form-button input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: calc( 100% + 6px);
    margin-left: -3px;
    outline: none;
    position: relative;
    height: 54px;
    padding: 0 10px;
    z-index: 2;
    text-transform: uppercase;
    background: none;
}

.form-button.is-white {
    border-color: #ffffff;
    color: #ffffff;
}

.form-button.is-white::before,
.form-button.is-white::after {
    background: #ffffff;
}

.form-button.is-white:hover::before,
.form-button.is-white:hover::after {
    background: var(--hover-color);
}

#main-wrapper {
    position: relative;
    overflow: hidden;
}

[data-aios-staggered-parent=true]:not([data-aios-reveal-mobile=true]) {
    overflow: visible;
}

.parallax-scroll {
    background-attachment: fixed !important;
}

.name-Safari .parallax-scroll,
.is-mobile .parallax-scroll {
    background-attachment: scroll !important;
}

.scroll-to {
    position: absolute;
    left: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.scroll-to:hover {
    opacity: 0.8;
}

.scroll-to::before,
.scroll-to::after {
    content: '';
    display: block;
    width: 1px;
    height: 152px;
    margin: 5px 0 24px;
    background: rgba(255, 255, 255, 0.6);
}

.scroll-to.scroll-down::after {
    display: none;
}

.scroll-to.scroll-up {
    -webkit-transform: scale(-1) translateZ(0);
    transform: scale(-1) translateZ(0);
}

.scroll-to.scroll-up::before {
    display: none;
}

.scroll-to i {
    font-size: 14px;
    margin: 16px 0;
}

.site-padding {
    padding: 0 134px;
}


/* Header : START */

.header {
    position: absolute;
    width: 100%;
    z-index: 1020;
    font-size: 0;
    transition: all 0.35s ease-in-out;
}

.header.is-sticky {
    background: var(--background-color);
}

.default-header {
    padding: 0 0 16px;
}

.fixed-header .header-group-buttons.header-button {
    display: none;
}

.fixed-header-top .header-group-buttons.header-button {
    display: block;
    margin: 0;
}

.fixed-header-top .header-container > .header-button:first-child {
    display: none;
}

.fixed-header-top .header-group-buttons.header-button a::before {
    opacity: 0;
    background: #202020;
}

.fixed-header-top .header-group-buttons.header-button a:hover::before {
    opacity: 0.8;
}

.header-group-buttons.header-button,
.default-header .header-button {
    margin-right: 0;
}

.header-group-buttons.header-button {
    background-image: url(../../images/homepage-alt/banner-bg.jpg);
    background-size: cover;
    background-position: center;
    background-color: #2b6499;
}

.header-group-buttons.header-button a {
    text-align: center;
    display: inline-block;
    line-height: 38px;
    width: auto;
    padding: 0 10px;
    position: relative;
}

.header-group-buttons.header-button a::after {
    content: '';
    width: 1px;
    height: 15px;
    background: #407aaf;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.header-group-buttons.header-button a:first-child {
    padding-left: 20px;
}

.header-group-buttons.header-button a:first-child::after {
    display: none;
}

.default-header .header-group-buttons.header-button a::before {
    opacity: 0;
    background: #202020;
}

.default-header .header-group-buttons.header-button a:hover::before {
    background: #202020;
    opacity: 0.8;
}

.default-header .header-group-buttons.header-button a:hover::after,
.default-header .header-group-buttons.header-button a:hover + a::after {
    display: none;
}

.fixed-header .fixed-header-top {
    display: none;
}

.header-logo {
    position: relative;
    padding-left: 65px;
}

.header-logo a {
    display: inline-block;
}

.header-logo a:last-child {
    display: none;
}

.default-header .header-logo {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    top: 0px;
}

.navigation {
    margin-left: auto;
    margin-right: 45px;
    /* margin-bottom: 30px; */
}

.site-navi li {
    display: block;
    position: relative;
}

.site-navi li a {
    display: block;
    position: relative;
    font-size: 16px;
    font-size: 1vw;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    font-size: 1.1vw;
}

.site-navi > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.125vw;
    /*margin: 0 0.65vw;*/
}

.ip-container .site-navi > li {
    margin: 0 0.625vw;
}


/*.home .site-navi > li:nth-child(2),
.ip-container .site-navi > li:first-child {
  margin-left: 0 !important;
}
*/

.site-navi > li:last-child {
    margin-right: 0 !important;
}

.site-navi > li:first-child {
    display: none;
}

.fixed-header .site-navi > li:first-child {
    display: inline-block;
}

.ip-container .site-navi > li:first-child {
    display: inline-block;
}

.site-navi > li > a::after {
    content: '';
    display: block;
    position: absolute;
    width: calc( 100% + 30px);
    height: 1px;
    max-width: 0;
    bottom: -24px;
    left: -200%;
    right: -200%;
    margin: auto;
    background: var(--hover-color);
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.site-navi > li:hover > a::after {
    max-width: 200%;
}

.site-navi .sub-menu {
    display: block;
    position: absolute;
    width: 100%;
    min-width: 160px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.site-navi .sub-menu li a {
    background: #000000;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: none;
    padding: 10px;
}

.site-navi .sub-menu li:hover > a {
    background: var(--hover-color);
}

.site-navi .sub-menu .sub-menu {
    top: 0;
    margin-left: 100%;
}

.site-navi li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.site-navi > li > .sub-menu {
    left: -150%;
    right: -150%;
    margin: auto;
    padding-top: 26px;
}

.header-button {
    margin-left: 0;
    margin-right: 30px;
    /* margin-bottom: 32px; */
}

.header-button a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*font-size: 16px;*/
    font-size: 1vw;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
    width: 154px;
    height: 38px;
    padding-top: 3px;
}

.name-Safari .header-button a {
    padding-top: 0;
}

.header-button:not(.header-group-buttons) a:last-child {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-button:not(.header-group-buttons) a:last-child::before {
    background: url(../../images/homepage-alt/banner-bg.jpg) no-repeat center center  / cover;
    opacity: 1;
}

.header-button a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 0.7;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.header-button a:hover::before {
    background: var(--hover-color);
    opacity: 1;
}

.header-button a span {
    position: relative;
}

.header-contact {
    margin-left: 0;
    margin-right: 10px;
    /* margin-bottom: 30px; */
    /*margin-top: 5px;*/
}

.header-contact a {
    font: 400 20px/1 var(--alt-font);
    /*font-size: 1vw;*/
    color: #ffffff;
    letter-spacing: 0.15em;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    font-size: 1.1vw;
}

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

.header-menu {
    position: relative;
    padding: 0 38px;
}

.default-header .header-menu {
    top: 16px;
}

.burger-menu {
    position: relative;
    cursor: pointer;
}

.burger-menu div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 58px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.burger-menu div span {
    width: 18px;
    height: 3px;
    background: #ffffff;
    margin-top: 6px;
}

.burger-menu div span:nth-child(1) {
    margin-top: 0;
}

.burger-menu div span:nth-child(2) {
    width: 28px;
}

.burger-menu div i {
    font-size: 22px;
    color: #ffffff;
}

.burger-menu:hover div {
    background: rgba(0, 0, 0, 0.3);
}

.burger-menu em {
    display: block;
    font: 400 12px/1 var(--alt-font);
    color: #ffffff;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
    margin-top: 11px;
}

.fixed-header {
    display: none;
    background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}

.fixed-header .header-logo a:first-child {
    display: none;
}

.fixed-header .header-logo a:last-child {
    display: inline-block;
}

.fixed-header .navigation {
    margin-right: 35px;
}

.fixed-header .site-navi > li {
    margin: 0 .5vw;
}

.fixed-header .site-navi > li > a {
    font-size: 15px;
    font-size: 0.938vw;
    color: #202020;
}

.fixed-header .header-button {
    margin-right: 35px;
}

.fixed-header .header-button a {
    font-size: 15px;
    background-color: #000;
}

.fixed-header .header-button a::before {
    opacity: 1;
}

.fixed-header .header-contact {
    margin-right: 35px;
}

.fixed-header .header-contact a {
    font-size: 18px;
    color: #202020;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.fixed-header .header-contact a:hover {
    color: var(--hover-color);
    ;
}

.fixed-header .header-menu {
    background: url(../../images/site-overlay.jpg) no-repeat center center/cover;
    background-attachment: fixed;
    padding-top: 15px;
    padding-bottom: 10px;
}

.fixed-header .header-menu::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 0.7;
}

.fixed-header .name-Safari .header-menu,
.fixed-header .is-mobile .header-menu {
    background-attachment: scroll;
}


/* Header : END */


/* Side Navigation : START */

.is-side-navi-active {
    overflow: hidden;
}

.is-side-navi-active .burger-menu div {
    background: var(--hover-color);
}

.side-navigation {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1026;
    overflow: auto;
    font-size: 0;
}

.side-navigation-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.side-navigation-inner {
    background: #000000;
    position: relative;
    margin: 0 0 0 auto;
    padding-left: 0;
    width: 90%;
    max-width: 938px;
}

.side-navigation-inner::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.85;
}

.side-navigation-inner .global-overlay {
    height: 100%;
}

.side-navigation-close {
    position: fixed;
    top: 47px;
    right: 38px;
    z-index: 12;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.side-navigation-close:hover {
    opacity: .8;
}

.side-navigation-main {
    position: relative;
    background: url(../../images/side-navi-bg.jpg) #000000 no-repeat center center/cover;
    min-height: 100vh;
    padding: 100px 90px;
}

.side-navigation-main::before,
.side-navigation-main::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.side-navigation-main::before {
    background: var(--background-color);
    opacity: 0.7;
    z-index: 1;
}

.side-navigation-main::after {
    background: url(../../images/side-navi-overlay.png) no-repeat center center/cover;
    z-index: 2;
}

.side-navi-logo-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../../images/logo-mono.png) no-repeat 165% 155%/75.12% auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    opacity: 0.04;
    z-index: 3;
}

.side-navi {
    /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;*/
    display: block;
    columns: 2;
    position: relative;
    padding: 0 12px;
    z-index: 4;
}

.side-navi li {
    display: block;
    position: relative;
}

.side-navi li a {
    display: block;
    position: relative;
    font: 400 30px/1 var(--title-font);
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.side-navi > li > a {
    padding: 3px 3px 3px 0;
}

.side-navi li:hover > a {
    color: var(--hover-color);
}

.side-navi > li {
    width: 50%;
    margin-bottom: 25px;
}

.side-navi > li:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    /*margin-top: -125px;*/
}

.side-navi > li:nth-child(3) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    /*margin-top: -45px;*/
}

.side-navi > li:nth-child(4) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.side-navi > li:nth-child(5) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.side-navi > li:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    /*margin-top: -5px;*/
}


/*.side-navi > li:nth-child(6) ul.sub-menu{
  display: none;
}
*/

.side-navi .sub-menu {
    margin-top: 20px;
}

.side-navi .sub-menu li {
    margin-bottom: 10px;
}

.side-navi .sub-menu li a {
    font: 400 16px/1 var(--body-font);
    color: #a2a2a2;
    letter-spacing: 0.15em;
    text-transform: none;
}

.side-navi .sub-menu li:hover > a {
    color: var(--hover-color);
}

.side-navigation-info {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    /*padding: 52px 3px 0;*/
    padding: 2vh 3px 0;
    margin-top: 10px;
    z-index: 4;
}

.side-navigation-info-left {
    padding-right: 30px;
}

.side-navigation-button {
    position: absolute;
    z-index: 9;
    top: 10px;
    right: 10px;
}

.side-navigation-button 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;
    font: 400 21px/1 var(--title-font);
    color: #ffffff;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
    background: var(--hover-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 208px;
    height: 46px;
    padding-top: 5px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.side-navigation-button a:hover {
    background: var(--secondary-color);
}

.side-navigation-button a span {
    position: relative;
}

.side-navigation-contact a {
    font-size: 24px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.15em;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.side-navigation-contact h2 {
    font: 400 24px/1 var(--body-font);
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    /*margin-bottom: 15px*/
    /*padding: 10px 0;*/
    padding: 0;
    font-size: 2.5vh;
    padding-bottom: 1vh;
}

.side-navigation-contact h2:nth-child(2) {
    padding: 1vh 0 0;
}

.side-navigation-contact h2:nth-child(2) a {
    font-size: 18px;
}

.side-navigation-contact span {
    font: 400 16px/1 var(--body-font);
    color: #a2a2a2;
    letter-spacing: 0.15em;
    text-transform: none;
    display: block;
    line-height: 1.25;
}

.side-navigation-contact span a {
    font: 400 16px/1 var(--body-font);
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: none;
}

.side-navigation-info-bottom {
    /*padding-top: 20px;*/
    padding-top: 2vh;
}

.side-navigation-info > div > .side-navigation-info-bottom:last-child {
    padding-top: 3vh;
}

.side-navigation-info-bottom .side-navigation-contact {
    text-align: center;
}

.side-navigation-info-bottom .side-navigation-contact span a,
.side-navigation-info-bottom .side-navigation-contact span {
    font: 400 13px/1 var(--body-font);
}

.side-navigation-contact a:hover {
    color: var(--hover-color);
}

.side-navigation-smis {
    /*margin-top: 32px;*/
    text-align: center;
}

.side-navigation-smis a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    color: #ffffff;
    margin: 0 7px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.side-navigation-smis a:hover {
    background: var(--hover-color);
}

.side-navigation-smis a:first-child {
    margin-left: 0;
}

.side-navigation-smis a:last-child {
    margin-right: 0;
}

.side-navigation-smis a:hover {
    background: var(--hover-color);
}

.side-navigation-smis a.footer-smi-fb:hover {
    background: #4d6baa;
}

.side-navigation-smis a.footer-smi-tw:hover {
    background: #4fc6f8;
}

.side-navigation-smis a.footer-smi-in:hover {
    background: #0077b5;
}

.side-navigation-smis a.footer-smi-ig:hover {
    /*background: #3f729b;*/
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.side-navigation-smis a.footer-smi-yt:hover {
    background: #cd201f;
}

.side-navigation-smis a.footer-smi-sc:hover {
    background: #fffd01;
}

.side-navigation-smis a.footer-smi-gp:hover {
    background: #da4936;
}

.side-navigation-smis a.footer-smi-yp:hover {
    background: #bf2519;
}


/* Side Navigation : END */


/* Footer : START */

.footer {
    position: relative;
    font-size: 0;
}

.footer-top {
    position: relative;
    padding: 35px 70px 85px;
}

.footer-top::before,
.footer-top::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-top::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.95)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 3;
}

.footer-top::after {
    background: rgba(255, 255, 255, 0.88);
    z-index: 2;
}

.footer-top .global-overlay {
    height: 648px;
    bottom: 0;
}

.footer-top .global-accent {
    top: 182px;
}

.footer-top-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../../images/contact-bg.jpg) #cccccc no-repeat center center/cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: 1;
}

.footer-top-container {
    position: relative;
    background: url(../../images/contact-bg.jpg) #cccccc no-repeat center center/cover;
    padding: 48px 38px;
    z-index: 4;
}

.footer-top-inner {
    background: rgba(255, 255, 255, 0.9);
    padding: 65px 105px 92px;
}

.footer-form {
    position: relative;
    max-width: 750px;
    margin-left: -7px;
}

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

.footer-form .form-input {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 7px;
    margin-bottom: 8px;
}

.footer-form .form-input label {
    position: absolute;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    line-height: 1;
    letter-spacing: 0.15em;
    width: 100%;
    top: 27px;
    padding: 0 14px;
    pointer-events: none;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.footer-form .form-input.hide-label label {
    font-size: 12px;
    font-weight: 400;
    color: var(--hover-color);
    top: 5px;
}

.footer-form .form-input input:not([type="submit"]),
.footer-form .form-input select,
.footer-form .form-input textarea {
    height: 70px;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    line-height: 1;
    letter-spacing: 0.15em;
    border-bottom: 2px solid #b7b7b6;
    background: none;
    padding: 0 14px;
}

.footer-form .form-input select {
    background: url(../../images/caret.png) transparent no-repeat right 12px center;
}

.footer-form .form-input textarea {
    padding-top: 27px;
}

.footer-form .form-input.form-textarea {
    margin-top: 8px;
}

.footer-form .form-lg {
    width: 100%;
}

.footer-form .form-sm {
    /*width: 33.33%;*/
    width: 50%;
}

.footer-form .form-button {
    margin: 30px auto 0;
}

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

.footer-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
}

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


.footer-form .wpcf7-response-output {
    position: absolute;
    width: calc( 100% - 14px);
    left: 0;
    right: 0;
    margin: 5px auto 0 !important;
    font-size: 12px;
    text-align: center;
}

.footer-photo {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 12;
}

.footer-middle {
    position: relative;
    background: var(--background-color);
    padding: 72px 0 88px;
}

.footer-middle .global-overlay {
    height: 100%;
    top: 0;
}

.footer-middle .scroll-to {
    top: 20px;
}

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

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

.footer-contact {
    margin-top: 42px;
    text-align: center;
}

.footer-contact-item {
    margin: 5px 0;
    padding: 0 30px;
    border-left: 1px solid #3b3b3b;
}

.footer-contact-item:first-child {
    border-left: 0;
}

.footer-contact-item a {
    display: block;
    font-size: 21px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 0.15em;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

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

.footer-smis {
    margin-top: 35px;
}

.footer-smis a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-size: 22px;
    color: #ffffff;
    margin: 0 16px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

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

.footer-smis a.footer-smi-fb:hover {
    background: #4d6baa;
}

.footer-smis a.footer-smi-tw:hover {
    background: #4fc6f8;
}

.footer-smis a.footer-smi-in:hover {
    background: #0077b5;
}

.footer-smis a.footer-smi-ig:hover {
    /*background: #3f729b;*/
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.footer-smis a.footer-smi-yt:hover {
    background: #cd201f;
}

.footer-smis a.footer-smi-sc:hover {
    background: #fffd01;
}

.footer-smis a.footer-smi-gp:hover {
    background: #da4936;
}

.footer-smis a.footer-smi-yp:hover {
    background: #bf2519;
}

.footer-smis a:first-child {
    margin-left: 0;
}

.footer-smis a:last-child {
    margin-right: 0;
}

.footer-bottom {
    padding: 48px 0;
}

.footer-bottom .container {
    width: 1300px;
    max-width: 100%;
}

.footer-realtors i {
    font-size: 30px;
    color: #626262;
    margin: 5px 0 5px 10px;
}

.footer-realtors i:first-child {
    margin-left: 0;
}

.footer-realtors img,
.footer-realtors .mls-logo {
    /*margin: 5px 0 5px 40px;*/
    margin: 5px 12px;
    filter: grayscale(1);
}

.footer-realtors img.no-margin-left {
    margin-left: 0;
}

.footer-offices {
    /*margin: 70px 0 30px;*/
    margin: 20px 0;
}

.footer-offices .container > .row:last-child {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-offices .container > .row:last-child .col-md-12.footer-offices-items {
    flex-basis: 100%;
}

.footer-offices  .col-md-12.footer-offices-items .footer-offices-col span {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.footer-offices .footer-offices-title {
    /*margin-bottom: 20px;*/
    margin-bottom: 20px;
}

.footer-offices-title + div {
    margin-bottom: 20px;
}

.footer-offices .footer-offices-title h2 {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.footer-offices .footer-offices-title h2 span {
    display: inline-block;
    padding-top: 10px;
    margin-top: 10px;
    position: relative;
    /*    border-top: 1px solid rgb(1, 83, 158, 1);*/
}

.footer-offices .footer-offices-title h2 span:before {
    content: '';
    width: 100px;
    height: 1px;
    background: rgb(1, 83, 158, 1);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.footer-offices .footer-offices-col {
    margin-bottom: 20px;
}

.footer-offices .footer-offices-col span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}

.footer-offices .footer-offices-col span a {
    color: #a2a2a2;
    transition: all 0.35s ease-in-out;
}

.footer-offices .footer-offices-col span a:hover {
    color: var(--hover-color);
}


/* Footer : END */


/* Get A Quote : START */

.get-a-quote {
    position: fixed;
    bottom: 25px;
    right: 15px;
    z-index: 100;
    cursor: pointer;
}

.get-a-quote-icon img {
    width: 150px;
}

.get-a-quote-form {
    position: absolute;
    width: 390px;
    right: 25px;
    bottom: 80px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.is-active .get-a-quote-form {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/* Get A Quote : END */


/* Mailing List Popup : START */

.aiosp-ref-mailingListPopup .aios-popup-body {
    position: relative;
    max-width: 885px;
    padding: 0 !important;
    background-image: url('../../images/popup/popup-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.aiosp-ref-mailingListPopup .aios-popup-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: .9;
    pointer-events: none;
    z-index: -1;
}

.aiosp-ref-mailingListPopup .aios-popup-body .aiosp-close {
    display: none;
}

.mailing-list-popup-wrapper {
    font-size: 0;
    position: relative;
}

.mailing-list-popup-inner-wrapper {}

.mailing-list-popup-close {
    position: absolute;
    top: 23px;
    right: 29px;
    text-align: center;
    cursor: pointer;
}

.mailing-list-popup-close span {
    display: block;
    width: 58px;
    height: 58px;
    padding: 18px 0;
    border: 1px solid #a5a5a5;
    font-size: 21px;
    color: #202020;
    transition: all .4s ease-in-out;
}

.mailing-list-popup-close:hover span {
    color: #a5a5a5;
}

.mailing-list-popup-close-label {
    font-family: var(--alt-font);
    font-size: 11px;
    font-weight: 400;
    color: #a5a5a5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 10px;
}

.mailing-list-popup-heading {
    text-transform: uppercase;
    text-align: center;
    padding-top: 91px;
}

.mailing-list-popup-heading-line1 {
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 600;
    color: #a5a5a5;
    letter-spacing: 0.36em;
}

.mailing-list-popup-heading-line2 {
    font-family: var(--title-font);
    font-size: 70px;
    font-weight: 400;
    color: #202020;
    letter-spacing: 0.02em;
    margin-top: 15px;
}

.mailing-list-popup-subheading {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    color: #565656;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 645px;
    margin: 24px auto 0;
}

.mailing-list-popup-form-wrapper {
    position: relative;
    max-width: 553px;
    margin: 0 auto;
    padding-bottom: 62px;
}

.mailing-list-popup-form-wrapper .wpcf7-response-output {
    position: absolute;
    width: 100%;
    font-size: 12px;
    text-align: center;
    margin: 0 !important;
}

.mailing-list-popup-form-wrapper span.wpcf7-not-valid-tip {
    font-size: 12px;
    margin: -10px;
}

.mailing-list-popup-form-field {
    margin-top: 20px;
}

.mailing-list-popup-form-field input {
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    border: none;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    letter-spacing: 0.15em;
    padding-left: 12px;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border-bottom: 1px solid #737373;
}

.contact-submit {
    max-width: 165px;
    margin: 57px auto 0;
}

.contact-submit button {
    background: transparent;
}


/* Mailing List Popup : END */

.flex-break {
    flex-basis: 100%;
    height: 0;
}

.ip-container .global-accent {
    display: none;
}

.ip-container .footer-top .global-accent span {
    font-size: 0;
}

.ip-container .footer-photo {
    display: none;
}

.ip-container .footer-form .global-title h2 {
    text-align: center;
}

.ip-container .footer-form {
    margin: auto;
}

.ip-container .footer-top-container,
.ip-container .footer-top-bg {
    background: url(../../images/contact-bg-ip.jpg) #cccccc no-repeat center center/cover;
}

.footer-copyright {
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    letter-spacing: 0.15em;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    padding-bottom: 20px;
    text-align: center;
}

.grecaptcha-badge {
    z-index: 999;
}

iframe#tcWidgetBtn {
    bottom: 15px !important;
    right: 0 !important;
}

.header-contact a i {
    display: none;
}

.post-type-archive-tribe_events .ip-banner canvas {
    background-image: url(https://cdn.agentimagehosting.com/4Ru5vuV6POzMl93jkA5Eg/2021/02/events-banner.jpg) !important;
}

.grecaptcha-badge { visibility: hidden; }

.footer-form .form-input p {
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    margin-top: 20px;
}

.img-cover{
    display: block;
    position: relative;
}
.img-cover > canvas{
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
}
.img-cover > img{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}


body .realtor-page-heading span,
body .lenders-page-heading span,
body .builders-page-heading span,
body .educational-video-heading-sm,
body #content .archive-title span,
body .ip-comm-top-content-heading-text div:first-child,
body .ip-comm-association-content-heading {
    color: #949494;
}

body .ip-itk-date {
    color: #767676;
}

body .videos-wocas-wrapper,
body .ip-comm-about-content {
    background-color: #000;
}

body .builders-page-content-black {
    background-color: #000;
    z-index: 1;
}

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

@media only screen and (min-width: 992px) {
    .side-navigation-main {
        padding: 12.5vh 145px 12.5vh 30px;
    }
    .side-navigation-button .header-button {
        margin: 0;
    }
    .side-navigation-button a {
        width: auto;
        height: auto;
        padding: 1vh;
        /*font-size: 3vh;*/
        font-size: 1.5vh;
        font-size: 1vw;
        text-align: center;
        display: inline-block;
        line-height: 38px;
        width: auto;
        padding: 0 10px;
        position: relative;
        border: 0 !important;
        background: transparent;
    }
    .side-navigation-button .header-group-buttons.header-button a::before {
        opacity: 0;
        background: #202020;
    }
    .side-navigation-button .header-group-buttons.header-button a:hover::before {
        opacity: 0.8;
        background: #202020;
    }
    .side-navigation-button a:hover {
        background: transparent;
    }
    .side-navi > li {
        margin-bottom: 4vh;
    }
    .side-navi > li > a {
        /*font-size: 3vh;*/
        font-size: 2.7vh;
    }
    .side-navi .sub-menu li a {
        font-size: 2vh;
        /*font-size: 1.7vh;*/
    }
}

@media only screen and (max-width: 1560px) {
    /* Header : START */
    .site-navi > li {
        /*margin: 0 8px;*/
    }
    /* Header : END */
    /* Footer : START */
    .footer-contact-item {
        padding: 0 20px;
    }
/*
    .footer-contact-item a {
        font-size: 16px;
    }
*/
    /* Footer : END */
}

@media only screen and (max-width: 1500px) {
    /* Header : START */
    .header-logo {
        width: 350px;
        /*padding-left: 45px;*/
    }
    .navigation {
        margin-right: 30px;
    }
    .fixed-header .site-navi > li {
        /*margin: 0 12px;*/
    }
    .fixed-header .site-navi > li {
        /*margin: 0 8px;*/
    }
    .fixed-header .site-navi > li {
        margin: 0 8px;
    }
    .fixed-header .navigation {
        margin-right: 10px;
    }

    .fixed-header .header-button {
        margin-right: 10px;
    }

    .fixed-header .header-contact a, .fixed-header .header-button a {
        font-size: 15px;
    }

    .fixed-header .header-button a {
        width: 120px;
    }

    .fixed-header .header-button {
        margin-right: 5px;
    }

    .fixed-header .header-contact{
        margin-right: 10px;
    }
    /* Header : END */
}

@media only screen and (max-width: 1440px) {
    /* Header : START */
    .header-logo {
        /*padding-left: 20px;*/
    }
    .navigation {
        margin-right: 25px;
    }
    .site-navi > li {
        /*margin: 0 10px;*/
    }
    .header-button {
        margin-right: 20px;
    }
    .header-contact {
        margin-right: 0;
    }
    .fixed-header .site-navi > li {
        /*margin: 0 8px;*/
    }
    .fixed-header .site-navi > li {
        margin: 0 3px;
    }
    .fixed-header .navigation {
        margin-right: 10px;
    }

    .fixed-header .header-button {
        margin-right: 10px;
    }

    .fixed-header .header-contact a, .fixed-header .header-button a {
        font-size: 13px;
    }

    .fixed-header .header-button a {
        width: 120px;
    }

    .fixed-header .header-button {
        margin-right: 5px;
    }

    .fixed-header .header-contact{
        margin-right: 10px;
    }
    /* Header : END */
    /* Footer : START */
    .footer-form {
        max-width: 52%;
    }
    /* Footer : END */
    .footer-photo {
        max-width: 660px;
    }
    .global-title h1,
    .global-title h2,
    #content .global-title h1,
    #content .global-title h2 {
        font: 400 80px/0.86 var(--title-font);
    }
    .footer-realtors img,
    .footer-realtors .mls-logo {
        margin: 0 10px;
    }
    .footer-realtors img {
        max-width: 120px;
    }
    .footer-realtors i {
        font-size: 25px;
    }
}

@media only screen and (max-width: 1400px) {
    /* Header : START */
    .header-logo {
        width: 340px;
    }
    /* Header : END */
    /* Footer : START */
    .footer-photo {
        width: 530px;
    }
    /* Footer : END */
}

@media only screen and (max-width: 1366px) {
    .global-title h1,
    .global-title h2,
    #content .global-title h1,
    #content .global-title h2 {
        font-size: 80px;
    }
    /* Header : START */
    .header-logo {
        width: 340px;
        /*padding-left: 15px;*/
    }
    .navigation {
        margin-right: 10px;
    }
    .site-navi > li {
        /*margin: 0 3px;*/
    }
    .header-button {
        margin-right: 10px;
    }
    /* Header : END */
    /* Footer : START */
    .footer-middle .global-overlay {        
        width: 110px;
    }

    .footer-top-inner {
        padding-left: 55px;
        padding-right: 55px;
    }
    .footer-form {
        max-width: 550px;
    }
    .footer-photo {
        width: 500px;
    }
    .footer-contact-item {
        padding: 0 8px;
    }
    .footer-contact-item a {
        font-size: 15px;
    }
    /* Footer : END */
}

@media only screen and (max-width: 1199px) {
    .global-title h1,
    .global-title h2,
    #content .global-title h1,
    #content .global-title h2 {
        font-size: 70px;
    }
    .global-overlay {
        width: 80px;
    }
    .global-overlay span {
        left: 80px;
    }
    .global-overlay.right span {
        right: 80px;
    }
    .global-accent {
        left: 25px;
    }
    .scroll-to {
        left: 35px;
    }
    .site-padding {
        padding: 0 80px;
    }

    .side-navigation-button {
        right: 88px;
    }
    .side-navigation-close {
        right: 10px;
    }
    .side-navigation-inner.site-padding {
        padding: 0;
    }

    /* Header : START */
    .header-logo {
        width: 300px;
        /*padding-left: 10px;*/
    }
    .site-navi > li {
        /*margin: 0 2px;*/
    }
    .fixed-header .site-navi > li {
        margin: 0 .2vw;
    }
    .header-button a {
        font-size: 14px;
        width: 140px;
        padding-top: 0;
    }
    .header-contact a {
        font-size: 15px;
    }
    .header-menu {
        padding: 0 11px;
    }
    .fixed-header .header-button a {
        font-size: 14px;
        padding-top: 0;
    }
    .fixed-header .header-contact {
        margin-right: 10px;
    }
    .fixed-header .header-contact a {
        font-size: 15px;
    }
    /* Header : END */
    /* Footer : START */
    .footer-middle {
        padding-left: 80px;
    }
    .footer-top {
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-top-container {
        padding-left: 28px;
        padding-right: 28px;
    }
    .footer-top-inner {
        padding-left: 25px;
        padding-right: 25px;
    }
    .footer-form {
        max-width: 500px;
    }
    .footer-photo {
        width: 450px;
    }
    .footer-realtors img {
        max-width: 100px;
        margin: 0 5px;
    }
    .footer-offices .footer-offices-col span {
        font-size: 12px;
    }
    /* Footer : END */
    .container {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .footer-offices-items {
        padding: 0 5px;
    }
}

@media only screen and (max-width: 991px) {
    .side-navigation-inner {
        width: 100%;
        max-width: 100%;
    }
    .global-overlay {
        width: 44px;
    }
    .global-overlay::before {
        height: calc( 100% - 44px);
    }
    .global-overlay::after {
        height: 44px;
    }
    .global-overlay span {
        height: 44px;
        left: 44px;
    }
    .global-overlay.right span {
        right: 44px;
    }
    .global-accent {
        display: none;
    }
    .global-button,
    .global-button::before,
    .global-button::after {
        transition: none;
    }
    .scroll-top {
        display: none;
    }
    .site-padding {
        padding: 0 44px;
    }
    #main-wrapper {
        /*    padding-top: 85px;*/
    }
    /* Header : START */
    .header {
        position: fixed;
      /* width: 100%;
      top: 0;
      background: #ffffff; */
        padding: 30px 15px;
    }
    .header.is-sticky {
        padding: 15px;
    }
    .default-header {
        padding: 0;
    }
    .default-header .header-logo {
        top: 0;
        padding-left: 0;
        flex-grow: 1;
    }
    .header-logo {
        width: 340px;
    }
    .header-logo a:first-child {
        display: none;
    }
    .header-logo a:last-child {
        display: block;
    }
    .header-button {
        /*    margin-right: 12px;*/
        display: none;
    }
    .header-button a {
        width: 120px;
        height: 32px;
    }
    .default-header .header-menu {
        top: 0;
        padding-right: 0;
    }
    .header-menu::before {
        /*
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--primary-color);
      opacity: 0.7;
  */
    }
    .burger-menu div {
        width: 54px;
        height: 48px;
    }
    .burger-menu em {
        margin-top: 7px;
    }
    /* Header : END */
    /* Side Navi : START */
    .side-navi {
        columns: 1;
    }
    .side-navigation-inner {
        padding: 0 !important;
    }
    .side-navigation-inner .global-overlay {
        display: none;
    }
    .side-navigation-button {
        width: calc( 100% - 10px );
    }
    /*.side-navigation-main {
        padding: 20px 30px;
    }*/
    .side-navi {
        text-align: center;
    }
    .side-navi > li {
        width: 100%;
        -webkit-box-ordinal-group: inherit !important;
        -ms-flex-order: inherit !important;
        order: inherit !important;
    }
    /* Side Navi : END */
    /* Footer : START */
    .footer-top {
        padding: 0;
    }
    .footer-top .global-overlay {
        display: none;
    }
    .footer-top-inner {
        padding-bottom: 65px;
    }
    .footer-form {
        margin: auto;
    }
    .footer-form .global-title {
        text-align: center;
    }
    .footer-form .form-sm {
        width: 100%;
    }
    .footer-photo {
        max-width: 95%;
    }
    .home .footer-photo {
        opacity: 0;
        pointer-events: none;
    }
    .footer-middle {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-middle .global-overlay {
        display: none;
    }
    .footer-contact-item {
        border-left: 0;
    }
    .footer-realtors .mls-logo,
    .footer-realtors img {
        margin: 10px !important;
    }
    .footer-offices .container > .row:last-child {
        display: block;
    }
    /* Footer : END */
    .flex-break {
        margin: 0 !important;
    }
    .side-navi > li:nth-child(2),
    .side-navi > li:nth-child(3),
    .side-navi > li:nth-child(6) {
        margin-top: 0;
    }
    .side-navigation-close {
        /*top: 65px;*/
        top: 20px;
        right: 12px;
    }
    .aiosp-ref-mailingListPopup .aios-popup-body {
        width: 95% !important;
    }
    .side-navi > li:nth-child(6) ul.sub-menu {
        display: block;
    }
    .side-navigation-button {
        position: relative;
        z-index: 9;
        top: 0;
        right: 0;
        margin-bottom: 30px;
    }
    .side-navigation-button .header-container {
        display: flex;
        width: calc(100% - 46px);
        padding: 0;
    }
    .side-navigation-button .header-container > .header-button {
        width: 25%;
        display: flex;
        margin: 0;
    }
    
    .side-navigation-button .header-container > .header-group-buttons.header-button {
        width: 75%;
    }
    .side-navigation-button .header-container > .header-button a {
        width: 100%;
        line-height: 1;
        padding-top: 2px;
    }
    .side-navigation-button .header-container > .header-group-buttons.header-button a {
        width: 100%;
        background: transparent;
        line-height: 1;
        padding-top: 9px !important;
    }
    .side-navigation-button .header-container > .header-group-buttons.header-button a::before {
        background: transparent;
        opacity: 0;
    }
    .side-navigation-button .header-container > .header-group-buttons.header-button a span {
        display: inline-block;
        vertical-align: middle;
    }
    .side-navigation-button .header-container > .header-group-buttons.header-button a:hover::before {
        opacity: 0.8;
        background: #202020;
    }
    .side-navigation-button .header-group-buttons.header-button a:first-child {
        padding: 0;
    }
    .side-navigation-info-left {
        padding-right: 0;
    }
    .side-navigation-smis a {
        margin-left: 3px;
        margin-right: 3px;
    }
    /*header banner*/
    /*  .default-header > .textwidget > .header-container > .header-button {
      display: block;
  }

  .header{
    padding: 0;
  }

  .default-header > .textwidget > .header-container > .header-button:first-child {
      display: block;
      width: 100%;
  }

  .default-header > .textwidget > .header-container {
      display: block !important;
      width: 100%;
  }

  .default-header > .textwidget > .header-container > .header-button:first-child a {
      width: 100%;
  }

  .default-header > .textwidget > .header-container > .header-group-buttons.header-button a {
      width: 50%;
      text-align: center;
      font-size: 12px;
      border: 1px solid #407aaf;
  }
  .default-header > .textwidget > .header-container > .header-group-buttons.header-button > a:nth-of-type(1),
  .default-header > .textwidget > .header-container > .header-group-buttons.header-button > a:nth-of-type(2){
    border-bottom: 0;
    border-top: 0;
  }
  .default-header > .textwidget > .header-container > .header-group-buttons.header-button > a:nth-of-type(3),
  .default-header > .textwidget > .header-container > .header-group-buttons.header-button > a:nth-of-type(4){
    border-bottom: 0;
  }
  .default-header > .textwidget > .header-container > .header-group-buttons.header-button > a:nth-of-type(odd){
    border-left: 0;
  }
  .default-header > .textwidget > .header-container > .header-group-buttons.header-button > a:nth-of-type(even){
    border-right: 0;
  }

  .default-header > .textwidget > .header-container > .header-group-buttons.header-button a::after{
    display: none;
  }*/
    .header-contact a i {
        display: block;
        font-size: 20px;
        margin-bottom: 15px;
        margin-right: 15px;
    }
    
    .header-container {
        justify-content: flex-start !important;
    }

    .side-navigation-main {
        padding: 20px 15px 100px;
    }
}

@media only screen and (max-width: 767px) {
    .mailing-list-popup-inner-wrapper {
        padding: 15px;
    }
    .mailing-list-popup-heading-line2 {
        font-size: 53px;
    }
    /*.side-navigation-main {
        padding: 20px 30px 100px;
    }*/
    .footer-copyright {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 480px) {
    .global-title h1,
    #content .global-title h1 {
        font-size: 33px;
    }
    .global-title h2,
    #content .global-title h2 {
        font-size: 33px;
    }
    .global-title em,
    #content .global-title em {
        font-size: 16px;
    }
    .global-overlay {
        width: 20px;
    }
    .global-overlay span {
        left: 20px;
    }
    .global-overlay.right span {
        right: 20px;
    }
    .site-padding {
        padding: 0 20px;
    }

    /*.side-navigation-button {
        max-width: 280px;
    }*/
    .side-navigation-button .header-container > .header-group-buttons.header-button a {
        width: 33.33%;
        font-size: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .side-navigation-button .header-container > .header-group-buttons.header-button a {
        padding-top: 11px !important;
    }
    .side-navigation-button {
        width: 100%;
    }
    .header-button:not(.header-group-buttons) a:last-child {
        display: flex;
    }
    .header-button.header-group-buttons a:first-child {
        display: none;
    }

    /* Header : START */
    /*.header {
        padding: 20px 10px;
    }*/
    .default-header .header-logo {
        padding-right: 15px;
    }
    .default-header .header-menu {
        padding-left: 0;
    }
    /* Header : END */
    /* Footer : START */
    .footer-bottom {
        padding: 48px 0 70px;
    }
    .footer-realtors .mls-logo,
    .footer-realtors img {
        margin: 15px !important;
    }
    .footer-contact .di-flex {
        flex-wrap: wrap;
    }
    .footer-smis .di-flex {
        flex-flow: wrap;
    }
    .footer-smis a {
        width: auto;
        height: auto;
        background: transparent;
        margin: 0 12px 15px !important;
    }
    .footer-smis a:hover {
        background: transparent !important;
        color: var(--hover-color);
    }
    .footer-smis a.footer-smi-fb:hover {
        color: #4d6baa;
    }
    .footer-smis a.footer-smi-tw:hover {
        color: #4fc6f8;
    }
    .footer-smis a.footer-smi-in:hover {
        color: #0077b5;
    }
    .footer-smis a.footer-smi-ig:hover {
        color: #3f729b;
    }
    .footer-smis a.footer-smi-yt:hover {
        color: #cd201f;
    }
    .footer-smis a.footer-smi-sc:hover {
        color: #fffd01;
    }
    .footer-smis a.footer-smi-gp:hover {
        color: #da4936;
    }
    .footer-smis a.footer-smi-sc:hover {
        color: #bf2519;
    }
    /* Footer : END */
    /* Get A Quote : START */
    .get-a-quote-form {
        max-width: 100vw;
        right: -35px;
    }
    /* Get A Quote : END */
    .mailing-list-popup-close {
        top: 15px;
        right: 15px;
    }
    .mailing-list-popup-heading-line2 {
        font-size: 35px;
    }
    .mailing-list-popup-subheading {
        font-size: 16px;
    }
    
    .side-navigation-button .header-container {
        display: block !important;
        width: calc(100% - 60px);
    }
    
    .side-navigation-button .header-container > .header-button, .side-navigation-button .header-container > .header-group-buttons.header-button {
        width: 100%;
        display: flex;
        margin: 0;
    }
}


/*# sourceMappingURL=global.css.map */