
/*  GENERAL STYLES AND LOADER  */


body, html {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  width: 100%; /* Ensure the page width is contained */
}


.expanded {
  max-width: 1320px;
}

@media (min-width: 768px) {
  .expanded {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    padding: 0px 7%;
  }
}

.accordion-item {
	border: none;
}

img {
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul li {
  display: inline-block;
}

p {
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
}

button.main-button {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  color: #ffffff;
  background-color: #b83336;
  padding: 11px 25px;
  border-radius: 7.5px;
  display: inline-block;
  outline: none;
  border: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

button.main-button:hover {
  background-color: #2a2a2a;
}

.primary-button a {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  color: #ffffff;
  background-color: #b83336;
  padding: 11px 25px;
  border-radius: 7.5px;
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.primary-button a:hover {
  background-color: #2a2a2a;
}

.white-button a {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  color: #b83336;
  background-color: #ffffff;
  padding: 11px 25px;
  border-radius: 7.5px;
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.white-button a:hover {
  color: #ffffff;
  background-color: #b83336;
}

section {
  margin-top: 00px;
  padding-top: 60px;
}

@media (min-width: 576px) {
  section {
    margin-top: 60px;
    padding-top: 60px;
  }
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  color: #2a2a2a;
  line-height: 32px;
  letter-spacing: -0.5px;
}

@media (min-width: 576px) {
  .section-heading h2 {
    font-size: 34px;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: auto;
  }
}

.section-heading h2 em {
  color: #b83336;
  font-style: normal;
  padding-left: 100px;
  position: relative;
}

.section-heading h2 em::before {
  width: 80px;
  height: 2px;
  background-color: #b83336;
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
}

.loader {
  background-color: #2a2a2a;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 222222;
}

.loader svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader svg path,
.loader svg rect {
  fill: #b83336;
}

.spacer {
	padding-bottom: 150px;
}



/* NAVIGATION */

.main-navigation {
  position: absolute;
  width: 100%;
  padding: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1000; /* Increased z-index for visibility */
}

.navbar-nav {
  background-color: #2a2a2a;
  border-radius: 7.5px;
  padding: 10px 20px;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .navbar-nav {
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
    margin-top: 0px;
  }
}

header.nav-scrolled .main-navigation {
  padding: 10px 0px;
  position: fixed;
  z-index: 222; /* Keeps the navigation on top */
  background-color: rgba(42, 42, 42, 0.9); /* Slightly transparent background */
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 20px;
  border-top: 2px solid transparent;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.navbar-nav .nav-link:hover {
  color: #b83336;
}

/* Ensure no background interference when navigation bar is scrolled */
header.nav-scrolled .main-navigation {
  background-color: #2a2a2a; /* Solid background on scroll */
}

header.nav-scrolled .main-navigation .navbar-brand {
  padding: 0px;
}

header.nav-scrolled .main-navigation .navbar-nav {
  margin-top: 0px;
}

header.nav-scrolled .main-navigation .navbar-nav .nav-item .nav-link {
  border-top: none;
  padding: 8px 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (min-width: 576px) {
  header.nav-scrolled .main-navigation .navbar-nav .nav-item .nav-link {
    font-weight: 400;
  }
}

header.nav-scrolled .main-navigation .navbar-nav .nav-item .active {
  border-top: none;
  border-radius: 7px;
}

.navbar-expand-lg .navbar-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.navbar-light {
  padding: 10px 0px;
}

@media (min-width: 992px) {
  .navbar-light {
    padding: 0px;
  }
}

.navbar-light .navbar-brand {
  padding: 0px 0px 0px 0px;
}

@media (min-width: 992px) {
  .navbar-light .navbar-brand {
    padding: 14px 0px 0px 0px;
  }
}

.navbar-light .navbar-nav .nav-item {
  margin-left: 0px;
  text-align: center;
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.navbar-light .navbar-nav .nav-item:last-child {
  border-bottom: none;
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-item {
    margin-left: 20px;
    border-bottom: none;
  }
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 20px;
  border-top: 2px solid transparent;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.navbar-light .navbar-nav .nav-item .nav-link:hover {
  color: #b83336;
}

.navbar-light .navbar-nav .nav-item .active {
  font-weight: 400;
  color: #b83336;
  background-color: transparent;
  border-radius: 0px;
  border-top: none;
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-item .active {
    background-color: #ffffff;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-top: 2px solid #b83336;
  }
}

.navbar-light .navbar-toggler {
  background-color: #fff;
}

button:focus:not(:focus-visible) {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Sub Menus */
.nav-item {
  position: relative;
  padding: 0;
  margin-top: 0;
}

.nav-item .fa {
  font-size: 14px;
  vertical-align: middle;
  margin-left: 15px;
}

.nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2a2a2a;
  border-radius: 7.5px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  box-sizing: border-box;
  white-space: pre-line;
  padding: 0;
  margin-top: 0;
  width: auto;
}

/* Hover effect for desktop */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* Styling for dropdown items */
.nav-item .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  text-align: left;
}

.nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #b83336;
  color: #fff;
  border-radius: 7.5px;
}

/* Mobile settings */
@media (max-width: 992px) {
  .nav-item .dropdown-menu {
    position: static;
    width: 100%;
    z-index: 10000;
  }

  .dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
  }
}










/* HOMEPAGE - MAIN BANNER SECTION */



/*for static image
.main-banner {
  background-color: #333;
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 170px 0px 270px 0px;
  text-align: center;
}*/

/*for video based*/
.main-banner {
  position: relative;
  background-color: #333;
  padding: 0px;
  text-align: center;
  background-image: url(../images/banner-bg.jpg);
  background-size: cover;
  background-position: center;
}

.main-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Keep the video behind the text */
}

.main-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Dark overlay with 50% opacity */
  z-index: 1; /* Ensures overlay is above video but below content */
}

.main-banner .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darken the video with transparency */
  z-index: 1; /* Place the overlay above the video */
}

.main-banner .container {
  position: relative;
  z-index: 2; /* Bring the content in front of the overlay */
}

.main-banner h6 {
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.main-banner h2 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 25px;
}

.main-banner h2 em {
  font-style: normal;
  color: #b83336;
}

/* Mobile Static Image */
.main-banner img.mobile-image {
  display: none; /* Hide image by default */
  width: 100%; /* Make image responsive */
}

@media (max-width: 992px) {
  /* Show Static Image on Mobile */
  .main-banner video {
    display: none; /* Hide the video on mobile */
  }

  .main-banner img.mobile-image {
    background-size: cover;
    background-position: center;
  }
	
  .main-banner h6 {
   font-size: 17px;
   letter-spacing: 2.1px;
   padding-top: 50px;
}
	
  .main-banner h2 {
   font-size: 40px;
}
	
}

/* Large screens styling */
@media (min-width: 576px) {
  .main-banner {
    padding: 270px 0px 400px 0px; /* Keep this for larger screens */
  }
}

@media (max-width: 575px) {
  .main-banner {
    padding: 150px 0px 200px 0px; /* Smaller padding for mobile */
  }
}


/* HOMEPAGE - AS SEEN ON */

.logo-carousel-section {
  background-color: #f5f5f5;
  padding: 25px 0;
  font-size: 25px;
  color: #454545;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-align: center;
}

.logo-carousel-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 75px;
}

.single-logo-item img {
  max-width: 100%;
  height: auto;
}

.single-logo-item {
  max-width: 180px;
  transition: 0.3s ease;
}

.single-logo-item:hover {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .single-logo-item img {
    max-width: 85px;
  }
	
.logo-carousel-inner {
  gap: 15px;
}
	
}

@media (max-width: 410px) {
  .single-logo-item img {
    max-width: 50px;
  }
	
.logo-carousel-inner {
  gap: 8px;
}
	
}

/* HOMEPAGE - EXPLORE SECTION */



section.explore-work .left-image img {
  border-radius: 7.5px;
}

section.explore-work .right-content {
  margin-left: 0;
  margin-top: 30px;
}

@media (min-width: 992px) {
  section.explore-work .right-content {
    margin-left: 45px;
    margin-top: 0px;
  }
}

section.explore-work .right-content ul li {
  display: block;
  margin-bottom: 100px;
}

section.explore-work .right-content ul li:last-child {
  margin-bottom: 0px;
}

section.explore-work .right-content ul li h4 {
  font-size: 20px;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eeeeee;
}

section.explore-work .right-content ul li ul.info li {
  margin-bottom: 30px;
  width: 100%;
}

section.explore-work .right-content ul li ul.info li span {
  font-size: 15px;
  color: #7a7a7a;
  display: block;
  width: 250px;
  height: 50px;
  float: none !important;
}

@media (min-width: 576px) {
  section.explore-work .right-content ul li ul.info li span {
    display: inline-block;
    float: left !important;
  }
}

section.explore-work .right-content ul li ul.info li span svg {
  margin-right: 8px;
}

section.explore-work .right-content ul li ul.info li h6 {
  display: inline-block;
}

section.explore-work .right-content ul li ul.info li h6 a {
  font-size: 17px;
  font-weight: 700;
  color: #2a2a2a;
  -webkit-transition: all .5s;
  transition: all .5s;
}

section.explore-work .right-content ul li ul.info li h6 a:hover {
  color: #b83336;
}

section.explore-work .right-content ul li ul.info li em {
  font-size: 15px;
  line-height: 28px;
  color: #7a7a7a;
  font-style: normal;
  display: block;
}

@media (min-width: 576px) {
  section.explore-work .right-content ul li ul.info li em {
    display: inline;
  }
}



/* HOMEPAGE - BLOG SECTION */



section.blog .section-heading,
section.blog .left-content {
  margin-right: 0px;
}

@media (min-width: 992px) {
  section.blog .section-heading,
  section.blog .left-content {
    margin-right: 100px;
  }
}

section.blog .section-heading p,
section.blog .left-content p {
  margin-bottom: 30px;
}

section.blog .right-image {
  position: relative;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  section.blog .right-image {
    display: inline-block;
  }
}

section.blog .right-image .thumb {
  position: relative;
}

section.blog .right-image .thumb .hover-effect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(184, 51, 54, 0.9);
  border-radius: 7.5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
}

