/*
 Theme Name:   Primos Land & Home
 Theme URI:    https://generatepress.com
 Description:  Custom theme for Primos Land & Home
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
:root{
    --container-width: 1200px;
    --orange: #DF8127;
    --light-gray: #F4F4F4;
    --gray: #B8B8B8;
    --title-font-family: "Roundkey", sans-serif;
    --subtile-font-famly: 'Lato', sans-serif;
    --body-font-family: 'Roboto', sans-serif;
}

/*
* Typography
* */
/* @font-face {
    font-family: 'Roundkey', sans-serif;
    src: url(https://afc82c794c.nxcli.io/wp-content/themes/primos/assets/fonts/Roundkey-Bold.otf);
    font-weight: 600;
} */
/* @font-face {
    font-family: "Roundkey", sans-serif;
    src: url(https://afc82c794c.nxcli.io/wp-content/uploads/2022/10/Roundkey-Regular.ttf);
    font-weight: normal;
} */
@font-face {
    font-family: "Roundkey";
    font-display: auto;
    font-fallback: sans-serif;
    font-weight: 300;
    src: url(/wp-content/themes/primos/assets/fonts/Roundkey-Light.ttf) format('TrueType');
}
@font-face {
    font-family: "Roundkey";
    font-display: auto;
    font-fallback: sans-serif;
    font-weight: 400;
    src: url(/wp-content/themes/primos/assets/fonts/Roundkey-Regular.ttf) format('TrueType');
}
@font-face {
    font-family: "Roundkey";
    font-display: auto;
    font-fallback: sans-serif;
    font-weight: 600;
    src: url(/wp-content/themes/primos/assets/fonts/Roundkey-Bold.ttf) format('TrueType');
}


/*
* Reset
* */
h1, h2, h3, h4, h5, h6{
    font-family: var(--title-font-family);
    line-height: 1;
}
p, a, button, li, strong, abbr{
    font-family: var(--body-font-family);
}
.site-content{
    flex-wrap: wrap;
    background-color: #fff;
}
/* h1, h2, h3, h4, h5, h6, p{
    margin-bottom: 0;
} */

/*
* Display utils
* */
.d-block{
    display: block;
}
.d-flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.justify-between{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.items-center{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.items-start{
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

/*
* Spacing utils
* */
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.mb-0{
    margin-bottom: 0;
}

/*
* Background utils
* */
.bg-light-gray{
    background-color: var(--light-gray);
}
.bg-orange{
    background-color: var(--orange);
}
.bg-black{
    background-color: #222222;
}
.bg-no-repeat{
    background-repeat: no-repeat ;
}
.bg-cover{
    background-size: cover;
}
.bg-center{
    background-position: center;
}
.bg-center-top{
    background-position: center top;
}

/*
* Text utils
* */
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.text-justify{
    text-align: justify;
}
.text-white,
.text-white:hover,
.text-white:focus,
.text-white:active{
    color: white;
}
.decoration-none{
    text-decoration: none;
}
.text-bold{
    font-weight: 600;
}
.text-shadow{
    text-shadow: 0 5px 7px rgba(0, 0, 0, 0.55);
}
.uppercase{
    text-transform: uppercase;
}
.stretched-link::after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.break-word{
    word-break: break-word;
}

/*
* Typography utils
* */
.text-hero{
    font-size: 85px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}
.text-subtitle{
    font-family: var(--subtile-font-famly);
    font-size: 30px;
    letter-spacing: 0.15em;
}


/*
* Line height utils
* */
.line-height-1\.5{
    line-height: 1.5;
}

/*
* Grid utils
* */
.grid{
    display: grid;
}
.grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));;
}
.grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
.col-span-5{
    grid-column: span 5 / span 5;
}
.col-span-7{
    grid-column: span 7 / span 7;
}
.grid-cols-7-of-12{
    grid-template-columns: calc(100%*7/12) 1fr;
}
.gap-x-2{
    column-gap: 2rem;
}
.gap-y-2{
    row-gap: 2rem;
}
.gap-x-3{
    column-gap: 0.75rem;
}
.gap-x-4{
    column-gap: 4rem;
}
.gap-x-8{
    column-gap: 2rem;
}


