html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #121212 #e6e6e6;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e6e6e6;
}

::-webkit-scrollbar-thumb {
    background: #121212;
    border-radius: 10px;
}

.m-modal-dialog {
    display:none; 
    position:fixed; 
    top:0; left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.6);
    z-index: 99999999999999;
}

.m-modal-dialog .m-modal-body {
    background: #ffffff;
    padding: 20px;
    max-width: 400px;
    margin: 20% auto;
    text-align: center;
    color: #121212;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 4px;
}

.m-modal-dialog .m-modal-body .m-modal-message {
    padding-bottom: 1em;
    display: flex;
    align-items: center;
}

.m-modal-dialog .m-modal-body .m-modal-message i.success {
    color: #7cc17c;
    font-size: 2em;
    margin-right: 0.5em;
}

.m-modal-dialog .m-modal-body .m-modal-message i.error {
    color: red;
    font-size: 2em;
    margin-right: 0.5em;
}

.m-modal-dialog .m-modal-body button {
    display: inline-block;
    background: black;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.3em 1em;
}

.swiper {
    width: 100%;
    padding: 2em 0 3em 0 !important;
}

.testimonials .swiper {
    padding: 20px 0 !important;
}

.property-card {
    overflow: hidden;
    max-width: 500px;
}

.property-card img {
    width: 100%;
    object-fit: cover;
}

.property-card h3 {
    margin: 11px 0 0 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.property-card p {
    margin: 0;
    font-size: 12px;
    color: gray;
    letter-spacing: 2px;
}

.swiper-slide {
    display: flex !important;
    justify-content: space-around;
}

.swiper-pagination-bullet-active {
    background-color: #9c8066;
}

.swiper-button-next, .swiper-button-prev {
    color: #121212;
}

header > nav {
    padding: 1em 0 !important;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

#navbar.scrolled {
    background-color: black;
}

header > nav .navbar-brand {
    height: 110px;
    margin-left: 5%;
}

header > nav .navbar-brand img {
    height: 100%;
    filter: invert(100%) brightness(100%);
}

header .navbar-nav {
    margin: 0 1em 0 auto;
}

header .navbar-nav .nav-link, header .navbar-nav .nav-link.active {
    text-transform: uppercase;
    color: white;
    margin: 0 1em;
    font-weight: 500;
    letter-spacing: 2px;
}

a.nav-link {
    position: relative;
    color: #d3d3d3;
}

a.nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #d3d3d3;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}

a.nav-link:hover, a.nav-link.active:hover {
    color: #d3d3d3;
}

a.nav-link:hover:hover::after {
  transform: scaleX(1);
}

header .language {
    position: absolute;
    right: 4em;
    top: 2em;
    color: #f5ece2;
    font-size: 0.8em;
    font-weight: bold;
}

header button.navbar-toggler, header button.navbar-toggler:focus {
    box-shadow: none;
}

a.hyperlink {
    text-decoration: none;
    color: #f5ece2;
}

a.hyperlink:hover {
    text-decoration: underline;
}

h1.title, h2.title {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 4px;
}

.vertical-separator {
    background: black;
    width: 3px;
    height: 100%;
    margin: 2em;
    border-radius: 10px;
}

.sn-icon {
    width: 2em;
}

.icon-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-text-container .icon {
    padding-right: 0.6em;
}

.align-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-container {
    width: 100%;
    max-width: 1200px;
}

.hero {
    position:relative;
    height:85vh;
    overflow:hidden;
}

.hero video {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
}

.hero-overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.2);
}

.about {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about .text-column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about img {
    max-width: 50%;
}

.about img.image-md {
    display: block;
}

.about img.image-sm {
    display: none;
}

.about-text {
    text-align: center;
    padding: 0 2em;
    max-width: 750px;
}

.home-seller {
    background:url("/images/seller_bg.jpg") center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    padding: 3em 2em 2em 2em;
    background-color: black;
    color: #c3c3c3;
}

.home-seller p {
    max-width: 27em;
    margin: 1em auto;
}


.home-seller form {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
}

.home-seller form.active {
    height: 320px;
    padding: 1em 0 0 0;
}

#r-lan-english, #r-lan-spanish {
    margin-right: 0.5em;
    accent-color: #92766d;
    width: 1em;
    height: 1em;
}