section.blog .right-image .thumb .hover-effect .inner-content {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

section.blog .right-image .thumb .hover-effect .inner-content h4 {
  margin-bottom: 10px;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

section.blog .right-image .thumb .hover-effect .inner-content h4 a {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section.blog .right-image .thumb .hover-effect .inner-content span {
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

section.blog .right-image .thumb:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

section.blog .right-image .thumb:hover .hover-effect .inner-content h4 {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

section.blog .right-image .thumb:hover .hover-effect .inner-content span {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}

section.blog .right-image .thumb img {
  border-radius: 7.5px;
}


/* HOMEPAGE - TESTIMONIAL SECTION */

section.testimonials {
	background-color: #ffffff;
	background-image: url("../images/arches.png");
	border-top: medium solid #B6B6B6;
	border-bottom: medium solid #B6B6B6;
}

.testimonials {
   margin: 50px auto;
   overflow: hidden;
   position: relative;
			
 }

.testimonials .testimonial-container {
   display: flex;
   transition: transform 0.5s ease-in-out;
 }

.testimonials .testimonial {
   flex: 0 0 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 20px 15% 20px 15%;
   box-sizing: border-box;
 }

.testimonials .testimonial img {
   width: 150px;
   height: 150px;
   border-radius: 50%;
   margin-bottom: 15px;
   object-fit: cover;
 }

.testimonials .testimonial p {
   font-size: 1rem;
   color: #555;
   margin-bottom: 10px;
 }

.testimonials .testimonial h4 {
   font-size: 1.2rem;
   color: #222;
 }

.testimonials .controls {
   display: flex;
   justify-content: center;
   gap: 10px;         
   margin: 15px 0 15px 0;                           
 }

.testimonials .controls .icon {
   font-size: 24px;
   cursor: pointer;
   color: #b83336;
   transition: color 0.3s;
   padding: 0 20px 0 20px;
 }         

.testimonials .controls .icon:hover {
   color: #000;
 }

@media (max-width: 768px) {
.testimonials .testimonial p {
   font-size: 0.9rem;
 }

.testimonials .testimonial h4 {
   font-size: 1rem;
 }
			
.testimonials .testimonial {
   padding: 5px 15% 5px 15%;
  }
}	
	
/* HOMEPAGE - CONTACT SECTION */



section.contact-us {
  margin-top: 60px;
  padding: 60px 0px;
  background-image: url(../images/contact-us-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 992px) {
  section.contact-us {
    margin-top: 120px;
    padding: 120px 0px;
  }
}

section.contact-us .left-form {
  padding-right: 15px;
}

@media (min-width: 992px) {
  section.contact-us .left-form {
    padding-right: 0px;
  }
}

section.contact-us .right-map {
  padding-left: 15px;
}

@media (min-width: 992px) {
  section.contact-us .right-map {
    padding-left: 0px;
  }
}

section.contact-us form {
  padding: 30px;
  border-top-right-radius: 7.5px;
  border-bottom-right-radius: 7.5px;
  background-color: #ffffff;
  border-top-left-radius: 7.5px;
  border-bottom-left-radius: 7.5px;
  margin-bottom: 0px;
}

@media (min-width: 992px) {
  section.contact-us form {
    padding: 60px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}

section.contact-us form input {
  width: 100%;
  height: 44px;
  border-radius: 7.5px;
  border: 1px solid #eeeeee;
  font-size: 14px;
  padding: 0px 15px;
  margin-bottom: 15px;
}

section.contact-us form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 7.5px;
  border: 1px solid #eeeeee;
  font-size: 14px;
  padding: 10px 15px;
  margin-bottom: 15px;
}

section.contact-us form button.main-button {
  width: 100%;
}

section.contact-us #map iframe {
  border-top-right-radius: 7.5px;
  border-bottom-right-radius: 7.5px;
  border-top-left-radius: 7.5px;
  border-bottom-left-radius: 7.5px;
  margin-top: 30px;
}

@media (min-width: 992px) {
  section.contact-us #map iframe {
    margin-top: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}


/* SECONDARY PAGE STYLING */


.page-banner {
  background-color: #333;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 90px 0px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-banner {
    padding: 180px 0px;
  }
}


/* Background images for specific pages */
.page-banner-buyers {
  background-image: url(../images/Page_Headers/buyers.jpg)
}

.page-banner-sellers {
  background-image: url(../images/Page_Headers/sellers.jpg)
}

.page-banner-about {
  background-image: url(../images/Page_Headers/about.jpg);
}

.page-banner-bios {
  background-image: url(../images/Page_Headers/bios.jpg);
}

.page-banner-neighborhoods-hanes-meadows {
  background-image: url(../images/Page_Headers/neighborhoods-hanes-meadows.jpg);
}

.page-banner-divisions-assisted-living {
  background-image: url(../images/Page_Headers/divisions-assisted-living.jpg);
}

.page-banner-divisions-commercial {
  background-image: url(../images/Page_Headers/divisions-commercial.jpg);
}

.page-banner-divisions-divorce {
  background-image: url(../images/Page_Headers/divisions-divorce.jpg);
}

.page-banner-divisions-first-time-home-buyers {
  background-image: url(../images/Page_Headers/divisions-first-time-home-buyers.jpg);
}

.page-banner-divisions-land {
  background-image: url(../images/Page_Headers/divisions-land.jpg);
}

.page-banner-divisions-luxury {
  background-image: url(../images/Page_Headers/divisions-luxury.jpg);
}

.page-banner-divisions-new-construction {
  background-image: url(../images/Page_Headers/divisions-new-construction.jpg);
}

.page-banner-divisions-veterans {
  background-image: url(../images/Page_Headers/divisions-veterans.jpg);
}

.page-banner-listings {
  background-image: url(../images/Page_Headers/listings.jpg);
}

.page-banner-contact {
  background-image: url(../images/Page_Headers/contact.jpg);
}

.page-banner-blogs-1 {
  background-image: url(../images/Page_Headers/blogs-generic-1.jpg);
}

.page-banner-blogs-2 {
  background-image: url(../images/Page_Headers/blogs-generic-2.jpg);
}

.page-banner-blogs-3 {
  background-image: url(../images/Page_Headers/blogs-generic-3.jpg);
}

.page-banner-blogs-4 {
  background-image: url(../images/Page_Headers/blogs-generic-4.jpg);
}

.page-banner-privacy {
  background-image: url(../images/Page_Headers/privacy.jpg);
}

.page-banner-login {
  background-image: url("../images/Page_Headers/login.jpg");
}

.page-banner-forgot {
  background-image: url("../images/Page_Headers/forgot.jpg");
}

.page-banner-dashboard {
  background-image: url("../images/Page_Headers/dashboard.jpg");
}

.page-banner-events {
  background-image: url("../images/Page_Headers/events.jpg");
}

.page-banner-teacher {
  background-image: url("../images/Page_Headers/teacher.jpg");
}

.page-banner-business {
  background-image: url("../images/Page_Headers/business.jpg");
}

.page-banner-healthcare {
  background-image: url("../images/Page_Headers/healthcare.jpg");
}

.page-banner-responder {
  background-image: url("../images/Page_Headers/responders.jpg");
}



.page-banner h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .page-banner h2 {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .page-banner h2 {
    font-size: 36px;
	padding-top: 50px;
}

}

.page-banner h2 em {
  font-style: normal;
  color: #b83336;
}

.page-banner p {
  color: #ffffff;
}



/* ABOUT US PAGE */

.services {
  margin-top: -85px;
}

.services .service-item {
  padding: 30px;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 7.5px;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .services .service-item {
    margin-bottom: 0px;
  }
}

.services .service-item .icon {
  color: #b83336;
  font-size: 35px;
}

.services .service-item h4 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
}

section.team .left-image {
  margin-right: 0;
}

@media (min-width: 992px) {
  section.team .left-image {
    margin-right: 50px;
  }
}

section.team .left-image img {
  border-radius: 7.5px;
}

section.team .right-content {
  margin-left: 0;
  margin-top: 30px;
}

@media (min-width: 992px) {
  section.team .right-content {
    margin-left: 50px;
    margin-top: 0px;
  }
}

section.team .right-content h4 {
  margin-top: 50px;
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
}

section.team .right-content .accordion-button {
  padding: 30px 0px;
  border-bottom: 1px solid #eeeeee;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  outline: none;
  text-align: left;
  font-size: 17px;
  background-color: transparent;
  color: #2a2a2a;
}

section.team .right-content .accordion-button:not(.collapsed) {
  color: #2a2a2a;
  border-bottom: none;
  background-color: transparent;
}

section.team .right-content .accordion-button:focus {
  border: none;
  z-index: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

section.team .right-content .accordion-button:not(.collapsed)::after {
  background-image: auto !important;
}

section.team .right-content .accordion-button::after {
  color: #2a2a2a;
}

section.team .right-content .accordion-collapse {
  border: none;
}

section.team .right-content .accordion-body {
  padding: 0px 0px 30px 0px;
  border-bottom: 1px solid #eeeeee;
  border-left: none;
  border-right: none;
  border-top: none;
}

/*team cards*/

section.about-page .card {
  border: none;
}

@media (min-width: 650px) {
  section.about-page .grid-item {
    width: 100%;
  }
}

@media (min-width: 850px) {
  section.about-page .grid-item {
    width: 33.3%;
  }
}

@media (min-width: 1200px) {
  section.about-page .grid-item {
    width: 25%;
  }
}

@media (min-width: 1400px) {
  section.about-page .grid-item {
    width: 20%;
  }
}

section.about-page .about-item {
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  section.about-page .about-item {
    margin-bottom: 30px;
  }
}

section.about-page .about-item .thumb {
  border-radius: 7.5px;
  position: relative;
  overflow: hidden;
}

section.about-page .about-item .thumb span.banner {
  background-color: #b83336;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 16px;
  display: inline-block;
  border-bottom-right-radius: 7.5px;
  border-top-left-radius: 7.5px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

section.about-page .about-item .thumb .hover-effect {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: -100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

section.about-page .about-item .thumb .hover-effect .inner-content {
  padding: 20px 30px;
  border-bottom-left-radius: 7.5px;
  border-bottom-right-radius: 7.5px;
  background-color: #b83336;
}

section.about-page .about-item .thumb .hover-effect .inner-content h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0px;
  margin-right: 20px;
}

section.about-page .about-item .thumb .hover-effect .inner-content a.icon {
  color: #ffffff;
  right: 30px;
  bottom: 18px;
  position: absolute;
}

section.about-page .about-item .thumb img {
  border-radius: 7.5px;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 1;
}

/* Hover image swap */
section.about-page .about-item .thumb img.first-image {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

section.about-page .about-item .thumb img.second-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

section.about-page .about-item .thumb:hover img.first-image {
  opacity: 0;
  transform: scale(1.1);
}

section.about-page .about-item .thumb:hover img.second-image {
  opacity: 1;
  transform: scale(1.1);
}

section.about-page .about-item .thumb:hover .hover-effect {
  bottom: 0;
}





/* INDIVIDUAL BIO PAGES */

.biopic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.biopic img {
    max-width: 100%;
    height: auto;
	padding: 10px;
	border: solid thin #b83336
}


.what-they-say .testimonials {
  background-repeat: no-repeat;
  background-size: 815px 560px;
  background-position: center center;
  border-radius: 7.5px;
}

@media (min-width: 992px) {
  .what-they-say .testimonials {
    background-position: center right;
  }
}

/* Fun Facts */
.ashley-fun {
  background-image: url(../images/about-team-ashley-facts.jpg);
}

.laura-fun {
  background-image: url(../images/about-team-laura-facts.jpg);
}

.brian-fun {
  background-image: url(../images/about-team-brian-facts.jpg);
}

.danny-fun {
  background-image: url(../images/about-team-danny-facts.jpg);
}

.tiffany-fun {
  background-image: url(../images/about-team-tiffany-facts.jpg);
}

.josh-fun {
  background-image: url(../images/about-team-josh-facts.jpg);
}

.noah-fun {
  background-image: url(../images/about-team-noah-facts.jpg);
}

.melinda-fun {
  background-image: url(../images/about-team-melinda-facts.jpg);
}

.sabrina-fun {
  background-image: url(../images/about-team-sabrina-facts.jpg);
}

.what-they-say .col-lg-6 {
  padding: 0px;
}

.what-they-say .carousel {
  padding: 100px 0px;
}

.what-they-say .testimonial-item {
  padding: 60px;
  margin: 20px;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 7.5px;
  border-bottom-right-radius: 0px;
  position: relative;
}

.what-they-say .testimonial-item img {
  max-width: 80px;
  border-radius: 50%;
  margin-right: 20px;
  float: left !important;
}

.what-they-say .testimonial-item .icon {
  position: absolute;
  left: 30px;
  top: -20px;
  fill: #b83336;
}

.what-they-say .testimonial-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
}

.what-they-say .testimonial-item span {
  font-size: 14px;
  color: #7a7a7a;
  display: block;
  margin-bottom: 8px;
}

.what-they-say .testimonial-item p {
  margin-top: 25px;
  margin-bottom: 0px;
}

.what-they-say .testimonial-item:after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100%;
  height: 10px;
  border-bottom-left-radius: 7.5px;
  border-bottom-right-radius: 7.5px;
  z-index: -2;
  background-color: #f6c5c6;
}

.what-they-say .testimonial-item:before {
  content: '';
  position: absolute;
  right: -10px;
  bottom: -5px;
  width: 10px;
  height: 100%;
  border-top-right-radius: 7.5px;
  border-bottom-right-radius: 7.5px;
  z-index: -2;
  background-color: #f6c5c6;
}

.what-they-say .carousel-indicators {
  bottom: 40px;
}

.what-they-say .carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: #7a7a7a;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
  opacity: 0.5;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
}

.what-they-say .carousel-indicators .active {
  opacity: 1;
  background-color: #b83336;
}

.call-to-action {
  background-color: #2a2a2a;
  margin-top: 120px;
  padding: 45px 0px;
}

.call-to-action h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0px 0px 20px 0px;
  text-align: center;
}

@media (min-width: 992px) {
  .call-to-action h2 {
    text-align: left;
    margin: 0px;
    font-size: 35px;
  }
}

.call-to-action .white-button {
  text-align: center;
}

@media (min-width: 992px) {
  .call-to-action .white-button {
    text-align: right;
  }
}



/* BUYERS PAGE */



section.buyers h2 {
  font-size: 34px;
  font-weight: 700;
  color: #2a2a2a;
  text-align: left;
  text-transform: uppercase;
}

section.buyers .main-image img {
  border-radius: 7.5px;
}

section.buyers .project-info {
  background-color: #fafafa;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  margin: 15px 0px 30px 0px;
  border-radius: 7.5px;
  position: relative;
  padding: 30px;
}

@media (min-width: 992px) {
  section.buyers .project-info {
    margin: -140px 30px 80px 30px;
    background-color: rgba(250, 250, 250, 0.9);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

section.buyers .project-info .info-item {
  margin: 10px auto;
  text-align: center;
}

@media (min-width: 992px) {
  section.buyers .project-info .info-item {
    margin: 0 auto;
  }
}

section.buyers .project-info .info-item h6 {
  font-size: 17px;
  color: #2a2a2a;
}

section.buyers .project-info .info-item span {
  font-size: 15px;
  color: #7a7a7a;
}

section.buyers p {
  margin-bottom: 60px;
}

section.buyers img {
  border-radius: 7.5px;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  section.buyers img {
    margin-bottom: 0px;
  }
}

section.buyers .down-content h4 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 700;
  color: #2a2a2a;
  text-align: left;
  text-transform: uppercase;
}

section.buyers .projects-pagination {
  border-top: 1px solid #eeeeee;
  padding-top: 60px;
}

section.buyers .projects-pagination img {
  max-width: 60px;
}

@media (min-width: 992px) {
  section.buyers .projects-pagination img {
    max-width: 115px;
  }
}

section.buyers .projects-pagination .right-pagination {
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
  text-align: right;
}

@media (min-width: 992px) {
  section.buyers .projects-pagination .right-pagination {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
  }
}

section.buyers .projects-pagination .right-pagination img {
  float: right;
}

section.buyers .projects-pagination .left-pagination img {
  float: left;
}

section.buyers .projects-pagination .right-content {
  display: inline-block;
  margin-left: 15px;
}

@media (min-width: 992px) {
  section.buyers .projects-pagination .right-content {
    margin-left: 25px;
  }
}

section.buyers .projects-pagination .right-content h6 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media (min-width: 992px) {
  section.buyers .projects-pagination .right-content h6 {
    margin-top: 28px;
  }
}

section.buyers .projects-pagination .right-content h6:hover {
  color: #b83336;
}

section.buyers .projects-pagination .right-content span {
  font-size: 15px;
  color: #7a7a7a;
}

section.buyers .projects-pagination .left-content {
  margin-right: 15px;
  display: inline-block;
  text-align: right;
}

@media (min-width: 992px) {
  section.buyers .projects-pagination .left-content {
    margin-right: 25px;
  }
}

section.buyers .projects-pagination .left-content h6 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all .5s;
  transition: all .5s;
  text-align: right;
}

@media (min-width: 992px) {
  section.buyers .projects-pagination .left-content h6 {
    padding-top: 20px;
  }
}

section.buyers .projects-pagination .left-content h6:hover {
  color: #b83336;
}

section.buyers .projects-pagination .left-content span {
  text-align: right;
  font-size: 15px;
  color: #7a7a7a;
}


/* NEIGHBORHOOD PAGES */

.responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* This maintains a 16:9 aspect ratio (height / width * 100) */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
	border-radius: 15px;
}

.thumbnail-text-container {
    display: flex;
    align-items: center;
    gap: 16px; /* Space between image and text */
    flex-wrap: wrap; /* Allows content to wrap on smaller screens */
    width: 100%; /* Ensure it spans the full container */
	padding-bottom: 45px;
}

.thumbnail-image {
    width: 100px; /* Set a fixed width for the thumbnail */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
}

.thumbnail-text {
    flex: 1; /* Allows the text to take up remaining space */
    min-width: 150px; /* Ensure text doesn't shrink too small */
}

.thumbnail-text h3 {
    margin: 0 0 8px; /* Space below the title */
    font-size: 1.2rem;
}

.thumbnail-text p {
    margin: 0;
    font-size: 1rem;
    color: #555; /* Optional: Adjust text color */
}



/* CONTACT US PAGE */




section.contact-page-map #map iframe {
  border-radius: 7.5px;
}