/*
* Position utils
* */
.relative{
    position: relative;
}

/*
* Buttons
* */
.btn{
    display: inline-block;
    padding: 15px 40px;
    min-width: 220px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-width: 2px;
    border-style: solid;
    transition: 300ms all ease-in-out;
}
.btn-orange, .btn-orange:active, .btn-orange:visited{
    background-color: var(--orange);
    border-color: var(--orange);
    color: white;
}
.btn-orange:hover{
    color: var(--orange);
    background-color: transparent;
}
.btn-white-outline{
    border-color: white;
    background-color: transparent;
    color: white;
}
.btn-white-outline:hover{
    color: var(--orange);
    background-color: white;
}

/*
* Sections
* */
.section{
    padding: 60px 0;
}
.section-small{
    padding: 30px 0;
}

.section-title{
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}
.section-sub-title{
    font-family: var(--subtile-font-famly);
    font-size: 30px;
    letter-spacing: 0.4em;
}

/*
* Containers
* */
.container{
    width: 80%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

/*
* Rover IDX Section: Listings
* */
.listings__title{
    margin-bottom: 60px;
}
.rover-prop .rover-banner{
    background-color: var(--orange) !important;
}
.rover-prop .rover-banner::before{
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}
.rover-prop-body{
    background-color: white;
}
.rover-prop svg.heart path{
    fill: var(--gray);
}
.rover-prop.fav svg.heart path{
    fill: var(--orange) !important;
}
.rover-prop .rover-prop-dataset.dataset{
    padding: 0 15px 15px 15px !important;
}
.rover-prop.rover-prop--listings .data-mlsid{
    font-size: 16px;
}
.rover-prop.rover-prop--listings .data-mlsid,
.rover-prop.rover-prop--listings .data-mlsid a{
    color: black;
}
.rover-prop.rover-prop--listings .data-mlsid a{
    font-weight: 500;
}
.rover-prop.rover-prop--listings .data-address a{
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}
.rover-prop.rover-prop--listings .data-location,
.rover-prop.land.rover-prop--listings .data-acres{
    color: black;
    font-size: 15px;
    font-weight: 500;
}
.rover-prop.rover-prop--listings .data-price{
    color: var(--orange);
    font-size: 22px;
    font-weight: 600;
    margin: 6px 0;
}
.listing-results-container .rover-prop.rover-prop--listings ul.dataset{
    height: auto;
}
.rover-swipe .prev_next a{
    /* opacity: 1 !important; */
}
.rover-listing-framework .listing-nav-nav{
    margin-left: 0;
}

/*
* Call to Action
* */
.call-to-action{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.call-to-action__title{
    font-size: 85px;
    font-weight: 600;
    text-align: center;
}
.call-to-action--horizontal .call-to-action__title{
    font-size: 55px;
    font-weight: 300;
    margin-bottom: 0;
}
.call-to-action--horizontal .call-to-action__title span{
    font-weight: 600;
}
.call-to-action--horizontal .call-to-action__sub-title{
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 22px;
}
.call-to-action__buttons{
    margin-top: 80px;
    text-align: center;
}
.call-to-action--horizontal .call-to-action__buttons{
    margin-top: 0;
    text-align: right;
}
.call-to-action__btn{
    margin: 0 15px 15px 15px;
}
.call-to-action--horizontal .call-to-action__btn{
    margin: 0 0 0 15px;
}
.call-to-action--horizontal .call-to-action__btn:first-child{
    margin: 0;
}

.call-to-action-with-image::before{
    content: "";
    position: absolute;
    display: block;
    width: calc( 100%/12*4.5 );
    max-width: 590px;
    height: 100%;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.call-to-action-box{
    padding: 30px 60px;
}
.call-to-action-box__title{
    font-size: 48px;
}
.call-to-action-box__text-content{
    font-size: 24px;
}

/*
* Community Listings
* */
.community-listings__text-content{
    margin-bottom: 40px;
    padding: 0 120px;
    font-size: 20px;
}
.community-listings__list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px 30px;
}

.community-listings__list-item {
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    height: 270px;
    background-size: cover;
    background-repeat: no-repeat;
    justify-self: center;
}
.community-listings__list-link{
    font-size: 24px;
}

/*
* Slider
* */
.slider__slide{
    padding: 100px 0 180px 0;
    margin-bottom: 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slider__title{
    margin-bottom: 15px;
}
.slider__subtitle{
    margin-bottom: 60px;

    font-family: var(--subtile-font-famly);
    font-size: 32px;
    letter-spacing: 0.15em;
}
.slider__content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    height: 100%;
}
.slider-navigation{
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
}
.slider-nav{
    display: inline-block;
    padding: 0;
    border: 0;
    width: 55px;
    height: 55px;

    position: relative;

    background-color: rgba( 255, 255, 255, 0.3);
}
.slider-nav:hover,
.slider-nav:active,
.slider-nav:focus{
    background-color: rgba( 255, 255, 255, 0.3);
}
.slider-nav::before{
    content: "";
    border-style: solid;
    border-color: black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    width: 12px;
    height: 12px;
}
.slider-prev::before{
    transform: rotate(135deg);
    margin-right: -2px;
}
.slider-next::before{
    transform: rotate(-45deg);
    margin-left: -2px;
}
.slider-searchform{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 40px;
}
nav.rover-searchpanel.typeahead_single_primos{
    border-width: 0;
    border-radius: 0;
    padding: 10px 15px;
    background-color: rgba( 255, 255, 255, 0.4);
}
nav.rover-searchpanel.typeahead_single_primos .search-panel-container{
    flex-wrap: wrap;
    position: relative;
}
nav.rover-searchpanel.typeahead_single_primos .searchpanel-header{
    display: none;
}
nav.rover-searchpanel.typeahead_single_primos .rover-typedown-frame input.typedown{
    background-color: #fff;
    padding: 15px 20px;
}
nav.rover-searchpanel.typeahead_single_primos .rover-typedown-frame input.typedown::-webkit-input-placeholder{
    font-style: italic;
    color: black;
    opacity: 1;
}
nav.rover-searchpanel.typeahead_single_primos.rover-typedown-frame input.typedown::-moz-placeholder{
    font-style: italic;
    color: black;
    opacity: 1;
}
nav.rover-searchpanel.typeahead_single_primos .rover-typedown-frame input.typedown:-ms-input-placeholder{
    font-style: italic;
    color: black;
    opacity: 1;
}
nav.rover-searchpanel.typeahead_single_primos .rover-typedown-frame input.typedown::-ms-input-placeholder{
    font-style: italic;
    color: black;
    opacity: 1;
}
nav.rover-searchpanel.typeahead_single_primos .rover-typedown-frame input.typedown::placeholder{
    font-style: italic;
    color: black;
    opacity: 1;

}
nav.rover-searchpanel.typeahead_single_primos .search-panel-container.first .rover-col{
    background-color: transparent;
    border: 0;
    /* flex: 0 0 auto; */
}
nav.rover-searchpanel.typeahead_single_primos .search-panel-container .rover-col > ul > li > a{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    padding: 15px 40px;
}
nav.rover-searchpanel.typeahead_single_primos .rover-label{
    line-height: 1.5;
    overflow: visible;
    display: block;
    font-size: 20px;
    padding: 0;
}
nav.rover-searchpanel.typeahead_single_primos .search-panel-container .control-cities{
    flex: 1 0 auto;
}
nav.rover-searchpanel.typeahead_single_primos .search-panel-container .rover-msg-wrapper{
    display: block;
    margin-right: 15px;
    background-color: #fff;
    flex: 0 0 auto;
}
nav.rover-searchpanel.typeahead_single_primos .search-panel-container .search-button-wrapper{
    flex: 0 0 auto;
}
nav.rover-searchpanel .searchpanel-collapse{
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 1000px !important;
}

/**
 * Fix layout homepage slider
 */
#js-slider:not(.slider-initial) > *:not(:first-child){
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    user-select: none;
}

/*
* Hero
* */
.hero{
    padding: 100px 0;
    flex: 1 0 100%;
    order: -20;
}
.hero__breadcrumb{
    font-size: 14px;
}
.hero__title{
    font-size: 85px;
}

/*
* Home Worth
* */
.worth-address-heading{
    display: none;
}
#home-worth-panels .address-background > .rover-form-row{
    width: 100% !important;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: rgba(255, 255,255, 0.4);
}
#home-worth-panels .form-control{
    background-color: white !important;
    padding: 15px 20px !important;
    display: inline-block;
    border: none;
}
#home-worth-panels .address-background{
    min-height: 0 !important;
}
#home-worth-panels .address-background button.get-started{
    width: auto !important;
    background-color: var(--orange) !important;
    color: white !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    text-transform: uppercase;
    position: relative !important;
    height: auto !important;
    padding: 15px 40px !important;
    border: none;
    right: auto !important;
    top: auto !important;
    margin-left: 15px !important;
}

