:root {
    /** Font default */
    --font-family-default: 'Montserrat', sans-serif;
    --font-family-title: 'Montserrat', sans-serif;
    --font-size-default: 14px;
    --font-size-title: 48px;
    --font-color-default: #4e4e4e;
    --font-color-title: #2c2c2c;
    /** Use for input, button, and any other element */
    --primary: #191f2f;
    --secondary: #eddbd9;
    --accent-light: #5b6b8c;
    --accent-dark: #2f3847;
    --accent-pink: #a16d5f;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: all 0.3s ease-in-out;
}

/* Global */
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #ffffff;
    color: var(--font-color-default);
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

a, a:hover, a:link, a:active, a:focus {
    color: var(--font-color-default);
    outline: none;
    text-decoration: none;
}

.slick-slide, .slick-slide *, .slick-slide a {
    outline: none;
}

.site-easing, #header_wrap a, #burger_nav li a, #footer_wrap a {
    -webkit-transition: var(--default-transition);
    -moz-transition: var(--default-transition);
    -ms-transition: var(--default-transition);
    -o-transition: var(--default-transition);
    transition: var(--default-transition);
}

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

.site_section {
    position: relative;
    z-index: 1;
}

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

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

.safari-true .fixed-bg canvas,
.mobile .fixed-bg canvas {
    background-attachment: scroll;
}

.non-fixed-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-size: 0;
}

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

.site-inner-container {
    position: relative;
    z-index: 3;
    max-width: 1420px;
    margin: 0 auto;
}

.canvas-img {
    position: relative;
}

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

.canvas-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.filter-white {
    filter: brightness(0) invert(1);
}

.gradient-text {
    background: #EDDBD9;
    background: linear-gradient(to right, #EDDBD9 0%, #EDDBD9 77%, #A16D5F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GLOBAL SITE TITLE */


.global-title-wrap {
    display: block;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.global-title-widget {
    text-transform: uppercase;
    color: #383838;
    position: relative;
    font-weight: 600;
    display: inline-block;
    font-size: 72px;
    line-height: 1;
    letter-spacing: 0.02em;
    font-family: var(--font-family-title);
}


.ftr-form-cont .global-title-wrap {
    margin-bottom: 0;
}

.ftr-form-cont .global-title-widget {
    color: #fff;
}

.ftr-form-cont .global-title-widget:before {
    display: none;
}


.global-title-wrap span {
    display: block;
    font-size: 24px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    font-weight: 400;
    color: #003263;
    position: relative;
    text-align: center;
    padding-bottom: 10px;

}

/* GLOBAL SITE BUTTON */

.global-button {
    display: flex;
    width: 100%;
    max-width: 230px;
    line-height: 60px;
    height: 60px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin: 30px auto 0;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    padding: 0;
    font-size: 0;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background: #326c2d;
}


.global-button::before {
    position: absolute;
    background: #003263;
    width: 10px;
    height: 100%;
    z-index: 2;
    left: 0;
    content: '';
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.global-button:hover:before {
    width: 95%;
}

.global-button span {
    color: #fff;
    font-size: 14px;
    text-transform: capitalize;
    position: relative;
    display: block;
    z-index: 3;
    letter-spacing: 0.06em;
    font-weight: 400;
    text-align: left;
    padding-left: 40px;
}


.global-button:hover span {
    color: #fff;

}

.r-more {
    display: flex;
    justify-content: center;
    position: relative;
    flex-flow: row wrap;
    margin-top: 20px;
}

.r-more a:nth-child(2) {
    margin-left: 20px;
}


/* HEADER */
#header-wrap {
    width: 100%;
    position: fixed;
    z-index: 1011;
    top: 0;
    left: 0;
    font-size: 0;
    transition: all 0.3s ease-in-out;
    text-align: center;

}

.main-header {
    width: 100%;
    z-index: 100;
    margin: 0 auto;
    position: absolute;
    height: auto;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    padding: 20px 0;
    background: #fff;
}

.custom-container {
    max-width: 1424px;
    padding: 0 30px;
}

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


/* Header Logo */

.hdr-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}

.header .container-fluid .row {
    display: flex;
    align-items: center;
}

.hdr-logo a {
    font-size: 48px;
    position: relative;
    text-transform: uppercase;
    color: #000000;
    font-family: var(--font-family-title);
    padding: 0 10px;

}

.hdr-logo a:nth-child(1) {
    border-right: 1px solid #000;
}


/* NAVIGATION */

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

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

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

#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}

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

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

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

#fixednav li {
    position: relative;
    display: inline-block;

}

#fixednav li:nth-child(1) {
    margin-left: 0;
    border-left: none;
}

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

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

