/********** Template CSS **********/
:root {
    /* --primary: #B78D65; */
    --primary: #C69963;
   
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
    font-family: Merriweather !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
    font-family: Merriweather !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
    font-family: Merriweather !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
    border-radius: 50%;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-outline-body2 {
  color: var(--light);
  border-color: var(--light);
  border-radius: 50%;
}

.btn-outline-body2:hover {
  color: var(--primary);
  background: var(--light);
  border-color: var(--light);
}



/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 70%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.slider .container3,
.page-header .container3 {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.slider .container3::before,
.slider .container3::after,
.page-header .container3::before,
.page-header .container3::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.slider .container3::after,
.page-header .container3::after {
    top: 100%;
    margin-top: -15px;
}

/* .slider .container,
.page-header .container {
    position: relative;
    padding: 45px 35px; 
    border-left: 15px solid #ffffffa6; 
    border-right: 15px solid #ffffffa6; 
    border-top: 15px solid #ffffffa6; 
    border-bottom: 15px solid #ffffffa6; 
}

.slider .container::before,
.slider .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    background: #ffffffa6;
}

.slider .container::before,
.page-header .container::before {
    top: -15px; 
    left: -15px; 
    width: calc(100% + 30px); 
    height: 15px;
}

.slider .container::after,
.page-header .container::after {
    bottom: -15px;
    left: -15px; 
    width: calc(100% + 30px); 
    height: 15px;
} */




@media (max-width: 768px) {
    .slider .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .slider .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider .owl-carousel-item h5,
    .slider .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .slider .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

/* .slider .owl-nav .owl-prev,
.slider .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
} */

/* .slider .owl-nav .owl-prev:hover,
.slider .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
} */

/* .page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(https://plumbing.searchsolwebclient.com/wp-content/uploads/2023/05/bg.jpg) center center no-repeat;
    background-size: cover;
} */
/* 
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
} */




/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}



/*** Facts ***/
.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 120px;
  transition: .5s;
}

.fact-item2 .fact-icon2 {
  width: 65px;
  height: 65px;
  /* margin-top: -60px; */
  /* margin-bottom: 1.5rem; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 120px;
  transition: .5s;
  border: 1px solid var(--dark);
}

@media screen and (max-width: 768px) {
  .m1 {
    text-align: center;
  }
}

.fact-item2:hover .fact-icon2 {
  background: var(--dark);
}

.fact-item:hover .fact-icon {
  background: var(--dark);
}

.fact-item .fact-icon i {
  color: var(--primary);
  transition: .5;
}

.fact-item:hover .fact-icon i {
  color: #FFFFFF;
}


/*** About & Feature ***/
/* .about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
} */


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}



/* Testimonial */

.large-container {
  position: static;
  max-width: 1580px;
  padding: 0px 30px;
  margin: 0 auto;
}

.testimonial-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 210px;
  overflow: hidden;
}

.testimonial-section:before {
  position: absolute;
  left: -200px;
  top: 22%;
  background-image: url(https://jborealty.com/wp-content/uploads/2024/04/ring-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 701px;
  height: 756px;
  content: "";
  animation: fa-spin 25s infinite alternate;
}

.sec-title {
  position: relative;
  margin-bottom: 115px;
}

.sec-title .title {
  margin-bottom: 20px;
}

.testimonial-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 -50px;
}

.testimonial-block {
  position: relative;
  padding: 50px;
}

.testimonial-block .inner-box {
  padding: 80px 80px;
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 0 50px #c69963b7;
}

.testimonial-block .text5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 32px;
  color: #282331;
  font-weight: 400;
  margin-bottom: 50px;
  font-family: "Muli", sans-serif;
}

.testimonial-block .info-box {
  position: relative;
  padding-left: 115px;
  padding-top: 10px;
}

.testimonial-block .info-box .thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 82px;
  width: 82px;
}

.testimonial-block .info-box .thumb img {
  border: 6px solid #e5e6fa;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
}

