﻿@charset "UTF-8";
/* CSS Document */

:root {
    /* red ba0c2f
  grey 53565A
  petrol blue 00313c
  */


    --primary-brand-dark: #ae1d27;
    --primary-brand-color: #C1202C;
    --primary-brand-light: #d7222e;
    --primary-brand-shadow: rgb(255 0 19 / 30%);
    --secondary-brand-dark: #00313c;
    --secondary-brand-color: #00313c;
    --secondary-brand-light: #00313c;
    --secondary-brand-shadow: rgba(255, 255, 255, 0.2);
    --color-grey-light: #F7F7F7;
    --color-grey-medium: #3E3E3E;
    --color-grey-dark: #262626;
    --color-success: #2abb7f;
    --color-warning: #EB974E;
    --color-error: #EC644B;
    --color-information: #08AFA9;
    --font-header: 'Playfair Display', Times, Arial, serif;
    --font-body: "Poppins", sans-serif;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

* {
    outline: none;
}

a {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: "";
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: inherit;
}



html {
    font-size: 62.5%;
    height: 100%;
}

body {
    background: #F7F7F7;
    font-family: var(--font-body);
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
}



input, select, textarea {
    font-family: var(--font-body);
}


/* Center the content within a reasonably wide container. */
.inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    padding-left: 20px;
    padding-right: 20px;
}

    .inner.inner--large {
        max-width: 1550px;
    }

    .inner.inner--small {
        max-width: 1000px;
    }

    .inner.inner--xs {
        max-width: 800px;
    }




/* Headers */
/* header { width: 100%; } */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    letter-spacing: 0.03px;
    line-height: 1.5;
}

h1 {
    font-size: 2.8rem;
}

    h1.large {
        font-size: 3.4rem;
    }

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.6rem;
}

h6 {
    font-size: 1.5rem;
}


/* .main-title-box { } */
.main-title-box.main-title-box--center {
    text-align: center;
}

/* .main-title-box .main-title {} */
.main-title-box.main-title-box--light .main-title {
    color: #fff;
}

.main-title-box .main-subtitle {
    display: inline-block;
    font-size: 1.7rem;
    margin-top: 15px;
    color: #464646;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.main-title-box.main-title-box--light .main-subtitle {
    color: #dfdfdf;
}



.subtitle {
    float: left;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
    color: #3e3e3e8c;
}



/* colors */
.white {
    color: #fff;
}

.dark {
    color: #333;
}

.inactive {
    color: #ccc;
}

.green {
    color: var(--primary-brand-color);
}

.greenhov {
    color: var(--primary-brand-dark);
}

.purple {
    color: #5f3954;
}

.purplehov {
    color: #49273f;
}

/* backgrounds */
.whitebg {
    background: #fff;
}

.darkbg {
    background: #333;
}

.inactivebg {
    background: #ccc;
}

.greenbg {
    background: var(--primary-brand-color);
}

.greenhovbg {
    background: var(--primary-brand-dark);
}

.purplebg {
    background: #5f3954;
}

.purplehovbg {
    background: #49273f;
}

.tooltip {
    position: relative;
    display: inline-block;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 260%;
        background-color: #006765;
        color: #fff;
        text-align: center;
        border-radius: 2px;
        padding: 5px 2px 7px;
        position: absolute;
        z-index: 9999;
        bottom: -80%;
        left: -80%;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 1.2rem;
        letter-spacing: 0.02rem;
    }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: -40%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent #006765 transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

    .tooltip:last-of-type .tooltiptext {
        left: -57%;
    }

.bodysm .tooltip .tooltiptext {
    bottom: 1%;
}



/* ========================================================================== #BUTTONS ========================================================================== */

.btn-1 {
    float: left;
    color: #fff;
    background: var(--primary-brand-color);
    text-decoration: none;
    line-height: 4.8rem;
    font-size: 1.8rem;
    padding: 0 30px;
    text-transform: capitalize;
    font-weight: 300;
    letter-spacing: 0.1rem;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
}

    .btn-1:hover {
        background: var(--primary-brand-dark);
        color: #fff;
    }

.btn-box {
    text-align: center;
    display: table;
    float: none;
    margin: 0 auto;
}

.btn-1.gr {
    background: #00acae;
}

    .btn-1.gr:hover {
        background: #00cdcf;
    }

.btn-1.rent {
    color: #fff;
    background: #5f3954;
}

.btn-1.renthover {
    background: #49273f;
    color: #fff;
}



.m-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 18px;
    text-align: center;
    transition: all ease-in-out 200ms;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

    .m-btn.m-btn--block {
        width: 100%;
        display: block;
    }


.m-btn--primary {
    box-shadow: 5px 5px 0 var(--primary-brand-shadow);
    color: #fff;
    background: var(--primary-brand-color);
    border: 2px solid var(--primary-brand-color);
}

    .m-btn--primary:hover {
        box-shadow: none;
        background-color: var(--primary-brand-color);
    }

.m-btn--secondary {
    box-shadow: 5px 5px 0 var(--secondary-brand-shadow);
    color: #ffffff; /* background: var(--primary-brand-color); */
    border: 2px solid #ffffff;
}

    .m-btn--secondary:hover {
        box-shadow: none;
        background-color: #fff;
        color: var(--color-grey-dark);
    }

.m-btn--dark {
    box-shadow: 5px 5px 0 rgba(32, 32, 32, 0.164);
    color: rgb(255, 255, 255);
    background: var(--color-grey-dark);
    border: 2px solid var(--color-grey-dark);
}

    .m-btn--dark:hover {
        box-shadow: none;
        background-color: #000;
    }

.m-btn--white {
    box-shadow: 5px 5px 0 rgba(228, 228, 228, 0.2);
    color: rgb(27, 27, 27);
    background: rgb(255, 255, 255);
    border: 2px solid #eee;
}

    .m-btn--white:hover {
        box-shadow: none;
        background-color: rgb(255, 255, 255);
    }

.m-btn--primary-o {
    color: #F2555B;
    background-color: rgba(255 255 255 / 100%);
    box-shadow: inset 4px 4px 0 #fff, 5px 5px 0 rgba(242,85,91,.2);
    border: 2px solid #F2555B;
}

    .m-btn--primary-o:hover {
        box-shadow: none;
        background-color: rgba(242,85,91,.25);
    }

.m-btn--dark-o {
    color: #262626;
    background-color: rgb(255 255 255 / 100%);
    box-shadow: inset 4px 4px 0 #fff, 5px 5px 0 rgb(0 0 0 / 10%);
    border: 2px solid #7d7d7d;
}

    .m-btn--dark-o:hover {
        box-shadow: none;
        background-color: rgb(140 140 140 / 25%);
    }


.m-btn.m-btn--small {
    padding: 8px 16px;
    font-size: 1.2rem;
}


/* ========================================================================== #FORMS ========================================================================== */

/* .m-form { } */

.m-form.m-form--inline {
    display: flex;
}

    .m-form.m-form--inline .m-form-group {
        margin: 0 10px 0px;
        flex: 1;
    }

        .m-form.m-form--inline .m-form-group:first-of-type {
            margin-left: 0;
            flex: 3 1 auto;
        }

        .m-form.m-form--inline .m-form-group:last-of-type {
            margin-right: 0;
        }

        .m-form.m-form--inline .m-form-group input {
            border-bottom-right-radius: 0;
            border-top-right-radius: 0;
        }

        .m-form.m-form--inline .m-form-group + .c-btn {
            border-bottom-left-radius: 0;
            border-top-left-radius: 0;
        }

/* Group */
.m-form-group {
    margin-bottom: 0.75rem;
}

    .m-form-group.m-form-group--flat {
        margin-bottom: 0;
    }

    /* .m-form-group.m-form-group--inline label { font-weight: 400; margin-bottom: 0; } */

    /* .m-form-group.m-form-group--inline label:not(:last-child) { margin-right: 0.75rem; } */

    /* .m-form-group.m-form-group--icon { position: relative; } */

    /* .m-form-group.m-form-group--icon i { position: absolute; top: calc(50% - 0.5rem); right: 0; } */

    .m-form-group label {
        font-size: 1.2rem;
        color: #b9b9b9;
    }

        .m-form-group label .m-form-req {
            color: var(--color-error);
        }

/* Control */
.m-form-control {
    border: none;
    border-bottom: 1px solid rgb(230, 230, 230);
    border-radius: 0;
    background: none;
    display: block;
    font-family: inherit;
    font-size: inherit;
    height: auto;
    line-height: 1.5;
    padding: 10px 0;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%; /* - */
    min-height: 47px;
    -webkit-appearance: none;
    font-size: 1.5rem;
    color: #000;
}

    .m-form-control.placeholder {
        color: #807f7f;
        font-weight: 400;
        font-style: italic;
    }

    .m-form-control:-moz-placeholder {
        color: #807f7f;
        font-weight: 400;
        font-style: italic;
    }

    .m-form-control::-moz-placeholder {
        color: #807f7f;
        font-weight: 400;
        font-style: italic;
    }

    .m-form-control:-ms-input-placeholder {
        color: #807f7f;
        font-weight: 400;
        font-style: italic;
    }

    .m-form-control::-webkit-input-placeholder {
        color: #807f7f;
        font-weight: 400;
        font-style: italic;
    }

    .m-form-control:focus, .m-form-control:hover {
        border-color: var(--primary-brand-color);
    }

    .m-form-control.m-form-control--file {
        border: 0;
        box-shadow: none;
        height: auto;
        padding: 0;
        width: auto;
    }

        .m-form-control.m-form-control--file:focus, .m-form-control.m-form-control--file:hover {
            box-shadow: none;
        }

        .m-form-control.m-form-control--file.is-error {
            box-shadow: none;
        }

    .m-form-control.m-form-control--textarea {
        height: auto;
        resize: vertical;
    }






    .m-form-control.is-error {
        border-color: #ff4136;
    }


/* Select */
.m-form-select-wrapper {
    position: relative;
}

    .m-form-select-wrapper i {
        position: absolute;
        top: calc(50% - 0.75rem);
        right: 15px;
        pointer-events: none;
    }

/* Help */
.m-form-help {
    color: #807f7f;
    font-size: 0.75rem;
    margin-top: 0.375rem;
}

    .m-form-help.is-error {
        color: #ff4136;
    }

    .m-form-help.m-form-help--block {
        display: inline-block;
        width: 100%;
        margin-bottom: 15px;
    }


.m-form-subtext {
    font-size: 1rem;
    color: #4a4a4a;
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}


@media all and (min-width: 48em) {
    .m-form.m-form--inline .m-form-group {
        flex: auto;
    }
}

@media all and (min-width: 62em) {
    .m-form-group {
        margin-bottom: 1.5rem;
    }
}




/* Checkbox */
.m-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 41px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: #696969;
    user-select: none;
}

    .m-checkbox.m-checkbox--full {
        width: 100%;
        margin: 0;
        margin-bottom: 15px;
    }

    .m-checkbox.m-checkbox--inline {
        margin: 0 0px 0 10px;
        vertical-align: bottom;
        display: inline;
        padding: 2px;
    }

    .m-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .m-checkbox .m-checkbox-tick {
        position: absolute;
        top: -3px;
        left: 0;
        height: 31px;
        width: 31px;
        background-color: rgba(255, 255, 255, 0);
        border: 1px solid #e2e2e2;
    }

        .m-checkbox .m-checkbox-tick::after {
            content: "";
            position: absolute;
            display: none;
            left: 11px;
            top: 3px;
            width: 8px;
            height: 17px;
            border: solid var(--primary-brand-color);
            border-width: 0px 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    .m-checkbox input[type="checkbox"]:checked ~ .m-checkbox-tick:after {
        display: block;
    }






/* top Navigation */
nav.top, nav.top ul {
    float: right;
}

nav.top {
    padding-top: 10px;
    border-left: 0px solid #ededed;
    display: inline-block;
}

.bodysm nav.top {
    display: block;
}

nav.top li {
    float: left; /* margin: 0 0 0 20px; */
    padding: 0 10px;
}

    nav.top li:first-child {
        margin: 0;
    }

    nav.top li:last-child {
        padding-right: 0px;
    }

nav.top a {
    float: left;
    line-height: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    text-decoration: none;
    font-size: 1.3rem;
    letter-spacing: 0.05rem;
    text-shadow: rgba(59, 59, 59, 0.7) 1px 1px 3px;
}

nav.top.darktext a, nav.top.darktext a:hover, nav.top.darktext a.active, nav.top.darktext a.active2 {
    color: #333;
    text-shadow: none !important;
}

nav.top a:after {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0;
    background: none;
    height: 1px;
    transition: background .3s ease;
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -o-transition: background .3s ease;
}

nav.top a:hover, nav.top a.active, nav.top a.active2 {
    color: #ffffff;
}

    nav.top a:hover:after, nav.top a.active:after, nav.top a.active2:after {
        background: var(--primary-brand-color);
    }

nav.top .fa {
    font-size: 1.4rem;
    margin-left: 2px;
    position: relative;
}

nav.top ul ul.sub {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    background: #333;
    color: #ccc;
    z-index: 99999;
    height: 0;
    overflow: hidden;
    transition: all .1s ease;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -o-transition: all .1s ease;
}

    nav.top ul ul.sub li {
        float: left;
        margin: 0;
        text-align: center;
    }

    nav.top ul ul.sub span {
        float: left;
        width: 100%;
        line-height: 2.2rem;
        font-size: 1.4rem;
        letter-spacing: 0.08rem;
        font-weight: 300;
        color: #aaa;
    }

    nav.top ul ul.sub .add span {
        display: inline;
        width: auto;
        float: none;
    }

    nav.top ul ul.sub .nm {
        font-size: 2rem;
        letter-spacing: 0.1rem;
        font-weight: 500;
        color: #00aeb0;
    }

    nav.top ul ul.sub .ph {
        color: #fff;
        margin: 2px 0 14px;
        font-size: 1.6rem;
        letter-spacing: 0.6px;
    }

    nav.top ul ul.sub a {
        color: #fff !important;
        padding: 0;
        line-height: 20px !important;
        text-transform: none;
        letter-spacing: 0.6px;
        font-size: 1.4rem;
        margin: 15px 0 0;
        font-weight: 400;
        width: 100%;
        text-align: center;
    }

        nav.top ul ul.sub a .fa {
            position: relative;
            right: 0;
            margin: 0 0 0 10px;
        }

        nav.top ul ul.sub a:hover {
            background: none;
        }

        nav.top ul ul.sub a:after {
            display: none;
        }

        nav.top ul ul.sub a:hover .fa {
            right: -10px;
        }

    nav.top ul ul.sub.showsub {
        height: auto;
        padding: 25px 20px 30px;
        transition: all .1s ease;
        -webkit-transition: all .1s ease;
        -moz-transition: all .1s ease;
        -o-transition: all .1s ease;
        overflow: visible;
        -webkit-box-shadow: 0px 0px 0px 1200px rgba(51,51,51,0.4);
        -moz-box-shadow: 0px 0px 0px 1200px rgba(51,51,51,0.4);
        box-shadow: 0px 0px 0px 1200px rgba(51,51,51,0.4);
    }

.bodysm nav.top ul ul.sub {
    top: 77px;
}

nav.top ul.social {
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 9999;
}

    nav.top ul.social a {
        line-height: 0;
    }

nav.top ul.info {
    top: 20px;
}

.bodysm nav.top a {
    color: #666;
    text-shadow: none;
}

.bodysm nav.top ul.info {
    float: left;
    top: 0;
}
/*body.overlay:after { content: ""; position: fixed; width: 100%;height: 100%; height: calc(100vh - 0px); top: 0; left: 0; background: rgba(0,0,0,0.5); z-index: 999; }*/

/* Main Navigation */
nav.main, nav.main ul {
    float: right;
}

nav.main { /* margin-right: 30px; */
    clear: right;
}

    nav.main li {
        float: left;
        margin: 0 0 0 40px;
        position: relative;
    }

        nav.main li:first-child {
            margin: 0;
        }

    nav.main a {
        float: left;
        line-height: 66px;
        font-weight: 300;
        text-transform: uppercase;
        color: #fff;
        text-shadow: rgba(59, 59, 59, 0.7) 1px 1px 3px;
        position: relative;
        text-decoration: none;
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
        transition: color .3s ease;
        -webkit-transition: color .3s ease;
        -moz-transition: color .3s ease;
        -o-transition: color .3s ease;
    }

    nav.main.darktext a, nav.main.darktext a:hover, nav.main.darktext a.active, nav.main.darktext a.active2 {
        color: #333;
        text-shadow: none !important;
    }

    nav.main a:after {
        content: "";
        position: absolute;
        width: 100%;
        bottom: 10px;
        left: 0;
        background: transparent;
        height: 2px;
        transition: background .3s ease;
        -webkit-transition: background .3s ease;
        -moz-transition: background .3s ease;
        -o-transition: background .3s ease;
    }

    nav.main a:hover, nav.main a.active, nav.main a.active2 {
        color: #fff;
    }

        nav.main a:hover:after, nav.main a.active:after, nav.mian a.active2:after {
            background: var(--primary-brand-color);
        }

    nav.main .fa {
        font-size: 1.5rem;
        margin-left: 5px;
        position: relative;
    }

    nav.main a.home i {
        font-size: 2rem;
        top: 0px;
    }

.bodysm nav.main a {
    color: #444;
    text-shadow: none;
}

ul.socmob {
    display: none;
}

.logo-btm {
    display: none;
}

/* Dropdown */
nav.main .subul {
    height: 0;
    overflow: hidden;
    padding: 0 10px;
    position: absolute;
    background-color: var(--primary-brand-color);
    z-index: 9008;
    top: 80%;
    width: 260%;
    left: -160%;
    transition: all .1s ease;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -o-transition: all .1s ease;
}

    nav.main .subul:after {
        position: absolute;
        background: url(https://www.simonbrien.com/images/subarw.png) no-repeat;
        content: "";
        left: 50%;
        top: -6px;
        margin: 0 0 0 -18px;
        width: 36px;
        height: 0;
    }

    nav.main .subul li {
        margin: 0;
        width: 100%;
        height: auto;
        line-height: normal;
        float: left;
        width: 100%;
    }

    nav.main .subul a {
        line-height: 4rem;
        color: #fff;
        font-size: 1.2rem;
        letter-spacing: 0.8px;
        font-weight: 300;
        width: 100%;
        text-align: center;
        text-shadow: none;
        border-bottom: 1px solid #025e5b;
    }

    nav.main .subul li:last-child a {
        border-bottom: none;
    }

    nav.main .subul a:hover {
        color: #fff;
        border-bottom-color: #00504d;
    }

    nav.main .subul a:after {
        display: none;
    }

    nav.main .subul.showsub {
        height: auto;
        padding: 10px 10px 10px;
        overflow: visible;
        transition: all .4s ease;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -o-transition: all .4s ease;
    }

    nav.main .subul .dl-back {
        display: none;
    }


/* Mobile Navigation */
#dl-menu .tbl {
    height: 100%;
    width: 100%;
}

#dl-menu .toptr {
    height: 103px;
    display: table-row;
}

#dl-menu .li9 {
    height: 11.1111111111%;
}

#dl-menu .li8 {
    height: 12.5%;
}

#dl-menu .li7 {
    height: 14.2%;
}

#dl-menu .li6 {
    height: 16.6666666667%;
}

#dl-menu .li5 {
    height: 20%;
}

#dl-menu .li4 {
    height: 25%;
}

.navbtn span:before, .navbtn span:after {
    position: absolute;
    content: "";
}

.navbtn {
    float: right;
    position: relative;
    top: 18px;
    display: none;
    cursor: pointer;
    height: 40px;
    right: 5px;
    padding: 20px 10px 10px;
    z-index: 9999;
}

    .navbtn span, .navbtn span:before, .navbtn span:after {
        width: 30px;
        height: 2px;
        background: #333;
        display: block;
    }

#wtop.grad .navbtn span, #wtop.grad .navbtn span:before, #wtop.grad .navbtn span:after {
    background: #fff;
}

.bodysm #wtop.grad .navbtn span, .bodysm #wtop.grad .navbtn span:before, .bodysm #wtop.grad .navbtn span:after {
    background: #333 !important;
}

.navbtn span:before {
    margin: -7px 0 0;
}

.navbtn span:after {
    margin: 7px 0 0;
}

.navbtn span {
    -webkit-transition-duration: 0s;
    -webkit-transition-delay: .2s;
    -moz-transition-duration: 0s;
    -moz-transition-delay: .2s;
    transition-duration: 0s;
    transition-delay: .2s;
}

.navbtn.open span, .bodysm #wtop.grad .navbtn.open span {
    background-color: rgba(0,0,0,0.0) !important;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
}

.navbtn span:before {
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: .2s;
    -webkit-transition-delay: .2s, 0;
    -moz-transition-property: margin, -moz-transform;
    -webkit-transition-duration: .2s;
    -moz-transition-delay: .2s, 0;
    transition-property: margin, transform;
    transition-duration: .2s;
    transition-delay: .2s, 0;
}

.navbtn.open span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -webkit-transition-delay: 0, .2s;
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition-delay: 0, .2s;
    transition-delay: 0, .2s;
}

.navbtn span:after {
    -webkit-transition-property: margin;
    -webkit-transition-duration: .2s;
    -webkit-transition-delay: .2s, 0;
    -moz-transition-property: margin;
    -moz-transition-duration: .2s;
    -moz-transition-delay: .2s, 0;
    transition-property: margin;
    transition-duration: .2s;
    transition-delay: .2s, 0;
}

.navbtn.open span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -webkit-transition-delay: 0, .2s;
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transition-delay: 0, .2s;
    transition-delay: 0, .2s;
}

.totop {
    opacity: 0;
    visibility: hidden;
}






/* ========================================================================== #NEW NAV ========================================================================== */

.nav-outer {
    position: relative;
    z-index: 50;
    width: 100%;
}

    .nav-outer.is-fixed {
        position: fixed;
        left: 0;
        top: 0;
    }

.nav-spacer {
    height: 136px;
}

.nav-top {
    background: var(--color-grey-dark);
    padding: 0px 0;
    height: 41px;
    transition: all ease-in-out 200ms;
}

.nav-top-inner {
    display: flex;
    justify-content: flex-end;
    transition: all ease-in-out 200ms;
}

.nav-top a {
    font-size: 1.4rem;
    color: #b7b7b7;
    margin-left: 14px;
    line-height: 41px;
    display: inline-block;
}
/* .nav-top .nav-top-text-links { } */
.nav-top .nav-top-social-links {
    margin-left: 20px;
    padding-left: 10px;
    border-left: 1px solid rgb(255 255 255 / 19%);
}

    .nav-top .nav-top-social-links a {
        margin-left: 10px;
    }


/* NAV CONTACT DROPDOWN */

/* .nav-top-contact-outer {}
.nav-top-contact-hover {} */
.nav-top-contact-content {
    position: absolute;
    right: 0;
    top: 41px;
    width: 100%;
    max-width: 1300px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all ease-in-out 500ms;
    pointer-events: none;
    z-index: 2;
    background: #333333;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
}

.nav-top-contact-outer:hover .nav-top-contact-content {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
}

.nav-top-contact-flex {
    display: flex;
}

.nav-top .nav-contact-box {
    padding: 15px;
    text-align: left;
    flex: 1;
}

.nav-top .nav-contact-image {
    padding-bottom: 65%;
    background-position: center;
    background-size: cover;
    margin: 0;
}

.nav-top .nav-contact-title {
    display: inline-block;
    widtH: 100%;
    margin: 0;
    font-size: 1.75rem;
    line-height: 2.5;
    font-weight: 500;
}

.nav-top .nav-contact-phone {
    display: inline-block;
    widtH: 100%;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.7;
}

.nav-top .nav-contact-email {
    display: inline-block;
    widtH: 100%;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.7;
}

.nav-top .nav-contact-link {
    display: inline-block;
    widtH: 100%;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.7;
}


.nav-outer.nav-outer--condensed .nav-top-contact-content {
    position: fixed;
    right: 0;
    left: 0;
    max-width: 100%;
    top: 76px;
}

.nav-outer.nav-outer--condensed .nav-top .nav-contact-box {
    padding: 25px;
}



@media(min-width:1100px) and (max-width:1200px) {
    .body-condensed .nav-top-social-links {
        display: none;
    }
}

@media(max-width:1000px) {

    .nav-top-contact-content {
        position: fixed;
        right: 0;
        left: 0;
        max-width: 100%;
        top: 76px;
    }

    .nav-top-contact-flex {
        display: inline-block;
        width: 100%;
    }

    .nav-top .nav-contact-box {
        display: inline-block;
        width: calc(50% - 8px);
        float: left;
        margin-right: 16px;
        margin-bottom: 15px;
    }

        .nav-top .nav-contact-box:nth-of-type(2n) {
            margin-right: 0;
        }

        .nav-top .nav-contact-box:nth-of-type(2n+1) {
            clear: both;
        }
}



.nav-main {
    background: var(--primary-brand-color);
    padding: 8px 0px;
}

    .nav-main .nav-main-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    /* .nav-main .nav-main-logo {} */
    .nav-main .nav-main-logo img {
        height: 75px;
        max-width: 220px;
    }

        .nav-main .nav-main-logo img.pad {
            padding: 8px 0;
        }

    .nav-main .nav-main-right {
        display: flex;
        align-items: center;
        transition: all ease-in-out 200ms;
    }

    .nav-main .nav-main-links a {
        font-size: 1.65rem;
        color: #fff;
        margin-left: 30px;
        letter-spacing: 0.3px;
    }

        .nav-main .nav-main-links a:first-of-type {
            margin-left: 0;
        }

        .nav-main .nav-main-links a.nav-main-link-mobile {
            display: none;
        }

    .nav-main .nav-main-cta {
        margin-left: 25px;
    }



.nav-main-button {
    position: absolute;
    top: 9px;
    right: 10px;
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    text-align: center;
    background: #0000001f;
    color: #fff;
    border-radius: 50px;
    line-height: 2.6;
}

    .nav-main-button.nav-main-button--slide {
        display: none;
    }

    .nav-main-button.nav-main-button--mobile {
        display: none;
    }


/* Condensed Nav */

@media(min-width:1001px) {

    /* .nav-outer.nav-outer--condensed {} */

    .nav-outer.nav-outer--condensed .nav-top {
        height: 0px;
        padding: 0;
    }

        .nav-outer.nav-outer--condensed .nav-top a {
            line-height: 23px;
            color: #fff;
            font-size: 1.3rem;
        }

    .nav-outer.nav-outer--condensed .nav-top-inner {
        position: absolute;
        top: 0px;
        right: 300px;
        z-index: 2;
    }

    .nav-outer.nav-outer--condensed .nav-top .nav-top-contact-hover {
        line-height: 78px;
    }

    .nav-outer.nav-outer--condensed .nav-top .nav-top-social-links a {
        line-height: 78px;
    }

    .nav-outer.nav-outer--condensed .nav-main .nav-main-logo img {
        max-width: 180px;
        height: 57px;
    }

    .nav-outer.nav-outer--condensed .nav-main .nav-main-right {
        margin-right: 80px;
    }

    .nav-outer.nav-outer--condensed .nav-main-links {
        display: none;
    }

    .nav-outer.nav-outer--condensed .nav-main-button.nav-main-button--slide {
        display: block;
    }


    .nav-slide {
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background: rgb(43 43 43 / 70%);
        opacity: 0;
        transform: translate(100%, 0px);
        transition: all ease-in-out 300ms;
        backdrop-filter: blur(10px);
        z-index: 3;
    }

        .nav-slide.nav-slide--open {
            opacity: 1;
            transform: translate(0%, 0px);
        }

    .nav-slide-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 30px;
    }

    .nav-slide-links {
        flex: 5;
        display: flex;
        flex-direction: column;
        padding-left: 15%;
        padding-top: 50px;
    }

        .nav-slide-links a {
            margin-bottom: 30px;
            font-size: 4rem;
            font-weight: 500;
            color: #fff;
        }

    .nav-slide-social {
        display: flex;
        padding-left: 15%;
        align-items: flex-end;
    }

        .nav-slide-social a {
            font-size: 2rem;
            margin-right: 15px;
            color: #fff;
        }
}


@media(max-width:1260px) {

    .nav-main .nav-main-links a {
        margin-left: 10px;
        margin-left: 12px;
        font-size: 1.5rem;
    }
}


@media(max-width:1200px) {

    /* .nav-main .nav-main-links a { margin-left: 10px; margin-left: 12px; font-size: 1.5rem; } */

    .nav-main .nav-main-cta {
        margin-left: 10px;
        padding: 7px 8px;
    }
}


@media(max-width:1500px) {

    .nav-outer.nav-outer--condensed .nav-top .nav-top-rental-link {
        display: none;
    }
}