section.contact-us-page {
  margin-top: -60px;
  padding-top: 0px;
  z-index: 2;
  position: relative;
}

section.contact-us-page .contact-page-form {
  padding: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 7.5px;
}

@media (min-width: 992px) {
  section.contact-us-page .contact-page-form {
    padding: 60px;
  }
}

section.contact-us-page .contact-page-form form {
  margin-bottom: 0px;
  margin-right: 0px;
}

@media (min-width: 992px) {
  section.contact-us-page .contact-page-form form {
    margin-right: 45px;
  }
}

section.contact-us-page .contact-page-form form input {
  width: 100%;
  height: 44px;
  border-radius: 7.5px;
  border: 1px solid #eeeeee;
  font-size: 14px;
  padding: 0px 15px;
  margin-bottom: 15px;
}

section.contact-us-page .contact-page-form form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 7.5px;
  border: 1px solid #eeeeee;
  font-size: 14px;
  padding: 10px 15px;
  margin-bottom: 15px;
}

section.contact-us-page .contact-page-form form button.main-button {
  width: 100%;
}

section.contact-us-page .right-info ul {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

@media (min-width: 992px) {
  section.contact-us-page .right-info ul {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
  }
}

section.contact-us-page .right-info ul li {
  display: block;
  width: 100%;
  padding: 30px;
  border-radius: 7.5px;
  background-color: #b83336;
  text-align: center;
  margin-bottom: 30px;
}

section.contact-us-page .right-info ul li:last-child {
  margin-bottom: 0px;
}

section.contact-us-page .right-info ul li .icon {
  fill: #ffffff;
}

section.contact-us-page .right-info ul li h6 {
  margin-top: 15px;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  color: #ffffff;
}

section.contact-us-page .right-info ul li span {
  font-size: 15px;
  color: #ffffff;
}


/* LOGIN PAGE */

.loginerror {
	background-color: #FFD071;
	border-radius: 10px;
	width: 100%;
	padding: 20px 20px 5px 20px;
}

.loginerror p {
	color: #000;
	font-weight: 800;
	font-size: 22px;
	text-align: center;
}



/* BLOG PAGES */

.rounded-circle {
	border-radius: 50% !important;
	max-width: 150px;
	padding: 5px;
	border: thin solid #C59024;
}

.magazine {
	max-width: 150px;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images */
}

.image-item {
    text-align: center;
}

.image-item img {
    width: 100%;
    max-width: 300px; /* Set max-width for images */
}

.caption {
    margin-top: 10px;
    font-size: 16px;
}


/* EVENTS PAGE */

.eventcontainer {
  user-select: none;
  margin: 100px auto;
  color: #FFF;
  border-radius: 5px;
  max-width: 90%;
  width: 500px;
  text-align: center;
  box-shadow: 0 10px 20px -10px rgba(0,0,0,.75);
  background-color: #b83336;
  background-image: url("../images/bright-squares.png");
  background-size: contain;
}
.cover-photo {
  background: url("../images/Events/stars.jpg") center center no-repeat;
  background-size: cover;
  height: 0;
  padding-top: 100%; 
  width: 100%;
  border-radius: 5px 5px 0 0;
  position: relative;
}

.profile {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  margin: 93px 0 0 -175px;
  border: 1px solid #6c0305;
  padding: 7px;
  background: #6c0305;
}
.profile-name {
  font-size: 25px;
  font-weight: bold;
  margin: 15px 0 0 15px;
}
.about {
  margin-top: 35px;
  line-height: 21px;
  color: #FFF;
  padding: 0 10px;
}

button {
  margin: 10px 0 40px 0;
}
.msg-btn, .follow-btn {
  background: #FFF;
  border: 1px solid #FFF;
  padding: 10px 25px;
  color: #000;
  border-radius: 3px;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
}
.follow-btn {
  margin-left: 10px;
  background: transparent;
  color: #000;
}
.follow-btn:hover {
  color: #000;
  background: #FFF;
  transition: .5s;
}
.eventcontainer i {
  padding-left: 20px;
  font-size: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: .5s;
}
.eventcontainer i:hover {
  color: #000;
}



/* TEACHER OF THE WEEK */


.teachercaption {
    margin-top: 10px;
    font-size: 13px;
	text-align: center;
	font-style: italic;
}

.teachercaption2 {
    margin-top: 10px;
    font-size: 13px;
	text-align: left;
}

 #google-form {
    min-height: 1700px; /* Set a minimum height */
    width: 100%;
    border: none;
}

 @media (max-width: 768px) {
  #google-form {
    min-height: 1550px; /* Adjust for mobile */
}
}

 @media (max-width: 480px) {
  #google-form {
    min-height: 1600px; /* Increase height for smaller screens */
}
}


