@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=Syncopate:wght@400;700&display=swap');

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

body {
  font-size: 18px;
  color: #000;
}

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

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: "Syncopate", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  color: #000;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
}

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

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

.btn-default {
  border-radius: 7px;
  background: #b0a99f;
  color: #fff;
  border: 2px solid #b0a99f;
  outline: 0px;
  padding: 10px 50px;
  text-transform: uppercase;
  font-family: "Cormorant", serif;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  text-align: center;
}

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

.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: "Cormorant", serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #000;
}

/*** 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 0.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: 100;
  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;
  top: 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: #000;
  font-weight: 600;
}

.side-menu .menu-item-has-children:hover > a,
.side-menu .menu-item-has-children.active > a {
  color: #000;
  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);
}

a.menu-btn.active {
  /* opacity: 0;
    pointer-events: none; */
}

a.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

a.menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg);
  position: relative;
  top: 14px;
}

a.menu-btn.active span:last-child {
  transform: rotate(45deg);
  width: 100%;
  position: relative;
  top: -4px;
}

a.menu-btn.active span:last-child {
  width: 100%;
}

.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: #eeeae3 !important;
  color: #000 !important;
}

.side-menu ul.main-menu li ul.sub-menu li a {
  padding: 7px 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: 20px 90px;
  z-index: 900;
  overflow: visible;
  transition: all 0.3s;
}

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

.header.fixed {
  position: fixed;
  background: #eeeae3;
  padding: 10px 90px;
  z-index: 900;
}

.header .navbar-brand {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .navbar-brand img {
  width: 115px;
}

.header .navbar-brand img {
  filter: brightness(0) invert(1);
}

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

.header .navbar-brand.hide-logo {
  display: none;
}

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

.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 0.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 5px;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  transition: 0.4s all ease;
}

.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: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: all 0.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: #eeeae3;
  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;
}

.header.fixed .main-nav .navbar .navbar-nav > .nav-item:hover > .nav-link,
.header.fixed .main-nav .navbar .navbar-nav > .nav-item.active > .nav-link {
  color: #000;
}

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

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

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

.navbar-expand-xl .navbar-nav > .nav-item .dropdown-menu,
.navbar-expand-xl .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 0.3s, opacity 0.3s, visibility, 0.3s;
  display: block;
  min-width: 200px;
  background: none !important;
  border: none !important;
}

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

.navbar-expand-xl .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-xl .navbar-nav > .nav-item .sub-menu li:hover > a.nav-link,
.navbar-expand-xl .navbar-nav > .nav-item .sub-menu .active > a.nav-link {
  background: #67483d !important;
  color: #fff !important;
}

.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: 45px;
}

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

.header .navbar-nav.logo .nav-item > a > img {
  height: 70px;
  filter: invert(0) brightness(0);
}

.header .navbar-nav.logo .nav-item > a {
  height: 70px;
  filter: invert(1) brightness(1);
}

.header.fixed .navbar-nav.logo .nav-item > a,
.header.fixed .navbar-nav.logo .nav-item > a img {
  filter: none;
}

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

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

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

.hero-content .hero-logo-ctn img {
  max-width: 400px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.hero-content .btn-default.btn-active,
.hero-content .btn-default:hover {
  background: #fff;
  color: #000;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  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;
}

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

.our-values.beige-bg {
  background: #F2F2F0;
}

.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: 0;
  left: 0;
  width: 250px;
  height: 75%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}

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

.our-values .points-ctn {
  border-right: 1px solid #000;
}

.our-values .points-ctn:last-of-type {
  border-right: none;
}
.buysellform .form-control .our-values .points-title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.our-values .points-title p {
  font-family: "Cormorant", serif;
  font-size: 80px;
  line-height: 1;
  color: #000;
  margin: 0;
}

.our-values .points-title h3 {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  text-wrap: balance;
  line-height: 1;
  color: #000;
  margin: 15px 0 20px 0;
}

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

