@charset "UTF-8";

html, body {
    height: 100%;
}

body {
    background-color: #f2f1E4 !important;
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1420px !important;
}

.container-fluid {
    padding: 0;
    margin: 0;
}

img, object, embed, video {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}

a:link, a:visited {
    color: #D2624A;
    text-decoration: none;
}

a:hover, a:active {
    color: #333333;
}

/*
a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
*/


/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

/*Page Fade End*/


/* Site Headers */

h1, h2, h3, h4, h5, h6 {
    color: #262523;
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 700;
    font-style: normal;

}

h1 {
    font-size: 2.3em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

h2 {
    font-size: 2.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-weight: bold;
}

h3 {
    font-size: 1.6em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h4 {
    font-size: 1.5em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h5 {
    font-size: 1.3em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h6 {
    font-size: 1.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.orange-text {
    color: #d2624a !important;
}

.text-light {
    color: #F2F1E3 !important;
}

.med-txt {
    font-size: 1.3em;
}

.large-txt {
    font-size: 1.5em;
}

.xlarge-txt {
    font-size: 3em;
}

.address-txt {
    font-size: 1em;
}


p {
    font-size: .85em;
    line-height: 1.7em;
    color: rgb(38, 35, 37);
}

.logo-size {
    width: 70%;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.logo-center {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 67%;
}

.header {
    padding: 10px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.top-bar {
    max-height: 155px;
    z-index: 4000;
}

#top_page .nav-item .nav-link:hover {
    color: #dddddd !important;
    background-color: #FFFFFF !important;
}

.active a {
    text-decoration: underline solid #232323;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

.content-margin-top {
    margin-top: 150px;
}

.bg-light {
    background-color: #f2f1E4 !important;
}

.bg-dark {
    background-color: #d2624a !important;
}

.border {
    border-color: #d2624a !important;
}

.navbar {
    min-height: 45px;
}

.nav-padding {
    padding-left: 1rem;
}

.navbar-nav.navbar-center {
    /*position: relative;*/
    /*left: 10%;*/
    /*transform: translatex(-50%);*/
}

.navbar-nav .nav-item {
    font-size: 1.4em;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.sociallinksBox .fa {
    font-size: .8em;
}

.nav-item:last-of-type {
    border-right: none;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #d2624a !important;
}

.navbar-nav .nav-link {
}

.search-bar {
    min-width: 310px;
    margin-bottom: 40px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.mini-basket-w {
    width: 320px;
    font-size: .9em;
}

.form-control {
    width: 100%;
    border-radius: 0;
}

.phone-number {
    font-size: 1.4em;
    margin-right: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.sociallinksBox {
    text-align: center;
}

.sociallinksBox img {
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 8px;
}

/* For FontAwesome icons */
.sociallinksBox a, .sociallinksBox a {
    display: inline-block !important;
    border-radius: 50% !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    color: #262523 !important;
    width: 25px !important;
    height: 25px !important;
    padding: 5px 0px 0px 0px !important;
    font-size: 14px !important;
    line-height: 14px !important;
}

.sociallinksBox a:last-of-type {
    margin-right: 0px;
}

.sociallinksBox a:first-of-type {
    margin-left: 0px;
}

.sociallinksBox a:link, .sociallinksBox a:visited {
    background-color: transparent;
    color: #262523;
}

.sociallinksBox a:hover, .sociallinksBox a:active {
    background-color: transparent;
    color: #262523;
}


.topsociallinks {
    margin-top: 30px;
}

.topsociallinks a {
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 7px 0px 0px 0px !important;
    font-size: 26px !important;
    line-height: 26px !important;
}

.topsociallinks a:link, .topsociallinks a:visited {
    background-color: transparent;
    color: #FFFFFF;
}

.topsociallinks a:hover, .topsociallinks a:active {
    background-color: transparent;
    color: #FFFFFF;
}

.bottom-social a {
    border: 2px solid #262523;
    display: inline-block !important;
    border-radius: 15% !important;
    color: #262523 !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 6px 0px 0px 0px !important;
    font-size: 26px !important;
    line-height: 26px !important;
}

.contact-button {
    margin-top: 20px;
    font-size: .75em !important;
}


/*Nav Stuff*/
.navbar {
    position: relative;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0rem 1rem;
    z-index: 2000;
    margin-bottom: 20px;
}

.section-padding {
    margin-top: 120px;
}

.xlarge-section-padding {
    margin-top: 180px;
    margin-bottom: 180px;
}

.featured-padding {
    padding-top: 200px;
    padding-bottom: 200px;
}

.btn-primary {
    color: #FFFFFF !important;
    background-color: #D2624A !important;
    font-size: 1em;
    border: none;
    padding-bottom: 19px;
    padding-top: 19px;
    padding-right: 25px;
    padding-left: 25px;
    border-radius: 0px !important;
}

.btn-sm {
    padding: 14px;
    font-size: .9em;
}

.btn-primary:hover {
    background-color: #535353 !important;
    color: #f2f1E4 !important;
}

.btn-outline-primary {
    color: #D2624A !important;
    border-color: #D2624A !important;
    padding: 8px;
    border-radius: 0px;
}

.btn-outline-primary:hover {
    background-color: #a84e3b !important;
    color: #f2f1E4 !important;
    border-color: #a84e3b !important;
}

.btn-outline-secondary {
    padding-left: 28px;
    padding-right: 28px;
    background-color: #D2624A;
    border-radius: 0;
    color: #f2f1E4 !important;
    border-color: #f2f1E4 !important;
}

.btn-outline-secondary:hover {
    background-color: #a84e3b !important;
    color: #FFFFFF !important;
}

.slider-bg {
    background-size: cover;
    background-position-x: center;
    background-position-y: -130px;
    background-repeat: no-repeat;
}

.slider-spacer {
    min-height: 760px;
}

.carousel-item p {
    font-size: 1.3em;
}

.carousel-inner {
    max-height: 500px;
    border-radius: 5px;
}

.carousel-caption {
    position: relative !important;
    margin-top: -15rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.2em;
    padding: 20px;
    background-color: rgba(100, 100, 100, 0.80);
    right: 0px !important;
    left: 0px !important;
    bottom: 0px !important;
}

.carousel-caption p {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 2em;
    line-height: 1.3em;
    padding-right: 60px;
    padding-left: 60px;
}

.carousel-control-prev {
    width: 70px !important;
}

.carousel-control-next {
    width: 70px !important;
}

.blurb-border {
    border: 2px solid #fff;
}

.blurb-images {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;

}

.ml-badge {
    position: absolute;
    top: 70px;
    left: -48px;
    width: 24%;
}

.ml-unsplash {
    position: absolute;
    top: 311px;
    right: -35px;
    width: 49%;
}

.featured-splash {
    border: 2px solid #fff;
    position: absolute;
    top: 300px;
    right: 0px;
    width: 40%;
}

.featured-splash-container {
    background-size: cover;
    background-repeat: no-repeat;
    width: 270px;
    height: 350px;
    border: 2px solid #fff;
    float: right;
    background-position-x: center;
    position: absolute;
    right: 10px;
    bottom: -30px;
}

.featured-splash-container-right {
    background-size: cover;
    background-repeat: no-repeat;
    width: 270px;
    height: 350px;
    border: 2px solid #fff;
    float: left;
    background-position-x: center;
    position: absolute;
    bottom: 30px;
    left: -27px;
}

.ml-web-badge {
    bottom: -35pX;
    position: absolute;
    right: 177px;
    width: 35%;
}

.scale-up {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

.scale-down {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.darken {
    filter: brightness(50%);
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.lighten {
    filter: brightness(100%);
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.blurb-button {
    margin-bottom: 60px;
}

.blurb-caption {
    margin-top: -204px;
    position: inherit;
}

.blurb-text {
    font-size: 1.1em;
    line-height: 1.4em;
    padding-top: 12px;
    padding-bottom: 4px;
    color: #312f2f;
    padding-right: 30px;
}

.blurb-bg {
    min-height: 600px;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
}

.sold-blurb-bg {
    min-height: 330px;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
}

.sold-image {
    position: absolute;
    top: -37px;
    left: -49px;
}

.inside-blurb {
    border-radius: 10px;
    background-position-x: center;
    max-height: 348px;
    background-size: 100%;
    transition: all 0.3s ease-in-out;
}

.inside-blurb-hover {
    background-position-x: center;
    background-size: 115%;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.inside-blurb-title {
    left: 40px;
    position: absolute;
    color: #FFFFFF !important;
}

.prop-price {
    font-size: 1em;
    margin-bottom: 0px;
}

.border-2 {
    border-width: 2px !important;
}

.home-text {
    font-size: 1.4em;
}

.testimonal-heading {
    font-size: 4em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.testimonal-padding {
    padding-left: 220px;
    padding-right: 220px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.quote-size {
    width: 4% !important;
}

.quote-left {
    margin-right: 0px;
}

.quote-right {
    margin-left: 0px;
}

.testimonal-bottom {
    margin-bottom: 10px;
}

.footer-bg {
    background-color: #e6e5da;
}

footer {
    position: relative;
    height: 150px;
    clear: both;
}

.footer-menu {
    font-weight: bold;
    line-height: 2em;
}

footer .list-group-item.active, footer .list-group-item {
    padding: 0.2rem 1.25rem;
    background: none;
    border: none;
    color: #262523;
}

footer .list-group-item a {
    color: #333333;
}

footer .list-group-item a:hover {
    color: #a84e3b;
}

.logo-footer {
    width: 60%;
    margin-bottom: 20px;
}

.five-star {
    width: 40%;
}

.five-star-text {
    font-size: .8em;
}

.star-rating .yellowstar {
    color: #E6CE31 !important;
}

.sticky .header {
    margin-top: -33px;
}

.sticky .top-bar {
    max-height: 140px;
    z-index: 4000;
}

.sticky .navbar-nav .nav-item {
    font-size: .9em;
}

.sticky .logo-size {
    width: 54%;
}

.sticky .fa-phone {
    display: inline-block;
}

.sticky .phone-number {
    display: none;
}

.sticky .search-bar {
    margin-bottom: 10px;
}

.user-panel .card-body {
    padding: 1rem;
}

#message-outer {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 5000;
}

#message-inner {
    display: inline-block;
    margin: 0 auto;
    width: 45%;
    padding-top: 30px;
}

/* Real Estate Styles */


.quick-search-bg {
    background-color: #D2624A;
}

.search-box-bg {
    background-color: #e6e5da;
}

.search-box .form-group {
    display: inline-block;
    width: 97%;
    padding-top: 12px;
}

.search-box h5 {
    padding-top: 30px;
    padding-right: 10px;
    color: #FFFFFF;
}

.search-box select {
    color: #D2624A;
    border: none;
    border-radius: 0px;
    background-color: #f2f1E4;
}

.search-box input {
    border: none;
    border-radius: 0px;
    background-color: #f2f1E4;
}

.search-box ::placeholder {
    color: #D2624A;
    opacity: 1; /* Firefox */
}

.search-box ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #D2624A;
}

.search-box .search-title {
    width: 145px;
    display: inline-block !important;
    margin-left: 0px;
}

.search-box .searchBttn {
    padding-top: 24px;
}

.search-box .is-invalid {
    background-image: none;
}

.search-box .invalid-feedback {
    display: none;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-content: center;
    justify-content: center;
    font-size: 1.8rem;
    padding: 0.1rem;
    border: 0.25rem solid #D2624A;
    vertical-align: middle;
    border-radius: 0.5rem;
    margin-left: 3px;
}

input[type="checkbox"]::before {
    width: 1.3rem;
    height: 1.3rem;
    content: '\2714';
    transform: scale(0);
    bottom: 1.15rem;
    position: relative;
    font-size: 1.15em;
    color: #D2624A;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]:hover {
    color: black;
}

.check-box-container {
    background-color: #F2F1E3;
    min-height: 38px;
    vertical-align: middle;
    margin-right: 4px;
    margin-left: 4px;
    padding-top: 12px;
    padding-left: 6px;
    color: #D2624A;
}

.check-box-container .form-group {
    padding: 0px !important;
    margin: 0px !important;
}

.check-box-container label {
    padding-top: 6px;
    padding-left: 6px;
    color: #D2624A;
}

#advanced-options .form-group {
    padding-top: 0px;
    text-align: left;
}

#advanced-options .search-title {
    margin-left: -8px !important;
}

#advanced-options .search-title h5 {
    padding-top: 6px;
}

input[type="checkbox"][disabled] {
    opacity: 0.2;
    cursor: not-allowed;
}

.signup-box h5 {
    padding-top: 30px;
    padding-right: 10px;
    color: #FFFFFF;
}


.signup-box input {
    padding-left: 30px;
    border-radius: 0px;
    background-color: #f2f1E4;
    border: 2px solid #D2624A;
    height: 45px;
}

.signup-box ::placeholder {
    color: #D2624A;
    opacity: 1; /* Firefox */
}

.signup-box ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #D2624A;
}

.signup-box .search-title {
    width: 145px;
    display: inline-block !important;
    margin-left: -29px;
}

#water-access {
    padding-top: 4px !important;
}

.icon {
    position: absolute;
    margin-top: 12px;
    margin-left: 11px;
    color: #D2624A;
}

.blog-list-detail {
    margin-bottom: 100px;
}

.blog-arrow {
    width: 20%;
}

/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .form-control {
        width: 75%;
    }

    .logo-center {
        top: 59%;
    }

    .slider-bg {
        background-position-x: center;
        background-position-y: center;
    }

    .carousel-inner {
        max-height: 685px;
    }

    .logo-center {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 37%;
    }

    .header {
        padding: 0px;
    }

    .logo-size {
        width: 30%;
    }

    .sticky .logo-size {
        width: 19%;
    }

    .navbar-nav .nav-item {
        font-size: .9em;
    }

    .form-control {
        width: 100%;
    }

    .logo-size {
        width: 20%;
    }

    .content-margin-top {
        margin-top: 198px;
    }

    .search-box .search-title {
        margin-left: -29px;
    }

    .blog-arrow {
        width: 90%;
    }

    .large-txt {
        font-size: 2.5em;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navbar-nav .nav-item {
        font-size: 1.2em;
    }

    .logo-container {
        max-width: none;
    }

    .carousel-caption {
        font-size: 1.4em;
        line-height: 1.4em;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .nav-padding {
        padding-left: 10rem;
    }

    .navbar-nav .nav-item {
        font-size: 1em;
        padding-top: 22px;
        font-weight: 700;
    }

    .navbar-nav .nav-link {
        padding-right: 1.9rem !important;
        padding-left: 1.9rem !important;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .logo-size {
        width: 20%;
    }
}