/* FOOTER */



footer.no-margin-footer {
  margin-top: 60px;
}

footer {
  padding-top: 80px;
  text-align: center;
  border-top: 5px solid #D8D8D8; /* Main border color */
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2); /* Top shadow */

}

@media (min-width: 992px) {
  footer {
    text-align: left;
    margin-top: 120px;
  }
}

footer .about-widget img {
  max-width: 273px;
  margin-bottom: 45px;
}

footer h4 {
  font-size: 17px;
  font-weight: 700;
  text-transform: capitalize;
  color: #2a2a2a;
  margin-bottom: 30px;
  margin-top: 45px;
}

@media (min-width: 992px) {
  footer h4 {
    margin-top: 0px;
  }
}

footer ul.info li {
  display: block;
  margin-bottom: 20px;
}

footer ul.info li a {
  font-size: 15px;
  color: #7a7a7a;
  -webkit-transition: all .5s;
  transition: all .5s;
}

footer ul.info li a:hover {
  color: #b83336;
}

footer ul.info li:last-child {
  margin-bottom: 0px;
}

footer ul.social-links li {
  display: block;
  margin-bottom: 20px;
}

footer ul.social-links li a {
  color: #7a7a7a;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: inline-block; /* Ensure it's not affecting the icon display */
  text-decoration: none;
  line-height: 10px;
}
	


