@font-face{font-family:Montserrat;src:local("Montserrat Light"),local("Montserrat-Light"),url(../fonts/Montserrat-Light.woff2) format("woff2"),url(../fonts/Montserrat-Light.woff) format("woff");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Montserrat;src:local("Montserrat Bold"),local("Montserrat-Bold"),url(../fonts/Montserrat-Bold.woff2) format("woff2"),url(../fonts/Montserrat-Bold.woff) format("woff");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:Montserrat;src:local("Montserrat Regular"),local("Montserrat-Regular"),url(../fonts/Montserrat-Regular.woff2) format("woff2"),url(../fonts/Montserrat-Regular.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Montserrat;src:local("Montserrat Thin"),local("Montserrat-Thin"),url(../fonts/Montserrat-Thin.woff2) format("woff2"),url(../fonts/Montserrat-Thin.woff) format("woff");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:Montserrat;src:local("Montserrat Medium"),local("Montserrat-Medium"),url(../fonts/Montserrat-Medium.woff2) format("woff2"),url(../fonts/Montserrat-Medium.woff) format("woff");font-weight:500;font-style:normal;font-display:swap}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #00357a;
}

body.no-scroll {
    overflow: hidden;
}

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

.text-right {
    text-align: right;
}

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

a {
    text-decoration: none;
}

.h-p {
    padding-left: 50px;
    padding-right: 50px;
}

@media screen and (max-width: 767px) {
    .h-p {
        padding-left: 20px;
        padding-right: 20px;
    }
}







#location-modal,
#features-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: none;
}

#location-modal.visible,
#features-modal.visible {
    display: block;
}

#location-modal #location-modal-backdrop,
#features-modal #features-modal-backdrop {
    height: 100%;
    width: 100%;
    background-color: rgba(14, 30, 43, 0.85);
}

#location-modal .btn.btn-continue,
#features-modal .btn.btn-continue {
    position: fixed;
    bottom: 0;
    left: calc(50% - 28px);
    background-color: transparent;
    width: 56px;
    height: 56px;
    border-radius: 0;
    z-index: 12;
    outline: 0;
}

#location-modal .btn.btn-continue img,
#features-modal .btn.btn-continue img {
    width: 100%;
    height: auto;
}

#location-modal .btn.btn-continue:hover,
#features-modal .btn.btn-continue:hover {
    /* transform: scale(1.1); */
}

#location-modal .selection-wrapper,
#features-modal .selection-wrapper {
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    left: 100px;
    width: calc(100% - 200px);
    height: calc(100% - 100px);
    box-sizing: border-box;
    overflow-y: scroll;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-5px);
}

@media screen and (max-width: 1200px) {
    #location-modal .selection-wrapper,
    #features-modal .selection-wrapper {
        left: 50px;
        width: calc(100% - 100px);
    }
}

@media screen and (max-width: 800px) {
    #location-modal .selection-wrapper,
    #features-modal .selection-wrapper {
        left: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 160px);
    }
}

#location-modal .selection-wrapper .header,
#features-modal .selection-wrapper .header {
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ff914d;
    border-radius: 10px 10px 0 0;
}

#location-modal .selection-wrapper .header p.tt,
#features-modal .selection-wrapper .header p.tt {
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    color: #ff914d;
    font-weight: bold;
}

#location-modal .selection-wrapper .body,
#features-modal .selection-wrapper .body {
    padding: 20px;
}

@media screen and (max-width: 800px) {
    #location-modal .selection-wrapper .body,
    #features-modal .selection-wrapper .body {
        padding: 10px;
    }
}

#location-modal .selection-wrapper .body .location-table,
#features-modal .selection-wrapper .body .location-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media screen and (max-width: 1000px) {
    #location-modal .selection-wrapper .body .location-table,
    #features-modal .selection-wrapper .body .location-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {
    #location-modal .selection-wrapper .body .location-table,
    #features-modal .selection-wrapper .body .location-table {
        grid-template-columns: 1fr;
    }
}

#location-modal .selection-wrapper .body .location-table .region .neighborhoods,
#features-modal .selection-wrapper .body .location-table .region .neighborhoods {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#location-modal .selection-wrapper .body .location-table .region label,
#features-modal .selection-wrapper .body .location-table .region label {
    padding: 5px;
    display: flex;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
}

#location-modal .selection-wrapper .body .location-table .region label input,
#features-modal .selection-wrapper .body .location-table .region label input {
    margin-right: 10px;
}

#location-modal .selection-wrapper .body .location-table .region label.region-name,
#features-modal .selection-wrapper .body .location-table .region label.region-name {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #00357a;
}

#location-modal .selection-wrapper .body .location-table .region label:hover,
#features-modal .selection-wrapper .body .location-table .region label:hover {
    background: #eee;
    cursor: pointer;
}

.si-wrap {
    display: inline-block;
}

.si-result {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #00357a;
    height: 39px;
    box-sizing: border-box;
    padding: 8px 10px;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid #00357a;
    transition: all 0.3s;
}

.si-result:hover {
    background-color: #00357a;
    color: #fff;
}

.si-result:after {
    border-color: #00357a transparent transparent transparent;
    content: none;
}

.si-result.si-selection {
    background-color: #ff914d;
    color: #fff;
    font-weight: 700;
}

.si-off .si-result:after {
    border-top-color: #00357a;
}

.si-list {
    font-size: .8rem;
    background-color: #fff;
    border: none;
    color: #00357a;
    width: 250px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.si-list .si-item {
    border: none;
    text-align: left;
}

.si-list .si-item.si-selected {
    background-color: #00357a;
    color: #fff;
}

.si-list .si-item.si-selected:after {
    color: #fff;
}

input[name="website"] {
    display: none !important;
}

#tolvnow-caller {
    display: none;
}

.btn {
    display: inline-block;
    background-color: #ddd;
    box-shadow: none;
    border: none;
    cursor: pointer;
    width: fit-content;
    margin: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    white-space: normal;
}

.btn:active,
.btn:focus,
.btn:hover {
    background-color: #eee;
}

.btn.btn-transparent {
    background-color: transparent;
    color: #00357a;
}

.btn.btn-blue {
    background-color: #00357a;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    padding: 9px 20px;
}

.btn.btn-blue:active,
.btn.btn-blue:focus,
.btn.btn-blue:hover {
    background-color: #ff914d;
}

.btn.btn-orange {
    background-color: #ff914d;
    color: #fff;
    padding: 9px 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 300;
    border-radius: 0;
}

.btn.btn-orange.bold {
    justify-content: center;
    background-color: #ff914d;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 15px 25px;
    border-radius: 0;
}

.btn.btn-orange:active,
.btn.btn-orange:focus,
.btn.btn-orange:hover {
    background-color: #00357a;
}

.btn.btn-like {
    background-color: #00357a;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    padding: 9px 20px;
    margin-top: 10px;
    display: block;
    width: 100%;
}

.btn.btn-like:active,
.btn.btn-like:focus,
.btn.btn-like:hover {
    border: 1px solid #00357a;
    color: #00357a;
    background-color: #fff;
}

.btn.btn-like.favorite {
    border: 1px solid #00357a;
    color: #00357a;
    background-color: #fff;
}

.btn.btn-like.favorite:active,
.btn.btn-like.favorite:focus,
.btn.btn-like.favorite:hover {
    background-color: #00357a;
    color: #fff;
    border: none;
}

.btn.btn-like img {
    height: 20px;
    margin-right: 10px;
    width: auto;
    vertical-align: middle;
}

.btn.btn-white {
    background-color: #fff;
    color: #00357a;
    font-weight: 300;
    font-size: 1rem;
    padding: 8px 20px;
    border: 1px solid #00357a;
    border-radius: 0;
}

.btn.btn-white:active,
.btn.btn-white:focus,
.btn.btn-white:hover {
    background-color: #00357a;
    color: #fff;
}

.btn.btn-white.options-selected {
    background-color: #ff914d;
    color: #fff;
    font-weight: 700;
}

.btn.menu-toggle {
    background-color: transparent;
    padding: 0;
    outline: 0;
}

.toggle.hidden {
    display: none;
}

@media screen and (max-width: 1200px) {
    .toggle.hidden {
        display: block;
    }
}

.btn.menu-toggle div {
    width: 30px;
    height: 4px;
    background-color: #00357a;
    margin: 6px 0;
    transition: 0.3s;
}

.btn.menu-toggle div:first-child {
    margin-top: 0;
}

.btn.menu-toggle div:last-child {
    margin-bottom: 0;
}

.btn.menu-toggle.toggle .bar-1 {
    -webkit-transform: rotate(-45deg) translate(-8px, 8px);
    transform: rotate(-45deg) translate(-8px, 8px);
}

.btn.menu-toggle.toggle .bar-2 {
    opacity: 0;
}

.btn.menu-toggle.toggle .bar-3 {
    -webkit-transform: rotate(45deg) translate(-5px, -7px);
    transform: rotate(45deg) translate(-5px, -7px);
}

