@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*** GENERIC CSS ***/
html,body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

body {
    font-size: 16px;
    background: #fff;
    color: #000;
}

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

a i {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

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

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    cursor: pointer;
}

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: "Montserrat", sans-serif;
    font-weight: 400;
}

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;
}

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

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

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

.section-title h6 {
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    font-size:20px;
    letter-spacing:2px;
}

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

.section-title.white hr {
    background: #fff;
}

.section-title h2 {
    color: #000;
    letter-spacing: 0.5px;
    font-size: 50px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 25px;
}

.section-title hr {
    display: inline-block;
    width: 54px;
    height: 3px;
    background: #000;
    opacity: 1;
    margin-top: 0px;
    margin-bottom: 30px;
}

.btn-default {
    display: inline-block;
    min-width: 155px;
    border: 1px solid #fff;
    color: #fff;
    height: 55px;
    position: relative;
    padding: 0px 20px;
    width: -moz-max-content;
    width: max-content;
    font-size: 13px;
    line-height: 53px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .3s;
    background: none;
}

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

.btn-default:before {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    width: calc(100% + 1px);
    height: calc(100% + 2px);
    border: 1px solid #fff;
}

.btn-default em {
    margin-left: 25px;
    font-size: 10px;
    position: relative;
    right: 0px;
    transition: all .3s;
}

.btn-default:hover em {
    right: 10px;
}

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

.btn-default.black:before {
    border-color: #000;
    color: #000;
}

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

/*** SIDEMENU ***/
.menu-btn {
    min-width: 20px;
    min-height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    margin-left: 40px;
    justify-content: end;
    text-align: right;
}

.menu-btn span {
    display: block;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: #fff !important;
    height: 3px;
    margin: 3px 0px;
    border-radius: 0px;
    transition: all .3s;
    margin-left: auto;
}

.menu-btn:hover span {
    width: 100% !important;
}

.menu-btn div {
    position: relative;
    top: 0px;
    vertical-align: middle;
    width: 20px;
}

.side-menu {
    background: #fff;
	position:fixed;
	top:0px;
    left: -100%;
    width: 340px;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	height:100%;
	z-index:9999999;
    padding: 55px 35px;
	overflow:hidden;
	overflow-y:auto;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.side-menu.intro {
	left:0px;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:30px;
}

.side-menu ul.main-menu.navbar-nav li {
	list-style:none;
	display:inline-block;
	width:100%;
    margin: 0;
    margin-bottom: 10px;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    font-size: 17px;
    padding: 7px 0px;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    font-weight: 400;
}

.side-menu ul.main-menu li:hover>a,
.side-menu ul.main-menu li.active>a {
	background:none;
    color:#000;
    font-weight: bold;
}

.side-menu a.CloseBtn {
    float: right;
    color: #fff;
    background: #000;
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 40px;
    min-height: 40px;
    border-radius: 0px 0px 0px 5px;
}

.side-menu a.CloseBtn:before,
.side-menu a.CloseBtn:after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
}

.side-menu a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.side-menu .menu-item-has-children:hover>a,
.side-menu .menu-item-has-children.active>a {
    color: #000 !important;
}

.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 90%;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    right: 6px;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current>a:before {
    content: "\f068";
}

.side-menu ul.navbar-nav>li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

