
html { background-color: rgb(243, 239, 230); background-size: auto; background-repeat: repeat;  }

* { outline: 0;  }

p { margin-bottom: 20px; }

a { cursor: pointer;}

:root {
    --primary-color: #222222; /* #222 if var(--primary-color) is not defined */
    --secondary-color: #C9BCA8; /* #aaa if var(--secondary-color) is not definied */
    --third-color: #887C6A;
    --header-font: 'Poppins', serif;
    --body-font: 'Poppins', sans-serif;
}

.is-sticky {
    position: sticky;
    top: 0;
}

.primary {
    background-color: var(--primary-color);
}

.secondary {
    background-color: var(--secondary-color);
}

.third {
    background-color: var(--third-color);
}

body {
    max-width: 1400px;
    margin: auto;
    background-color: transparent;
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #333;
}

body.ur-fixed-now {
    position:fixed;
}

a {
    color: var(--primary-color);
    display: block;
}

.nav-visible {
    position: absolute;
    left: 0;
    width: 100%;
    transition: all .5s linear;
    display: flex;
    flex-direction: column;
    text-align: center;
    top: 81px;
    transition: all 1s ease-in-out;
    opacity: 1;
}

.mobile-toggle {
    display: block;
    width: 100%;
    padding: 10px 2%;
    cursor: pointer;
    text-align: right;
}


button.primary:hover {
    background-color: var(--third-color); 
}

.white-background {
    background-color: white;
}

.has-shadow {
    box-shadow: 0px 0px 10px rgba(0,0,0,.2);
}

.rounded {
    border-radius: 5px;
}

.outlined {
    background-color: transparent;
    color: var(--primary-color);
    border: solid 3px var(--primary-color);
}

button.outlined:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.outlined.light {
    background-color: transparent;
    color: #f2f2f2;
    border: solid 3px #f2f2f2;
}

.has-no-padding {
    padding: 0;
}

.has-more-padding {
    padding: 3%;
}

.has-more-padding-y {
    padding-top: 3%;
    padding-bottom: 3%;
}

.has-more-padding-x {
    padding-left: 3%;
    padding-right: 3%;
}

h1,h2,h3,h4,h5,h6 {
    font-size: 40px;
    font-family: var(--header-font);
    text-rendering: optimizelegibility;
    line-height: 50px;
    font-weight: 700;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-auto {
    margin: auto;
}

.p-top-zero {
    padding-top: 0;
}

header {
    position: relative;
    top: 0;
    left: auto;
    width: 100%;
    max-width: 1400px;
    z-index: 9999;
    height: auto;
    padding: 5px 20px 5px;
    border-bottom: solid 7px var(--secondary-color);
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,.2);
    padding: 0;
}

header.transparent {
    background-color: transparent;
    border: none;
    box-shadow: none;
    background-image: linear-gradient(rgba(0,0,0,.8), transparent);
}

header.transparent .main-navigation .navbar-item, 
header.transparent .main-navigation .navbar-item a {
    color: white;
}

.transparent.outlined {
    background-color: transparent;
    border: solid 3px white;
    color: white;
}

section, footer  {
    padding: 5rem 3%;
    background: transparent;
}

main, aside  {
    min-height: 300px;
    background: transparent;
}

.jumbotron {
    padding: 50px;
}

header .columns {
    margin: auto;
}

.content {
    max-width: 1200px;
}

.columns > .columns {
    max-width: 100%;
    margin: 0;
}

header .columns:last-child {
    margin-bottom: 0;
}

header nav ul {
    display: flex;
    font-family: var(--body-font);
    justify-content: center;
}



header nav ul li:last-child {
    border-right: none;
}

nav a {
    color: #333;
    padding: 3px 10px;
    font-weight: bold;
    opacity: .7;
    transition: all .2s ease-in-out;
}

nav a:hover {
    opacity: 1;
    transition: all .2 ease-in-out;
    transform: scale(1.05);
}

header .brand img {
    max-height: 80px;
    padding: 5px 5px 10px;
}

header .main-navigation {
    font-size: 17px;
}

button {
    border-radius: 50px;
    border: none;
    padding: 10px 15px;
    margin: 10px 1% 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    transform: none;
    transition: all 20ms linear;
    cursor: pointer;
    font-family: var(--body-font);
    color: #fff;
}

