@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* @font-face {
    font-family: Manrope;
    src: url(https://cy-sierra-assets.s3.us-west-1.amazonaws.com/sites/tangentrealty.com/pele/Brand+Fonts/Manrope-Medium.ttf);
 }
 @font-face {
    font-family: Butler;
    src: url(https://cy-sierra-assets.s3.us-west-1.amazonaws.com/sites/tangentrealty.com/pele/Brand+Fonts/Butler_Regular.otf) format("opentype");
 } */
.hidden {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.visible {
    opacity: 1;
}

.home-quick-search .nearby-search .si-btn {
    display: none;
}

.main-content .si-content-area ul:not(.si-content-label__body) li:not(.si-content-label__link) {
    padding-left: 0;
}

.animated {
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.home .fade-in.key-3 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.animated.hinge {
    animation-duration: 2s;
}

/* .container{
    width: 100%;
} */
.dark-banner {
    display: none;
}

.featured {
    display: none;
}

.communities {
    display: none;
}

.chart {
    display: none;
}

.blog {
    display: none;
}

.about.bg {
    display: none;
}

#pageComponent34060 {
    display: none;
}

/* HEADER */
body.home header.fixed.dynamic {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 1%, rgba(0, 0, 0, 0) 100%) no-repeat;
    box-shadow: none;
    height: 100px;
}

body.home header.fixed.dynamic.reduced {
    background: #000;
    box-shadow: 0 5px 5px -5px rgba(0,0,0,.3);
    height: 65px;
}

footer {
    background-color: #000;
}

footer > div > a > img {
    filter: brightness(100);
}

header .logo img {
    max-height: 100%;
    vertical-align: top;
    width: auto;
    filter: brightness(100);
}

header.dynamic .dynamic-nav-container {
    margin-top: 25px;
}

header.dynamic.reduced .dynamic-nav-container {
    margin-top: 0px;
}

@media (max-width:991px){
    body.home header.fixed.dynamic,
    body.home header.fixed.dynamic.reduced {
        background: #fff;
        box-shadow: 0 5px 5px -5px rgba(0,0,0,.3);
        height: 115px;
    }

    header .logo img {
        filter: none;
    }
}

.hero-heading {
    padding: 2%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Josefin Sans',Helvetica,Arial,Lucida,sans-serif;
}

body.home .home-quick-search h1 {
    font-family: 'Josefin Sans',Helvetica,Arial,Lucida,sans-serif;
    font-weight: 300;
    font-size: 180px;
    color: #FFFFFF !important;
    letter-spacing: 30px;
    margin: 0;
    text-align: center;
}

body.home .home-quick-search .et_pb_text_1 h1 {
    font-family: 'Josefin Sans',Helvetica,Arial,Lucida,sans-serif;
    font-weight: 300;
    font-size: 60px;
    color: #FFFFFF !important;
    letter-spacing: 25px;
    margin: 0;
    text-align: center;
}

#welcome > div > div {
    display: flex;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
}

.col-md-5 {
    -ms-flex: 0 0 45%;
    -webkit-box-flex: 0;
    flex: 0 0 45%;
    max-width: 45%;
    box-sizing: border-box;
}

.col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

.col-md-7 {
    -ms-flex: 0 0 55%;
    -webkit-box-flex: 0;
    flex: 0 0 55%;
    max-width: 55%;
    box-sizing: border-box;
}

#pageComponent577865,
#pageComponent577866 > div.si-content-area {
    display: none;
}