.navbar-wrapper {
    /* position: relative; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: transparent;
}

.navbar-wrapper.sticky {    
    border-bottom: 1px solid #00357a;
    background-color: #fff;    
}

.navbar-wrapper.sticky nav {
    padding-top: 20px;
    padding-bottom: 20px;
}

nav {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;    
    transition: padding .3s ease-in-out;
}

nav .logo a {
    display: block;
}

nav .logo svg {
    display: block;
    width: 100%;
    height: auto;
}

nav ul {
    width: 100%;
    text-align: right;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav ul li {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

nav ul li a {
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    color: #00357a;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 1rem;
}

nav ul li a .active,
nav ul li a:hover {
    color: #ff914d;
}

nav.transparent {
    background-color: transparent;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    nav {
        grid-template-columns: 150px 1fr;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    nav ul {
        margin: 0;
    }

    nav ul li.link {
        display: none;
    }
}

.agent-info {
    text-align: right;
    margin-bottom: -48px;
}

@media screen and (max-width: 900px) {
    .agent-info {
        display: none;
    }
}

.agent-info a {
    color: inherit;
}

nav.white-transp {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 15px;
    padding-bottom: 15px;
    position: fixed;
    top: 0;
    z-index: 2;
}

nav.white-transp .logo svg {
    width: 100%;
    height: auto;
}

nav.white-transp .agent-info-center {
    text-align: center;
    background-color: #00357a;
    margin-top: -15px;
    margin-bottom: 15px;
}

@media screen and (max-width: 900px) {
    nav.white-transp .agent-info-center {
        display: none;
    }
}

nav.white-transp .agent-info-center p {
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

nav.white-transp .agent-info-center a {
    color: inherit;
}

nav.white-transp ul {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav.white-transp ul li {
    display: inline;
    margin-left: 50px;
}

nav.white-transp ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    color: #00357a;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

nav.white-transp ul li a .active,
nav.white-transp ul li a:hover {
    color: #ff914d;
}

nav.white-transp.white-transp {
    background-color: #ffffffaa;
    width: 100%;
}

@media screen and (min-width: 1000px) {
    nav ul li.back-btn-li {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    .navbar-prop-wrapper {
        padding-right: 20px;
    }

    nav.white-transp ul {
        text-align: right;
        margin: 0;
    }

    nav.white-transp ul li {
        margin-right: 20px;
    }

    nav.white-transp ul li.link {
        display: none;
    }

    nav.white-transp ul li.toggle {
        display: inline;
    }

    nav.white-transp ul li.back-btn-li {
        display: inline;
    }
}


.copyright {
    text-align: center;
    padding: 5px 20px;
}

.copyright p {
    color: #fff;
    margin: 0;
    font-size: 0.7rem;
    font-weight: 300;
}

.copyright p a {
    color: #fff;
    font-weight: 500;
}

#menu-mobile {
    position: absolute;
    width: 0;
    z-index: 11;
}

#menu-mobile #menu-backdrop {
    background-color: transparent;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    display: none;
}

#menu-mobile .content {
    position: absolute;
    top: 0;
    right: -100%;
    width: fit-content;
    background-color: #fff;
    padding: 20px;
    transition: right 0.3s;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#menu-mobile .content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
}

#menu-mobile .content ul li {
    margin: 0;
    padding: 10px 5px;
}

#menu-mobile .content ul li:last-of-type {
    border-bottom: none;
}

#menu-mobile .content ul li.link-mobile {
    display: none;
}

#menu-mobile .content ul li.nbd {
    border-bottom: none;
}

@media screen and (max-width: 1200px) {
    #menu-mobile .content ul li.link-mobile {
        display: block;
    }
}

#menu-mobile .content ul li a {
    text-decoration: none;
    color: #00357a;
    font-size: 1.1rem;
    font-weight: normal;
    text-transform: uppercase;
}

#menu-mobile .content ul li a:hover {
    color: #ff914d;
}

#menu-mobile.visible {
    width: 100%;
}

#menu-mobile.visible #menu-backdrop {
    display: block;
}

#menu-mobile.visible .content {
    right: 50px;
    top: 110px;
    position: fixed;
}

#menu-mobile.visible.pz .content {
    top: 81px;
}


@media screen and (max-width: 1200px) {
    #menu-mobile.visible .content {
        top: 60px;
        right: 20px;
    }
}

.banner {
    margin-top: -140px;
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (max-width: 1200px) {
    .banner {
        margin-top: -65px;
    }
}

.banner .bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

@media screen and (max-width: 900px) {
    .banner {
        padding: 50px 10px;
    }
}


.banner .search-wrapper {
    width: fit-content;
    margin: auto;
}

.banner .search-wrapper h1 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 3rem;
    margin: 0;
}

.banner .search-wrapper .search-type-selector {
    text-align: left;
}

.banner .search-wrapper .search-type-selector .btn-transparent {
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0 5px;
    margin-right: 30px;
    font-size: 0.8rem;
    border-radius: 0;
}

.banner .search-wrapper .search-type-selector .btn-transparent.active {
    border-bottom: 1px solid #00357a;
}

@media screen and (max-width: 900px) {
    .banner .search-wrapper .search-type-selector {
        text-align: center;
    }

    .banner .search-wrapper .search-type-selector .btn-transparent {
        font-size: 0.6rem;
        margin-right: 20px;
    }
}

@media screen and (max-width: 900px) {
    .banner .search-wrapper h1 {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }
}

.banner .search-wrapper .search-options {
    margin-top: 10px;
}

.banner .search-wrapper .search-options input.text-input {
    border-radius: 0;
    height: 32px;
    box-shadow: none;
    border: 1px solid #00357a;
    font-size: 14px;
    text-align: center;
}

.banner .search-wrapper .search-options .si-wrap {
    display: inline-block;
}


.banner .search-wrapper .search-options .si-list {
    width: 100%;
}

.banner .search-wrapper .search-options #code-search {
    display: none;
}

@media screen and (max-width: 900px) {
    .banner .search-wrapper .search-options {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .banner .search-wrapper .search-options .btn-blue {
        display: block;
    }

    .banner .search-wrapper .search-options .si-wrap {
        display: block;
    }

    .banner .search-wrapper .search-options input.text-input {
        margin-bottom: 10px;
        width: 250px;
        text-align: center;
    }
}

h1 {
    font-weight: 400;
    text-transform: uppercase;
}

.choices {
    position: relative;
    margin-bottom: 0;
    font-size: 16px;
    display: inline-block;
}

.choices:focus {
    outline: 0;
}

.choices:last-child {
    margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    user-select: none;
}

.choices.is-disabled .choices__item {
    cursor: not-allowed;
}

.choices[data-type*="select-one"] {
    cursor: pointer;
}

.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 7.5px;
}

.choices[data-type*="select-one"] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    margin: 0;
}

.choices[data-type*="select-one"] .choices__button {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: 0.5;
}

.choices[data-type*="select-one"] .choices__button:focus,
.choices[data-type*="select-one"] .choices__button:hover {
    opacity: 1;
}

.choices[data-type*="select-one"] .choices__button:focus {
    box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*="select-one"]:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
}

.choices[data-type*="select-one"].is-open:after {
    border-color: transparent transparent #333 transparent;
    margin-top: -7.5px;
}

.choices[data-type*="select-one"][dir="rtl"]:after {
    left: 11.5px;
    right: auto;
}

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0;
}

.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
    cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
    position: relative;
    display: inline-block;
    margin-top: 0;
    margin-right: -4px;
    margin-bottom: 0;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid #ff914d;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: 0.75;
    border-radius: 0;
}

.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover {
    opacity: 1;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 2px 0 2px;
    border: 1px solid #ddd;
    border-radius: 2.5px;
    font-size: 14px;
    min-height: unset;
    overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #b7b7b7;
}

.is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%;
}

[dir="rtl"] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}

.choices__list--single .choices__item {
    width: 100%;
}

.choices__list--multiple {
    display: inline;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00357a;
    border: 1px solid #00357a;
    color: #fff;
    word-break: normal;
}

.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}

[dir="rtl"] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00357a;
    border: 1px solid #00357a;
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaa;
    border: 1px solid #919191;
}

.choices__list--dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: normal;
}

.choices__list--dropdown.is-active {
    display: block;
}

.is-open .choices__list--dropdown {
    border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
    text-align: right;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 16px;
    }

    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }

    [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px;
    }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: 0.5;
}

.choices__item {
    cursor: default;
}

.choices__item--selectable {
    cursor: pointer;
}

.choices__item--disabled {
    cursor: not-allowed;
    user-select: none;
    opacity: 0.5;
}

.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: gray;
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.choices__button:focus {
    outline: 0;
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}

.choices__input:focus {
    outline: 0;
}

[dir="rtl"] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}

.choices__placeholder {
    opacity: 0.5;
}

.choices[data-type*="select-multiple"] .choices__input.is-hidden,
.choices[data-type*="select-one"] .choices__input.is-hidden,
.choices__input.is-hidden {
    display: none;
}

#features {
    padding-bottom: 70px;
}

#features h2 {
    text-align: center;
    text-transform: uppercase;
    /* color: #ff914d; */
    /* width: 1000px; */
}