#fixednav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}

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

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

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

#nav {
    display: block;
    font-size: 0;
}

#nav li:nth-child(1) {
    margin-left: 0;
}

#nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0b4008;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#nav a:hover {
    color: #111;
}

#nav li a:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}

#nav li:hover a:after {

    width: 100%;
    left: 0;

}

#nav li {
    position: relative;
}

#nav > li {

    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    position: relative;

}


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

#nav > li:hover > a {
    color: #111;
}


/* Sub Menu */


#nav .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #003263;
}

#nav .sub-menu a:hover {
    background: #0b4008;
    color: #fff;
}

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

#nav li:hover > .sub-menu {
    display: block;
}

#nav .sub-menu li {
    position: relative;
    display: block;
    padding: 0;
    margin: 1px 0 0;
    border-left: none;
}

#nav .sub-menu li:first-child {
    padding: 0 0 0 0;
}

#nav .sub-menu li a:after {
    display: none;
}



/* Burger Menu */

.slidenavigation {
    vertical-align: middle;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 50px;
}

.slidenavigation em {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    font-style: normal;
    letter-spacing: 0.15em;
    margin-right: 8px;

}

.burger-menu-icon {
    width: 30px;
    height: 15px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.burger-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    right: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    margin: 0 auto;
}

.burger-menu-icon span:nth-child(1) {
    width: 50% !important;
    left: unset;
}

.burger-menu-icon span:nth-child(2) {
    top: 6px;
    width: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.burger-menu-icon span:nth-child(3) {
    bottom: 0;
    width: 50% !important;
    right: unset;
}

.burger-menu-icon:hover span {
    background: #fff;
    width: 100% !important;
}

/** Connect Area **/

body.show_menu {
    overflow: hidden;
}

.close-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: -1;
}

.connect-content {
    width: 100%;
    max-width: 700px;
    height: 100%;
    background: #1c1c1c;
    position: fixed;
    right: -2000px;
    top: 0;
    z-index: 1020;
    opacity: 1;
    text-align: left;
    padding: 80px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    overflow: auto;
}


.connect-content.active {
    opacity: 1;
    right: 0;
}

.connect-content .close-bttn {

    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 90px;
    top: 80px;
    cursor: pointer;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    text-align: center;
    margin: 0 auto;
    color: #c3c3c3;
    z-index: 9;
    font-size: 20px;

}

.connect-content .close-bttn:hover {
    color: #326c2d;

}


/*** Slide Nav ***/

.slide-navi {
    transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    position: relative;
    opacity: 0;
    padding: 80px 0;
}

.active .slide-navi {
    right: 0px;
    opacity: 1;

}

#slide-nav {
    display: block;
    /*padding-top: 200px;*/
    text-align: left;
}

#slide-nav li {
    display: block;
    margin: 0 auto 15px;
    position: relative;
}

#slide-nav li a {
    color: #fff;
    font-size: 22px;
    display: block;
    margin: 0 0 50px;
    outline: none;
    text-decoration: none;
    padding: 0;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    position: relative;

}

#slide-nav li a:hover {
    color: #326c2d;
}

#slide-nav .sub-menu {
    left: 0;
    z-index: 9;
    background: none;
    color: #fff;
    text-align: left;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: -40px;
    position: absolute;
}

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

#slide-nav .sub-menu a {
    padding: 0;
    color: #fff;
    /*background: #222222;*/
}

#slide-nav .sub-menu li {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

#slide-nav .sub-menu li a {
    /* width: 100%; */
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    border-left: none;
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    margin: 5px 0 4px 15px;
    display: inline-block;
}

#slide-nav .sub-menu li a:after {
    display: none;
}

#slide-nav .sub-menu li a:hover {
    color: #ccc;
    /*background: rgba(34, 34, 34, 0.8);*/
}