#testimonials #testimonial_holder .si-testimonials__item-content {
    text-overflow: ellipsis;
    text-wrap: wrap;
    max-height: 200px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 5;
    -moz-line-clamp: 5;
    -ms-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    animation-name: bounce;
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation-name: pulse;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.shake {
    animation-name: shake;
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.tada {
    animation-name: tada;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        transform: translateX(0%);
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(-30px);
    }

    80% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInUp {
    animation-name: bounceInUp;
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.bounceOut {
    animation-name: bounceOut;
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    animation-name: bounceOutUp;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes flip {
    0% {
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        animation-timing-function: ease-in;
    }

    100% {
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip;
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY;
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    100% {
        transform: translateY(0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    100% {
        transform: translateX(0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    100% {
        transform: translateX(0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    animation-name: slideOutUp;
}

@keyframes hinge {
    0% {
        transform: rotate(0);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    40% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    80% {
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    animation-name: hinge;
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    animation-name: rollIn;
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    animation-name: rollOut;
}

body {
    /* font-family: "Josefin Sans", "Montserrat", "Open Sans", Helvetica, sans-serif !important; */
    scroll-behavior: smooth;
    font-size: 19px;
}

/* body.home .dark-banner, body.home section.about {
    display: none !important;
} */
body.home .home-quick-search {
    height: 100vh;
    max-height: 100vh !important;
    min-height: 700px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 200px;
    box-sizing: border-box;
    margin-top: -65px;
}

@media (max-width: 991.98px) {
    body.home .home-quick-search {
        padding-top: 200px !important;
        min-height: 600px;
        height: 52vh;
    }

    .col-md-5,
    .col-md-6,
    .col-md-7 {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        box-sizing: border-box;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width:1300px) {
    body.home .home-quick-search h1 {
        font-size: 100px;
    }

    body.home .home-quick-search .et_pb_text_1 h1 {
        font-size: 5.8vw;
        letter-spacing: normal;
    }
}

@media (max-width: 991.98px) {
    body.home .home-quick-search h1 {
        font-size: 14vw;
        font-weight: 300;
        line-height: 0.8em;
        letter-spacing: 5px;
    }
}

body.home .cy-custom .container {
    width: 100%;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
}

body.home .cy-custom .btn {
    font-family: "Josefin Sans",Sans-serif;
    position: relative;
    padding: 10px 50px 10px 0;
    border-radius: 0;
    font-weight: 400;
    background: rgba(0,0,0,0) !important;
    border-bottom: 2px solid #465454;
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #2e2e2e;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    body.home .cy-custom .btn {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    body.home .cy-custom .btn {
        padding: 10px 0;
        letter-spacing: 4px;
        font-size: 13px;
    }
}

body.home .cy-custom .btn.light {
    color: #fff;
}

body.home .cy-custom .btn:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 45%;
    height: 2px;
    background: #9b9a9a;
    transition: 300ms ease all;
}

body.home .cy-custom .btn:hover:after {
    width: 15%;
}

body.home > section.home-quick-search.js-qs-home.si-bgp--center.no-bg > div.container.js-qs-form > div > div.form.fade-in.key-3 > div.range-input.js-qs-price-range {
    display: none;
}

body.home #hero_bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 10px 0;
    display: flex;
    background: rgba(0, 0, 0, .7);
}

@media (max-width: 991.98px) {
    body.home #hero_bar {
        flex-wrap: wrap;
        background: #000;
        margin-bottom: -200px;
    }
}

@media (max-width: 575.98px) {
    body.home #hero_bar {
        margin-bottom: -200px;
    }

    body.home .home-quick-search {
        padding-top: 175px !important;
        min-height: 661px;
        height: 52vh;
    }

    body.home .home-quick-search {
        background-position: top;
        background-size: 100vh;
        background-repeat: no-repeat;
    }

    .home-quick-search .hero-image {
        height: 57vh;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }
}

@media (max-width: 450.98px) {
    body.home .home-quick-search {
        background-position: top;
        background-size: 125vh;
        background-repeat: no-repeat;
    }
}

body.home #hero_bar .search-heading {
    width: 350px;
    background: #000;
    padding: 15px;
    margin: -50px 0 -10px 0;
}

@media (max-width: 991.98px) {
    body.home #hero_bar .search-heading {
        width: 100%;
    }
}

body.home #hero_bar .search-heading h3 {
    color: #fff;
    padding-left: 60px;
    font-size: 28px;
    font-weight: 300;
}

@media (max-width: 991.98px) {
    body.home #hero_bar .search-heading h3 br {
        display: none;
    }
}

body.home #hero_bar .search-heading h3 span {
    display: block;
    font-family: "Josefin Sans",Sans-serif;
    color: #bbd7df;
    font-size: 60%;
    position: relative;
    margin-bottom: 10px;
    font-style: italic;
}

body.home #hero_bar .search-heading h3 span:before {
    content: "";
    top: 50%;
    right: 100%;
    margin-right: 8px;
    width: 50px;
    border-top: 1px solid #bbd7df;
    position: absolute;
}

body.home #hero_bar .search-actions {
    width: calc(100% - 350px);
}

@media (max-width: 991.98px) {
    body.home #hero_bar .search-actions {
        width: 100%;
    }
}