#features .features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    #features .features-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

#features .features-wrapper .feature {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 20px 20px 40px;
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -ms-transition: box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    position: relative;
}

#features .features-wrapper .feature p {
    margin-top: 0;
    margin-bottom: 70px;
    font-size: 16px;
}

#features .features-wrapper .feature .btn.btn-orange.bold {
    width: 100%;
}

#features .features-wrapper .feature img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/1.4;
    object-fit: cover;
    border-radius: 10px;
}

#features .features-wrapper .feature .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px) !important;
}

#regions {
    text-align: center;
    padding-top: 50px;
}

#regions.hidden {
    display: none;
}

.btn-toggle-regions {
    margin-top: 40px;
    -webkit-appearance: none;
    color: #ff914d;
    padding: 0;
    font-family: inherit;
    border: none;
    font-size: 1.1rem;
    background-color: transparent;
    cursor: pointer;
}

.btn-toggle-regions:hover {
    color: #00357a;
}

#regions .region {
    vertical-align: top;
    display: inline-block;
    cursor: pointer;
    margin: 5px 15px;
    transition: color 0.3s;
}

#regions .region:hover {
    color: #ff914d;
}

#regions .region img.arrow {
    height: 15px;
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.3s;
}

#regions .region img.arrow.rotated {
    transform: rotate(-180deg);
}

#regions .region>ul {
    list-style: none;
    text-align: left;
    max-height: 0;
    width: 0;
    overflow: hidden;
    margin: 0 0 10px;
    transition: all 0.3s;
    background-color: #d8d8d866;
    padding: 0;
    border-radius: 5px;
}

#regions .region>ul a {
    color: #00357a;
    transition: color 0.3s;
}

#regions .region>ul a:hover {
    color: #ff914d;
}

#regions .region>ul.visible {
    height: auto;
    max-height: 800px;
    width: auto;
    padding: 10px 20px;
}

#special-property .init {
    margin-top: 20px;
    height: 550px;
    background-size: cover;
    background-position: center bottom;
    position: relative;
}


#special-property .init .init-wrapper {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 70px;
}

#special-property .init .init-wrapper h1,
#special-property .init .init-wrapper p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, .49);
}

@media screen and (max-width: 1200px) {
    #special-property .init {
        height: 500px;
    }
}

#special-property .init h1 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 15px;
}

#special-property .init p,
#special-property .init p.address {
    margin-top: 0;
    color: #fff;
    font-weight: 400;
}

#special-property .init p.address {
    margin-bottom: 10px;
}

#special-property .init p.address {
    margin-top: 0;
    margin-bottom: 0;
}

#special-property .init p.company {
    text-transform: uppercase;
    margin-bottom: 10px;
}

#special-property .init p {
    font-size: 1.3rem;
}

#special-property .init p.address {
    font-size: 0.8rem;
}

#special-property #empreendimento {
    width: 100%;
    font-size: 0;
    display: grid;
    grid-template-columns: 50% 50%;
}

#special-property #empreendimento .description {
    box-sizing: border-box;
    font-size: 1rem;
    padding: 50px 80px;
}

#special-property #empreendimento .description .nums {
    text-align: center;
}

#special-property #empreendimento .description .nums p {
    font-size: 0.83em;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    vertical-align: top;
    width: 30%;
}

@media screen and (max-width: 1200px) {
    #special-property #empreendimento {
        grid-template-columns: 100%;
        margin-top: 100px;
    }

    #special-property #empreendimento h4 {
        text-align: center;
    }

    #special-property #empreendimento .description {
        padding: 20px 20px;
    }
}

#special-property #empreendimento .slider-col {
    box-sizing: border-box;
}

#special-property #infra {
    width: 100%;
    font-size: 0;
    display: grid;
    grid-template-columns: 50% 50%;
}

#special-property #infra .description {
    text-align: right;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 50px 80px;
}

#special-property #infra .description ul {
    columns: 2;
    padding-left: 20px;
    text-align: left;
}

@media screen and (max-width: 1200px) {
    #special-property #infra {
        grid-template-columns: 100%;
    }

    #special-property #infra .description {
        text-align: center;
        grid-row: 1;
        padding: 20px 20px;
    }
}

#special-property #infra .slider-col {
    box-sizing: border-box;
}

#special-property h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
}

@media screen and (max-width: 800px) {
    #special-property h2 {
        text-align: center;
    }
}

#special-property p {
    text-align: justify;
}

#special-property .slick-next,
#special-property .slick-prev {
    background-color: #ffffff66;
    height: 30px;
    width: 30px;
    padding: 10px;
}

#special-property .slick-next {
    right: 0;
}

#special-property .slick-prev {
    left: 0;
    z-index: 2;
}

#special-property .photos {
    background-color: #d8d8d8;
}

#special-property .photos .photo {
    height: 480px;
    background-size: cover;
    background-position: center;
    margin-bottom: -4px;
}

@media screen and (max-width: 800px) {
    #special-property .photos .photo {
        height: 300px;
    }
}

#special-property #contact-location {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    border-bottom: 1px solid #00357a;
}

#special-property #contact-location #localizacao {
    text-align: center;
}

#special-property #contact-location #localizacao h4 {
    margin-top: 100px;
}

#special-property #contact-location #localizacao p {
    text-align: center;
}

#special-property #contact-location #map {
    height: 480px;
    background-color: #e4eefe2b;
}

#special-property #contact-location .form-contact {
    box-sizing: border-box;
    font-size: 1rem;
    padding: 50px 80px;
}

#special-property #contact-location .form-contact input,
#special-property #contact-location .form-contact textarea {
    display: block;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 15px;
    width: 300px;
    max-width: 100%;
}

#special-property #contact-location .form-contact .contact-btn {
    display: inline-block;
    width: auto;
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
}

#special-property #contact-location .form-contact .contact-btn img {
    height: 20px;
    margin-right: 10px;
    width: auto;
    vertical-align: middle;
}

@media screen and (max-width: 1200px) {
    #special-property #contact-location {
        grid-template-columns: 100%;
    }

    #special-property #contact-location h4 {
        text-align: center;
    }

    #special-property #contact-location form {
        text-align: center;
    }

    #special-property #contact-location form input {
        margin: auto;
    }

    #special-property #contact-location .form-contact {
        text-align: center;
        padding: 20px 20px;
    }

    #special-property #contact-location #localizacao h4 {
        margin-top: 20px;
    }
}

#unidades {
    min-width: 0;
    text-align: center;
    padding-bottom: 80px;
    margin-top: 20px;
}

#unidades h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

#unidades .properties-wrapper .property {
    display: block;
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    padding: 15px 15px 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: allshadow 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#unidades .properties-wrapper .property .photos {
    display: none;
}

#unidades .properties-wrapper .property .next-photo,
#unidades .properties-wrapper .property .prev-photo {
    position: absolute;
    top: calc(50% - 50px);
    height: 100px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: 0;
    display: none;
}

@media screen and (max-width: 800px) {

    #unidades .properties-wrapper .property .next-photo,
    #unidades .properties-wrapper .property .prev-photo {
        width: 50px;
    }
}

#unidades .properties-wrapper .property .next-photo svg,
#unidades .properties-wrapper .property .prev-photo svg {
    width: 10px;
}

#unidades .properties-wrapper .property .next-photo {
    right: 5px;
}

#unidades .properties-wrapper .property .prev-photo {
    left: 5px;
}

#unidades .properties-wrapper .property .loader {
    display: none;
    margin-top: 65px;
}

#unidades .properties-wrapper .property .overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: all 0.3s;
}

#unidades .properties-wrapper .property .property-data {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    color: #fff;
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
}

#unidades .properties-wrapper .property .property-data p {
    margin: 0;
}

#unidades .properties-wrapper .property .property-data .price {
    padding-left: 5px;
    text-align: left;
    font-weight: 700;
    font-size: 1.2rem;
}

#unidades .properties-wrapper .property .property-data .neighborhood {
    text-transform: uppercase;
    padding-left: 5px;
    text-align: left;
    font-weight: 300;
    font-size: 0.8rem;
}

#unidades .properties-wrapper .property .property-data .qtys {
    text-align: right;
    margin-right: 5px;
    font-weight: 300;
    font-size: 0.7rem;
}

#unidades .properties-wrapper .property .property-data .qtys>div {
    text-align: center;
    display: inline-block;
    padding: 0 2px;
}

#unidades .properties-wrapper .property .property-data .qtys>div.bordered {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

#unidades .properties-wrapper .property.loading {
    background-image: url(../img/content/placeholder.svg);
    background-color: #e4eefe2b;
}

