@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap"); /*** GENERIC CSS ***/
html,
body {
  font-family: "Quicksand", sans-serif;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  background: #fff;
  color: #000;
  padding: 15px;
  padding-bottom: 0;
}

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

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 {
  color: #000;
  font-weight: 300;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
}

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

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

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

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

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

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 {
  font-family: "Quicksand", sans-serif;
  letter-spacing: 4px;
  font-weight: 500;
}

.btn-default {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  border: solid 1px #000;
  border-radius: 0px;
  background: transparent;
  transition: all 0.4s ease-in-out;
  padding: 15px 25px;
}

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

.btn-cream {
  background: #faf8f1;
  color: #000;
}

ul.bulleted-list {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.bulleted-list li {
  position: relative;
  padding-left: 40px;
  margin: 15px 0px;
  line-height: 32px;
}

ul.bulleted-list li::before {
  content: ">>";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  background: #e60000;
  color: #fff;
  border-radius: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

/*** SIDEMENU ***/
.side-menu {
  z-index: 100;
  transform: translateY(-100%);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background: #faf8f1;
  width: 100%;
  transition: 0.5s all;
  overflow: hidden;
  padding-top: 70px;
}

.side-menu.active {
  transform: translateY(0);
}

.closeSideMenu {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff !important;
  background: #000;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.side-menu .agent-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.side-main-menu li {
  border-bottom: 1px solid #ccc;
}

.side-main-menu li a {
  color: #252525;
  font-size: 22px;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 30px;
  display: inline-block;
  width: 100%;
}

.side-main-menu .sub-menu {
  list-style: none;
}

.side-main-menu .sub-menu li {
  border: 0px;
}

.side-main-menu .sub-menu a {
  font-size: 16px;
  padding: 5px 30px;
}

.side-main-menu li:hover a {
  color: #e60000;
}

/*** HEADER ***/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 30px 15px 15px 15px;
}

.header .navbar {
  display: flex;
  width: 100%;
  align-items: center;
}

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

.header .navbar-brand .logo img {
  max-height: 50px;
  filter: brightness(0) invert(1);
}

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

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

.header .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 1px;
  font-size: 15px;
}

/* Add specific style for single properties page */

.header .nav-item:hover .nav-link {
  opacity: 0.7;
}