header button {
    margin: 0;
}

input {
    padding: 12px 35px;
    margin: 10px 1% 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    transform: none;
    transition: all 20ms linear;
    font-family: var(--body-font);
}

/* button.outlined {
    background-color: transparent;
    border: solid 3px #fff;
    color: #fff;
} */

footer {
    margin-top: 100px;
    padding-bottom: 3rem;
    background: var(--primary-color);
    border-top: solid 10px var(--secondary-color);
}

.footer-nav {
    font-family: var(--header-font);
    font-size: 1.8rem;
}

.footer-credits {
    margin-top: 30px;
    width: 100%;
    color: #808080;
}

.footer-credits a {
    color: var(--secondary-color);
    opacity: .8;
    font-weight: bold;
    display: inline;
}

footer .logo {
    max-width: 250px;
}


.hero.welcome {
    background-image: url(../images/kenny-royer-real-estate.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 500px 3% 0;
    border-bottom: solid 10px var(--secondary-color);
}


.section-title {
    opacity: .2;
    text-transform: uppercase;
}

.breadcrumbs {
    padding-bottom: 0;
}

.hero .image img {
    max-width: 350px;
    margin: auto;

}

.inner-page-wrap {
    padding-top: 50px;
}

.featured.listings .pagination {
    display: none !Important;
}



.listings .card {
    padding: 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,.2);
    transform: none;
    transition: all .1s ease-in-out;
    cursor: pointer !important;
    border: none;
}

.listings .card:hover {
    padding: 0;
    box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    /* transform: scale(.98);
    transition: all .1s ease-in-out; */
    cursor: pointer;
}

.listings .info {
    padding: 25px;
    font-size: 1rem;
}

.listings .info p, .listing .description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    margin-top: 10px;
}

.listings .info p br {
    margin-bottom: 20px;
}

.listings .details {
    font-weight: bold;
    font-size: 1.4rem;
}

.listing-type {
    position: absolute;
    bottom: -20px;
    left: 20px;
    padding: 5px 10px;
    color: #fff;
}

.listing .title {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 35px;
}

.listing .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--third-color);
}

.listing .info {
    padding: 35px 20px 10px;
}

.listing .info .listing-type {
    bottom: auto;
    top: auto;
    margin-top: -50px;
}

.listing .image {
    max-height: 250px;
    overflow: hidden;
}

.listing .description {
    margin: 15px auto;
    max-height: 150px;
}

.primary-listing-details {
    background: white;
    position: sticky;
    top: 5%;
    padding: 20px;
}

.listing-status {
    margin: 15px 0 0;
    position: relative;
    display: inline-block;
}

.listing-images {
    margin-bottom: 30px;
    display: block;
}

.listing-images ul {
    overflow: hidden;
}

.listing-images ul li {
    display: block;
    max-width: 100px;
    float: left;
    margin: 5px;
}

.listing-images ul li:nth-child(n+8) {
    display: none;

}

.listing-images ul li:first-child {
    display: block;
    max-width: none;
    width: 100%;
    float: none;
}


.post-list .post-card {
    font-size: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.post-list .post-card .container {
    background: #fff;
    padding: 10px;
}

.post-card .post-title {
    font-size: 2rem;
    line-height: 2.5rem;
}






.lead-capture {
    padding-top: 25px;
}

.lead-capture form input {
    width: 100%;
    margin-top: 0;
    padding: 10px 15px;
}

.lead-capture form #submit {
    border: none;
    cursor: pointer;
}


.lead-capture form #submit:hover {
    background-color: var(--third-color);
}



/* .services .column {
    display: flex;
} */

.slick-prev::before, .slick-next::before {
    color: black !important;
    font-size: 25px !important;
}

.services-slider {
    margin: auto;
}

.services-slider .card {
    box-shadow: none;
    padding: 0px;
    margin: 20px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 300px;
    transform: none;
    transition: all 20ms linear;
    cursor: pointer;
}

.services-slider .card-content {
    box-shadow: 0px 0px 10px rgba(0,0,0,.1);
    padding-top: 40%;
    left: 0;
    bottom: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 99;
    background-image: linear-gradient( rgba(0,0,0,0), rgba(0,0,0,0.7));
}