#unidades .properties-wrapper .property.loading .overlay {
    background: 0 0;
}

#unidades .properties-wrapper .property.loading .next-photo,
#unidades .properties-wrapper .property.loading .prev-photo {
    display: none;
}

#unidades .properties-wrapper .property.loading .price {
    background-color: rgba(19, 34, 66, 0.51);
    width: 100%;
    height: 1.2rem;
    margin-bottom: 5px;
    animation: loading-data-to-100 2s infinite;
}

#unidades .properties-wrapper .property.loading .neighborhood {
    background-color: rgba(19, 34, 66, 0.51);
    width: 60%;
    height: 0.8rem;
    animation: loading-data-to-60 2s infinite;
}

#unidades .properties-wrapper .property:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-5px);
}

.back-btn {
    position: absolute;
    left: 15px;
    top: 50px;
    z-index: 2;
    background: 0 0;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
}

.back-btn.ha {
    top: 90px;
}

@media screen and (max-width: 900px) {
    .back-btn.ha {
        top: 50px;
    }
}

.back-btn img {
    width: auto;
    height: 25px;
    vertical-align: middle;
}

.back-btn-special {
    position: absolute;
    left: 10px;
    top: 12px;
    z-index: 2;
    background: 0 0;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
}

.back-btn-special.ha {
    top: 41px;
}

@media screen and (max-width: 900px) {
    .back-btn-special.ha {
        top: 12px;
    }
}

.back-btn-special img {
    width: auto;
    height: 25px;
    vertical-align: middle;
}

@keyframes loading-data-to-100 {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading-data-to-60 {
    0% {
        width: 0;
    }

    100% {
        width: 60%;
    }
}

#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media screen and (max-width: 800px) {
    #about {
        padding-top: 20px;
        grid-template-columns: 1fr;
    }
}

#about img {
    width: 100%;
    height: auto;
}

#about p {
    color: #00357a;
}

#about p:last-of-type {
    margin-bottom: 0;
}

#awards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    border-top: 1px solid #00357a;
    border-bottom: 1px solid #00357a;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

#awards .awards-title {
    grid-column-start: 1;
    grid-column-end: 3;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width: 800px) {
    #awards {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    #awards .awards-title {
        grid-column-start: 1;
        grid-column-end: 2;
        margin-bottom: 0;
    }
}

#awards .img-responsive {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

#awards h2 {
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
}

#awards p {
    color: #00357a;
    margin-bottom: 0;
}

.sell-two-cols {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

@media screen and (max-width: 800px) {
    .sell-two-cols {
        grid-template-columns: 100%;
        gap: 25px;
    }
}

#steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

#steps .sell-title {
    grid-column-start: 1;
    grid-column-end: 4;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
    #steps {
        grid-template-columns: 1fr 1fr;
    }

    #steps .sell-title {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #steps .sstitle {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

@media screen and (max-width: 800px) {
    #steps {
        grid-template-columns: 1fr;
        padding-top: 20px;
        margin-bottom: 0;
    }

    #steps .sell-title {
        grid-column-start: 1;
        grid-column-end: 2;
        margin-bottom: 0;
    }

    #steps .sstitle {
        grid-column-start: 1;
        grid-column-end: 2;
    }
}

.sstitle {
    font-weight: normal;
    grid-column-start: 1;
    grid-column-end: 4;
    margin-top: 0;
    text-align: left;
}

h2.sstitle {
    font-size: 1.1rem !important;
    margin-top: -10px;
}

@media screen and (max-width: 800px) {
    .sstitle {
        grid-column-end: 2
    }
}

#steps .step {
    border: 1px solid #d8d8d8;
    border-radius: 0;
    padding: 20px;
}

#steps .step svg {
    height: 250px;
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
}

#steps .step p {
    color: #00357a;
    margin-bottom: 30px;
    vertical-align: middle;
}

#sell-form-wrapper {
    position: relative;
}

#sell-form-wrapper .h-100 {
    height: 100%;
}

@media screen and (max-width: 1200px) {
    #sell-form-wrapper {
        position: unset;
        top: unset;
    }
}

@media screen and (max-width: 1200px) {
    #sell-form-wrapper {
        grid-template-columns: 1fr;
    }
}

#sell-form-wrapper form {
    box-shadow: 0 5px 7px rgba(0, 0, 0, .23);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    position: sticky;
    position: -webkit-sticky;
    top: 90px;
    margin-bottom: 20px;
    padding: 20px;
}

#sell-form-wrapper form h2,
#contact-form-wrapper form h2 {
    font-size: 20px !important;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
}

#contact-form-wrapper form h2 {
    grid-column: 1 / -1;
}

#sell-form-wrapper form input,
#sell-form-wrapper form textarea {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    box-sizing: border-box;
}

#sell-form-wrapper form button {
    width: 100%;
}

@media screen and (max-width: 1200px) {
    #sell-form-wrapper form {
        grid-template-columns: 1fr;
    }
}

#sell-form-wrapper p {
    margin: 0;
    color: #00357a;
    text-align: justify;
}

#privacy-policy h1 {
    color: #00357a;
    margin-bottom: 50px;
}

#privacy-policy h2 {
    font-size: 1.3rem !important;
}

#services-form {
    box-shadow: 0 5px 7px rgba(0, 0, 0, .23);
    border-radius: 10px;
    padding: 20px;
}

#privacy-policy p {
    text-align: justify;
    color: #00357a;
}

.divider {
    border-top: 1px solid #00357a;
}

#map {
    height: 300px;
    background-color: #e4eefe2b;
    margin-bottom: 30px;
}

#contact-form-wrapper {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 50px;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    #contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

#contact-form-wrapper h1 {
    margin-top: 0;
}

#contact-form-wrapper form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, .23);
    border-radius: 10px;
    padding: 20px;
}

#contact-form-wrapper form input,
#contact-form-wrapper form textarea {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

#contact-form-wrapper form textarea {
    grid-column-start: 1;
    grid-column-end: 4;
}

#contact-form-wrapper form button {
    width: 100%;
    font-size: 1rem;
}

@media screen and (max-width: 1200px) {
    #contact-form-wrapper form {
        grid-template-columns: 1fr;
    }

    #contact-form-wrapper form textarea {
        grid-column-start: 1;
        grid-column-end: 2;
    }

    #contact-form-wrapper form button {
        grid-column: 1;
    }
}

#contact-form-wrapper p {
    margin: 50px 0 0;
    color: #00357a;
    text-align: right;
}

#contact-form-wrapper p a {
    color: #00357a;
    transition: color 0.3s;
}

#contact-form-wrapper p a:hover {
    color: #ff914d;
}

@media screen and (max-width: 1200px) {
    #contact-form-wrapper p {
        text-align: left;
    }
}

i:not(.italic) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    transition: transform 0.3s;
}

i:hover {
    transform: translateY(-5px);
}

i.instagram {
    content: url(../img/icons/instagram.svg);
}

i.facebook {
    content: url(../img/icons/facebook.svg);
}

i.linkedin {
    content: url(../img/icons/linkedin.svg);
}

i.youtube {
    content: url(../img/icons/youtube.svg);
}

i.phone {
    content: url(../img/icons/phone.svg);
}

.contact-fabs {
    background-color: #00357a;
    position: fixed;
    right: 0;
    top: 45%;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    z-index: 9;
}

.contact-fabs a {
    display: block;
}

.contact-fabs a img {
    width: 30px;
    margin: 2px 0;
    transition: transform 0.3s;
}

.contact-fabs a:hover img {
    transform: scale(1.1);
}

.contact-fabs .agent-name {
    margin: 0;
    display: none;
}

@media screen and (max-width: 900px) {
    .contact-fabs {
        background-color: #fff;
        right: 0;
        width: 100%;
        top: auto;
        bottom: 0;
        padding: 5px 0 2px;
        border-radius: 0;
    }

    .contact-fabs a {
        display: inline-block;
        margin: 0 20px;
    }

    .contact-fabs .agent-name {
        display: block;
    }
}

h2,
#featured-properties h2 {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.property .img-link {
    position: relative;
}

#featured-neighboorhoods {
    padding-top: 30px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-next,
.swiper-button-prev {
    top: 32%;
}

@media screen and (max-width: 767px) {

    .swiper-button-next,
    .swiper-button-prev {
        top: 23%;
    }
}

.img-link .swiper-button-next,
.img-link .swiper-button-prev {
    top: 50%;
}

#featured-properties h2 {
    margin-top: 60px;
}

#featured-properties h3,
#featured-neighboorhoods h3 {
    font-weight: 400;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 60px;
}

@media screen and (max-width: 900px) {

    #featured-properties h3,
    #featured-neighboorhoods h3 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 700px) {

    #featured-properties h3,
    #featured-neighboorhoods h3 {
        font-size: 0.8rem;
    }
}