body.home #hero_bar .search-actions #search_cta {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
    padding-left: 0px;
    overflow: hidden;
}

@media (max-width: 1919.98px) {
    body.home #hero_bar .search-actions #search_cta {
        padding-left: 0;
    }
}

@media (max-width: 1499.98px) {
    body.home #hero_bar .search-actions #search_cta {
        flex-wrap: wrap;
    }
}

body.home #hero_bar .search-actions #search_cta li {
    list-style: none;
    margin: 0 15px;
    position: relative;
}

@media (max-width: 1499.98px) {
    body.home #hero_bar .search-actions #search_cta li {
        width: calc(33.3333333333% - 60px);
    }

    body.home #hero_bar .search-actions #search_cta li:nth-child(3):after {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    body.home #hero_bar .search-actions #search_cta li {
        margin: 0 20px;
        width: calc(33.3333333333% - 40px);
    }
}

@media (max-width: 575.98px) {
    body.home #hero_bar .search-actions #search_cta li {
        width: 100%;
    }
}

body.home #hero_bar .search-actions #search_cta li:after {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    height: 40px;
    border-right: 1px solid rgba(255, 255, 255, .7);
    transform: translateY(-50%);
}

body.home #hero_bar .search-actions #search_cta li a {
    display: block;
    color: #fff;
    padding: 15px 30px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 575.98px) {
    body.home #hero_bar .search-actions #search_cta li a {
        text-align: center;
    }
}

body.home #hero_bar .search-actions #search_cta li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .1em;
    background-color: #bbd7df;
    opacity: 1;
    transform: translate3d(-101%,  0,  0);
    transition: opacity 300ms, transform 300ms;
}

body.home #hero_bar .search-actions #search_cta li a .num {
    display: block;
    color: #bbd7df;
    font-family: "Marope", Georgia, serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.2;
}

body.home #hero_bar .search-actions #search_cta li a .linktext {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    white-space: nowrap;
}

body.home #hero_bar .search-actions #search_cta li a:hover {
    text-decoration: none;
}

body.home #hero_bar .search-actions #search_cta li a:hover:after {
    transform: translate3d(0,  0,  0);
}

body.home #hero_bar .search-actions #search_cta li.searchform {
    flex-grow: 1;
}

@media (max-width: 991.98px) {
    body.home #hero_bar .search-actions #search_cta li.searchform {
        margin-top: 25px;
    }
}

body.home #hero_bar .search-actions #search_cta li.searchform .listings-count {
    display: none;
}

@media (max-width: 1499.98px) {
    body.home #hero_bar .search-actions #search_cta li.searchform {
        width: 100%;
    }
}

body.home #hero_bar .search-actions #search_cta li.searchform:after {
    display: none;
}

body.home #hero_bar .search-actions #search_cta li.searchform .form .range-input {
    display: none;
}

body.home #hero_bar .search-actions #search_cta li.searchform .form input.location {
    width: calc(100% - 200px);
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