#slide-nav .sub-menu .sub-menu {
    margin-left: 30px;
    top: 0;
}

.ftr-info-flex.slide-info {
    justify-content: flex-start;
    padding-top: 50px;
    border-top: 1px solid #4e4e4e;
}

.ftr-info-flex.slide-info a {
    color: #fff;
    font-size: 14px;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}

.ftr-info-flex.slide-info a:hover {
    color: #326c2d;
}


.ftr-info-flex.slide-info > span:nth-child(1) {
    margin-left: 0;
}


/***Header Short***/

.fixed-header {
    background: #fff;
    position: fixed;
    z-index: 101;
    width: 100%;
    left: 0;
    top: -100px;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
    padding: 20px 0;
}

.fixed-header.active {
    top: 0;
}


.fixed-header .hdr-logo .ai-font-compass {
    font-size: 18px;
    margin-left: 15px;
}

.fixed-header .hdr-info-right,
.fixed-header .slidenavigation {
    color: #fff;
}

.fixed-header .burger-menu-icon span {
    background-color: #fff;
}


/*** Fixed Nav ***/

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

.navigation {
    display: inline-block;
    position: relative;
}


#fixednav {
    display: block;
    font-size: 0;
}

#fixednav a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#fixednav a:hover {
    color: #b89957;
}

#fixednav li a:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #326c2d;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#fixednav li:hover a:after {

    width: 100%;
    left: 0;

}

#fixednav li {
    position: relative;

}

#fixednav > li {

    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;

}

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

#fixednav > li:first-child:before {
    display: none;
}

#fixednav > li:hover > a {
    color: #111;
}


/* Sub Menu */
#fixednav .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    background: #003263;
}

#fixednav .sub-menu a:hover {
    background: #043668;
    color: #fff;
}

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

#fixednav li:hover > .sub-menu {
    display: block;
}

#fixednav .sub-menu li {
    position: relative;
    display: block;
    padding: 0;
    margin: 1px 0 0;
    border-left: none;
}

#fixednav .sub-menu li:first-child {
    padding: 0 0 0 0;
}

#fixednav .sub-menu li a:after {
    display: none;
}

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



/*header burgermenu*/

.hdr-info-right {
    display: flex;
    align-items: center;
    color: #fff;
    padding-left: 110px;
}

.hdr-info-right a {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.hdr-info-right a:hover {
    color: #326c2d;
}


.hdr-info-right div.info span:last-child {
    padding: 0 15px;
    border-left: 1px solid #ccc;
    margin-left: 10px;
}




/*** Footer ***/


#footer-wrap {
    font-size: 11px;
    font-weight: 400;
    width: 100%;
    padding: 50px 0 70px;
    text-align: center;
    color: #8c8c8c;
    position: relative;
    z-index: 2;
    background: #000;
}

#ftr-section {
    position: relative;
    background: #fff;
    z-index: 1;
    padding: 90px 54px 100px;
}

.footer-contact-form {
    position: relative;
    padding-left: 60px;
    width: 73%;
}

.footer-form {
    width: 100%;
    max-width: 850px;
    margin: 0;
    padding: 60px;
    border-top: 0;
    font-size: 0;
    position: relative;
    z-index: 2;
    border: 1px solid #003263;
}

.footer-contact-form .global-title-wrap span,
.footer-contact-form .global-title-wrap {
    text-align: left;

}

.footer-contact-form .global-title-wrap span {
    line-height: 48px;
}

.form-main-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-form-img {
    position: relative;
    display: block;
}

.contact-form-img::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #016811;
    position: absolute;
    top: -30px;
    left: -30px;
}

.contact-form-img img {
    position: relative;
    z-index: 5;
    margin: 0 auto;
}

.form-bg.fixed-bg {
    z-index: -1;
}

