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

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

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

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

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

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 {
    font-family: "Waterfall", cursive;
    font-weight: 400;
    color:#fff;
    line-height: 0.7;
    letter-spacing: 2px;
}

h1 {
    font-size:80px;
}

h2 {
    font-size:72px;
}

h3 {
    font-size:36px;
}

h4 {
    font-size:30px;
}

h5 {
    font-size:24px;
}

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

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

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

.btn-default {
    border-radius: 7px;
    background: linear-gradient(to bottom, #b07d2e 0%, #dbce8e 50%, #b07d2e 100%);;
    color: #fff;
    border: 2px solid #cc9741;
    outline: 0px;
    padding: 10px 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size:16px;
    display: inline-block;
    letter-spacing: 1px;
}

.btn-default.btn-active {
    border: 2px solid #cc9741;
    background:linear-gradient(to bottom, #b07d2e 0%, #dbce8e 50%, #b07d2e 100%);
    color: #fff;
}

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

.btn-white {
    background: #fff;
    color: #000;
    border-color: #fff;    
    padding: 15px 50px;
}

.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 h6 {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 2px;
    color:#cc9741;
    margin-bottom: 0px;
}

/*** SIDEMENU ***/
.menu-btn {
	display:inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 50%;
    padding-right: 5px;
}

.menu-btn span {
    width: 26px;
    height: 2px;
	background:#000000;
    display: inline-block;
    margin: 2.5px 0px;
    float: right;
    transition: all .3s;
    border-radius: 3px;
}

.menu-btn div {
    display: inline-block;
}

.menu-btn span:nth-child(2) {
    width: 50%;
}

.side-menu {
	position:fixed;
    right: -100%;
    width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	height:100%;
	z-index:999999;
    overflow: hidden;
    height: 100vh;
    background: #fff;
    padding: 30px 20px 0px 20px;
    overflow: hidden;
    overflow-y: scroll;
}

.side-menu .img img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.side-menu.intro {
	right:0;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

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

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
	height:100%;
	width:100%;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    padding: 10px 12px 10px 20px;
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 48px;
    color: #000;
    transition: 0.2s all;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition-property: transform, opacity, color;
    transition-duration: 0.55s, 0.55s, 0.3s;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out, ease-in-out;
    border-bottom: 1px solid #0000001a;
}

.side-menu ul.main-menu li:hover>a,
.side-menu ul.main-menu li.active>a {
    color: #cc9741;
    font-weight: 600;
}

.side-menu .menu-item-has-children:hover>a,
.side-menu .menu-item-has-children.active>a {
    color: #cc9741;
    font-weight: 600;
}

a.CloseBtn {
    float: right;
    color: #000;
    font-size: 26px;
    margin: 0px 0px 0px 15px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    min-width: 22px;
    min-height: 22px;
    position: absolute;
    top: 35px;
    right: 14px;
}

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

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

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>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 27px;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 34px;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 50%;
    transform: translate(0px, -50%);
    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 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: #f5f5f5;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
    box-shadow: none;
    border: none;
    background: #f5f5f5;
}

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

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

.side-menu ul.main-menu li ul.sub-menu li a {
    padding: 0px 15px;
    font-size: 17px;
}

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

.side-menu ul.main-menu li {
    margin: 0;
    padding: 0;
}

/*** HEADER ***/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 36px 40px;
    z-index: 99;
    overflow: visible;
    transition: all .3s;
}