.side-menu ul.navbar-nav>li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li {
    margin: 0;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li a {
    font-size: 12px;
    background: #ebebeb;
    color: #000;
    margin: 0;
    padding: 10px 15px !important;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li:hover a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.current_page_item>a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.active>a {
    color: #fff !important;
    background: #000 !important;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu .contact-details {
    border-top: 1px solid #000;
    padding: 20px 0px 0px 0px;
}

.side-menu .contact-details * {
    color: #000 !important;
}

/*** HEADER ***/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .3s;
    padding: 0px 15px;
}

header .main-nav {
    padding: 35px 0px;
}

header.fixed .main-nav {
    padding: 15px 0px;
}

header.fixed {
    position: fixed;
    background: #fff !important;
    z-index: 999;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}

header.fixed .navbar-brand img {
    filter: none;
}

header.fixed .menu-btn span {
    background: #000 !important;
}

header.fixed .navbar-brand img {
    max-height: 70px;
}

header.home-header .navbar-brand {
    opacity: 0;
    pointer-events: none;
}

header.home-header.fixed .navbar-brand {
    opacity: 1;
    pointer-events: auto;
}

.navbar-brand {
    padding: 0px !important;
}

.navbar-brand img {
    max-height: 90px;
    transition: all .3s;
    filter: invert(1);
}

.navbar {
	padding:0px 0px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
	position:relative;
}

.navbar-light .navbar-nav>.nav-item {
    margin-left: 35px;
	display:inline-block;
    vertical-align: top;
}

.navbar-light .navbar-nav>.nav-item>.nav-link.dropdown-toggle:after {
    font-size: 18px;
}

.navbar-light .navbar-nav>.nav-item>.nav-link {
    position: relative;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    padding-bottom: 5px;
    transition: all .3s;
    font-weight: 500;
    padding: 0px 0px !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.navbar-light .navbar-nav>.nav-item>.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 2px;
    background: #fff;
    transition: all .3s;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link::before,
.navbar-light .navbar-nav>.nav-item.current-menu-item>.nav-link::before {
    width: 100%;
}

header.fixed .navbar-light .navbar-nav>.nav-item>.nav-link {
    color: #000;
}

header.fixed .navbar-light .navbar-nav>.nav-item:hover>.nav-link,
header.fixed .navbar-light .navbar-nav>.nav-item.current-menu-item>.nav-link {
	color:#000 !important;
}

header.fixed .navbar-light .navbar-nav>.nav-item>.nav-link::before {
    background: #000;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link,
.navbar-light .navbar-nav>.nav-item.current-menu-item>.nav-link {
	color:#fff!important;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu {
    border: none;
    border-radius: 0px !important;
    text-align: left;
    display: block;
    list-style: none;
    margin: 0;
    position: absolute;
    overflow: hidden;
    left: calc(50% - 100px);
    min-width: 180px;
    padding: 0px;
    opacity: 0px;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    white-space: nowrap;
}

.navbar-light .navbar-nav>.nav-item:hover ul.sub-menu {
	display:block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li {
	width:100%;
    position: relative;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li:last-child {
    border: none;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li>.nav-link {
    transition: all .3s;
    display: inline-block;
    clear: both;
    margin: 0px;
	width:100%;
	position:relative;
    line-height: 40px;
    padding: 0px 18px !important;
    font-size: 15px;
    border: none;
    white-space: nowrap;
    color: #000;
    background-color: #fff;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li:hover>a,
.navbar-light .navbar-nav>.nav-item ul.sub-menu>li.current-menu-item>a {
	color:#fff!important;
    background: #000;
}

.menu-item-has-children > a {
	position: relative;
	padding-bottom: 12px;
}

.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	left:120%;
	top:40%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
}


/*** BANNER ***/
.banner {
    position: relative;
    overflow: hidden;
    padding: 70px 0px 20px 0px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.banner .container {
    position: relative;
    z-index: 3;
}

.banner h1 {
    color: #fff;
    font-size: 80px;
    margin-bottom: 5px;
}

.banner h6 {
    color: #fff;
    margin-bottom: 0px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner .normal-btn {
    margin-right: 35px;
}

.banner p {
    color: #fff;
    font-size: 13px;
    margin-bottom:50px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner .logo-team {
    filter: invert(1);
    max-height:150px;
}

.banner .divider {
    background: #fff;
    position: absolute;
    top:70%;
    right: 50vw;
    height:2px;
    width: 100vw;
    z-index: 9;
}

.banner .divider::before {
    content: '';
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100vw;
}

.normal-btn {
    display: inline-block;
    line-height: 45px;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 50px;
    text-transform: uppercase;
}

.normal-btn:hover {
    color: #fff;
    font-weight: bold;
}

.banner:before {
    content: '';
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    z-index: 1;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner .logo-remax {
    position: absolute;
    bottom: 40px;
    right: 20px;
    max-height: 60px;
    z-index: 2;
}

/*** CTAS ***/
.ctas {
    position: relative;
    overflow: hidden;
}

.cta-box {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    float: left;
}

.cta-box .img:before {
    content: '';
    background: rgba(0,0,0,1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all .3s;
}

.cta-box:hover .img:before {
    opacity: 0.3;
}

.cta-box .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    float: left;
}

.cta-box .img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-box .cta-content {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    z-index: 3;
}

.cta-box:hover .cta-content {
    opacity: 1;
    top: 0;
    opacity: 1;
}

.cta-box:hover .img:after {
    height: 0px;
}

.cta-box .img:after {
    display: block;
    content: "";
    background: linear-gradient(to top, #000000, #ffffff);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 87px;
    width: 2px;
    z-index: 5;
    transition: all .3s;
    margin: 0 auto;
    height: 33%;
}

.cta-box h3 {
    color: #fff;
    font-size: 36px;
    letter-spacing: .72px;
    font-weight: 400;
    line-height: normal;
    line-height: 1;
}

.cta-box h3 span {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    margin-bottom: 0px;
    display: block;
    position: relative;
    top: 15px;
}

.cta-box p {
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 1.2px;
    padding: 30px 0 37px;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    max-width: 100%;
    transition: all .3s;
    opacity: 0;
}

.cta-box:hover p,
.cta-box:hover .btn-default {
    opacity: 1;
}

.cta-box .btn-default {
    opacity: 0;
}

/*** ABOUT ***/
.about {
    position: relative;
    overflow: hidden;
}

.about .section-title p {
    margin-bottom: 20px;
}

.about .imgstyle {
    width: 100%;
}

.imgstyle {
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.imgstyle img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .imgstyle img {
    object-position:80% 50%;
}

.about .section-title {
    padding: 40px 40px;
}

.about .section-title h6 {
    margin-top: 40px;
}

.about .btn-default {
    margin-top: 0px;
}

/*** PROPERTIES ***/
.properties {
    padding: 100px 0px;
    background: #000;
}

.properties .owl-theme .owl-nav [class*=owl-] {	
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
	background: none;
	padding: 0;
	border-radius: 0;
	position: relative;
	letter-spacing: 1px;
    margin: 0px 15px;
}

.properties .owl-theme .owl-nav [class*=owl-]:after {
    background-color: #fff;
}

.properties .owl-theme .owl-nav [class*=owl-]:first-child:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    margin: 0px 17px;
    margin-top: -5px;
    top: 3px;
    background-color: #fff;
}

.properties .owl-nav {
	margin-top: 0;
	margin-bottom: 20px;
}

.property-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all .2s ease;
}

.overlay-box {
    display: inline-block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    transition: all .2s ease;
    opacity: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.7);
}

.property-box h4 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.property-box:hover .overlay-box {
    opacity: 1;
}

.property-box .img {
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.property-box .img img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / .6;
    transition: all .3s;
    object-fit: cover;
}

.property-box .tag {
    margin: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .4);
    background: #000;
    z-index: 3;
    color: #fff;
    font-size: 14px;
    border-radius: 0px;
    padding: 8px 0px;
    text-align: center;
    min-width: 140px;
    text-transform: uppercase;
    font-weight: 600;
}

.property-box .tag i {
    margin-right: 5px;
    font-size: 16px;
}

.property-box .text {
    position: relative;
    flex-grow: 1;
    text-align: center;
    background: #fff;
    padding: 5px 16px 14px 16px;
    transition: all .3s;
}

.property-box .text h3 {
    color: #000;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 18px;
    margin: 10px 0px 0px 0px;
}

.property-box .text p {
    line-height: 1.3;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    margin: 13px 0px;
    text-transform: uppercase;
}

.property-box .text p.price {
    font-size: 18px;
    margin: 5px 0px;
}

.property-box .text ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.property-box .text ul li {
    font-size: 14px;
    line-height: 1;
    padding: 0 10px;
    border-right: solid 1px #000;
}

.property-box .text ul li:last-of-type {
    border-right: none;
}


.properties .btn-default {
    margin-top: 0px;
}

/*** TESTIMONIALS ***/
.testimonials {
    padding: 100px 0px;
    background: url(../img/bg-testimonials.webp) 50% 50% no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/*** SOLD MAP ***/
.soldmap {
    padding: 70px 0px 0px 0px;
}

/*** CONTACT-FORM ***/
.contact-form {
    padding: 80px 0px;
    background: #000;
}

.contact-form .consent-ctn a,
.contact-form .consent-ctn label {
    color: #fff;
}

.contact-form .form-control {
    border-radius: 2px;
    padding: 10px 0px;
    box-shadow: none;
    resize: none;
    outline: none;
    height: 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    margin-bottom: 25px;
}

.contact-form .form-control::-webkit-input-placeholder {
    color: #fff;
}

.contact-form textarea.form-control {
    height: 80px;
}

.contact-form p {
    color: #fff;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-form .btn-default {
    margin-top: 10px;
}

.form-check {
    color: #fff;
    font-size: 14px;
    padding-left: 30px;
    display:flex;
    margin-right: 30px;
    margin-bottom: 20px;
    gap: 40px;
    align-items: center;
}

.form-check input[type="radio"] {
    margin-left: -30px;
    background-color: transparent;
    border: 1px solid #fff !important;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    top: 5px;
    position: relative;
    outline: none !important;
    box-shadow: none !important;
	appearance:none;
	-webkit-appearance:none;
}

.form-check input[type="radio"]:checked {
	appearance: auto;
	-webkit-appearance: radio;
	-moz-appearance: radio;
}

.form-check .wpcf7-list-item-label {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    margin-bottom: 25px;
}

.form-check input[type="checkbox"] {
    margin-left: -35px;
    background-color: transparent;
    border: 1px solid #fff !important;
    border-radius: 0;
    width: 20px;
    height: 20px;
    top: 5px;
    position: relative;
    outline: none !important;
    box-shadow: none !important;
	appearance:none !important;
	-webkit-appearance:none !important;
}

.form-check input[type="checkbox"]:checked {
	appearance: auto;
	-webkit-appearance: radio;
	-moz-appearance: radio;
}

/*** SOCIAL MEDIA ***/
.social-media {
    padding: 80px 0px;
}

.social-media p {
    color: #000;
    margin-top: 0px;
    margin-bottom: 50px;
}

.social-media .contact-details .fa {
    font-size: 20px;
    color: #000;
    background: none;
    border: 1px solid #000;
    min-width: 70px;
    max-height: 70px;
    line-height: 68px;
    border-radius: 0px;
    text-align: center;
}

.social-media .contact-details .fa:hover {
    color: #fff;
}

section {
    overflow: hidden;
}

.social-box img {
    transition: all .3s;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.social-box {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    margin-bottom: 20px;
}

.social-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all .3s;
    opacity: 0;
    z-index: 3;
}

.social-box:hover:before {
    opacity: .4;
}

.social-box:hover .img {
    transform: scale(1.1);
}


/*** FOOTER ***/
footer {
    background: #000;
    padding: 80px 0px;
}

footer .foot-logo img {
    max-height: 150px;
    filter: invert(1);
}

footer .logo-remax {
    max-height:60px;
    margin-top: 20px;
}

.contact-details {
    list-style: none;
    margin: 0px;
    padding: 0px;
    color: #fff;
}

.contact-details li {
    margin-bottom: 10px;
}

.contact-details li a {
    display: flex;
    gap: 10px;
    flex-direction: row;
    color: #fff;
    align-items: center;
    width: max-content;
}

.contact-details li a:hover {
    color: #fff;
    font-weight: bold;
}

.contact-details .fa {
    font-size: 16px;
    min-width: 25px;
    color: #fff;
    text-align: center;
    line-height: 18px;
}

footer h3 {
    color: #fff;
    font-size: 34px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer .contact-details.links {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}

footer .contact-details.links li {
    min-width: 50%;
}

footer .contact-details.links li a {
    text-transform: uppercase;
}

.contact-details.social-links {
    display: flex;
    gap: 15px;
}

.contact-details.social-links li:hover .fa {
    background: #000;
}

/*** COPYRIGHTS ***/
.copyrights {
    background: #000;
    padding: 20px 0px;
    border-top: 1px solid #343333;
}

.copyrights p {
    color: #fff;
}

.copyrights img {
    max-height: 40px;
}

.home-header .navbar-brand img {
    display: none;
}

.home-header.fixed .navbar-brand img {
    display: inline-block;
}


/*** PAGE BANNER ***/
.page-banner {
    height: 50vh;
    padding-bottom: 0px;
}

.page-banner * {
    color: #fff !important;
    text-transform: uppercase;
}

.page-banner h6 {
    margin-bottom: 0px;
}

.contact-form.bg-white {
    background: #242424 !important;
}

/*** BUYER SELLERS ***/
.buy-sell {
    padding: 100px 0px 0px 0px;
    position: relative;
}

.buy-sell .container {
    position: relative;
    z-index: 9;
}

.buy-sell .align {
    position: absolute;
    bottom: 0px;
    right: 50px;
    width: 47.5vw !important;
    object-fit: cover;
}

/*** BUYSELL FORM ***/
.buysellform {
    background: #000;
    padding: 90px 0px;
}

.buysellform .bg-form {
    padding: 0px 15px;
}

.buysellform h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.buysellform .consent-ctn a,
.buysellform .consent-ctn label {
    color: #fff;
}

.buysellform .form-control {
    border-radius: 2px;
    padding: 10px 0px;
    box-shadow: none;
    resize: none;
    outline: none;
    height: 50px;
    font-size: 16px;
    color: #fff;
    background: none;
    border:0px;
    border-bottom: 1px solid #ffff;
    margin-top: 18px;
}

.select2-container--default .select2-selection--multiple {
    height: auto!important;
    border:0px!important;
    border-radius: 2px!important;
    border-bottom: 1px solid #ffff!important;
    background: none!important;
    box-shadow: none!important;
    outline: none!important;
    padding: 10px 0px!important;
    margin-top: 18px!important;
}

.select2-search__field {
    margin-top: 0!important;
}

.select2-search__field::placeholder {
    font-size: 16px!important;
    color: #fff!important;
}

.buysellform .form-control>option {
    color: #000;
}

.buysellform .form-control::-webkit-input-placeholder {
    color: #fff;
}

.buysellform textarea.form-control {
    height: 120px;
}

.buysellform .btn-default {
    min-width: 150px;
    margin-top: 25px;
}

.buysellform select.form-control {
    appearance: auto;
}

/*** INFO SMALL ***/
.info-small {
    padding: 70px 0px;
    background: #fff;
}

.info-small .btn-default {
    width: auto;
}

/*** CALC INFO ***/
.calc-info {
    padding: 100px 0px;
    overflow: hidden;
    background: #f5f5f5;
}

mw-calc-panel-body, mw-calc-section {
	background:#000 !important;
	border-radius: 0px !important;
	box-shadow: none !important;
	padding:35px 0px !important;
}

mw-calc-section {
	padding:35px 30px !important;
}

mw-calc-label {
	color: #fff !important;
	font-weight:500 !important;
}

.mw-calc-search-input {
	border-radius: 0px !important;
}

#calculate_lt {
    border-radius: 0px !important;
    border: 1px solid #fff !important;
	color: #fff !important;
    background: none !important;
}

#calculate_lt:hover {
	color: #000 !important;
    background: #fff !important;
}

mw-calc-table {
    background: #000;
}

.mw-calc-table > tbody > tr.active {
    border-color: #000 !important;
    color: #fff !important;
}

.mw-calc-table > tbody > tr.active > td {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/*** EVALUATION BOX ***/
.evaluation-box {
    padding: 100px 0px;
    position: relative;
    background: #f5f5f5;
}

.evaluation-box .section-title h2 {
    line-height: 1;
}

.evaluation-box .bg-form {
    padding:75px 50px;
    background: #000;
}

.evaluation-box label {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.evaluation-box .checkbox-group label {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.evaluation-box .btn-default.bordered {
    width: 100%;
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0px;
    padding: 25px 0px;
    font-weight: 400;
    background: none;
    margin-left: 0px !important;
    display: inline-block;
    height: inherit;
}

.evaluation-box .btn-default.bordered span {
    font-size: 14px;
    letter-spacing: .5px;
    margin: 0;
}

.evaluation-box .btn-default.bordered span::before,
.evaluation-box .btn-default.bordered span::after {
    display: none !important;
}

.evaluation-box .btn-default.bordered:hover, .evaluation-box .btn-default.bordered.active {
    background: #fff;
    border-color: #fff;
    color: #000;
    font-weight: 600;
}

.evaluation-box .btn-default.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.evaluation-box .btn-default.bordered:before, .evaluation-box .btn-default.bordered:after {
    display: none;
}

.evaluation-box .navigate-btns {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.evaluation-box p {
    color: #fff;
}

fieldset#StepOne .navigate-btns {
    justify-content: end;
}

.evaluation-box .checkbox-group .wpcf7-checkbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
}

.evaluation-box .checkbox-group .wpcf7-list-item {
    flex: 0 1 calc(50% - 20px); 
    margin-bottom: 15px;
    color: #fff;
}

.evaluation-box input[type="checkbox"] {    
    width: 25px;
    height: 25px;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 10px;
}

.evaluation-box .form-control {
    border-radius: 0px;
    padding: 10px 20px;
    box-shadow: none;
    resize: none;
    outline: none;
    height: 50px;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    border: none;
    margin-bottom: 18px;
}

.evaluation-box .form-control::-webkit-input-placeholder {
    color: #555;
}

.evaluation-box textarea.form-control {
    height: 120px;
}

.cf7mls_next.action-button, .cf7mls_back.action-button {
    display: inline-block !important;
    min-width: 155px !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    height: 55px !important;
    position: relative !important;
    padding: 0px 20px !important;
    width: -moz-max-content !important;
    width: max-content !important;
    font-size: 13px !important;
    line-height: 53px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    transition: all .3s !important;
    background: none !important;
}

.cf7mls_next.action-button:before, .cf7mls_back.action-button:before {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    width: calc(100% + 1px);
    height: calc(100% + 2px);
    border: 1px solid #fff;
}