@media (max-width: 575.98px) {
    body.home #hero_bar .search-actions #search_cta li.searchform .form input.location {
        width: 100%;
    }
}

body.home #hero_bar .search-actions #search_cta li.searchform .form .search-button {
    height: 40px;
    padding: 0 20px;
    width: auto;
    font-size: 13px;
    font-weight: 600;
    margin-left: 2px;
    background: #008244;
    color: #fff;
    border: 1px solid #008244;
}

@media (max-width: 991.98px) {
    body.home #hero_bar .search-actions #search_cta li.searchform .form .search-button {
        width: 195px;
        border-radius: 0 !important;
        margin-left: 0;
    }

    body.home #hero_bar .search-actions #search_cta li.searchform .form .search-button:hover {
        width: 195px;
    }
}

@media (max-width: 575.98px) {
    body.home #hero_bar .search-actions #search_cta li.searchform .form .search-button {
        width: 100%;
    }

    body.home #hero_bar .search-actions #search_cta li.searchform .form .search-button:hover {
        width: 100%;
    }
}

body.home #hero_bar .search-actions #search_cta li.searchform .form .search-button .arrow {
    display: none;
}

body.home #welcome {
    padding: 50px 0 0;
    position: relative;
}

body.home #welcome .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    body.home #welcome {
        padding-top: 230px;
        padding-inline: 30px;
    }
}

@media (max-width: 575.98px) {
    body.home #welcome {
        padding-top: 200px;
        padding-inline: 15px;
    }
}

body.home #welcome .image-col {
    text-align: center;
}

body.home #welcome .image-col img {
    max-width: 70%;
    margin-right: auto;
    padding-top: 50px;
}

body.home #welcome.cy-custom div.container div.row div.col-md-7.content-col h1 {
    font-size: 100px;
    font-weight: 100!important;
    margin: 50px 0;
}

@media (max-width: 991.98px) {
    body.home #welcome .image-col img {
        max-width: 70%;
        margin-right: auto;
        padding-top: 20px;
    }

    body.home #welcome.cy-custom div.container div.row div.col-md-7.content-col h1 {
        font-size: 100px;
        font-weight: 100!important;
        margin: 20px 0;
    }
}

@media (max-width: 991.98px) {
    body.home #welcome .image-col img {
        padding-top: 0;
        max-width: 500px;
    }

    body.home #welcome.cy-custom div.container div.row div.col-md-7.content-col h1 {
        font-size: 79px;
        font-weight: 100 !important;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    body.home #welcome .image-col img {
        max-width: 80%;
    }

    body.home #welcome.cy-custom div.container div.row div.col-md-7.content-col h1 {
        font-size: 19vw;
        font-weight: 100!important;
    }
}

@media (max-width: 575.98px) {
    body.home #welcome .image-col img {
        max-width: 90%;
    }
}

body.home #welcome .content-col {
    padding-right: 50px;
}

@media (max-width: 991.98px) {
    body.home #welcome .content-col {
        padding: 50px 10px 0;
    }
}

@media (max-width: 575.98px) {
    body.home #welcome .content-col {
        padding: 0px 0px 0;
    }
}

body.home #welcome p {
    font-family: "Josefin Sans",Sans-serif;
    font-size: 20px;
    font-weight: 400;
}

body.home #welcome p a {
    color: #73b5b5;
}

#search_areas {
    margin-top: 50px;
}

body.home .grid-row {
    display: flex;
}

@media (max-width: 767.98px) {
    body.home .grid-row {
        flex-wrap: wrap;
    }
}

body.home .grid-row .heading-box {
    width: 50%;
    background: #000;
    padding: 12vw 100px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
}

@media (max-width: 1199.98px) {
    body.home .grid-row .heading-box {
        padding: 13vw 50px;
    }
}