.property {
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.property .property-data {
    padding: 20px;
    flex: auto;
    display: flex;
    flex-flow: column;
}

#search-results .properties-wrapper .property .property-data {
    padding: 0 20px 20px;
}

.property .type-price {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.property p {
    margin: 0;
}

.property .cod {
    font-weight: 400;
    font-size: 15px;
}

.property .type-price .type {
    font-size: 20px;
}

.property .type-price .price {
    font-weight: bold;
    font-size: 26px;
    color: #ff914d;
}

#search-results .properties-wrapper .property .type-price .price {
    font-size: 18px;
}

#search-results .properties-wrapper .property .numbers {
    font-size: 15px;
    margin-top: 15px;
}

.property .neighborhood {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 10px !important;
    margin-bottom: 0;
}

.property .neighborhood.e {
    margin-top: 0;
    margin-bottom: 0;
}

.property .building {
    font-size: 20px;
}

.property .address {
    margin-top: 5px;
    font-size: 12px;
}

.property img {
    display: block;
    background-color: #ddd;
    width: 100%;
    height: auto;
    aspect-ratio: 16/11;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .property img {
        aspect-ratio: 1.1/1;
    }
}

.property .numbers {
    font-size: 20px;
    font-weight: 400;
}

.property .desc {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 12px;
}

.swiper-1 {
    width: 100%;
}

.swiper-slide {
    height: auto;
}

.property .link {
    color: #ff914d;
    margin-top: auto;
}

button.link {
    color: #ff914d;
    padding: 0;
    background-color: transparent;
    font-family: inherit;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.property .link.e {
    display: flex;
    justify-content: space-between;
    text-decoration: underline;
}

.property .link:hover {
    color: #00357a;
}

@media screen and (max-width: 767px) {
    .property .type-price {
        flex-wrap: wrap;
    }

    .property .type-price .type {
        font-size: 16px;
    }

    .property .type-price .price {
        font-weight: bold;
        font-size: 20px;
        color: #ff914d;
    }

    .property .neighborhood {
        font-size: 20px;
        margin-top: 5px;
    }

    .property .building {
        font-size: 16px;
    }

    .property .address {
        font-size: 12px;
    }

    .property .numbers {
        font-size: 16px;
    }

    .property .desc {
        font-size: 10px;
    }
}


@keyframes loading-data-to-100 {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading-data-to-60 {
    0% {
        width: 0;
    }

    100% {
        width: 60%;
    }
}

#search-results {
    min-width: 0;
    padding-bottom: 80px;
    padding-top: 5px;
    margin-bottom: 50px;
}

#search-results .btn-blue {
    height: 36px;
    width: 200px;
}

@media screen and (max-width: 700px) {
    #search-results .btn-blue {
        width: 100%;
    }
}

#search-results .btn-white {
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.breadcrumbs {
    border-top: 1px solid #00357a;
    padding: 5px 0;
    text-align: left;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumbs li {
    font-size: 0.7rem;
}

.breadcrumbs a {
    text-transform: uppercase;
    color: #00357a;
    font-weight: 400;
    font-size: 0.7rem;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #ff914d;
}

#search-results .filter-btn {
    height: auto;
    position: -webkit-sticky;
    position: sticky;
    top: 5px;
    margin-bottom: 20px;
    z-index: 10;
    padding: 7px 10px;
    width: 100%;
}

@media screen and (min-width: 992px) {
    #search-results .filter-btn {
        display: none;
    }
}

#search-results #mobile-filter-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00357ad1;
    z-index: 10;
}

#search-results #mobile-filter-backdrop.visible {
    display: block;
}

#search-results .total-sort {
    display: flex;
    gap: 10px;
    position: relative;
    margin-bottom: 30px;
    text-align: left;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

#search-results .total-sort .btn.btn-orange.bold {
    font-size: 0.8rem;
    margin-top: 10px;
}

#search-results .total-sort select { 
    font-family: inherit;   
    -webkit-appearance: none;
    background-color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 10px;
    color: #00357a;
    border: 1px solid #00357a;
    width: 150px;
    cursor: pointer;
    margin-top: 10px;
}

#search-results h1 {
    margin-top: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 900px) {
    #search-results h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 700px) {
    #search-results h1 {
        font-size: 2rem;
    }
}

#search-results h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 60px;
}

@media screen and (max-width: 900px) {
    #search-results h2 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 700px) {
    #search-results h2 {
        font-size: 0.8rem;
    }
}

#search-results .properties-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

#search-results .properties-wrapper .property {
    border: none;
    box-shadow: 1px 4px 5px rgba(0, 0, 0, .23);
}

@media screen and (max-width: 991px) {
    #search-results .properties-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

#load-more {
    text-decoration: underline;
}

#load-more:hover {
    color: #00357a;
}

#load-more.hide {
    display: none;
}

@keyframes loading-data-to-100 {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading-data-to-60 {
    0% {
        width: 0;
    }

    100% {
        width: 60%;
    }
}

.glide {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.glide * {
    box-sizing: inherit;
}

.glide__track {
    overflow: hidden;
}

.glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    touch-action: pan-Y;
    padding: 0;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

.glide__slides--dragging {
    user-select: none;
}

.glide__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    white-space: normal;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.glide__arrows {
    -webkit-touch-callout: none;
    user-select: none;
}

.glide__bullets {
    -webkit-touch-callout: none;
    user-select: none;
}

.glide--rtl {
    direction: rtl;
}

.glide__arrow {
    position: absolute;
    display: block;
    top: 50%;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    padding: 9px 12px;
    background-color: transparent;
    border: none;
    opacity: 1;
    cursor: pointer;
    transition: opacity 150ms ease, border 0.3s ease-in-out;
    transform: translateY(-50%);
    line-height: 1;
}

.glide__arrow svg {
    width: 20px;
}

.glide__arrow:focus {
    outline: 0;
}

.glide__arrow:hover {
    border-color: #fff;
}

.glide__arrow--left {
    left: -50px;
}

.glide__arrow--right {
    right: -50px;
}

.glide__arrow--disabled {
    opacity: 0.33;
}

@media screen and (max-width: 800px) {
    .glide__arrow {
        display: none;
    }
}

.glide__bullets {
    position: absolute;
    z-index: 2;
    bottom: -20px;
    left: 50%;
    display: inline-flex;
    list-style: none;
    transform: translateX(-50%);
}

.glide__bullet {
    background-color: #00357a;
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
    line-height: 0;
    box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
    margin: 0 0.75em;
}

.glide__bullet:focus {
    outline: 0;
}

.glide__bullet:focus,
.glide__bullet:hover {
    border: 2px solid #ff914d;
    background-color: #ff914d;
}

.glide__bullet--active {
    background-color: #ff914d;
}

@media screen and (max-width: 800px) {
    .glide__bullet {
        display: block;
    }
}

@media screen and (min-width: 800px) {
    .glide__bullet {
        display: none;
    }
}

.glide--swipeable {
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.glide--dragging {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.switch-button {
    box-sizing: border-box;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    width: 446px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #132242;
    position: relative;
    padding-right: 223px;
    position: relative;
    margin: 50px auto 50px;
    transition: color 0.3s linear;
}

.switch-button:before {
    content: "Alugar";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 222px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    border-bottom: 1px solid #00357a;
    border-right: 1px solid #00357a;
    border-top: 1px solid #00357a;
    border-left: none;
}

.switch-button-checkbox {
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.switch-button-checkbox:checked+.switch-button-label:before {
    transform: translateX(223px);
    transition: transform 0.3s linear;
}

.switch-button-checkbox+.switch-button-label {
    position: relative;
    padding: 20px 0;
    display: block;
    user-select: none;
    pointer-events: none;
    color: #fff;
    transition: color 0.3s linear;
    font-weight: bold;
    border-top: 1px solid #00357a;
    border-bottom: 1px solid #00357a;
    border-left: 1px solid #00357a;
}

@media screen and (max-width: 991px) {
    .switch-button-checkbox+.switch-button-label {
        padding: 12px 0;
    }
}

.switch-button-checkbox+.switch-button-label:before {
    content: "";
    background: #ff914d;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0;
    transform: translateX(0);
    transition: transform 0.3s;
}

.switch-button-checkbox+.switch-button-label .switch-button-label-span {
    position: relative;
}

@media screen and (max-width: 900px) {

    .banner .search-wrapper .search-options .btn-blue,
    .banner .search-wrapper .search-options .btn-white,
    .banner .search-wrapper .search-options .si-result {
        width: 100%;
    }

    .switch-button {
        width: 300px;
        padding-right: 150px;
    }

    .switch-button:before {
        width: 150px;
    }

    .switch-button-checkbox:checked+.switch-button-label:before {
        transform: translateX(150px);
    }
}

.search-wrapper select {
    -webkit-appearance: none;
    background-color: #fff;
    font-size: 1rem;
    height: 39px;
    border: 1px solid #132242;
    border-radius: 0;
    padding: 4px 10px;
    color: #132242;
    cursor: pointer;
    width: 200px;
    transition: all 0.3s;
    text-align: center;
    text-align: -webkit-center;
    font-family: "Montserrat", sans-serif;
}

.search-wrapper select:hover {
    background-color: #00357a;
    color: #fff;
}

#location-modal .btn.btn-continue.btn-filter,
#features-modal .btn.btn-continue.btn-filter {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    bottom: 10px;
    width: auto;
    height: auto;
    left: calc(50%);
    transform: translateX(-50%);
    border-radius: 0;
    z-index: 12;
    outline: 0;
    padding: 10px 30px;
    font-family: inherit;
    text-transform: uppercase;
    background-color: #ff914d;
    color: #fff;
    font-weight: normal;
}

#location-modal .btn.btn-continue.btn-filter svg,
#features-modal .btn.btn-continue.btn-filter svg {
    display: block;
    height: 1.4rem;
    width: auto;
}

#search-type.si-off .filter-b {
    display: none;
}

@media screen and (max-width: 900px) {
    .banner .search-wrapper .search-options .si-list {
        width: 100%;
        top: 100%;
    }
}

li.li-checked {
    position: relative;
    background-color: #132242;
}

li.li-checked span {
    color: #fff !important;
}

li.li-checked::after {
    position: absolute;
    right: 1em;
    content: '✔';
    color: #fff;
}

.property {
    position: relative;
    overflow: hidden;
    border: 1px solid #d4d4d4;
}

.exclusive-seal {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform-origin: center;
    z-index: 2;
}

.exclusive-seal::before {
    content: "";
    display: block;
    height: 0;
    padding-top: 100%;
}

.exclusive-seal>span {
    display: inline-block;
    background: #FFBB4D;
    padding: 10px 45px;
    transform: translateY(-50%);
    font-size: .8rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #00357a;
    white-space: nowrap;
}

.exclusive-seal.lanc>span {
    background-color: #ff914d;
    color: #fff;
}

#featured-properties .properties-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

#featured-properties .properties-wrapper .property .overlay,
#unidades .properties-wrapper .property .overlay,
#search-results .properties-wrapper .property .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0));
}

.nh2 {
    font-size: 1.25rem !important;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 35px;
}

.nh2:first-of-type {
    margin-top: 0;
}

.text * {
    font-family: 'Montserrat', sans-serif !important;
}

@media screen and (min-width: 1400px) {
    #property .property-body {
        grid-template-columns: 800px 1fr;
    }
}

