:root {
    --title-font: "Literata", serif;
    --trans: .3s cubic-bezier(.4,0,.2,1);
    --body-font: "Mundial", sans-serif;
}

/*** GENERIC CSS ***/
body {
    font-size: 18px;
    font-family: 'Mundial', sans-serif;
    font-weight: 200;
    color: #000;
    overflow-x: hidden;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #2A3E78;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 400;
    font-family: var(--title-font);
    text-transform: uppercase;
}

h1 {
    font-size: 54px;
    line-height: 1.5;
}

h2 {
    font-size: 48px;
    line-height: 1.4;
}

h3 {
    font-size: 35px;
    line-height: 1.5;
}

h4 {
    font-size: 27px;
    line-height: 1.5;
}

h5 {
    font-size: 24px;
    line-height: 1.5;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.visible-xs {
    display: none;
}

.btn-default {
    background: none;
    padding: 12px 35px;
    color: #000;
    border: 1px solid #000;
    border-radius: 0px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    position: relative;
    font-size: 15px;
    transition: var(--trans);
    font-weight: 300;
}

.btn-default:before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0px;
    width: 87px;
    height: 0.7px;
    background: #000;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.btn-default:hover {
    color: #fff;
    background: #000;
}

.btn-default:hover:before {
    width: 100%;
}

.btn-default.btn-white {
    color: #fff;
    border-color: #fff;
}

.btn-default.btn-white:before {
    background: #fff;
}

.btn-default.btn-white:hover {
    color: #000;
    background: #fff;
}

.underlined {
    position: relative;
    display: inline-block;
}

.underlined::after {
    content: '';
    width: 100px;
    background: #134db8;
    height: 4px;
    position: absolute;
    top: 100%;
    left: 0%;
}

ul.list li {
    margin: 0px 0px 15px 0px;
}

/*** PRELOADER ***/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
}