/*
* Process
* */
.steps-slider{
    margin-top: 80px;
}
.step__image{
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.step__title{
    position: relative;
    margin-top: 10px;
    padding-right: 36px;
    font-size: 22px;
}
.step__title::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 25px;
    height: 30px;
    background-image: url(/wp-content/uploads/2022/10/primos-sell-home-arrow-right-icon.png);
}
.step:last-child .step__title::after{
    content: none;
}
.steps-navigation{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
    left: 0;
}
.step-nav{
    border: 0;
    padding: 0;
    background-color: transparent;
}
.step-nav:hover,
.step-nav:active,
.step-nav:focus{
    background-color: transparent;
}

/*
* Listings
* */
nav.rover-searchpanel .rover-col.border{
    border: 0 !important;
}

/*
* Footer
* */
.site-footer__logo{
    margin-bottom: 30px;
}
.site-footer__credits{
    margin-bottom: 0;
}
.site-footer__widgets{
    display: grid;
    column-gap: 2rem;
    row-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
}
.site-footer .widget-title{
    color: white;
    font-family: var(--body-font-family);
    font-size: 20px;
    font-weight: 600;
}
.site-footer .menu-item a{
    display: block;
    position: relative;
    color: white;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
}
.site-footer .menu-item a::before{
    content: "";
    border-style: solid;
    border-color: white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 12px;
    transform: rotate(-45deg);
}
.site-footer__contact{
    margin-top: 50px;
}
.site-footer__contact-icon:first-child{
    margin-left: 0;
}
.site-footer__contact-icon{
    margin-right: 10px;
    margin-left: 10px;
}
.site-footer__contact-icon:last-child{
    margin-right: 0;
}
/* .site-footer__address-contact{
    margin-top: 50px;
} */
.site-footer__address-contact-icon{
    margin-right: 10px;
}
.site-footer__address-contact-item{
    margin-bottom: 15px;
}
.site-footer__credits a{
    color: white;
    text-decoration: none;
}