@media screen and (min-width: 1600px) {
    #property .property-body {
        grid-template-columns: 1000px 1fr;
    }
}

@media screen and (min-width: 1900px) {
    #property .property-body {
        grid-template-columns: 1200px 1fr;
    }
}

@media screen and (min-width: 2000px) {
    #property .property-body {
        grid-template-columns: 1500px 1fr;
    }
}

#property .photos img:not([srcset]):not([src]),
#property .thumbs img:not([srcset]):not([src]),
#special-property .photos img:not([srcset]):not([src]),
#special-property .thumbs img:not([srcset]):not([src]) {
    visibility: hidden;
}

#features .features-wrapper .feature h3 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    #features .features-wrapper .feature h3 {
        font-size: 16px;
    }

    #features .features-wrapper .feature p {
        font-size: 12px;
    }
}

nav ul li {
    margin-left: 30px
}

#kzas-iframe {
    height: 800px;
}

@media screen and (max-width: 500px) {
    #kzas-iframe {
        height: 900px;
    }
}

@media screen and (max-width: 450px) {
    .credit-form-wrapper {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media screen and (min-width: 1900px) {
    #kzas-iframe {
        height: 520px;
    }
}

.exclusive-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 30%;
    border-top-left-radius: 5px;
}

.btn.menu-toggle {
    position: relative;
    z-index: 99;
}

#search-location,
#search-features {
    font-family: inherit;
    font-weight: normal;
}

#search-location.options-selected,
#search-features.options-selected {
    font-family: inherit;
    font-weight: 700;
}

@media screen and (max-width: 800px) {

    #search-location.options-selected,
    #search-features.options-selected,
    .search-bar .options input#cod {
        height: 39px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
}



#property h2 {
    line-height: 1.4rem
}

#real-estate-d {
    grid-column-start: 1;
    grid-column-end: 4;
}

#building-company {
    grid-column-start: 4;
    grid-column-end: 6;
}

@media screen and (max-width: 800px) {
    #real-estate-d {
        grid-row: 7;
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #building-company {
        grid-row: 8;
        grid-column-start: 1;
        grid-column-end: 3;
    }    
}

@media screen and (max-width: 800px) {
    #min-area {
        grid-row: 7;
        grid-column: 1;
    }

    #max-area {
        grid-row: 7;

    }

    #suites {
        grid-row: 6;
        grid-column: 1;
    }

    #bathrooms {
        grid-row: 6;

    }

    #building-company {
        grid-row: 8;

    }

    #real-estate-d {
        grid-row: 8;
        grid-column: 1;
    }

    #features {
        grid-row: 9;
    }

    #rp1 {
        grid-row: 10;
        grid-column: 1;
    }

    #rp2 {
        grid-row: 10;

    }

    #location-modal .selection-wrapper,
    #features-modal .selection-wrapper {
        height: calc(100vh - 200px);
    }

    #location-modal .selection-wrapper .body,
    #features-modal .selection-wrapper .body {
        /*  height: 82% !important;*/
        height: calc(100% - 97px) !important;
    }

    #search-location,
    #search-features {
        font-size: 0.75rem;
    }

    #search-type .si-result,
    #search-how .si-result,
    #rooms .si-result {
        height: 39px;
    }

    #search-type .si-result,
    #rooms .si-result,
    #search-how .si-result,
    #max-val,
    #min-val,
    #bathrooms .si-result,
    #suites .si-result {
        font-size: 0.75rem;
    }

    .mth1 {
        width: 300px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

#features-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 11;
    display: none
}

#features-modal.visible {
    display: block
}

#features-modal #features-modal-backdrop {
    height: 100%;
    width: 100%;
    background-color: rgba(14, 30, 43, .85)
}

#features-modal .btn.btn-continue {
    position: fixed;
    bottom: 0;
    left: calc(50% - 28px);
    background-color: transparent;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 12;
    outline: 0
}

#features-modal .btn.btn-continue img {
    width: 100%;
    height: auto
}
/* 
#features-modal .btn.btn-continue:hover {
    transform: scale(1.1)
} */

#features-modal .selection-wrapper {
    background-color: #fff;
    position: absolute;
    top: 50px;
    left: 100px;
    width: calc(100% - 200px);
    height: 80%;
    box-sizing: border-box;
    overflow-y: scroll;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
    transform: translateY(-5px)
}

@media screen and (max-width: 1200px) {
    #features-modal .selection-wrapper {
        left: 50px;
        width: calc(100% - 100px)
    }
}

@media screen and (max-width: 800px) {
    #features-modal .selection-wrapper {
        left: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 160px)
    }
}

/* #features-modal .selection-wrapper .header {
    background-color: #132242;
    padding: 10px;
    box-sizing: border-box
} */

/* #features-modal .selection-wrapper .header p.tt {
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    color: #fff
} */

#features-modal .selection-wrapper .body {
    padding: 20px
}

@media screen and (max-width: 800px) {
    #features-modal .selection-wrapper .body {
        padding: 10px
    }
}

#features-modal .selection-wrapper .body .location-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

@media screen and (max-width: 1000px) {
    #features-modal .selection-wrapper .body .location-table {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 800px) {
    #features-modal .selection-wrapper .body .location-table {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

#features-modal .selection-wrapper .body .location-table .region .neighborhoods {
    display: grid;
    grid-template-columns: 1fr 1fr
}

#features-modal .selection-wrapper .body .location-table .region label {
    padding: 5px;
    display: block;
    font-size: 12px
}

#features-modal .selection-wrapper .body .location-table .region label input {
    margin-right: 10px
}

#features-modal .selection-wrapper .body .location-table .region label.region-name {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #132242
}

#features-modal .selection-wrapper .body .location-table .region label:hover {
    background: #eee;
    cursor: pointer
}

@media screen and (max-width: 800px) {
    #features-modal .selection-wrapper {
        height: calc(100vh - 200px);
    }

    #features-modal .selection-wrapper .body {
        /*  height: 82% !important;*/
        height: calc(100% - 97px) !important;
    }
}

.whatsapp-nav-link {
    /* text-transform: none; */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: .8rem !important;
    font-weight: 400;
}

.whatsapp-nav-link span {
    width: 125px;
}

.whatsapp-nav-link svg {
    display: block;
    width: 40px;
    height: auto;
}

#location-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.8fr 0.8fr 1fr;
    gap: 8px;
    max-width: 100%;
    width: 1000px;
}