/*** WHY WORK WITH ME ***/
.why-work {
  padding: 60px 0px;
}

.why-work .why-work-content h6 {
  font-size: 22px;
}

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

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

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

/*** COMMUNITIES ***/
.communities {
  background: #F2F2F0;
  padding: 100px 0px;
}

.communities figure {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.communities figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  transition: 0.4s all ease;
}

.communities figure:hover::after {
  opacity: 0.5;
}

.communities figure::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid #F2F2F0;
  border-radius: 20px;
  z-index: 10;
  opacity: 0;
  transition: 0.4s all ease;
}

.communities figure:hover:before {
  opacity: 1;
}

.communities figure img {
  aspect-ratio: 1 / 1.5;
  aspect-ratio: 1 / 0.4;
  object-fit: cover;
  width: 100%;
}

.communities figure h5 {
  position: absolute;
  bottom: 20px;
  left: 0px;
  color: #fff;
  width: 100%;
  text-align: center;
  z-index: 9;
}

/*** TESTIMONIALS ***/
.testimonials {
  background: #fff;
  padding: 60px 0px;
}

.testimonials .owl-stage {
  display: flex;
  /* align-items: center; */
}

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

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

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

.testimonials .owl-nav button {
  border-radius: 80px !important;
  border: 1px solid #000 !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: #000 !important;
}

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

.testimonials h5 {
  color: #000;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 5px;
}

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

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

.testimonials .item {
  padding: 30px 60px;
  background: #f5f5f5;
  border-radius: 50px;
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cta .cta-card {
  position: relative;
  width: 100%;
  height: 200px;
  border: 1px solid #EEEAE3;
  border-radius: 20px;
  overflow: hidden;
}

.cta .cta-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta .cta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.cta .cta-card:hover img {
  transform: scale(1.08);
}

.cta .cta-card .cta-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9;
}

.cta .cta-card .cta-content h5 {
  text-align: center;
  color: #fff;
}

.cta .cta-card .cta-content span {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}
/*** INSTAGRAM ***/
.instagram {
  padding: 100px 0px;
}

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

/*** CONTACT FORM ***/
.contact-form {
  padding: 60px 0px;
}

.contact-form .form-box {
  padding: 60px 100px 60px 0px;
}

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

.form-box .form-control:focus {
  border-bottom: solid 2px #000;
}

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

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

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

.form-box .btn-default {
  border-radius: 7px;
  background: #b0a99f;
  color: #fff;
  border: 2px solid #b0a99f;
  outline: 0px;
  padding: 10px 50px;
  text-transform: uppercase;
  margin-top: 30px;
  font-family: "Cormorant", serif;
  font-weight: bold;
  margin-bottom: 0px;
  font-size: 16px;
}

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

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