@media(max-width:1000px) {

    .nav-main-links.nav-main-links--full {
        display: none;
    }

    .nav-slide {
        display: none;
    }


    .nav-main-button.nav-main-button--mobile {
        display: block;
    }

    .nav-outer .nav-top {
        height: 0px;
        padding: 0;
    }

        .nav-outer .nav-top a {
            line-height: 23px;
            color: #fff;
        }

    .nav-outer .nav-top-inner {
        position: absolute;
        top: 29px;
        right: 290px;
        z-index: 2;
    }

    .nav-outer .nav-main .nav-main-logo img {
        max-width: 180px;
        height: 57px;
    }

    .nav-outer .nav-main .nav-main-right {
        margin-right: 80px;
    }

    .nav-outer .nav-top .nav-top-rental-link {
        display: none;
    }


    .nav-outer .nav-main-links {
        display: none;
        position: fixed;
        top: 69px;
        left: 0;
        width: 100%;
        background: #363636;
    }

        .nav-outer .nav-main-links a {
            margin: 0;
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 10px;
            border-bottom: 1px solid rgb(0 0 0 / 12%);
        }

            .nav-outer .nav-main-links a:last-of-type {
                border: none;
            }

    .nav-main .nav-main-links a.nav-main-link-mobile {
        display: inline-block;
    }




    .nav-outer .nav-main-links.active {
        display: block;
    }



    /* .nav-outer .nav-main-button { display: block; } */

    .nav-spacer {
        height: 77px;
    }
}



@media(max-width:850px) {

    .nav-top .nav-top-text-links {
        display: none;
    }

    .nav-top .nav-top-social-links {
        margin: 0;
        border: 0;
    }
}

@media(max-width:630px) {

    .nav-outer .nav-top-inner {
        right: 100px;
    }

    .nav-main .nav-main-cta {
        display: none;
    }
}

@media(max-width:420px) {

    .nav-outer .nav-top-inner {
        display: none;
    }
}



/* ========================================================================== #HOME SLIDER ========================================================================== */

.home-slider {
}

    .home-slider .slide {
        height: calc(100vh - 200px);
        display: block;
        width: 100%;
        background-position: center;
        background-size: cover;
    }

    .home-slider .inner--slider {
        height: 100%;
        position: relative;
    }

    .home-slider .cap-outer {
        position: absolute;
        bottom: 60px;
        right: 15px;
        display: flex;
        flex-direction: column;
        text-align: right;
        align-items: flex-end;
    }

        .home-slider .cap-outer .cap-one {
            font-size: 3rem;
            color: #fff;
            background: rgb(0 0 0 / 60%);
            padding: 15px;
            margin-bottom: 10px;
            display: inline-block;
        }

        .home-slider .cap-outer .cap-two {
            font-size: 1.7rem;
            color: #fff;
            background: rgb(0 0 0 / 75%);
            padding: 10px;
        }


/* Owl Nav */
.owl-carousel.home-slider .owl-nav button {
    position: absolute;
    font-size: 6rem;
    color: #fff;
    top: calc(50% - 6rem);
}

    .owl-carousel.home-slider .owl-nav button.owl-prev {
        left: 10px;
    }

    .owl-carousel.home-slider .owl-nav button.owl-next {
        right: 10px;
    }


/* Owl Dots */
.owl-carousel.home-slider .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
}

    .owl-carousel.home-slider .owl-dots .owl-dot {
        height: 10px;
        width: 10px;
        background: #eee;
        margin: 0 3px;
        border-radius: 50px;
    }

        .owl-carousel.home-slider .owl-dots .owl-dot.active {
            background: #e20b0a;
        }


.home-slider .owl-item.active .cap-one {
    animation: 0.8s .2s fadeInRight both;
}

.home-slider .owl-item.active .cap-two {
    animation: 1s .4s fadeInRight both;
}



.home-slider-placeholder {
    height: calc(100vh - 200px);
    background: #eee;
    position: relative;
}

.home-slider-spinner {
    width: 10em;
    height: 10em;
    border-top: 1em solid #d4d4d4;
    border-right: 1em solid transparent;
    animation: spinner 0.4s linear infinite;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    left: calc(50% - 5em);
    top: calc(50% - 5em);
}

    .home-slider-spinner .home-slider-spinner-head {
        width: 1em;
        height: 1em;
        border-radius: 50%;
        margin-left: 7.7em;
        margin-top: 0.3em;
        background-color: #d4d4d4;
    }

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}


.home-slider .slide-rebrand {
    background: var(--primary-brand-color);
}

    .home-slider .slide-rebrand .slide-rebrand-outer {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 25px;
        padding: 0 80px 40px;
        color: #fff;
        text-align: center;
    }

    .home-slider .slide-rebrand .slide-logo {
        width: 100%;
        max-width: 700px;
    }

    .home-slider .slide-rebrand .slide-text {
        font-size: 3rem;
        margin-top: 40px;
        letter-spacing: 0.3px;
        line-height: 1.5;
    }

    .home-slider .slide-rebrand .slide-btn {
        font-size: 1.8rem;
        box-shadow: none;
    }




@media(max-width:768px) {

    .home-slider .slide {
        height: calc(100vw / 1.3);
        min-height: 400px;
    }

    .home-slider .cap-outer .cap-one {
        font-size: 2rem;
        padding: 8px;
    }

    .home-slider .cap-outer .cap-two {
        font-size: 1.5rem;
        padding: 8px;
    }

    .home-slider-placeholder {
        height: calc(100vw / 1.3);
        min-height: 400px;
    }

    .owl-carousel.home-slider .owl-nav button {
        display: none !important;
        font-size: 4rem;
    }

    .home-slider .slide-rebrand .slide-rebrand-outer {
        gap: 20px;
        padding: 0 40px 30px;
    }

    .home-slider .slide-rebrand .slide-text {
        font-size: 2rem;
        margin-top: 20px;
        letter-spacing: 0.3px;
        line-height: 1.5;
    }

    .home-slider .slide-rebrand .slide-btn {
        font-size: 1.4rem;
        box-shadow: none;
    }
}

@media(max-width:480px) {
    .home-slider .slide-rebrand .slide-rebrand-outer {
        padding: 0 25px 30px;
    }

    .home-slider .slide-rebrand .slide-text {
        font-size: 1.8rem;
        margin-top: 20px;
        letter-spacing: 0.3px;
        line-height: 1.5;
    }
}





/* ========================================================================== #HOME SEARCH ========================================================================== */

.home-search-outer {
    display: inline-block;
    width: 100%;
}

.home-search {
    position: relative;
    z-index: 10;
    margin-top: -45px;
    background: #fff;
    display: flex;
    box-shadow: 0 3px 22px -3px rgb(0 0 0 / 20%);
}

.home-search-left {
    flex: 6;
    padding: 20px 40px;
    background: #fff;
}


.home-search-text {
    margin-bottom: 20px;
}

    .home-search-text h2 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .home-search-text span {
        font-size: 1.6rem;
        letter-spacing: 0.4px;
        color: #9a9a9a;
    }

.search-row {
    display: flex;
    width: 100%;
    gap: 8px;
    align-items: center;
}

    .search-row.search-row--top {
    }

        .search-row.search-row--top .m-form-group:nth-of-type(1) {
            flex: 2;
        }

        .search-row.search-row--top .m-form-group:nth-of-type(2) {
            flex: 8;
        }

    .search-row.search-row--bottom {
    }

        .search-row.search-row--bottom .m-form-group:nth-of-type(1) {
            flex: 2;
        }

        .search-row.search-row--bottom .m-form-group:nth-of-type(2) {
            flex: 2;
        }

        .search-row.search-row--bottom .m-form-group:nth-of-type(3) {
            width: 50px;
            text-align: center;
        }

        .search-row.search-row--bottom .m-form-group:nth-of-type(4) {
            flex: 4;
        }

.home-search .advancedbutton {
    font-size: 2.2rem;
    color: var(--color-grey-medium);
    transition: all ease-in-out 200ms;
    cursor: pointer;
}

    .home-search .advancedbutton:hover {
        color: var(--primary-brand-color);
    }



.home-search-right {
    flex: 5;
    padding: 5px;
    background: #262626;
    display: flex;
    gap: 5px;
}

.home-search-cta {
    background: rgba(102, 102, 102, 0.199);
    flex: 1;
    position: relative;
    background-position: center;
    background-size: cover;
}

    .home-search-cta::before {
        content: "";
        position: absolute;
        background: rgb(0,0,0);
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0.7;
        transition: all ease-in-out 300ms;
    }

    .home-search-cta .home-search-cta-link {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        color: #fff;
        padding: 0px 6px 10px 6px;
        font-size: 1.4rem;
        display: flex;
        justify-content: space-between;
        font-weight: 500;
        transition: all ease-in-out 400ms;
    }

        .home-search-cta .home-search-cta-link i {
        }

    .home-search-cta:hover::before {
        opacity: 0.9;
    }

    .home-search-cta:hover .home-search-cta-link {
        bottom: 5px;
    }





@media(max-width:1000px) {

    .home-search {
        flex-direction: column;
    }

    .home-search-cta {
        padding-bottom: 35%;
    }
}


@media(max-width:768px) {

    .home-search-left {
        padding: 15px;
    }

    .home-search-text {
        text-align: center;
    }


    .search-row.search-row--bottom {
        flex-wrap: wrap;
        gap: 0;
    }

        .search-row.search-row--bottom .m-form-group {
            display: inline-block;
        }

            .search-row.search-row--bottom .m-form-group:nth-of-type(1) {
                flex: none;
                width: calc(50% - 5px);
                display: inline-block;
                margin-right: 5px;
                float: left;
                margin-bottom: 14px;
                clear: both;
            }

            .search-row.search-row--bottom .m-form-group:nth-of-type(2) {
                flex: none;
                width: calc(50% - 5px);
                display: inline-block;
                margin-left: 5px;
                float: left;
                margin-bottom: 14px;
            }
            /* .search-row.search-row--bottom .m-form-group:nth-of-type(3) { width: 50px; text-align: center; } */
            .search-row.search-row--bottom .m-form-group:nth-of-type(4) {
                flex: none;
                width: calc(100% - 50px);
                float: left;
            }
}



@media(max-width:480px) {

    .home-search-right {
        flex-direction: column;
    }

    .home-search-cta {
        width: 100%;
        padding-bottom: 45%;
    }
}





/* ========================================================================== #HOME BOXES ========================================================================== */

.home-boxes {
    padding: 50px 0;
}

.home-boxes-flex {
    display: flex;
    gap: 10px;
    margin-top: 50px;
}

.home-box {
    flex: 1;
    padding-bottom: 20%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .home-box::before {
        content: "";
        position: absolute;
        background: rgb(0,0,0);
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0.2;
        transition: all ease-in-out 300ms;
        pointer-events: none;
        transition: all ease-in-out 200ms;
    }

    .home-box .home-box-content {
        position: absolute;
        bottom: -80px;
        left: 0;
        display: inline-block;
        width: 100%;
        padding: 10px;
        transition: all ease-in-out 200ms;
    }

    .home-box .home-box-title {
        display: inline-block;
        font-size: 2rem;
        background: var(--primary-brand-color);
        padding: 10px 20px;
        color: #fff;
        font-weight: 500;
    }

    .home-box .home-box-text {
        display: inline-block;
        width: 100%;
        font-size: 1.4rem;
        line-height: 1.5;
        color: #fff;
        margin-top: 10px;
        opacity: 0;
        transition: all ease-in-out 200ms;
        min-height: 70px;
    }

    .home-box:hover::before {
        opacity: 0.8;
    }

    .home-box:hover .home-box-content {
        bottom: 0;
    }

    .home-box:hover .home-box-text {
        opacity: 1;
    }



@media (max-width:900px) {

    .home-boxes-flex {
        display: inline-block;
        width: 100%;
    }

    .home-box {
        display: inline-block;
        width: 100%;
        padding-bottom: 60%;
        margin-bottom: 10px;
    }

        .home-box::before {
            opacity: 0.8;
        }

        .home-box .home-box-content {
            bottom: 10px;
        }

        .home-box .home-box-text {
            opacity: 1;
            min-height: 0;
        }
}


@media (max-width:600px) {

    .home-box {
        height: 305px;
    }
}




/* ========================================================================== #HOME ALERTS ========================================================================== */

.home-alerts {
    background: var(--color-grey-dark);
    margin: 50px 0;
}

.home-alerts-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-alerts-left {
    flex: 5;
}

    .home-alerts-left .home-alerts-img {
        display: inline-block;
        width: 100%;
        padding-bottom: 57%;
        margin-bottom: -30px;
        margin-top: -30px;
        background-position: center;
        background-size: cover;
        box-shadow: 0 3px 22px -3px rgb(0 0 0 / 20%);
    }

.home-alerts-right {
    flex: 3;
    padding: 20px 20px;
}

    .home-alerts-right .m-btn {
        margin-top: 20px;
    }



@media (max-width:900px) {

    .home-alerts {
        margin-bottom: 20px;
    }

    .home-alerts-flex {
        flex-direction: column;
    }

    .home-alerts-left {
        display: inline-block;
        width: 100%;
    }
}




/* ========================================================================== #HOME WHY ========================================================================== */


.home-why {
    padding: 50px 0;
}

.home-why-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-why-left {
    flex: 1;
}

.home-why-box {
    margin-top: 30px;
}

    .home-why-box h3 {
        margin-bottom: 10px;
        font-size: 2rem;
    }

        .home-why-box h3 i {
            color: var(--primary-brand-color);
            margin-right: 5px;
        }

    .home-why-box span {
        display: inline-block;
        font-size: 1.55rem;
        margin-top: 15px;
        color: #464646;
        letter-spacing: 0.3px;
    }

.home-why-left .m-btn {
    margin-top: 30px;
}


.home-why-right {
    flex: 1;
}

.home-why-img-top {
    margin-bottom: 10px;
}

    .home-why-img-top img {
        display: block;
        width: 100%;
        box-shadow: 0 3px 22px -3px rgb(0 0 0 / 20%);
    }

.home-why-img-bottom {
    display: inline-block;
    width: 100%;
}

    .home-why-img-bottom img {
        float: left;
        box-shadow: 0 3px 22px -3px rgb(0 0 0 / 20%);
        width: calc(50% - 5px);
    }

        .home-why-img-bottom img:first-of-type {
            margin-right: 5px;
        }

        .home-why-img-bottom img:last-of-type {
            margin-left: 5px;
        }



@media(max-width:1000px) {

    .home-why-left {
        flex: 2;
    }

    .home-why-right {
        flex: 1;
    }


    .home-why-img-bottom img {
        width: calc(100%);
    }

        .home-why-img-bottom img:first-of-type {
            margin: 0 0 10px 0;
        }

        .home-why-img-bottom img:last-of-type {
            margin: 0px;
        }
}


@media(max-width:768px) {


    .home-why-flex {
        flex-direction: column;
    }

    .home-why-img-bottom {
        display: inline-block;
        width: 100%;
        margin-top: 10px;
    }

        .home-why-img-bottom img {
            float: left;
            box-shadow: 0 3px 22px -3px rgb(0 0 0 / 20%);
            width: calc(50% - 5px);
        }

            .home-why-img-bottom img:first-of-type {
                margin-right: 5px;
            }

            .home-why-img-bottom img:last-of-type {
                margin-left: 5px;
            }
}


/* ==================================================================== #HOME REVIEWS ==================================================================== */


.home-reviews {
    padding: 50px 0;
    background: #ebebeb;
}


.owl-home-reviews {
    margin-top: 30px;
}





/* ========================================================================== #STANDARD SEARCH ========================================================================== */

.search-box-outer {
    background-color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 137px;
    left: 0;
    width: 100%;
    z-index: 30;
    transition: all ease-in-out 100ms;
}

.body-condensed .search-box-outer {
    top: 76px;
}

.search-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}

    .search-box .m-form-group:nth-of-type(1) {
        flex: 1;
    }

    .search-box .m-form-group:nth-of-type(2) {
        flex: 2;
    }

    .search-box .m-form-group:nth-of-type(3) {
        flex: 1;
    }

    .search-box .m-form-group:nth-of-type(4) {
        flex: 1;
    }

    .search-box .m-form-group:nth-of-type(5) {
        width: 50px;
        text-align: center;
    }

    .search-box .m-form-group:nth-of-type(6) {
        flex: 1;
    }

    .search-box .advancedbutton {
        font-size: 2.2rem;
        color: var(--color-grey-medium);
        transition: all ease-in-out 200ms;
        cursor: pointer;
    }

        .search-box .advancedbutton:hover {
            color: var(--primary-brand-color);
        }


.search-spacer {
    height: 102px;
}

.show-search-btn {
    display: none;
}


@media(max-width:1000px) {

    .search-box-outer {
        top: 77px;
    }

    .search-spacer {
        height: 230px;
    }

    .search-box {
        display: inline-block;
        width: 100%;
    }

    .search-spacer {
        height: 240px;
    }

    .search-box .m-form-group:nth-of-type(1) {
        flex: none;
        width: calc(30% - 10px);
        display: inline-block;
        margin-right: 10px;
        float: left;
        margin-bottom: 14px;
    }

    .search-box .m-form-group:nth-of-type(2) {
        flex: none;
        width: 70%;
        display: inline-block;
        float: left;
        margin-bottom: 14px;
    }

    .search-box .m-form-group:nth-of-type(3) {
        flex: none;
        width: calc(50% - 5px);
        display: inline-block;
        margin-right: 5px;
        float: left;
        margin-bottom: 14px;
        clear: both;
    }

    .search-box .m-form-group:nth-of-type(4) {
        flex: none;
        width: calc(50% - 5px);
        display: inline-block;
        margin-left: 5px;
        float: left;
        margin-bottom: 14px;
    }

    .search-box .m-form-group:nth-of-type(5) {
        float: left;
        clear: both;
    }

    .search-box .m-form-group:nth-of-type(6) {
        width: calc(100% - 50px);
        float: left;
    }
}




@media(max-width:768px) {

    .show-search-btn {
        display: inline-block;
    }

    .search-box-outer {
        position: static;
    }

    .search-box {
        display: none;
    }

        .search-box.active {
            display: inline-block;
            padding: 20px 10px;
            width: 100%;
        }

    .search-spacer {
        display: none;
    }
}


/* ========================================================================== #NEW HOMES SEARCH ========================================================================== */



.new-homes-search-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}

    .new-homes-search-box .m-form-group:nth-of-type(1) {
        flex: 2;
    }

    .new-homes-search-box .m-form-group:nth-of-type(2) {
        flex: 1;
    }

    .new-homes-search-box .m-form-group:nth-of-type(3) {
        flex: 1;
    }

    .new-homes-search-box .m-form-group:nth-of-type(4) {
        flex: 1;
    }

    .new-homes-search-box .m-form-group:nth-of-type(5) {
        flex: 1;
    }




@media(max-width:1000px) {


    .new-homes-search-box {
        display: inline-block;
        width: 100%;
    }

        .new-homes-search-box .m-form-group:nth-of-type(1) {
            flex: none;
            width: calc(100%);
            display: inline-block;
            float: left;
            margin-bottom: 14px;
        }

        .new-homes-search-box .m-form-group:nth-of-type(2) {
            flex: none;
            width: calc(50% - 5px);
            display: inline-block;
            margin-right: 5px;
            float: left;
            margin-bottom: 14px;
            clear: both;
        }

        .new-homes-search-box .m-form-group:nth-of-type(3) {
            flex: none;
            width: calc(50% - 5px);
            display: inline-block;
            margin-left: 5px;
            float: left;
            margin-bottom: 14px;
        }

        .new-homes-search-box .m-form-group:nth-of-type(4) {
            flex: none;
            width: calc(50% - 5px);
            display: inline-block;
            margin-right: 5px;
            float: left;
            clear: both;
        }

        .new-homes-search-box .m-form-group:nth-of-type(5) {
            flex: none;
            width: calc(50% - 5px);
            display: inline-block;
            margin-left: 5px;
            float: left;
        }
}




@media(max-width:768px) {

    .new-homes-search-box {
        display: none;
    }

        .new-homes-search-box.active {
            display: inline-block;
            padding: 20px 10px;
            width: 100%;
        }
}






/* ========================================================================== #SORT BAR ========================================================================== */

.sort-bar-outer {
    padding: 10px 0;
    background-color: rgb(241 241 241);
    position: absolute;
    top: 236px;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: all ease-in-out 100ms;
}

.sort-bar-spacer {
    height: 65px;
}

.body-condensed .sort-bar-outer {
    top: 175px;
}

.sort-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-bar-left {
}

    .sort-bar-left .m-btn {
        margin-right: 7px;
    }

    /* .sort-bar-left .m-btn:last-of-type { margin-right: 0px; } */

    .sort-bar-left .sort-search-text {
        display: inline-block;
        font-size: 1.2rem;
        line-height: 1.5;
        letter-spacing: 0;
        font-weight: 400;
        margin-left: 10px;
    }

        .sort-bar-left .sort-search-text h1 {
            display: inline-block;
            font-size: 1.2rem;
            font-family: var(--font-body);
            font-size: 1.2rem;
            line-height: 1.5;
            letter-spacing: 0;
            font-weight: 400;
        }


.sort-bar-right {
    display: flex;
}

    .sort-bar-right .m-form-group:nth-of-type(1) {
        width: 190px;
        margin-right: 10px;
    }

    .sort-bar-right .m-form-group:nth-of-type(2) {
        width: 100px;
    }



@media(max-width:1240px) {

    .sort-bar-left .sort-search-text {
        display: none;
    }
}


@media(max-width:1000px) {

    .sort-bar-outer {
        top: 307px;
    }
}



@media(max-width:768px) {

    .sort-bar-outer {
        position: static;
    }

    .sort-bar-spacer {
        display: none;
    }

    #view-map {
        position: absolute;
        top: 86px;
        right: 5px;
    }

    .sort-bar-right .m-form-group:nth-of-type(1) {
        max-width: 160px;
    }

    .sort-bar-left .m-btn {
        margin-bottom: 5px;
    }
}


@media(max-width:600px) {

    .sort-bar-left {
        text-align: center;
    }

    .sort-bar-right {
        flex-direction: column;
        align-items: flex-end;
    }
}


@media(max-width:480px) {

    .sort-bar-flex {
        flex-direction: column;
    }

    .sort-bar-left {
        flex-direction: column;
        align-items: center;
    }

    .sort-bar-right {
        flex-direction: row;
        align-items: center;
    }
}






/* ========================================================================== #CONTENT PAGE ========================================================================== */


/* Non Banner Title Bar */


.page-title-bar {
    padding: 30px 0;
    background-color: rgb(241 241 241);
    text-align: center;
}

    .page-title-bar .page-title {
        font-size: 2.8rem;
    }

    .page-title-bar .page-subtitle {
        display: inline-block;
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
        color: #5e5e5e;
    }



#banner-top {
    position: relative;
    min-height: 650px;
    height: -webkit-calc(45vh - 0px);
    height: -moz-calc(45vh - 0px);
    height: calc(45vh - 0px);
    width: 100%;
    background-size: cover !important;
    background-attachment: initial;
    background-repeat: no-repeat;
    background-position: center;
}

    #banner-top.details {
        min-height: 700px;
        height: -webkit-calc(50vh - 0px);
        height: -moz-calc(50vh - 0px);
        height: calc(50vh - 0px);
    }

        #banner-top.details:hover {
            cursor: pointer;
        }

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-16by9:before {
    padding-top: 56.25%;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#banner-top.detailsvideo {
    min-height: 400px;
    height: 100% !important;
    overflow: hidden;
}

    #banner-top.detailsvideo:after {
        display: none;
    }

@media (min-width: 800px) {
    #banner-top.detailsvideo {
        background: #fff !important;
    }
}

#banner-top:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #333333;
    opacity: 0.5;
    z-index: 10;
}

#banner-top .inner {
    height: 100%;
}

#banner-top .c-1 {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    padding: 30px 20px;
    z-index: 11; /* background: rgb(0, 105, 102); */
}

#banner-top h1 {
    color: #fff;
    line-height: 4.8rem;
    width: 100%;
    font-size: 4.1rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1rem;
    text-shadow: rgba(59, 59, 59, 0.7) 1px 1px 3px;
    text-shadow: 2px 2px 5px #333;
}

    #banner-top h1:before {
        content: "";
        position: absolute;
        width: 100px;
        background: #ffffff;
        height: 5px;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        bottom: 10px;
    }

#banner-top .subheading {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.04rem;
    line-height: 2.8rem;
    margin-top: 20px;
    padding: 0 15%;
    text-shadow: rgba(59, 59, 59, 1) 1px 1px 3px;
}

    #banner-top .subheading.price {
        font-size: 2rem;
    }

#banner-top .bck {
    margin-top: 40px;
}

    #banner-top .bck a {
        font-size: 1.4rem;
        color: #fff;
        text-decoration: none;
        font-weight: 400;
        padding: 10px 10px;
        letter-spacing: 0.2px;
        border: 1px solid #fff;
    }

        #banner-top .bck a:hover {
            background: #00706d;
            color: #fff;
            border-color: #00706d;
        }

        #banner-top .bck a.slide {
            margin-left: 15px;
            background: #01706e;
            color: #fff;
            border-color: #01706e;
        }

            #banner-top .bck a.slide:hover {
                background: #025c59;
                color: #fff;
                border-color: #025c59;
                cursor: pointer;
            }

#banner-top.news {
    height: 280px;
    background-size: cover !important;
    background-attachment: initial;
    background-repeat: no-repeat;
    background-position: center;
}

    #banner-top.news .inner {
        padding: 70px 0 80px;
    }

#banner-top.search {
    height: 135px;
    background: url(https://www.simonbrien.com/images/bannertop-search.jpg);
    background-size: cover !important;
    background-attachment: initial;
    background-repeat: no-repeat;
    background-position: center;
}

#banner-top.full {
    position: fixed;
    height: -webkit-calc(100vh - 0px);
    height: -moz-calc(100vh - 0px);
    height: calc(100vh - 0px);
    background-position: top !important;
}

    #banner-top.full .c-1 {
        top: 40%;
    }

.full-block {
    min-height: 650px;
    height: -webkit-calc(75vh - 0px);
    height: -moz-calc(75vh - 0px);
    height: calc(75vh - 0px);
}

.full-con {
    position: relative;
}

    .full-con .inner {
        background: #fff;
        padding-bottom: 40px;
    }




/* Video Banner */

.video-banner {
    position: relative;
    width: 100%;
    height: calc(100vw / 2.7);
    /* z-index: -1; */
    pointer-events: none;
    overflow: hidden;
    min-height: 400px;
    max-height: 700px;
    pointer-events: none;
}

    .video-banner iframe {
        width: 100vw;
        height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
        min-height: 100vh;
        min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .video-banner:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #333333;
        opacity: 0.5;
        z-index: 10;
    }

    .video-banner .inner {
        height: 100%;
    }

    .video-banner .c-1 {
        position: absolute;
        top: 47%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 80%;
        padding: 30px 20px;
        z-index: 11; /* background: rgb(0, 105, 102); */
    }

    .video-banner h1 {
        color: #fff;
        line-height: 4.8rem;
        width: 100%;
        font-size: 4.1rem;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.1rem;
        text-shadow: rgba(59, 59, 59, 0.7) 1px 1px 3px;
        text-shadow: 2px 2px 5px #333;
    }

        .video-banner h1:before {
            content: "";
            position: absolute;
            width: 100px;
            background: #ffffff;
            height: 5px;
            margin-left: auto;
            margin-right: auto;
            left: 0;
            right: 0;
            bottom: 10px;
        }

    .video-banner .subheading {
        color: #fff;
        font-size: 1.7rem;
        font-weight: 400;
        letter-spacing: 0.04rem;
        line-height: 2.8rem;
        margin-top: 20px;
        padding: 0 15%;
        text-shadow: rgba(59, 59, 59, 1) 1px 1px 3px;
    }




.content-outer {
    padding: 40px 0;
}

.content-flex {
    display: flex;
    gap: 20px;
}