@media screen and (max-width: 1200px) {
    #location-search {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    #location-search #rooms {
        grid-column: 1;
        grid-row: 3;
    }
}

#location-search .div,
#location-search .btn,
#location-search select {
    width: 100%;
    height: 100%;
    text-align: left;
    min-height: 39px;
}

#location-search .btn {
    padding: 8px 10px;
}

#location-search .btn.btn-orange {
    white-space: nowrap;
    background-color: #00357a;
}

#location-search .btn.btn-orange:hover {
    background-color: #ff914d;
}

#location-search .btn.btn-orange svg {
    display: block;
    height: 1.2rem;
    width: auto;
}

#footer,
.copyright {
    background-color: #00357a;
}

#footer {
    border-top: 6px solid #ff914d;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    padding-top: 70px;
    padding-bottom: 70px;
}

@media screen and (max-width: 1000px) {
    #footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media screen and (max-width: 500px) {

    #footer .footer-about,
    #footer .footer-contact {
        grid-column: 1 / span 2;
        text-align: center;
    }

    #footer .phone-link,
    #footer .social-links {
        justify-content: center;
    }
}

#footer p {
    color: #fff;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul li a {
    color: #fff;
    font-weight: normal;
    text-transform: none;
    font-size: 14px;
}

#footer .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

#footer i.phone {
    width: 45px;
    height: 45px;
}

#footer .phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #fff;
}

#footer .phone-link span {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

#footer .phone-link span small {
    font-size: 1rem;
    margin-bottom: 2px;
}

#footer a:hover {
    color: #ff914d;
}

#footer .whatsapp-nav-link {
    margin-top: 20px;
    background-color: #fff;
    color: #00357a;
    padding: 5px 10px;
    border-radius: 10px;
}

#footer .map-link {
    color: #ff914d;
}

#footer ul.bdul li {
    color: #fff;
    margin-bottom: 20px;
}

#testimonials-sec {
    min-width: 0;
    text-align: center;
    padding-bottom: 50px;
}

#testimonials-sec .glide-testimonials {
    position: relative;
    width: 100%;
    box-sizing: border-box
}

#testimonials-sec .testimonial {
    background-color: #F5F5F5;
    font-size: 16px;
    padding: 20px 25px;
    min-height: 305px;
    display: flex;
    align-items: center;
    border-radius: 20px
}

#testimonials-sec .testimonial .t-w {
    width: 100%
}

#testimonials-sec .testimonial .t-w .name {
    font-weight: 300;
    font-size: 12px;
}

#testimonials-sec .testimonial .t-w .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

#testimonials-sec .testimonial .t-w .stars svg {
    display: block;
    height: 20px;
    width: auto;
}

#testimonials-sec .testimonial .t-w .review {
    font-weight: bold;
    font-size: 16px;
}

#testimonials-sec .testimonial a {
    font-weight: 700;
    color: #00357a;
}

#testimonials-sec .testimonial a:hover {
    color: #ff914d;
}

@media screen and (max-width: 800px) {
    .b-reviews {
        margin-top: 50px;
    }
}

#testimonials-sec h2 {
    text-transform: uppercase;
}

.title-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 70px;
}

.title-bar h2 {
    margin: 0;
    /* width: 430px; */
    max-width: 100%;
    font-size: 30px;
}

.title-bar .bar {
    height: 2px;
    flex: auto;
    background-color: #ff914d;
}

#about-bridge .title-bar h2 {
    /* width: 630px; */
}

.links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 20px;
    margin-bottom: 70px;
}

.links-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-wrapper ul li {
    margin: 12px 0;
}

.links-wrapper ul li:last-of-type {
    margin: 12px 0 0;
}

.links-wrapper ul li a {
    color: #00357a;
    font-weight: 300;
    font-size: 13px;
}

@media screen and (max-width: 991px) {
    .links-wrapper ul li a {
        font-size: 12px;
    }
}

.links-wrapper ul li a:hover {
    color: #ff914d;
}

@media screen and (max-width: 991px) {
    .featured-searches-h2 {
        text-align: center;
    }

    .links-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
}

.neighborhoods-w {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media screen and (max-width: 991px) {
    .neighborhoods-w {
        grid-template-columns: 1fr;
    }
}

.neighborhoods-w a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding: 0;
    width: 100%;
    aspect-ratio: 2/1.2;
    background-color: #00357a;
}

.neighborhoods-w .title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    padding: 50px;
}

@media screen and (max-width: 991px) {
    .neighborhoods-w .title {
        width: 100%;
        text-align: center;        
        padding-top: 50px;
        padding-bottom: 0;
    }
}

.neighborhoods-w .title h2 {
    margin-bottom: 30px;
}

.neighborhoods-w a span {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, .4);
    padding: 10px 20px;
    opacity: 0.2;
    transition: opacity .3s ease-in-out;
}

.neighborhoods-w a:hover span {
    opacity: 1;
}

.neighborhoods-w a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
    /* opacity: 0.5; */
    background-blend-mode: multiply;
    transition: filter .3s ease-in-out, opacity .3s ease-in-out;
}

/* .neighborhoods-w a:hover img {
    filter: none;
    opacity: 1;
} */

@media screen and (max-width: 767px) {
    h2 {
        font-size: 1.25rem !important;
    }
}

#footer h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1rem !important;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0.83rem;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 10px;
}

.mt-5 {
    margin-top: 50px;
}

.mbs {
    margin-bottom: 10px;
}

.linked-h2 {
    /* color: #ff914d; */
    text-transform: uppercase;
}

.prop-list {
    margin-top: 50px;
    padding-bottom: 70px;
}

.more-w-p {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

@media screen and (max-width: 1200px) {

    #about,
    #steps,
    #contact-form-wrapper,
    #property {
        padding-top: 20px;
    }
}

.c-area {
    padding-top: 50px;
    padding-bottom: 100px;
}

#property {
    padding-top: 20px;
}

#property .photos {
    overflow: hidden;
    position: relative;
}

#property .photos img {
    display: block;
    background-color: #f5f5f5;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    #property .photos img {
        aspect-ratio: 16/13;
    }
}

#property .photos .swiper-button-prev,
#property .photos .swiper-button-next {
    z-index: 6;
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.btns {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.btns a,
.btns button {
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    color: #ff914d;
    cursor: pointer;
    transition: color .3s ease-in-out;
    font-size: 11px;
}

.btns a img,
.btns a svg,
.btns button img,
.btns button svg {
    display: block;
    height: 15px;
    width: auto;
    transition: transform .3s ease-in-out;
}

.btns a:hover,
.btns button:hover {
    color: #00357a;
}

.btns a:hover img,
.btns a:hover svg,
.btns button:hover img,
.btns button:hover svg {
    transform: scale(1.1);
}

#property .exclusive {
    color: #ff914d;
    margin: 0;
    text-transform: uppercase;
}

#property .title-price {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    justify-content: space-between;
}

#property .title-price h1 {
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
}

#property .values-1 {
    font-size: 36px;
    color: #ff914d;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
}

#property .values-2 {
    font-size: 38px;
    color: #00357a;
    margin: 10px 0 10px;
    font-weight: 500;
    white-space: nowrap;
}

#property .values-1 small,
#property .values-2 small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #00357a;
    display: block;
}

#property .address {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 13px;
}

#property .mobiliado {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: bold;
    color: #ff914d;
    text-transform: uppercase;
}

.property-info {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
    padding-bottom: 50px;
}

.property-info .form-col {
    position: relative;
}

.property-info .form-col .form-wrapper {
    position: sticky;
    top: 90px;
}

#property .numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

#property .numbers p {
    border-right: 1px solid #00357a;
    padding-right: 15px;
}

#property .numbers p.cod {
    border-right: none;
}

#property .numbers p span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 3px;
}

#property .numbers p svg {
    height: 25px;
    width: 30px;
    object-fit: contain;
}
#spc-nw .numbers {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

#spc-nw .numbers .text-center {
    height: 100%;
}

#spc-nw .numbers p {
    border-right: 1px solid #00357a;
    padding-right: 15px;
    line-height: 1rem;
    text-transform: uppercase;
}

#spc-nw .numbers .text-center:last-of-type p {
    border-right: none;
}

#spc-nw .numbers p.cod {
    border-right: none;
}

#spc-nw .numbers p span {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin: 3px;
}

#spc-nw .numbers p svg {
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

#property-form,
#special-property-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, .23);
    border-radius: 10px;
    padding: 20px;
}

#property-form p,
#special-property-form p {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
}

#property-form input,
#property-form textarea,
#special-property-form input,
#special-property-form textarea {
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

#property-form .btn.btn-orange,
#special-property-form .btn.btn-orange {
    width: 100%;
}

#property .iptu-cond {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;        
}

@media screen and (max-width: 767px) {
    #property .iptu-cond {
        gap: 15px;
    }

    .swiper-button-next {
        right: 0;
    }

    .swiper-button-prev {
        left: 0;
    }
}