.footer h5 {
  text-transform: uppercase;
  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 {
  text-decoration: underline;
  color: #000;
}

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

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

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

.footer .social-media {
  margin: 25px 0px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-evenly;
}

.footer .social-media a {
  border: 1px solid #000;
  text-align: center;
  line-height: 38px;
  width: 36px;
  height: 36px;
  border-radius: 36px;
}

.footer .social-media a:hover {
  background: #000;
  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 #000;
}

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

.footer .logos img {
  margin-bottom: 10px;
  display: inline-block;
}

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

.page-banner h1 {
  color: #fff;
  margin: 0px;
  font-size: 60px;
  text-transform: uppercase;
}

/*** Properties ***/
.properties {
  padding: 70px 0px;
}

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

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

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

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

.property-box h3 {
  text-transform: uppercase;
  letter-spacing: 0.64px;
  font-size: 16px;
  margin: 0;
  font-weight: 300;
}

.property-box h4 {
  letter-spacing: 0.64px;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

.property-box ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin-top: 5px;
}

.property-box ul li,
.property-box p {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.7;
  margin: 0;
}

.property-box ul li {
  font-size: 14px;
}

.property-box:hover ul li,
.property-box:hover p {
  color: #000;
}

.property-box ul li {
  border-right: solid 1px #000;
  line-height: 1;
  padding: 0 8px;
}

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

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

/*** Buysell page ***/
.buy-sell {
  padding: 75px 0px;
  position: relative;
  background: #F2F2F0;
}

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

.buy-sell .btn-link {
  color: #eeeae3;
  font-weight: bold;
}

.buy-sell .btn-link:hover {
  color: #fff;
}

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

/************* buysellform ********************/

.buysellform {
  padding: 70px 0px 0px 0px;
  overflow: hidden;
  position: relative;
}

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

.buysellform .bg-forms {
  border-radius: 15px;
  background: #F2F2F0;
  padding: 80px 50px;
}

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

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

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

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

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

.buysellform .select2-container--default .select2-selection--multiple:focus {
  /* outline: 0!important; */
  box-shadow: none!important;
  border-color: #000!important;
}

.buysellform
  .select2-container--default
  .select2-search--inline
  .select2-search__field::placeholder {
    font-size: 16px!important;
  color: #000;
  opacity: 1;
}

/*** FREE HOME EVALUATION ***/
.evaluation-box {
  padding: 75px 0px;
  position: relative;
}

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

.evaluation-box label {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  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: #000;
  border: 1px solid #000;
  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: 0.5px;
}

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

.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: #000;
}

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

/*** Calculator info ***/
.calc-info {
  padding: 70px 0px;
  overflow: hidden;
}

#mw-calculators {
  font-size: 18px!important;
}

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

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

mw-calc-label {
  color: #000 !important;
  font-weight: 400 !important;
}

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

#calculate_lt {
  font-size: 18px!important;
  color: #eeeae3 !important;
  background: #000 !important;
}

#calculate_lt:hover {
  color: #eeeae3 !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: #eeeae3 !important;
}

/*** contactpage-info ***/
.contactpage-info {
  padding: 70px 0px;
}

.contactpage-info .bg {
  background: #F2F2F0;
  overflow: hidden;
  padding: 45px 35px;
}

.contactpage-info h5 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #000;
  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;
  font-size: 16px;
  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 #000;
  text-align: center;
  line-height: 38px;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  margin-right: 5px;
}

.contactpage-info .social-media a:hover {
  background: #000;
  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 {
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "quasimoda", sans-serif;
}

.contactpage-info .btn-default {
  margin-top: 30px;
}

.contact-info > i {
  margin-top: 1px;
  margin-right: 12px;
  color: #000;
  font-size: 18px;
  background: #eeeae3;
  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: #000;
  text-decoration: underline;
}

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

/*** our team ***/
.our-team {
  padding: 70px 0px;
}

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

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

.teambox h3 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.teambox p {
  font-size: 13px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  color: #67483d99;
  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, 0.6);
  color: #fff;
  transition: all 0.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;
}

/*** bloginfo ***/
.bloginfo {
  padding: 50px 0px 25px 0px;
}

.blogbox {
  display: inline-block;
  width: 100%;
  position: relative;
  transition: all 0.3s;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.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 {
  padding: 25px;
  min-height: 240px;
}

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

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

.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;
  letter-spacing: 2px;
  font-weight: 500;
}

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

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

/*** Communities page ***/

.lavalinfo {
  position: relative;
  padding: 80px 0px 0px 0px;
  overflow: hidden;
}

.lavalcontent {
  padding: 70px 0px 70px 0px;
  overflow: hidden;
  background: #F2F2F0;
}

.lavalcontent .nav-tabs {
  border: none;
  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;
  min-width: 180px;
  font-family: "Cormorant", serif;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 7px;
  background: #b0a99f;
  padding: 10px 25px;
  margin-bottom: 10px;
}

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

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

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

.lavalcontent .table tr td:nth-child(even) {
  text-align: right;
}

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

.lavalcontent .table tr td b {
  font-weight: bold;
}