.content-left {
    flex: 1;
    background: #fff;
    box-shadow: 0 3px 22px -3px rgb(0 0 0 / 10%);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.content-right {
    width: 320px;
}

.services-nav-outer {
    background: var(--color-grey-medium);
    padding: 20px;
    box-shadow: 0 3px 22px -3px rgb(0 0 0 / 10%);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.services-nav-title {
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 500;
}

.services-nav a {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-weight: 400;
    text-align: left;
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    margin-bottom: 10px;
    transition: all ease-in-out 200ms;
}

    .services-nav a:hover {
        color: var(--primary-brand-light);
    }

/* .services-nav a.active { color: var(--primary-brand-light); text-decoration: underline; } */





@media(max-width:1000px) {

    .content-flex {
        flex-direction: column-reverse;
    }

    .content-left {
        width: 100%;
        margin: 0;
    }

    .content-right {
        width: 100%;
        margin: 0;
    }
}






/* ========================================================================== #WHY CHOOSE ========================================================================== */

.why-choose-box {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    align-items: center;
    border-bottom: 3px solid #fbfbfb;
}

/* .why-choose-box:nth-of-type(even) { flex-direction: row-reverse; } */

.why-choose-image {
    padding-bottom: 25%;
    flex: 2;
    background-position: center;
    background-size: cover;
    display: inline-block;
    width: 100%;
}

.why-choose-right {
    flex: 3;
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose-text {
    color: #333;
    font-weight: 300;
    text-align: left;
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    line-height: 3rem;
    float: left;
    width: 100%;
}




@media(max-width:768px) {

    .why-choose-box {
        flex-direction: column;
    }

    .why-choose-image {
        padding-bottom: 65%;
    }
}







/* ========================================================================== #WHY Testimonials ========================================================================== */

.home-tests {
    padding: 45px 0;
    background: #F9F9FC;
}

    .home-tests.home-tests--details {
        background: #fbfbfb;
    }

.home-tests-outer {
    display: flex;
    align-items: center;
}

.home-tests-left {
    padding-right: 25px;
    width: 45%;
}

.home-tests-right {
    width: 55%;
}

.home-tests-box {
    display: inline-block;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,0.01);
    padding: 15px;
    margin-bottom: 0px;
    position: relative;
    min-height: 75px;
}
    /* .home-tests-box::before { content: ""; position: absolute; top: 20px; left: 20px; color: #84becc; content: "\f10d"; font: normal normal normal 14px/1 FontAwesome;  font-size: 3.9rem; } */

    .home-tests-box .home-tests-details {
        display: flex;
        align-items: center;
    }

    .home-tests-box .home-tests-text {
        display: inline-block;
        width: calc(100%);
        font-size: 1.5rem;
        color: rgb(29, 29, 29);
        margin: 15px 0 15px;
        line-height: 1.6;
        vertical-align: middle;
    }

        .home-tests-box .home-tests-text .home-tests-read-more {
            text-decoration: underline;
            font-size: 1.3rem;
            color: #e51b39;
        }
/* .home-tests-box .home-tests-pic { width: 100px; height: 100px; background-position: center; background-size: cover; border-radius: 50%; }
.home-tests-box .home-tests-pic img { } */



.home-tests-service {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
}

    .home-tests-service .home-test-service-box {
        text-align: left;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 0 8px;
        display: flex;
        justify-content: space-between;
        padding: 0;
        width: 100%;
        margin-bottom: 5px;
    }

        .home-tests-service .home-test-service-box:first-of-type {
            padding-left: 0;
        }

        .home-tests-service .home-test-service-box:last-of-type {
            border: none;
            padding-right: 0;
        }

        .home-tests-service .home-test-service-box .top {
            display: inline-block;
            width: 100%;
            font-size: 1.2rem;
            color: #5d5d5d;
            font-weight: 400;
            margin-bottom: 5px;
        }

        .home-tests-service .home-test-service-box .bottom {
            display: inline-block;
            width: 100%;
            font-size: 1.2rem;
            color: #e51939;
            text-align: right;
        }

.home-tests-box .read-more {
    text-decoration: underline;
    display: inline-block;
    color: #444;
}

.home-tests-box .home-tests-bottom {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.home-tests-box .home-tests-name {
    font-size: 1.35rem;
    font-weight: 500;
    color: #3a3f50;
}

.home-tests-box .stars {
    text-align: center;
    margin: 10px 0;
    display: inline-block;
    width: auto;
}

.home-tests-box .stars-outer {
    display: inline-block;
    position: relative;
    font-size: 1.6rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

    .home-tests-box .stars-outer::before {
        content: "\f005 \f005 \f005 \f005 \f005";
        color: #f8ce0b;
        font-weight: 400;
    }

.home-tests-box .stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

    .home-tests-box .stars-inner::before {
        content: "\f005 \f005 \f005 \f005 \f005";
        color: #f8ce0b;
        font-weight: 900;
    }

/* .owl-home-tests .owl-item { padding: 10px; } */

.owl-carousel.owl-home-reviews .owl-nav .owl-prev, .owl-carousel.owl-home-reviews .owl-next {
    position: absolute;
    top: calc(50% - 3rem);
    font-size: 3.5rem !important;
    color: #ababab !important;
    transition: all ease-in-out 200ms;
    cursor: pointer;
}

.owl-carousel.owl-home-reviews .owl-nav .owl-prev {
    left: -20px;
}

.owl-carousel.owl-home-reviews .owl-nav .owl-next {
    right: -20px;
}



@media(max-width:1300px) {
    /* .owl-carousel.owl-home-reviews .owl-nav .owl-prev { left: -10px; } */
    /* .owl-carousel.owl-home-reviews .owl-nav .owl-next { right: -10px; } */
}

@media(max-width:768px) {

    .home-tests-outer {
        flex-direction: column;
    }

    .home-tests-left {
        padding-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .home-tests-right {
        width: 100%;
    }
}






/* ========================================================================== #MEET THE TEAM ========================================================================== */


.team-outer {
    padding: 40px 0;
}

.team-bar {
    float: left;
    width: 100%;
    padding: 15px 0px;
    margin-top: 30px;
    margin-bottom: 0px;
    text-align: center;
}

    .team-bar .btn {
        display: inline-block;
        margin: 0 auto;
        padding: 10px 19px;
        margin-bottom: 3px;
        webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: #fff;
        color: #333;
        border-bottom: 2px solid transparent;
        font-size: 1.6rem;
        letter-spacing: 0.06rem;
        outline: none;
        border: none;
        margin-left: 2px;
        margin-right: 2px;
        cursor: pointer;
    }

        .team-bar .btn.active {
            border-bottom: 2px solid #E51939;
            transform: scale(1);
        }






/* Team List*/


.team-list {
    display: inline-block;
    width: 100%;
}

.team-box {
    display: inline-block;
    float: left;
    width: calc(25%);
    margin-bottom: 30px;
    padding: 0 15px;
    min-height: 390px;
}

    /* .team-box:nth-of-type(4n+1) { clear: both; } */

    .team-box .team-image {
        background-position: center;
        background-size: cover;
        padding-bottom: 67%;
    }

    .team-box .team-info {
        padding: 10px;
        background: #fff;
        display: flex;
        flex-direction: column;
        min-height: 195px;
    }

    .team-box .team-name {
        font-family: var(--font-body);
    }

    .team-box .team-qual {
        display: inline-block;
        width: 100%;
        font-size: 1.3rem;
        line-height: 2;
        font-weight: 600;
    }

    .team-box .team-position {
        display: inline-block;
        width: 100%;
        font-size: 1.3rem;
        line-height: 2;
        margin-bottom: 10px;
    }

    .team-box .team-branch {
        display: inline-block;
        font-size: 1.3rem;
        line-height: 2;
    }

    .team-box .team-contact {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        background: #f3f3f3;
        color: #505050;
        font-weight: 500;
        padding: 6px 0;
        margin-top: auto;
    }

    .team-box .team-phone {
        display: inline-block;
        width: 100%;
        font-size: 1.3rem;
    }

    .team-box .team-email {
        display: inline-block;
        width: 100%;
        font-size: 1.3rem;
    }



@media(max-width:1200px) {
}


@media(max-width:950px) {

    .team-box {
        width: calc(33.33333%);
    }
}


@media(max-width:700px) {

    .team-box {
        width: calc(50%);
    }
}

@media(max-width:500px) {

    .team-box {
        width: calc(100%);
        min-height: 0;
    }

        .team-box .team-info {
            min-height: 0;
        }
}




/* TEAM PROFILE */



.team-modal {
    max-width: 1000px;
}

.team-modal-flex {
    display: flex;
    gap: 30px;
}

.team-modal-left {
    width: 370px;
}

.team-modal-image {
    width: 100%;
}


.team-modal-right {
    flex: 1;
    min-width: 350px;
}

.team-modal-name {
    font-size: 2.8rem;
    vertical-align: middle;
}

    .team-modal-name .team-modal-qual {
        font-size: 1.6rem;
        line-height: 2;
        font-weight: 600;
        font-family: var(--font-body);
        vertical-align: middle;
    }

.team-modal-position {
    font-size: 1.5rem;
    display: inline-block;
    width: 100%;
    margin: 5px 0 10px;
}

    .team-modal-position .team-modal-branch {
    }

.team-modal-contact {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin-bottom: 10px;
}

    .team-modal-contact .team-modal-phone {
        font-size: 1.5rem;
        color: var(--primary-brand-dark);
    }

    .team-modal-contact .team-modal-email {
        font-size: 1.5rem;
        color: var(--primary-brand-dark);
        margin-left: 30px;
    }

.team-modal-bio {
    font-size: 1.4rem;
    line-height: 1.8;
}



@media (max-width:1050px) {

    .team-modal-left {
        width: auto;
        flex: 1;
    }

    .team-modal-right {
        min-width: 0;
    }
}

@media (max-width:800px) {

    .team-modal-flex {
        flex-direction: column;
    }
}




/* ========================================================================== #SERVICES ========================================================================== */



.service-list-outer {
}

.service-list {
    display: inline-block;
    width: 100%;
    padding: 30px 0;
}

.service-box {
    display: inline-block;
    float: left;
    width: calc(33.333333% - 20px);
    margin-bottom: 30px;
    margin-right: 30px;
    background: #fff;
}

    .service-box:nth-of-type(3n) {
        margin-right: 0;
    }

    .service-box:nth-of-type(3n+1) {
        clear: both;
    }

    .service-box .service-box-image {
        padding-bottom: 70%;
        background-position: center;
        background-size: cover;
    }

    .service-box .service-box-info {
        padding: 15px;
        min-height: 210px;
    }

    .service-box .service-box-title {
        margin-bottom: 15px;
        font-size: 1.9rem;
    }

    .service-box .service-box-desc {
        display: inline-block;
        font-size: 1.35rem;
        color: #464646;
        letter-spacing: 0.3px;
        margin-bottom: 15px;
    }

    .service-box .service-box-link {
    }




@media(max-width:800px) {

    .service-box {
        width: calc(50% - 10px);
        margin-right: 20px;
    }

        .service-box:nth-of-type(3n) {
            margin-right: 20px;
        }

        .service-box:nth-of-type(3n+1) {
            clear: none;
        }

        .service-box:nth-of-type(2n) {
            margin-right: 0;
        }

        .service-box:nth-of-type(2n+1) {
            clear: both;
        }
}



@media(max-width:550px) {

    .service-box {
        width: 100%;
        margin-right: 0px;
    }

        .service-box:nth-of-type(3n) {
            margin-right: 0px;
        }

        .service-box:nth-of-type(2n+1) {
            clear: none;
        }
}







/* ========================================================================== #TEXT ========================================================================== */

.textbp {
    color: #333;
    font-weight: 300;
    text-align: left;
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    line-height: 3rem;
    float: left;
    width: 100%;
}

    .textbp.pad {
        background: #eee;
        padding: 30px;
    }

    .textbp.lg {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 3.4rem;
    }

    .textbp strong {
        font-weight: 500 !important;
    }

        .textbp strong.thankyou {
            padding: 10px 20px;
            background: #006965;
            color: #fff;
            font-size: 1.6rem;
        }

    .textbp.lg strong {
        font-size: 1.8rem;
    }

    .textbp a {
        color: #e51939;
        border-bottom: 1px dotted;
    }

        .textbp a.btn-1 {
            color: #fff;
            border: none;
        }

    .textbp iframe {
        float: left;
        width: 100%;
    }

        .textbp iframe.center {
            float: none;
            width: 50%;
        }

    .textbp img {
        max-width: 100%;
    }

    .textbp ul {
        margin-top: 10px;
    }

        .textbp ul, .textbp ul li {
            list-style: disc;
            list-style-position: inside;
        }






/* Form Popup */

.white-popup-block {
    position: relative;
    background: #fff;
    padding: 30px 50px 50px;
    width: auto;
    max-width: 900px;
    margin: 20px auto;
}

.popform {
    float: left;
    width: 100%;
    padding: 0 10% 0 5%;
}

.pformt {
    line-height: 3.4rem;
    margin: 0 0 20px;
    float: left;
    width: 100%;
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.4px;
}

.pformt2 {
    float: left;
    text-align: center;
    width: 100%;
    margin: 10px 0 30px;
    font-size: 1.6rem;
    color: #333;
    letter-spacing: 0.4px;
}

.popform label {
    padding: 0 0 0 0px;
    float: left;
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    color: #333;
    margin: 20px 0 8px;
    font-weight: 300;
}

    .popform label span {
        color: var(--primary-brand-color);
    }

.popform .valbox {
    float: left;
    width: 100%;
}

.popform .selbox {
    width: 100%;
    position: relative;
    display: block;
}

/* .popform .valboxcapt { margin:43px 0 0; } */
/* .popform .valboxcapt label {width:50%;text-align:right;margin: 0px 0 7px;padding:0 20px 0 0;} */

.popform input[type=text], .popform input[type=email], .popform input[type=password], .popform input[type=number], .popform input[type=date], .popform select {
    float: left;
    width: 100%;
    padding: 10px 10px;
    border: none;
    border-bottom: 1px solid rgb(230, 230, 230);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    font-size: 1.5rem;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    min-height: 46px;
    background: none;
    color: #000;
    background: none;
}
    /* .popform select { float: left; width:100%; padding:10px 10px; border:1px solid #d6d6d6; border-radius:0; -moz-border-radius:0; -webkit-border-radius:0; font-size:1.4rem; letter-spacing:0.4px; box-shadow:none; -webkit-box-shadow:none; -moz-box-shadow:none; -webkit-appearance:none; appearance:none; -moz-appearance:none; position: relative; background: transparent; z-index: 1; } */
    .popform select:focus, .popform input[type=text]:focus, .popform input[type=email]:focus, .popform input[type=password]:focus, .popform input[type=number]:focus, .popform input[type=date]:focus {
        outline: none;
        border-color: #c5c5c5;
    }

.popform .val-select {
    float: left;
    position: relative;
    width: 100%;
}

    .popform .val-select .fa {
        position: absolute;
        right: 15px;
        top: 17px;
        font-size: 1.6rem;
        margin: -5px 0 0;
        z-index: 0;
        color: #151335;
    }

.popform #bookerr {
    float: left;
    width: 100%;
    font-size: 1.4rem;
    color: #da1f12;
    margin-top: 14px;
    letter-spacing: 0.04rem;
    line-height: 2rem;
    font-weight: 300;
}

/* .popform .valboxcapt input[type=number] { width:50%; } */
.popform textarea {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    float: left;
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #d6d6d6;
    font-size: 1.4rem;
    letter-spacing: 0.4px;
    resize: vertical;
    line-height: 2.0rem;
}

.popform button {
    cursor: pointer;
    float: right;
    border: none;
    background: var(--primary-brand-color);
    line-height: 4.8rem;
    margin: 20px 0 0;
    font-size: 1.6rem;
    padding: 0 30px;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0.08rem;
    color: #fff;
}

    .popform button:hover {
        background: var(--primary-brand-dark);
    }

    .popform button .fa {
        display: none;
        margin: 0 0 0 10px;
        position: relative;
        right: 0;
    }

    .popform button:hover .fa {
        right: -5px;
    }

.pformr {
    float: left;
    width: 100%;
    padding: 0 5%;
    line-height: 2.5rem;
}

    .pformr img {
        float: left;
        width: 100%;
        margin-top: 20px;
    }

    .pformr #prop-name {
        float: left;
        width: 100%;
        font-size: 1.6rem;
        margin-top: 14px;
        letter-spacing: 0.06rem;
        font-weight: 300;
    }

    .pformr #prop-price {
        float: left;
        width: 100%;
        font-size: 1.6rem;
        color: var(--primary-brand-color);
        letter-spacing: 0.06rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 7px;
    }

    .pformr #prop-deposit {
        float: left;
        width: auto;
        clear: both;
        padding: 10px;
        background: #ffc600;
        font-size: 1.4rem;
        color: #333;
        letter-spacing: 0.06rem;
        margin-top: 10px;
    }

    .pformr #terms a {
        float: left;
        width: auto;
        clear: both;
        font-size: 1.4rem;
        color: #333;
        letter-spacing: 0.04rem;
        font-weight: 300;
        margin-top: 10px;
        text-decoration: none;
    }

        .pformr #terms a:hover {
            text-decoration: underline;
            color: #000;
        }


/* valuations */

.popform.form-val .valbox {
    float: left;
    width: 50%;
    padding: 10px;
}

.popform.form-val #errproptypecontactform {
    height: 40px;
}

.popform.form-rental .valbox.valbox-text {
    line-height: 1.7;
    letter-spacing: 0.2px;
    font-size: 1.2rem;
    color: #424242;
}



.formreq {
    float: left;
    width: 100%;
    margin: 20px 0 8px;
    font-size: 1.6rem;
    letter-spacing: 0.4px;
    color: #E51939;
}

.formhouse {
    float: left;
    width: 100%;
    border: 1px solid #fff;
}

    .formhouse span {
        float: left;
        width: 100%;
        padding: 15px 20px;
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .formhouse img {
        float: left;
        width: 100%;
    }

.formadd {
    float: left;
    width: 100%;
}

    .formadd span {
        float: left;
        width: 100%;
    }

    .formadd .title {
        line-height: 2.0rem;
        font-size: 1.4rem;
        color: #666;
        margin: 8px 0 0;
        letter-spacing: 0.2px;
    }

    .formadd .ph {
        font-size: 2rem;
        letter-spacing: 0.6px;
        margin: 12px 0 6px;
    }

    .formadd .em a {
        text-decoration: none;
        letter-spacing: 0.2px;
        font-size: 1.4rem;
        color: var(--primary-brand-color);
    }

        .formadd .em a:hover {
            text-decoration: underline;
        }

.g-recaptcha {
    float: left;
    width: 100%;
    margin: 20px 0 0;
}

.valerr {
    overflow: hidden;
    float: left;
    width: 100%;
    background: var(--color-error);
    color: #fff;
    padding: 0 10px;
    height: 0;
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 0.2px;
}

.valbox.valshow .valerr {
    height: auto;
    padding: 12px 10px;
    margin: 15px 0 5px;
}





.popform.form-rental .valbox.valbox-text {
    line-height: 1.7;
    letter-spacing: 0.2px;
    font-size: 1.2rem;
    color: #424242;
}


.popform.form-rental {
    padding: 0 20px 40px 20px;
}

    .popform.form-rental .form-container.sent {
        display: none;
    }

    .popform.form-rental header {
        width: 100%;
        display: inline-block;
        margin: 40px 0 30px;
        border-top: 3px solid #e51b39;
        padding: 20px 0 0 0;
    }

        .popform.form-rental header h3 {
            font-size: 2.5rem;
        }

        .popform.form-rental header .rental-subtitle {
            font-size: 1.4rem;
            margin-top: 10px;
            display: inline-block;
            letter-spacing: 0.2px;
            color: #636363;
            line-height: 1.6;
        }

    .popform.form-rental .valbox {
        float: left;
        width: 100%;
        padding: 8px 10px;
    }

        .popform.form-rental .valbox.half {
            float: left;
            width: 50%;
            padding: 8px 10px;
        }

    .popform.form-rental label {
        margin: 4px 0;
        padding: 0 0 5px 0;
    }

        .popform.form-rental label strong {
            font-weight: 600;
        }

    .popform.form-rental select, .popform.form-rental input[type="date"] {
        max-height: 46px;
    }

    .popform.form-rental .declaration {
        display: inline-block;
        width: 100%;
        font-size: 1.4rem;
        line-height: 1.6;
        float: left;
        width: 100%;
        font-size: 1.35rem;
        letter-spacing: 0.4px;
        color: #000;
    }

    .popform.form-rental .sign {
        margin-top: 30px;
    }

    .popform.form-rental .signature-box {
        float: left;
        width: 100%;
        padding: 10px;
        font-size: 2.3rem;
        border-bottom: 1px solid rgb(230, 230, 230);
        height: 46px;
        font-family: 'Dancing Script', cursive;
    }

/* .popform.form-rental .valboxcapt { margin:50px 0 0; }
.popform.form-rental .valboxcapt label { width:auto; text-align:right; margin:12px 0 7px; padding:0 20px 0 0; }
.popform.form-rental .valboxcapt input[type=number] { width:100%; max-width: 200px; } */
/* .popform.form-rental button { margin-top: 0; margin-left: 10px;width: 10%; line-height: 35px;} */

input.is-error, select.is-error, textarea.is-error {
    border: 1px solid #e74c3c !important;
}

.captcha-outer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

@media(max-width:667px) {
    .popform.form-rental {
        padding: 0 0 40px;
    }

        .popform.form-rental .valbox.half {
            width: 100%;
        }
}

.members .formreq, .members .formadd .title, .formadd .em a {
    font-size: 1.6rem;
    letter-spacing: 0.6px;
    margin: 12px 0 6px;
    color: #000;
}

.members .formadd .ph {
    font-size: 1.8rem;
}

.members .formadd .title {
    line-height: 2.6rem;
    margin: 0px 0 0;
}


.valsteps {
    float: left;
    width: 100%;
    margin: 15px 0 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
}

    .valsteps .img {
        float: left;
        width: 17%;
        text-align: center;
    }

        .valsteps .img img {
            max-width: 100%;
        }

    .valsteps .txt {
        float: left;
        width: 83%;
        font-size: 1.6rem;
        letter-spacing: 0.04rem;
        line-height: 3rem;
        font-weight: 300;
        padding-left: 10px;
    }

        .valsteps .txt strong {
            font-size: 2rem;
            font-weight: 500;
            color: var(--primary-brand-color);
        }


/* Fixed Search */
#topsearch {
    position: fixed;
    top: 140px;
    left: 0;
    z-index: 9005;
    background: #f2f2f2;
    height: 75px;
    padding: 10px 0;
    width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

#topsearch2 {
    border-bottom: 1px solid #eeeeee;
    position: static;
    top: 215px;
    left: 0;
    z-index: 9002;
    background: #f2f2f2;
    height: 54px;
    width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.bodysm #topsearch {
    top: 77px;
}

.bodysm nav.top ul ul.sub {
    top: 77px;
}

nav.top a .fa-search {
    font-size: 1.2rem;
}

#topsearch.homesearch {
    position: relative;
    top: 0;
    left: 0;
    z-index: 9005;
    background: #333;
    height: auto;
    padding: 0px 0;
    width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

nav.top ul ul.showsub.search {
    padding: 10px 20px 15px;
}

.bodysm #topsearch.homesearch {
    top: 0px;
}

#topsearch.homesearch ul.token-input-list-facebook {
    white-space: nowrap;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: inline-flex;
    width: 100%;
    height: 44px;
    cursor: text;
    font-size: 14px;
    min-height: 1px;
    margin: 0;
    top: 0;
    padding: 6px;
    background-color: #fff;
    list-style-type: none;
    vertical-align: middle;
    position: relative;
    z-index: 99999;
    text-align: left;
    overflow: visible;
}

#topsearch.homesearch a.buyrent {
    width: 100%;
    text-align: center;
    border: 0;
    line-height: 4.6rem !important;
    height: 46px;
    float: left;
    font-size: 1.4rem;
    background-color: #ffffff;
    color: #9a9a9a !important;
    cursor: pointer;
    letter-spacing: 0.6px;
    margin: 0;
    text-shadow: none;
}

    #topsearch.homesearch a.buyrent:hover {
        background-color: var(--primary-brand-color) !important;
        color: #fff !important;
    }

    #topsearch.homesearch a.buyrent.selectedbuyrent {
        background-color: var(--primary-brand-color) !important;
        color: #fff !important;
    }

#topsearch.homesearch .styled-select .fa {
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 1.8rem;
    margin: -7px 0 0;
    z-index: 0;
}

#topsearch.homesearch .btnsearch:hover {
    background: var(--primary-brand-dark);
}

#topsearch.homesearch .btnsearch .fa {
    float: right;
    position: relative;
    right: 0;
    margin: 0px 0 0 5px;
    font-size: 1.8rem;
}

#topsearch.homesearch .btnsearch:hover .fa {
    right: -5px;
}

#topsearch.homesearch li.token-input-token-facebook {
    margin: 0 5px 0 0;
    padding: 0 8px;
    text-align: left;
}

    #topsearch.homesearch li.token-input-token-facebook span {
        color: #fff;
        float: none;
        width: auto;
    }

#topsearch.homesearch div.token-input-dropdown-facebook ul li {
    float: left;
    width: 100%;
    color: #333;
    text-align: left;
    margin-bottom: 0px;
}

    #topsearch.homesearch div.token-input-dropdown-facebook ul li:first-child {
        margin-top: 3px;
    }

    #topsearch.homesearch div.token-input-dropdown-facebook ul li.token-input-selected-dropdown-item-facebook {
        color: #fff !important;
    }

    #topsearch.homesearch div.token-input-dropdown-facebook ul li.fet-prop {
        float: left;
        width: 100%;
    }

        #topsearch.homesearch div.token-input-dropdown-facebook ul li.fet-prop a {
            float: left;
            width: 100%;
            text-decoration: none;
            color: #333 !important;
            z-index: 9999;
            text-align: left;
            text-shadow: none;
            line-height: inherit !important;
            letter-spacing: inherit !important;
            margin: 0;
        }

            #topsearch.homesearch div.token-input-dropdown-facebook ul li.fet-prop a span.img {
                float: left;
                width: 15%;
                max-height: 70px;
                overflow: hidden;
            }

                #topsearch.homesearch div.token-input-dropdown-facebook ul li.fet-prop a span.img img {
                    width: 100%;
                }

            #topsearch.homesearch div.token-input-dropdown-facebook ul li.fet-prop a .details {
                float: left;
                width: 85%;
                padding-left: 10px;
            }

                #topsearch.homesearch div.token-input-dropdown-facebook ul li.fet-prop a .details span.dis-name {
                    float: left;
                    width: 100%;
                    padding-bottom: 10px;
                    color: #333;
                }

                #topsearch.homesearch div.token-input-dropdown-facebook ul li.fet-prop a .details span.dis-price {
                    float: left;
                    width: 100%;
                    padding-bottom: 5px;
                    font-size: 12px;
                    color: var(--primary-brand-color);
                    font-style: italic;
                }

div.token-input-dropdown-facebook ul li.fet-prop.token-input-selected-dropdown-item-facebook a .details span.dis-name {
    color: #fff !important;
}

div.token-input-dropdown-facebook ul li.fet-prop.token-input-selected-dropdown-item-facebook a .details span.dis-price {
    color: #fff !important;
}


#topsearch.homesearch .advancedsearch {
    top: 61px !important;
}

#topsearch.homesearch .advancedsearch {
    transition: all .1s ease;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -o-transition: all .1s ease;
    position: absolute;
    top: 50px;
    background: #fff;
    left: 0;
    width: 100%;
    padding: 0;
    height: 0;
    overflow: hidden;
    box-shadow: 0px 21px 100px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 21px 100px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 21px 100px rgba(0, 0, 0, 0.4);
}

    #topsearch.homesearch .advancedsearch.show {
        height: auto;
        padding: 20px 0;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -o-transition: all .4s ease;
    }

    #topsearch.homesearch .advancedsearch:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
        background: #00aaa9;
    }

#topsearch.homesearch .advancedrow {
    float: left;
    width: 100%;
    border-bottom: 1px solid #f2f3f2;
    padding: 10px 60px 10px;
}

    #topsearch.homesearch .advancedrow:last-child {
        border: none;
    }

#topsearch.homesearch .advancedtitle {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 1.6rem;
    color: #666;
    letter-spacing: 0.4px;
    font-weight: 600;
    line-height: 2rem;
}

#topsearch.homesearch .advancedrow ul {
    text-align: left;
    float: left;
    width: 100%;
    margin: 10px 0 0;
    position: relative;
    top: 0;
    height: auto;
    background: #fff;
}

#topsearch.homesearch .advancedrow li {
    margin: 4px 0 5px;
    vertical-align: top;
    display: inline-block;
    width: 25%;
    text-align: left;
    padding: 0;
    float: none;
}

    #topsearch.homesearch .advancedrow li span {
        font-size: 1.2rem;
        color: #08aaac;
        width: auto;
        float: none;
        line-height: inherit;
        letter-spacing: 0;
        font-weight: inherit;
    }

        #topsearch.homesearch .advancedrow li span:hover {
            cursor: pointer;
        }

    #topsearch.homesearch .advancedrow li input {
        float: left;
        margin: 0 10px 4px 0;
        cursor: pointer;
    }

#topsearch.homesearch .advancedrow label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
}

    #topsearch.homesearch .advancedrow label:hover {
        color: #04abad;
    }

#topsearch.homesearch .advancedsearch .btnsearch {
    margin-top: 0;
}


#topsearchblock {
    height: 129px;
}

    #topsearchblock.small {
        height: 77px;
    }

    #topsearchblock.hide {
        display: none;
    }