@media (max-width: 767.98px) {
    body.home .grid-row .heading-box {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    body.home .grid-row .heading-box {
        padding: 12vw 30px !important;
    }
}

body.home .grid-row .heading-box h2 {
    color: #fff;
    font-family: "Josefin Sans",Sans-serif;
    font-size: 125px;
    font-weight: 100;
    text-transform: uppercase;
    line-height: 1em;
    text-align: left;
}

@media (max-width: 1499.98px) {
    body.home .grid-row .heading-box h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199.98px) {
    body.home .grid-row .heading-box h2 {
        font-size: 60px;
    }
}

@media (max-width: 991.98px) {
    body.home .grid-row .heading-box h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    body.home .grid-row .heading-box h2 {
        font-size: 50px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    body.home .grid-row .heading-box h2 {
        font-size: 9vw;
    }
}

@media (max-width: 767.98px) {
    body.home .grid-row .heading-box h2 br {
        display: none;
    }
}

body.home .grid-row .heading-box.light {
    background: #fff;
}

body.home .grid-row .heading-box.light h2 {
    color: #000;
}

body.home .grid-row .grid-stack {
    width: 50%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767.98px) {
    body.home .grid-row .grid-stack {
        width: 100%;
        height: 90vw;
    }
}

@media (max-width: 575.98px) {
    body.home .grid-row .grid-stack {
        height: auto;
    }
}

body.home .grid-row .grid-stack .grid-item {
    width: 100%;
    height: 50%;
    min-height: 40vh;
}

body.home .grid-row .grid-sbs {
    width: 100%;
    display: flex;
    height: 25vw;
}

@media (max-width: 767.98px) {
    body.home .grid-row .grid-sbs {
        height: auto;
        flex-wrap: wrap;
    }
}

body.home .grid-row .grid-sbs .grid-item {
    width: 50%;
    height: 100%;
}

@media (max-width: 767.98px) {
    body.home .grid-row .grid-sbs .grid-item {
        width: 100%;
        height: 40vh;
    }
}

/* @media(max-width: 575.98px) {
    body.home .grid-row .grid-sbs .grid-item {
    height: 50vw;
}
} */
body.home .grid-row .grid-sbs .grid-item:first-child {
    border-right: 1px solid #fff;
}

body.home .grid-row .grid-half {
    width: 50%;
}

@media (max-width: 767.98px) {
    body.home .grid-row .grid-half {
        width: 100%;
        height: auto;
    }
}

body.home .grid-row .grid-half .grid-item {
    height: 100%;
    width: 100%;
}

@media (max-width: 767.98px) {
    body.home .grid-row .grid-half .grid-item {
        height: 40vw;
    }
}

@media (max-width: 575.98px) {
    body.home .grid-row .grid-half .grid-item {
        height: 50vw;
    }
}

body.home .grid-row .grid-full {
    width: 100%;
    height: 30vw;
}

@media (max-width: 767.98px) {
    body.home .grid-row .grid-full {
        height: 40vw;
    }
}

@media (max-width: 575.98px) {
    body.home .grid-row .grid-full {
        height: 50vw;
    }
}

body.home .grid-row .grid-full .grid-item {
    height: 100%;
    width: 100%;
}

body.home .grid-row .grid-item {
    border-bottom: 1px solid #fff;
}

/* body.home .grid-row .grid-item a {
    display: block;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
body.home .grid-row .grid-item a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .2);
    pointer-events: none;
    transition: 300ms ease all;
} */
body .grid-row .grid-item a {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: ease 1.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
}

body .grid-row .grid-item a:hover::before {
    opacity: 100%;
}

body .grid-row .grid-item a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;

    /* background-color:#1212118f; */
    transition: 0.5s;
    z-index: 1;
    opacity: 0%;
}

body .grid-row .grid-item a::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border: 2px solid #bbae70;
    transition: 0.4s;
    z-index: 1;
    opacity: 0;
}

body .grid-row .grid-item a:hover::after {
    width: 79%;
    height: 80%;
    opacity: 100%;
}