.title-text {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.title-text p {
    display: block;
    color: #585858;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

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

.footer-form-wrap .title-wrap {
    text-align: left;
}

.footer-form-wrap .title-wrap .title-widget {
    font-size: 40px;
    color: #0c2a3c;
    font-weight: 400;
}

.form-field-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    position: relative;
    justify-content: center;
}

.form-field-long {
    width: 100%;
    margin-bottom: 10px;
}

.form-field-short {
    width: 49.90%;
    display: inline-block;
    vertical-align: top;
    margin-left: 2%;
    margin-bottom: 10px;
}

.form-field-short:first-child {
    margin-left: 0;
}

.form-field-short input,
.form-field-long input,
.form-field-wrap textarea {
    width: 100%;
    height: 50px;
    padding: 0;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    border: none;
    border-bottom: 1px solid #1c1c1c;
    background-color: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;

}


.form-field-wrap textarea {
    height: 100px;
    padding-top: 20px;
    resize: none;
}


.footer-form .form-submit {
    max-width: 200px;
    width: 100%;
    height: 60px;
    position: relative;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0;
    left: 0;
    right: 0;
    background: #326c2d;
}

.footer-form .form-submit input[type="submit"] {
    width: 100%;
    ;
    height: 100%;
    position: relative;
    z-index: 4;
    top: 0;
    left: 0;
    padding: 0;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: #fff;
    text-transform: uppercase;
    border: none;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 400;

    text-align: left;
    padding-left: 34px;

}

.footer-form .form-submit::before {
    position: absolute;
    background: #003263;
    width: 10px;
    height: 100%;
    z-index: 3;
    left: 0;
    content: '';
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.footer-form .form-submit:hover:before {
    width: 95%;
}

.footer-form .ajax-loader, .footer-form .wpcf7-spinner {
    position: absolute;
    left: 100%;
    right: 0;
    bottom: 0;
    margin: 0 0 0 10px !important;
}

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

.footer-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
    width: auto;
    max-width: 100%;
    font-size: 11px;
    position: absolute;
    top: 10px;
}

.footer-form div.wpcf7-response-output,
.footer-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    left: 0;
    right: 0;
    margin: 15px auto 0;
    color: #000;
    font-size: 12px;
    text-align: center;
    bottom: auto;
    top: 100%;
    padding: 0.5em 1em;
}

.footer-form p {
    position: relative;
    display: block;
    font-size: 14px;
    padding: 10px 0;
    font-weight: 700;
    margin: 10px 0 0;
}

/*** Footer Contact Info ***/


.footer-contact-wrap {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.footer-contact-wrap a.site-name img {
    margin: 0 auto 20px;
}


.footer-contact-wrap a {
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    letter-spacing: 0.06em;
}

.footer-contact-wrap span.ai-font-facebook {
    font-size: 18px;
}

.footer-contact-wrap a:hover {
    color: #326c2d;
}

.ftr-info-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}


.ftr-info-flex > span {
    margin: 8px 20px 20px;
    line-height: 22px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}

.ftr-info-flex i {
    display: block;
    font-size: 12px;
    color: #fff;
    margin-right: 14px;
}

.ftr-info-flex em.ai-font-location-c {
    font-size: 17px;
    top: 3px;
}

.ftr-smi {
    display: block;
}

.ftr-smi a {
    margin: 0 10px;
    font-size: 20px;
}




.top-nav {
    position: relative;
    padding: 0px 0 50px;
    border-top: 1px solid rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-smi-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    display: none;
}

.footer-bottom {
    position: relative;
    display: block;
    z-index: 3;
    margin: 0 auto;
}

.footer-dis {
    display: block;
    font-size: 11px;
    color: #8c8c8c;
    line-height: 15px;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding-bottom: 25px;
}

.footer-dis a {
    color: #8c8c8c;
}

.footer-dis a:hover {
    color: #326c2d;
}

.footer-dis p {
    display: block;
    margin: 10px 0;
}


.footer li {
    display: inline-block;
    padding: 0 20px;
    line-height: 10px;
    text-transform: uppercase;
}

.footer li a {
    color: #fff;
    font-size: 15px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    font-weight: 400;
    letter-spacing: 0.01em;
}


.footer li a:hover {
    color: #326c2d;
}

.copy-wrap {
    display: block;
    align-items: center;
    margin-top: 15px;
}


.footer .copyright {
    color: #fff;
    padding: 20px 0 0;
    letter-spacing: 0.035em;
    line-height: 26px;
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;

}

.footer .copyright span {
    text-transform: uppercase;
    /*color: #326c2d;*/
}