.psavebtn {
    border: 1px solid var(--primary-brand-color);
    float: left;
    line-height: 4rem;
    padding: 0 8px;
    color: var(--primary-brand-color);
    text-decoration: none;
    font-size: 1.2rem;
}

    .psavebtn .fa {
        margin: 0 4px 0 0;
    }

    .psavebtn:hover {
        background: var(--primary-brand-color);
        color: #fff;
    }

.psavedbtn {
    border: 1px solid #00adae;
    float: left;
    line-height: 4rem;
    padding: 0 8px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    background: #00adae;
}

    .psavedbtn .fa {
        margin: 0 5px 0 0;
    }
/* .selbox { float:right; background:#fff; position:relative; } */
/* .selbox select { float:left;border: 1px solid #e6e6e6;height: 46px;padding:0px 38px 0 10px;-webkit-appearance: none;-moz-appearance:none;appearance:none;cursor: pointer;background:transparent;width:100%;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;font-size:1.4rem;position:relative;z-index:10;letter-spacing: 0.04rem;color: #333;} */
.selbox .fa {
    position: absolute;
    right: 10px;
    top: 45px;
    z-index: 9;
    font-size: 1.8rem;
}

.selbox:hover .fa {
    color: var(--primary-brand-color);
}

.pagestop {
    float: right;
    text-align: right;
    margin: 0 0 0 4px;
}

    .pagestop li {
        display: inline-block;
        position: relative;
    }

    .pagestop a {
        float: left;
        text-align: center;
        border: 1px solid #e6e6e6;
        height: 42px;
        line-height: 4.2rem;
        color: #333;
        text-decoration: none;
        font-size: 1.4rem;
        padding: 0 10px;
        background: #fff;
        letter-spacing: 0.04rem;
    }

        .pagestop a:hover, .pagestop .active {
            background: #fff;
            color: var(--primary-brand-color);
        }

    .pagestop .next a, .pagestop .prev a {
        background: #666;
        color: #fff;
        width: auto;
        padding: 0 10px;
        letter-spacing: 0.4px;
        font-weight: 400;
        border-color: #01613C;
    }

        .pagestop .next a:hover, .pagestop .prev a:hover {
            background: #01613C;
        }

    .pagestop .next .fa, .pagestop .prev .fa {
        font-size: 1.4rem;
        position: relative;
    }

    .pagestop .next .fa {
        margin: 0 0 0 5px;
    }

    .pagestop .prev .fa {
        margin: 0 5px 0 0;
    }

.nodisp {
    display: none;
}

.listing-top {
    float: left;
    width: 100%;
    padding-bottom: 15px !important;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

    .listing-top .pcount {
        float: right;
        line-height: 3.4rem;
        font-size: 1.4rem;
        color: var(--primary-brand-color);
        margin: 0 0 0 0px;
        text-align: left;
        letter-spacing: 0.04rem;
    }

        .listing-top .pcount h1 {
            float: left;
            line-height: 3.4rem;
            font-size: 1.4rem;
            color: #333;
            margin: 0 15px 0 15px;
            padding-right: 15px;
            letter-spacing: 0.04rem;
            font-weight: 400;
            border-right: 1px solid #eee;
        }

    .listing-top .pcount2 {
        float: left;
        width: 70%;
        line-height: 3.8rem;
        font-size: 1.4rem;
        color: #333;
        letter-spacing: 0.04rem;
    }

    .listing-top .viewicons {
        float: left;
    }

        .listing-top .viewicons ul {
            float: left;
            margin: 0 5px 0 0;
        }

        .listing-top .viewicons li {
            float: left;
            margin: 0 5px 0 0;
        }

        .listing-top .viewicons a {
            float: left;
            border: 1px solid #ededed;
            font-size: 1.4rem;
            line-height: 3.8rem;
            text-align: center;
            color: var(--primary-brand-color);
            padding: 0px 10px;
            background: #fff;
        }

            .listing-top .viewicons a i {
                font-size: 1.8rem;
                padding-right: 5px;
            }

            .listing-top .viewicons a:hover, .listing-top .viewicons a.active, .listing-top .viewicons a:focus {
                border-color: var(--primary-brand-color);
                background: var(--primary-brand-color);
                color: #fff;
                cursor: pointer;
            }

            .listing-top .viewicons a#view-search {
                display: none;
            }

    .listing-top .pchide {
        text-align: center;
        display: none;
    }

    .listing-top .viewicons a .open {
        display: none
    }

    .listing-top .viewicons a .closed {
        display: inline-block;
    }

    .listing-top .viewicons a.active .open {
        display: inline-block;
        ;
    }

    .listing-top .viewicons a.active .closed {
        display: none;
    }

#dropMap {
    width: 40%;
    margin-left: -40%;
    height: 100%;
    position: fixed;
    height: calc(100vh - 237px);
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
}

.body-condensed #dropMap {
    height: calc(100vh - 176px);
}



#dropMap.active {
    width: 40%;
    margin-left: 0%;
}

#dropMap .map-holder {
    position: relative;
    width: 100%;
    height: 100%;
}

    #dropMap .map-holder #map_canvas {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        border-right: 1px solid #ddd;
    }

    #dropMap .map-holder a#MapToggle {
        width: 35px;
        height: 35px;
        position: absolute;
        top: 45%;
        bottom: 45%;
        right: 0px;
        z-index: 9999;
        background: var(--primary-brand-color);
        border-radius: 50px;
        border: 1px solid #ddd;
        color: #fff;
    }

        #dropMap .map-holder a#MapToggle i {
            font-size: 2.2rem;
            color: #ffffff;
            width: 100%;
            text-align: center;
            margin-top: 5px;
            margin-left: 1px;
        }

        #dropMap .map-holder a#MapToggle.active {
            background: var(--primary-brand-color);
            right: -16px;
        }

            #dropMap .map-holder a#MapToggle.active i {
                color: #fff;
                -webkit-transform: rotate(180deg);
                -moz-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                -o-transform: rotate(180deg);
                transform: rotate(180deg);
                margin-left: -1px;
                margin-top: 6px;
            }

        #dropMap .map-holder a#MapToggle:hover {
            background: var(--primary-brand-color);
        }

            #dropMap .map-holder a#MapToggle:hover i {
                color: #fff;
            }


.listings {
    padding: 30px 0;
}

    .listings.active {
        width: 60%;
        margin-left: 40%;
        clear: both;
        padding-left: 20px;
    }

        .listings.active.small {
            width: 30%;
            margin-left: 70%;
        }

    .listings h2.h2f {
        font-size: 2rem;
        margin-top: 20px;
    }

    .listings.active #list.view-grid li {
        width: 50%;
    }




/* No Results */

.no-results-outer {
    padding: 30px 0;
}

.no-results {
    margin-top: 20px;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 1000px;
}

.no-results-title {
    margin: 20px 0;
}

.no-results-text {
    font-size: 1.4rem;
    color: #3e3e3e;
}






/* PROP CARD */


.prop-card {
    display: inline-block;
    width: calc(25% - 12px);
    margin-right: 16px;
    float: left;
    margin-bottom: 40px;
    background-color: #fff;
}

    .prop-card:nth-of-type(4n) {
        margin-right: 0;
    }

    .prop-card:nth-of-type(4n+1) {
        clear: both;
    }

    .prop-card.prop-card--map {
        width: 100%
    }

    .prop-card .prop-card-image {
        width: 100%;
        display: flex;
        position: relative;
    }

        .prop-card .prop-card-image img {
            width: 100%;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            -o-transform: translateZ(0);
            -moz-transform: translateZ(0);
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            width: 100%;
            height: 100%;
            object-position: center;
            max-height: 100%;
            object-fit: cover;
        }

        .prop-card .prop-card-image::after {
            padding-top: 75%;
            display: block;
            content: "";
            overflow: hidden;
        }


    .prop-card .prop-card-status {
        position: absolute;
        top: 0;
        left: 0;
        position: absolute;
        top: 10px;
        left: 0;
        font-size: 1.2rem;
        padding: 7px 20px;
        font-weight: 500;
        text-transform: uppercase;
        background: #262626;
        color: #fff;
    }

        .prop-card .prop-card-status.prop-card-status--agreed {
            background: var(--secondary-brand-color);
            color: #fff;
        }

        .prop-card .prop-card-status.prop-card-status--sold {
            background: var(--primary-brand-color);
            color: #fff;
        }


    .prop-card .prop-card-price-outer {
        position: absolute;
        bottom: -6px;
        right: 5px;
        display: flex;
        color: #fff;
    }

    .prop-card .prop-card-price-text {
        display: inline-block;
        padding: 4px 10px;
        font-size: 1.15rem;
        font-weight: 500;
        background: var(--primary-brand-dark);
        line-height: 1.9;
    }

    .prop-card .prop-card-price-amount {
        display: inline-block;
        padding: 4px 10px;
        font-size: 1.5rem;
        font-weight: 600;
        background: var(--primary-brand-color);
    }

    .prop-card .prop-card-info {
        padding: 10px 10px;
    }

        .prop-card .prop-card-info .prop-card-type {
            display: inline-block;
            width: 100%;
            font-size: 1.3rem;
            color: #ababab;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .prop-card .prop-card-info .prop-card-address-one {
            display: inline-block;
            width: 100%;
            font-size: 1.7rem;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .prop-card .prop-card-info .prop-card-address-two {
            display: inline-block;
            width: 100%;
            font-size: 1.4rem;
            color: #ababab;
            font-weight: 500;
        }

    .prop-card .prop-card-rooms {
        display: flex;
        width: 100%;
        padding: 0 10px;
        text-align: center;
        margin-bottom: 10px;
    }

    .prop-card .prop-card-room {
        flex: 1;
        padding: 10px 0px;
        display: inline-block;
        font-size: 1.2rem;
        color: #828282;
        border-top: 1px solid #eee;
    }

        .prop-card .prop-card-room:nth-of-type(1) {
            border-right: 1px solid #eee;
        }




/* View Map Prop Card */

.active .prop-card {
    width: calc(50% - 5px);
    margin-right: 10px;
}

    .active .prop-card:nth-of-type(3n) {
        margin-right: 10px;
    }

    .active .prop-card:nth-of-type(3n+1) {
        clear: none;
    }

    .active .prop-card:nth-of-type(2n) {
        margin-right: 0;
    }

    .active .prop-card:nth-of-type(2n+1) {
        clear: both;
    }

    .active .prop-card.prop-card--map {
        width: 100%;
        margin: 0px;
    }



@media(max-width:1180px) {

    .prop-card {
        width: calc(33.3333% - 10px);
        margin-right: 15px;
    }

        .prop-card:nth-of-type(4n) {
            margin-right: 15px;
        }

        .prop-card:nth-of-type(4n+1) {
            clear: none;
        }

        .prop-card:nth-of-type(3n) {
            margin-right: 0;
        }

        .prop-card:nth-of-type(3n+1) {
            clear: both;
        }
}


@media(max-width:850px) {

    .prop-card {
        width: calc(50% - 5px);
        margin-right: 10px;
    }

        .prop-card:nth-of-type(3n) {
            margin-right: 10px;
        }

        .prop-card:nth-of-type(3n+1) {
            clear: none;
        }

        .prop-card:nth-of-type(2n) {
            margin-right: 0;
        }

        .prop-card:nth-of-type(2n+1) {
            clear: both;
        }
}

@media(max-width:500px) {

    .prop-card {
        width: calc(100%);
        margin-right: 0px;
    }

        .prop-card:nth-of-type(3n) {
            margin-right: 0px;
        }

        .prop-card:nth-of-type(2n+1) {
            clear: none;
        }
}










/* ===================================================================== #PROPERTY DETAILS ===================================================================== */


.prop-det-top-outer {
    display: block;
}

.prop-det-top-flex {
    display: flex;
    height: 800px;
}

.prop-det-top-left {
    flex: 2;
    background-position: center;
    background-size: cover;
    position: relative;
}




    .prop-det-top-left .prop-det-slider {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 800px;
    }

        .prop-det-top-left .prop-det-slider .slide {
            height: 800px;
            background-position: center;
            background-size: cover;
        }


/* Owl Nav */
.owl-carousel.prop-det-slider .owl-nav button {
    position: absolute;
    font-size: 6rem;
    color: #fff;
    top: calc(50% - 6rem);
}

    .owl-carousel.prop-det-slider .owl-nav button.owl-prev {
        left: 10px;
    }

    .owl-carousel.prop-det-slider .owl-nav button.owl-next {
        right: 10px;
    }


/* Owl Dots */
.owl-carousel.prop-det-slider .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
}

    .owl-carousel.prop-det-slider .owl-dots .owl-dot {
        height: 10px;
        width: 10px;
        background: #eee;
        margin: 0 3px;
        border-radius: 50px;
    }

        .owl-carousel.prop-det-slider .owl-dots .owl-dot.active {
            background: #e20b0a;
        }

.prop-det-top-left #video.box {
    width: 100%;
    height: 100%;
    display: flex;
}

#gallery.slick-slider.video {
    display: none !important;
}

.prop-det-top-left #video.box .embed-responsive, .prop-det-top-left #video.box .embed-responsive-16by9:before, .prop-det-top-left #video.box .embed-responsive::before, .prop-det-top-left #video.box .embed-responsive .embed-responsive-item, .prop-det-top-left #video.box .embed-responsive embed, .prop-det-top-left #video.box .embed-responsive iframe, .prop-det-top-left #video.box .embed-responsive object, .prop-det-top-left #video.box .embed-responsive video {
    display: inline-block !important;
}

.prop-det-top-right {
    flex: 1;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.prop-det-back {
}

    .prop-det-back a {
        font-size: 1.4rem;
        margin-bottom: 10px;
        display: inline-block;
        color: #5f5f5f;
    }

        .prop-det-back a i {
        }

.prop-det-address-one {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 500;
}

.prop-det-address-two {
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: #868686;
    font-weight: 500;
}


.prop-det-price-outer {
    display: flex;
    color: #fff;
    margin: 15px 0;
}

.prop-det-price-text {
    display: inline-block;
    padding: 4px 10px;
    font-size: 1.15rem;
    font-weight: 500;
    background: var(--primary-brand-dark);
    line-height: 1.9;
}

.prop-det-price-amount {
    display: inline-block;
    padding: 4px 10px;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--primary-brand-color);
}


.prop-det-info {
    display: inline-block;
    width: 100%;
    padding: 0 30px;
}

    .prop-det-info .prop-det-info-row {
        display: flex;
        justify-content: space-between;
        font-size: 1.35rem;
        padding: 15px 0;
        border-bottom: 2px solid #eee;
    }

        .prop-det-info .prop-det-info-row:last-of-type {
            border: none;
        }

        .prop-det-info .prop-det-info-row .prop-det-info-left {
            font-weight: 500;
            text-align: left;
        }

        .prop-det-info .prop-det-info-row .prop-det-info-right {
            color: #2c2c2c;
            text-align: right;
        }

            .prop-det-info .prop-det-info-row .prop-det-info-right.prop-det-info-right--agreed {
                background: var(--secondary-brand-dark);
                padding: 2px 5px;
                color: #fff;
            }


.prop-det-synopsis {
    font-size: 1.3rem;
    margin: 20px 0 30px;
    display: inline-block;
    line-height: 1.8;
    padding: 0 30px;
}


/* Mobile Styles */

.prop-top-mobile {
    background: #fff;
    display: none;
}

.prop-top-mobile-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    text-align: center;
}

.prop-info-mobile {
    display: none;
}




@media(max-width:1000px) {

    .prop-det-top-right {
        display: none;
    }

    .prop-top-mobile {
        display: block;
    }


    .prop-det-top-flex {
        display: block;
        width: 100%;
        height: auto;
    }

    .prop-det-top-left .prop-det-slider {
        position: static;
        top: initial;
        left: initial;
        right: initial;
        bottom: initial;
        height: auto;
    }

        .prop-det-top-left .prop-det-slider .slide {
            height: calc(100vw / 1.3);
        }

    .prop-info-mobile {
        display: block;
    }
}






/* CTA BAR */

.prop-cta-bar {
    background: var(--color-grey-dark);
    padding: 0px 0;
}

.prop-cta-bar-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.prop-cta-bar a {
    position: relative;
    color: #fff;
    font-size: 1.5rem;
    padding: 18px 15px;
    transition: all ease-in-out 200ms;
    cursor: pointer;
}

    .prop-cta-bar a::after {
        position: absolute;
        content: "";
        background: rgba(255, 255, 255, 0.068);
        width: 2px;
        height: 30px;
        right: 0%;
        top: calc(50% - 15px);
    }

    .prop-cta-bar a.rent {
    }

        .prop-cta-bar a:last-of-type::after, .prop-cta-bar a.rent::after {
            display: none;
        }

    .prop-cta-bar a:hover {
        background: rgba(0, 0, 0, 0.185);
    }

    .prop-cta-bar a.rent:hover {
        background: var(--secondary-brand-dark);
    }

    .prop-cta-bar a i {
        color: var(--primary-brand-color);
        margin-right: 4px;
    }



@media(max-width:1000px) {
}




/* PROP AGENT */

.prop-agent {
    display: inline-block;
    width: 100%;
    background: #fff;
    margin-bottom: 20px;
}

/* .prop-agent:first-of-type { margin-bottom: 0; } */
/* .prop-agent:last-of-type { margin-bottom: 0; } */

.prop-agent-flex {
    display: flex;
    align-items: center;
}


.prop-agent .prop-agent-left {
    flex: 1;
    padding: 15px;
}

.prop-agent .prop-agent-name {
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 2rem;
}

.prop-agent .prop-agent-location {
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 1.5rem;
    color: #777;
    margin-bottom: 8px;
}

.prop-agent .prop-agent-number {
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 2rem;
    color: var(--primary-brand-color);
    margin-bottom: 8px
}

.prop-agent .prop-agent-email {
    display: inline-block;
    width: 100%;
    font-size: 1.5rem;
}


.prop-agent .prop-agent-right {
    flex: 1;
    text-align: right;
}

.prop-agent .prop-agent-image {
    width: 190px;
    min-height: 160px;
    display: inline-block;
    border-radius: 0px;
    margin-top: -20px;
    margin-bottom: -20px;
    background-position: center;
    background-size: cover;
}



.prop-det-right-cta {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

    .prop-det-right-cta a {
    }





/* PROP MAIN DETAILS */

.prop-det-main {
    padding: 40px 0;
}

.prop-det-main-flex {
    display: flex;
    gap: 20px;
}

.prop-det-main-left {
    flex: 1;
    background: #fff;
    padding: 25px;
}

.prop-det-main-block {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    position: relative;
    line-height: 1.9;
}

    .prop-det-main-block.prop-det-main-block--small {
        max-height: 550px;
        overflow: hidden;
    }

        .prop-det-main-block.prop-det-main-block--small::before {
            position: absolute;
            content: "";
            background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 88%, rgba(255,255,255,1) 89%);
            background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 88%,rgba(255,255,255,1) 89%);
            background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 88%,rgba(255,255,255,1) 89%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f6f6f6', endColorstr='#f6f6f6',GradientType=0 );
            opacity: 1;
            width: 100%;
            height: 133px;
            bottom: 0px;
            left: 0;
        }

    .prop-det-main-block .prop-det-title, .prop-det-title {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .prop-det-main-block .prop-det-text {
        font-size: 1.4rem;
        color: #404040;
    }

    .prop-det-main-block .prop-det-feats {
    }

        .prop-det-main-block .prop-det-feats .feat {
            display: inline-block;
            width: calc(50% - 5px);
            margin-right: 10px;
            float: left;
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #404040;
        }

            .prop-det-main-block .prop-det-feats .feat:nth-of-type(2n) {
                margin-right: 0px;
            }

            .prop-det-main-block .prop-det-feats .feat i {
                color: var(--primary-brand-color);
                margin-right: 4px;
            }


    .prop-det-main-block .prop-det-rooms {
    }

        .prop-det-main-block .prop-det-rooms .room-row {
            display: flex;
            font-size: 1.3rem;
            color: #404040;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .prop-det-main-block .prop-det-rooms .room-name {
            width: 200px;
            padding-right: 15px;
            font-weight: 500;
            color: #000;
        }

        .prop-det-main-block .prop-det-rooms .room-desc {
            flex: 1;
        }



.block-readmore {
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: absolute;
    bottom: -10px;
    left: 0;
    cursor: pointer;
}

    .block-readmore .block-readmore-text {
        display: inline-block;
        width: 100%;
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--primary-brand-color);
        margin-top: 10px;
    }

    .block-readmore .block-readmore-icon {
        font-size: 3.4rem;
        color: var(--primary-brand-color);
        line-height: 1;
    }



.prop-det-main-right {
    width: 500px;
}


    .prop-det-main-right.is-affixed .prop-det-right-fix {
        top: -70px;
    }


@media(max-width:1100px) {

    .prop-det-main-flex {
        flex-direction: column-reverse;
    }

    .prop-det-main-right {
        width: 100%;
        height: auto !important;
    }

    .prop-det-right-fix {
        position: static !important;
        transform: none !important;
        width: 100% !important;
    }
}



@media(max-width:590px) {

    .prop-det-main-block .prop-det-feats .feat {
        width: 100%;
        margin-right: 0;
    }

    .prop-det-main-block .prop-det-rooms .room-row {
        flex-direction: column;
    }

    .prop-det-main-block .prop-det-rooms .room-name {
        width: 100%;
        margin-bottom: 10px;
    }

    .prop-det-main-block .prop-det-rooms .room-desc {
        width: 100%;
    }
}





/* PROP VIRTUAL TOUR */

.prop-det-virtual {
    padding: 30px 0;
}

.virtual-iframe-outer {
    position: relative;
    float: left;
    display: block;
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 30px;
    overflow: hidden;
    padding-bottom: calc(56.25% / 2);
}

    .virtual-iframe-outer:nth-of-type(2n) {
        margin-right: 0px;
    }

    .virtual-iframe-outer:nth-of-type(2n+1) {
        clear: both;
    }

    .virtual-iframe-outer::before {
        display: block;
        content: "";
    }

    .virtual-iframe-outer iframe {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }


@media(max-width:950px) {

    .virtual-iframe-outer {
        width: calc(100%);
        padding-bottom: calc(56.25%);
        margin-right: 0;
    }
}







/* PROP LOCATION */

.prop-det-location-outer {
}

.prop-det-location {
    padding: 20px;
    background: #fff;
}






/* PROP MORTGAGE */

.prop-det-mortgage-outer {
    margin: 30px 0;
}

.prop-det-mortgage {
    padding: 20px;
    background: #fff;
}

.prop-det-mortgage-flex {
    display: flex;
    width: 100%;
    gap: 15px;
    align-items: center;
}

    .prop-det-mortgage-flex .m-form-group {
        flex: 1;
    }

        .prop-det-mortgage-flex .m-form-group:last-of-type {
            flex: 1.5;
        }



.prop-det-mortgage-title {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.prop-det-mortgage-repayment {
    border: none;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 0;
    background: none;
    display: block;
    font-family: inherit;
    font-size: inherit;
    height: auto;
    line-height: 1.5;
    padding: 10px 0;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    min-height: 47px;
    -webkit-appearance: none;
    font-size: 1.5rem;
    text-align: center;
}

.prop-det-mortgage-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 5px;
    color: var(--primary-brand-color);
    text-decoration: underline;
}


@media(max-width:1000px) {

    .prop-det-mortgage-flex {
        gap: 0;
        flex-wrap: wrap;
    }

        .prop-det-mortgage-flex .m-form-group {
            display: inline-block;
            flex: none;
            float: left;
        }

            .prop-det-mortgage-flex .m-form-group:nth-of-type(1) {
                width: calc(50% - 5px);
                margin-right: 5px;
            }

            .prop-det-mortgage-flex .m-form-group:nth-of-type(2) {
                width: calc(50% - 5px);
                margin-left: 5px;
            }

            .prop-det-mortgage-flex .m-form-group:nth-of-type(3) {
                width: calc(50% - 5px);
                margin-right: 5px;
            }

            .prop-det-mortgage-flex .m-form-group:nth-of-type(4) {
                width: calc(50% - 5px);
                margin-left: 5px;
            }

            .prop-det-mortgage-flex .m-form-group:nth-of-type(5) {
                width: calc(50% - 5px);
                margin-right: 5px;
            }

            .prop-det-mortgage-flex .m-form-group:nth-of-type(6) {
                width: calc(50% - 5px);
                margin-left: 5px;
            }

            .prop-det-mortgage-flex .m-form-group:nth-of-type(7) {
                width: calc(100%);
                margin-top: 20px;
            }
}




.prop-det-available {
    padding: 30px 0;
}

.prop-det-available-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}




.prop-det-right-docs {
    background: #fff;
    padding: 25px;
}

.document-link-outer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.document-link-left {
}

    .document-link-left i {
        font-size: 2.4rem;
        margin-right: 6px;
    }

    .document-link-left .document-name {
        font-size: 1.5rem;
        color: #444444;
        transition: all ease-in-out 200ms;
    }

.document-link-right {
}

    .document-link-right i {
        font-size: 1.9rem;
        color: var(--primary-brand-color);
        transition: all ease-in-out 200ms;
    }

.document-link-outer:hover .document-link-right i {
    font-size: 2.1rem;
    color: var(--primary-brand-dark);
    transform: scale(1.02);
}

.document-link-outer:hover .document-name {
    color: #000;
}






/* .mort {}
.mort li { float:left; width:16.6666666667%; padding:0 5px; }
.mort .mortbtn { float:right; }
.mort li span {float:left;width:100%;text-align:center;color: var(--primary-brand-color);font-size: 1.5rem;font-weight: 500;letter-spacing: 0.07rem;}
.mort input[type=text] {float:left;width:100%;background: #fff;border: 1px solid #333;margin:10px 0 0;border:none;padding:12px 10px;font-size:1.6rem;letter-spacing:0.07rem;color: #333;font-weight: 300;text-align:center;transition: ease-in-out 0.3s;}
.mort input[type=submit] { float:right; border:none; cursor:pointer;  margin:10px 0 0; }
.mort input[type=text]:focus {outline: none; border-bottom: 1px solid #fff; } */





.map-placeholder {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 450px;
    background-image: url('../images/map-placeholder.jpg');
    background-position: center;
    background-size: cover;
}

#show-map {
    cursor: pointer;
    width: auto;
    font-size: 2rem;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: var(--primary-brand-color);
    color: #fff;
    padding: 12px 25px 15px;
    box-shadow: 0px 2px 23px -5px rgba(0,0,0,1);
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 300;
    transition: all ease-in-out 200ms;
}

    #show-map:hover {
        background: var(--primary-brand-dark);
    }

.map-outer {
    display: none;
}















/* ===================================================================== #NEW HOMES ===================================================================== */


.new-developments {
}


.new-dev-title-outer {
    padding: 30px 0;
    background-color: rgb(241 241 241);
    position: absolute;
    top: 236px;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: all ease-in-out 100ms;
}

.new-dev-title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-dev-title-spacer {
    height: 120px;
}


@media(max-width:1000px) {

    .new-dev-title-outer {
        position: static;
    }

    .new-dev-title-spacer {
        display: none;
    }
}


@media(max-width:768px) {

    .new-dev-title-flex {
        flex-direction: column;
    }

    .new-dev-title-text {
        width: 100%;
    }

    .new-dev-contact-btn {
        display: none;
    }
}





/* NEW DEVELOPMENT CARD */

.new-dev-card {
    display: flex;
    width: calc(33.3333% - 25px);
    margin-right: 37px;
    margin-bottom: 40px;
    background-color: #fff;
    min-height: 0;
    flex-direction: column;
    float: left;
}

    .new-dev-card:nth-of-type(3n) {
        margin-right: 0px;
    }

    .new-dev-card:nth-of-type(3n+1) {
        clear: both;
    }



.active .new-dev-card {
    width: calc(50% - 10px);
    margin-right: 20px;
}

    .active .new-dev-card:nth-of-type(3n) {
        margin-right: 20px;
    }

    .active .new-dev-card:nth-of-type(3n+1) {
        clear: none;
    }

    .active .new-dev-card:nth-of-type(2n) {
        margin-right: 0;
    }

    .active .new-dev-card:nth-of-type(2n+1) {
        clear: both;
    }



.new-dev-image {
    flex: 4;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 62%;
    background-color: #eee;
}

.new-dev-right {
    flex: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-dev-info-top {
    padding: 15px;
    min-height: 160px;
}

.new-dev-address {
    font-family: var(--font-body);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
}

    .new-dev-address span {
        color: #575757;
    }

.new-dev-price-range {
    display: inline-block;
    padding: 4px 10px;
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--primary-brand-color);
    color: #fff;
}

.new-dev-desc {
    display: inline-block;
    width: 100%;
    font-size: 1.3rem;
    margin: 10px 0;
    color: #3a3a3a;
}

.new-dev-info-bottom {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--color-grey-medium);
    padding: 10px;
}

.new-dev-info-box {
    flex: 1;
    padding: 10px;
    background: rgb(0 0 0 / 35%);
}