/*
* Top nav
* */
.top-nav{
    padding: 8px 0;
}
.top-nav__phone{
    margin-right: 25px;
}
.top-nav__phone-icon,
.top-nav__email-icon{
    margin-right: 10px;
}
.top-nav__contact-icon{
    margin-right: 15px
}
.top-nav__contact-icon:last-child{
    margin-right: 0;
}

/*
* Header
* */
.main-navigation a{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a{
    color: white !important;
    background-color: var(--orange);
}
.main-navigation > .menu-item:last-child a{
    border: 2px solid var(--orange);
}
.main-navigation .main-nav ul li a{
    line-height: 2;
    padding-top: 15px;
    padding-bottom: 15px;
}
.site-logo-mobile-image{
    max-width: 140px;
}

/*
* Contact form
* */
.rover-contact-form{
    padding: 30px;
    background-color: var(--light-gray);
}
div#send_rover_contact{
    padding: 15px 40px !important;
    margin: 20px 15px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: white !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    background-color: var(--orange) !important;
}
.rover-button-text{
    line-height: 1 !important;
    margin: 0 !important;
}
.rover-contact-form input,
.rover-contact-form textarea{
    background-color: #fafafa;
    border: 1px solid #ddd;
}
.rover-container-fluid{
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}
.rover-contact-form .rover-row{
    padding: 0 15px;
}
.rover-contact-form .rover-row:not(.comments){
    width: 50%;
}
.g-recaptcha > div{
    width: 100% !important;
}
.rover-contact-form .rover-row.rover-recaptcha{
    width: 100%;
}
.contact__text-content{
    font-size: 20px;
}