footer ul.social-links li a i {
  margin-right: 13px;
}

footer ul.social-links li a:hover {
  color: #b83336;
}

footer ul.social-links li:last-child {
  margin-bottom: 0px;
}

footer ul.social-links li a i {
  font-size: 20px; /* Ensure the icon size is big enough */
  color: #7a7a7a; /* Default color */
}
footer ul.social-links li a:hover i {
  color: #b83336; /* Change color on hover */
}


footer form#subscribe {
  position: relative;
  margin-bottom: 0px;
}

footer form#subscribe input {
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-size: 14px;
  height: 40px;
  position: relative;
  padding: 0px 10px;
}

footer form#subscribe button {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  color: #7a7a7a;
  -webkit-transition: all .5s;
  transition: all .5s;
}

footer form#subscribe button:hover {
  color: #b83336;
}

footer .sub-footer {
  margin-top: 60px;
  padding-bottom: 20px;
}

footer .sub-footer p a {
  color: #b83336;
}

footer .sub-footer a.scroll-to-top {
  text-align: center;
  width: 100%;
  display: inline-block;
  font-size: 15px;
  color: #b83336;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media (min-width: 992px) {
  footer .sub-footer a.scroll-to-top {
    text-align: right;
    color: #7a7a7a;
  }
}

footer .sub-footer a.scroll-to-top svg {
  margin-left: 3px;
}

footer .sub-footer a.scroll-to-top:hover {
  color: #b83336;
}




/*# sourceMappingURL=style.css.map */