.new-dev-info-title {
    color: #999999;
    display: inline-block;
    width: 100%;
    font-size: 1rem;
}

.new-dev-info-value {
    color: #fff;
    font-size: 1.2rem;
}



@media(max-width:1200px) {

    .active .new-dev-card {
        width: calc(100%);
        margin-right: 0px;
    }

        .active .new-dev-card:nth-of-type(3n) {
            margin-right: 0px;
        }

        .active .new-dev-card:nth-of-type(2n+1) {
            clear: both;
        }
}




@media(max-width:1000px) {

    /* .new-dev-card { width: calc(100%); margin-right: 0px;} */

    .new-dev-card {
        width: calc(50% - 10px);
        margin-right: 20px;
    }

        .new-dev-card:nth-of-type(3n) {
            margin-right: 20px;
        }

        .new-dev-card:nth-of-type(3n+1) {
            clear: none;
        }

        .new-dev-card:nth-of-type(2n) {
            margin-right: 0;
        }

        .new-dev-card:nth-of-type(2n+1) {
            clear: both;
        }
}


@media(max-width:600px) {


    .new-dev-card {
        width: calc(100%);
        margin-right: 0px;
    }

        .new-dev-card:nth-of-type(3n) {
            margin-right: 0px;
        }

        .new-dev-card:nth-of-type(2n+1) {
            clear: none;
        }
}






/* ===================================================================== #STAMP DUTY CALC ===================================================================== */

.popform.stamp-duty-calc {
    padding: 0 20px 40px 20px;
}

    .popform.stamp-duty-calc header {
        width: 100%;
        display: inline-block;
        margin: 40px 0 30px;
        border-top: 3px solid #e51b39;
        padding: 20px 0 0 0;
    }

        .popform.stamp-duty-calc header h1 {
            font-size: 2.5rem;
        }


.stamp-form {
}

.prop-price-outer {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: center;
}

    .prop-price-outer .currency-icon {
        width: 0px;
        font-size: 1.6rem;
        font-weight: 600;
        color: #e51939;
    }

    .prop-price-outer input {
        flex: 1;
        max-width: 350px;
        background: #f3f3f3 !important;
    }


.prop-price-error {
    font-size: 1.3rem;
    display: inline-block;
    margin: 10px 0 0;
    color: #e51939;
}

.stamp-checkbox-outer {
    margin-top: 20px;
}

    .stamp-checkbox-outer label {
        width: auto;
        float: none;
    }

    .stamp-checkbox-outer input {
        margin-right: 5px;
    }

    .stamp-checkbox-outer .stamp-checkbox-note {
        font-size: 1.2rem;
        display: inline-block;
        margin: 5px 0 0 20px;
        color: #3e3e3e;
    }

.stamp-form button {
    float: none;
}


.stamp-results-outer {
    margin-top: 40px;
}

.stamp-results {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 20px 0 50px;
}

.stamp-result-box {
    flex: 1;
    text-align: left;
    padding: 15px;
}

    .stamp-result-box:first-of-type {
        border-right: 1px solid #eee;
    }

    .stamp-result-box .stamp-result-label {
        display: inline-block;
        width: 100%;
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .stamp-result-box .stamp-result-value {
        display: inline-block;
        width: 100%;
        font-size: 2.7rem;
        font-weight: 400;
    }


.stamp-breakdown {
    font-size: 1.4rem;
    margin-top: 20px;
}

    .stamp-breakdown table {
        overflow-x: auto;
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1.5rem;
    }

        .stamp-breakdown table caption {
            caption-side: bottom;
            color: gray;
            font-size: 0.875rem;
            margin-top: 0.75rem;
        }

        .stamp-breakdown table thead {
            border-bottom: 0.125em solid var(--primary-brand-color);
        }

        .stamp-breakdown table td {
            border-bottom: 0.0625em solid #cccccc;
        }

    .stamp-breakdown caption, th {
        text-align: left;
    }

    .stamp-breakdown th, td {
        padding: 0.75rem 1.5rem;
    }



/*new homes*/

.c-ndev {
    padding: 0 !important;
}

.new-build {
    float: left;
    width: 100%;
    padding: 0 0px 0 0;
    margin: 0px 0 0;
}

    .new-build li {
        display: inline-block;
        vertical-align: top;
        margin: 0px 0 20px;
        overflow: hidden;
    }

    .new-build a {
        min-height: 300px;
        float: left;
        width: 100%;
        border: 1px solid #eeeeee;
        background: #fff;
    }

    .new-build .img {
        border-bottom: 1px solid #d6d6d6;
        float: left;
        width: 100%;
        text-align: center;
    }

    .new-build img {
        max-width: 100%;
        max-height: 235px;
        min-height: 235px;
        display: block;
        margin: 0 auto;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%;
    }

    .new-build .info {
        float: left;
        width: 100%;
        padding: 12px 20px 18px;
    }

    .new-build h2 {
        float: left;
        width: 100%;
        font-size: 2.2rem;
        color: #333;
        font-weight: 400;
        letter-spacing: 0.4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 2.4rem;
    }

    .new-build .addr {
        float: left;
        width: 100%;
        color: #666;
        font-size: 1.4rem;
        margin: 8px 0 0;
        font-weight: 300;
        letter-spacing: 0.6px;
        line-height: 1.5rem;
    }

    .new-build .price-range {
        font-size: 1.4rem;
        line-height: 2rem;
        color: var(--primary-brand-color);
        font-weight: 400;
        margin-top: 8px;
        float: left;
    }

#prop-aval #list.view-grid li {
    width: 33.3%;
}


/* details */

#dev-top {
    position: relative;
    top: 0;
    left: 0;
    z-index: 9005;
    background: #F6F6F6;
    height: 129px; /* height: auto; */
    width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.bodysm #dev-top {
    top: 0px;
}

#dev-topblock { /* height: 130px; */
}

#dev-top .dt-t {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 143px;
    position: relative;
}

    #dev-top .dt-t header {
        float: none;
    }

        #dev-top .dt-t header span {
            float: left;
            width: 100%;
            padding: 20px 0 17px;
            font-size: 1.8rem;
            font-weight: 300;
            color: #333;
            letter-spacing: 0.1rem;
            text-transform: capitalize;
        }

        #dev-top .dt-t header h3 span {
            float: left;
            width: 100%;
            padding: 12px 0px;
            font-size: 2rem;
            font-weight: 400;
            color: var(--primary-brand-color);
            letter-spacing: 0.1rem;
            text-transform: capitalize;
        }

#dev-top .dcell {
    display: table-cell;
    vertical-align: middle;
}

#dev-top .dt-t .bckbtn {
    position: absolute;
    right: 10px;
    top: 30px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.05rem;
    text-transform: capitalize;
}

    #dev-top .dt-t .bckbtn:hover {
        color: #FFC600;
    }

#dev-top .dt-t header .status {
    float: left;
    width: 100%;
    padding: 20px 0 20px;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.1rem;
    text-transform: capitalize;
}

    #dev-top .dt-t header .status span {
        float: none;
        background: #ffc424;
        padding: 6px 10px;
        font-size: 1.5rem;
    }

        #dev-top .dt-t header .status span.res {
            float: none;
            background: #ED3023;
            color: #fff;
            padding: 6px 10px;
            font-size: 1.5rem;
        }

/* #dev-video {padding: 50px 0;background: #000;}
#dev-video .inner {}
#dev-video .inner .c-1 { padding: 0 0; }
#dev-video iframe {width: 100%;height: 600px; }
#dev-video p { float: left; text-align: center; width: 100%; font-size: 1.4rem; font-weight: 300; color: #fff; letter-spacing: 0.05rem; margin-top: 10px; line-height: 2.5rem; }
#dev-video p a { color: var(--primary-brand-color); text-decoration: none; } */

#dev-banner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 100%;
    height: 600px;
    padding: 0;
}


.prop-det-video {
    margin-bottom: 30px;
}

.responsive-iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

    .responsive-iframe iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }



#dev-details .inner {
    padding-bottom: 40px;
}

#gallery-con {
    position: relative;
    overflow: hidden !important;
    max-height: 700px;
}

    #gallery-con #gallerybtn {
        position: absolute;
        right: 10px;
        bottom: 10px;
        background: #ffc600;
        color: #333;
        font-size: 1.4rem;
        font-weight: 300;
        letter-spacing: 0.1rem;
        z-index: 999;
        padding: 10px 15px;
    }

        #gallery-con #gallerybtn i {
            padding-right: 5px;
        }

        #gallery-con #gallerybtn:hover {
            cursor: pointer;
        }

.btnlist {
    float: left;
    width: 100%;
    padding: 0 0 0 20px;
}

    .btnlist li {
        float: left;
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

        .btnlist li.show {
            padding: 20px 10px;
        }

        .btnlist li:first-child {
            padding: 0px 10px 20px;
        }

        .btnlist li .showtitle {
            float: left;
            width: 100%;
            font-size: 1.6rem;
            font-weight: 400;
            color: #333;
            letter-spacing: 0.05rem;
        }

        .btnlist li:first-child .showtitle {
            font-size: 2rem;
        }

        .btnlist li .showinfo {
            float: left;
            width: 100%;
            font-size: 1.4rem;
            font-weight: 300;
            color: #333;
            letter-spacing: 0.05rem;
            margin-top: 10px;
            line-height: 2.5rem;
        }

            .btnlist li .showinfo strong {
                font-weight: 400;
                color: #0092D2;
            }

        .btnlist li a {
            float: left;
            width: 100%;
            padding: 15px 10px;
            font-size: 1.5rem;
            font-weight: 300;
            color: #333;
            letter-spacing: 0.05rem;
            text-decoration: none;
            line-height: 2rem;
        }

            .btnlist li a:hover {
                cursor: pointer;
            }

            .btnlist li a:focus {
                outline: none;
            }

            .btnlist li a strong {
                font-weight: 400;
            }

            .btnlist li a i {
                color: #888888;
                padding-right: 10px;
                float: left;
                width: 30px;
                text-align: center;
            }

            .btnlist li a:hover {
                background: #f6f6f6;
            }

                .btnlist li a:hover i {
                    color: #ffc600;
                }

        .btnlist li:last-child {
            border-bottom: none;
        }

        .btnlist li.booknow {
            border-bottom: none;
        }

            .btnlist li.booknow a {
                background: #da1f12;
                color: #fff;
            }

                .btnlist li.booknow a i {
                    float: right;
                    color: #fff;
                    margin-top: 2px;
                }

                .btnlist li.booknow a:hover {
                    background: #c12015;
                }

.agent-con {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background: #f6f6f6;
}

    .agent-con .img {
        float: left;
        width: 40%;
        padding-right: 15px;
    }

        .agent-con .img img {
            width: 100%;
        }

    .agent-con h3 {
        margin-bottom: 15px;
    }

    .agent-con span.ph {
        float: left;
        width: auto;
        margin-right: 15px;
    }

        .agent-con span.ph .icon {
            display: none;
        }

        .agent-con span.ph .type {
            float: left;
            width: 100%;
            padding: 5px 0;
            font-size: 1.7rem;
            font-weight: 300;
            color: #666;
            letter-spacing: 0.07rem;
        }

        .agent-con span.ph a {
            float: left;
            width: 100%;
            padding: 5px 0;
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--primary-brand-color);
            letter-spacing: 0.05rem;
            text-decoration: none;
        }

    .agent-con span.email {
        float: left;
        width: auto;
    }

        .agent-con span.email .icon {
            display: none;
        }

        .agent-con span.email a {
            float: left;
            background: var(--primary-brand-color);
            margin-top: 15px;
            line-height: 4.8rem;
            font-size: 1.6rem;
            padding: 0 30px;
            text-transform: capitalize;
            text-decoration: none;
            color: #fff;
            font-weight: 300;
            letter-spacing: 0.1rem;
        }

            .agent-con span.email a:hover {
                background: #066aa9;
            }











#tabs-scroll.fixed {
    height: 62px;
}

#dev-tabs {
    background: var(--color-grey-dark);
}
    /* #dev-tabs.fixed {position: fixed;top:77px;z-index: 999;} */
    #dev-tabs .box {
        background: #fff;
        width: 100%;
        top: 0;
        z-index: 9990;
        left: 0;
    }

        #dev-tabs .box.fix {
            position: relative;
            z-index: 99;
        }

    #dev-tabs .c-1 {
    }

    #dev-tabs .box.fix .c-1 {
        border: none;
    }

    #dev-tabs ul {
        float: left;
        width: 100%;
        text-align: center;
    }

    #dev-tabs li {
        display: inline-block;
        margin-bottom: -3px;
        border-right: 1px solid #ededed;
        margin-right: -2px;
    }

        #dev-tabs li:last-child {
            border: none;
        }

    #dev-tabs a {
        float: left;
        color: #333;
        text-transform: capitalize;
        letter-spacing: 0.05rem;
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 2rem;
        padding: 20px 10px;
        text-decoration: none;
    }

    #dev-tabs .aact {
        float: left;
        color: #00706d;
        text-transform: capitalize;
        letter-spacing: 0.05rem;
        font-weight: 300;
        font-size: 1.3rem;
        line-height: 2rem;
        padding: 20px 10px;
        text-decoration: none;
    }

    #dev-tabs a i {
        color: #04abad;
        padding-right: 6px;
        margin-top: 0px;
        font-size: 1.6rem;
    }

    #dev-tabs .aact i {
        color: #888888;
        padding-right: 10px;
        float: left;
        width: 20px;
        margin-top: 2px;
        text-align: center;
    }

    #dev-tabs.newpage a {
        float: left;
        color: #333;
        text-transform: capitalize;
        letter-spacing: 0.05rem;
        font-weight: 300;
        font-size: 1.4rem;
        line-height: 3rem;
        padding: 0 30px 10px;
        text-decoration: none;
    }

    #dev-tabs a:hover, #newcar-tabs a.active {
        color: #333;
        cursor: pointer;
        background: #f4f4f4;
    }




.developments {
    background: #f6f6f6;
    padding: 30px 0 50px;
}

.dev-list {
    float: left;
    width: 100%;
}

    .dev-list li {
        padding: 0 10px;
    }

        .dev-list li:nth-child(4n+1) {
            clear: both;
        }

        .dev-list li:last-child {
            float: left !important;
            padding-right: 10px;
        }

        .dev-list li a {
            border: 1px solid #eee;
            float: left;
            background: #fff;
            width: 100%;
            position: relative;
            margin-bottom: 20px;
        }

            .dev-list li a:hover {
                background: #f4f4f4;
            }

    .dev-list .img {
        width: 100%;
        display: inline-block;
        position: relative;
        overflow: hidden;
    }

        .dev-list .img:after {
            position: relative;
            padding-top: 65%;
            display: block;
            content: "";
            overflow: hidden;
            border-bottom: 5px solid #ffc600;
        }

        .dev-list .img img {
            width: 100%;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            -o-transform: translateZ(0);
            -moz-transform: translateZ(0);
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

    .dev-list .info {
        float: left;
        width: 100%;
        padding: 10px 15px 15px;
    }

    .dev-list h3 {
        color: #333;
        text-transform: capitalize;
        font-size: 2rem;
        line-height: 2.6rem;
        letter-spacing: 0.05rem;
        font-weight: 500;
    }

    .dev-list .post {
        float: left;
        width: 100%;
        font-size: 1.6rem;
        color: #666;
        font-weight: 300;
        letter-spacing: 0.05rem;
        margin: 10px 0;
    }

    .dev-list .price {
        float: left;
        width: 100%;
        margin: 8px 0 0;
        padding: 8px 0px 0px;
        color: #0092D2;
    }

    .dev-list .status {
        display: inline;
        font-size: 1.6rem;
        font-weight: 300;
        line-height: 3rem;
    }

    .dev-list .price3 {
        float: right;
        font-size: 2rem;
        line-height: 3rem;
    }

    .dev-list .price.agreed-text {
        color: #333 !important;
        background: rgb(255, 198, 0);
        text-align: center;
        padding: 4px 10px;
        width: auto;
        font-weight: 300;
        letter-spacing: 0.05rem;
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .dev-list .price.res-text {
        color: #fff !important;
        background: rgb(237, 48, 35);
        text-align: center;
        padding: 4px 10px;
        width: auto;
        font-weight: 300;
        letter-spacing: 0.05rem;
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .dev-list .price-sales {
        text-align: left !important;
    }

#key-det {
    padding-bottom: 40px;
}

.keydetails {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0 0 0 20px;
    width: 100%;
    margin-top: 30px;
}

    .keydetails li {
        float: left;
        width: 100%;
        border-bottom: 1px solid #ddd;
        padding: 17px 10px;
    }

    .keydetails .dt1 {
        float: left;
        width: 50%;
        padding: 0;
        font-size: 1.5rem;
        font-weight: 400;
        color: #333;
        letter-spacing: 0.07rem;
    }

    .keydetails .dt2 {
        float: left;
        width: 50%;
        padding: 0;
        font-size: 1.5rem;
        font-weight: 300;
        color: #333;
        letter-spacing: 0.05rem;
    }

        .keydetails .dt2 text span {
            color: #ffc600;
        }

    .keydetails .stamp {
        float: left;
        width: 100%;
        position: relative;
        padding: 10px 10px 0px;
    }

        .keydetails .stamp span {
            font-size: 1.4rem;
            font-weight: 300;
            color: #333;
            letter-spacing: 0.05rem;
            color: #333;
            line-height: 2.6rem;
        }

            .keydetails .stamp span span {
                color: #ffc600;
                position: absolute;
                left: -3px;
            }

.keydetails-img {
    float: left;
    width: 100%;
    position: relative;
}

    .keydetails-img .img {
        padding-top: 10px;
        width: 100%;
        display: inline-block;
    }

        .keydetails-img .img img {
            max-width: 100%;
            max-height: 235px;
            display: block;
            margin: 0 auto;
        }

    .keydetails-img .textbp {
        color: #666;
        font-size: 1.6rem;
    }

#dev-desc.disable a.rd-more {
    display: none;
}

#dev-desc.disable .textbp:after {
    display: none;
}

#dev-desc {
    background: #f6f6f6;
    padding: 30px 0 50px;
}

    #dev-desc .textbp {
        color: #333;
        font-weight: 300;
        text-align: left;
        font-size: 1.4rem;
        letter-spacing: 0.04rem;
        line-height: 3rem;
        float: left;
        width: 100%;
    }

        #dev-desc .textbp:after {
        }

    #dev-desc a.rd-more {
        text-align: center;
        display: table;
        margin: 0 auto;
        z-index: 9;
        position: relative;
    }

        #dev-desc a.rd-more:hover {
            cursor: pointer;
            background: #eee;
        }

    #dev-desc .rd-more-txt {
        float: left;
        width: 100%;
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--primary-brand-color);
        letter-spacing: 0.05rem;
        margin-top: 10px;
    }

    #dev-desc .rd-more i {
        font-size: 3.4rem;
        color: var(--primary-brand-color);
    }

    #dev-desc.extend .textbp {
        max-height: 100%;
        overflow: visible;
    }

        #dev-desc.extend .textbp:after {
            opacity: 0;
        }

    #dev-desc.extend .rd-more i {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }


    #dev-desc .textbp h3 {
        margin: 20px 0;
        color: #00706d;
        text-transform: capitalize;
        font-size: 2.2rem;
        line-height: 2.4rem;
        letter-spacing: 0.08rem;
        font-weight: 500;
    }

    #dev-desc .textbp table {
        margin-bottom: 20px;
    }

        #dev-desc .textbp table td {
            padding: 8px 40px 8px 0px !important;
            border: 0px;
            width: 100%;
            float: left;
        }

            #dev-desc .textbp table td:first-child {
                font-weight: 500;
                text-transform: uppercase;
                color: #155e60;
                font-size: 1.5rem;
            }

                #dev-desc .textbp table td:first-child span {
                    color: #666;
                    font-size: 1.3rem;
                }

        #dev-desc .textbp table tr {
            width: 100%;
            float: left;
            padding-bottom: 15px;
        }

    #dev-desc .feats {
        float: left;
        width: 100%;
    }

        #dev-desc .feats li {
            float: left;
            width: 50%;
            vertical-align: top;
            padding: 5px 15px 5px 20px;
            position: relative;
            color: #333;
            font-weight: 300;
            font-size: 1.5rem;
            letter-spacing: 0.02rem;
            line-height: 2.6rem;
        }

        #dev-desc .feats span {
            width: 10px;
            position: absolute;
            left: 0;
            top: 3px;
        }

        #dev-desc .feats .fa {
            font-size: 0.2rem;
            color: #299cc0;
        }

#dev-feat {
    background: #fff;
    padding: 30px 0 50px;
}

    #dev-feat .feats {
        float: left;
        width: 100%;
    }

        #dev-feat .feats li {
            float: left;
            width: 50%;
            vertical-align: top;
            padding: 5px 15px 5px 20px;
            position: relative;
            color: #333;
            font-weight: 300;
            font-size: 1.4rem;
            letter-spacing: 0.04rem;
            line-height: 2.6rem;
        }

        #dev-feat .feats span {
            width: 10px;
            position: absolute;
            left: 0;
            top: 3px;
        }

        #dev-feat .feats .fa {
            font-size: 0.2rem;
            color: #00726f;
        }


/* Fixed Details */
#topdet {
    position: relative;
    top: 0;
    left: 0;
    z-index: 9005;
    border-bottom: 1px solid #dddddd;
    background: #f2f2f2;
    height: 121px;
    width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

#topdetblock {
    height: 121px;
}

    #topdetblock.banner {
        height: 0px;
    }

#topdet .dtbl {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 80px;
}

#topdet .dcell {
    display: table-cell;
    vertical-align: middle;
}

.dbck {
    padding: 0 15px 0 0;
    width: 10%;
}

    .dbck a {
        float: left;
        font-size: 1.2rem;
        color: #00726f;
        text-decoration: none;
        font-weight: 400;
        padding: 10px 5px;
        letter-spacing: 0.2px;
        border: 1px solid #dddddd;
    }

    .dbck .fa {
        margin: 0 10px 0 0;
        position: relative;
        left: 5px;
    }

    .dbck a:hover .fa {
        left: 0;
    }

.dname {
    width: 100%;
    padding: 0 15px 0 0;
}

    .dname h1 {
        line-height: 2.4rem;
        float: left;
        width: 100%;
        letter-spacing: 0.4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 2.2rem;
        color: #333;
    }

    .dname span {
        float: left;
        font-size: 1.5rem;
        color: #666;
        margin: 8px 0 0;
        letter-spacing: 0.4px;
        font-weight: 400;
    }

.dprice {
    padding: 0 0 0 15px;
    width: 40%;
}

    .dprice span {
        float: left;
        width: 100%;
        text-transform: capitalize;
        color: var(--primary-brand-color);
        text-align: right;
    }

    .dprice .dpt {
        font-size: 1.4rem;
        font-weight: 400;
        letter-spacing: 0.4px;
        margin: 0 0 2px 0;
    }

    .dprice .dpp {
        font-size: 2.4rem;
        font-weight: 400;
        letter-spacing: 0.6px;
    }

    .dprice .dpc {
        color: #666;
        margin: 6px 0 0;
        letter-spacing: 0.4px;
        font-size: 1.2rem;
        font-weight: 600;
    }

#topdet .dts {
    border-top: 1px solid #dddddd;
    height: 40px;
    width: 100%;
    background: #f2f2f2;
}

.addthis_inline_share_toolbox.addthis--blog {
    clear: none !important;
    float: right;
    display: inline-block;
    padding: 10px 0;
}

.dtsm {
    float: left;
    width: 60%;
    text-align: center;
}

    .dtsm ul {
        float: left;
        width: 100%;
        text-align: center;
    }

    .dtsm li {
        display: inline-block;
        line-height: 39px;
        text-transform: capitalize;
        font-size: 1.4rem;
        font-weight: 300;
        letter-spacing: 0.4px;
        color: #333;
        margin: 0 8px;
    }

    .dtsm img {
        height: 10px;
        margin: 0 2px 0 0;
    }

.dtsr {
    float: right;
    width: 20%;
    line-height: 40px;
    text-align: right;
}

    .dtsr a {
        text-decoration: none;
        color: #006e6b;
        font-size: 1.6rem;
    }

    .dtsr .fa {
        position: relative;
        margin: 0 0 0 15px;
        right: 5px;
    }

    .dtsr a:hover .fa {
        right: 0px;
    }


/* Details */
#detimgs {
    max-height: 661px;
    background: #fff;
    padding: 5px 0;
    border-bottom: 1px solid #d6d6d6;
    overflow: hidden;
}

    #detimgs .c-1 {
        padding: 0;
    }

#detinfo {
    background: #00706d;
    padding: 40px 0;
}

.feats {
    float: left;
    width: 100%;
}

    .feats li {
        display: inline-block;
        width: 50%;
        vertical-align: top;
        padding: 0 15px 0 20px;
        position: relative;
        font-size: 1.4rem;
        line-height: 2.4rem;
        color: #666;
    }

    .feats span {
        width: 10px;
        position: absolute;
        left: 0;
        top: -1px;
    }

    .feats .fa {
        font-size: 0.2rem;
        color: #666;
    }

.rooms {
    float: left;
    width: 100%;
}

    .rooms li {
        float: left;
        width: 100%;
        margin: 0 0 15px;
    }

.dettbl {
    float: left;
    width: 100%;
    border-top: 1px solid #006663;
    border-left: 1px solid #006663;
    font-size: 1.4rem;
    color: #fff;
}

    .dettbl li {
        background: #015c59;
        display: inline-block;
        vertical-align: top;
        width: 50%;
        line-height: 2.8rem;
        border-bottom: 1px solid #00726f;
        border-right: 1px solid #00726f;
        letter-spacing: 0.04rem;
    }

        .dettbl li:nth-child(4n+2), .dettbl li:nth-child(4n+1) {
            background: #015c59;
        }

    .dettbl .dt1 {
        float: left;
        width: 30%;
        padding: 8px 1% 6px 2%;
        font-weight: 500;
        white-space: nowrap;
    }

    .dettbl .dt2 {
        float: left;
        width: 70%;
        border-left: 1px solid #006663;
        padding: 8px 1% 6px 2%;
        font-weight: 300;
    }

.deti1, .deti1a, .deti1b, .deti2, .deti2d {
    float: left;
    width: 100%;
}

.deti1a {
    color: #333;
    font-size: 2.0rem;
    letter-spacing: 0.4px;
}

.deti1b {
    color: #666;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
    margin: 6px 0 0;
}

.deti2 {
    text-align: right;
}

.deti2a {
    color: #DA2129;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.deti2b {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0 5px;
}

.deti2c {
    float: right;
    font-weight: 600;
}

.deti2d {
    color: #666;
    font-size: 1.2rem;
    margin: 10px 0 0;
    text-transform: uppercase;
    font-weight: 600;
}

.det-agreed {
    background: #00acae;
    color: #fff;
}

.det-sold {
    background: #00acae;
    color: #fff;
}

.det-sale {
    background: #00acae;
    color: #fff;
    font-weight: 500 !important;
}

.discl {
    float: left;
    width: 100%;
    line-height: 1.8rem;
    font-size: 1.2rem;
    margin: 15px 0 0;
    letter-spacing: 0.2px;
}

.detbtns {
    float: left;
    width: 100%;
    margin: 0 0 25px;
}

    .detbtns li {
        float: left;
        margin: 0 5px 5px 0;
    }

    .detbtns a {
        float: left;
        color: #fff;
        background: #666;
        line-height: 3.6rem;
        letter-spacing: 0.4px;
        font-size: 1.4rem;
        text-decoration: none;
        padding: 0 10px 0 15px;
    }

    .detbtns .fa {
        margin: 0 0 0 10px;
        position: relative;
        right: 5px;
    }

    .detbtns a:hover {
        background: #333;
    }

        .detbtns a:hover .fa {
            right: 0;
        }

.innertbl {
    display: table-cell;
    display: table;
}

    .innertbl .c-60, .innertbl .c-40 {
        display: table-cell;
        vertical-align: top;
        float: none !important;
        background: #00706d;
    }

    .innertbl .c-5p {
        display: table-cell;
        vertical-align: middle;
        float: none !important;
        border: none;
    }

    .innertbl .l-c {
        padding: 0 !important;
    }

.innerwebp {
}

    .innerwebp .c- {
        display: table-cell;
        vertical-align: middle;
        float: none !important;
        border: 10px solid #ededed;
        background: #fff;
        padding: 20px;
    }

    .innerwebp .c-5p {
        display: table-cell;
        vertical-align: middle;
        float: none !important;
        border: none;
    }

    .innerwebp .l-c {
        padding: 0 !important;
    }