.lavalcontent .bgs h3 {
  color: #000;
  font-weight: 400;
  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 .bgs h6 {
}

.pop_graphs img {
  width: 100%;
}

.links-content ul {
  padding-left: 15px;
}

.links-content ul li {
  color: #000;
  font-size: 18px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.links-content ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

ul,
ol {
  margin: 0px;
}

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

.main-nav
  .navbar
  .navbar-nav
  .nav-item.menu-item-has-children:hover
  > .nav-link:after {
  transform: rotate(180deg);
  margin-top: -3px;
}

.navbar-expand-xl .navbar-nav > .nav-item .sub-menu li {
  padding: 0px !important;
}

.navbar-expand-xl
  .navbar-nav
  > .nav-item
  .sub-menu
  li.current-menu-item
  > a.nav-link,
.navbar-expand-xl .navbar-nav > .nav-item .sub-menu li:hover > a.nav-link,
.navbar-expand-xl .navbar-nav > .nav-item .sub-menu li.active > a.nav-link {
  background: #b0a99f !important;
  color: #fff !important;
}

.navbar-light .navbar-nav .nav-item.current_page_item > .nav-link,
.navbar-light .navbar-nav .nav-item.current-menu-parent > .nav-link {
  color: #eeeae3;
  font-weight: bold;
}

.main-nav .navbar ul.navbar-nav.logo {
  margin-right: auto;
  margin-left: 0;
}

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

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

.side-menu ul.main-menu li.current-menu-item > a,
.side-menu ul.main-menu li.current-menu-ancestor > a {
  color: #000;
  font-weight: 600;
}

.side-menu ul.main-menu li ul.sub-menu li.current-menu-item > a {
  background: #eeeae3 !important;
  color: #000 !important;
}

input.wpcf7-form-control.wpcf7-not-valid {
  border-bottom: 2px solid #f00 !important;
}
span.wpcf7-not-valid-tip {
  display: none;
}
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  display: inline-block !important;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
  display: inline-block !important;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none !important;
}
.wpcf7 form .wpcf7-response-output {
  display: inline-block !important;
}

.why-work .why-work-content h6 {
  display: flex;
  align-items: center;
}

.otgs-development-site-front-end {
  display: none;
}

.wpcf7-list-item {
  margin: 0 !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: #eeeae3;
  border-radius: 3px;
  cursor: pointer;
  padding: 12px;
  padding: 0.75rem;
  color: #000;
}

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

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

.evaluation-box .cf7mls_next.action-button,
.evaluation-box .cf7mls_back.action-button,
.evaluation-box .action-button {
  line-height: 1.5;
  flex-wrap: wrap;
  margin-bottom: 5px;
  transition: all 0.3s;
  opacity: 1 !important;
  letter-spacing: 0;
  border-radius: 7px;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  outline: 0px;
  padding: 10px 40px !important;
  text-transform: uppercase;
  font-family: "Cormorant", serif;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
}

.evaluation-box .cf7mls_next.action-button:hover,
.evaluation-box .cf7mls_back.action-button:hover,
.evaluation-box .action-button:hover {
  border: 2px solid #000 !important;
  background: #fff !important;
  color: #000 !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;
}

.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 0.3s;
}

.evaluation-box input[type="checkbox"] {
  margin-right: 7px;
}

.testimonial-box {
  padding: 40px 40px;
  background: #f5f5f5;
  border-radius: 30px;
  margin-bottom: 35px;
  height: calc(100% - 35px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-box h5 {
  color: #000;
  margin-top: 25px;
  margin-bottom: 5px;
}

.testimonial-box .stars {
  margin-bottom: 15px;
}

.testimonial-box .stars i {
  margin-bottom: 15px;
  color: #e7c51f;
}

.instagram.inner {
  padding: 100px 0px 80px 0px;
}

.instagram.inner .hover-animate {
  margin-bottom: 25px;
}