/*
* Header
* */
.site-header{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/*
* Sidebars
* */
.sidebar .widget_nav_menu{
    background-color: var(--light-gray);
}
.sidebar .widget_nav_menu .widgettitle{
    font-size: 40px;
    text-transform: uppercase;
}
.sidebar .widget_nav_menu a{
    /*color: black;*/
    transition: 300ms color ease-in-out;
}
.sidebar .widget_nav_menu a:hover{
    /*color: var(--orange);*/
}

/*
* Single property
* */
.inside-article{
    padding: 0 !important;
}
.entry-header{
    padding: 60px 40px;
    text-align: center;
    background-color: var(--light-gray);
}
.entry-title{
    color: var(--orange);
    font-weight: 600;
    font-size: 60px;
    text-transform: uppercase;
}
.rover-prop-detail-framework{
    padding: 40px;
}

/*
* Rover IDX: Featured framemework
* */
.rover-results-framework .rover-prop.commercial .rover-prop-body{
    padding-bottom: 21px;
}

/*
* Desktop view port
* */
@media (min-width: 992px) {
    /*
    * Display utils
    * */
    .d-none-desktop{
        display: none;
    }

    /*
    * Grid utils1
    * */
    .grid-desktop{
        display: grid;
    }
    .grid-cols-1-desktop{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .grid-cols-2-desktop{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-cols-3-desktop{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid-cols-4-desktop{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .grid-cols-5-desktop{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .grid-cols-6-desktop{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .grid-cols-7-desktop{
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    .gap-x-2-desktop{
        column-gap: 2rem;
    }
    .gap-y-2-desktop{
        row-gap: 2rem;
    }

    /*
    * Sections
    * */
    .section-desktop{
        padding: 60px 0;
    }
}

/*
* Tablet and mobile view port
* */
@media (max-width: 991.98px){
    /*
    * Reset
    * */
    /* .site-content{
        flex-wrap: nowrap;
    } */

    /*
    * Typography utils
    * */
    .text-subtitle{
        font-size: 25px;
    }

    /*
    * Text utils
    * */
    .text-center-tablet-and-mobile{
        text-align: center;
    }

    /*
    * Display utils
    * */
    .d-none-tablet-and-mobile{
        display: none;
    }
    .flex-column-tablet-and-mobile{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /*
    * Spacing utils
    * */
    .mx-auto-tablet-and-mobile{
        margin-right: auto;
        margin-left: auto;
    }

    /*
    * Background utils
    * */
    .bg-image-none-tablet-and-mobile{
        background-image: none !important;
    }
    /*
    * Grid
    * */
    .grid-cols-7-of-12,
    .grid-cols-2{
        grid-template-columns: 1fr;
    }

    /*
    * Slider
    * */
    .slider__slide{
        padding: 80px 0 220px 0;
    }
    .slider__subtitle{
        font-size: 18px;
    }
    .slider-navigation{
        /* top: calc(40px - 28px); */
        width: 100%;
    }
    .slider-searchform{
        bottom: 15px;
    }

    /*
    * Sections
    * */
    .section-title,
    .entry-title{
        font-size: 48px;
    }

    /*
    * Call to action
    * */
    .call-to-action__title{
        font-size: 64px;
    }
    .call-to-action__buttons{
        margin-top: 0px;
    }
    .call-to-action--horizontal .call-to-action__buttons{
        margin-top: 40px;
        text-align: center;
    }
    .call-to-action--horizontal .call-to-action__btn,
    .call-to-action--horizontal .call-to-action__btn:first-child{
        margin: 0 15px 15px 15px;
    }
    .call-to-action-box__title{
        font-size: 36px;
    }
    .call-to-action-box__text-content{
        font-size: 18px;
    }

    /*
    * Community listings
    * */
    .community-listings__text-content{
        padding: 0;
        font-size: 18px;
    }

    /*
    * Hero
    * */
    .hero{
        padding: 60px 0;
    }

    /*
    * Home worth
    * */
    #home-worth-panels .address-background > .rover-form-row{
        flex-wrap: wrap;
    }
    #home-worth-panels .form-control .pac-target-input{
        flex: 1 0 100%;
    }
    #home-worth-panels .address-background button.get-started{
        flex: 1 0 100%;
        margin-left: 0 !important;
    }

    /*
    * Process
    * */
    .step{
        padding: 0 30px;
    }
    .step__image{
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
    .step__title{
        padding-right: 0;
        text-align: center;
    }
    .step__title::after{
        content: none;
    }

    /*
    * Footer
    * */
    .site-footer__widgets{
        grid-template-columns: 1fr;
    }

    /*
    * Header
    * */
    .site-header{
        background-color: var(--orange) !important;
    }
    .site-logo{
        display: none !important;
    }
    .mobile-menu-control-wrapper{
        background-color: transparent !important;
    }
    .mobile-menu-control-wrapper .menu-toggle,
    .mobile-menu-control-wrapper .menu-toggle:hover,
    .mobile-menu-control-wrapper .menu-toggle:focus,
    .has-inline-mobile-toggle #site-navigation.toggled{
        background-color: transparent;
    }
    .mobile-menu-control-wrapper .menu-toggle{
        line-height: 1;
    }
    .gp-icon.icon-menu-bars path{
        fill: white !important;
    }
    .gp-icon.icon-menu-bars svg{
        scale: 1.5;
    }
    .site-logo-mobile{
        padding: 15px 0;
    }
    .inside-header{
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .top-nav__phone{
        margin-right: 0;
    }
    .contact-info-mobile{
        position: fixed;
        top: 5px;
        left: 30px;
        z-index: 999;
    }
    .main-navigation .main-nav ul:not(.sub-menu) li:not([class*="current-menu-"]):hover > a,
    .main-navigation .main-nav ul:not(.sub-menu) li.sfHover:not([class*="current-menu-"]) > a{
        color: white !important;
    }
    /*
    * Contact Form
    * */
    .rover-contact-form .rover-row:not(.comments){
        width: 100%;
    }
}

/*
* Tablet view port
* */
@media (min-width: 768px) and (max-width: 991.98px){
    /*
    * Typography
    * */
    .text-hero{
        font-size: 64px;
    }

    /*
    * Community Listings
    * */
    .community-listings__list{
        grid-template-columns: repeat(2, minmax(0 , 1fr));
    }
}

/*
* Mobile view port
* */
@media (max-width: 768px){
    /*
    * Reset
    * */
    .site-content{
        flex-wrap: nowrap;
    }

    /*
    * Typography
    * */
    .text-hero{
        font-size: 64px;
    }

    /*
    * Sections
    * */
    .section{
        padding: 40px 0;
    }

    /*
    * Slider
    * */
    .slider-searchform nav.rover-searchpanel{
        /* padding: 52px 15px 10px 15px; */
        padding: 0;
    }
    nav.rover-searchpanel.typeahead_single_primos{
        background-color: transparent;
    }
    .slider-searchform nav.rover-searchpanel .search-panel-container .control-cities{
        flex: 1 0 100%;
        margin-bottom: 15px;
    }
    .slider-searchform nav.rover-searchpanel .search-panel-container .search-button-wrapper{
        flex: 1 0 100%;
    }
    .slider-searchform nav.rover-searchpanel .search-panel-container .rover-msg-wrapper{
        position: absolute;
        left: 0;
        top: -52px;
        color: white;
        font-weight: 600;
        background-color: transparent;
        display: none;
    }

    /*
    * Call to action
    * */
    .call-to-action-box{
        padding: 30px;
    }

    /*
    * Community listings
    * */
    .community-listings__list{
        grid-template-columns: 1fr;
    }
}