.copyright a {
    color: #8c8c8c;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}


.copyright a:hover {
    color: #326c2d;
}

.ftr-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.ftr-logo a:nth-child(1) {
    border-right: 1px solid #fff;
}

.ftr-logo a:nth-child(1) img {
    filter: invert(1);
}

.ftr-logo a img {
    padding: 0px 20px;
    width: auto;
    max-height: 50px;

}

.ftr-logos {
    font-size: 20px;
    color: #8c8c8c;
    margin: 20px 0 0;
}

.ftr-logos span {
    margin: 0 5px;
}

.copyright-wrapp {
    margin: 0 auto;
}

.ftr-bg.fixed-bg {
    z-index: -1;
    filter: grayscale(1);
    opacity: 0.1;
}

/* Global */

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
    position: relative;
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

#content .entry a:hover {
    color: var(--accent-light);
}

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

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

button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute !important;
    top: 20% !important;
    left: 20% !important;
    font-size: 12px !important;
    padding: 0.2em 0.8em !important;
    width: auto !important;
}

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
    color: #383838;
    font-size: 72px;
    font-weight: 600;
    font-family: var(--font-family-title);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

#content .archive-subtitle {
    font-size: 25px;
}

/*center text vertically*/

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

#content .custom-category .archive-thumbnail {
    width: 55%;
}

#content .custom-category .archive-content.archive-has-thumbnail {
    width: 40%;
}

.custom-category h3 {
    margin-bottom: 0 !important;
}

.custom-category ul {
    margin: 0 !important;
}

.custom-category ul li {
    list-style-type: none;
}

.custom-category ul li a {
    text-decoration: underline;
    font-weight: 600;
}

.ipvideo-list {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 10px 0;

}

.ipvideo-list a {
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.ipvideo-list a .play-bttn {

    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.37);

}

.ipvideo-list a:hover .play-bttn {
    background: rgba(0, 0, 0, 0.6);
}

.ipvideo-list a .play-bttn > div {
    width: 98px;
    display: block;
    position: relative;
    height: 69px;
}

.ipvideo-list-right.ipvideo-list-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
}


.ipvideo-list-right.ipvideo-list-wrap .ipvideo-list a .play-bttn > div {
    width: 50px;
    display: block;
    position: relative;
    height: 34px;
}


/* updates */
.page-id-32 div#content-full {
    min-height: auto;
}

.page-id-32 div#content-full h1.entry-title {
    display: none;
}

.single-aios-communities .banner-tagline {
    display: none !important;
}

.single-aios-communities.postid-897 .golf-item-desc .custom-btn {
    display: none;
}


.page-id-2140 #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}


#ihf-main-container.ihf-modal-container .modal input[type=password] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    border: none !important;
    border-bottom: 1px solid #a5a5a5 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: #636363;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    padding: 0 !important;
}

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

#content .archive-thumbnail {
    padding-top: 22px !important;
}

.page-id-31 #inner-page-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    background: #326c2d;
    overflow: hidden;
}

.page-id-31 #inner-page-wrapper::before {
    content: '';
    background: transparent url('https://cdn.agentimagehosting.com/b82eTliwLc93tStn1bqF8/2024/04/received_236064312900140-e1713889946501.png') no-repeat top right/600px;
    position: absolute;
    top: 100px;
    right: 0;
    width: 800px;
    height: 800px;
    z-index: -1;
    opacity: .2;
    display: none;
}


.page-id-31 #inner-page-wrapper * {
    color: #fff;
}

.page-id-29 #content .custom-category .archive-thumbnail img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.page-id-29 #content .custom-category .archive-thumbnail {
    width: 55%;
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.page-id-29 #content .custom-category .archive-content.archive-has-thumbnail {
    width: 40%;
    float: none;
    display: inline-block;
}

.page-id-30 .fc-list .fc-photo.canvas-img {
    width: 55%;
    float: none;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0;
}

.page-id-30 .fc-list .fc-text-d {
    width: 40%;
    float: none;
    display: inline-block;
}

.page-id-30 .fc-list .fc-text-d .fc-title {
    font-size: 25px;
    color: #383838;
    font-weight: 600;
    font-family: var(--font-family-title);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding-left: 20px;
}