.detag {
    display: table;
    width: 100%;
    position: relative;
    table-layout: fixed;
}

    .detag .img {
        display: table-cell;
        vertical-align: bottom;
        text-align: right;
    }

        .detag .img.defimg {
            vertical-align: top;
            position: relative;
            margin-bottom: 20px;
            float: left;
        }

        .detag .img img {
            max-width: 100%;
            max-height: 280px;
        }

    .detag .info {
        color: #fff;
        display: table-cell;
        vertical-align: middle;
        width: 60%;
        padding: 0px 15px 30px 15px;
        text-align: center;
    }

        .detag .info h3 {
            bottom: 2px;
            position: relative;
            font-size: 1.8rem;
            background: #333333;
            width: 100%;
            text-align: center;
            padding: 7px 0 8px;
            color: #fff;
        }

    .detag .name {
        margin: 0 0 10px;
        float: left;
        width: 100%;
        font-size: 1.8rem;
        letter-spacing: 0.4px;
        line-height: 2.4rem;
    }

    .detag .qual {
        font-size: 1.4rem;
        color: #666;
        letter-spacing: 0.4px;
    }

    .detag .place {
        word-break: break-all;
        float: left;
        width: 100%;
        margin: 8px 0;
        font-size: 1.4rem;
        color: #666;
        letter-spacing: 0.4px;
    }

    .detag .ph {
        word-break: break-all; /* float:left; */
        margin: 10px 0 0;
        font-size: 2rem;
        letter-spacing: 0.04rem;
        font-weight: 400;
        padding-right: 20px;
    }

        .detag .ph a {
            color: #fff;
            text-decoration: none;
            font-size: 1.6rem;
            letter-spacing: 0.04rem;
            margin: 10px 0 0;
        }

            .detag .ph a:hover {
                text-decoration: underline;
            }

    .detag .email {
        word-break: break-all; /* float:left; */
        margin: 15px 0 0;
    }

    .detag .icon {
        margin: 0 5px 0 0; /* float:left; */
        width: 15px;
        position: relative;
        color: var(--primary-brand-color);
    }

    .detag .email a {
        color: #fff;
        text-decoration: none;
        font-size: 1.6rem;
        letter-spacing: 0.04rem;
        margin: 10px 0 0;
    }

        .detag .email a:hover {
            text-decoration: underline;
        }

    .detag .email .icon {
        font-size: 1.8rem;
        top: 0px;
    }

    .detag .type {
        text-transform: capitalize;
        letter-spacing: .04rem;
        color: #fff;
        font-size: 1.6rem;
        margin: 0 10px 0 0;
    }

#detbtnbar {
    border-bottom: 1px solid #d6d6d6;
    background: #ededed;
}

.detbtnbar {
    float: left;
    text-align: center;
    width: 100%;
}

    .detbtnbar li {
        height: 50px;
        display: inline-block;
        border-left: 1px solid #d6d6d6;
    }

        .detbtnbar li .fa {
            margin: 0 5px 0 0;
        }

        .detbtnbar li:last-child {
            border-right: 1px solid #d6d6d6;
        }

    .detbtnbar a, .detbtnbar .aact {
        cursor: pointer;
        float: left;
        font-size: 1.4rem;
        text-decoration: none;
        color: #666;
        line-height: 5rem;
        padding: 0 10px;
        letter-spacing: 0.4px;
        height: 51px;
    }

        .detbtnbar a.video {
            background: #01613C;
            color: #fff;
        }

    .detbtnbar .aact {
        cursor: default;
    }

    .detbtnbar a:hover {
        color: #fff;
        background: #333;
    }

.directions header {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.directions p i {
    font-size: 0.6rem;
    margin-right: 9px;
    float: left;
    top: 13px;
    position: relative;
    color: #00706d;
}

.directions p:last-of-type {
    display: none;
}


/*Feedback Form*/

.rwd-table {
    margin: 4em 0 0 0;
    min-width: 300px;
    font-size: 1.2em;
}

    .rwd-table tr {
        border-bottom: 1px solid #ddd;
    }

    .rwd-table th {
        display: none;
    }

    .rwd-table td {
        display: block;
    }

        .rwd-table td:first-child {
            padding-top: .5em;
        }

        .rwd-table td:last-child {
            padding-bottom: .5em;
        }

        .rwd-table td:before {
            content: attr(data-th) " ";
            /*font-weight: bold;*/
            width: 6.5em;
            display: inline-block;
        }

@media (min-width: 480px) {
    .rwd-table td:before {
        display: none;
    }
}

.rwd-table th, .rwd-table td {
    text-align: left;
}

@media (min-width: 480px) {
    .rwd-table th, .rwd-table td {
        display: table-cell;
        padding: .25em .5em;
    }

        .rwd-table th:first-child, .rwd-table td:first-child {
            padding-left: 0;
        }

        .rwd-table th:last-child, .rwd-table td:last-child {
            padding-right: 0;
        }
}

.rwd-table tr:nth-child(1) {
    background-color: #f5f5f5;
}

.rwd-table tr:nth-child(odd) {
    background-color: #fbfbfb
}

@media (max-width: 480px) {
    .rwd-table input[type=radio] {
        display: inline-block !important;
        margin: 0 20% !important;
    }

    .rwd-table th, .rwd-table td:before {
        line-height: 1.5em;
        padding-top: 15px;
    }
}

.rwd-table {
    background: #fff;
    color: #000;
    overflow: hidden;
}

    .rwd-table tr {
        border-color: #d6d6d6;
    }

    .rwd-table th, .rwd-table td {
        margin: .5em 1em;
    }

@media (min-width: 480px) {
    .rwd-table th, .rwd-table td {
        padding: 1.4em 1em !important;
    }
}

.rwd-table th, .rwd-table td:before {
    color: #000;
    text-align: center;
}

.rwd-table input[type=radio] {
    display: block;
    margin: 0 auto;
}




/* Mortgage Calculator */
/* #mortgage {background: #f2f2f2;padding-bottom: 40px;margin-bottom: -40px;} */







/* ===================================================================== #NEWS/BLOG ===================================================================== */


.news-list-outer {
    padding: 30px 0;
}

.news-list-flex {
    display: flex;
    gap: 20px;
}

.news-list-left {
    flex: 1;
}

.news-list {
}

.news-item {
    display: flex;
    margin-bottom: 30px;
    background: #fff;
}

    .news-item .news-item-image {
        width: 280px;
        background-position: center;
        background-size: cover;
        padding-bottom: 20%;
    }

    .news-item .news-item-info {
        flex: 1;
        padding: 20px;
    }

    .news-item .news-item-date {
        display: inline-block;
        width: 100%;
        font-size: 1.5rem;
        color: #525252;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .news-item .news-item-title {
        display: inline-block;
        width: 100%;
        font-family: var(--font-body);
        font-size: 1.9rem;
        margin-bottom: 10px
    }

    .news-item .news-item-text {
        display: inline-block;
        width: 100%;
        font-size: 1.4rem;
        margin: 0 0 10px;
        color: #3c3c3c;
        letter-spacing: 0.3px;
        line-height: 2;
    }



.news-list-right {
    width: 345px;
}




@media(max-width:1000px) {

    .news-list-flex {
        flex-direction: column;
    }
}


@media(max-width:600px) {

    .news-item {
        flex-direction: column;
    }

        .news-item .news-item-image {
            width: 100%;
            padding-bottom: 60%;
        }
}









/* news */

.blog {
    float: left;
    list-style: none;
    width: 100%;
    padding: 0;
}

    .blog li {
        float: left;
        display: inline-block;
        display: flex;
        padding: 0 10px;
        margin: 30px 0px 0;
    }

        .blog li:first-of-type {
            margin-top: 0px;
        }

        .blog li:last-of-type {
            float: left !important;
        }

        .blog li .wrap {
            float: left;
            width: 100%;
            border-bottom: 1px solid #ddd;
            padding-bottom: 30px;
        }

    .blog .img {
        background: #ededed;
        float: left;
        width: 30%;
        text-align: center;
        margin-top: 15px;
    }

        .blog .img img {
            display: block;
            margin: 0 auto;
            max-height: 300px;
            max-width: 100%;
        }

    .blog .info {
        float: left;
        width: 70%;
        padding: 15px 30px;
    }

    .blog h2 {
        margin: 0 !important;
        text-align: left;
        float: left;
        width: 100%;
    }

        .blog h2 a {
            text-decoration: none;
            margin: 12px 0 0;
            line-height: 3.4rem;
            float: left;
            width: 100%;
            font-weight: 400;
            font-size: 2.4rem;
            color: #333;
            letter-spacing: 0.08rem;
        }

            .blog h2 a:hover {
                text-decoration: underline;
            }

    .blog .date {
        font-size: 1.4rem;
        font-weight: 300;
        color: var(--primary-brand-color);
        letter-spacing: 0.05rem;
        text-transform: capitalize;
    }

    .blog .text {
        text-align: left;
        float: left;
        width: 100%;
        margin: 10px 0 0;
        letter-spacing: 0.2px;
        color: #666;
        font-size: 1.4rem;
        line-height: 2.4rem;
        font-weight: 300;
        height: 27px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blog .btn {
        border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        -webkit-border-radius: 0 !important;
        text-decoration: none;
        margin: 20px 0 0;
        float: left;
        color: #fff;
        background: var(--primary-brand-color);
        line-height: 4rem;
        padding: 0 15px;
        text-transform: capitalize;
        font-size: 1.4rem;
        letter-spacing: 0.04rem;
        font-weight: 500;
    }

        .blog .btn:hover {
            background: var(--primary-brand-dark);
        }

        .blog .btn .fa {
            margin: 0 0 0 10px;
            position: relative;
            right: 0;
        }

        .blog .btn:hover .fa {
            right: -5px;
            color: #fff;
        }

    .blog.coming-soon li {
        margin-top: 10px;
    }

    .blog.coming-soon .info {
        padding-top: 30px;
        width: 50%;
    }

    .blog.coming-soon .img {
        width: 50%;
        background: none;
    }



.article-inner {
    position: relative;
    z-index: 10;
    margin-top: -56px;
    background: #fff;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}


#article .side {
    padding: 0 10px 5px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 30px;
}

    #article .side .img {
        width: 100%;
        float: left;
    }

        #article .side .img img {
            width: 100%;
        }

    #article .side a.bckbtn {
        float: left;
        background: #fff;
        padding: 17px 20px;
        border-right: 1px solid #ddd;
        font-size: 1.5rem;
        font-weight: 300;
        color: #333;
        letter-spacing: 0.05rem;
        text-decoration: none;
        line-height: 2rem;
    }

        #article .side a.bckbtn i {
            float: left;
            color: #333;
            margin-top: 2px;
            padding-right: 10px;
        }

        #article .side a.bckbtn:hover {
            background: #006e6b;
            color: #fff;
        }

            #article .side a.bckbtn:hover i {
                color: #fff;
            }

    #article .side .date {
        float: left;
        font-size: 1.6rem;
        padding: 15px 0 15px 15px;
        font-weight: 400;
        color: #333;
        letter-spacing: 0.05rem;
    }

        #article .side .date span {
            font-size: 1.6rem;
            font-weight: 300;
            color: var(--primary-brand-color);
            letter-spacing: 0.05rem;
            margin-top: 10px;
            line-height: 2.5rem;
        }

.addnews {
    float: right;
    text-align: right;
    margin: 20px 0 0;
    width: auto;
}

    .addnews a {
        margin: 0 6px 0 !important;
        line-height: 26px;
        display: inline-block;
    }

    .addnews .fa {
        font-size: 1.8rem;
        color: var(--primary-brand-color);
    }

    .addnews a:hover .fa {
        color: var(--primary-brand-color);
    }

#article .main {
    padding: 0 20px 20px;
}

    #article .main .blogimg {
        float: left;
        width: 100%;
        text-align: center;
        margin: 0px 0 20px;
    }

        #article .main .blogimg img {
            max-width: 100%;
        }

    #article .main .newstext {
        float: left;
        width: 100%;
        font-size: 1.4rem;
        font-weight: 400;
        color: #333;
        letter-spacing: 0.04rem;
        margin-top: 10px;
        margin-bottom: 40px;
        line-height: 2.5rem;
    }

        #article .main .newstext strong {
            font-weight: 400;
        }

        #article .main .newstext a {
            color: var(--primary-brand-color) !important;
            font-weight: 400;
        }

/* Login */
.login {
    float: left;
    width: 40%;
    margin: 40px 6% 30px 12%;
}

.loginbox {
    background: #fff;
    border: 1px solid #d6d6d6;
    padding: 40px 60px;
    float: left;
    width: 100%;
}

    .loginbox label {
        padding: 0 0 0 10px;
        float: left;
        width: 100%;
        font-size: 1.4rem;
        letter-spacing: 0.4px;
        color: #666;
        margin: 20px 0 8px;
    }

    .loginbox input[type=text], .loginbox input[type=email], .loginbox input[type=password], .loginbox input[type=number] {
        float: left;
        width: 100%;
        padding: 10px 10px;
        border: 1px solid #d6d6d6;
        font-size: 1.4rem;
        letter-spacing: 0.4px;
    }

    .loginbox button {
        cursor: pointer;
        float: right;
        margin: 20px 0 0;
        border: none;
        color: #fff;
        background: var(--primary-brand-color);
        line-height: 48px;
        padding: 0 15px;
        font-weight: 500;
        font-size: 1.6rem;
        letter-spacing: 0.6px;
    }

        .loginbox button:hover {
            background: var(--primary-brand-dark);
        }

        .loginbox button .fa {
            margin: 0 0 0 10px;
            position: relative;
            right: 0;
        }

        .loginbox button:hover .fa {
            right: -5px;
        }

    .loginbox .loginerr {
        float: left;
        width: 100%;
        line-height: 2.4rem;
        font-size: 1.4rem;
        color: #DA2129;
    }

        .loginbox .loginerr a {
            color: #333;
            text-decoration: none;
        }

            .loginbox .loginerr a:hover {
                text-decoration: underline;
            }

        .loginbox .loginerr span {
            color: #333 !important;
        }

            .loginbox .loginerr span a {
                color: #DA2129 !important;
                text-decoration: none;
            }

                .loginbox .loginerr span a:hover {
                    text-decoration: underline;
                }

    .loginbox .forgot {
        float: left;
        line-height: 4.8rem;
        margin: 20px 0 0;
    }

        .loginbox .forgot a {
            float: right;
            text-decoration: none;
            color: var(--primary-brand-color);
            letter-spacing: 0.4px;
            font-size: 1.2rem;
        }

            .loginbox .forgot a:hover {
                text-decoration: underline;
            }

    .loginbox .logtxt {
        float: left;
        width: 100%;
        line-height: 2.0rem;
        font-size: 1.4rem;
        color: #333;
        letter-spacing: 0.04rem;
    }

.newuser {
    float: left;
    width: 30%;
    margin: 40px 12% 30px 0;
}

    .newuser h2 {
        float: left;
        width: 100%;
        text-align: center;
        padding: 10px 10px 10px;
        background: var(--primary-brand-color);
        font-size: 1.6rem;
        letter-spacing: 0.4px;
        color: #fff;
        line-height: 2.4rem;
    }

    .newuser .nbtn {
        cursor: pointer;
        float: left;
        margin: 20px 0 0;
        border: none;
        color: #fff;
        background: var(--primary-brand-color);
        line-height: 3.8rem;
        padding: 0 15px;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.4px;
    }

        .newuser .nbtn .fa {
            margin: 0 0 0 10px;
            position: relative;
            right: 0;
        }

        .newuser .nbtn:hover .fa {
            right: -5px;
        }

    .newuser .logtxt {
        float: left;
        width: 100%;
        line-height: 2.2rem;
        font-size: 1.4rem;
        margin: 20px 0 0;
        letter-spacing: 0.04rem;
        color: #333;
    }

.login.rem {
    margin: 40px 30% 0;
}

/*style of living*/
#dream-homes-ni .pl-title-outer {
    height: 150px;
    background: url(/images/pl-bg-head.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-position: center;
    filter: brightness(1.2);
    background-color: rgb(1, 97, 60);
}

#dream-homes-ni .pl-outer .c-3 {
    width: 33.33333%;
    min-height: 300px;
    height: calc(26.333vh - 40px);
    margin-bottom: 30px;
}

#dream-homes-ni .pl-title-outer h1 {
    color: #fff;
    font-size: 4em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 50px;
    font-weight: 400;
    position: relative;
}

    #dream-homes-ni .pl-title-outer h1::after {
        content: "";
        height: 3px;
        width: 130px;
        position: absolute;
        bottom: -20px;
        left: calc(50% - 65px);
        background-color: red;
    }

#dream-homes-ni .pl-inner {
    display: block;
    background-color: #dfdfdf; /* padding: 0 10%; */
    height: 100%;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 0 22px -8px rgba(0, 0, 0, 0.32);
    transition: all ease-in-out 400ms;
}

#dream-homes-ni .pl-intro-text {
    padding: 40px 150px 0;
    font-weight: 100;
    line-height: 2.6em;
}

    #dream-homes-ni .pl-intro-text a {
        font-weight: 400;
        color: #179e6a;
    }

#dream-homes-ni .pl-text-outer {
    padding: 20px 0 60px;
    background: white;
    border: 1px solid #d6d6d6;
    margin: 20px 0 -60px;
    border-bottom: 2px solid #d6d6d6;
}

#dream-homes-ni .pl-inner span.pl-inner-title {
    padding: 10px 0px 16px 0;
    background: rgba(229, 25, 57, 0.8);
    color: #fff;
    font-size: 2rem;
    display: block;
    letter-spacing: 0.08rem;
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    border-radius: 0px;
    transition: all ease-in-out 400ms;
}

    #dream-homes-ni .pl-inner span.pl-inner-title::after {
        height: 2px;
        width: 130px;
        position: absolute;
        bottom: 16px;
        left: calc(50% - 65px);
        background-color: white;
        transition: all ease-in-out 400ms;
    }

#dream-homes-ni .pl-outer [class*='c-']:last-of-type, .l-c {
    float: left;
}

#dream-homes-ni .pl-list {
    padding: 50px 40px 20px;
    margin-top: -70px;
    position: relative;
    z-index: 12;
}
/*Cat Hover*/
#dream-homes-ni .pl-inner:hover {
    box-shadow: 0 0 48px -3px rgba(0, 0, 0, 0.2);
}

    #dream-homes-ni .pl-inner:hover .pl-inner-title {
        background-color: rgb(245, 60, 88);
    }

/* Dream Homes NI Properties*/

.dream-search-title-outer {
    padding: 0 0 20px 0;
    box-shadow: inset 0 -19px 80px -50px rgba(0,0,0,0.5);
}

    .dream-search-title-outer h1 {
        color: #575757;
        font-size: 2.8em;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 50px;
        font-weight: 400;
        position: relative;
    }

        .dream-search-title-outer h1::after {
            content: "";
            height: 3px;
            width: 130px;
            position: absolute;
            bottom: -20px;
            left: calc(50% - 65px);
            background-color: red;
        }

    .dream-search-title-outer .cat-back-btn-outer {
        display: block;
        text-align: center;
    }

    .dream-search-title-outer a.cat-back-btn {
        display: inline-block;
        width: auto;
        text-align: center;
        margin-top: 40px;
        text-decoration: none;
        text-transform: uppercase;
        color: #4e4e4e;
        font-size: 1.2em;
        padding: 11px 13px;
        background: #fff;
        font-weight: 300;
        letter-spacing: 0.5px;
        border: 1px solid #e8e8e8;
        transition: all ease-in-out 300ms;
    }

        .dream-search-title-outer a.cat-back-btn:hover {
            color: white;
            background: #01613C;
        }

.img-fit {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.dream-homes-search #list.view-grid li {
    width: 33.333%;
    margin: 0;
    padding: 2px;
}

/*Listing Styles*/
#dream-homes-ni #list.view-grid li {
    width: 33.3%;
}

#dream-homes-ni #list.view-grid .icons2 {
    position: relative;
}

#dream-homes-ni #list.view-grid .h2grid {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    #dream-homes-ni #list.view-grid .h2grid.noelip {
        text-overflow: inherit;
        white-space: inherit;
        overflow: inherit;
    }

/* Rental Boxes */
.rental-services-boxes {
    margin: 20px 0;
    display: inline-block;
    width: 100%;
}

.rental-services-box {
    display: inline-block;
    width: 31.333%;
    float: left;
    margin-bottom: 10px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center;
    margin: 20px 1% 0;
    transition: all ease-in-out 300ms;
}

    .rental-services-box:hover {
        background-color: #004845;
    }

    .rental-services-box span {
        display: inline-block;
        color: #fff;
        width: 100%;
        text-align: center;
        padding: 80px 0;
        font-size: 2rem;
        background: rgba(51, 51, 51, 0.1);
    }



/* Members Area */
.membox {
    border-top: 1px solid #d6d6d6;
    background: #fff;
    float: left;
    width: 100%;
    padding: 20px;
}

.mlog {
    color: #DA2129;
    text-decoration: none;
    font-size: 2.4rem;
    margin: 0px 0 0 20px;
}

    .mlog:hover {
        text-decoration: underline;
    }

#SavedSearchList {
    float: left;
    width: 100%;
}

    #SavedSearchList .nores {
        float: left;
        text-align: center;
        width: 100%;
        font-size: 1.4rem;
        color: #666;
        margin: 10px 0 0;
        letter-spacing: 0.4px;
    }

.saved {
    float: left;
    width: 100%;
}

    .saved li {
        float: left;
        width: 100%;
        border-bottom: 1px solid #ededed;
    }

    .saved .stbl {
        display: table;
        vertical-align: top;
        width: 100%;
        table-layout: fixed;
        font-size: 1.4rem;
        color: #666;
    }

    .saved .scell {
        display: table-cell;
        text-align: center;
        padding: 15px 10px;
    }

    .saved .scsearch {
        line-height: 2.0rem;
        width: 70%;
        text-align: left;
        border-left: 1px solid #ededed;
    }

        .saved .scsearch a {
            text-decoration: none;
            color: #666;
        }

            .saved .scsearch a:hover {
                text-decoration: underline;
            }

    .saved .scalert {
        width: 10%;
        border-left: 1px solid #ededed;
        vertical-align: middle;
    }

    .saved .scview {
        width: 10%;
        border-left: 1px solid #ededed;
        vertical-align: middle;
    }

    .saved .scdel {
        width: 10%;
        border-left: 1px solid #ededed;
        border-right: 1px solid #ededed;
        vertical-align: middle;
    }

    .saved .stop .scell {
        word-wrap: break-word;
        border-color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        font-size: 1.2rem;
        color: #666;
        font-weight: 300;
    }


/* ==========================================================================
Testimonials
/* ======================================================================== */



#testimonials-back h1 {
    color: #fff;
    font-size: 3.6rem;
}

#testimonials {
    background: #fff;
    position: relative;
    z-index: 100;
}

#testimonials-back .text-outer {
    padding: 40px 0 60px;
    position: relative;
    z-index: 999;
}

#testimonials-back .intro-text {
    padding: 20px 120px 20px;
    font-weight: 100;
    line-height: 2.6em;
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-top: 40px;
}

/* #testimonials-back { position: relative; background: #000 url(https://www.simonbrien.com/images/geometric-bg.png); background-size: cover!important; background-attachment: fixed; background-repeat: no-repeat; background-position: center; min-width: 100%; min-height: 100%; } */
/* #testimonials-back:after { content: ""; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: #01603c; opacity: 0.8; z-index: 99; } */

#testimonials {
    background: #fff;
}

    #testimonials:nth-child(even) {
        background: #F9F9FC;
    }

    #testimonials ul.test {
        float: left;
        width: 100%;
        margin-top: 20px;
    }

        #testimonials ul.test li {
            padding: 20px 100px 40px;
            border-bottom: 1px solid #ddd;
            margin-bottom: 40px;
        }

            #testimonials ul.test li:last-child {
                border-bottom: none;
            }

            #testimonials ul.test li .com {
                font-weight: 500;
                line-height: 2.6em;
                text-align: center;
                font-size: 1.4rem;
                color: #333;
            }

                #testimonials ul.test li .com span {
                    float: left;
                    width: 100%;
                    text-align: center;
                }

                    #testimonials ul.test li .com span img {
                        width: 20px;
                    }

                        #testimonials ul.test li .com span img.even {
                            display: inline-block;
                        }

                        #testimonials ul.test li .com span img.odd {
                            display: none;
                        }

                #testimonials ul.test li .com .date {
                    float: left;
                    width: 100%;
                    font-weight: 100;
                    color: #666;
                    font-style: italic;
                    margin-top: -5px;
                    margin-bottom: 10px;
                }

            #testimonials ul.test li ul.service {
                text-align: center;
                margin-top: 20px;
            }

                #testimonials ul.test li ul.service li {
                    width: auto;
                    display: inline-block;
                    padding: 0px 15px;
                    margin-top: 10px;
                    border-bottom: none;
                    border-right: 1px solid #eee;
                    color: #333;
                    margin-bottom: 0;
                }

                    #testimonials ul.test li ul.service li:last-child {
                        border: none;
                    }

                    #testimonials ul.test li ul.service li span {
                        float: left;
                        width: 100%;
                        padding: 10px;
                        font-size: 1.4rem;
                        font-weight: 100;
                        font-style: italic;
                    }

                        #testimonials ul.test li ul.service li span.tp {
                            font-weight: 500;
                            font-style: normal;
                        }

    #testimonials:nth-child(even) * {
        color: #000 !important;
    }

    #testimonials:nth-child(even) ul.test li .com span img.odd {
        display: none;
    }

    #testimonials:nth-child(even) ul.test li .com span img.even {
        display: inline-block;
    }

#testimonials-back .load-more {
    position: relative;
    background: #fff;
    z-index: 999;
    padding: 30px 0;
    text-align: center;
}

    #testimonials-back .load-more img {
        display: inline-block;
        width: 50px;
    }

    #testimonials-back .load-more p {
        font-style: italic;
        font-size: 1.4rem;
        font-weight: 100;
        color: #a8a8a8;
        letter-spacing: 0.1rem;
    }

#testimon .stars {
    text-align: center;
    margin: 10px 0;
    display: inline-block;
    width: auto;
}

#testimon .stars-outer {
    display: inline-block;
    position: relative;
    font-family: FontAwesome;
    font-size: 1.6rem;
}

    #testimon .stars-outer::before {
        content: "\f006 \f006 \f006 \f006 \f006";
        color: #fff;
    }

#testimon .stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

    #testimon .stars-inner::before {
        content: "\f005 \f005 \f005 \f005 \f005";
        color: #f8ce0b;
    }

@media (max-width:768px) {
}

@media (max-width:950px) {
}

@media (max-width:650px) {
    #testimonials ul.test li {
        padding: 20px 0 40px;
    }

        #testimonials ul.test li ul.service li {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px !important;
            margin-bottom: 10px;
        }

        #testimonials ul.test li .com {
            font-size: 1.3rem;
            line-height: 2.2em;
        }

    #testimonials-back {
        background-attachment: fixed !important;
        background-size: auto !important;
        min-height: 100%;
        min-width: 100%;
        background-repeat: repeat;
        background-position: center;
    }
}




/* Pagination */
.pages {
    float: right;
    margin: 20px 0 30px;
    width: 100%;
    text-align: right;
}

    .pages li {
        display: inline-block;
        position: relative;
        margin: 10px 2px 0;
    }

    .pages a {
        float: left;
        background: #f6f6f6;
        text-align: center;
        margin: 0 0 0 -1px;
        width: 35px;
        height: 35px;
        line-height: 3.5rem;
        color: #666;
        text-decoration: none;
        font-weight: 400;
        font-size: 1.4rem;
    }

        .pages a:hover, .pages .active {
            background: var(--primary-brand-color);
            color: #fff;
        }

    .pages .next a, .pages .prev a {
        background: var(--primary-brand-color);
        color: #fff;
        width: auto;
        padding: 0 10px;
        letter-spacing: 0.4px;
        font-weight: 300;
        border-color: var(--primary-brand-color);
    }

        .pages .next a:hover, .pages .prev a:hover {
            background: var(--primary-brand-color);
            color: #fff;
        }

    .pages .next .fa, .pages .prev .fa {
        font-size: 2rem;
        position: relative;
        top: 2px;
    }

    .pages .next .fa {
        margin: 0 0 0 10px;
    }

    .pages .prev .fa {
        margin: 0 10px 0 0;
    }

    .pages .prev {
        margin: 10px 20px 0 0;
    }

    .pages .next {
        margin: 10px 0 0 20px;
    }

    .pages span {
        float: left;
        height: 42px;
        line-height: 42px;
        width: 46px;
        text-align: center;
        font-size: 1.6rem;
        color: #666;
        font-weight: 600;
        letter-spacing: 0.8px;
    }







.footer {
    background: var(--color-grey-medium);
    background: linear-gradient(90deg, rgb(38 38 38) 18%, rgba(62, 62, 62, 1) 18%);
    position: relative;
}


@media(min-width:1700px) {
    .footer {
        background: linear-gradient(90deg, rgba(38,38,38,1) 22%, rgba(62,62,62,1) 22%);
    }
}