.header .menu-btn {
  color: #000 !important;
  background: #faf8f1;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hide desktop burger menu on larger screens */
@media screen and (min-width: 992px) {
  .header .navbar-collapse .menu-btn {
    display: none;
  }
}

.header .menu-btn span {
  background: #000 !important;
  height: 2px;
  margin: 2px 0px;
  transition: all 0.3s;
  float: right;
}

.header .menu-btn div {
  margin-right: 0px;
  margin-left: 0px;
  position: relative;
  top: 0px;
  vertical-align: middle;
  width: 25px;
}

.header .menu-btn div span:last-child {
  width: 50%;
  float: right;
}

.header .menu-btn:hover div span:first-child {
  width: 50%;
}

.header .menu-btn:hover div span:last-child {
  width: 100%;
}

.header .menu-btn {
  color: #000;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 5px;
}

.header .menu-btn:hover {
  color: #f0e6e6 !important;
}

.header .menu-btn div {
  position: relative;
  display: inline-block;
  width: 30px;
  position: relative;
  top: -2px;
  vertical-align: middle;
}

.header .menu-btn div span {
  display: block;
  width: 100%;
  height: 3px;
}

.header.fixed {
  background: #faf8f1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.header.fixed .nav-link {
  color: #000;
}

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

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

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

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

.navbar-nav > .nav-item .sub-menu li {
  background: #fff !important;
  text-align: center;
  border-bottom: 1px solid #000;
}

.navbar-nav > .nav-item .sub-menu li > a.nav-link {
  display: inline-block;
  width: 100%;
  font-weight: 500;
  text-transform: inherit;
  font-size: 15px;
  text-decoration: none !important;
  padding: 8px 14px;
  display: block;
  text-transform: uppercase;
  color: #000 !important;
  background: none !important;
}

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

/*** HERO ***/
.hero {
  width: 100%;
}

.hero--video {
  position: relative;
}

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

.hero .logo img {
  max-height: 150px;
  margin-bottom: 50px;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-content .hero-title {
  text-align: center;
}

.hero-content .hero-title h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-content .hero-title p {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 9px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.hero-content .btn-default {
  background: none;
  border-color: #fff;
  border-color: #fff;
}

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

.hero video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.hero .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, #000c, #0000 15.13%),
    linear-gradient(180deg, #0000 46.88%, #0009);
  z-index: 4;
}

.banner-carousel {
  position: absolute;
  top: 15px;
  right: 0;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  height: 100%;
  z-index: 3;
}

.hero .item {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero .item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero .owl-dots {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 99;
}

.hero .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: -4px 10px;
  background: rgb(206, 206, 206);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}

/*** CTA ***/
.cta {
  padding: 75px 0;
  background: linear-gradient(to bottom, #fff 65%, #faf8f1 20%);
}

.cta .img {
  position: relative;
  transition: 400ms all ease;
  overflow: hidden;
}

.cta .img::before {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, #000);
  opacity: 0.4;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  transition: 400ms all ease;
  z-index: 1;
}

.cta .img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  transition: 0.4s all ease;
}

.cta .inner {
  position: relative;
}

.cta .inner .text h4 {
  font-size: 26px;
  text-transform: uppercase;
  padding-bottom: 20px;
  letter-spacing: 3px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  transition: 0.4s all ease;
}

.cta .inner .text {
  top: 70%;
  position: absolute;
  text-align: center;
  width: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2;
}

.cta a:hover .img::before {
  background-color: #000;
}

.cta a:hover .text h4 {
  transform: translateY(-50px);
}

.cta a:hover .img img {
  transform: scale(1.05);
}

/*** ABOUT ***/
.about {
  padding: 75px 0 0;
}

.about.about-page {
  padding: 170px 0 50px 0;
}

.about-social-ctn {
  padding-bottom: 50px;
}

.about .contact-info {
  font-size: 18px;
}

.about p {
  text-align: justify;
}

.imgbox {
  position: relative;
  max-width: 560px;
  padding: 40px 0 0 41.11px;
  margin: 50px 0px 40px;
}

.imgbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 61px);
  height: calc(100% - 57px);
  background: url(../img/about-overlay.jpg) 50% 50% no-repeat;
  background-size: cover;
  z-index: 1;
}

.imgbox img {
  width: 100%;
  position: relative;
  z-index: 10;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: top center;
}

.about p {
  margin-bottom: 25px;
}

/*** PROPERTIES ***/
.properties {
  padding: 75px 0px;
  background: #faf8f1;
}

.properties .grid .image-wrapper {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.properties .grid .img {
  aspect-ratio: 1 / 0.7;
}

.properties .grid .img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.4s all ease;
}

.properties .grid:hover img {
  transform: scale(1.1);
}

.properties .grid .image-wrapper::after {
  background: rgba(0, 0, 0, 0.5) url(../img/logo-white.png) 50% 50% no-repeat;
  background-size: 60% auto;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.properties .grid:hover .image-wrapper::after {
  opacity: 1;
}

.properties .grid .price {
  margin-bottom: 0px;
}

.properties .grid .address {
  font-weight: 700;
}

.properties .grid .details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.properties .grid .details li {
  display: inline-block;
}

.properties .grid .details li:not(:last-child)::after {
  content: "|";
  margin: 0 5px;
}

.properties .grid * {
  color: #000;
}

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

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

/*** TESTIMONIALS ***/
.testimonials {
  background: #faf8f1;
  background-size: cover;
  padding: 75px 0px 0px 0px;
}

.testimonials .bg-cream {
  background: #faf8f1;
  padding: 0 50px 50px 50px;
  position: relative;
}

.testimonials .testimonial-name p {
  margin-bottom: 0;
}

.testimonials .owl-carousel {
  padding: 0px 100px;
}

.testimonials .owl-nav {
  position: absolute;
  bottom: 50%;
  right: 0px;
  height: 50px;
  padding: 0px;
  margin: 0px auto;
  width: 100%;
  text-align: center;
}

.testimonials .owl-nav .owl-prev {
  float: left;
  margin-left: -50px;
}

.testimonials .owl-nav .owl-next {
  float: right;
  margin-right: -50px;
}

.testimonials .owl-nav button {
  height: 50px;
  width: 50px;
  border-radius: 0px !important;
  padding: 0px !important;
  margin: 0px 0px 0px 2px !important;
  background: none !important;
  border: 1px solid #000 !important;
  transition: 0.4s all ease;
}

.testimonials .owl-nav button span {
  font-size: 36px;
  line-height: 18px;
}

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

.testimonials .owl-nav button:hover span {
  color: #fff !important;
}
.testimonials .owl-dots {
  margin-top: 30px;
}

/*** SOCIAL MEDIA ***/
.social-media {
  background: #faf8f1;
  padding: 100px 0px;
}

.social-media .socials-loop .cols {
  padding: 0px;
  position: relative;
}

.social-media .socials-loop .cols img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: center;
}

.social-media .socials-loop .cols::before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.social-media .socials-loop .cols::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/logo-white.png) 50% 50% no-repeat;
  background-size: 50% auto;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.social-media .socials-loop .cols:hover::after,