.page-id-30 .fc-photo img {
    height: 400px;
}

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

.category-the-grand-floor-plans #content .post {
    padding: 60px 0;
    border: none;
    margin: 0;
    position: relative;
}

.category-the-grand-floor-plans #content .post::before {
    content: '';
    width: calc(100% + calc(100vw - 100%));
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: calc(calc(-100vw + 100%) / 2);
    z-index: -1;
}

.category-the-grand-floor-plans #content .post#post-82::before, .category-the-grand-floor-plans #content .post#post-88::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/classic-series-model.jpg');
}

.category-the-grand-floor-plans #content .post#post-79::before, .category-the-grand-floor-plans #content .post#post-80::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/cottage-series-model.jpg');
}

.category-the-grand-floor-plans #content .post#post-81::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/courtyardvacation-villa-series-model.jpg');
}

.category-the-grand-floor-plans #content .post#post-85::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/premier-series-model.jpg');
}

.category-northwest-valley-blog #inner-page-wrapper::before, .post-page-meet-shannon #inner-page-wrapper::before, .category #inner-page-wrapper::before, .post-page-testimonials #inner-page-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.agentimagehosting.com/b82eTliwLc93tStn1bqF8/2024/06/23-print-DSC00328.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.single-aios-communities .bio-wrap p {
    font-size: 18px;
}

.post-page-about-shannon .sec-wrapper {
    padding: 60px 0;
    position: relative;
}

.post-page-about-shannon .sec-wrapper::before {
    content: '';
    width: calc(100% + calc(100vw - 100%));
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: calc(calc(-100vw + 100%) / 2);
    z-index: -1;
}

.post-page-about-shannon .sec-wrapper#sec-1::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/about-shannon.jpg');
    height: 150%;
    top: auto;
    bottom: 0;
}

.post-page-about-shannon .sec-wrapper#sec-2::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/meet-shannon.jpg');
}

.post-page-about-shannon .sec-wrapper#sec-3::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/what-clients-say-about-working-with-shannon.jpg');
}

.post-page-about-shannon .sec-wrapper#sec-4::before {
    background-image: url('/app/themes/sbiszantz-pending.com/assets/images/sold-by-shannon.jpg');
}

.post-page-about-shannon .sec-wrapper::before {
    content: '';
    width: calc(100% + calc(100vw - 100%));
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: calc(calc(-100vw + 100%) / 2);
    z-index: -1;
}

.ip-banner-logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    padding: 15px 45px;
}

.ip-banner-logo span {
    display: block;
    font-size: 20px;
    color: #fff;
    line-height: normal;
    text-align: right;
    text-transform: uppercase;
    text-shadow: 0 0 5px #000;
    position: relative;
    z-index: 1;
}

.ip-banner-logo img {
    width: 150px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
}

.video-wrapper canvas {
    display: block;
    width: 100%;
    height: auto;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.form-disclaimer {
    margin: 30px auto;
    clear: both;
    line-height: normal;
}

.form-disclaimer .wpcf7-list-item {
    margin: 0;
}

.form-disclaimer .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
}

.form-disclaimer input {
    position: relative;
    margin: 0 10px 0 0;
    top: 2px;
    width: auto;
    height: auto;
}

.form-disclaimer .wpcf7-list-item-label {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.page-template-open-house .ip-newsletter {
    padding: 0;
}

.page-template-open-house .newsletter-bg {
    position: relative;
}

.page-template-open-house .newsletter-wrap {
    padding: min(63px, calc((63/1600)*100%)) min(100px, calc((100/1600)*100%)) min(63px, calc((63/1600)*100%));
}

.page-template-open-house .newsletter-wrap .form-disclaimer .wpcf7-list-item-label {
    color: #000;
}

.single-aios-communities #inner-page-wrapper::before,
.post-page-resources #inner-page-wrapper::before,
.post-page-home-sale-calculator #inner-page-wrapper::before,
.post-post-calculate-mortgage #inner-page-wrapper::before,
.post-page-affordability-calculator #inner-page-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.agentimagehosting.com/b82eTliwLc93tStn1bqF8/2024/06/23-print-DSC00328.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

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

.home .grecaptcha-badge {
    bottom: 88px !important;
}

.bpChatContainer {
    position: fixed;
    z-index: 999999;
}

.bpFabWrapper {
    z-index: 99999 !important;
}

.bpWebchat {
    z-index: 999999 !important;
}

#shannon-widget {
    z-index: 2 !important;
}