#r-lan-spanish {
    margin-left: 2em;
}

#r-lan-english + label, #r-lan-spanish + label {
    cursor: pointer;
}

.home-seller form .fields {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.home-seller form .col {
    padding: 1em 2em;
}

.flex-center {
    display: flex;
    align-items: center;
}

.home-seller form label {
    text-transform: uppercase;
}

.home-seller form input {
    color: #c3c3c3;
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #c3c3c3;
}

.home-seller form input:focus {
    color: #c3c3c3;
    background-color: transparent;
    border-color: #535353;
    box-shadow: none;
}

.home-seller form button, .home-seller .seller-tabs button {
    margin: 1.5em;
    padding: 12px 25px;
    background: transparent;
    color: #ffffff6b;
    text-transform: uppercase;
    border: 2px solid #ffffff6b;
    font-weight: 700;
    width: 300px;
}

.home-seller .seller-tabs button {
    width: 300px;
}

.home-seller form button:hover, .home-seller .seller-tabs button:hover, .home-seller .seller-tabs button.active:hover {
    background-color: color-mix(in srgb, #ffffff6b 80%, #000000de);
    color: white;
}

.home-seller .seller-tabs button.active {
    background-color: color-mix(in srgb, #a7a7a76b 80%, #efefef00);
    color: white;
}

.button {
    display:inline-block;
    padding:10px 20px;
    background:black;
    color:white;
    text-decoration:none;
    text-transform: uppercase;
    margin-top:20px;
    font-weight: 700;
}

.button:hover {
    background-color: color-mix(in srgb, black 80%, white);
    color: white;
}

.work {
    background:url("/images/work_bg.jpg") center/cover no-repeat;
    color:white;
    text-align:center;
    padding: 100px 0;
}

.work button {
    margin: 1.5em;
    padding: 12px 25px;
    background: transparent;
    color: #ffffff6b;
    text-transform: uppercase;
    border: 2px solid #ffffff6b;
    font-weight: 700;
}

.work button:hover {
    background-color: color-mix(in srgb, #ffffff6b 80%, rgb(83, 83, 83));
    color: white;
}

.sold, .testimonials {
    text-align:center;
    padding: 42px 0;
    background-color: #f5ece2;
}

.sold-grid {
    display:flex;
    gap:40px;
    justify-content:center;
    margin-top:40px;
}

.sold-item img {
    width:350px;
}

.testimonials .title {
    color: #92766d;
}

.testimonials .testimonial-card {
    max-width: 700px;
    width: 90%;
    display: flex;
    flex-direction: column;
    height: fit-content;
    justify-content: center;
}

.testimonials .testimonial-card .author {
    font-weight: 600;
}

.testimonials .swiper-button-next, .testimonials .swiper-button-prev {
    display: none;
}

.contact {
    text-align:center;
    background:#f4f4f4;
    padding: 2em 1em 1.5em 1em;

    background-image: url(/images/isotipo.svg);
    background-repeat: no-repeat;
    background-position-x: -87px;
    background-position-y: -16px;
    display: flex;
    justify-content: space-around;
}

.contact h2 {
    color:  #92766d;
}

.contact .contact-entries {
    display: flex;
    justify-content: center;
    height: 6em;
    align-items: center;
    align-content: center
}

.contact .contact-entries p {
    margin: 0;
    color: #121212;
    font-weight: 500;
}

.contact .icon .contact-img {
    width: 20px;
    height: 29px;
}

.contact .vertical-separator {
    background: #d1c8be;
    height: 3.5em;
}

.contact .license {
    display: flex;
    align-items: center;
}

.contact .license p {
    margin: 0;
    text-align: left;
    margin-left: 1em;
    font-size: 0.6em;
    font-weight: 600;
}

.contact .social-networks {
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-content: center;
    padding: 1.5em 0 0.5em 0;
}

.contact .social-networks img.realtor {
    width: 80px;
}

.contact .icon .location {
    width: 1.5em;
    height: auto;
}

footer {
    text-align:center;
    background: #121212;
    color: #f5ece2;
    padding:20px;
}

/* =========================
TABLET
========================= */

@media (max-width: 1480px) {
    .hero {
        height:80vh;
    }

    .about img {
        max-width: 44%;
    }
}

@media (max-width: 1390px) {
    .hero {
        height:75vh;
    }

    .property-card span.break {
        display: block;
    }

    .property-card span.pipe {
        display: none;
    }
}

@media (max-width: 1295px) {
    .hero {
        height:70vh;
    }
}

@media (max-width: 1230px) {
    header .navbar-nav .nav-link, header .navbar-nav .nav-link.active {
        font-size: 0.85em;
    }
}

@media (max-width: 1205px) {
    .hero {
        height:60vh;
    }

    header .navbar-nav {
        font-size: 0.9em;
    }

    header > nav .navbar-brand {
        height: 85px;
        margin-left: 5%;
    }
}

@media (max-width: 1024px){
    header {
        padding: 0;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }

    .section{
        padding:70px 40px;
    }

    .hero {
        height:40vh;
    }

    /* ABOUT */

    .about {
        gap:40px;
        padding: 0 40px 0 0;
    }

    .about img.image-md {
        display: none;
    }

    .about img.image-sm {
        display: block;
    }

    /* SOLD */
    .sold-grid {
        gap:30px;
    }

}

@media (max-width: 950px) {
    .hero {
        height:45vh;
    }

    .home-seller form .col {
        width: 100%;
    }

    .home-seller form.active {
        height: 455px;
    }

    .home-seller form .fields {
        text-align: left;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    header .language {
        right: 1.5em;
        top: 1em;
    }
}

@media (max-width: 790px) {
    .hero {
        height:40vh;
    }
}


/* =========================
MOBILE
========================= */

@media (max-width: 768px) {
    nav{
        display:none;
    }

    .logo {
        font-size:16px;
    }

    /* HERO */

    .hero {
        height:70vh;
    }

    /* SECTIONS */
    .section {
        padding:60px 25px;
    }

    /* ABOUT */
    .about {
        text-align:center;
        padding: 0 20px 0 0;
    }

    .about img {
        width:100%;
        max-width:380px;
    }

    .about-text {
        max-width:100%;
    }

    /* WORK SECTION */

    .work {
        padding:90px 20px;
    }

    .work button {
        width:80%;
        max-width:260px;
    }

    /* SOLD */

    .sold-grid {
        flex-direction:column;
        align-items:center;
    }

    .sold-item {
        width:100%;
        max-width:420px;
    }

    /* CONTACT */
    .contact{
        padding:50px 20px;
    }

}

@media (max-width: 727px) {
    .about {
        flex-direction: column;
        padding: 0;
    }

    .about img {
        width: 100%;
        max-width: 100%;
    }

    .about .text-column {
        padding: 0px 40px 40px 40px;
    }

    .about img.image-md {
        display: block;
    }

    .about img.image-sm {
        display: none;
    }
}

@media (max-width: 550px) {
    .contact {
        padding: 30px 0 25px 0 !important;
    }

    .contact-entries {
        display: block !important;
        width: fit-content;
        margin: 0 auto;
    }

    .contact-entries .vertical-separator {
        display: none;
    }

    .contact-entries .icon-text-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .contact .social-networks {
        flex-direction: column;
    }

    .contact .license {
        padding-bottom: 2em;
    }
}



/* =========================
SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .hero video {
        object-fit: cover;
    }

    h1.title, h2.title {
        font-size: 1.8rem !important;
    }

    .hero {
        height:30vh;
        margin-top: -12px;
    }

    header #navbar.scrolled {
        height: 97px;
        background-color: #121212;
    }

    header > nav .navbar-brand {
        height: 65px;
        margin-left: 3px;
    }

    header .container-fluid {
        --bs-gutter-x: none;
    }

    header > nav .navbar-brand img {
        position: absolute;
        height: 65px;
        top: 17px;
        left: 24px;
    }

    header .navbar-collapse.show {
        background-color: #1212128a;
    }

    header button.navbar-toggler {
        margin-right: 0.6em;
    }

    header .language {
        right: 1.5em;
        top: 1em;
    }

    header nav {
        padding: 2em 0 !important;
    }

    .section {
        padding:50px 20px;
    }

    .about {
        padding: 0;
    }

    footer span.separator {
        display: none;
    }

    footer a {
        display: block;
    }

}