.social-media .socials-loop .cols:hover::before {
  opacity: 1;
}

.social-media .social-items a {
  font-size: 24px;
  border: 1px solid #000;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 52px;
  display: inline-block;
  padding: 0px;
  border-radius: 52px;
  margin: 0px 5px;
}

.social-media .social-items a:hover {
  background: #e60000;
  color: #fff;
  border-color: #e60000;
}

/*** CONTACT FORM ***/
.contact-form {
  background: linear-gradient(
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.25)
    ),
    url(../img/bg-contact-form.webp) fixed 50% 50% no-repeat;
  background-size: cover;
  padding: 200px 0 100px 0px;
}

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

.contact-form .bg-white {
  padding: 50px;
}

.form-box .form-control {
  width: 100%;
  display: inline-block;
  border-radius: 0;
  height: 47px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #000;
  outline: none;
  border: 1px solid #000;
  background: transparent;
  background-size: 27px auto;
  padding: 0px 15px 0px 15px;
  margin-bottom: 15px;
}

.form-box .form-control:focus {
  border: 1px solid #e60000;
  box-shadow: none;
}

.form-box textarea.form-control {
  padding: 15px 15px;
  height: 100px;
  resize: none;
  border: 1px solid #000;
}

.form-box label {
  display: block;
  margin-bottom: 10px;
}

/*** FOOTER ***/
.footer {
  position: relative;
  background: #fff;
  background-size: cover;
  padding: 60px 0px;
}

.footer .tp {
  padding-top: 86px;
}

.footer .logo img {
  max-height: 100px;
  margin-bottom: 30px;
}

.footer h6 {
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.65px;
  line-height: 1.5;
  padding: 6px 0;
  font-size: 15px;
}

.contact-info * {
  color: #000000;
}

.contact-info .img {
  margin-right: 8px;
  min-width: 20px;
  margin-top: 2px;
}

.contact-info .img img {
  max-width: 16px;
}

.footer .social-items {
  margin-top: 20px;
}

.footer a:hover,
.contact-info a:hover {
  color: #e60000;
}

.contact-info:hover img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(99%) saturate(7059%)
    hue-rotate(360deg) brightness(101%) contrast(114%);
}

.footer .social-items a {
  font-size: 21px;
  margin-right: 15px;
  color: #000000;
  transition: all 0.4s ease-in-out;
}

.footer .social-items a:last-child {
  margin-right: 0px;
}

.footer .links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 100%;
  margin-top: 25px;
}

.footer .links ul li {
  display: inline-block;
  width: 49.5%;
}

.footer .links ul li a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  transition: all 0.4s ease-in-out;
  margin-bottom: 30px;
}

.footer .links ul li:hover a {
  text-decoration-color: #e60000;
  color: #e60000;
}