.aidefcf-wrapper .wpcf7 form.use-floating-validation-tip span.wpcf7-not-valid-tip {
    top: 10px !important;
    left: auto !important;
    font-size: 10px !important;
}
.aidefcf-wrapper .wpcf7 form.use-floating-validation-tip div.wpcf7-response-output {
    font-size: 12px;
    line-height: 1.2;
    padding: 0.5em 0.5em;
}
.aidefcf-wrapper .wpcf7 form.use-floating-validation-tip .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 100%;
    margin: 0.25em auto 0;
}

.bc-community-guide .bc-note p {
    color: #fff;
}

@media only screen and (min-width: 1601px) {
    :root {
        --font-size-title: 32px;
    }

}

@media only screen and (max-width: 1440px) {
    .custom-container {
        padding: 0 30px;
    }

    .hdr-info-right {
        padding-left: 80px;
    }

    #nav > li,
    #fixednav > li {
        margin: 0 3px;
    }

}

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

    .slidenavigation {
        margin-left: 20px;
    }

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


    #nav a, #fixednav a {
        font-size: 11px;
        letter-spacing: 0.01em;
    }


}

@media only screen and (max-width: 1240px) {
    #nav a, #fixednav a {
        font-size: 10px;
    }
}


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

    .hdr-logo a {
        font-size: 40px;
    }


    #nav > li,
    #fixednav > li {
        margin: 0 3px;
    }

    #nav a, #fixednav a {
        font-size: 9px;
        letter-spacing: 0.01em;
    }

    .ftr-form-cont .global-title-widget {
        font-size: 26px;
    }

}

@media only screen and (max-width: 1024px) {
    #nav a, #fixednav a {
        font-size: 8px;
        letter-spacing: -0.01em;
    }
}

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

    .aios-mobile-header-wrapper {
        display: block !important;
    }

    .fixed-header,
    .nav-wrapp,
    .fixed_logo {
        display: none;
    }

    .main-header {
        position: relative;
        padding: 70px 0 30px;
        height: auto;
        text-align: center;
        top: 0;
        background: #fff;
    }

    .custom-container .row {
        display: block;
    }

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

    .global_site_title h2 strong {
        font-size: 40px !important;
    }

    #header_wrap {
        position: relative;
        z-index: 2;
        margin-top: 52px;
        padding: 20px 0;
        background-color: var(--primary);
    }

    #footer_wrap {
        padding-top: 70px;
    }

    .contact_description {
        line-height: 1.2;
    }

    .footer_info {
        flex-flow: column;
        align-items: center;
    }

    .footinfo {
        margin: 10px 0;
    }

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

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

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

    .ftr-b-logo img {
        width: 100%;
        margin: 20px auto;
    }

    .ip-cstm-row {
        flex-direction: column !important;
    }

    .footer-contact-form {
        position: relative;
        padding-left: 0;
        width: 100%;
        margin: 20px 0;
    }

    .form-main-wrap {
        display: block;
    }

    #content .custom-category .archive-content.archive-has-thumbnail {
        width: 100% !important;
    }

    .header .container-fluid .row {
        justify-content: center;
    }


    .footer-contact-form .global-title-wrap span {
        line-height: 1;
    }

    .archive.category #content {
        display: block !important;
    }

}

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

    #content .archive-title, #content .entry-title {
        font-size: 30px;
    }

    .form-field-wrap {
        justify-content: center;
        flex-wrap: wrap;
    }

    .form-field-short {
        width: 100%;
        margin: 5px auto;
    }

    .ftr-info-flex {
        display: block;
    }

    .ip-banner-logo {
        bottom: 15px;
        right: 15px;
    }

    .ip-banner-logo span {
        font-size: 16px;
    }

    .ip-banner-logo img {
        width: 100px;
    }

}

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

    .global-title-widget {
        font-size: 35px;
    }

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

    #content .archive-subtitle {
        font-size: 16px;
    }

}