.card-content h1 {
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    position: absolute;
    left: 7%;
    bottom: 7%;
    max-width: 90%;
    line-height: 2.2rem;
    text-shadow: 0px 3px 5px rgba(0,0,0,.3);
}

.intro {
    margin-top: -150px;
    padding-bottom: 0;
}



.intro .ctas {
    text-align: center;
}

.intro img {
    width: 100%;
    max-width: 400px;
    max-height: 100%;
    height: auto;
}

.search {
    padding: 20px 0 0 0;
    margin-bottom: -20px;
}

.search input {
    width: 40%;
    float: left;
}

.search button {
    float: right;
}

.search select {
    width: 100%;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 0;
}

.team-img img {
    max-width: 170px;
    z-index: 99;
    margin-top: -5%;
}

.about img {
    max-width: 80%;
}

.get-in-touch {
    padding-top: 50px;
}

.get-in-touch form {
    display: block;
    margin: 1% auto 5%;
}

.get-in-touch form input {
    width: 48%;
    float: left;
    padding: 20px;
    font-size: 16px;
    border: solid 2px #aaa;
    margin: 10px 1% 10px 0;
    background: #fff;
}

.get-in-touch form input#submit {
    width: auto;
    float: none;
    padding: 12px 25px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    margin: 0 auto;
    background: var(--primary-color);
}

.get-in-touch form input#submit:hover {
    background-color: var(--third-color);
}

.get-in-touch form textarea {
    width: 98%;
    float: none;
    padding: 20px;
    font-weight: bold;
    font-size: 16px;
    border: solid 2px #aaa;
    margin: 10px 1% 10px 0;
    background: #fff;
}

.testimonials {
    background-size: cover;
    background-position: center;
    padding: 5rem 5%;
}

.faq.toggle {
    margin: 20px 0;
    padding: 5%;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: none !important;
    background-color: #eee;
}

.faq.toggle h6::after {
    content: '+';
    color: #666666;
    padding: 0px 10px;
    font-size: 50px;
}


.faq.toggle h6 {
    margin-bottom: 0;
}

.faq.toggle.opened h6 {
    margin-bottom: 10px;
}

.faq.toggle .readmore {
    display: none;
    transition: all .5s linear;
    transform: opacity(0);
}

.faq.toggle.opened .readmore {
    display: block;
    transition: all .5s linear;
    transform: opacity(1);
}

.page-title {
    margin-bottom: 20px;
}




@media (min-width: 981px) {
    
    header nav ul li {
        padding: 5px;
        text-transform: uppercase;
        border-right: solid 1px #ddd;
    }




.content h1 { font-size: 3rem; }
.content h2 { font-size: 2.8rem; }
.content h3 { font-size: 2.6rem; }
.content h4 { font-size: 2.4rem; }
.content h5 { font-size: 2.2rem; }
.content h6 { font-size: 2rem; }


.services-slider .card:hover, .faq.toggle:hover, button:hover {
    transform: scale(.98);
    transition: all 20ms linear;
    box-shadow: 5px 15px 10px rgba(0,0,0,.1);
 }

 .service-image {
     overflow: hidden;
 }

 .service-image.mobile {
     display: none;
 }


 .service-image img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transition: .5s ease-in-out;
    transform: none;
}

/* .service-image img:hover {
    transition: .5s ease-in-out;
    transform: scale(1.1);
} */
 



}


@media (max-width: 980px) {

h1, h2, h3, h4, h5, h6 {
    font-size: 30px;
    line-height: 40px;
}

header .brand {
    max-width: 50%;
    margin: auto;
}

header .nav-cta {
    text-align: center;
    display: none;
}

header {
    height: auto;
}

header .brand {
    max-width: 50%;
    margin: auto 0;
}

header .brand a {
    text-align: center;
}

header .brand img {
    max-height: 70px;
}

.main-navigation {
    display: none;
}

.hero.welcome {
    padding-top: 250px;
}

body, button {
    font-size: 14px;
}

section {
    padding: 3rem 7%;
}

.slick-prev {
    left: -10px;
}

.slick-next {
    right: -10px;
}

.get-in-touch form input {
    width: 98%;
}

.has-no-padding {
    padding: 3%;
}

.intro .column {
    padding: 2%;
}

.intro .ctas {
    text-align: left;
}

.service > .columns {
    padding: 5%;
}

.service-image.desktop {
    display: none;
}


}