.preloader .lds-ripple {
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
    position: absolute;
    border: 2px solid #134db8;
    opacity: 1;
    border-radius: 0;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

.img-rounded {
    border-radius: 15px;
}

.hover-animate {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hover-animate:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*** SECTION TITLE ***/

.section-title h6 {
    color: #000;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: var(--title-font);
    font-size: 30px;
}

.section-title h2 {
    color: #000;
    font-size: 55px;
    line-height: 1;
}

.section-title.white h2, .section-title.white h6 {
    color: #fff;
}

/*** MAIN VIDEO ***/
/*.home--intro {
    position: absolute;
    top: 0%;
    left: 0;
    width: 92%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}*/

.home--intro {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    display: flex;
    margin-top: 80px;
}

.home--intro::before {
    content: '';
    background-image: url(../img/video-glow.png);
    background-position: top left;
    background-size: 65%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 9;
    position: absolute;
    top: -130px;
    left: 0;
}

/*** HEADER ***/
.header {
    position: sticky;
    z-index: 99;
    left: 0;
    top: 0;
    padding: 15px 0px;
    background: #fff;
}

.header.scrolled {
    background: #0c0a09;
}

.header .logo img {
    width: 270px;
    transition: .3s cubic-bezier(.4,0,.2,1);
    filter: brightness(0);
}

.header .navbar-nav .nav-item {
    margin: 0px 20px;
}

.header .navbar-brand {
    bottom: -40px;
}

.header .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

.header .navbar-nav .nav-link {
    color: #000;
    text-transform: uppercase;
    padding: 0px;
    font-weight: 300;
    font-size: 15px;
    transition: var(--trans);
}

.header .navbar-nav .nav-link:hover {
    opacity: 0.5;
}

.header .navbar-nav .nav-item.active .nav-link {
    border-bottom: 1px solid #000;
}

.header.scrolled .navbar-nav .nav-item.active .nav-link {
    border-color: #fff;
}

.header.scrolled .navbar-nav .nav-link {
    color: #fff;
}

/*** HERO SPACE ***/
.hero-space {
    padding-top: 90vh;
}

/*** ABOUT ***/
.about {
    position: relative;
    z-index: 2;
    background: #fff;
}

.about .img-about {
    text-align: center;
    width: 100%;
    margin-top: -390px;
    position: relative;
    z-index: 3;
}

.about .img-about img {
    width: 100%;
}

.about .bg-white {
    padding: 100px 50px 50px 50px;
    position: relative;
    z-index: 3;
    background-color: transparent !important;
}

.contact-links {
    margin: 30px 0px 0px 0px;
    padding: 0px;
    list-style: none;
}

.contact-links li {
    display: inline-block;
    margin: 0px 5px;
}

.contact-links li:first-child {
    margin-left: 0px;
}

.contact-links li a {
    border: 1px solid #000;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
}

.contact-links li:hover a {
    background: #000;
    color: #fff;
}

.sell-with-me {
    overflow: hidden;
}

.sell-with-me .img-sell {
    object-fit: cover;
}

.sell-with-me .bg-black {
    padding: 100px 125px 250px 50px;
    height: 100%;
}

/*** BUY WITH ME ***/
.buy-with-me {
    padding: 0px 0px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.buy-with-me .bg-white {
    padding: 100px 50px 250px 125px;
    height: 100%;
}

.buy-with-me::before {
    content: '';
    width: 8%;
    position: absolute;
    top: -100px;
    left: 0;
    background: #fff;
    height: calc(100% + 100px);
}

/*** AGENTS ***/
.agents {
    padding: 0px 0px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.agents .bg-black {
    padding: 100px 125px 250px 50px;
    height: 100%;
}

/*** PROPERTIEs ***/
.properties {
    padding: 0px 0px;
    position: relative;
    z-index: 2;
}

.properties .bg-black {
    padding: 150px 50px 150px 0px;
    height: 100%;
}


.properties .item figure {
    height: 500px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

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

.properties .details h6 {
    color: #fff;
}

.properties .details {
    color: #fff;
}

/*** INSTAGRAM ***/
.instagram {
    background: #fff;
    padding: 75px 0px;
}

.instagram .insta-grid .cols {
    height: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    border: 5px solid #fff;
    overflow: hidden;
}

.instagram.tiktok .insta-grid .cols {
    height: auto;
    min-height: 300px;
}

.instagram .insta-grid h6 {
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.instagram .insta-grid h2 {
    color: #fff;
    font-weight: 600;
    line-height: 1;
    font-size: 36px;
}

.instagram .insta-grid .cols img {
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.instagram .insta-grid .cols:hover img {
    transform: scale(1.15);
}

/*** TEAM ***/
.team {
    background: url(../img/work-with-us-team.jpg) 50% 50% fixed no-repeat;
    background-size: cover;
    padding: 150px 0px;
    position: relative;
    z-index: 2;
}

.team .bg-black {
    background: rgba(0, 0, 0, 0.75) !important;
    padding: 50px;
}

.team .bg-black h2 {
    color: #fff;
    line-height: 1;
}

.team .bg-black h6 {
    color: #fff;
    line-height: 1;
    font-weight: 300;
}

.team .bg-black p {
    color: #fff;
    font-size: 20px;
    letter-spacing: 3px;
}

/*** FOOTER ***/
.footer {
    background: #0c0a09;
    padding: 60px 0px;
    position: relative;
    z-index: 10;
}

.footer h6 {
    color: #fff;
    font-weight: 600;
    margin: 30px 0px 0px 0px;
}

.footer .contact-links li a {
    color: #fff;
    border-color: #fff;
}

.footer .contact-links li:hover a {
    color: #000;
    background: #fff;
}

.footer p, .footer a {
    color: #fff;
}

.footer a:hover {
    font-weight: bold;
}

.footer h5 {
    color: #fff;
    font-weight: 400;
    text-transform: none;
    font-size: 32px;
    line-height: 1.2;
}

.footer .copyrights {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    padding-top: 30px;
}

.footer .copyrights p {
    color: #fff;
    margin: 0px;
}

.footer .logo img {
    filter: brightness(0) invert(1);
}

/*** ***/
.background {
    background-image: url(https://images.unsplash.com/photo-1536264911542-668b0180d5a1?ixlib=rb-0.3.5&amp;q=85&amp;fm=jpg&amp;crop=entropy&amp;cs=srgb&amp;ixid=eyJhcHBfaWQiOjE0NTg5fQ&amp;s=a9a32743f06349efc39aeae90f047e9f);
    background-size: cover;
    background-position: 50% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    height: 200vh;
    font-weight: bold;
    font-size: 50rem;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
}

.background:before {
}

.background .video {

}


/**/
.wrapper {
    position: absolute;
    /* width: 100%; */
    /* height: 100vh; */
    margin: 0 auto;
    z-index: 999;
    top: 13%;
    left: 3%;
    font-size: 23rem;
    /* transform: translate(-20%, 20%); */
    /* margin-left: 0%; */
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.wrapper video {
    width: 120%;
    height: 175vh;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
}

.wrapper .clipped-video {
    -webkit-clip-path: url(#text-overlay);
    clip-path: url(#text-overlay);
}

.home--intro video {
    width: 95%;
    height: 95vh;
    object-fit: cover;
    z-index: -1;
}

.bigger-container {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
}

.spacer-1 {
    height: 120px;
    background: #fff;
}

.sell-with-me .section-title, .buy-with-me .section-title, .agents .section-title {
    height: 320px;
    margin-bottom: 82px;
    width: 70px;
}

.sell-with-me .section-title h2, .agents .section-title h2 {
    transform-origin: top left;
    transform: rotate(90deg) translateY(-100%);
    position: absolute;
}

.sell-with-me .inner, .agents .inner {
    padding-left: 70px;
}

.section-title::before {
    position: absolute;
    height: 3px;
    background: #dddddd;
    bottom: 0;
}

.sell-with-me .section-title::before, .agents .section-title::before {
    content: '';
    left: -170px;
    width: 409px;
    bottom: -30px;
}

.buy-with-me .section-title {
    margin-left: auto;
}

.buy-with-me .section-title h2 {
    transform-origin: top left;
    transform: rotate(90deg) translateY(-100%);
    position: absolute;
    top: 0;
    left: 0;
}

.buy-with-me .section-title::before {
    content: '';
    right: -331px;
    width: 592px;
    bottom: -33px;
}

.buy-with-me .inner {
    padding-right: 70px;
}

.properties, .home--socials {
    background: url('https://content.r9cdn.net/rimg/dimg/0b/56/99204762-city-6966-162975ff04c.jpg?width=1366&height=768&xhint=1988&yhint=1125&crop=true');
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.properties:before, .home--socials::before {
    content: '';
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0px;
    background: #000000d9;
}

/*.about .section-title::before, .properties .section-title::before, .home--sectors .section-title::before, .home--contact .section-title::before {
    content: '';
    left: 0;
    width: 400px;
    bottom: 0;
}*/

.about .section-title, .properties .section-title, .home--sectors .section-title, .home--contact .section-title, .home--socials .section-title {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

#hp-main {
    position: relative;
    z-index: 3;
}

#hp-main .img {
    position: relative;
    height: 100%;
}

#hp-main .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#hp-main .img:before, #hp-main .img:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: #fff;
    z-index: -1;
}

#hp-main .img:after {
    left: 100%;
}

#hp-main .img:before {
    right: 100%;
}

.home--intro .socials {
    width: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.home--intro .socials ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home--intro .socials ul li {
    display: block;
    margin-bottom: 10px;
}


.home--intro .socials ul li a {
    border: 1px solid #000;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    transition: 0.4s all ease;
}

.home--intro .socials ul li a:hover {
    background: #000;
    color: #fff;
}

.home--sectors {
    background: #fff;
    padding: 100px 0;
}

.home--sectors .inner a {
    color: #000;
}

.home--sectors .inner a:hover img {
    transform: scale(1.1);
}

.home--sectors .inner p {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
}

.home--sectors .inner .img {
    overflow: hidden;
}

#hp-main .home--sectors .inner .img img {
    height: 450px;
    transition: 0.7s all ease;
}

.about:before, .home--sectors::before {
    content: 'LONDONO';
    position: absolute;
    bottom: 0;
    font-size: 365px;
    color: gray;
    opacity: 0.2;
    font-weight: 700;
    line-height: 0.8;
    width: 100%;
    text-align: center;
}

.single-prop .content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 15px 20px 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
    transform: translateY(45px);
    transition: 0.4s all ease;
}

.single-prop:hover .content {
    transform: translateY(0);
}

.single-prop:hover .view {
    opacity: 1;
}

.single-prop:hover .address, .single-prop:hover .price {
    opacity: 0;
}

.single-prop:hover .specs {
    opacity: 1;
}

.single-prop .prop-img {
    position: relative;
}

.single-prop .prop-img::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.single-prop .prop-img::before {
    background-image: url("../img/monogram.png");
    background-repeat: no-repeat;
    content: "";
    background-size: contain;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s all ease;
    width: 130px;
    height: 160px;
    z-index: 1;
    opacity: 0;
}

.single-prop:hover .prop-img::before {
    opacity: 1;
}

.single-prop .prop-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.single-prop .specs {
    opacity: 0;
}

.single-prop .specs ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-prop .specs ul li {
    display: inline-block;
    padding: 0 15px;
    border-left: 1px solid #fff;
}

.single-prop .view {
    width: 158px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: .2em;
    text-align: center;
    text-transform: uppercase;
    margin-top: 24px;
    opacity: 0;
    transition: .4s cubic-bezier(.4,0,.2,1);
}

.single-prop .price {
    font-size: 24px;
    color: #fff;
    line-height: 1;
    text-align: right;
    font-family: var(--body-font);
}

.home--contact {
    background: #fff url(../img/montreal-bg.jpg) top right no-repeat;
    background-size: auto 100%;
    position: relative;
    padding-top: 140px;
}

.home--contact .bigger-container {
    position: relative;
    z-index:9;
}

.home--contact::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background:linear-gradient(to right, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0.75) 100%);
}

.home--contact .form-box {
    padding: 0px 0px 90px 0px;
}

.form-box .form-control {
    height:50px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    border:0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 0;
    outline: none;
    border-radius: 0px;
    margin-bottom:30px;
}

.form-box .form-control::placeholder {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #454545;
    font-size: 13px;
}

.form-box .form-control:focus {
    outline: none;
    box-shadow: none;
}

.home--contact .form-box textarea.form-control {
    height: 100px !important;
    resize: none;
}

.single-prop .specs ul li:first-child {
    border-left: 0;
    padding-left: 0;
}

.single-prop .specs ul li:last-child {
    border-right: 0;
    padding-right: 0;
}

.padd-xl {
    padding: 100px 0;
}

.home--socials .container-fluid {
    position: relative;
    z-index: 3;
}

.home--socials .box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.header .navbar-brand {
    position: relative;
    transition: .3s cubic-bezier(.4,0,.2,1);
}

.header.scrolled .navbar-brand {
    bottom: 0;
    left: 0;
}

.header.scrolled .logo img {
    width: 140px;
    filter: brightness(0) invert(1);
}

.header .bigger-container {
    max-width: 90%;
}

.footer .logo img {
    width: 200px;
}

/*** BUYERS ***/
.p-relative {
    position: relative;
}

.buy-sell .feat-img {
    position: absolute;
    top:105%;
    left: -15%;
    width: 432px;
    height: 292px;
}

.guide .feat-img {
    position: absolute;
    width: 432px;
    height:300px;
    top: -10%;
    right: 5%;
}

.guide .feat-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

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

.team-member figure {
    background: #000;
    padding: 15px 15px 0px 15px;
    overflow: hidden;
    position: relative;
}

.team-member figure img {
    object-fit: cover;
    width: 100%;
    height: 600px;
    object-position: top;
}

.team-member h4 {
    color: #000;
    margin-bottom: 0px;
}

.team-member p {    
    margin-bottom: 30px;
}

.team-member .btn-default {
    position: absolute;
    bottom:30px;
    left: 15%;
    width: 70%;
    color: #000;
    background: #fff;
    opacity: 0;
}

.team-member:hover .btn-default {
    opacity: 1;
}

.z-9 {
    position: relative;
    z-index: 9;
}

.properties.inner-page {
    background: #fff;
}

.properties.inner-page::before {
    display: none;
}

/*** COMMUNITIES DETAILS ***/
.lavalcontent {
	overflow: hidden;
	position: relative;
	background:#f2f2f2;
}

.lavalcontent .bgwhite {
	background: #fff;
	padding: 20px 20px;
}

.lavalcontent .nav-tabs {
	border: none !important;
	justify-content: center;
	margin-bottom: 50px;
}

.lavalcontent .nav-tabs a {
	border: none;
}

.lavalcontent .nav-tabs li {
	margin: 0px 10px;
}

.lavalcontent .nav-tabs li button {
	display: inline-block;
	background: #000;
	color: #fff;
	line-height: 55px;
	padding: 0px 25px;
	font-size: 16px;
	border-radius: 4px;
	min-width: 180px;
	text-align: center;
	text-transform: capitalize;
}

.lavalcontent .nav-tabs li button.active, .lavalcontent .nav-tabs li:hover button {
	color: #fff;
	background-color: #2A3E79;
}

.lavalcontent .table {
	background: #fff;
	padding: 40px;
}

.lavalcontent .table tr:first-child td {
	border: none;
}

.lavalcontent .table tr td {
	font-size: 15px;
	color:#000;
	padding: 20px 20px;
}

.lavalcontent h3 {
	color: #676767;
	position: relative;
	font-size: 35px;
	line-height: 1.1;
	margin-bottom: 17px;
	letter-spacing: 1px;
}

.lavalcontent .tp {
	margin-bottom: 40px;
}

.lavalcontent .bgs {
	background: #fff;
	padding: 40px 40px;
	border-radius: 15px;
}

.lavalcontent .bgs h3 {
	font-size: 22px;
}

.lavalcontent #tabi-3 .bgs h3 {
	font-size: 18px;
	padding: 0;
	color: #000;
	font-weight: 600;
}

.lavalcontent #tabi-3 .bgs ul {
	padding-left: 15px;
}

.lavalcontent .section-title {
	display: inline-block;
	text-align: center;
}

.lavalcontent .pop_graphs img {
	width:100%;
}

.lavalcontent .listingbox .text {
	text-align:center;
}
@media screen and (max-width: 1024px) {
    .bigger-container {
        max-width: 95%;
    }
}

@media only screen and (max-width: 767px) {
    .flush-xs {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar-toggler {
        line-height: 1;
        padding: 0;
        border-radius: 0;
    }

    .navbar-toggler.menu-icon {
        width: 40px;
        padding: 0;
        cursor: pointer;
        position: relative;
        border: 0px;
    }

    .navbar-toggler.menu-icon span {
        width: 100%;
        height: 4px;
        display: block;
        background-color: #005DBA;
        margin: 6px 0;
        -webkit-transition: .5s;
        transition: .5s;
    }

    .navbar-toggler.menu-icon.active span {
        position: absolute;
        top: calc(50% - 8px);
    }

    .navbar-toggler.menu-icon.active span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .navbar-toggler.menu-icon.active span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .navbar-toggler.menu-icon.active span:nth-child(2) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        display: none;
    }

    .visible-xs {
        display: inline-block;
    }

    .xs-100 {
        width: 100%;
    }

    .navbar-light .navbar-brand {
        width: 75%;
    }

    .navbar-light .navbar-brand img {
        max-height: 100px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    h5 {
        font-size: 18px;
    }

    .underlined::after {
        left: 50%;
        margin-left: -35px;
        width: 70px;
    }

    .row-eq-height {
        display: inline-block;
    }

    .cta.secondary .card {
        margin-bottom: 30px;
    }

    .about .btn-default {
        margin-bottom: 30px;
    }

    .values h3, .newsletter h3 {
        text-align: center;
        width: 100%;
    }

}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .nav-link, .navbar-expand-md .navbar-nav .nav-link, .header a {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header .nav-item {
        margin: 0px 5px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    .newsletter .btn {
        margin-top: 30px;
    }


}
@font-face {
    font-family: "Mundial";
    src: local("Mundial"),
    url("../fonts/MundialRegular.otf") format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Mundial";
    src: local("Mundial"),
    url("../fonts/MundialLight.otf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Mundial";
    src: local("Mundial"),
    url("../fonts/MundialThin.otf") format("opentype");
    font-weight: 200;
}

html {
    scroll-behavior: smooth;
}


.padd-lg {
    padding: 80px 0;
}

.intro .inner {
    padding: 60px 80px;
}

.section-title h1 {
    color: #000;
    font-size: 70px;
    line-height: 1;
}

.section-title.bord {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.section-title.bord::after {
    max-width: 590px;
    height: 3px;
    background: linear-gradient(90deg, #ccc 0%, #2A3E78 100%);
    bottom: 0;
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
}

.intro .img img {
    height: 93vh;
    width: 100%;
    object-fit: cover;
}

.form {
    background-color: rgb(249 250 251);
}

.nice--form label {
    display: block;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 300;
}

.nice--form input, .nice--form select, .nice--form textarea {
    width: 100%;
    color: #000;
    display: inline-block;
    font-size: 15px;
    height: 35px;
    vertical-align: top;
    margin: 0;
    background: transparent;
    border: transparent;
    outline: none;
    padding: 0;
    font-style: normal;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.nice--form textarea {
    height: 120px;
}

.home--contact .agent img {
    max-height: 800px;
    object-fit: cover;
    object-position: top;
}

.home--socials {
    background: #0c0a09;
    padding: 140px 0 20px 0;
}

.home--socials::before, .properties::before {
    display: none;
}

.properties {
    background: rgba(243, 244, 246, 1);
}

.p-bigger {
    font-size: 22px;
}

.dark-bg {
    background: #0c0a09;
}

.section-title.white h1, .section-title.white h6 {
    color: #fff;
}

.about-s1-img.img-1 {
    width: 38.75%;
    margin-left: auto;
}

.about-s1-img.img-1 img {
    max-height: 90vh;
    width: 100%;
    object-fit: cover;
}

.about-s1-img.img-2 {
    width: 35%;
    position: absolute;
    bottom: -25%;
    left: 3.75%;
}

.about-s1-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.about-s1-text .content {
    max-width: 600px;
    padding: 0;
}

.about-s1-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-s1-img.img-2:before {
    background: url(../img/photo-overlay.png) center / 100% 100% no-repeat;
}

.intro {
    padding: 40px 0 80px;
}

.about--page {
    padding: 250px 0 100px;
}

.about-row-margin {
    margin-bottom: 90px;
}

.section-title p {
    color: #000;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: var(--body-font);
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 8px;
}

.btn-default.btn-black {
    background: #000;
    color: #fff;
}

.btn-default.btn-black::before {
    width: 100%;
}

.fullimage img {
    height: 80vh;
    object-fit: cover;
    width: 100%;
}

.contact--page {
    padding-top: 40px;
}

.contact--page .img img {
    width: 100%;
    max-height: 88vh;
    object-fit: cover;
    object-position: top;
}

.section-title h1 span {
    font-size: 35px;
    display: block;
    margin-bottom: 8px;
}

.sector .inner {
    padding: 40px;
}

.sector .img img {
    height: 75vh;
    object-fit: cover;
    width: 100%;
}

.sector .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/overlay-sector.png) center / 100% 100% no-repeat;
    z-index: 1;
}

.sector .section-title {
    margin-left: -80px;
    z-index: 2;
}

.info-row-margin {
    margin-top: 100px;
}

.info .link-wrap {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.info .link-box {
    flex: 1 1 450px;
}

.custom-container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
}

.info .link-box h3 {
    font-size: 20px;
}

.img-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#info td {
    padding: .5em 0;
    vertical-align: top;
    width: 70%;
}

#info td+td, #info td.last-child {
    font-weight: 700;
    text-align: right;
    width: 30%;
}

#info {
    border: 0 none;
    width: 100%;
}

#info tr {
    border-top: 1px solid #ccccde;
}

.buyers--page .fullimage img {
    object-position: 50% 35%;
}

.sellers--page .fullimage img {
    object-position: 50% 70%;
}

.padd-md {
    padding: 60px 0;
}

.media--icons img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.media--icons a {
    flex: 0 0 12%;
}