@media(min-width:1850px) {
    .footer {
        background: linear-gradient(90deg, rgba(38,38,38,1) 24%, rgba(62,62,62,1) 24%);
    }
}

@media(min-width:2000px) {
    .footer {
        background: linear-gradient(90deg, rgba(38,38,38,1) 27%, rgba(62,62,62,1) 27%);
    }
}



.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.footer-box {
    flex: 1;
    padding: 40px 0;
}

    .footer-box:first-of-type {
        background: var(--color-grey-dark);
    }

    .footer-box .footer-box-title {
        display: inline-block;
        width: 100%;
        position: relative;
        color: #fff;
        font-size: 2rem;
        letter-spacing: 0.3px;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .footer-box .footer-phone, .footer-box .footer-email, .footer-box .footer-opening-title {
        display: inline-block;
        width: 100%;
        color: #dcdcdc;
        font-size: 1.5rem;
        margin-bottom: 25px;
        letter-spacing: 0.3px;
    }

    .footer-box .footer-address, .footer-box .footer-opening {
        display: inline-block;
        width: 100%;
        color: #a8a8a8;
        font-size: 1.35rem;
        margin-bottom: 25px;
        letter-spacing: 0.3px;
        line-height: 1.5;
    }

    .footer-box .footer-opening {
        margin-bottom: 0;
    }

.footer-links {
    display: inline-block;
    width: 100%;
}

    .footer-links a {
        display: inline-block;
        width: 50%;
        color: #dcdcdc;
        font-size: 1.5rem;
        margin-bottom: 25px;
        letter-spacing: 0.3px;
        float: left;
        line-height: 1.5;
    }

        .footer-links a:nth-of-type(2n) {
        }

        .footer-links a:nth-of-type(2n+1) {
            clear: both;
        }

.footer-social {
    margin-top: 20px;
}

    .footer-social a {
        display: inline-block;
        width: auto;
        color: #dcdcdc;
        font-size: 2rem;
        margin-right: 10px;
    }

.footer-bottom {
    background: #222222;
    padding: 15px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .footer-copy {
    display: inline-block;
    width: 100%;
    color: #a8a8a8;
    font-size: 1.35rem;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

    .footer-bottom .footer-copy a {
        color: #fff;
        text-decoration: underline;
    }

.footer-bottom .footer-credit {
    display: inline-block;
    width: 100%;
    color: #a8a8a8;
    font-size: 1.35rem;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

    .footer-bottom .footer-credit a {
        color: #21aef3;
        text-decoration: underline;
    }

.footer-bottom img {
    width: auto;
    display: inline-block;
    width: 100%;
    max-width: 530px;
}





@media(max-width:1300px) {

    .footer-box:first-of-type {
        background: none;
    }

    .footer {
        background: var(--color-grey-medium);
    }

    .footer-flex {
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .footer-box {
        display: inline-block;
        padding: 0;
    }

        .footer-box:first-of-type {
            width: 100%;
            flex: initial;
        }

    .footer-links a {
        width: auto;
        margin: 0 15px 0 0;
    }

        .footer-links a:nth-of-type(2n+1) {
            clear: none;
        }
}



.btn-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    border-radius: 50px;
    background: var(--primary-brand-color);
    width: 50px;
    height: 50px;
    z-index: 9999;
    text-align: center;
    line-height: 2.4;
    box-shadow: 0 3px 22px -3px rgb(0 0 0 / 20%);
    transition: all ease-in-out 300ms;
    pointer-events: none;
    opacity: 0;
}

    .btn-scroll-top.btn-scroll-top--desktop.show {
        opacity: 1;
        pointer-events: all;
    }

    .btn-scroll-top i {
    }


@media(max-width:768px) {

    .footer-bottom-flex {
        flex-direction: column-reverse;
        text-align: center;
    }

    .btn-scroll-top.show {
        pointer-events: all;
        opacity: 1;
    }
}



/* Cookie Policy */

.freeprivacypolicy-com---nb-simple {
    max-width: 500px !important;
    right: 10px !important;
    bottom: 10px !important;
}

.freeprivacypolicy-com---palette-dark .cc-nb-okagree {
    color: #fff !important;
    background-color: #309506 !important;
    min-width: 100px;
}

.freeprivacypolicy-com---palette-dark .cc-nb-changep {
    background-color: #959595 !important;
}

.cc-cp-foot-byline {
    opacity: 0;
}


/* LOCATION / CONTACT */

.locations-flex {
    display: flex;
    gap: 20px;
}

.location-box {
    flex: 1;
}

    .location-box .location-image {
        width: 100%;
    }

    .location-box .location-info {
    }

    .location-box .location-title {
        font-size: 2.4rem;
    }

    .location-box .location-phone {
        font-size: 1.8rem;
        padding: 0px 0 10px;
        font-weight: 500;
    }

    .location-box .location-address {
        font-size: 1.5rem;
        padding: 10px 0;
    }

    .location-box .location-email {
        font-size: 1.5rem;
        padding: 0px 0 10px;
        color: #565656;
        font-weight: 500;
    }




@media(max-width:1050px) {

    .locations-flex {
        display: inline-block;
        width: 100%;
        gap: 0;
    }

    .location-box {
        flex: initial;
        float: left;
        display: inline-block;
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 30px;
    }

        .location-box:nth-of-type(2n) {
            margin-right: 0;
        }

        .location-box:nth-of-type(2n+1) {
            clear: both;
        }
}


@media(max-width:500px) {

    .location-box {
        width: 100%;
        float: none;
        margin-right: 0;
    }
}





/* LOCATION DETAILS */


.location-det-outer {
}

.location-det-info {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.location-det-info-left {
    background: #fff;
    flex: 1;
    box-shadow: 0 3px 22px -3px rgb(0 0 0 / 10%);
    background-position: center;
    background-size: cover;
}

    .location-det-info-left img {
        width: 100%;
        display: block;
    }

.location-det-info-right {
    background: #fff;
    flex: 1;
    padding: 20px;
    box-shadow: 0 3px 22px -3px rgb(0 0 0 / 10%);
}


.location-det-info .location-address {
    display: inline-block;
    width: 100%;
    color: #2b2b2b;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.location-det-info .location-phone {
    display: inline-block;
    width: 100%;
    color: #2b2b2b;
    font-size: 1.65rem;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

    .location-det-info .location-phone i {
        color: var(--primary-brand-color);
    }

.location-det-info .location-email {
    display: inline-block;
    width: 100%;
    color: #2b2b2b;
    font-size: 1.65rem;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

    .location-det-info .location-email i {
        color: var(--primary-brand-color);
    }

.location-det-info .location-hours {
    display: inline-block;
    width: 100%;
    color: #2b2b2b;
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* .location-det-info .location-info { display: inline-block; width: 100%; color: #2b2b2b; font-size: 1.35rem; margin-bottom: 25px; letter-spacing: 0.3px; line-height: 1.5; } */





.location-det-contact {
}

    .location-det-contact #contactform {
        float: left;
        width: 100%;
        display: block !important;
        max-width: 100%;
    }

        .location-det-contact #contactform .c-60 {
            width: 100%;
        }





@media(max-width:768px) {

    .location-det-info-left {
        padding-bottom: 60%;
    }

    .location-det-info {
        flex-direction: column;
    }
}




/* PAYMENT PAGE */

.payment-flex {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.payment-left {
    flex: 1;
}

.payment-right {
    width: 400px;
}

    .payment-right h2 {
        width: 100%;
        text-align: center;
        padding: 10px;
        background: #3E3E3E;
        font-size: 2rem;
        letter-spacing: 0.4px;
        color: #fff;
        margin-bottom: 10px;
    }

    .payment-right .txt {
        float: left;
        width: 100%;
        line-height: 2.2rem;
        font-size: 1.4rem;
        margin: 20px 0 0;
        letter-spacing: 0.04rem;
        color: #333;
    }

.card-box {
    background: #fff;
    border: 1px solid #d6d6d6;
    padding: 0px 20px;
    float: left;
    width: 100%;
}

.payment-summ-box {
    font-size: 1.5rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
}

    .payment-summ-box:last-of-type {
        border: none;
    }

    .payment-summ-box .payment-summ-label {
        width: 156px;
    }

    .payment-summ-box .payment-summ-value {
        flex: 1;
    }




@media (max-width:950px) {

    .payment-flex {
        flex-direction: column-reverse;
    }

    .payment-right {
        width: 100%;
    }

    .payment-summ-box {
        gap: 20px;
    }

        .payment-summ-box .payment-summ-label {
            width: auto;
            flex: 1;
            text-align: right;
        }
}





/* Valuation Floating */

.valuation-div {
    display: inline-block;
    position: fixed;
    z-index: 9999;
    bottom: 10px;
    left: 10px;
    background: #019d30;
    color: #fff;
    padding: 12px 12px 12px 27px;
    text-decoration: none;
}

    .valuation-div::after {
        content: "£";
        position: absolute;
        left: -5px;
        top: -8px;
        font-size: 2.4rem;
        background: #008026;
        border-radius: 50px;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 35px;
        border: 2px solid #fff;
    }

    .valuation-div .title {
        font-size: 1.7rem;
        padding-bottom: 10px;
        padding-left: 20px;
        display: inline-block;
    }

    .valuation-div .text {
        font-size: 1.35rem;
    }

@media (max-width:700px) {

    .valuation-div {
        max-width: 180px;
        bottom: 100px;
        right: 10px;
        left: initial;
    }

        .valuation-div .title {
            font-size: 1.5rem;
            padding-bottom: 0;
            line-height: 1.5;
        }

        .valuation-div .text {
            font-size: 1.2rem;
            display: none;
        }
}



/* Contact Forms */

.cform {
    float: left;
    width: 100%;
    padding-bottom: 30px;
}

    .cform h3 {
        color: #333;
        text-transform: capitalize;
        font-size: 2.8rem;
        line-height: 3.4rem;
        letter-spacing: 0.05rem;
        font-weight: 200;
        text-align: center;
        width: 100%;
    }

    .cform .text {
        float: left;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 1.3rem;
    }

    .cform form {
        float: left;
        margin: 10px 0 0;
        width: 100%;
    }

    .cform label {
        color: #1A1919;
        letter-spacing: 0.06rem;
        float: left;
        font-weight: 200;
        margin: 20px 0 0;
        padding: 0 0 5px 0px;
        font-size: 1.4rem;
        width: 100%;
    }

        .cform label span {
            color: #cc0000 !important;
            font-style: normal;
        }

    .cform input[type=text], .cform input[type=email], .cform input[type=number] {
        float: left;
        border: 1px solid #ddd;
        width: 100%;
        padding: 10px 15px;
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }

    .cform textarea {
        height: 120px;
        resize: vertical;
        float: left;
        border: 1px solid #ddd;
        width: 100%;
        padding: 10px 15px;
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
        line-height: 2.4rem;
    }

.csub {
    float: left;
    width: 100%;
    margin: 10px 0 0;
}

    .csub span {
        float: left;
        font-size: 1.2rem;
        font-style: italic;
        line-height: 4.9rem;
    }

        .csub span span {
            color: #cc0000;
            float: none;
            font-style: normal;
        }

    .csub label {
        color: #1A1919;
        font-size: 2rem;
        font-weight: 200;
        margin: 0 0 0 10px;
        padding: 0;
        width: auto;
        line-height: 4.9rem;
    }

    .csub input {
        float: right !important;
        width: 100px !important;
    }

.cform input[type=text]:hover, .cform input[type=email]:hover, .cform input[type=number]:hover, .cform input[type=email]:focus, .cform input[type=number]:focus, .cform input[type=text]:focus, .cform textarea:hover, .cform textarea:focus {
    border-color: #ccc;
}

.cform .btn-1 {
    float: right;
    margin: 10px 0 0;
    cursor: pointer;
    border: none;
    outline: none;
    line-height: 4.8rem;
    border-radius: 0px;
}


/* careers */
.careers {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    margin: 20px 0 40px;
}

    .careers li {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #ddd;
    }

        .careers li:nth-child(even) {
            background: #f4f4f4;
        }

    .careers .info {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .careers h2 {
        flex: 1;
        font-family: var(--font-body);
        font-size: 1.6rem;
        line-height: 2.4rem;
    }

    .careers .fa-file-pdf {
        font-size: 3rem;
        color: var(--primary-brand-light);
        margin-right: 15px;
    }

@media(max-width:667px) {
    .careers li {
        padding: 20px 10px;
    }

    .careers .fa-file-pdf {
        display: none;
    }

    .careers h2 {
        font-size: 1.4rem;
    }
}




/* Custom */
.t-c {
    text-align: center;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.w100 {
    width: 100%;
}

.table {
    display: table;
}

.cell {
    display: table-cell;
}

.pl20 {
    padding-left: 20px;
}

.pr20 {
    padding-right: 20px;
}

.oh {
    overflow: hidden;
}

.br {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

.mobyes {
    display: none;
}

.p-rel {
    position: relative;
}

/* Margins */
.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

/* Transitions */
.tr-a {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.tr-b {
    transition: background .3s ease;
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -o-transition: background .3s ease;
}

.tr-c {
    transition: color .3s ease;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -o-transition: color .3s ease;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    zoom: 1;
}


/* Lemonade */
*, *:after, *:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

[class*='c-'] {
    float: left;
    padding: 0 15px;
}

    [class*='c-']:last-of-type, .l-c {
        float: left;
    }

.c-1 {
    width: 100%;
}

.c-2 {
    width: 50%;
}

.c-3 {
    width: 33.33%;
}

.c-4 {
    width: 25%;
}

.c-5 {
    width: 20%;
}

.c-6 {
    width: 16.6666666667%;
}

.c-7 {
    width: 14.2857142857%;
}

.c-8 {
    width: 12.5%;
}

.c-9 {
    width: 11.1111111111%;
}

.c-10 {
    width: 10%;
}

.c-11 {
    width: 9.09090909091%;
}

.c-12 {
    width: 8.33%;
}

.c-5p {
    width: 3%;
}

.c-15 {
    width: 15%;
}

.c-20 {
    width: 20%;
}

.c-25 {
    width: 25%;
}

.c-30 {
    width: 30%;
}

.c-40 {
    width: 40%;
}

.c-45 {
    width: 45%;
}

.c-55 {
    width: 55%;
}

.c-60 {
    width: 60%;
}

.c-70 {
    width: 70%;
}

.c-80 {
    width: 80%;
}



@media (min-width: 800px) and (max-width: 1100px) {
    .c-2, .c-7 {
        width: 100%;
    }

    .c-4, .c-8, .c-10, .c-12 {
        width: 50%;
    }

    .innertbl {
        display: inherit;
    }

        .innertbl .c-2 {
            display: inherit;
            float: left !important;
        }

        .innertbl .l-c {
            margin: 30px 0 0;
            padding: 0 7px;
        }
}

@media (max-width: 924px) {
    .c-30, .c-70 {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .c-4, .c-6, .c-8, .c-10, .c-12 {
        width: 50%;
    }

    .c-1, .c-2, .c-3, .c-5, .c-7, .c-9, .c-11, .c-60, .c-40, .c-30, .c-70, .c-20, .c-80 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .c-1, .c-2, .c-3, .c-4, .c-5, .c-6, .c-7, .c-8, .c-9, .c-10, .c-11, .c-12 {
        width: 100%;
    }
}

@media (max-width: 1400px) {
    nav.main .subul.subulrhs:after {
        left: 70%;
    }

    nav.main .subulrhs {
        right: 0;
        left: inherit;
    }
}

@media (max-width: 1280px) {

    nav.main li {
        margin: 0 0 0 25px;
    }

        nav.main li a {
            font-size: 1.4rem;
        }

    nav.top li {
    }

    /* .inner { padding: 0 20px; } */
    /* #top .inner { padding: 0; } */
}

@media (max-width: 1200px) {
    nav.main li {
        margin: 0 0 0 20px;
    }

        nav.main li a {
            font-size: 1.3rem;
        }

    nav.top li {
    }

        nav.top li a {
            font-size: 1.2rem;
        }
}

@media (max-width: 1180px) {
    #slide-boxes .main.blue {
        background-position: 0px 0px !important;
    }

    .bodysm nav.top {
    }
}

@media (max-width: 1120px) {
    .flower {
        max-width: 110px;
        padding-top: 12px;
        left: -60px;
    }

    .logo .logo-tran {
        padding-left: 0px;
        height: 50%;
        margin-top: 23px;
    }

    #top .inner {
        max-width: 98%;
    }

    nav.top {
        padding-left: 0;
        border-left: none;
    }

        nav.top li {
        }

            nav.top li a {
                font-size: 1.2rem;
                line-height: 10px;
            }

                nav.top li a i {
                    font-size: 1.2rem;
                }

        nav.top a:after {
            bottom: -10px;
        }

    nav.main {
        clear: right;
        margin-right: 0px;
    }

        nav.main li {
            margin: 0 0 0 25px;
        }

            nav.main li a {
                font-size: 1.25rem;
                line-height: 50px;
            }

        nav.main a:after {
            bottom: 5px;
        }

    nav.top ul.social {
        float: left;
        margin-right: 15px;
        position: relative;
        top: inherit;
        width: auto;
        z-index: 0;
    }

        nav.top ul.social a {
            line-height: 35px;
        }

    nav.top ul.info {
        top: inherit;
    }

    .captnolink {
        font-size: 3.2rem;
        line-height: 4.4rem;
        padding: 0 10%;
    }

    #top, #topblock, .logo {
        height: 86px;
    }

    #wtop {
        height: 86px;
    }

        #wtop .c-1 {
            height: 76px;
        }

    #topsearch {
        top: 86px;
    }

    #topsearch2 {
        top: 161px;
    }

    .ful.half {
        margin-top: 45px;
    }

    #dropMap {
        height: calc(100vh - 215px);
    }

    .listings.active .listing-top .pcount h1 {
        display: none;
    }

    #list.view-grid li, #dream-homes-ni #list.view-grid li {
        width: 33.3%;
    }

    .content .info .prop-det .tit, .content .info .prop-det .in {
        padding: 10px
    }

    .listings.small .content .info .prop-det {
        width: 100%;
        max-width: 100%;
    }

    .dev-list li {
        width: 33.3%;
    }

        .dev-list li:nth-child(4n+1) {
            clear: none;
        }

        .dev-list li:nth-child(3n+1) {
            clear: both;
        }

    .keydetails .dt1 {
        font-size: 1.6rem;
        letter-spacing: 0.05rem;
    }

    .keydetails .dt2 {
        font-size: 1.4rem;
        letter-spacing: 0.03rem;
    }

    .keydetails-img .img img {
        max-height: 280px;
        margin-bottom: 15px;
    }

    #dev-tabs a {
        padding: 20px 15px;
        font-size: 1.3rem;
    }

    .home-lnews li {
        margin-bottom: 20px;
        text-align: center;
    }

    .home-lnews .btn {
        float: none;
        display: table;
        margin: 0 auto;
    }

    .viewall {
        padding: 20px 0 40px;
    }

    #banner-top h1 {
        font-size: 3.4rem;
        line-height: 4.4rem;
    }

    .video-banner h1 {
        font-size: 3.4rem;
        line-height: 4.4rem;
    }

    #banner-top .subheading {
        padding: 0 10%;
    }
}

@media (max-width: 1100px) {
    .innertbl .c-60, .innertbl .c-40 {
        display: inherit;
        width: 100%;
        float: left !important;
    }

    .c-45 {
        width: 100%;
        display: inherit;
        float: left !important;
    }

    #topdet {
        position: relative;
        top: 0 !important;
    }

    #topdetblock {
        display: none;
    }

    #topdet {
        height: auto;
    }

        #topdet .dtbl {
            display: inherit;
            height: auto;
            padding: 15px 0;
            float: left;
            width: 100%;
        }

        #topdet .dcell {
            display: inherit;
            width: 100%;
            float: left;
        }

    .dname {
        padding: 10px 0;
    }

        .dname h1 {
            font-size: 1.6rem;
            float: left;
            width: auto;
            overflow: auto;
            text-overflow: inherit;
            white-space: normal;
            margin: 0 10px 0 0;
        }

        .dname span {
            font-size: 1.6rem;
            line-height: 2.4rem;
            margin: 0;
        }

    .dprice {
        padding: 0;
    }

        .dprice span {
            float: none;
            width: auto;
        }

        .dprice .dpp {
            margin: 0;
            font-size: 1.8rem;
        }

    .detag .img.defimg {
        padding-right: 0 !important;
    }

    .detag .info {
        padding-top: 20px;
        text-align: left;
    }

    .detag .ph, .detag .email {
        float: left;
        width: 100%;
    }

    .awrds li img {
        max-height: 60px;
    }
}

@media (max-width: 1024px) {

    nav.main li {
        margin: 0 0 0 20px;
    }

        nav.main li a {
            font-size: 1.2rem;
        }

    nav.main a.home i {
        font-size: 1.5rem;
    }

    nav.main .fa {
        font-size: 1.3rem;
    }

    nav.top li a {
        font-size: 1.2rem;
    }

    #dev-top h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    #dev-top header .lines:before, #dev-top header .lines:after {
        display: none;
    }

    .btnlist {
        padding: 0 0 0 0px;
    }

    .mort {
        padding: 0;
    }

        .mort li {
            width: 100%;
            padding: 5px 10px;
        }

            .mort li span {
                line-height: 3.6rem;
                width: 50%;
                text-align: left;
            }

        .mort input[type=text] {
            height: 36px;
            margin: 0;
            width: 50%;
        }

        .mort input[type=submit] {
            width: 50%;
            margin: 0;
        }
}

@media (max-width: 980px) {
    nav.top {
        padding-top: 9px;
    }

        nav.top ul ul.sub li {
            margin-bottom: 30px;
        }

    nav.main li a {
        font-size: 1.2rem;
        letter-spacing: 0.06rem;
    }

    nav.main li {
        margin: 0 0 0 15px;
    }

    nav.main a:after {
        bottom: 0px;
    }

    #list.view-grid li, #dream-homes-ni #list.view-grid li, #prop-aval #list.view-grid li, .new-build .c-3 {
        width: 50%;
    }

    .listing-top .viewicons a#view-search {
        display: inline-block;
    }

    #topsearch {
        position: relative !important;
        top: 0px !important;
        height: auto !important;
        padding: 0px 0 0px !important;
    }

    #topsearch2 {
        position: relative !important;
        top: 0px !important;
        height: auto !important;
        padding: 7px 0 5px !important;
    }

    #topsearch.show {
        padding: 0 0 5px !important;
    }

    .bodysm #topsearch {
        top: 0px !important;
    }

    #topsearchblock, #topsearchblock.small {
        height: 0px;
    }

    #topsearch .searchbox {
        height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0px 0;
        margin: 0;
        margin-top: 0px !important;
    }

        #topsearch .searchbox.show {
            height: auto;
            visibility: visible;
            opacity: 1;
            padding: 20px 0px 0;
        }

    #topsearch .sb5.sbbtn {
        width: 50%;
    }

    #topsearch .sbdrop {
        width: 33.33% !important;
        margin: 0px 0 0;
    }

    #topsearch .sb45 {
        width: 100% !important;
        margin: 5px 0 0;
        padding: 0 0px 0 5px;
    }

    #topsearch .sb15 {
        width: 33.33% !important;
        margin: 5px 0 0;
    }

    #topsearch .sb10 {
        width: 50% !important;
        margin: 5px 0 0;
    }

    #topsearch .sbsea, #topsearch .sbad {
        display: none;
    }

    #topsearch .mobilebuttons {
        display: block;
        margin: 5px 0 0;
        float: left;
        width: 100%;
    }

    #topsearch .sbsea2, #topsearch .sbad2 {
        width: 50% !important;
    }

    #topsearch.comsearch .sbsea2, #topsearch.comsearch .sbad2 {
        width: 100% !important;
    }

    #topsearch .sbad2 .sbinner {
        padding: 0;
    }

    #topsearch .advancedbutton {
        background: #f2f2f2;
        color: #00adae;
        line-height: 3.4rem;
        font-size: 1.4rem;
        margin-top: 4px;
        height: 47px;
        font-weight: 400;
    }

    #topsearch.comsearch .advancedbutton {
        padding: 6px 12px;
    }

    #topsearch.comsearch .advancedsearch {
        top: 238px !important;
    }

    #topsearch.homesearch .advancedsearch {
        top: 197px !important;
    }

    #topsearch.homesearch .searchbox {
        height: auto;
        opacity: 1;
        visibility: visible;
        padding: 0px 0;
        margin: 0;
        margin-top: 10px !important;
    }

    #topsearch.homesearch .advancedbutton {
        background: transparent;
        color: #fff;
        border-color: #666;
    }


    #topsearch.mobhide, a#toggle-search.mobhide {
        display: none;
    }

    #dev-video iframe {
        height: 400px;
    }

    #dropMap {
        height: calc(100vh - 86px);
        z-index: 9009;
    }

        #dropMap.active {
            width: 100%;
        }

    .bodysm #dropMap {
        height: calc(100vh - 77px);
    }

    #dropMap .map-holder a#MapToggle.active {
        width: 45px;
        height: 45px;
        right: 8px;
    }

        #dropMap .map-holder a#MapToggle.active i {
            font-size: 2.8rem;
            margin-top: 8px;
        }

    #results.showopac {
        opacity: 0.3;
    }

    .listings .content {
        padding: 30px 20px;
    }

        .listings .content li {
            max-width: 100%;
            padding-bottom: 5px;
        }

        .listings .content .img {
            float: left;
            width: 100%;
        }

        .listings .content img {
            max-height: 160px;
        }

        .listings .content .newTbl {
            text-align: center;
        }

        .listings .content .info h2 {
            font-size: 1.8rem;
        }

        .listings .content .info {
            padding: 10px;
        }

            .listings .content .info .prop-det {
                width: 50%;
            }

                .listings .content .info .prop-det .tit, .listings .content .info .prop-det .in {
                    padding: 10px;
                }

    .view-btns {
        display: block;
        margin: 0 auto;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 23px;
    }

    .viewsearchbtn, .viewmapbtn {
        padding: 10px 15px;
        border: 1px solid #ccc;
        background: transparent;
        margin-right: 5px;
        font-size: 1.4rem;
        font-weight: 300;
        color: #333;
        letter-spacing: 0.06rem;
        text-align: center;
    }

    .viewmapbtn {
        display: none;
    }

        .viewsearchbtn.show .tog-search i, .viewmapbtn.show .tog-map i {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        .viewsearchbtn.show, .viewmapbtn.show {
            border: 1px solid #ffc600;
            background: #ffc600;
        }

    #dream-homes-ni .pl-outer .c-3 {
        width: 50%;
        min-height: 280px;
    }

    .awrds li img {
        max-height: 50px;
    }
}

@media (max-width: 924px) {

    header .lines:before {
        width: 60px;
        left: -80px;
    }

    header .lines:after {
        width: 60px;
        right: -80px;
    }

    nav.top li a {
        font-size: 1.1rem;
    }

    nav.main li {
        margin: 0 0 0 10px;
    }

        nav.main li a {
            font-size: 1.1rem;
            line-height: 55px;
        }

    nav.main .fa {
        font-size: 1.2rem;
    }

    .logo .logo-tran {
    }

    #dev-tabs a {
        padding: 20px 12px;
        font-size: 1.25rem;
    }

    .keydetails li {
        width: 50%;
    }

    .btnlist li:first-child {
        padding: 17px 10px;
    }

    #list.view-grid .info {
        min-height: auto;
    }
}