@media only screen and (min-width:992px) {
.header .navbar-collapse {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
}

.header.fixed {
    position: fixed;
    z-index: 999;
    background: #141414;
    padding: 20px 15px;
}

.header.fixed .navbar-brand .logo {
    display: block;
}

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

.navbar-brand .logo img {
    max-height: 50px;
    margin-top: -15px;
}

.navbar-area {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px
}

.main-nav {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
}

.main-nav .navbar {
    transition: all ease .5s;
    z-index: 2;
    position: unset;
    padding: 0
}

.main-nav .navbar ul {
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0;
    justify-content: center;
    align-items: center;
}

.main-nav .navbar .navbar-nav .nav-item {
    position: relative;
    padding: 0px 12px;
    padding: 0px 0px;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1.96px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 14px;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after,
.main-nav .navbar .navbar-nav .nav-item.menu-item-has-children>.nav-link:after {
    display: none;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::before {
    content: "";
    font-family: IcoFont;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    line-height: 1;
    font-size: 16px;    
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    transition: all .3s;
}

.main-nav .navbar .navbar-nav .nav-item:hover>.nav-link.dropdown-toggle::before {
    transform: rotate(180deg);
    margin-top: -3px;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item.active>.nav-link {
    color: #cc9741;
    font-weight: bold;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 4px
}

.main-nav .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0
}

.navbar-brand {
    margin-left: 20px;
}


.navbar-expand-lg .navbar-nav>.nav-item {
    position: relative;
}

.navbar-expand-lg .navbar-nav>.nav-item:hover .dropdown-menu,
.navbar-expand-lg .navbar-nav>.nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(0);
    border-radius: 0;
}

.navbar-expand-lg .navbar-nav>.nav-item .dropdown-menu,
.navbar-expand-lg .navbar-nav>.nav-item .sub-menu {
    padding: 11px 0 0;
    list-style: none outside none;
    margin: 0;
    position: absolute;
    left: 0;
    width: auto;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(30px);
    transition: transform .3s, opacity .3s, visibility, .3s;
    display: block;
    min-width: 200px;
    background: none !important;
    border: none !important;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li {
    background: #fff !important;
    text-align: left;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li>a.nav-link {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    font-weight: 300;
    text-transform: inherit;
    letter-spacing: 2px;
    font-size: 14px;
    text-decoration: none !important;
    padding: 8px 14px;
    display: block;
    text-transform: uppercase;
    text-align: left;
    color: #000 !important;
    background: none !important;
    font-family: "Roboto", sans-serif;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li:hover>a.nav-link,
.navbar-expand-lg .navbar-nav>.nav-item .sub-menu .active>a.nav-link {
    background: #cc9741 !important;
    color: #fff !important;
    font-weight: bold;
}

.header .navbar-nav.rt>.nav-item .nav-link i {
    margin-right: 0px;
    margin-top: -7px;
    font-size: 14px;
    vertical-align: middle;
}

.header .navbar-nav.rt>.nav-item.logo-agency {
    margin-left: 10px;
}

.header .navbar-nav.rt>.nav-item.logo-agency img {
    height: 35px;
}

.header .navbar-nav.logo .nav-item>a {
    padding: 0;
}

.header .navbar-nav.logo .nav-item>a> img {
    height: 60px;
}

/*** HERO ***/
.hero {
    height: 100vh;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 9;
    height: 100vh;
}

.hero-content h1 {
    font-size: 150px;
    margin-bottom: 0px;
    line-height: 1;
}

.hero-content h1, .hero-content h6 {
    color: #fff;
}

.hero-content .btn-default {
    background: none;
    width: 100%;
    padding: 15px 0px;
    border: 1px solid #fff;
}

.hero-content .btn-default.btn-active, .hero-content .btn-default:hover {
    background:linear-gradient(to bottom, #b07d2e 0%, #dbce8e 50%, #b07d2e 100%);
    color:#fff;
    border-color: #cc9741;
}

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

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

.hero .logo {
    margin-bottom: 40px;
}

.hero .logo img {
    max-height: 180px;
}

/*** OUR VALUES ***/
.our-values {
    padding: 100px 0px;
    background: #141414;
}

.our-values .agent-img {
    position: relative;
}

.our-values .agent-img::before {
    content: '';
    background:linear-gradient(rgba(255,255,255,0.8)), url(../img/equinox-about-overlay.jpg) top left no-repeat;    
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80%;
    height: 80%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.our-values .agent-img img {
    border-radius: 20px;
    aspect-ratio: 1 / 1.35;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.our-values ol {
	font-size: 30px;
	line-height: 48px;
	font-weight: 300;
	letter-spacing: 1.5px;
	counter-reset: item;
	list-style-type: none;
	padding-left: 0 !important;
	text-shadow: none;
}

.our-values ol li {
	display: flex;
	align-items:center;
    padding: 15px 0px;
    font-size:18px;
    line-height: 1.6;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.our-values ol li:last-child {
    border: 0px;
}

.our-values ol li:before {
	content: counter(item) " ";
	counter-increment: item;
	color: #fff;
	font-size: 125px;
	text-shadow: none;
	margin-right: 20px;
    font-weight: bold;
	font-family: "Cormorant", sans-serif;
    line-height: 100px;
}

.our-values ol li span {
	display: contents;
	font-size:28px;
    font-weight: 600;
}

.our-values * {
    color: #fff;
}

.our-values .btn-default {
    /*background: #fff;
    border-color: #fff;
    color: #000;*/
    margin-top: 10px;
    margin-bottom: 15px;
}

/*.our-values .btn-default:hover {
    background: transparent;
    color: #fff;
}*/

.our-values p a:hover {
    color: #cc9741;
}


/*** PROPERTIES ***/
.properties {
    padding: 70px 0px;
    background: #141414;
}

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

.property-box {
    margin-bottom: 30px;
}

.property-box .img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 40px;
    margin-bottom: 15px;
}

.property-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

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

.property-box h3 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: .64px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.property-box h4 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .64px;
    margin-bottom: 10px;
}

.property-box p {
    font-size: 16px;
    letter-spacing: .64px;
    line-height: 1.7;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.property-box ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-box ul li {
    font-size: 14px;
    line-height: 1.1;
    color: #fff;
    padding: 0 8px;
    border-right: solid 1px #fff;
}

.property-box ul li:first-of-type {
    padding-left: 0;
}

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

/*** SOLD MAP ***/
.sold-map {
    padding: 60px 0px 0px 0px;
}

/*** WHY WORK WITH ME ***/
.why-work {
    padding: 70px 0px;
    background: #000;
}

.why-work .why-work-content h6 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 2px;
}

.why-work .why-work-content img {
    margin-right: 10px;
}

.why-work .why-work-content p {
    margin-left: 35px;
}

.why-work .bg-white {
    padding: 30px;
    margin-left: -50px;
}

.why-work .bg-white * {
    color: #000;
}

.why-work .section-title h6, .why-work .why-work-content h6 {
    color: #cc9741;
}

/*** TESTIMONIALS ***/
.testimonials {
    background:linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../img/bg-testimonials.jpg) 50% 50% no-repeat;
    background-size: cover;
    padding: 70px 0px;
}

.testimonials .owl-stage {
    display: flex;
}

.testimonials .owl-item img {
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 20px;
}

.testimonials .owl-item.active.center img {
    aspect-ratio: 1 / 0.60;
    object-fit: cover;
}

.testimonials .owl-nav {
    display: flex;
    width: 60%;
    margin:30px 20% 0px 20%;
    justify-content: space-between;
}

.testimonials .owl-nav button {
    border-radius:80px !important;
    border:1px solid #cc9741 !important;
    display: inline-block;
    width: 80px;
    height: 80px;
}

.testimonials .owl-nav button span {
    font-size: 36px;
    line-height: 30px;
    margin: 0px;
    padding: 0px;
}

.testimonials .owl-nav button:hover {
    background: #cc9741 !important;
}

.testimonials h5 {
    color: #fff;
    font-size: 38px;
    margin-top: 25px;
    margin-bottom: 5px;
}

.testimonials .stars i {
    margin-bottom: 15px;
    color: #cc9741;
}

.testimonials .stars {
    margin-bottom: 15px;
}

.testimonials .item {
    padding: 30px 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** CTA ***/
.cta {
    padding: 100px 0px;
    background: #000;
}

.cta a {
    border: 1px solid #c9a89c;
    display: inline-block;
    border-radius: 40px;
    width: 100%;
    text-align: center;
    position: relative;
    height: 197px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.cta a:before {
    background:  linear-gradient(rgba(204, 151, 65, 0.8));
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.cta a span {
    position: relative;
    z-index: 9;
}

.cta a b {
    position: relative;
    z-index: 9;
    font-size:42px;
    letter-spacing: 2px;
    font-family: "Waterfall", cursive;
}

.cta a:hover::before {
     background:  linear-gradient(rgba(0, 0, 0, 0.8));
}


/*** INSTAGRAM ***/
.instagram {
    padding:70px 0px 100px 0px;
    background: #141414;
}

.instagram img {
    aspect-ratio: 1 / 1.25;
    object-fit: cover;
    border-radius: 15px;
}

.instagram .eapps-instagram-feed-posts-item {
    background: transparent;
}

.instagram .eapps-instagram-feed-posts-item-link {
    border-radius: 15px;
}

.instagram .eapps-instagram-feed-posts-item-overlay {
    border-radius: 15px;
}

/*** CONTACT FORM ***/
.contact-form {
    background:linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../img/bg-page-banner.jpg) 50% 50% no-repeat;
    background-size:cover;
    padding:80px 0px;
}

.contact-form .form-box {
    padding: 60px 100px 60px 120px;
    background-color: #fff;
    margin-left: -100px;
    position: relative;
    z-index: 1;
}

.contact-form .section-title {
    margin-bottom: 25px;
}

.form-box .form-control {
    border:0px;
    border-radius: 0px;
    border-bottom: 1px solid #000;
    padding:10px 0px;
    margin-bottom: 15px;
    outline: 0px;
}

.form-box textarea.form-control {
    height: 100px;
    resize: none;
}

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

.form-box .btn-default {
    margin-top: 30px;
}

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

/*** FOOTER ***/
.footer {
    background: #141414;
    padding: 60px 0px 30px 0px;
}

.footer h5 {
    font-size: 42px;
    letter-spacing: 1px;
    margin-bottom:15px;
}

.footer-menu {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-menu li {
    margin: 0px 0px 10px 0px;
}

.footer-menu li:hover a, .footer a:hover {
    color: #cc9741;
}

.footer .contact-details {
    display: flex;
    flex-direction: column;
}

.footer .contact-details a {
    display: flex;
    gap: 15px;
    margin-bottom:10px;
}

.footer .fa {
    width: 20px;
    font-size: 20px;
}

.footer .social-media {
    margin:25px 0px;
    display: flex;
    gap: 10px;
    justify-content: end;
}

.footer .social-media a {
    border: 1px solid #fff;
    text-align: center;
    line-height: 44px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.footer .social-media a:hover {
    background: #cc9741;
    color: #fff;
}

.footer .social-media a:hover img {
    filter: invert(1);
}

.footer .social-media a img {
    max-height: 18px;
    margin-top: -4px;
}

.footer .copy {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer .copy p {
    font-size: 14px;
}

.footer .copy img {
    width: 125px;
}

.footer .logos :first-child {
    margin-bottom: 5px;
    display: inline-block;
}

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

.page-banner h1 {
    color: #fff;
    margin: 0px;
}

/*** BUYSELL PAGE CSS ***/
.buy-sell {
	padding: 75px 0px;
	position: relative;
}

.buy-sell .btn-default {
    margin-bottom: 15px;
}

.info-small .section-titles h2,
.buy-sell .section-titles h6,
.buy-sell .section-titles h2{
    text-transform: uppercase;
}

.info-small .section-titles p,
.buy-sell .section-titles p {
    margin-bottom: 50px;
}

.info-small {
	overflow: hidden;
	padding: 80px 0px;
    background: #000;
}

.info-small .btn-default {
    margin-top: 15px;
}

.info-small .radius {
    border-radius: 20px;
}

/*** BUYSELLFORM CSS ***/
.buysellform {
	padding:80px 0px;
	overflow: hidden;
	position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/bg-page-banner.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.buysellform h4 {
	font-size: 25px;
	margin-bottom: 10px;
	color: #000;
	letter-spacing: 1px;
	text-align:left;
}

.buysellform .bg-forms {
	border-radius: 15px;
	background: #F5EDE2;
	padding: 80px 50px;
    background: rgba(0, 0, 0, 0.5);
}

.buysellform .form-control {
    background: #fff;
    border: 0px;
    border-radius: 0px;
    padding: 10px 16px;
    margin-top: 18px;
    height: 50px;
    color: #000 !important;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

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

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

.buysellform .form-control:focus {
    color: #000;
    outline: 0;
    box-shadow: none;
    background: #fff;
    border-color: #000;
}

.buysellform textarea.form-control {
    height: 117px;
    resize: none;
}

.select2-container--default .select2-selection--multiple {
    height: auto;
    color: #000 !important;
    border: 0px!important;
    border-radius: 0px!important;
    border-bottom: 2px solid transparent!important;
    padding: 10px 16px!important;
    margin-top: 18px!important;
}

.select2-search__field {
    color: #000!important;
    margin: 0!important;
}

.select2-search__field::placeholder {
    color: #000 !important;
    letter-spacing: 1px!important;
    font-size: 12px!important;
    text-transform: uppercase!important;
}

.buysellform .section-title {
    margin-bottom: 25px;
}

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

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

.evaluation-box .bg-form {
    padding:75px 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/bg-page-banner.jpg) 50% 50% no-repeat;
    background-size: cover;
    border-radius: 20px;
}

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

.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;
    display: inline-block;
    font-family: "Roboto", sans-serif;
}

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

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

.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 fieldset.active {
    display: block;
}

.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 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
}

.evaluation-box .checkbox-group label {
    flex: 0 1 calc(50% - 10px); 
    margin-bottom: 25px; 
}

.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 {
    background: #fff;
    border: 0px;
    border-radius: 0px;
    padding: 10px 16px;
    margin-bottom: 18px;
    height: 50px;
    color: #000 !important;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.evaluation-box .form-control::placeholder{
    color: #000;
}

.evaluation-box .form-control:focus {
    color: #000;
    outline: 0;
    box-shadow: none;
    background: #fff;
    border-color: #000;
}

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

mw-calc-panel-body, mw-calc-section {
	background:#cc9741 !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: 400 !important;
}

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

#calculate_lt {
	color: #F5EDE2 !important;
    background: #000 !important;
}

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

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

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

/*** CONTACTPAGE INFO ***/
.contactpage-info {
    padding: 70px 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/bg-page-banner.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.contactpage-info .bg {
    background:rgba(255, 255, 255, 0.25);
    overflow: hidden;
    padding: 45px 35px;
    border-radius: 20px;
}

.contactpage-info h5 {
    font-size:18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
	text-align:left;
}

.contactpage-info .form-control {
    background: #fff;
    border: 0px;
    border-radius: 0px;
    padding: 10px 16px;
    margin-bottom: 18px;
    height: 50px;
    color: #000 !important;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.contactpage-info .form-control::placeholder{
    color: #000;
}

.contactpage-info .form-control:focus {
    color: #000;
    outline: 0;
    box-shadow: none;
    background: #fff;
    border-color: #000;
}

.contactpage-info textarea.form-control {
    height: 117px;
    resize: none;
}

.contactpage-info .social-media .fa {
    width: 20px;
    font-size: 20px;
}

.contactpage-info .social-media {
    margin:0px 0px 25px 0px;
}

.contactpage-info .social-media a {
    display: inline-block;
    border: 1px solid #fff;
    text-align: center;
    line-height: 38px;
    width: 36px;
    height: 36px;
    border-radius:36px;
    margin-right: 5px;
}

.contactpage-info .social-media a:hover {
    background: #cc9741;
    border-color: #cc9741;
    color: #fff;
}

.contactpage-info .social-media a img {
    max-height: 18px;
    margin-top: -4px;
}

.contactpage-info .social-media a:hover img {
    filter: invert(1);
}

.contactpage-info h3 {
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'quasimoda', sans-serif;
}

.contact-info>i {
    margin-top: 1px;
    margin-right: 12px;
    color: #fff;
    font-size: 16px;
    background: #cc9741;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}

.contact-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-info.white a:hover {
    color: #fff !important;
}

/*** OUR TEAM ***/
.our-team {
    padding: 70px 0px;
    background: #000;
}

.teambox {
    margin-bottom: 35px;
}

.teambox .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 340px;
    margin-bottom: 2px;
    overflow: hidden;
}

.teambox .img img {
    height:100%;
    object-fit: cover;
    border-radius: 20px;
}

.teambox .text {
    margin-top: 0px;
}

.teambox h3 {
    font-size: 36px;
    margin-bottom: 0px;
}

.teambox p {
    font-size: 13px;
    margin-bottom: 0px;
    font-family: "Roboto", sans-serif;
    letter-spacing: 2px;
    color: #cc9741;
    text-transform: uppercase;
}

.teambox .img .read {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 340px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    transition: all .4s linear;
    z-index: 3;
    opacity: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

.teambox:hover .img .read {
    opacity: 1;
}

/*** BLOG INFO ***/
.bloginfo {
    padding:70px 0px;
    background-color: #141414;
}

.blogbox {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #000;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 1px 6px 0px rgba(0,0,0,.2);
    transition: all .3s;
    overflow: hidden;
}

.blogbox:hover {
    color: #000;
}

.blogbox .img {
    height: 250px;
    overflow: hidden;
}

.blogbox .img img {
    display: block;
    transition: all 1.2s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blogbox:hover .img img {
    transform: scale(1.1);
    transition: all 5s ease-out;
}

.blogbox .text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 25px;
}

.blogbox .text .blogbox-content {
    flex-grow: 1;
}

.blogbox .text p {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogbox h4 {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #959595;
    margin-bottom: 12px;
}

.blogbox h4 .delim {
    color: #959595;
    font-size: 14px;
    font-style: normal;
}

.blogbox h4 span {
    color: #1B2E47;
    font-style: italic;
}

.blogbox h3 {
    margin-top: 10px;
    font-size:24px;
    line-height: 1.2;
    letter-spacing:0px;
    font-weight: 500;
    color: #cc9741;
    font-family: "Roboto", sans-serif;
}

.blogbox .learn-text {
    letter-spacing: 3px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.blogbox .learn-text:hover {
    color: #000;
    text-decoration: underline;
}

/*** TESTIMONIALS INFO ***/
.testimonials-info {
    padding: 70px 0px 45px 0px;
    background: #000;
}

.testibox {
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
}

.testimonial-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 30px;
}

.testimonial-box .testimonial-content {
    flex-grow: 1;
}

.testimonial-box h5 {
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    margin-top: 25px;
    margin-bottom: 5px;
}

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

.testimonial-box .stars i {
    font-size: 18px;
    margin-bottom: 0;
    color: #cc9741;
}

mw-calc-panel-body.mw-panel-active {
    display: block;
    border-radius: 20px !important;
}

.main-nav .navbar .navbar-nav .nav-item.menu-item-has-children>.nav-link:after {
	display: inline-block;
	margin-left: 4px;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
	font-size: 14px;
	transition: all .3s;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link,
.navbar-light .navbar-nav>.nav-item.current-menu-item>.nav-link,
.navbar-light .navbar-nav>.nav-item.current-menu-parent>.nav-link {
	color: #cc9741 !important;
	font-weight: bold;
}

.navbar-light .navbar-nav .nav-item>.sub-menu>li {
	margin: 0px;
	padding: 0px;
}

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

.side-menu ul.main-menu>li.current-menu-parent>a,
.side-menu ul.main-menu>li.current_page_item>a {
	background: none;
	color: #cc9741;
	font-weight: bold !important;
}

.side-menu ul.main-menu>li.current-menu-parent>a, .side-menu ul.main-menu.navbar-nav>li.current_page_item>a {
	background: none;
	color: #cc9741;
	font-weight: bold !important;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	color: #fff;
	text-decoration:none;
}

.navigation li {
	display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	background-color: #fff;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px;
	padding: 0.75rem;
	color:#000;
}

.navigation li a:hover,
.navigation li.active a {
	background-color: #cc9741;
}

.modal-backdrop {
	z-index: 99999;
}

.modal {
	z-index: 999999;
	padding: 0px !important;
}

.modal.guide .modal-body {
	padding: 70px 30px 70px 30px;
	background: #000;
}

.modal.guide button.btn-close {
	font-size: 17px;
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 1;
	filter: invert(1);
}

.modal.guide button.btn-close svg,
.modal.guide button.btn-close i {
	opacity: 0;
}

.modal.guide .modal-dialog {
	max-width: 600px !important;
}

.modal.guide .btn-default {
	display: block;
	margin: 0 auto;
	margin-top: 25px;
}


.modal.guide .section-title h2 {
	font-size: 45px;
}

.modal.guide .form-control {
	width: 100%;
	height: 51px;
	border: none;
	border: 1px solid #000;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .02em;
	color: #000;
	margin: 10px 0px;
	padding: 0 15px;
	border-radius: 0px;
	outline: 0;
	box-shadow: none;
}

.modal.guide .form-control::-webkit-input-placeholder {
	color: #000;
}

.modal.guide textarea.form-control {
	height: 100px;
	resize: none;
	margin-top: 30px;
}



div.wpcf7-mail-sent-ok,
div.wpcf7 form.sent .wpcf7-response-output {
	background-color: #e6f9ee; 
	color: #1b7f3a;
	border: 2px solid #1b7f3a;
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	margin-top: 15px;
}

div.wpcf7-validation-errors,
div.wpcf7 form.invalid .wpcf7-response-output {
	background-color: #ffecec; 
	color: #b71c1c; 
	border: 2px solid #b71c1c;
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	margin-top: 15px;
}

div.wpcf7 form.spam .wpcf7-response-output {
	background-color: #fff6e5; /* soft yellow */
	color: #b36b00;
	border: 2px solid #b36b00;
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 16px;
	margin-top: 15px;
}

span.wpcf7-not-valid-tip {
	color: #b71c1c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	animation: fadeIn 0.4s ease-in-out;
}

input.wpcf7-form-control.wpcf7-not-valid{
	border: 2px solid #f00 !important;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-5px); }
	to { opacity: 1; transform: translateY(0); }
}

.header {
    padding: 36px 10px;
}
 
.header.fixed {
    padding: 20px 10px;
}
 
.evaluation-box .cf7mls_next.action-button, .evaluation-box .cf7mls_back.action-button, .evaluation-box .action-button {
    margin-bottom: 5px;
    transition: all .3s;
    opacity: 1 !important;
    line-height: 1.5 !important;
    text-align: center;
    border-radius: 7px;
    color: #fff;
    outline: 0px;
    padding: 10px 50px !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    letter-spacing: 1px;
    border: 2px solid #cc9741;
    font-family: "Roboto", sans-serif;
    background: linear-gradient(to bottom, #b07d2e 0%, #dbce8e 50%, #b07d2e 100%);
}
 
.evaluation-box .cf7mls_next.action-button:hover, .evaluation-box .cf7mls_back.action-button:hover, .evaluation-box .action-button:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}
 
.evaluation-box .navigate-btns button[type="submit"] {
    margin-left: auto;
}
 
.evaluation-box .checkbox-group span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
 
.evaluation-box .checkbox-group .wpcf7-list-item {
    flex: 0 1 calc(50% - 10px);
    margin: 0px;
    margin-bottom: 25px !important;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
 
.evaluation-box .checkbox-group .wpcf7-list-item label {
    margin: 0;
}
 
.evaluation-box input[type="submit"].btn-default, .evaluation-box button[type="submit"].btn-default {
    margin-left: auto;
}
 
input[type="submit"], button[type="submit"] {
    transition: all .3s;
}
 
.evaluation-box input[type="checkbox"] {
    margin-right: 7px;
}
 
 .testimonial-box {
    justify-content: start;
}

.sold-map {
    background: #000;
}