body .grid-row .grid-item a:hover .search-logo {
    filter: brightness(10)invert();
    transition: 0.4s;
}

body .grid-row .grid-item a .search-logo {
    position: relative;
    z-index: 10;
    width: 25%;
    max-width: 350px;
    filter: brightness(10);
    transition: 0.4s;
}

body.home .grid-row .grid-item a .inner {
    position: relative;
    z-index: 10;
}

body.home .grid-row .grid-item a .inner .title {
    font-family: "Josefin Sans",Sans-serif;
    display: block;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
    position: relative;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: 300ms ease all;
    scale: .9;
}

@media (max-width: 1499.98px) {
    body.home .grid-row .grid-item a .inner .title {
        font-size: 50px;
    }
}

@media (max-width: 1199.98px) {
    body.home .grid-row .grid-item a .inner .title {
        margin-top: 15px;
        font-size: 40px;
        letter-spacing: 10px;
    }
}

@media (max-width: 991.98px) {
    body.home .grid-row .grid-item a .inner .title {
        font-size: 30px;
        letter-spacing: 5px;
    }
}

@media (max-width: 767.98px) {
    body.home .grid-row .grid-item a .inner .title {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    body.home .grid-row .grid-item a .inner .title {
        font-size: 8vw;
        letter-spacing: 1vw;
    }
}

body.home .grid-row .grid-item a .inner .title:after {
    font-family: "Josefin Sans",Sans-serif;
    content: "SEARCH";
    display: block;
    text-align: center;
    padding-top: 15px;
    font-size: 22px;
    letter-spacing: 7px;
}

@media (max-width: 991.98px) {
    body.home .grid-row .grid-item a .inner .title:after {
        font-size: 17px;
    }
}

body.home .grid-row .grid-item a:hover:before {
    background: rgba(255, 255, 255, .4);
}

body.home .grid-row .grid-item a:hover .inner .title {
    color: #000;
}

body.home #lifestyles {
    margin-top: 50px;
}

@media (max-width: 575.98px) {
    body.home #lifestyles {
        margin-top: 0;
    }
}

body.home #lifestyles .grid-row .heading-box {
    padding: 10vw 100px;
}

@media (max-width: 991.98px) {
    body.home #lifestyles .grid-row .heading-box {
        padding: 10vw 50px;
    }
}

body.home #testimonials {
    padding: 75px 0;
}

body.home #testimonials h2 {
    font-family: "Josefin Sans",Sans-serif;
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 100;
    text-align: center;
    color: #000;
}

@media (max-width: 991.98px) {
    body.home #testimonials h2 {
        font-size: 9vw;
    }
}

body.home #testimonials h2 span {
    font-family: "Josefin Sans",Sans-serif;
    display: block;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    body.home #testimonials h2 span {
        font-size: 4vw;
    }
}

body.home #testimonials #testimonial_holder {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

body.home #testimonials #testimonial_holder .slick-slide {
    text-align: center;
}

body.home #testimonials #testimonial_holder .si-testimonials__item-content {
    font-size: 22px;
}

@media (max-width: 575.98px) {
    body.home #testimonials #testimonial_holder .si-testimonials__item-content {
        font-size: 18px;
    }
}

body.home #testimonials #testimonial_holder .si-testimonials__item-by {
    font-weight: 400;
    display: inline-block;
    margin-top: 15px;
}

body.home #buysell .grid-row .grid-item a .inner .title:after {
    content: "LEARN MORE";
}

body.home #homevalue {
    background-size: cover;
}

body.home #homevalue .inner {
    display: flex;
    text-align: center;
    padding: 12vw 30px;
    text-decoration: none;
    background: rgba(0, 0, 0, .4);
    min-height: 40vh;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

body.home #homevalue span.title {
    font-family: "Josefin Sans",Sans-serif;
    display: block;
    text-align: center;
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    width: 100%;
    margin-bottom: 10px;
    z-index: 2;
}