.newsletter {
  background: #ffffffbf;
  box-shadow: 0 7px 29px #00000040;
  padding: 36px 20px;
  width: 100%;
  margin: 0 auto;
  margin-top: 0px;
}

.newsletter .form-control {
  width: 100%;
  display: inline-block;
  border-radius: 0;
  height: 47px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: #828282;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-bottom: 1px solid #999;
  background: transparent;
  background: #fff url(../img/submit-arrow.svg) 100% 50% no-repeat;
  background-size: 27px auto;
  padding: 0px 40px 0px 0px;
  box-shadow: none !important;
  outline: none !important;
}

.footer .copy {
  margin-top: 50px;
}

/*** PAGE BANNER ***/
.page-banner {
  height: 450px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: end;
  margin-bottom: 60px;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000c, #0000 15.13%),
    linear-gradient(180deg, #0000 46.88%, #0009);
}

.page-banner .container {
  padding: 0px 70px;
}

.page-banner .breadcrumbs {
  background: #fff;
  display: inline-block;
  padding: 30px 40px;
  position: relative;
  z-index: 2;
  bottom: -20px;
}

.page-banner h1 {
  line-height: 1;
  margin-bottom: 0px;
  letter-spacing: -1px;
}

.page-banner .breadcrumbs ul {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.page-banner .breadcrumbs ul li {
  display: inline-block;
  margin: 0px 5px;
  text-transform: uppercase;
}

.page-banner .breadcrumbs ul li:first-child {
  margin-left: 0px;
}

.page-banner .breadcrumbs ul li a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.2px;
}

.page-banner .breadcrumbs ul li:hover a {
  opacity: 0.8;
  color: #000;
}

.prop-list .cols {
  margin-bottom: 30px;
  margin-right: 10px;
}

.properties.inner-page {
  padding: 25px 0 50px 0;
  background: #fff;
}

.properties.inner-page .btn-active {
  background: #e60000;
  color: #fff;
}

.prop-pagination .page-item {
  margin: 0px 2px;
}

.prop-pagination .page-link {
  border: 0px;
  font-weight: 400;
  font-size: 22px;
  display: inline-block;
  padding: 0px 15px;
  border-radius: 0px !important;
  background: #000;
  color: #fff;
}

.prop-pagination .page-link:hover,
.prop-pagination .page-link:last-child:hover i {
  background: #e60000;
  color: #fff;
}

.prop-pagination .disabled .page-link {
  background: none;
}

.prop-pagination .disabled .page-link i {
  color: #ccc;
}

.contact-form .social-items {
  margin-top: 50px;
}

.contact-form .social-items a {
  font-size: 18px;
  border: 1px solid #000;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  display: inline-block;
  padding: 0px;
  border-radius: 42px;
  margin: 0px 5px;
}

.contact-form .social-items a:hover {
  background: #e60000;
  color: #fff;
  border-color: #e60000;
}

.info-small .bg {
  padding: 50px 30px;
  background: #faf8f1;
}

.info-small .section-title {
  margin-bottom: 20px;
}

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

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

.evaluation-box label {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.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;
  color: #000;
  border: 1px solid #000;
  border-radius: 0px;
  padding: 25px 0px;
  font-weight: 500;
  background: none;
  display: inline-block;
  letter-spacing: 0px;
}

.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: #e60000;
  border-color: #e60000;
  color: #fff;
}

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

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

.evaluation-box fieldset.active {
  display: block;
}

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

.cf7mls-btns.cf7mls-btns-last-step .cf7mls_back.action-button{
  position: absolute;
  bottom: 0;
  margin: 0!important;
}

.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: 0 0 50px 0px;
  overflow: hidden;
  background: #fff;
}

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

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

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

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

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

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

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

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

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

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

.navbar-light .navbar-nav .menu-item-has-children > a::after {
  display: inline-block;
  margin-left: 12px;
  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;
}

.header .nav-item {
  margin: 0px 15px;
  position: relative;
}

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

.navbar-light .navbar-nav .nav-item.current_page_item > .nav-link,
.navbar-light .navbar-nav .nav-item.current-menu-parent > .nav-link {
  color: #e60000 !important;
  opacity: 1 !important;
}