.testimonial-block .info-box .name {
  position: relative;
  display: block;
  font-size: 21px;
  line-height: 1.2em;
  color: #382c4d;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Niramit", sans-serif;
}

.testimonial-block .info-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary);
  font-weight: 400;
  font-family: "Muli", sans-serif;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  right: 75px;
  bottom: 70px;
}

.testimonial-carousel .owl-nav .owl-next, 
.testimonial-carousel .owl-nav .owl-prev {
  position: relative;
  display: inline-block;
  height: 75px;
  width: 75px;
  line-height: 75px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  transition: all 300ms ease;
}

.testimonial-carousel .owl-nav .owl-next:hover, 
.testimonial-carousel .owl-nav .owl-prev:hover {
  background-color: #000;
  box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
}

.arrow-right,
.arrow-left {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 43px;
  background-repeat: no-repeat;
  background-position: center;
}

.arrow-right {
  background-image: url(https://jborealty.com/wp-content/uploads/2024/04/arrow-right-2.png);
}

.arrow-left {
  background-image: url(https://jborealty.com/wp-content/uploads/2024/04/arrow-left-2.png);
}

.testimonial-section .thumb-layer {
  position: absolute;
  right: 30px;
  top: 120px;
}

.testimonial-section .thumb-layer .image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .sec-title {
    margin-bottom: 50px;
  }

  .testimonial-block .inner-box {
    box-shadow: none;
    border: 2px solid #f1f1f1;
  }

  .testimonial-carousel .owl-nav {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    text-align: center;
  }

  .testimonial-carousel .owl-nav .owl-next,
  .testimonial-carousel .owl-nav .owl-prev {
    border: 2px solid #f1f1f1;
  }
}

@media only screen and (max-width: 1366px) {
  .large-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: var(--primary) !important;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}





/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/* Main CSS */

/* Hero carousel */

.bg-video {
    position: relative;
    overflow: hidden;
}

.video-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.247) 0%, rgba(0, 0, 0, 0.384) 100%);
}



.video-text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    /* text-align: center; */
    color: #fff;
    z-index: 1;
}

.video-text-overlay h5{
    color: #fff;
    font-size: 2em;
    font-weight: 300;
    
                            
    text-shadow: 2px 2px 7px #040404;
}

.video-text-overlay h1{
    color: #fff;
    font-size: 3.5em;
    font-weight: bold;
   
                            
    text-shadow: 1px 1px #040404;
}

.video-text-overlay p{
    color: #fff;
    font-size: 1.5em !important;
    
    
                            
    text-shadow: 1px 1px #040404;
}

/* Responsive styles for mobile screens  */
@media (max-width: 767px) {
    .bg-video video {
        height: 60vh; 
        width: 100%;
        object-fit: cover; 
    }

    /* .video-text-overlay {
        top: 55%; 
    } */


    .video-text-overlay h5
    {
        font-size: 18px !important;
    }
    .video-text-overlay h1
    {
        font-size: 1.8rem !important;
    }
    .video-text-overlay p
    {
        font-size: 15px !important;
        
    }

    
}





 /* Sidebar social media icons */
 .sticky-icon  {
	z-index:1111;
	position:fixed;
	top:25%;
	right:0%;
	width:90px;
	display:flex;
	flex-direction:column;}  
.sticky-icon a  {
	transform:translate(30px,0px);
	border-radius:50px 0px 0px 50px;
	text-align:left;
	margin:2px;
	text-decoration:none;
	text-transform:uppercase;
	padding:10px;
	font-size:22px;
	font-family:'Oswald', sans-serif;
	transition:all 0.8s;}
.sticky-icon a:hover  {
	color:#FFF;
	transform:translate(0px,0px);}	