@media (max-width: 1199.98px) {
    body.home #homevalue span.title {
        font-size: 10vw;
    }
}

body.home #homevalue span.title span {
    font-family: "Josefin Sans",Sans-serif;
    display: block;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 15px;
    margin-top: 20px;
}

@media (max-width: 1199.98px) {
    body.home #homevalue span.title span {
        font-size: 4vw;
        margin-top: 1vw;
    }
}

body.home #contact_us {
    display: flex;
    margin-top: 50px;
}

body.home #contact_us .photo-bg {
    background-size: cover;
    width: 50%;
    background-position: center top;
}

@media (max-width: 991.98px) {
    body.home #contact_us .photo-bg {
        display: none !important;
    }
}

body.home #contact_us .contact-holder {
    width: 50%;
    padding: 30px 100px;
}

@media (max-width: 1199.98px) {
    body.home #contact_us .contact-holder {
        padding: 50px;
    }
}

@media (max-width: 991.98px) {
    body.home #contact_us .contact-holder {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    body.home #contact_us .contact-holder {
        padding: 0 30px;
    }

    body.home #homevalue span.title span {
        letter-spacing: 2px;
    }
}

body.home #contact_us .contact-holder h2 {
    font-family: "Butler";
    font-size: 80px;
    text-transform: uppercase;
    font-weight: 100;
    text-align: center;
    color: #000;
}

@media (max-width: 575.98px) {
    body.home #contact_us .contact-holder h2 {
        margin-top: 0;
        font-size: 50px;
    }
}

body.home #contact_us .contact-holder h2 span {
    font-family: "Josefin Sans",Sans-serif;
    display: block;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

header .logo img {
    max-width: 90%;
}

footer .logo {
    top: 10px;
}

#search_areas > div:nth-child(3) > div > div > a {
    background-position: bottom ;
}

@media (max-width: 575.98px) {
    body.home #testimonials {
        padding-block: 50px;
    }
}

/* adjustment code */
.main-content .si-content-area h1 {
    font-family: "Josefin Sans",Sans-serif;
}

.contact-logo {
    max-width: 500px;
}

.blog,
.chart,
.communities,
#pageComponent582537,
body.home > section.about > div.bg {
    display: none;
}

body.home > section.about > div.box.si-site-container.si-site-container--full {
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (max-width:500px) {
    #search_cta > li.searchform {
        margin: 0 !important;
        padding: 0 15px;
    }
}

#pageComponent278607 {
    display: none;
}

.fade-in.key-1 {
    display: none;
}

section.home-quick-search div.container.js-qs-form {
    display: none;
}

section.custom #customModule44 {
    display: none;
}

.listings-count {
    display: none;
}

.hidden {
    display: none;
}

.nearby-search {
    display: none;
}

.main-content .top-strip {
    display: none;
}

.si-site-container.col-md-12.si-site-container--full {
    padding-left: 0;
    padding-right: 0;
}

.main-content .si-content-area ol:not(.si-content-label__body) li:not(.si-content-label__link)::before,
.main-content .si-content-area ul:not(.si-content-label__body) li:not(.si-content-label__link)::before {
    display: none;
}

/* STYLE MOD */
body.home .home-quick-search .hero-heading {
    position: relative;
    z-index: 4;
}

body.home .home-quick-search h1 {
    font-size: 8vw;
    letter-spacing: 4px;
}

body.home .home-quick-search .et_pb_text_1 h1 {
    font-size: 4vw;
    letter-spacing: 4px;
}

body.home header nav > ul > li > a {
    color: #fff;
    text-transform: uppercase;
}

header .sub-nav > li > a {
    color: #fff;
    text-transform: uppercase;
}

body.home #welcome.cy-custom div.container div.row div.col-md-7.content-col h1 span {
    display: block;
    font-size: 80%;
}

.agent-title {
    font-size: 2vw;
    text-transform: uppercase;
}