.navbar-expand-lg .navbar-nav > .nav-item .sub-menu li:hover > a.nav-link,
.navbar-expand-lg
  .navbar-nav
  > .nav-item
  .sub-menu
  li.current_page_item
  > a.nav-link {
  background: #e60000 !important;
  color: #fff !important;
  font-weight: 400;
  opacity: 1 !important;
}

.side-main-menu > li.current-menu-parent > a,
.side-main-menu > li.current_page_item > a {
  color: #e60000 !important;
  opacity: 1 !important;
}

.side-main-menu > li .sub-menu li.current_page_item > a {
  background: #e60000 !important;
  color: #fff !important;
  opacity: 1 !important;
}

.footer .wpcf7-list-item {
  margin: 0;
  margin-bottom: 10px;
}

.footer .form-box label {
  left: 0;
  top: 0;
  display: flex;
  align-items: start;
}

.footer .form-box label input {
  vertical-align: middle;
}

.footer .form-box input[type="checkbox"] {
  min-width: 30px;
}

input.wpcf7-form-control.wpcf7-not-valid {
  border: 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;
}

.evaluation-box .wpcf7-form .fieldset-cf7mls .cf7mls-btns {
  margin-top: 15px!important;
}

.evaluation-box .cf7mls_next.action-button,
.evaluation-box .cf7mls_back.action-button,
.evaluation-box .action-button {
  min-height: unset!important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0px;
  background: transparent;
  color: #000;
  border: solid 1px #000 !important;
  outline: 0px;
  padding: 15px 25px !important;
  opacity: 1 !important;
  margin: 0!important;
  transition: all 0.4s ease-in-out;
}

.evaluation-box .cf7mls_next.action-button:hover,
.evaluation-box .cf7mls_back.action-button:hover,
.evaluation-box .action-button:hover {
  color: #fff !important;
  border-color: #e60000!important;
  background: #e60000 !important;
}

.evaluation-box .navigate-btns button[type="submit"],
.evaluation-box .navigate-btns input[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;
  font-size: 16px;
  font-weight: 500;
}

.evaluation-box .checkbox-group .wpcf7-list-item label {
  margin: 0;
}

.contact-form .wpcf7-list-item {
  margin: 0;
  margin-bottom: 10px;
}

.contact-form .form-box label {
  left: 0;
  top: 0;
  display: flex;
  align-items: start;
  text-align: left;
  width: 100%;
}

.contact-form .form-box label input {
  vertical-align: middle;
  margin-right: 15px;
}

.contact-form .form-box input[type="checkbox"] {
  min-width: 30px;
}

.footer .form-box label {
  width: 100%;
}

/* Add submenu styles for single properties page */
body.single-properties .navbar-nav > .nav-item .sub-menu li > a.nav-link {
  color: #000 !important;
  background: #fff !important;
}

body.single-properties .navbar-nav > .nav-item .sub-menu li:hover > a.nav-link,
body.single-properties .navbar-nav > .nav-item .sub-menu .active > a.nav-link {
  background: #e60000 !important;
  color: #fff !important;
}

body.single-properties
  .navbar-light
  .navbar-nav
  .menu-item-has-children
  > a::after {
  border-top-color: #000;
}

.about.ip-about .buysell-content {
  margin-top: 70px;
}

#contact-modal .consent-ctn,
#schedule-showing-modal .consent-ctn,
.consent-ctn {
  font-size: 14px;
  text-align: left;
  text-transform: initial;
  color: #000;
}

.consent-ctn a {
  color: #e60000;
}

.buysellform {
  padding: 75px 0;
}

.buysellform .select2-container--default .select2-selection--multiple {
  background: none;
  border: 0px;
  border-radius: 0px;
  padding: 0px 3px;
  margin-bottom: 15px;
  min-height: 50px;
  height: auto;
  font-size: 16px;
  outline: 0px;
  color: #000 !important;
  border: 1px solid #000 !important;
  padding: 10px 15px;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
}

.grecaptcha-badge {
  display: none !important;
}