@media (max-width: 800px) {

    .mt60 {
        margin-top: 40px !important;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

        h1.large {
            font-size: 2.8rem;
        }

    h2, h3, #dev-desc .textbp h3, h2.h2f, #home-reg h2 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

        h2.h2f.tal {
            text-align: center;
        }

    #home-about h2 {
        text-align: center;
    }

    header .lines:before {
        display: none;
    }

    header .lines:after {
        display: none;
    }

    #home-about p {
        text-align: center;
    }

    .btn-1 {
        line-height: 4.2rem;
        font-size: 1.6rem;
    }

    #home-about iframe {
        margin-top: 40px;
    }

    #top, #topblock {
        height: 77px;
    }
    /* .inner { padding: 0 5px; } */
    /* .inner-c { padding: 0 30px!important; } */
    /* .inner .pad-inner { margin-top: 0px; padding: 40px 0px 20px;} */
    #slide-boxes .inner {
        padding: 0;
    }

    .mobyes {
        display: block;
    }

    .mobno {
        display: none;
    }

    .logo, .bodysm .logo {
        height: 77px;
    }

        .logo .logo-tran {
            margin-top: 20px !important;
            padding-left: 55px !important;
        }

    .flower.opac {
        opacity: 0.4;
    }

    .mobno {
        display: none;
    }

    .tooltip .tooltiptext, .bodysm .tooltip .tooltiptext {
        bottom: -15%;
    }

    #topsearch2 .c-2 {
        width: auto;
    }

        #topsearch2 .c-2.l-c {
            float: right;
        }

    #topsearch2 .selbox select, .pagestop a, .psavebtn {
        font-size: 1.1rem;
    }

    .listing-top .pcount, .listing-top .pcount h1 {
        font-size: 1.1rem;
    }

    .listing-top .viewicons {
        margin-top: -6px;
    }

        .listing-top .viewicons a {
            font-size: 1.2rem;
        }

            .listing-top .viewicons a i {
                font-size: 1.4rem;
            }

    .innertbl {
        display: inherit;
        padding: 0;
        margin-top: 40px;
    }

        .innertbl .c-2 {
            display: inherit;
            float: left !important;
        }

        .innertbl .l-c {
            padding: 0 10px;
            margin: 30px 0 0;
        }

    .dtsm {
        display: none;
    }

    .dettbl {
        margin-top: 0px;
    }

    #dropMap {
        transition: all .0s ease;
        -webkit-transition: all .0s ease;
        -moz-transition: all .0s ease;
        -o-transition: all .0s ease;
        height: calc(100vh - 77px);
    }

    .bodysm #dropMap {
    }

    .listings {
        width: 100%;
        margin-left: 0%;
    }

        .listings .content .info .price-range {
            font-size: 1.6rem;
        }

        .listings .content .info .teaser {
            font-size: 1.4rem;
        }

        .listings .content .info .prop-det .tit, .listings .content .info .prop-det .in {
            font-size: 1.2rem;
        }

    #dev-details .inner {
        padding-bottom: 10px;
    }

    #dev-desc {
        clear: both;
    }

    #dev-details .inner {
        padding-bottom: 0;
    }

    #dev-tabs {
    }

    #tabs-scroll.fixed {
        height: 0;
    }

    #dev-tabs.fixed {
        position: relative;
        top: 0px;
        z-index: 999;
    }

    #dev-tabs {
        height: auto;
        float: left;
        border-top: none;
    }

        #dev-tabs .box {
            float: left;
        }

        #dev-tabs li {
            border-right: none;
        }

            #dev-tabs li:first-child {
            }

            #dev-tabs li:last-child {
                border-bottom: none;
            }

            #dev-tabs li a {
                width: 100%;
                text-align: left;
                padding: 15px 10px;
                font-size: 1.4rem;
            }

                #dev-tabs li a:hover {
                    background: #f6f6f6;
                    color: #333;
                }

        #dev-tabs a i {
            width: 30px;
        }

        #dev-tabs a:hover i {
            color: #00726f;
        }

    #dev-feat .feats li {
        width: 100%;
    }

    #dev-desc .textbp table td {
        padding: 8px 0px !important;
    }

    #dev-desc .textbp table tr {
        width: 100%;
        padding-bottom: 10px;
    }

    #home-services ul li {
        max-width: 100%;
    }

        #home-services ul li, #home-services ul li.brd-none {
            width: 50%;
            float: left;
            border-left: none;
        }

    #home-reg {
        padding: 80px 0;
    }

        #home-reg p {
            font-size: 1.6rem;
            padding: 20px 10px;
        }

    #home-news {
        padding: 80px 0 40px;
    }

    #foot-top {
        background-size: 0%;
        padding: 20px 0 20px;
    }

        #foot-top .box {
            padding: 30px 0;
            border-bottom: 1px solid #028480;
        }

            #foot-top .box .tit, #foot-top .box .txt {
                text-align: center;
            }

            #foot-top .box form input[type="email"], #foot-top .box form input[type="submit"] {
                width: 100%;
                margin-bottom: 10px;
            }

        #foot-top ul.soc {
            text-align: center;
            width: 100%;
        }

            #foot-top ul.soc li {
                float: none;
                display: inline-block;
            }

    .login {
        width: 100%;
        margin: 40px 0 0;
        padding: 0 10px;
    }

    .newuser {
        width: 100%;
        margin: 20px 0 30px;
        padding: 0 10px;
    }

    .login.rem {
        width: 100%;
        margin: 30px 0 40px;
    }

    .loginbox {
        padding: 30px;
    }

    .new-build .price-range {
        width: 100%;
        text-align: center;
    }

    #banner-top h1 {
        font-size: 2.8rem;
        line-height: 3.8rem;
    }

    .video-banner h1 {
        font-size: 2.8rem;
        line-height: 3.8rem;
    }

    #banner-top .subheading {
        padding: 0 5%;
        font-size: 1.6rem;
    }

        #banner-top .subheading.price {
            font-size: 1.6rem;
        }

    #banner-top .c-1 {
        width: 90%;
    }

    #dream-homes-ni .pl-list {
        margin-top: -0px;
        padding: 40px 20px;
    }

    .embed-responsive, .embed-responsive-16by9:before, .embed-responsive::before, .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
        display: none;
    }

    #banner-top.detailsvideo {
        min-height: 500px;
        height: -webkit-calc(70vh - 0px);
        height: -moz-calc(70vh - 0px);
        height: calc(70vh - 0px);
    }

        #banner-top.detailsvideo:after {
            display: block;
        }

    #banner-top--video .embed-responsive, #banner-top--video .embed-responsive video {
        display: block !important;
    }

        #banner-top--video .embed-responsive::before {
            display: block;
        }

    .sidebar {
        display: none !important;
    }

    #wtop {
        height: 77px;
    }

    .bodysm #wtop {
        border-bottom: 1px solid #eee;
    }

    #wtop .c-1 {
        height: 77px;
    }

    #wtop.grad:after {
        height: 120px;
    }

    .navbtn {
        display: block;
    }

    .captnolink {
        font-size: 3.4rem;
    }

    .totop {
        position: fixed;
        bottom: 0px;
        right: 0;
        color: #fff;
        cursor: pointer;
        padding: 7px 10px;
        font-size: 3rem;
        background: rgba(0, 0, 0, 0.40);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
    }

        .totop.show {
            opacity: 1;
            visibility: visible;
        }

    nav.top ul {
        display: block !important;
        margin-right: 20px;
    }

    nav.top li a {
        font-size: 1.2rem;
        line-height: 60px;
    }

        nav.top li a:after {
            display: none;
        }

    nav.main a:hover:after, nav a.active:after, nav a.active2:after {
        background: none !important;
    }

    nav.main li a {
        line-height: 45px;
    }

    nav.main .subul {
        left: -80%;
    }

    nav.top ul ul.sub {
        top: 77px;
    }

    .bodysm nav.top {
        display: block;
    }

        .bodysm nav.top li a {
            color: #333;
        }

    .bodysm .flower, .flower {
        top: -5px;
        left: -10px;
        max-width: 60px;
        padding-top: 12px;
    }

    header {
        text-align: center;
    }

    .btn-1 {
        float: none;
        display: table;
        margin: 0 auto 10px !important;
        position: relative;
        top: 10px;
        margin-bottom: 10px;
    }

    #slide-boxes li {
        margin-bottom: 10px;
    }

        #slide-boxes li:first-child {
            padding-left: 10px;
        }

        #slide-boxes li:last-child {
            padding-right: 10px;
        }

    #testimonials ul.test li {
        position: relative;
        padding: 30px 10px 30px 10px;
    }

        #testimonials ul.test li:before {
            width: 25px;
            height: 25px;
            top: -5px;
            left: 10px;
        }

        #testimonials ul.test li .com {
            font-size: 1.6rem;
            line-height: 2.8rem;
        }

        #testimonials ul.test li .date {
            font-size: 1.4rem;
        }

    .btnlist li a {
        padding: 15px 10px;
    }

    .dev-list li {
        width: 50%;
        padding: 0 7px;
    }

        .dev-list li:nth-child(3n+1) {
            clear: none;
        }

        .dev-list li:nth-child(2n+1) {
            clear: both;
        }

    .agent-con span.email a {
        margin-top: 0;
    }

    .keydetails li {
        width: 100%;
    }

    .keydetails-img .img img {
        max-height: 100%;
    }

    .addnews {
        padding-bottom: 15px;
    }

    #article .side .img {
        display: none;
    }

    .agent-con .img {
        width: auto;
    }

    .new-build img {
        max-height: 300px;
    }

    .rental-services-box {
        width: 98%;
    }

    nav.top a .fa-search {
        font-size: 1.8rem;
    }
}

@media (max-width: 750px) {

    .logo {
        height: 77px;
    }

    .nhs {
        display: none;
    }

    .listings {
        width: 100%;
        margin-left: 0%;
    }

        .listings.hide {
            display: none;
        }

    .viewmapbtn {
        display: inline;
    }

    #dev-top, #dev-top .dt-t {
        height: auto;
    }

        #dev-top h1 {
            font-size: 2.4rem;
            line-height: 3rem;
        }

        #dev-top .dt-t .bckbtn {
            position: relative;
            display: table-row;
            height: 30px;
            text-align: center;
        }

    .white-popup-block {
        padding: 30px 10px;
    }

    .popform {
        padding: 0 2%;
    }

    #dev-video iframe {
        height: 250px;
    }

    .content li:last-child {
        margin-bottom: 0;
    }

    .valsteps li {
        margin-bottom: 15px;
    }

    .valsteps .txt {
        font-size: 1.4rem;
    }

        .valsteps .txt strong {
            font-size: 1.8rem;
        }
}

@media (max-width: 700px) {

    .agent-con span.email {
        margin-top: 10px;
    }

    .listing-top .viewicons {
        width: 100%;
        text-align: center;
    }

        .listing-top .viewicons ul {
            display: inline-block;
            float: none;
        }

    .listing-top .pcount {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }

        .listing-top .pcount h1 {
            float: none;
            display: inline-block;
            margin: 0 0 0 5px;
            border-right: 0px;
        }
}

@media (max-width: 650px) {

    nav.top li { /* padding: 0 5px; */
    }

        nav.top li a {
            font-size: 1.1rem;
        }

    nav.top .fa {
        font-size: 1.3rem;
    }

    .captnolink {
        font-size: 2.4rem;
        font-size: 2.4rem;
        padding: 0 20px;
        line-height: 3rem;
    }

    .ful {
        text-align: center;
    }

    .blog .img {
        width: 100%;
    }

    .blog .info {
        width: 100%;
        padding: 20px 15px;
    }

    .blog.coming-soon .img {
        width: 100%;
    }

    .blog.coming-soon .info {
        width: 100%;
        padding: 20px 15px;
    }

    .dettbl li, .webptbl li {
        width: 100%;
    }

        .dettbl li:nth-child(2n+1), .webptbl li:nth-child(2n+1) {
            background: #015c59 !important;
        }

    h2.h2f.tal {
        text-align: center;
    }
}

@media (max-width: 600px) {

    nav.top, nav.top ul {
        display: none !important;
    }

        nav.top.new, nav.top.new ul {
            display: inline-block !important;
            margin-right: 5px !important;
            margin-top: 1px;
        }

    #booktandcs h3 {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    #booktandcs .textbp {
        font-size: 1.4rem;
        line-height: 2.2rem;
        max-height: 300px;
    }

    h1.large {
        font-size: 2.4rem;
    }

    /* h1, #txt-home h1 { font-size: 2rem; line-height: 2.8rem; } */
    #txt-home p {
        font-size: 1.4rem;
        line-height: 3rem;
    }

    header .lines:before {
        display: none;
    }

    header .lines:after {
        display: none;
        content: "";
        position: absolute;
        height: 1px;
        width: 70%;
        background: #ccc;
        right: 15%;
        top: 133%;
        margin: -1px 0 0;
    }

    #home-services ul li, #home-services ul li.brd-none {
        width: 100%;
        margin-bottom: 10px;
    }

    .ful.half li {
        width: 50%;
        list-style: none;
    }

    .awrds {
        text-align: center;
    }

        .awrds li {
            float: none;
        }

    p.btm {
        width: 100%;
        margin-bottom: 5px;
        text-align: center;
    }

    #home-reg {
        background-attachment: scroll;
    }

    #list.view-grid li, #dream-homes-ni #list.view-grid li, #prop-aval #list.view-grid li, .new-build .c-3 {
        width: 100%;
    }

    #list.view-grid .img:after {
        padding-top: 58%;
    }

    #dev-top .dt-t header span {
        font-size: 1.4rem;
    }

    #dev-top h1 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }

    #dev-top .dt-t header h3 span {
        font-size: 1.6rem;
        padding: 6px 0;
    }

    .dev-list li {
        width: 100%;
    }

    #dev-top .dt-t .bckbtn {
        font-size: 1.4rem;
    }

    #gallery-con #gallerybtn {
        font-size: 1.2rem;
        padding: 8px 8px;
    }

    #newcar-tabs li {
        border-right: none;
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

        #newcar-tabs li:last-child {
            border-bottom: none;
        }

        #newcar-tabs li a {
            width: 100%;
            text-align: left;
        }

    #article .side a.bckbtn, #article .side .date {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f1f1f1;
        text-align: center;
    }

        #article .side a.bckbtn i {
            float: none;
        }

    .addnews {
        float: left;
        width: 100%;
        text-align: center;
    }

        .addnews a {
            float: none;
        }

    .addthis_inline_share_toolbox.addthis--blog {
        float: none;
        width: 100%;
    }

    .at-share-btn-elements {
        display: flex;
        justify-content: center;
    }

    #dream-homes-ni .pl-outer .c-3 {
        width: 100%;
    }

    #banner-top, #banner-top.details {
        min-height: 0px;
        height: calc(40vh - 0px);
    }

        #banner-top.details .c-1 {
            top: 55%;
        }

        #banner-top h1 {
            font-size: 2.4rem;
            line-height: 3.4rem;
        }

    .video-banner h1 {
        font-size: 2.4rem;
        line-height: 3.4rem;
    }

    #banner-top .subheading {
        padding: 0 2%;
        font-size: 1.4rem;
        line-height: 2.4rem;
    }

    #banner-top .c-1 {
        width: 100%;
        padding: 20px 10px;
    }

    .detag .info h3 {
        font-size: 1.4rem;
        padding: 3px 0 3px;
    }
}

@media (max-width: 500px) {
    nav.top {
        display: none;
    }

        nav.top.new {
            display: inline-block;
        }

    #dev-video iframe {
        height: 100%;
    }

    #booktandcs .textbp {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .pagestop {
        display: none;
    }

    .awrds li img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .bodysm .flower, .flower {
        max-width: 40px;
        top: 2px;
    }

    .logo, .bodysm .logo {
        height: 65px;
        margin-top: 4px;
    }

        .logo .logo-tran, .bodysm .logo .logo-tran {
            padding-left: 35px !important;
            height: 40%;
            margin-top: 23px !important;
        }



    .btn-1 {
        font-size: 1.4rem;
        padding: 0 20px;
        letter-spacing: 0.04rem;
    }

    #dream-homes-ni .pl-list {
        margin-top: 0px;
        padding: 30px 0px;
    }

    .agent-con {
        text-align: center;
    }

        .agent-con span.email, .agent-con span.ph {
            width: 100%;
        }

            .agent-con span.email a {
                width: 100%;
                margin-top: 15px;
            }

    .keydetails li {
        width: 100%;
        text-align: center;
    }

    .keydetails .stamp {
        text-align: center;
    }

    .team header {
        min-height: auto;
    }

    .agent-con .img {
        float: none;
    }

        .agent-con .img img {
            width: auto;
        }

    .popform select {
        font-size: 1.2rem;
    }

    #banner-top h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    .video-banner h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    #banner-top .subheading {
        padding: 0 1%;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    /* #banner-top .c-1 { top: 55%;} */

    #banner-top.full.mob {
        min-height: auto;
        max-height: 350px;
    }

        #banner-top.full.mob .c-1 {
            top: 55%;
        }

    .full-block {
        min-height: auto;
        max-height: 350px;
    }
}

@media (max-width: 360px) {
    .bodysm .flower, .flower {
        max-width: 35px;
    }

    .logo, .bodysm .logo {
        height: 55px;
        margin-top: 4px;
    }

        .logo .logo-tran, .bodysm .logo .logo-tran {
            padding-left: 0px !important;
        }

    .ful.half li {
        width: 100%;
    }
}




@media (min-width: 800px) {
    /* Top Resize */

    .disnone {
        display: none;
        transition: opacity 0.2s ease;
    }

    .bodysm .disnone {
        display: block;
    }

    .bodysm .nhs {
        opacity: 0;
        visibility: hidden;
    }

    .bodysm #top {
        height: 77px;
    }

    .bodysm #topblock {
        height: 77px;
    }

    .bodysm #wtop {
        height: 77px;
        border-bottom: 1px solid #ededed;
    }

        .bodysm #wtop .c-1 {
            height: 76px;
            position: relative;
        }

    .bodysm #topsearch2 {
        top: 152px;
    }

    .bodysm nav.main {
        position: absolute;
        top: 77px;
        right: -2.6%;
        padding: 0 0px;
        width: 300px;
        z-index: 9999;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.0s ease;
        height: -webkit-calc(100vh - 77px);
        height: -moz-calc(100vh - 77px);
        height: calc(100vh - 77px);
    }

        .bodysm nav.main ul {
            padding: 10px 10px 30px;
        }

        .bodysm nav.main li {
            width: 100%;
            margin: 0 0 0 0;
        }

        .bodysm nav.main a {
            color: #fff;
            line-height: 44px;
            border-bottom: 1px solid #025e5b;
            width: 100%;
            text-shadow: none;
            padding: 5px 30px;
        }

            .bodysm nav.main a:after {
                display: none;
            }

    .bodysm nav.top {
        border-left: none;
        padding-top: 3px;
    }

        .bodysm nav.top a {
            line-height: 76px;
        }

            .bodysm nav.top a:after {
                display: none;
            }

    .bodysm .logo {
        height: 65px;
    }

    .bodysm .nhs {
        width: 100%;
        max-width: 150px;
        position: absolute;
        bottom: -57px;
        left: 7px;
    }

    .bodysm .navbtn {
        display: block;
        margin-left: 20px;
        border-left: 1px solid #ddd;
        padding-left: 20px;
        top: 18px;
    }

    .bodysm nav.main.bsmnav {
        visibility: visible;
        opacity: 1;
        margin-right: 0px;
        transition: visibility 0.0s, opacity 0.2s ease;
        background: rgb(0, 108, 104);
        border-left: 1px solid #005f5b;
    }

        .bodysm nav.main.bsmnav li.conno {
            display: none;
        }

        .bodysm nav.main.bsmnav a {
            font-size: 1.2rem;
            transition: all .0s ease;
            -webkit-transition: all .0s ease;
            -moz-transition: all .0s ease;
            -o-transition: all .0s ease;
        }

            .bodysm nav.main.bsmnav a:after {
                bottom: 0px;
            }

    .bodysm .mobyes {
        display: inline-block;
    }

    .bodysm nav.main .subul {
        height: 0;
        overflow: hidden;
        padding: 0 0px !important;
        position: relative;
        background-color: #005f5b;
        z-index: 9008;
        top: 100%;
        width: 100%;
        left: 0%;
        transition: all .4s ease;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -o-transition: all .4s ease;
    }

        .bodysm nav.main .subul.showsub {
            height: auto;
            padding: 21px 10px 18px;
            overflow: visible;
            transition: all .4s ease;
            -webkit-transition: all .4s ease;
            -moz-transition: all .4s ease;
            -o-transition: all .4s ease;
        }

        .bodysm nav.main .subul .dl-back {
            display: none;
        }

        .bodysm nav.main .subul a {
            border-bottom: 1px solid #01514e;
            text-align: left;
        }

    .bodysm nav.main a:hover {
        background: none;
        border-bottom-color: #005551;
        cursor: pointer;
    }

    .bodysm nav.main.darktext a:hover, .bodysm nav.main.darktext a.active, .bodysm nav.main.darktext a.active2 {
        color: #fff;
    }

    .bodysm nav.main li.val a {
        background: #00acae;
        border-bottom: 1px solid #00acae;
    }

        .bodysm nav.main li.val a:hover {
            border-bottom: 1px solid #00acae;
        }

    .bodysm .logo-btm {
        display: inline-block;
        position: absolute;
        bottom: 0;
        padding: 5px 30px;
    }

        .bodysm .logo-btm img {
            width: 100%;
            opacity: 0.5;
        }

    .bodysm #topdet {
        top: 77px;
    }
}

@media (min-width: 800px) and (max-height: 960px) {
    .bodysm nav.main {
        overflow-y: scroll;
    }

        .bodysm nav.main.bsmnav a { /* font-size: 1.1rem; */
        }

        .bodysm nav.main a {
            line-height: 35px;
            padding: 3px 30px;
        }

    .bodysm .logo-btm {
        padding: 5px 60px;
    }
}

@media (min-width: 800px) and (max-height: 740px) {
    .bodysm nav.main a { /* line-height: 30px; */
        padding: 3px 30px;
    }

    .bodysm .logo-btm {
        display: none;
    }
}

@media (max-height: 900px) {
    #detp .slick-slide img {
        max-height: 500px;
    }
}

@media (max-height: 800px) {
    #detp .slick-slide img {
        max-height: 400px;
    }
}

@media (max-height: 700px) {
    #topsearch { /* height: 130px; */ /* padding: 20px; */
    }

    .searchbox.mt30 {
        margin-top: 15px !important;
    }

    #dropMap {
    }

    .bodysm #dropMap {
    }

    .bodysm #topsearch {
        top: 77px;
    }
}

@media (max-height: 550px) {
    #topdet {
        position: relative;
        top: 0 !important;
    }

    #topdetblock {
        display: none;
    }

    #topdet {
        height: auto;
    }

        #topdet .dtbl {
            display: inherit;
            height: auto;
            padding: 15px 0;
            float: left;
            width: 100%;
        }

        #topdet .dcell {
            display: inherit;
            width: 100%;
            float: left;
        }

    .dname {
        padding: 10px 0;
    }

        .dname h1 {
            font-size: 1.6rem;
            float: left;
            width: auto;
            overflow: auto;
            text-overflow: inherit;
            white-space: normal;
            margin: 0 10px 0 0;
        }

        .dname span {
            font-size: 1.6rem;
            line-height: 2.4rem;
            margin: 0;
        }

    .dprice {
        padding: 0;
    }

        .dprice span {
            float: none;
            width: auto;
        }

        .dprice .dpp {
            margin: 0 0 0 5px;
            font-size: 1.8rem;
        }
}

@media (min-width: 925px) and (max-height: 780px) {
    /* Top Resize */
    /*
#top, #topblock { height:110px; }
#nav.top { border-top:3px solid #DA2129; height:33px; }
#nav.top li { line-height:30px; }
#nav.top ul ul { top:30px; }

#topsearch.homesearch { top:290px; }
#topdet { top:110px; }

#wtop { height:77px; }
#wtop .c-1 { height:76px; }
nav.main a { line-height:76px; }
nav.main .subul a { line-height:3rem; }

#topsearch, .bodysm #topdet { top:110px; }
#topsearch2 { top:180px; }
*/
}



/* ========================================================================== #UTILITIES ========================================================================== */



/* ========================================================================== #COLORS ========================================================================== */
/* #BACKGROUND ========================================================================== */
/* Social */
.u-bg-color-facebook {
    background-color: #3b5998 !important;
}

.u-bg-color-linkedin {
    background-color: #0077b5 !important;
}

.u-bg-color-twitter {
    background-color: #1da1f2 !important;
}

.u-bg-color-youtube {
    background-color: #f00 !important;
}

/* Utility */
.u-bg-color-error {
    background-color: var(--color-error) !important;
}

.u-bg-color-warning {
    background-color: var(--color-warning) !important;
}
/* .u-bg-color-highlight { background-color: #f3de57 !important; } */
.u-bg-color-success {
    background-color: var(--color-success) !important;
}

.u-bg-color-information {
    background-color: var(--color-information) !important;
}


/* Social */
.u-color-facebook {
    color: #3b5998 !important;
}

.u-color-linkedin {
    color: #0077b5 !important;
}

.u-color-twitter {
    color: #1da1f2 !important;
}

.u-color-youtube {
    color: #f00 !important;
}

/* Utility */
.u-color-error {
    color: var(--color-error) !important;
}

.u-color-warning {
    color: var(--color-warning) !important;
}
/* .u-color-highlight { color: #f3de57 !important; } */
.u-color-success {
    color: var(--color-success) !important;
}

.u-color-information {
    color: var(--color-information) !important;
}

/* ========================================================================== #CLEARFIX ========================================================================== */
/* Attach the clearfix mixin to a utility class. */
.u-clearfix:before, .u-clearfix:after {
    content: "";
    display: table;
}

.u-clearfix:after {
    clear: both;
}

/* -------------------------------------------------------------------------- *\ #FLOATS \* -------------------------------------------------------------------------- */
.u-float-left {
    float: left !important;
    margin-right: 1em;
}

.u-float-right {
    float: right !important;
    margin-left: 1em;
}

/* ========================================================================== #HEADINGS ========================================================================== */
/** Define classes for all headings so that the appearance can change, but the semantic meaning will remain as is. e.g. <h2 class="u-h1"></h2> */
.u-h1 {
    font-size: 2rem;
    line-height: 1.5 !important;
}

.u-h2 {
    font-size: 1.75rem;
    line-height: 1.7142857143 !important;
}

.u-h3 {
    font-size: 1.5rem;
    line-height: 1 !important;
}

.u-h4 {
    font-size: 1.25rem;
    line-height: 1.2 !important;
}

.u-h5 {
    font-size: 1.125rem;
    line-height: 1.3333333333 !important;
}

.u-h6 {
    font-size: 1rem;
    line-height: 1.5 !important;
}

/* ========================================================================== #SPACING ========================================================================== */

/* Margins */
.u-margin-large {
    margin: 2.25rem !important;
}

.u-margin {
    margin: 1.5rem !important;
}

.u-margin-small {
    margin: 0.75rem !important;
}

.u-margin-bottom-large {
    margin-bottom: 2.25rem !important;
}

.u-margin-bottom {
    margin-bottom: 1.5rem !important;
}

.u-margin-bottom-small {
    margin-bottom: 0.75rem !important;
}

.u-margin-bottom-none {
    margin-bottom: 0 !important;
}

.u-margin-left-large {
    margin-left: 2.25rem !important;
}

.u-margin-left {
    margin-left: 1.5rem !important;
}

.u-margin-left-small {
    margin-left: 0.75rem !important;
}

.u-margin-right-large {
    margin-right: 2.25rem !important;
}

.u-margin-right {
    margin-right: 1.5rem !important;
}

.u-margin-right-small {
    margin-right: 0.75rem !important;
}

.u-margin-top-large {
    margin-top: 2.25rem !important;
}

.u-margin-top {
    margin-top: 1.5rem !important;
}

.u-margin-top-small {
    margin-top: 0.75rem !important;
}

/* Padding */
.u-padding-large {
    padding: 2.25rem !important;
}

.u-padding {
    padding: 1.5rem !important;
}

.u-padding-small {
    padding: 0.75rem !important;
}

.u-padding-bottom-large {
    padding-bottom: 2.25rem !important;
}

.u-padding-bottom {
    padding-bottom: 1.5rem !important;
}

.u-padding-bottom-small {
    padding-bottom: 0.75rem !important;
}

.u-padding-left-large {
    padding-left: 2.25rem !important;
}

.u-padding-left {
    padding-left: 1.5rem !important;
}

.u-padding-left-small {
    padding-left: 0.75rem !important;
}

.u-padding-right-large {
    padding-right: 2.25rem !important;
}

.u-padding-right {
    padding-right: 1.5rem !important;
}

.u-padding-right-small {
    padding-right: 0.75rem !important;
}

.u-padding-top-large {
    padding-top: 2.25rem !important;
}

.u-padding-top {
    padding-top: 1.5rem !important;
}

.u-padding-top-small {
    padding-top: 0.75rem !important;
}

/* ========================================================================== #VISIBILITY ========================================================================== */
/** Visibility helper classes from HTML5 Boilerplate: https://github.com/h5bp/html5-boilerplate */
/** Hide visually and from screen readers */
.u-hidden {
    display: none !important;
}

/** Hide only visually, but have it available for screen readers: https://snook.ca/archives/html_and_css/hiding-content-for-accessibility 1. For long content, line feeds are not interpreted as spaces and small width causes content to wrap 1 word per line: https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */
.u-visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap; /* 1 */
    width: 1px; /* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: https://www.drupal.org/node/897638 */
}

    .u-visuallyhidden.focusable:active, .u-visuallyhidden.focusable:focus {
        clip: auto;
        clip-path: none;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        white-space: inherit;
        width: auto;
    }

/** Hide visually and from screen readers, but maintain layout */
.u-invisible {
    visibility: hidden;
}


/* Positioning */
.u-pos-absolute {
    position: absolute;
}

.u-pos-relative {
    position: relative;
}

.u-pos-static {
    position: static;
}

/* Text Align */
.u-text-left {
    text-align: left;
}

.u-text-center {
    text-align: center;
}

.u-text-right {
    text-align: right;
    body {
}