body.home .home-quick-search h1 {
    text-transform: uppercase;
}

body .grid-row .grid-item a .search-logo {
    filter: invert() brightness(100);
}

body .grid-row .grid-item a:hover .search-logo {
    filter: unset;
}

body.home section.about {
    display: none;
}

body.home header .logo img {
    filter: invert() brightness(100);
}

body.home #hero_bar .search-actions #search_cta li.searchform .form .search-button {
    background: #313131;
    border: 1px solid #313131;
}

body.home header .sub-nav > li.lang i.fa-angle-down {
    color: #fff;
}

body.home .home-quick-search {
    background-image: url('images/hero.webp');
}

/* FOOTER STYLES */
body footer > div > a > img {
    filter: invert() brightness(100);
}

footer {
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-content a {
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-content .h3,
footer .footer-content h3 {
    color: #fff;
}

footer .footer-content .disclaimer .si-idx-disclaimer {
    color: rgba(255, 255, 255, 0.8);
}

footer {
    padding: 140px 0 0;
}

footer .logo {
    top: 30px;
}

/* STYLE MODS */
.text-caps {
    text-transform: uppercase;
}

body.home .area-grid-mod .grid-row .grid-item a .inner .title::after {
    display: none;
}

body.home .area-grid-mod .grid-row .grid-item a .search-logo {
    display: none;
}

body.home .grid-row .grid-item a .inner .title.sub-title {
    margin-top: 0px;
    font-size: 2.5vw;
}

body.home #contact_us .photo-bg .heading-box {
    width: 100%;
}

body.home #contact_us .photo-bg .heading-box img {
    margin-top: 50px;
    display: block;
    filter: invert(100%);
}

h2.section-title.text-caps {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 2.7vw;
}

#design-container {
    overflow: hidden;
}

body.home #hero_bar .search-heading {
    display: none;
}

body.home #hero_bar .search-actions {
    margin-left: auto;
    margin-right: auto;
}

body.home #hero_bar .search-actions #search_cta li:last-child::after {
    display: none;
}

#hero-buttons {
    position: relative;
    z-index: 9;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0px;
    margin: 0px auto;
}

#hero-buttons li a {
    background-color: #000;
    padding: 25px 40px;
    color: #ffffff;
}

#hero-buttons {
    margin-top: 50px;
}

.section-title.text-caps.larger-title {
    font-size: 3.5vw;
}

.section-title.text-caps.bordered-text {
    text-decoration: underline;
}

.section-title.text-caps.bordered-text {
    text-decoration: underline;
    padding-bottom: 00px;
}

.bg-photo {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

body.home .home-quick-search .container.js-qs-form {
    display: none !important;
}

section#welcome .image-col img.cy-lazy {
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease 0s;
    filter: grayscale();
}

section#welcome .image-col img.cy-lazy:hover {
    filter: none;
}

body.home .home-quick-search {
    background-image: url("images/home-val.webp");
    background-position: bottom center;
}



/* FINAL STYLES */


body.home header nav > ul > li > a:hover {
	color: #000;
}

body.home #hero_bar .search-actions #search_cta li a:hover::after {
	display: none;
}
body.home #hero_bar .search-actions #search_cta li a {
	cursor: default;
}

footer {
	padding-top: 160px;
}
footer .logo {
	top: 40px;
}
.contact-holder .contact-logo {
	display: none;
}
body.home #contact_us .photo-bg .heading-box img {
	display: none;
}

/* BEGIN DESKTOP */
@media(min-width: 800px){
body.home .grid-row .heading-box h2 {
	font-size: 6vw;
}
body.home #welcome.cy-custom div.container div.row div.col-md-7.content-col h1 {
	font-size: 6vw;
}
body.home #welcome.cy-custom div.container div.row div.col-md-7.content-col h1 span {
	font-size: 100%;
}
body.home .grid-row .heading-box h2 {
	font-size: 6vw;
}
}/* END DESKTOP */