.sticky-icon a:hover i  {
	transform:rotate(360deg);}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook  {
	background-color:#2C80D3;
	color:#FFF;}
	
.Youtube  {
	background-color:#fa0910;
	color:#FFF;}
	
.Twitter  {
	background-color:#53c5ff;
	color:#FFF;}
	
.Instagram  {
	background-color:#FD1D1D;
	color:#FFF;}
	
.Google  {
	background-color:#d34836;
	color:#FFF;}						
.sticky-icon a i {
	background-color:#FFF;
	height:40px;
	width:40px;
	color:#000;
	text-align:center;
	line-height:40px;
	border-radius:50%;
	margin-right:20px;
	transition:all 0.5s;}
.sticky-icon a i.fa-facebook-f  {
	background-color:#FFF;
	color:#2C80D3;}
	
.sticky-icon a i.fa-google-plus-g  {
	background-color:#FFF;
	color:#d34836;}
	
.sticky-icon a i.fa-instagram  {
	background-color:#FFF;
	color:#FD1D1D;}
	
.sticky-icon a i.fa-youtube  {
	background-color:#FFF;
	color:#fa0910;}
	
.sticky-icon a i.fa-twitter  {
	background-color:#FFF;
	color:#53c5ff;}
.fas fa-shopping-cart  {
	background-color:#FFF;}	
#myBtn {
	height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
	line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up  {
	font-size:30px;}

#myBtn:hover {
  background-color: #555;
}			

@media (max-width: 768px) {
    .sticky-icon {
      display: none;
    }
  }
  


  /* @import 'https://unpkg.com/open-props' layer(design.system);
@import 'https://unpkg.com/open-props/normalize.min.css' layer(demo.support);
@import url('https://fonts.googleapis.com/css2?family=Marko+One&display=swap'); */
.palm-pic {
    --animation-float-custom: float 3s ease-in-out infinite;
    --ease-in-out-2: cubic-bezier(0.5, 0, 0.5, 1);
    --shadow-4: 2px 2px 4px rgba(0, 0, 0, 0.89);
    --size-fluid-11: 500px;
  
    min-block-size: 80vh;
    overflow: hidden;
    position: relative;
    display: grid;
    place-content: center;
    /* background-image: linear-gradient(
      180deg in oklab,
      oklch(63% 0.1 204) 0%,
      70%,
      oklch(98% 0.01 170) 101% 101%
    ); */
    background-image: linear-gradient(to right, rgba(250, 250, 250, 0.788), rgba(255, 255, 255, 0.87)), url(https://jborealty.com/wp-content/uploads/2024/04/pattern.webp);

    & h1 {
      font-family: 'Marko One', serif;
      color: white;
      text-shadow: var(--shadow-4);
      /* font-size: clamp(3rem, 10vw, 6rem); */
      text-align: center;
      /* position: relative;
      z-index: 111; */
    }
  
    > picture {
      position: absolute;
      inset-block-end: -200px;
      inset-inline-start: 0;
      inline-size: var(--size-fluid-11);
      transform-origin: left bottom;
      animation: float 3s var(--ease-in-out-2) infinite;
      animation-duration: 8s;
      filter: blur(4px);
    }
  }

  .appearence {
    position: relative;
      z-index: 111;
  }
  
  @keyframes float {
    50% {
      transform: rotateX(30deg);
    }
  }
  

  /* Her Portfolio */

 

  
  .container2 {
    width: 90%;
    max-width: 1440px;
    height: 80vh;
    margin: 50px auto;
  }
  
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    border: 3px solid var(--primary);
  }
  
  .hero--left {
    width: 50%;
    margin-top: 40px;
    margin-left: 2em;
  }
  

  

  .descrption {
    opacity: 0;
  }
  
  .main_cta {
    background-color: var(--dark);
    color: white;
    border-radius: .5em;
    border: none;
    padding: 1em 3em;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: .75px;
    cursor: pointer;
    opacity: 0;
  }
  
  .hero--right {
    width: 50%;
    height: 560px;
    background-image: url(https://jborealty.com/wp-content/uploads/2024/04/photo-1.jpg);
    background-size: cover;
    background-position: center;
  }
  
  
  #services {
    background-color: whitesmoke;
  }
  
  .grid {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0.5em;
    grid-template-areas: 
      'one one one two three'
      'four five five five three'
  }
  
  .grid-item:nth-child(1) {
    grid-area: one;
    background-image: url(https://jborealty.com/wp-content/uploads/2024/04/photo-2.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .grid-item:nth-child(2) {
    grid-area: two;
    background-image: url(https://jborealty.com/wp-content/uploads/2024/04/photo-3.jpg);
    background-size: cover;
    background-position: top left;
  }
  
  .grid-item:nth-child(3) {
    grid-area: three;
    background-image: url(https://jborealty.com/wp-content/uploads/2024/04/photo-4.jpg);
    background-size: cover;
    background-position: top left;
  }
  
  .grid-item:nth-child(4) {
    grid-area: four;
    background-color: var(--primary);
  }
  
  .grid-item:nth-child(5) {
    grid-area: five;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1em 1em 1em 3em;
  }
  

  
  
  @media (max-width: 768px) {
    .container2 {
      height: auto;
    }
    
 
    .hero {
      display: block;
    }
    
    .hero--left {
      width: 90%;
      padding-bottom: 50px;
    }
    
    .hero--right {
      display: none;
    }
    

    
    .grid {
      grid-template-areas: 
        'three'
        'five'
        'one'
        'two'
        'four'
    }
    
  
    .grid-item:nth-child(3) {
      height: 300px;
      margin-bottom: 2em;
    }
   rid-item:nth-child(5) {
      padding: 1em;
    }
  }
/* cards */
  .overlay,
.img-overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  color: white;
}

/* body style */

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bg-body);
}

/* container style */

.container {
  display: grid;
  grid-template-columns: 1fr repeat(12, minmax(auto, 60px)) 1fr;
  grid-gap: 40px;
  margin: 35px auto;
}

/* cards style */

.cards::before {
  content: "featured";
  position: absolute;
  z-index: 5;
  color: white;
  background-color: #252525;
  text-transform: capitalize;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  padding: 7px 7px;
}

.cards {
  grid-column: 2 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(auto, 60px));
  grid-gap: 40px;
  position: relative;
}

.cards::after {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    left: 78px;
    border: 19px solid transparent;
    border-left-color: #252525;
    transform: translateY(-50%);
}

/* card style */

.card {
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0px 0px 7px 3px #dfdfdf;
}

.card:hover {
  transform: translateY(-7px);
}

/* img-overlya style */

:root {
    --bg-body: #f4f4f4;
    --bg-hot: #dd3333;
    --bg-featured: #ea723d;
    --p-text-color: #7e8186;
    --icon-info-color: #808080;
    --icon-image-color: white;
    --h2-text-color: #1a1a1a;
    --price-text-color: #2fa89e;
    --backgound-imgage: #3b9f93;
    --border-view-color: #a4d2c3;
  }

.img-overlay {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.hot-home:before {
  content: "hot";
  position: absolute;
  padding: 3px 7px;
  background-color: var(--bg-hot);
  z-index: 3;
  bottom: 10px;
  left: 10px;
  color: white;
  text-transform: capitalize;
}

.img-overlay img {
  width: 100%;
  z-index: 1;
}

.img-overlay img:hover + div {
  width: 100%;
}

figcaption {
  padding: 20px 0 0px 30px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--h2-text-color);
  font-size: 1.2rem;
}

.overlay {
  width: 0;
  height: 100%;
  display: grid;
  place-content: center;
  background-color: var(--backgound-imgage);
  opacity: 0.8;
  z-index: 2;
  transition: all 0.5s ease 0.1s;
}

.overlay:hover {
  width: 100%;
}

.overlay:hover > a {
  display: block;
  text-align: center;
  border-color: var(--border-view-color);
	background: #fff;
    color: #252525;
}

.overlay a {
  display: none;
  width: 140px;
  padding: 15px 0;
  text-transform: capitalize;
  border: 2px solid transparent;
  transition: border 10s ease;
}

/* icons-img style */

.cont {
  position: absolute;
  z-index: 6;
  width: 100%;
  height: 100%;
}

.icons-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.icons-img button {
  position: absolute;
  border: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  top: -40px;
  z-index: 10;
}

.icons-img button:first-of-type {
  right: 55px;
}

.icons-img button:last-of-type {
  right: 20px;
}

.icons-img button:first-of-type:hover {
  right: 55px;
  color: #ff3232;
}

.icons-img i {
  font-size: 25px;
}

/* card-content styles */

.card-content {
  padding: 0px 30px 30px;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
/*   height: 200px; */
  font-size: 14px;
}

.card-content p {
  color: var(--p-text-color);
}

/* icons-home style */

.icons-home {
  display: flex;
  justify-content: space-between;
}

.name-icon {
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.name-icon > span {
  text-transform: capitalize;
  color: var(--h2-text-color);
}

/* icon styles */

.icon {
  display: flex;
  align-items: center;
}

.icon i {
  color: var(--icon-info-color);
  font-size: 20px;
  margin-right: 10px;
}

.icon span {
  vertical-align: middle;
}

/* price style */

.price {
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
}

.price span:last-of-type {
  color: var(--price-text-color);
  font-size: 18px;
}

/* media screen style */

@media screen and (max-width: 1000px) {
  .card {
    grid-column-end: span 6;
  }
  /* card-content style */
}

@media screen and (max-width: 700px) {
  .cards {
    grid-template-columns: repeat(12, minmax(auto, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 30px;
  }
  .card {
    grid-column-end: span 12;
  }
  /* icons-home style */
  .card-content {
    font-size: 16px;
  }
  /* price style */
  .price span:last-of-type {
    color: var(--price-text-color);
    font-size: 20px;
  }
}

@media screen and (max-width: 500px) {
  .container {
    grid-template-columns: 20px repeat(12, minmax(auto, 1fr)) 20px;
    grid-gap: 10px;
  }
  .cards {
    grid-template-columns: repeat(12, minmax(auto, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 30px;
  }
  .card {
    grid-column-end: span 12;
  }
  /* card-content style */
}


/* portfolio */

.orange {
  color: var(--primary);
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.portfolio img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-4 {
  max-width: 1300px;
  margin: 0px auto 0px auto;
  padding: 0px 40px;
}
@media (min-width: 1200px) and (max-width: 1441px) {
  .container-4 {
    max-width: 1250px;
    padding: 0px 36px;
  }
}
@media (max-width: 767px) {
  .container-4 {
    padding: 0px 30px;
  }
}
@media (max-width: 479px) {
  .container-4 {
    padding: 0px 30px 0px 20px;
  }
}

.about-me {
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-me .about-me-container-4 {
  position: relative;
}
@media (max-width: 960px) {
  .about-me .about-me-container-4 {
    padding-bottom: 100px;
  }
}
.about-me .about-me-container-4 .about-me-title {
  font-size: 55px;
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 500px) {
  .about-me .about-me-container-4 .about-me-title {
    font-size: 30px;
  }
}

.about-me-flex-container-4 {
  margin-top: 25px;
  margin-left: 150px;
  /* left: 100px; */
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .about-me-flex-container-4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    gap: 50px;
  }
}
@media (max-width: 500px) {
  .about-me-flex-container-4 {
    margin-top: 20px;
  }
}
.about-me-flex-container-4 .about-me-image {
  position: relative;
    width: 400px;
    height: 560px;
}
@media (max-width: 500px) {
  .about-me-flex-container-4 .about-me-image {
    width: 300px;
    height: 300px;
  }
}
.about-me-flex-container-4 .about-me-image .back-div {
      position: absolute;
    bottom: 0;
    z-index: -3;
    background-color: var(--dark);
    width: 115%;
    height: 94%;
    left: -140px;
    bottom: -79px;
}
.about-me-flex-container-4 .about-me-image .black-image {
  z-index: -2;
    position: absolute;
    left: -80px;
    bottom: -20px;
    height: 100%;
}
.about-me-flex-container-4 .about-me-image .black-image img {
  height: 100%;
}
.about-me-flex-container-4 .about-me-image .main-image {
  width: 70%;
  height: 70%;
  overflow: hidden;
  position: absolute;
  left: 25%;
  top: 5%;
  box-shadow: rgb(0, 0, 0) 0px 7px 50px 0px;
  transition: all 0.2s ease-out;
}
.about-me-flex-container-4 .about-me-image .main-image:hover {
  transform-origin: top center;
  transform: scale(1.5);
  border-radius: 25px;
}
.about-me-flex-container-4 .about-me-image .main-image img {
  transform-origin: center center;
  transform: scale(2);
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-out;
}
.about-me-flex-container-4 .about-me-image .main-image img:hover {
  transform: scale(1);
}
.about-me-flex-container-4 .about-me-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex: 0 0 50%;
}
@media (max-width: 960px) {
  .about-me-flex-container-4 .about-me-content {
    flex-direction: row-reverse;
  }
}
.about-me-flex-container-4 .about-me-content .logo {
  max-width: 200px;
}
.about-me-flex-container-4 .about-me-content .logo img {
  filter: drop-shadow(0 0 25px rgb(0, 0, 0));
}
@media (max-width: 500px) {
  .about-me-flex-container-4 .about-me-content .logo img {
    transform: rotateZ(90deg);
  }
}
.about-me-flex-container-4 .about-me-content .text {
  /* color: #87A4B6; */
  
  font-weight: 500;
  font-size: 16px;
}
.about-me-flex-container-4 .about-me-content .text-2 {
  /* color: #87A4B6; */
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 500px) {
  .about-me-flex-container-4 .about-me-content .text {
    font-size: 16px;
  }
}



.mail-button {
  display: flex;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  padding: 15px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;

}
.mail-button a {
  display: flex;
}
.mail-button img {
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.2s ease-out;
}


.mail-button2 {
  background-color: var(--primary);
  position: absolute;
  bottom: 0;
  left: 0;
  border: 10px solid var(--primary);
}
/* .mail-button2 img {
 
  filter: invert(56%) sepia(42%) saturate(4795%) hue-rotate(360deg) brightness(103%) contrast(105%);
} */
.mail-button2:hover {
  background-color: var(--primary);
  border: 10px solid var(--primary);
}
.mail-button2:hover img {
  filter: unset;
  transform: scale(1.5);
}

.portfolio-link {
  
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.portfolio-link a{
  text-decoration: none;
  color: white;

  padding: 10px;
  margin: 10px;
  border-radius: 5px;
}


/* Animated banenr */
.container-6 {
  display: grid;
  grid-template-rows: auto min-content auto repeat(3, min-content);
  grid-template-columns: [sidebar-start] 8rem [sidebar-end full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
}

@media only screen and (max-width: 62.5em) {
  .container-6 {
    grid-template-rows: 6rem auto min-content auto repeat(3, min-content);
    grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
  }
}

@media only screen and (max-width: 50em) {
  .container-6 {
    grid-template-rows: 1rem calc(50vh - 6rem);
  }
}



/* .realtors {
  background-color: #101d2c;
  grid-column: col-start 7 / full-end;
  padding: 3rem;
  display: grid;
  align-content: center;
  justify-content: center;
  justify-items: center;
  grid-row-gap: 2rem; }
  @media only screen and (max-width: 50em) {
    .realtors {
      grid-column: 1 / -1; } }
  .realtors__list {
    display: grid;
    grid-template-columns: min-content max-content;
    grid-column-gap: 2rem;
    grid-row-gap: 5vh;
    align-items: center; }
    @media only screen and (max-width: 50em) {
      .realtors__list {
        grid-template-columns: repeat(3, min-content max-content); } }
    @media only screen and (max-width: 37.5em) {
      .realtors__list {
        grid-template-columns: min-content max-content; } }
  .realtors__img {
    width: 7rem;
    border-radius: 50%;
    display: block; }
  .realtors__sold {
    text-transform: uppercase;
    color: #aaa;
    margin-top: -3px; } */


.story__pictures {
  background-color: #c69963;
  grid-column: full-start / col-end 4;
  background-image: linear-gradient(rgba(198, 153, 99, 0.5), rgba(198, 153, 99, 0.5)), url(https://jborealty.com/wp-content/uploads/2024/04/back.jpg);
  background-size: cover;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(6, 1fr);
  align-items: center; }
  @media only screen and (max-width: 50em) {
    .story__pictures {
      grid-column: 1 / -1;
      padding: 6rem; } }

.story__img--1 {
  width: 100%;
  grid-row: 2 / 6;
  grid-column: 2 / 6;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 50em) {
    .story__img--1 {
      grid-column: 1 / 5;
      grid-row: 1 / -1; } }

.story__img--2 {
  width: 115%;
  grid-row: 4 / 6;
  grid-column: 4 / 7;
  z-index: 20;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2); }
  @media only screen and (max-width: 50em) {
    .story__img--2 {
      grid-row: 1 / -1;
      width: 100%; } }

.story__content {
  background-color: #f9f7f6;
  grid-column: col-start 5 / full-end;
  padding: 6rem 8vw;
  /*
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        */
  display: grid;
  align-content: center;
  justify-items: start; }
  @media only screen and (max-width: 50em) {
    .story__content {
      grid-column: 1 / -1;
      grid-row: 5 / 6; } }

.story__text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 4rem; }



  /* gallery section */

  .gallery-item2 {
    position: relative;
    overflow: hidden;
}

.image-wrapper2 {
    position: relative;
    overflow: hidden;
}

.image-wrapper2 img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-wrapper2:hover img {
    transform: scale(1.1);
}

.overlay3 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.507);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.image-wrapper2:hover .overlay3 {
    opacity: 0;
}

.overlay3 h2 {
  color: white;
    font-size: 2rem;
    text-align: center;
}

.video-section3 {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
   height: auto; 
}

#bg-video3 {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
   /* height: auto;  */
}

.video-overlay3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)); 
  z-index: 0;
   /* height: auto;  */
}

.content3 {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px; 
  color: #fff; 
}

.content3 h2 {
  font-size: 3em; 
}

.content3 p {
  font-size: 1.2em; 
}


@media screen and (max-width: 767px) {
  .video-section3 {
      height: auto; 
  }

  #bg-video3 {
      height: auto; 
  }

  .video-overlay3 {
      height: auto; 
  }
  .video-overlay3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)); 
    z-index: 0;
  }
}






/* Video section */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire area while maintaining aspect ratio */
}



/* Bell Icon */
.whatsapp {
  position: fixed;
  right: 25px;
  top: 77%;
  z-index: 9999;
}
.whatsapp h5 {
  color: white;
  background: var(--primary);
  padding: 12px 16px;
  border-radius: 100%;
  border: 2px solid white;
}

/* Pulse Annimate */

.animatePulse{
  animation: animatePulse 0.5s infinite alternate;
}

@keyframes animatePulse {
  from {
      transform: scale(1.1);
  }
  to {
      transform: scale(1.0);
  }
}


/* FAQs */

  /* FAQS */

  .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
}


.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.3rem;
    color: #000;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
}

.accordion-button:hover {
    background-color: var(--primary) !important;
    color: white !important;
    z-index: 2;
}


/* Border hover  */

.border{
  border: 8px solid white !important;
}

.border:hover{
  border: 8px solid var(--primary)!important; /* Change the border color as needed */
  background-color: #cecece;
  transition: border 0.5s ease; 

}


.h-hover {
  color: var(--primary);
}

.h-hover:hover {
  color: var(--dark);
}