#property .iptu-cond p {
    font-weight: 500;
}

.property-info h2,
#property .location h2,
.infra-location h2 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

#property .carac-list {
    padding: 0 0 0 1rem;
    column-count: 3;
}

#property .ctas {}

.btn.btn-prop {
    margin: 10px 0;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, .23);
    border-radius: 0;
    padding: 10px;
    font-family: inherit;
    font-weight: bold;
    font-size: 15px;
    color: #00357a;
    background-color: #fff;
    text-transform: uppercase;
    transition: color .3s ease-in-out, background-color .3s ease-in-out;
}

.btn.btn-prop:hover {
    color: #fff;
    background-color: #00357a;
}

.btn.btn-prop span {
    text-align: left;
    flex: auto;
    font-weight: 500;
}

#property .building-data {
    background-color: #f5f5f5;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

#property .building-data img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/12;
    object-fit: cover;
    border-radius: 10px;
}

#property .building-data h2 {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 25px;
    line-height: unset;
}

.map-marker {
    border: 2px solid #f58220;
    background-color: rgba(245, 130, 32, 0.66);
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

#property .location {
    padding-top: 50px;
}

#map {
    position: relative;
    margin-top: 20px;
    border-radius: 10px;
}

#map-overlay {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: flex-start;
}

.modal {
    margin-top: 20px;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal .modal-header {
    padding: 15px;
    border-bottom: 1px solid #ff914d;
}

.modal .modal-header h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px !important;
    color: #ff914d;
}

.modal .modal-body {
    overflow-y: scroll;
    height: 80vh;
    padding: 10px;
}

.modal button {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(100px, auto);
    grid-auto-flow: dense; 
    gap: 10px;
    width: 100%;
    padding: 10px;
  }

.gallery img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
  
  .gallery img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .tnums p {
    display: flex;
    align-items: center;
    gap: 5px;
  }  

.tnums p svg {
    display: block;
    width: 1.5rem !important;
    height: auto;
}

@media screen and (max-width: 767px) {
    .tnums p {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .tnums p svg { 
        width: 40px !important; 
    }

    #spc-nw .numbers p {
        font-size: 12px;
    }
  }

.sp-photos a {
    display: block;
}

.sp-photos img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    background-color: #f5f5f5;
    object-fit: cover;
}

.sp-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

@media screen and (min-width: 1200px) {
    .sp-photos {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }

    .sp-photos a:nth-of-type(1),
    .sp-photos a:nth-of-type(2) {
        grid-column: span 3;
    }

    .sp-photos a:nth-of-type(1) img,
    .sp-photos a:nth-of-type(2) img {
        aspect-ratio: 16/12;
    }
}

@media (min-width: 769px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery a:nth-child(4n+1) {
        grid-column: span 2; 
        grid-row: span 2;
      }
}

.infra-location {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

@media screen and (max-width: 991px) {
    .infra-location {
        grid-template-columns: 1fr;
    }

    #property .building-data {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    #property .building-data h2 {
        font-size: 20px !important;
    }

    .property-info {
        grid-template-columns: 1fr;
    }

    #property .title-price {
        flex-flow: column;
    }

    #property .title-price h1 {
        font-size: 22px;
    }

    #property .values-1 {
        font-size: 26px;
    }

    #property .values-2 {
        font-size: 22px;
        color: #00357a;
    }

    .property-info h2,
    #property .location h2,
    .infra-location h2 {
        font-size: 16px !important;
    }

    #property .numbers p {
        font-size: 1rem;
    }

    #property .numbers p svg {
        height: 25px;
        width: 25px;
    }

    #property .numbers {
        margin-top: 20px;
        margin-bottom: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    #property .numbers p {
        padding-right: 10px;
        border: none;
        margin: 0;
        text-align: left;
    }

    #property .numbers p span {
        justify-content: flex-start;
    }

    #property .carac-list {
        column-count: 2;
    }
}

#fab-whatsapp-a {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 99;    
}

#fab-whatsapp-a img {
    display: block;
    width: 60px;
    height: auto;
    transition: transform .3s ease-in-out;
}

#fab-whatsapp-a:hover img {
    transform: scale(1.1);
}

#location-modal .selection-wrapper .body,
#features-modal .selection-wrapper .body {
    height: calc(100% - 140px) !important;
}

.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.p-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.plist-f {
    padding: 15px 20px 10px;
}

.spth1 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.sp-h2 {
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 10px;
}

#main-search-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media screen and (max-width: 991px) {
    #main-search-wrapper {
        grid-template-columns: 1fr;
    }

    #btn-toggle-filter-desktop {
        display: none !important;
    }
}

@media screen and (min-width: 992px) {
    .filter-col {        
        position: fixed;
        top: 0;
        z-index: 999;
        left: -100%;
        height: 100vh;
        width: 100vw;
        /* overflow: scroll;         */
        transition: left .3s ease-in-out;
    }

    .filter-col .search-bar {
        height: 100vh;
        overflow: scroll;
        width: 370px;
        box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.5);
        border-radius: 0;
        padding-bottom: 60px;
        position: relative;
    }

    .filter-col.visible {
        left: 0;
    }
    
    .filter-col .btnsr {
        opacity: 0;
        transition: opacity .6s ease-in-out;
    }

    .filter-col.visible .btnsr {
        background-color: #f5f5f5;
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 15px;
        width: 370px;
        opacity: 1;
    }

    #btn-toggle-filter-desktop {
        
    }
}

.results-tnb {
    color: #00357a;
    font-style: italic;
    text-decoration: underline;
    text-transform: none;
}

.search-bar {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .23);    
}

@media screen and (max-width: 991px) {
    .search-bar {
        display: none;
    }
}

.search-bar.visible {
    display: block;
}
    

.search-bar .btn-white {
    width: 100%;
    text-align: left;
    padding: 7px 10px;
}

.search-bar .options {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.search-bar .btn-orange.bold.search {
    padding: 10px;
    width: 100%;
    font-size: 16px;
    border-radius: 0;
}

.search-bar .btn.clear-filters {
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    color: #00357a;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    background-color: #fff;
    border: 1px solid #00357a;
    border-radius: 0;
    transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
}

.search-bar .btn.clear-filters:hover {
    background-color: #d1d1d1;
    color: #00357a;
    border-color: #00357a;
}

.search-bar select {
    padding: 10px;
    -webkit-appearance: none;
    font-family: inherit;
    background-color: #fff;
    color: #00357a;
    border-color: #00357a;
}

.search-bar select.option-selected {   
    background-color: #ff914d;
    color: #fff;
    border-color: #ff914d;
}

#search-location.options-selected, #search-features.options-selected {
    font-weight: 400;
}

select.option-selected {   
    background-color: #ff914d;
    color: #fff;
    border-color: #ff914d;
}

.si-result.si-selection {
    font-weight: 400;
}

.sb-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.sb-f {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-bar input {
    flex: auto;
    font-family: inherit;
    padding: 6px 10px;
    border-radius: 0;
    border: 1px solid #00357a;
    color: #00357a;
}

p.lb {
    margin: 0 0 4px;
    font-size: 16px;
    text-transform: uppercase;
}

p.lb.bold {
    font-weight: 500;
    color: #ff914d;
    text-decoration: underline;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.label-filter {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .label-filter input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #00357a;
    background-color: #fff;
  }
  
  .label-filter:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  .label-filter input:checked ~ .checkmark {
    background-color: #ff914d;
  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .label-filter input:checked ~ .checkmark:after {
    display: block;
  }
  
  .label-filter .checkmark:after {
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


.sb-f .btn.btn-orange.bold {
    padding: 5px;
}

.f-btn {
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #00357a;
    color: #ff914d;
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
    padding: 10px;
}

.f-btn.selected {
    background-color: #ff914d;
    color: #fff;
}

.f-btn:hover {
    background-color: #00357a;
    color: #fff;
}

img.mfp-img {
    padding: 0 !important;
}

.mfp-bottom-bar {
    margin-top: -18px !important;
    left: 9px !important; 
}

.mfp-figure small {
    opacity: 0 !important;
    color: #fff !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, .73);
}

.mfp-counter {
    color: #fff !important;
    right: 14px !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, .73);
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    right: 5px !important;
    color: #fff !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, .73);
}

.prop-desc, .carac-list {
    font-size: 14px;
}

body {
    padding-top: 140px;
}

.tng {
    padding: 25px;
}

.view-map {
    color: #ff914d;
    font-family: inherit;
    background-color: transparent;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.view-map i {
    padding: 0;
}

.h2-search-t {
    line-height: 2rem;
}

@media screen and (max-width: 1200px) {
    body {
        padding-top: 65px;
    }
}

@media screen and (max-width: 767px) {
    .h2-search-t {
        line-height: 30px;
    }

    #about p {
        font-size: 14px;
    }

    #walk-score {
        font-size: 14px;
    }

    .tng {
        padding: 0 25px 25px;
    }

}


