@charset "UTF-8";
/******************************************************************
Theme Name: Aler
Description: 
Author: 
Author URI: 
Version: 1.0
Created: 
******************************************************************/
/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Service Section
6.  Feature Property Section
7.  Team Section
8.  Testimonial Section
9.  Contact
10.  Footer Style

-------------------------------------------------------------------*/
/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #666666;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

 ::selection {
    background: #cca331;color: #000;
   
}


/*---------------------
  Helper CSS
-----------------------*/
.section-title {
  margin-bottom: 40px;
}
.section-title.sidebar-title {
  margin-bottom: 36px;
}
.section-title.sidebar-title h5 {
  font-family: "Lato", sans-serif;
}
.section-title.sidebar-title h5:after {
  height: 36px;
  top: -8px;
}
.section-title.sidebar-title-b {
  margin-bottom: 30px;
  font-family: "Lato", sans-serif;
}
.section-title.sidebar-title-b h6:after {
  height: 20px;
  top: 0;
}
.section-title h4,
.section-title h5,
.section-title h6 {
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 20px;
}
.section-title h4:after,
.section-title h5:after,
.section-title h6:after {
  position: absolute;
  left: 0;
  top: -9px;
  width: 5px;
  height: 46px;
  background: #e0960b;
  content: "";
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.spad-2 {
  padding-top: 50px;
  padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */
.primary-btn {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  background: #c89900;
  padding: 10px 20px;
  display: inline-block;
}

.site-btn {
  font-size: 14px;
  color: #ffffff;
  background: #c8c500;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 30px;
}
/* Preloader */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background:#131313;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 500px; 
  height: auto;
}

/*---------------------
  Header
-----------------------*/
img{
  user-select: none;pointer-events: none;
}

video{
  user-select: none !important;pointer-events: none !important;
}
/*---------------------
  Hero
-----------------------*/
 html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
   /* CSS Styling for Layout and Design */
        :root {
            --primary-font: 'Space Grotesk', sans-serif;
            --secondary-font: 'Roboto Mono', monospace;
            --dark-bg: #000;
            --light-text: #fff;
            --fade-duration: 0.4s;
        }

        /* Base Styles */
        body {
            margin: 0;
            font-family: var(--secondary-font);
            color: #333;
        }

        /* Site Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* FIX 1: Remove horizontal padding to make header stretch edge-to-edge */
            padding: 5px 0; 
            background: linear-gradient(rgb(255, 255, 255),rgba(197, 197, 197, 0.075));
            z-index: 10;
        }

        .site-header .site-logo {
            /* FIX 2: Add spacing back to the logo only */
            margin-left: 40px; 
            font-size: 1.5rem;
            font-weight: 700;
        }
        .site-logo img{
          width: 60px;
        }

        /* Menu Icon Button Styling */
        .menu-toggle-btn {
            background-color: #a07a14; 
            border: none; 
            cursor: pointer;
            font-size: 1.2rem;
            padding: 10px 10px;
            border-radius: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s ease;
            margin-right: 40px; 
        }

      .menu-toggle-btn img {
    width: 30px; 
    height: 30px;  
    filter: invert(100%) brightness(100%); 
    transition: filter 0.3s ease, opacity 0.3s ease; 
}
        /* Smooth hover effect */
        .menu-toggle-btn:hover {
            opacity: 0.8;
        }

        /* --- FULL-SCREEN MENU OVERLAY (Animation Effect Active) --- */

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--dark-bg);
            color: var(--light-text);
            z-index: 999999;
            visibility: hidden;
            opacity: 0;
            transition: opacity var(--fade-duration), visibility var(--fade-duration);
        }

        .menu-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        /* Hide body scrollbar */
        body.menu-open {
            overflow: hidden;
        }
        
        /* Menu Container (Flexbox for content structure) */
        .menu-container {
            height: 100%;
            /* Adjust padding to account for the lack of header padding */
            padding: 15px 40px 10px; 
            box-sizing: border-box;
            display: flex;
            flex-direction: column; 
        }

        /* Menu Header */
        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0; 
            flex-shrink: 0; 
        }

        .menu-header .site-logo {
            color: var(--light-text);
        }

        /* Primary Navigation (Dominant Styling) */
        .primary-nav {
            flex-grow: 1; 
            display: flex;
            flex-direction: column;
            justify-content: flex-end; 
            padding: 30px 0; 
        }

        .primary-nav a {
            text-decoration: none;
               background: linear-gradient(to left, #505050, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
            font-family: var(--primary-font);
            font-weight: 700;
            font-size: clamp(4rem, 4.5rem, 5rem);
            line-height: 1.1;
            margin-bottom: 5px;
            transition: color 0.3s;
            font-family: 'bricolage grotesque', sans-serif ;
            
                 }

                 .primary-nav a:hover{
                    background: linear-gradient(to right, #cca331, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
            }
            
          /* Utility Info Sections */
        .utility-info {
            display: flex;
            justify-content: space-between;
            padding-bottom: 15px; 
            flex-shrink: 0;font-family: 'lato' , sans-serif;letter-spacing: 1.2px;
        }

        .info-group {
            display: flex;
            flex-direction: column;
            width: 48%; 
        }
       
.utility-info a:hover{
  color: #cca331;transition: .4s;text-decoration: underline;
}

        .utility-info section {
            margin-bottom: 15px; 
        }
  
        .utility-info h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            color: #999;
            margin: 0 0 3px 0; 
            font-weight: 500;
        }

        .utility-info a, .utility-info p {
            font-size: 0.95rem;
            color: var(--light-text);
            text-decoration: none;
            margin: 0;
        }

        .small-text {
            font-size: 0.85rem;
        }

        /* --- MOBILE SPECIFIC ADJUSTMENTS --- */
        @media (max-width: 768px) {
            .site-header {
                padding: 10px 0;
            }
            
            .site-header .site-logo {
                margin-left: 20px; /* Reduced margin for mobile */
            }

            .menu-container {
                padding: 10px 20px 5px; 
            }

            .menu-header {
                padding: 10px 0;
            }
            
            .primary-nav {
                padding: 15px 0; 
            }

            .primary-nav a {
                 font-size: clamp(2rem, 6vw, 3rem);

                line-height: 1.1;
                margin-bottom: 5px;
            }

            .utility-info {
                flex-direction: column; 
                margin-top: 5px; 
                padding-bottom: 5px;
            }

            .info-group {
                width: 100%; 
                margin-bottom: 5px; 
            }

            .utility-info section {
                margin-bottom: 8px; 
            }
        }
.hs-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}
.hs-slider.owl-carousel .owl-item.active .hs-item .hc-inner-text {
  opacity: 1;
  top: 0;
}
.hs-slider.owl-carousel .owl-nav button {
  height: 50px;
  width: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  line-height: 58px;
  text-align: center;
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-25px);
}
.hs-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -80px;
}

.hs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 780px;
}
.hs-item .hc-inner-text {
  background: #ffffff;
  padding: 40px;
  overflow: hidden;
  opacity: 0;
  position: relative;
  top: 100px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.hs-item .hc-inner-text .hc-text {
  float: left;
  margin-right: 18px;
}
.hs-item .hc-inner-text .hc-text h4 {
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;font-family: "lato", sans-serif; 
}
.hs-item .hc-inner-text .hc-text p {
  color: #666666;
}
.hs-item .hc-inner-text .hc-text p span {
  color: #c87100;
}
.hs-item .hc-inner-text .hc-text .label {
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  color: #ffffff;
  padding: 2px 10px;
  background: #c86b00;
  font-weight: 600;
  margin-right: 10px;
}
.hs-item .hc-inner-text .hc-text h5 {
  color: #c86b00;
  font-weight: 700;
  display: inline-block;
}
.hs-item .hc-inner-text .hc-text h5 span {
  color: #666666;
  font-weight: 400;
  font-size: 14px;
}
.hs-item .hc-inner-text .hc-widget {
  overflow: hidden;
  width: 195px;
  position: relative;
  right: -52px;
  top: 18px;
}
.hs-item .hc-inner-text .hc-widget li {
  font-size: 15px;
  color: #111111;
  font-weight: 500;
  list-style: none;
  width: 50%;
  float: left;
  margin-bottom: 20px;
}
.hs-item .hc-inner-text .hc-widget li i {
  font-size: 14px;
  color: #666666;
  margin-right: 4px;
}

/*---------------------
  Search Form
-----------------------*/
.search-section {
  background: #f7f7f7;
}

.change-btn {
  text-align: right;
}
.change-btn .cb-item {
  display: inline-block;
}
.change-btn .cb-item label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 32px;
  margin-bottom: 0;
  margin-left: -4px;
  cursor: pointer;
  border: 1px solid #ee9818;
  color: #111111;
}
.change-btn .cb-item label.active {
  background: #ee9818;
  color: #ffffff;
}
.change-btn .cb-item label input {
  position: absolute;
  visibility: hidden;
}

.search-form-content {
  overflow: hidden;
  margin-bottom: 26px;
}
.search-form-content .filter-form {
  margin-right: -20px;
}
.search-form-content .filter-form .sm-width {
  width: calc(33.33% - 20px);
}
.search-form-content .filter-form .nice-select {
  clear: none;
  margin-right: 20px;
  height: 46px;
  background: #ffffff;
  border-radius: 0;
  border: 1px solid #e1e1e1;
  line-height: 43px;
  margin-bottom: 20px;
}
.search-form-content .filter-form .nice-select:after {
  border-bottom: 1px solid #666666;
  border-right: 1px solid #666666;
  height: 6px;
  right: 16px;
  margin-top: -6px;
  width: 6px;
  top: 54%;
}
.search-form-content .filter-form .nice-select span {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
}
.search-form-content .filter-form .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: 100%;
  border-radius: 0;
  margin-top: 0;
}
.search-form-content .filter-form .price-range-wrap {
  float: left;
  margin-right: 20px;
}
.search-form-content .filter-form .price-range-wrap .price-text {
  margin-bottom: 9px;
}
.search-form-content .filter-form .price-range-wrap .price-text label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 0;
  text-transform: uppercase;
}
.search-form-content .filter-form .price-range-wrap .price-text input {
  display: inline-block;
  width: 165px;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  border: none;
  background: transparent;
}
.search-form-content .filter-form .room-size-range-wrap {
  float: left;
  margin-right: 20px;
}
.search-form-content .filter-form .room-size-range-wrap .price-text {
  margin-bottom: 9px;
}
.search-form-content .filter-form .room-size-range-wrap .price-text label {
  display: inline-block;
  font-size: 13px;
  color: #666666;
  font-weight: 500;
  margin-bottom: 0;
}
.search-form-content .filter-form .room-size-range-wrap .price-text input {
  display: inline-block;
  width: 165px;
  font-size: 13px;
  color: #666666;
  font-weight: 500;
  border: none;
  outline: none;
  background: transparent;
}
.search-form-content .filter-form .search-btn {
  font-size: 14px;
  height: 46px;
  background: #ee9818;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}

.ui-widget.ui-widget-content {
  background: #e1e1e1;
  height: 7px;
  border: none;
}

.ui-slider .ui-slider-range {
  background: #ee9818;
}

.ui-slider-horizontal .ui-slider-handle {
  width: 13px;
  height: 13px;
  background: #ee9818;
  border-radius: 50%;
  border: none;
  margin-left: 0;
  top: -3px;
}

.more-option .card {
  border: none;
  border-radius: 0;
  background: transparent;
}
.more-option .card .card-heading {
  padding-left: 34px;
}
.more-option .card .card-heading a {
  font-size: 16px;
  color: #111111;
  font-weight: 600;
  cursor: pointer;
}
.more-option .card .card-body {
  padding: 0;
  padding-top: 30px;
}
.more-option .card .card-body .mo-list .ml-column {
  width: 25%;
  float: left;
}
.more-option .card .card-body .mo-list .ml-column label {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
}
.more-option .card .card-body .mo-list .ml-column label .checkbox {
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #666666;
  border-radius: 2px;
  content: "";
}
.more-option .card .card-body .mo-list .ml-column label input {
  position: absolute;
  visibility: hidden;
}
.more-option .card .card-body .mo-list .ml-column label input:checked ~ span {
  background: #666666;
}

.more-option .card-heading a:after,
.more-option .card-heading > a:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background: #ee9818;
  line-height: 20px;
  text-align: center;
}

.more-option .card-heading a:after,
.more-option .card-heading > a.active[aria-expanded=false]:after {
  content: "L";
  font-size: 16px;
  font-family: "ElegantIcons";
  color: #ffffff;
  background: #ee9818;
}

.more-option .card-heading a[aria-expanded=true]:after,
.more-option .card-heading > a.active:after {
  content: "K";
  font-size: 16px;
  font-family: "ElegantIcons";
  color: #ffffff;
  background: #c8b400;
}

/*-------------------------
  Property Section
--------------------------*/

.property-section.latest-property-section {
  padding-bottom: 60px;
}
.property-section.profile-page {
  padding-top: 50px;
}

.property-controls {
  text-align: right;
}
.property-controls ul li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  margin-right: 35px;
  position: relative;
  cursor: pointer;
}
.property-controls ul li:after {
  position: absolute;
  right: -22px;
  top: -1px;
  content: "|";
  color: #222222;
}

.property-controls ul li:last-child {
  margin-right: 0;
}
.property-controls ul li:last-child:after {
  display: none;
}
 

.property-item {
  margin-bottom: 40px;
}
.property-item .pi-pic {
  height: 240px;
  position: relative;border-radius: 6px;box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 25px;  overflow: hidden;

}
.property-item .pi-pic .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px 2px;
  display: inline-block;
  background: #d0a001;
  color: #ffffff;
  position: absolute;
  left: 20px;
  top: 20px;
}
.property-item .pi-pic .label.c-red {
  background: #fc5b11;
}
.property-item .pi-pic .label.c-magenta {
  background: #322610;
}
.property-item .pi-text {
  position: relative;
}
.property-item .pi-text .heart-icon {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  font-family: "ElegantIcons";
  font-size: 18px;
  color: #ee9818;
}
.property-item .pi-text .pt-price {
  font-size: 18px;
  font-weight: 700;
  color: #ee9818;
  margin-bottom: 10px;
}
.property-item .pi-text .pt-price span {
  font-size: 14px;
  color: #666666;
  font-weight: 400;
}
.property-item .pi-text h5 {
  margin-bottom: 6px;
}
.property-item .pi-text h5 a {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  font-family: "Montserrat", sans-serif;
}
.property-item .pi-text p {
  font-weight: 500;
}
.property-item .pi-text p span {
  color: #ee9818;
}
.property-item .pi-text ul {
  padding-bottom: 20px;
}
.property-item .pi-text ul li {
  font-size: 15px;
  color: #111111;
  font-weight: 600;
  list-style: none;
  display: inline-block;
  margin-right: 45px;
}
.property-item .pi-text ul li:last-child {
  margin-right: 0;
}
.property-item .pi-text ul li i {
  font-size: 14px;
  color: #666666;
  margin-right: 5px;
}
.property-item .pi-text .pi-agent .pa-item {
  overflow: hidden;
  padding-top: 10px;
}
.property-item .pi-text .pi-agent .pa-item .pa-info {
  float: left;
}
.property-item .pi-text .pi-agent .pa-item .pa-info img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.property-item .pi-text .pi-agent .pa-item .pa-info h6 {
  font-size: 14px;
  color: #111111;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
}
.property-item .pi-text .pi-agent .pa-item .pa-text {
  font-size: 14px;
  color: #ee9818;
  font-weight: 600;
  float: right;
  line-height: 30px;
}

.loadmore-btn {
  text-align: center;
  padding-top: 10px;
}
.loadmore-btn a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  background: #103230;
}

.property-pagination {
  text-align: center;
  padding-top: 10px;
}
.property-pagination.blog-pagination {
  text-align: left;
  padding-top: 0;
}
.property-pagination.blog-pagination a {
  color: #666666;
}
.property-pagination a {
  display: inline-block;
  height: 46px;
  width: 46px;
  background: #f2f2f2;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 6px;
}
.property-pagination a:last-child {
  margin-right: 0;
}
.property-pagination a:hover {
  background: #ee9818;
  color: #ffffff;
}
.property-pagination a.icon span {
  position: relative;
  top: 5px;
}
.property-pagination a span {
  font-size: 27px;
}

/*---------------------
  Chooseus Section
-----------------------*/
.chooseus-section {
  padding-bottom: 55px;
}

.chooseus-text {
  margin-bottom: 40px;
}
.chooseus-text .section-title {
  margin-bottom: 24px;
}
.chooseus-text .section-title h4 {
  color: #ffffff;
}
.chooseus-text p {
  color: #ffffff;
  opacity: 0.7;
}

.chooseus-features {
  overflow: hidden;
}
.chooseus-features .cf-item {
  width: calc(50% - 40px);
  float: left;
  margin-right: 40px;
  margin-bottom: 35px;
  overflow: hidden;
}
.chooseus-features .cf-item .cf-pic {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  float: left;
  margin-right: 20px;
}
.chooseus-features .cf-item .cf-text {
  overflow: hidden;
}
.chooseus-features .cf-item .cf-text h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}
.chooseus-features .cf-item .cf-text p {
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.7;
}

/*---------------------
  Feature Property
-----------------------*/
.feature-property-left {
  background: #18140b;
  padding: 50px 50px 40px 50px;
  height: 520px;
}
.feature-property-left .section-title {
  margin-bottom: 35px;
}
.feature-property-left .section-title h4 {
  color: #ffffff;
}
.feature-property-left ul {
  margin-bottom: 45px;
}
.feature-property-left ul li {
  font-size: 14px;
  list-style: none;
  color: #f3f3f3;
  padding-bottom: 12px;
  border-bottom: 1px solid #2e2716;
  margin-bottom: 15px;
  cursor: pointer;
}
.feature-property-left ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.feature-property-left ul li:hover {
  color: #ffffff;
  font-weight: 500;
}
.feature-property-left a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #18140b;
  background: #ffffff;
  padding: 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.fp-slider.owl-carousel .owl-nav button {
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  line-height: 45px;
  text-align: center;
  font-size: 24px;
  color: #ffffff;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-20px);
}
.fp-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 20px;
}
.fp-slider .fp-item {
  height: 520px;
  position: relative;
}
.fp-slider .fp-item .fp-text {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  padding-left: 40px;
}
.fp-slider .fp-item .fp-text .title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.fp-slider .fp-item .fp-text p {
  color: #ffffff;
  opacity: 0.7;
}
.fp-slider .fp-item .fp-text p span {
  margin-right: 4px;
}
.fp-slider .fp-item .fp-text .label {
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  color: #ffffff;
  padding: 2px 10px;
  background: #32AA00;
  font-weight: 600;
  margin-right: 10px;
}
.fp-slider .fp-item .fp-text h5 {
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
}
.fp-slider .fp-item .fp-text h5 span {
  color: #888888;
  font-weight: 400;
  font-size: 14px;
}
.fp-slider .fp-item .fp-text ul {
  width: 210px;
  position: absolute;
  right: -25px;
  top: 25px;
}
.fp-slider .fp-item .fp-text ul:after {
  position: absolute;
  left: -42px;
  top: -22px;
  height: 88px;
  width: 1px;
  background: #ffffff;
  opacity: 0.2;
  content: "";
}
.fp-slider .fp-item .fp-text ul li {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  list-style: none;
  width: 50%;
  float: left;
  margin-bottom: 20px;
}
.fp-slider .fp-item .fp-text ul li i {
  font-size: 14px;
  color: #ffffff;
  margin-right: 4px;
  opacity: 0.5;
}

/*---------------------
  Team Section
-----------------------*/
.team-section {
  background: #f5f5f5;
}
.team-section .section-title {
  margin-bottom: 50px;
}
.team-section .team-btn {
  text-align: right;
}
.team-section .team-btn a {
  font-size: 14px;
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  background: #ffffff;
  padding: 12px 30px;
}
.team-section .team-btn a i {
  color: #ee9818;
  margin-right: 6px;
}

.ts-item {
  background: #ffffff;
  text-align: center;
  padding: 35px 25px 30px 25px;
  height: 330px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ts-item:hover {
  background: #ee9818;
}
.ts-item:hover .ts-text img {
  height: 100px;
  width: 100px;
}
.ts-item:hover .ts-text h5 {
  color: #ffffff;
}
.ts-item:hover .ts-text span {
  margin-bottom: 14px;
  color: #ffffff;
}
.ts-item .ts-text img {
  height: 190px;
  width: 190px;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ts-item .ts-text h5 {
  color: #111111;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  margin-top: 25px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ts-item .ts-text span {
  font-size: 14px;
  color: #ee9818;
  display: block;
  font-weight: 600;
  margin-bottom: 40px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ts-item .ts-text p {
  color: #ffffff;
  margin-bottom: 8px;
}
.ts-item .ts-text .ts-social a {
  font-size: 15px;
  display: inline-block;
  color: #ffffff;
  margin-right: 12px;
}
.ts-item .ts-text .ts-social a:last-child {
  margin-right: 0;
}

/*---------------------
  Categories Section
-----------------------*/
.categories-section {
  overflow: hidden;
  padding-top: 10px;
}

.cs-item-list {
  margin-right: -10px;
}

.cs-item-list .cs-item {
  height: 376px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(20% - 10px);
  float: left;
  margin-right: 10px;
}
.cs-item-list .cs-item .cs-text {
  width: 190px;
  background: #2525255e;
  text-align: center;
  padding: 16px 0 15px;border: 2px solid #fffffff3;
}
.cs-item-list .cs-item .cs-text h5 {
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 6px;letter-spacing: 1.5px;
}
.cs-item-list .cs-item .cs-text span {
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
  display: block;
}
.cs-item {
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.cs-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.062); /* initial overlay thoda transparent */
  transition: background 0.3s ease;
}

.cs-item:hover::before {
  background: rgba(0,0,0,0.6); /* hover par dark */
}

.cs-item .cs-text {
  position: absolute;
  bottom: 20px; /* ya center karna ho to top:50%; transform:translateY(-50%) */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  color: rgb(255, 255, 255); /* text white ho jaye hover me */
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.cs-item:hover .cs-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px); /* thoda float effect */
}

/*---------------------
  Testimonial Section
-----------------------*/
.testimonial-section .section-title {
  margin-bottom: 25px;
  padding-left: 15px;
}

.testimonial-slider {
  margin-left: 0;
}
.testimonial-slider.owl-carousel .owl-stage-outer {
  padding-top: 15px;
}
.testimonial-slider.owl-carousel .col-lg-6 {
  max-width: 100%;
}
.testimonial-slider.owl-carousel .owl-nav {
  position: absolute;
  right: 15px;
  top: -62px;
}
.testimonial-slider.owl-carousel .owl-nav button {
  height: 46px;
  width: 46px;
  background: #f2f2f2;
  border-radius: 50%;
  line-height: 53px;
  text-align: center;
  font-size: 27px;
  color: #111111;
  margin-left: 10px;
}

.testimonial-slider .testimonial-item .ti-text {
  background: #ffffff;
  box-shadow: 0px 3px 15px rgba(91, 91, 91, 0.15);
  padding: 30px 25px 30px 40px;
  margin-bottom: 30px;
  position: relative;
}
.testimonial-slider .testimonial-item .ti-text:after {
  position: absolute;
  left: 84px;
  bottom: -7px;
  height: 14px;
  width: 14px;
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
  box-shadow: 0px 3px 15px rgba(91, 91, 91, 0.15);
}
.testimonial-slider .testimonial-item .ti-text p {
  color: #444444;
  line-height: 25px;
  margin-bottom: 0;
  font-weight: 500;
}
.testimonial-slider .testimonial-item .ti-author {
  padding-left: 40px;
}
.testimonial-slider .testimonial-item .ti-author .ta-pic {
  float: left;
  margin-right: 20px;
}
.testimonial-slider .testimonial-item .ti-author .ta-pic img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.testimonial-slider .testimonial-item .ti-author .ta-text {
  padding-top: 15px;
}
.testimonial-slider .testimonial-item .ti-author .ta-text h5 {
  color: #111111;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.testimonial-slider .testimonial-item .ti-author .ta-text span {
  font-size: 14px;
  color: #ee9818;
  display: block;
  margin-bottom: 5px;
}
.testimonial-slider .testimonial-item .ti-author .ta-text .ta-rating i {
  display: inline-block;
  font-size: 10px;
  color: #ffb129;
  margin-right: -3px;
}

/*---------------------
  Logo Carousel
-----------------------*/
.logo-carousel .lc-slider {
  border-top: 1px solid #ebebeb;
  padding: 50px 0;
}
.logo-carousel .lc-slider .lc-item {
  display: table;
  height: 97px;
}
.logo-carousel .lc-slider .lc-item .lc-item-inner {
  display: table-cell;
  vertical-align: middle;cursor: grab;
}
.logo-carousel .lc-slider .lc-item .lc-item-inner:active,
.logo-carousel .lc-slider .lc-item .lc-item-inner:focus{
  cursor: grabbing;
}
/*---------------------
  Contact Section
-----------------------*/
.contact-section {
  position: relative;
  background: #f7f7f7;
  height: 450px;
}

.contact-info {
  padding-top: 100px;
}
.contact-info .ci-item {
  overflow: hidden;
  margin-bottom: 40px;
}
.contact-info .ci-item .ci-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #ee9818;
  font-size: 24px;
  color: #ffffff;
  line-height: 60px;
  text-align: center;
  float: left;
  margin-right: 20px;
}
.contact-info .ci-item .ci-text {
  overflow: hidden;
  padding-top: 5px;
}
.contact-info .ci-item .ci-text h5 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info .ci-item .ci-text p {
  color: #111111;
  opacity: 0.7;
  margin-bottom: 0;
}
.contact-info .ci-item .ci-text ul {
  padding-top: 4px;
}
.contact-info .ci-item .ci-text ul li {
  list-style: none;
  display: inline-block;
  color: #111111;
  opacity: 0.7;
  font-size: 14px;
  margin-right: 20px;
  position: relative;
}
.contact-info .ci-item .ci-text ul li:after {
  position: absolute;
  right: -14px;
  top: -2px;
  content: "|";
}
.contact-info .ci-item .ci-text ul li:last-child {
  margin-right: 0;
}
.contact-info .ci-item .ci-text ul li:last-child:after {
  display: none;
}

.cs-map {
  height: 450px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.cs-map iframe {
  width: 100%;
}

/*---------------------
  Footer
-----------------------*/
  .footer {
            background: rgb(255, 255, 255);
            padding: 60px 20px 30px;
            display: flex;
            justify-content: center;font-family: 'lato' , sans-serif;
        }
       

        .footer-new {
            background-color: #131313;
            color: white;
            padding: 50px 0 80px;font-family: 'lato' , sans-serif;
              }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-main-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 48px;
        }

        .footer-column-section h3 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 16px;color: white;font-family: 'lato' , sans-serif;
            text-transform: uppercase;letter-spacing: 1.5px;
        }

        .footer-column-section ul {
            list-style: none;
        }

        .footer-column-section ul li {
            margin-bottom: 8px;
        }

        .footer-column-section ul li a {
            color: white;
            text-decoration: none;letter-spacing: 1.1px;
            font-size: 14px;font-weight: 400;
            font-family: 'lato' , sans-serif;transition: .5s;
        }

        .footer-column-section ul li a:hover {
            color: #cca532;transition: .5s;
        }

        /* Newsletter Section */
        .footer-newsletter {
            margin-bottom: 24px;
        }

        .footer-newsletter h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

   
        .footer-consent-text {
            font-size: 11px;
            line-height: 1.4;
            margin-bottom: 16px;
        }

        .footer-consent-text a {
            color: white;
            text-decoration: underline;
        }

        /* Social Icons */
        .footer-social-icons {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .footer-social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fcfafa !important;
            text-decoration: none;
            transition: opacity 0.2s;
        }

     
        .footer-social-icon svg {
            width: 18px;
            height: 18px;
            fill: #ebebeb;
        }

/* CSS */
.button-23 {
  background-color: #cca331;
  border: 1px solid #131313;
  border-radius: 1px;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: 'lato',sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 13px 23px;
  position: relative;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: box-shadow .2s,-ms-transform .1s,-webkit-transform .1s,transform .1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}

.button-23:focus-visible {
  box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  transition: box-shadow .2s;
}

.button-23:active {
  background-color: #F7F7F7;
  border-color: #000000;
  transform: translateY(3px); }

.button-23:disabled {
  border-color: #DDDDDD;
  color: #DDDDDD;
  cursor: not-allowed;
  opacity: 1;
}
        /* App Download */
        .footer-app-download h4 {
            font-size: 14px;
            margin-bottom: 12px;color: #d8d8d8;
        }

        .footer-app-buttons {
            display: flex;
            gap: 12px;
        }

        .footer-app-button {
            height: 40px;
        }

        /* Partner Logos */
        .footer-partner-logos {
            display: flex;
            gap: 24px;font-family: 'lato' , sans-serif;
            align-items: center;
            padding: 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 24px;
        }

        .footer-partner-logos img {
            height: 32px;
            opacity: 0.9;
        }

        /* Bottom Links */
        .footer-column-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 12px;
            margin-bottom: 16px;
            align-items: center;font-family: 'lato' , sans-serif;
        }

        .footer-column-links a {
            color: white;
            text-decoration: none;
        }

        .footer-column-links a:hover {
            color: #cca532;
        }

        .footer-column-links span {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Copyright */
        .footer-copyright {
            font-size: 11px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);font-family: 'lato' , sans-serif;
        }
        .footer-copyright p{
          font-family: 'lato' , sans-serif;
        }

        /* Mobile Accordion */
        .footer-mobile-accordion {
            display: none;
        }

        .footer-accordion-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
        }

        .footer-accordion-icon {
            transition: transform 0.3s;
        }

        .footer-accordion-icon.active {
            transform: rotate(180deg);
        }

        .footer-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .footer-accordion-content.active {
            max-height: 1000px;
        }

        .footer-accordion-content ul {
            padding-bottom: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-main-grid {
                display: none;
            }

            .footer-mobile-accordion {
                display: block;
                margin-bottom: 32px;color: white;font-family: 'lato' , sans-serif;font-weight: 300;text-transform: uppercase;letter-spacing: 1.5px;
            }
.footer-accordion-content ul li a{
  color: rgb(241, 241, 241);font-family: 'lato' , sans-serif;font-weight: 400;transition: .4s;
}
.footer-accordion-content ul li a:hover{
  color: #cca331;transition: .4s;
}
            .footer-new {
                padding: 34px 0 27px;
            }

            .footer-partner-logos {
                flex-wrap: wrap;
                gap: 16px;
            }

            .footer-partner-logos img {
                height: 24px;
            }

            .footer-app-buttons {
                flex-direction: column;
            }

            .footer-column-links {
                font-size: 11px;
                gap: 12px;
            }
        }
       
/*--------------------------------- Other Pages Styles -----------------------------*/
/*---------------------
  Breadcrumb
-----------------------*/
.breadcrumb-text {
  display: inline-block;
  background: #ffffff;
  padding: 35px 40px;
}
.breadcrumb-text h4 {
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.breadcrumb-text .bt-option a {
  font-size: 14px;
  color: #111111;
  font-weight: 500;
  margin-right: 20px;
  position: relative;
}
.breadcrumb-text .bt-option a:after {
  position: absolute;
  right: -18px;
  top: -1px;
  content: "5";
  font-family: "ElegantIcons";
}
.breadcrumb-text .bt-option a i {
  margin-right: 4px;
}
.breadcrumb-text .bt-option span {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
}

/*---------------------
  Property Details
-----------------------*/
.property-details-section {
  padding-bottom: 25px;
}

.property-pic-slider {
  margin-right: -10px;
  overflow: hidden;
  margin-bottom: 60px;
}
.property-pic-slider.owl-carousel .owl-nav button {
  height: 50px;
  width: 50px;
  background: #000000;
  border-radius: 50%;
  line-height: 58px;
  text-align: center;
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-30px);
}
.property-pic-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 20px;
}
.property-pic-slider .ps-item .container-fluid {
  padding-right: 5px;
}
.property-pic-slider .ps-item .ps-item-inner {
  height: 317px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.property-pic-slider .ps-item .ps-item-inner.large-item {
  height: 645px;
}

.pd-text .pd-title {
  position: relative;
  margin-bottom: 65px;
}
.pd-text .pd-title .heart-icon {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  font-family: "ElegantIcons";
  font-size: 18px;
  color: #ee9818;
}
.pd-text .pd-title .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px 2px;
  display: inline-block;
  background: #0166D0;
  color: #ffffff;
  margin-right: 10px;
}
.pd-text .pd-title .pt-price {
  font-size: 20px;
  font-weight: 600;
  color: #ee6e18;
  margin-bottom: 10px;
  display: inline-block; font-family:  'Bodoni Moda', serif;
}
.pd-text .pd-title .pt-price span {
  font-size: 14px;font-family: 'poppins' , sans-serif;
  color: #666666;
  font-weight: 400;
}
.pd-text .pd-title h3 {
  margin-bottom: 6px;
  font-weight: 700;
  color: #382b0e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px; font-family:'Marcellus', serif;
}
.pd-text .pd-title p {
  font-weight: 500;
}
.pd-text .pd-title p span {
  color: #ee9818;
}

.pd-text .pd-social {
  text-align: right;
  padding-top: 40px;
  margin-bottom: 30px;
}
.pd-text .pd-social a {
  display: inline-block;
  font-size: 14px;
  color: #111111;
  height: 36px;
  width: 36px;
  background: #f2f2f2;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}.pd-text .pd-social a:hover,
.pd-text .pd-social a:active {
  background: #d48816;
  color: #ffffff;
}
.pd-text .pd-social a:last-child {
  margin-right: 0;
}
.pd-text .pd-board {
  margin-bottom: 65px;
}
.pd-text .pd-board .tab-board .nav-tabs {
  background: #322911;
  border-bottom: none;
}
.pd-text .pd-board .tab-board .nav-tabs .nav-item {
  margin-bottom: 0;
}
.pd-text .pd-board .tab-board .nav-tabs .nav-item a {
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  padding: 14px 30px;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 400;letter-spacing: 1.2px;
}
.pd-text .pd-board .tab-board .nav-tabs .nav-item a.active {
  color: #322911;
  background: #f5c338;font-weight: 700;
}
.pd-text .pd-board .tab-board .tab-content .tab-details {
  border: 1px solid #e1e1e1;
  overflow: hidden;
  border-top: none;
}
.pd-text .pd-board .tab-board .tab-content .tab-details ul {
  width: 50%;
  float: left;
}
.pd-text .pd-board .tab-board .tab-content .tab-details ul.left-table li:nth-child(even) {
  background: #f7f7f7;
}
.pd-text .pd-board .tab-board .tab-content .tab-details ul.right-table li:nth-child(odd) {
  background: #f7f7f7;
}
.pd-text .pd-board .tab-board .tab-content .tab-details ul li {
  font-size: 14px;
  list-style: none;
  font-weight: 500;
  padding: 15px 0;
  padding-left: 30px;
}
.pd-text .pd-board .tab-board .tab-content .tab-details ul li .type-name {
  color: #1b160b;
  width: 148px;
  display: inline-block;font-family: 'poppins' , sans-serif;font-weight: 600;
}
.pd-text .pd-board .tab-board .tab-content .tab-details ul li .type-value {
  color: #ad8f08;
  display: inline-block;font-family: 'montserrat', sans-serif;
}
.pd-text .pd-board .tab-board .tab-content .tab-desc {
  border: 1px solid #e1e1e1;
  overflow: hidden;
  border-top: none;
  padding: 20px;
}
.pd-text .pd-board .tab-board .tab-content .tab-desc p{
  font-family: "montserrat" , sans-serif;font-weight: 300;
}
.pd-text .pd-widget {
  margin-bottom: 65px;
}
.pd-text .pd-widget h4 {
  color: #252525;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 35px;font-family: 'Montserrat' , sans-serif;
}
.pd-text .pd-widget .map {
  height: 350px;
}
.pd-text .pd-widget .map iframe {
  width: 100%;
}
.pd-text .pd-widget .map-location {
  background: #f5f5f5;
  padding: 35px 0 10px 40px;
}
.pd-text .pd-widget .map-location .ml-item .ml-single-item {
  margin-bottom: 25px;
}
.pd-text .pd-widget .map-location .ml-item .ml-single-item h6 {
  color: #111111;
  text-transform: uppercase;font-family: 'lato' , sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.pd-text .pd-widget .map-location .ml-item .ml-single-item h6 span {
  color: #ee9818;
  text-transform: lowercase;
  margin-left: 6px;
  font-size: 14px;
  font-weight: 400;
}
.pd-text .pd-widget .map-location .ml-item .ml-single-item p {
  color: #888888;
}


.property-sidebar .single-sidebar {
  margin-bottom: 68px;
}
.property-sidebar .single-sidebar.slider-op {
  margin-bottom: 60px;
}
.property-sidebar .single-sidebar .top-agent .ta-item {
  overflow: hidden;
  margin-bottom: 30px;
}
.property-sidebar .single-sidebar .top-agent .ta-item .ta-pic {
  height: 130px;
  width: 130px;
  float: left;
}
.property-sidebar .single-sidebar .top-agent .ta-item .ta-text {
  overflow: hidden;
  border-left: none;
  height: 130px;
  padding-top: 26px;
  padding-left: 20px;
}
.property-sidebar .single-sidebar .top-agent .ta-item .ta-text h6 {
  margin-bottom: 8px;
}
.property-sidebar .single-sidebar .top-agent .ta-item .ta-text h6 a {
  color: #302618;
  font-weight: 700;
  text-transform: uppercase;font-family: 'lato' , sans-serif;
}
.property-sidebar .single-sidebar .top-agent .ta-item .ta-text span {
  font-size: 14px;
  color: #888888;
  display: block;
  margin-bottom: 8px;font-family: 'montserrat' , sans-serif;
}
.property-sidebar .single-sidebar .top-agent .ta-item .ta-text .ta-num {
  font-size: 14px;
  color: #ee9818;
  font-weight: 600;font-family: "Montserrat", sans-serif; 
}
.property-sidebar .single-sidebar .sf-slider.owl-carousel .owl-dots {
  padding-top: 6px;
}
.property-sidebar .single-sidebar .sf-slider.owl-carousel .owl-dots button {
  height: 2px;
  width: 20px;
  background: #d7d7d7;
  margin-right: 10px;
}
.property-sidebar .single-sidebar .sf-slider.owl-carousel .owl-dots button.active {
  height: 3px;
  background: #ee9818;
}
.property-sidebar .single-sidebar .sf-slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}
.property-sidebar .single-sidebar .sf-slider .sf-item {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.property-sidebar .single-sidebar .sf-slider .sf-item .sf-text {
  background: #ffffff;
  text-align: center;
  padding: 16px 30px 15px;
}
.property-sidebar .single-sidebar .sf-slider .sf-item .sf-text h5 {
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.property-sidebar .single-sidebar .sf-slider .sf-item .sf-text span {
  font-size: 12px;
  color: #ee9818;
  font-weight: 500;
  display: block;
}

/*---------------------
  Product Compasion
-----------------------*/
.pc-table table {
  text-align: center;
  width: 100%;
  padding-right: 30px;
}
.pc-table table thead tr th {
  background: #f7f7f7;
  padding: 22px 0 24px;
}
.pc-table table thead tr th.type {
  font-size: 18px;
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
}
.pc-table table thead tr th.compare-item {
  padding-right: 30px;
}
.pc-table table thead tr th.compare-item.middle-item {
  padding-right: 60px;
}
.pc-table table thead tr th.compare-item .title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pc-table table thead tr th.compare-item img {
  margin-bottom: 22px;
  min-width: 100%;
}
.pc-table table thead tr th.compare-item h5 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 6px;
}
.pc-table table thead tr th.compare-item p {
  color: #666666;
  margin-bottom: 0;
}
.pc-table table thead tr th.compare-item p span {
  color: #ee9818;
  margin-right: 5px;
}
.pc-table table tbody tr:nth-child(even) {
  background: #f7f7f7;
}
.pc-table table tbody tr td {
  font-size: 14px;
  color: #636363;
  font-weight: 500;
  padding: 20px 0;
}
.pc-table table tbody tr td.p-type {
  color: #111111;
  font-weight: 600;
  width: 335px;
}
.pc-table table tbody tr td.icon-check span {
  color: #ee9818;
}
.pc-table table tbody tr td.icon-close span {
  color: #f31700;
}

/*---------------------
  Property Submit
-----------------------*/
.property-submit-form form h4 {
  color: #252525;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.property-submit-form form input {
  height: 46px;
  width: 100%;
  background: transparent;
  color: #666666;
  padding-left: 20px;
  font-size: 14px;
  border: none;
  border: 1px solid #e1e1e1;
}
.property-submit-form form input::placeholder {
  color: #666666;
}
.property-submit-form form .pf-title {
  margin-bottom: 75px;
}
.property-submit-form form .pf-title input {
  padding-left: 30px;
}
.property-submit-form form .pf-summernote {
  margin-bottom: 70px;
}
.property-submit-form form .pf-summernote .nav {
  border-bottom: none;
}
.property-submit-form form .pf-summernote .nav li a {
  font-size: 14px;
  color: #666666;
  border-bottom: none;
  border: 1px solid #e1e1e1;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 10px 60px;
}
.property-submit-form form .pf-summernote .nav li a.active {
  background: #252525;
  border-color: #252525;
  color: #ffffff;
}
.property-submit-form form .pf-summernote .text-editor .button-group {
  border: 1px solid #e1e1e1;
  padding-left: 30px;
  position: relative;
}
.property-submit-form form .pf-summernote .text-editor .button-group .btn-item {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #666666;
  padding-left: 0;
  padding-right: 15px;
  padding-top: 7px;
  padding-bottom: 6px;
  display: inline-block;
}
.property-submit-form form .pf-summernote .text-editor .button-group .btn-item.media-insert {
  background: #ee9818;
  color: #ffffff;
  padding-left: 34px;
  padding-right: 26px;
  position: absolute;
  right: -1px;
  top: -2px;
  height: 40px;
}
.property-submit-form form .pf-summernote .text-editor .button-group .btn-item.media-insert i {
  margin-right: 5px;
}
.property-submit-form form .pf-summernote .text-editor textarea {
  height: 305px;
  border: 1px solid #e1e1e1;
  border-top: none;
  width: 100%;
  resize: none;
}
.property-submit-form form .pf-location {
  margin-bottom: 45px;
}
.property-submit-form form .pf-location .location-inputs {
  margin-right: -20px;
  overflow: hidden;
}
.property-submit-form form .pf-location .location-inputs input {
  width: calc(33.33% - 20px);
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.property-submit-form form .pf-map {
  margin-bottom: 75px;
}
.property-submit-form form .pf-map .map-inputs input {
  width: 100%;
  margin-bottom: 20px;
}
.property-submit-form form .pf-map button {
  width: 100%;
  text-transform: initial;
}
.property-submit-form form .pf-map .g-map {
  height: 245px;
}
.property-submit-form form .pf-map .g-map iframe {
  width: 100%;
}
.property-submit-form form .pf-type {
  margin-bottom: 60px;
}
.property-submit-form form .pf-type .type-item {
  overflow: hidden;
}
.property-submit-form form .pf-type .type-item label {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  float: left;
  margin-bottom: 10px;
  margin-right: 130px;
}
.property-submit-form form .pf-type .type-item label:last-child {
  margin-right: 0;
}
.property-submit-form form .pf-type .type-item label .checkbox {
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #666666;
  border-radius: 2px;
  content: "";
}
.property-submit-form form .pf-type .type-item label input {
  position: absolute;
  visibility: hidden;
}
.property-submit-form form .pf-type .type-item label input:checked ~ span {
  background: #666666;
}
.property-submit-form form .pf-status {
  margin-bottom: 60px;
}
.property-submit-form form .pf-status .status-item label {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 130px;
}
.property-submit-form form .pf-status .status-item label:last-child {
  margin-right: 0;
}
.property-submit-form form .pf-status .status-item label .checkbox {
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #666666;
  border-radius: 2px;
  content: "";
}
.property-submit-form form .pf-status .status-item label input {
  position: absolute;
  visibility: hidden;
}
.property-submit-form form .pf-status .status-item label input:checked ~ span {
  background: #666666;
}
.property-submit-form form .pf-feature-price {
  margin-bottom: 55px;
}
.property-submit-form form .pf-feature-price .fp-inputs {
  margin-right: -20px;
  overflow: hidden;
}
.property-submit-form form .pf-feature-price .fp-inputs input {
  width: calc(33.33% - 20px);
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.property-submit-form form .pf-feature {
  margin-bottom: 50px;
}
.property-submit-form form .pf-feature .features-list {
  overflow: hidden;
}
.property-submit-form form .pf-feature .features-list .feature-item {
  width: 25%;
  float: left;
}
.property-submit-form form .pf-feature .features-list .feature-item label {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
}
.property-submit-form form .pf-feature .features-list .feature-item label:last-child {
  margin-right: 0;
}
.property-submit-form form .pf-feature .features-list .feature-item label .checkbox {
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #666666;
  border-radius: 2px;
  content: "";
}
.property-submit-form form .pf-feature .features-list .feature-item label input {
  position: absolute;
  visibility: hidden;
}
.property-submit-form form .pf-feature .features-list .feature-item label input:checked ~ span {
  background: #666666;
}
.property-submit-form form .pf-feature-image {
  margin-bottom: 75px;
}
.property-submit-form form .pf-feature-image .feature-image-content {
  background: #f5f5f5;
  position: relative;
}
.property-submit-form form .pf-feature-image .feature-image-content .image-uploader {
  min-height: 13rem;
}
.property-submit-form form .pf-feature-image .feature-image-content .image-uploader .uploaded .uploaded-image .delete-image i {
  font-size: 15px;
}
.property-submit-form form .pf-feature-image .feature-image-content .upload-input-class {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  z-index: -999;
}
.property-submit-form form .pf-feature-image .feature-image-content p {
  margin-bottom: 20px;
}
.property-submit-form form .pf-feature-image .feature-image-content p i {
  margin-right: 5px;
}
.property-submit-form form .pf-feature-image .feature-image-content div {
  font-size: 14px;
  color: #666666;
  margin-bottom: 25px;
}
.property-submit-form form .pf-property-details .property-details-inputs {
  margin-right: -20px;
  overflow: hidden;
}
.property-submit-form form .pf-property-details .property-details-inputs input {
  width: calc(33.33% - 20px);
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.property-submit-form form .pf-property-details button {
  width: 100%;
}

.richText {
  background: transparent;
}

.richText .richText-help {
  display: none;
}

.richText .richText-toolbar:last-child {
  background-color: #FAFAFA;
}

.richText .richText-editor {
  overflow-y: auto;
}

.richText .richText-editor:focus {
  border-left: none;
}

.richText .richText-toolbar ul li a {
  border: none;
}

li .richText-btn[data-command=toggleCode] {
  opacity: 0;
  visibility: hidden;
}

/*---------------------
  Agent Section
-----------------------*/
.agent-section {
  padding-bottom: 60px;
}

.agent-search-form {
  position: relative;
  margin-bottom: 20px;
  padding-left: 15px;
}
.agent-search-form form input {
  width: 100%;
  height: 46px;
  border: 1px solid #d7d7d7;
  font-size: 14px;
  color: #666666;
  padding-left: 20px;
  background: transparent;
  font-weight: 500;
}
.agent-search-form form input::placeholder {
  color: #666666;
}
.agent-search-form form button {
  font-size: 13px;
  color: #ffffff;
  background: #ee9818;
  border: none;
  height: 100%;
  width: 46px;
  position: absolute;
  right: 0;
  top: 0;
}

.as-slider .row {
  margin-right: 0px;
  margin-left: 0px;
}
.as-slider.owl-carousel .owl-stage-outer {
  padding-top: 20px;
}
.as-slider.owl-carousel .owl-nav {
  position: absolute;
  right: 15px;
  top: -66px;
}
.as-slider.owl-carousel .owl-nav button {
  height: 46px;
  width: 46px;
  background: #f2f2f2;
  border-radius: 50%;
  line-height: 54px;
  text-align: center;
  font-size: 27px;
  color: #111111;
  margin-left: 10px;
}

.as-item {
  text-align: center;
  background: #ffffff;
  padding: 35px 35px 30px 35px;
  box-shadow: 0px 3px 15px rgba(91, 91, 91, 0.15);
  margin-bottom: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.as-item:hover {
  background: #ee9818;
}
.as-item:hover .as-pic .rating-point {
  color: #ee9818;
  background: #ffffff;
}
.as-item:hover .as-text .at-title {
  border-color: #33d3b3;
}
.as-item:hover .as-text .at-title h6 {
  color: #ffffff;
}
.as-item:hover .as-text ul li {
  color: #ffffff;
}
.as-item:hover .as-text .primary-btn {
  background: #ffffff;
}
.as-item .as-pic {
  width: 151px;
  height: 151px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 25px;
}
.as-item .as-pic img {
  border-radius: 50%;
}
.as-item .as-pic .rating-point {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #ee9818;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  position: absolute;
  left: -10px;
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.as-item .as-text .at-title {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.as-item .as-text .at-title h6 {
  color: #111111;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.as-item .as-text .at-title .rating-star i {
  font-size: 10px;
  color: #ffb129;
  margin-right: -4px;
}
.as-item .as-text ul {
  text-align: left;
  padding-top: 20px;
  margin-bottom: 16px;
}
.as-item .as-text ul li {
  list-style: none;
  font-size: 14px;
  color: #111111;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  -webkit-transition: all 22s;
  transition: all 0.2s;
}
.as-item .as-text ul li span {
  font-weight: 600;
  float: right;
}
.as-item .as-text .primary-btn {
  background: #f2f2f2;
  color: #ee9818;
  display: block;
  padding: 14px 20px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/*-----------------------
  Profile Agent Content
------------------------*/
.profile-section {
  padding-bottom: 0;
}

.profile-agent-content {
  padding: 30px 50px 30px 30px;
  border: 1px solid #e1e1e1;
}
.profile-agent-content .profile-agent-info {
  position: relative;
}
.profile-agent-content .profile-agent-info:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 120px;
  background: #ebebeb;
  content: "";
}
.profile-agent-content .profile-agent-info .pi-pic {
  width: 120px;
  height: 120px;
  position: relative;
  float: left;
  margin-right: 30px;
}
.profile-agent-content .profile-agent-info .pi-pic img {
  border-radius: 50%;
}
.profile-agent-content .profile-agent-info .pi-pic .rating-point {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #ee9818;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.profile-agent-content .profile-agent-info .pi-text {
  overflow: hidden;
  padding-top: 20px;
}
.profile-agent-content .profile-agent-info .pi-text h5 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 4px;
}
.profile-agent-content .profile-agent-info .pi-text span {
  font-size: 12px;
  color: #2897bb;
  font-weight: 500;
}
.profile-agent-content .profile-agent-info .pi-text p {
  margin-bottom: 0;
  color: #111111;
  margin-top: 8px;
}
.profile-agent-content .profile-agent-widget {
  padding-right: 50px;
  position: relative;
}
.profile-agent-content .profile-agent-widget:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 120px;
  background: #ebebeb;
  content: "";
}
.profile-agent-content .profile-agent-widget ul {
  padding-top: 5px;
}
.profile-agent-content .profile-agent-widget ul li {
  list-style: none;
  font-size: 14px;
  color: #111111;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  -webkit-transition: all 22s;
  transition: all 0.2s;
}
.profile-agent-content .profile-agent-widget ul li span {
  font-weight: 600;
  float: right;
}
.profile-agent-content .profile-agent-newslatter {
  padding-top: 10px;
}
.profile-agent-content .profile-agent-newslatter h5 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 25px;
}
.profile-agent-content .profile-agent-newslatter form {
  position: relative;
}
.profile-agent-content .profile-agent-newslatter form input {
  height: 50px;
  padding-left: 20px;
  font-size: 14px;
  color: #111111;
  background: #f5f5f5;
  border: none;
  width: 100%;
  font-weight: 500;
}
.profile-agent-content .profile-agent-newslatter form input::placeholder {
  color: #111111;
}
.profile-agent-content .profile-agent-newslatter form button {
  height: 50px;
  width: 50px;
  background: #ee9818;
  color: #ffffff;
  font-size: 18px;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
}

.circle-calculator {
  font-family: 'Lato', sans-serif;
  color: #161616;
  text-align: left;
  padding: 1em 4em;
  max-width: 1100px;
  margin: auto;
}


.circle-calculator p {
  font-size: 1.1rem; font-family: 'Lato', sans-serif;
  color: #212222;
  margin-bottom: 2.5em;text-align: center;
}

.pp-calc {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2em;
  flex-wrap: nowrap;
}

.phase {
  flex: 1;
  border: 1px solid #f4f0e2;
  border-radius: 12px;
  text-align: center;
  padding: 2em 1.5em;
  transition: all 0.3s ease;
}


.circle h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #7a2d00;
  margin-bottom: 0.4em;
}

.circle p {
  font-size: 1rem;
  color: #7a3100;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .pp-calc {
    flex-direction: column;
  }

  .phase {
    width: 100%;
  }
}


/*---------------------
  About
-----------------------*/
.about-section {
  padding-bottom: 60px;
}

.about-text .at-title {
  margin-bottom: 20px;
}
.about-text .at-title h3 {
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-text .at-title p {
  font-size: 15px;
  line-height: 27px;
}
.about-text .at-feature .af-item {
  margin-bottom: 32px;
}
.about-text .at-feature .af-item .af-icon {
  float: left;
  margin-right: 30px;
}
.about-text .at-feature .af-item .af-text {
  overflow: hidden;
}
.about-text .at-feature .af-item .af-text h6 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-text .at-feature .af-item .af-text p {
  color: #111111;
  opacity: 0.7;
  margin-bottom: 0;
}

.about-pic {
  height: 423px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-pic .play-btn {
  font-size: 42px;
  color: #ffffff;
}

/*---------------------
  Blog
-----------------------*/
.blog-item {
  overflow: hidden;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 30px;
}
.blog-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 50px;
}
.blog-item.large-blog {
  padding-bottom: 25px;
}
.blog-item.large-blog .bi-pic {
  float: none;
  margin-bottom: 25px;
  margin-right: 0;
}
.blog-item.large-blog .bi-pic img {
  min-width: 100%;
}
.blog-item.large-blog .bi-pic .bi-text {
  overflow: visible;
}
.blog-item .bi-pic {
  float: left;
  margin-right: 30px;
}
.blog-item .bi-text {
  overflow: hidden;
}
.blog-item .bi-text h4 {
  margin-bottom: 6px;
}
.blog-item .bi-text h4 a {
  line-height: 31px;
  font-weight: 700;
  color: #111111;
}
.blog-item .bi-text h5 {
  margin-bottom: 6px;
}
.blog-item .bi-text h5 a {
  font-size: 20px;
  line-height: 31px;
  font-weight: 700;
  color: #111111;
}
.blog-item .bi-text ul {
  margin-bottom: 16px;
}
.blog-item .bi-text ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #999999;
  font-weight: 500;
  margin-right: 32px;
}
.blog-item .bi-text ul li:last-child {
  margin-right: 0;
}
.blog-item .bi-text ul li:last-child:after {
  display: none;
}
.blog-item .bi-text ul li span {
  color: #111111;
  font-weight: 600;
}
.blog-item .bi-text ul li:after {
  position: absolute;
  right: -23px;
  top: 6px;
  height: 6px;
  width: 6px;
  border: 1px solid #dcdcdc;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.blog-item .bi-text .read-more {
  font-size: 14px;
  color: #111111;
  font-weight: 600;
}
.blog-item .bi-text .read-more span {
  font-size: 16px;
  position: relative;
  top: 4px;
  right: -2px;
  font-weight: 600;
}

.blog-sidebar .follow-us {
  margin-bottom: 60px;
}
.blog-sidebar .follow-us .fu-links a {
  font-size: 14px;
  color: #ffffff;
  height: 46px;
  width: 46px;
  background: #3263AF;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.blog-sidebar .follow-us .fu-links a:last-child {
  margin-right: 0;
}
.blog-sidebar .follow-us .fu-links a.twitter {
  background: #40C4FF;
}
.blog-sidebar .follow-us .fu-links a.youtube {
  background: #FF0000;
}
.blog-sidebar .follow-us .fu-links a.instagram {
  background: linear-gradient(45deg, #af00e1, #ff9e35);
}
.blog-sidebar .feature-post {
  margin-bottom: 60px;
}
.blog-sidebar .feature-post .recent-post .rp-item {
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-sidebar .feature-post .recent-post .rp-item .rp-pic {
  float: left;
  margin-right: 20px;
}
.blog-sidebar .feature-post .recent-post .rp-item .rp-text h6 {
  margin-bottom: 4px;
}
.blog-sidebar .feature-post .recent-post .rp-item .rp-text h6 a {
  color: #111111;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  line-height: 21px;
}
.blog-sidebar .feature-post .recent-post .rp-item .rp-text span {
  font-size: 12px;
  color: #999999;
  position: relative;
  padding-left: 22px;
}
.blog-sidebar .feature-post .recent-post .rp-item .rp-text span:after {
  position: absolute;
  left: 0;
  top: 5px;
  height: 6px;
  width: 6px;
  border: 1px solid #dcdcdc;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.blog-sidebar .subscribe-form {
  background: #f5f5f5;
  padding: 30px;
}
.blog-sidebar .subscribe-form .section-title {
  margin-bottom: 25px;
}
.blog-sidebar .subscribe-form form input {
  font-size: 14px;
  color: #999999;
  font-weight: 500;
  width: 100%;
  height: 50px;
  border: 1px solid #cccccc;
  padding-left: 20px;
  background: transparent;
  margin-bottom: 20px;
}
.blog-sidebar .subscribe-form form input::placeholder {
  color: #999999;
}

/*---------------------
  Blog Details
-----------------------*/
.blog-details-section {
  padding-top: 80px;
  padding-bottom: 60px;
}

.blog-details-content .bc-top {
  margin-bottom: 24px;
}
.blog-details-content .bc-top p {
  font-size: 15px;
  line-height: 27px;font-family: "Lato", sans-serif;
}
.blog-details-content .bc-details {
  margin-bottom: 15px;
  overflow: hidden;
}
.blog-details-content .bc-details .bc-pic {
  float: left;
  margin-right: 30px;
}
.blog-details-content .bc-details .bc-pic img {
border-radius: 8px;
}
.blog-details-content .bc-details .bc-text {
  overflow: visible;
}
.blog-details-content .bc-details .bc-text p {
  font-size: 15px;
  line-height: 27px;
}
.blog-details-content .bc-desc {
  margin-bottom: 30px;
}
.blog-details-content .bc-desc p {
  font-size: 15px;
  line-height: 27px;
}
.blog-details-content .bc-quote {
  overflow: hidden;
  margin-bottom: 6px;
}
.blog-details-content .bc-quote .bq-icon {
  width: 75px;
  height: 75px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  line-height: 75px;
  text-align: center;
  font-size: 30px;
  color: #ee9818;
  float: left;
  margin-right: 20px;
}
.blog-details-content .bc-quote .bq-text {
  overflow: hidden;
}
.blog-details-content .bc-quote .bq-text p {
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 30px;
}
.blog-details-content .bc-desc-last {
  margin-bottom: 33px;
}
.blog-details-content .bc-desc-last p {
  font-size: 15px;
  line-height: 27px;
}
.blog-details-content .bc-tags {
  margin-bottom: 50px;
}
.blog-details-content .bc-tags a {
  font-size: 13px;
  color: #666666;
  display: inline-block;
  border: 1px solid #e1e1e1;
  padding: 8px 15px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.blog-details-content .bc-related-post {
  background: #f5f5f5;
  padding: 15px 20px 12px;
  margin-bottom: 65px;
}
.blog-details-content .bc-related-post .previous-post,
.blog-details-content .bc-related-post .next-post {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #111111;
}
.blog-details-content .bc-related-post .previous-post i,
.blog-details-content .bc-related-post .next-post i {
  margin-right: 5px;
  font-weight: 700;
}
.blog-details-content .bc-related-post .next-post {
  float: right;
}
.blog-details-content .bc-related-post .next-post i {
  margin-left: 5px;
  margin-right: 0;
}
.blog-details-content .bc-widget {
  margin-bottom: 30px;
}
.blog-details-content .bc-widget h4 {
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-weight: 700;
}
.blog-details-content .bc-widget .related-post .related-item {
  margin-bottom: 30px;
}
.blog-details-content .bc-widget .related-post .related-item .ri-pic {
  margin-bottom: 15px;
}
.blog-details-content .bc-widget .related-post .related-item .ri-pic img {
  min-width: 100%;box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.blog-details-content .bc-widget .related-post .related-item .ri-text h6 {
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 4px;
}
.blog-details-content .bc-widget .related-post .related-item .ri-text span {
  font-size: 12px;
  color: #999999;
  position: relative;
  padding-left: 22px;
}
.blog-details-content .bc-widget .related-post .related-item .ri-text span:after {
  position: absolute;
  left: 0;
  top: 5px;
  height: 6px;
  width: 6px;
  border: 1px solid #dcdcdc;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.blog-details-content .bc-widget .comment-option {
  margin-bottom: 55px;
}
.blog-details-content .bc-widget .comment-option .co-item {
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-details-content .bc-widget .comment-option .co-item.reply-item {
  padding-left: 115px;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-pic {
  float: left;
  margin-right: 25px;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-pic img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-text {
  overflow: hidden;
  position: relative;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-text h5 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 13px;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-text p {
  font-size: 15px;
  line-height: 26px;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-text ul {
  position: absolute;
  right: 0;
  top: 0;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-text ul li {
  list-style: none;
  font-size: 12px;
  color: #888888;
  margin-right: 25px;
  display: inline-block;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-text ul li:last-child {
  margin-right: 0;
}
.blog-details-content .bc-widget .comment-option .co-item .ci-text ul li i {
  font-size: 14px;
  color: #ee9818;
  margin-right: 5px;
}

/*---------------------
  Blog Hero
-----------------------*/
.blog-hero-section {
  height: 640px;
  display: flex;
  align-items: center;
  text-align: center;
}


.bh-text {
  display: inline-block;
  text-align: center;
 
}
.bh-text h4 {
  margin-bottom: 6px;
  font-weight: 700;
  color: #fdfdfd;font-size: 90px;text-transform: uppercase;
 font-family: "Bricolage Grotesque", sans-serif; background: linear-gradient(90deg, #ffffff 0%, #daab44 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.bh-text p{
  color: #ffffff;
  font-size: 19px;font-family: "Montserrat", sans-serif;   font-weight:300;
}
.bh-text ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #999999;
  font-weight: 500;
  margin-right: 32px;
}
.bh-text ul li:last-child {
  margin-right: 0;
}
.bh-text ul li:last-child:after {
  display: none;
}
.bh-text ul li span {
  color: #111111;
  font-weight: 600;
}
.bh-text ul li:after {
  position: absolute;
  right: -23px;
  top: 6px;
  height: 6px;
  width: 6px;
  border: 1px solid #dcdcdc;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*---------------------
  Contact Form
-----------------------*/
.cf-content {
  text-align: center;
}
.cf-content .cc-title {
  margin-bottom: 35px;
}
.cf-content .cc-title h4 {
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cf-content .cc-form input {
  margin-bottom: 24px;
}
.cf-content .cc-form textarea {
  margin-bottom: 10px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media only screen and (min-width: 1600px) and (max-width: 1920px) {
  .hs-slider.owl-carousel .owl-nav button {
    left: -220px;
  }

  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: -220px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1350px) {
  .hs-slider.owl-carousel .owl-nav button {
    left: 0px;
  }

  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hs-top .ht-widget .hw-btn {
    font-size: 11px;
  }

  .hs-slider.owl-carousel .owl-nav button {
    left: 0;
  }

  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }

  .property-item .pi-text ul li {
    margin-right: 25px;
  }

  .feature-property-left {
    padding: 40px 30px 30px 30px;
  }

  .cs-item-list .cs-item .cs-text {
    width: 160px;
  }

  .pd-text .pd-widget .pd-agent .agent-text .at-title .primary-btn {
    position: relative;
    top: 10px;
  }

  .property-submit-form form .pf-map button {
    font-size: 12px;
  }

  .property-submit-form form .pf-type .type-item label {
    margin-right: 70px;
  }

  .profile-agent-content {
    padding: 30px 20px 30px 20px;
  }

  .ts-item {
    padding: 25px 25px 30px 25px;
  }
}
/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hs-slider.owl-carousel .owl-nav button {
    left: -30px;
  }

  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: -30px;
  }

  .change-btn {
    text-align: left;
    margin-bottom: 20px;
  }

  .property-controls {
    text-align: left;
    margin-bottom: 20px;
  }

  .chooseus-features .cf-item {
    width: 100%;
  }

  .chooseus-features .cf-item .cf-text {
    overflow: hidden;
    padding-top: 20px;
  }

  .team-section .team-btn a {
    padding: 12px 26px;
  }

  .ts-item .ts-text img {
    height: 160px;
    width: 160px;
  }

  .ts-item {
    margin-bottom: 20px;
  }

  .cs-item-list .cs-item {
    width: calc(33.33% - 10px);
    margin-bottom: 10px;
  }

  .contact-section {
    height: auto;
  }

  .cs-map {
    height: 450px;
    position: relative;
    width: 100%;
  }

  .pd-text .pd-social {
    text-align: left;
    padding-top: 0;
  }

  .pd-text .pd-title {
    margin-bottom: 30px;
  }

  .property-submit-form form .pf-summernote .text-editor .button-group .btn-item {
    padding-right: 10px;
  }

  .property-submit-form form .pf-map .g-map {
    margin-top: 30px;
  }

  .property-submit-form form .pf-type .type-item label {
    margin-right: 30px;
  }

  .property-submit-form form .pf-feature-price .fp-inputs input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .property-submit-form form .pf-property-details .property-details-inputs input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .property-submit-form form .pf-location .location-inputs input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .agent-search-form {
    margin-bottom: 70px;
  }

  .as-slider.owl-carousel .owl-nav {
    top: -50px;
  }

  .profile-agent-content .profile-agent-info {
    margin-bottom: 20px;
    overflow: hidden;
  }
  .profile-agent-content .profile-agent-info:after {
    display: none;
  }

  .profile-agent-content .profile-agent-widget {
    margin-bottom: 15px;
  }
  .profile-agent-content .profile-agent-widget:after {
    display: none;
  }

  .blog-sidebar {
    padding-top: 50px;
  }

  .review-form .group-input input,
.leave-comment-form .group-input input,
.cc-form .group-input input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .review-form .group-input,
.leave-comment-form .group-input,
.cc-form .group-input {
    margin-right: 0;
  }

  .property-submit-form form .pf-location .location-inputs {
    margin-right: 0;
    overflow: visible;
  }

  .property-submit-form form .pf-feature-price .fp-inputs {
    margin-right: 0;
    overflow: visible;
  }

  .property-submit-form form .pf-property-details .property-details-inputs {
    margin-right: 0;
    overflow: visible;
  }

  .feature-property-left {
    height: auto;
  }

  .hs-top .ht-widget {
    border-bottom: none;
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .hs-nav .hn-social {
    display: none;
  }

  .hs-top .container {
    position: relative;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    visibility: hidden;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }

  .canvas-open {
    font-size: 22px;
    height: 35px;
    width: 35px;
    border: 1px solid #111111;
    display: inline-block;
    line-height: 37px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 26px;
    display: block;
  }
  .canvas-open span {
    font-weight: 600;
  }

  .offcanvas-menu-wrapper {
    width: 300px;
    position: fixed;
    height: 100%;
    background: #ffffff;
    overflow-y: scroll;
    padding: 70px 30px 30px 30px;
    z-index: 99;
    left: -300px;
    top: 0;
    opacity: 0;
    display: block;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .offcanvas-menu-wrapper .canvas-close {
    font-size: 22px;
    height: 35px;
    width: 35px;
    border: 1px solid #111111;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .offcanvas-menu-wrapper .canvas-close span {
    font-weight: 600;
  }
  .offcanvas-menu-wrapper .logo {
    margin-bottom: 40px;
  }
  .offcanvas-menu-wrapper .logo a {
    display: inline-block;
  }
  .offcanvas-menu-wrapper .om-widget {
    margin-bottom: 30px;
  }
  .offcanvas-menu-wrapper .om-widget ul {
    margin-bottom: 20px;
  }
  .offcanvas-menu-wrapper .om-widget ul li {
    list-style: none;
    font-size: 14px;
    color: #444444;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .offcanvas-menu-wrapper .om-widget ul li i {
    display: inline-block;
    font-size: 16px;
    color: #00c8a0;
    height: 46px;
    width: 46px;
    background: #f5f5f5;
    line-height: 46px;
    text-align: center;
    margin-right: 10px;
  }
  .offcanvas-menu-wrapper .om-widget ul li span {
    margin-left: 20px;
    display: inline-block;
    position: relative;
  }
  .offcanvas-menu-wrapper .om-widget ul li span:after {
    position: absolute;
    left: -13px;
    top: -2px;
    content: "|";
  }
  .offcanvas-menu-wrapper .om-widget .hw-btn {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #ee9818;
    padding: 14px 30px;
    text-transform: uppercase;
    display: inline-block;
  }
  .offcanvas-menu-wrapper .om-menu {
    display: none;
  }
  .offcanvas-menu-wrapper .slicknav_btn {
    display: none;
  }
  .offcanvas-menu-wrapper .slicknav_nav {
    display: block !important;
  }
  .offcanvas-menu-wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
  }
  .offcanvas-menu-wrapper .slicknav_nav ul {
    margin: 0;
  }
  .offcanvas-menu-wrapper .slicknav_nav .slicknav_row,
.offcanvas-menu-wrapper .slicknav_nav a {
    padding: 10px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
  }
  .offcanvas-menu-wrapper .slicknav_nav a:hover {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .offcanvas-menu-wrapper .slicknav_nav li {
    border-bottom: 1px solid #111111;
  }
  .offcanvas-menu-wrapper .slicknav_nav li .dropdown {
    border-top: 1px solid #111111;
  }
  .offcanvas-menu-wrapper .om-social a {
    font-size: 16px;
    color: #111111;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #111111;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
  }
}
/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {
  .ts-item {
    margin-bottom: 20px;
  }

  .cs-item-list .cs-item {
    margin-bottom: 10px;
  }

  .hs-item {
    height: auto;
    padding: 113px 15px;
  }

  .pd-text .pd-social {
    text-align: left;
    padding-top: 0;
  }

  .pd-text .pd-title {
    margin-bottom: 30px;
  }

  .property-submit-form form .pf-map .g-map {
    margin-top: 30px;
  }

  .property-submit-form form .pf-feature-price .fp-inputs input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .property-submit-form form .pf-property-details .property-details-inputs input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .property-submit-form form .pf-location .location-inputs input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .agent-search-form {
    margin-bottom: 70px;
  }

  .as-slider.owl-carousel .owl-nav {
    top: -50px;
  }

  .profile-agent-content .profile-agent-info {
    margin-bottom: 20px;
    overflow: hidden;
  }

  .profile-agent-content .profile-agent-widget {
    margin-bottom: 15px;
  }
  .profile-agent-content .profile-agent-widget:after {
    display: none;
  }

  .profile-agent-content .profile-agent-info:after {
    display: none;
  }

  .blog-sidebar {
    padding-top: 50px;
  }

  .review-form .group-input input,
.leave-comment-form .group-input input,
.cc-form .group-input input {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .review-form .group-input,
.leave-comment-form .group-input,
.cc-form .group-input {
    margin-right: 0;
  }

  .property-submit-form form .pf-location .location-inputs {
    margin-right: 0;
    overflow: visible;
  }

  .property-submit-form form .pf-feature-price .fp-inputs {
    margin-right: 0;
    overflow: visible;
  }

  .property-submit-form form .pf-property-details .property-details-inputs {
    margin-right: 0;
    overflow: visible;
  }

  .hs-item .hc-inner-text .hc-text {
    float: none;
    margin-right: 0;
  }

  .hs-item .hc-inner-text .hc-widget {
    overflow: hidden;
    width: auto;
    position: relative;
    right: 0;
    top: 18px;
  }

  .hs-slider.owl-carousel .owl-nav button {
    left: 0;
  }

  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }

  .search-form-content .filter-form {
    margin-right: 0;
  }

  .search-form-content .filter-form .sm-width {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0 !important;
  }

  .change-btn {
    text-align: left;
    margin-bottom: 20px;
  }

  .property-controls {
    text-align: left;
  }

  .property-controls ul li {
    margin-right: 24px;
    margin-bottom: 20px;
  }

  .property-controls ul li:after {
    right: -17px;
  }

  .chooseus-features .cf-item {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .fp-slider .fp-item .fp-text ul {
    position: relative;
    right: 0;
  }

  .team-section .team-btn {
    text-align: left;
    margin-bottom: 25px;
  }

  .cs-item-list .cs-item {
    width: calc(50% - 10px);
  }

  .testimonial-section .section-title {
    margin-bottom: 80px;
  }

  .testimonial-slider.owl-carousel .owl-nav {
    top: -50px;
  }

  .contact-section {
    height: auto;
  }

  .cs-map {
    height: 450px;
    position: relative;
    width: 100%;
  }

  .pd-text .pd-board .tab-board .tab-content .tab-details ul {
    width: 100%;
    float: left;
  }
  .pd-text .pd-board .tab-board .tab-content .tab-details ul.left-table {
    margin-bottom: 10px;
  }

  .pd-text .pd-board .tab-board .nav-tabs .nav-item a {
    padding: 14px 26px;
  }

  .pd-text .pd-widget .pd-agent .agent-pic {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .pc-table {
    overflow-x: auto;
  }

  .contact-info {
    padding-top: 60px;
  }

  .blog-item .bi-pic {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .bh-text ul li {
    margin-right: 26px;
  }

  .bh-text ul li:after {
    right: -19px;
  }

  .blog-details-section .p-0 {
    padding: 0 15px !important;
  }

  .blog-details-content .bc-details .bc-pic {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .blog-details-content .bc-details .bc-pic img {
    min-width: 100%;
  }

  .blog-details-content .bc-widget .comment-option .co-item .ci-text ul {
    position: relative;
  }

  .feature-property-left {
    height: auto;
  }

  .property-submit-form form .pf-type .type-item label {
    margin-right: 20px;
  }

  .property-submit-form form .pf-feature .features-list .feature-item {
    width: 100%;
    float: none;
  }

  .more-option .card .card-body .mo-list .ml-column {
    width: 100%;
    float: none;
  }

  .property-submit-form form .pf-summernote .text-editor .button-group .btn-item.media-insert {
    position: relative;
    right: 0;
    top: 0;
    height: auto;
  }

  .hs-top .ht-widget {
    border-bottom: none;
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .hs-nav .hn-social {
    display: none;
  }

  .hs-top .container {
    position: relative;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    visibility: hidden;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }

  .canvas-open {
    font-size: 22px;
    height: 35px;
    width: 35px;
    border: 1px solid #111111;
    display: inline-block;
    line-height: 37px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 26px;
    display: block;
  }
  .canvas-open span {
    font-weight: 600;
  }

  .offcanvas-menu-wrapper {
    width: 300px;
    position: fixed;
    height: 100%;
    background: #ffffff;
    overflow-y: scroll;
    padding: 70px 30px 30px 30px;
    z-index: 99;
    left: -300px;
    top: 0;
    opacity: 0;
    display: block;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .offcanvas-menu-wrapper .canvas-close {
    font-size: 22px;
    height: 35px;
    width: 35px;
    border: 1px solid #111111;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .offcanvas-menu-wrapper .canvas-close span {
    font-weight: 600;
  }
  .offcanvas-menu-wrapper .logo {
    margin-bottom: 40px;
  }
  .offcanvas-menu-wrapper .logo a {
    display: inline-block;
  }
  .offcanvas-menu-wrapper .om-widget {
    margin-bottom: 30px;
  }
  .offcanvas-menu-wrapper .om-widget ul {
    margin-bottom: 20px;
  }
  .offcanvas-menu-wrapper .om-widget ul li {
    list-style: none;
    font-size: 14px;
    color: #444444;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .offcanvas-menu-wrapper .om-widget ul li i {
    display: inline-block;
    font-size: 16px;
    color: #00c8a0;
    height: 46px;
    width: 46px;
    background: #f5f5f5;
    line-height: 46px;
    text-align: center;
    margin-right: 10px;
  }
  .offcanvas-menu-wrapper .om-widget ul li span {
    margin-left: 20px;
    display: inline-block;
    position: relative;
  }
  .offcanvas-menu-wrapper .om-widget ul li span:after {
    position: absolute;
    left: -13px;
    top: -2px;
    content: "|";
  }
  .offcanvas-menu-wrapper .om-widget .hw-btn {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #ee9818;
    padding: 14px 30px;
    text-transform: uppercase;
    display: inline-block;
  }
  .offcanvas-menu-wrapper .om-menu {
    display: none;
  }
  .offcanvas-menu-wrapper .slicknav_btn {
    display: none;
  }
  .offcanvas-menu-wrapper .slicknav_nav {
    display: block !important;
  }
  .offcanvas-menu-wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
  }
  .offcanvas-menu-wrapper .slicknav_nav ul {
    margin: 0;
  }
  .offcanvas-menu-wrapper .slicknav_nav .slicknav_row,
.offcanvas-menu-wrapper .slicknav_nav a {
    padding: 10px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
  }
  .offcanvas-menu-wrapper .slicknav_nav a:hover {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .offcanvas-menu-wrapper .slicknav_nav li {
    border-bottom: 1px solid #111111;
  }
  .offcanvas-menu-wrapper .slicknav_nav li .dropdown {
    border-top: 1px solid #111111;
  }
  .offcanvas-menu-wrapper .om-social a {
    font-size: 16px;
    color: #111111;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #111111;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
  }
}
/* Small Device = 320px */
@media only screen and (max-width: 479px) {
  .hs-item .hc-inner-text {
    padding: 25px 14px;
  }

  .hs-slider.owl-carousel .owl-nav {
    display: none;
  }

  .ts-item {
    padding: 25px 25px 30px 25px;
  }

  .pd-text .pd-board .tab-board .tab-content .tab-details ul li {
    padding-left: 15px;
  }

  .pd-text .pd-widget .pd-agent .agent-text .at-title .primary-btn {
    position: relative;
  }

  .pd-text .pd-widget .pd-agent .agent-text .at-title span {
    margin-bottom: 15px;
  }

  .pd-text .pd-widget .pd-agent .agent-text .at-option .at-social {
    margin-top: 10px;
  }

  .review-form .rating,
.leave-comment-form .rating,
.cc-form .rating {
    position: relative;
    right: 0;
    margin-bottom: 20px;
  }

  .property-sidebar .single-sidebar .top-agent .ta-item .ta-text {
    padding-top: 20px;
  }

  .property-submit-form form .pf-summernote .nav li a {
    padding: 10px 50px;
  }

  .profile-agent-content .profile-agent-info .pi-pic {
    float: none;
    margin-right: 0;
  }

  .profile-agent-content .profile-agent-widget ul li span {
    display: block;
    float: none;
  }

  .cs-item-list .cs-item {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .profile-agent-content {
    padding: 30px 30px 30px 30px;
  }

  .property-item .pi-text ul li {
    margin-right: 20px;
  }

  .breadcrumb-text {
    padding: 35px 35px;
  }

  .bh-text {
    padding: 35px 50px 32px 50px;
  }

  .bh-text ul li {
    display: block;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .bh-text ul li:after {
    display: none;
  }

  .blog-details-content .bc-related-post .next-post {
    float: none;
    display: block;
    text-align: right;
    margin-top: 10px;
  }

  .blog-details-content .bc-widget .comment-option .co-item.reply-item {
    padding-left: 0;
  }

  .blog-details-content .bc-widget .comment-option .co-item .ci-text ul li {
    margin-right: 5px;
  }

  .blog-details-content .bc-widget .comment-option .co-item .ci-pic {
    float: none;
    margin-bottom: 20px;
  }

  .blog-details-content .bc-widget .comment-option .co-item.reply-item {
    padding-left: 10%;
  }
}


.search-box, .readonly-box {
  width: 280px;
  height: 54px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 16px;
  border: 1px solid #e6e6e6;
  font-size: 12px;
  outline: none;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.search-box:focus {
  border-color: #c2b280;
  box-shadow: 0 8px 24px rgba(193, 178, 128, 0.25);
}

/* Readonly fields */
.readonly-box {
  background: #f4f5f7;
  color: #1a1a1a;
  pointer-events: none;
}

/* Search button */
.search-btn {
  padding: 0 28px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #3d3425, #5c4b35);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.search-btn:hover {
  background: linear-gradient(135deg, #5c4b35, #3d3425);
  transform: translateY(-1px);
}

/* Container */
.search-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  gap: 10px;
}

/* Suggestions dropdown */
.suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  width: 90vw;              /* responsive width */
  max-width: 880px;
  background: #fff;
  border: 1px solid #ddd;
  opacity: 0;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999;             /* ensure it stays on top */
  border-radius: 8px;
  pointer-events: none;
}

/* When show class is active */
.suggestions.show {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* Suggestion items */
.suggestion-item {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: #222;                 /* text clearly visible */
  background: #fff;            /* solid background */
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.suggestion-item:hover {
  background: #f9f9f9;
}

.suggestion-item:last-child {
  border-bottom: none;
}
/* Group wrapper */
.search-group {
  display: flex;
  gap: 8px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .search-group {
    flex-direction: column; /* inputs niche niche aayenge */
    width: 100%;
  }

  .search-box, .readonly-box, .search-btn {
    max-width: 100%;
    width: 100%;
  }

  .search-btn {
    text-align: center;
    padding: 14px;
  }
}

.marquee-content {
  animation: marquee 80s linear infinite running;
  
}

.marquee-content:hover {
  animation-play-state: running;
}

.marquee-tag {
  width: 200px;
  transition: all 0.2s ease;filter: grayscale(99%);
}



@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.marquee-tag:hover .marquee-tag {
  animation-play-state: running; /* force it to continue on hover */
}.marquee-content h4{
       font-family: 'Archivo Black', sans-serif;
  font-size: 58px;font-weight: 900;
  color: transparent; /* text color */
  -webkit-text-stroke: 1px white; /* stroke size + color */
  text-transform: uppercase;letter-spacing: 3px;user-select: none;cursor:text;

}


.w-100 {
  width: 100% !important;
}
.d-flex {
  display: flex !important;
}.align-items-center {
  align-items: center !important;
}.overflow-hidden {
  overflow: hidden !important;
}
.bg-about{
  background: #1a1a1a;color: #fff;
}.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}.gap-8 {
  gap: 40px !important;
}
.round-10 {
  width: 10px;
  height: 10px;
}
.bg-white {
  opacity: 1;
  background-color: white !important;
}
.bg-opacity-10 {
  opacity: 0.1;
}

.rounded-circle {
  border-radius: 50% !important;
}.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.bg-blue-600,.bg-green-600{
  background-color: rgb(71, 71, 38);border-radius: 100px;
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #ddd;
  z-index: 1000;  font-family: "Oswald", sans-serif;
  
}

.bottom-nav a {
  color: #202020;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  font-weight: 600;text-transform: uppercase;
  transition: color 0.3s ease;
}
.bottom-nav a:hover {
  color: #c07709; 
}


/*  Hide bottom nav on mobile/tablet devices */
@media (max-width: 1024px) {
  .bottom-nav {
    display: none;
  }
}
.payment-section {
  text-align: center;
  margin: 60px auto;
}

.payment-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;font-weight: 600; 
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;

}

.payment-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;font-family: "Quicksand", sans-serif;font-weight: 400;
}

.payment-table th, .payment-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
}

.payment-table th {
  background-color: #f5f5f5;
  color: #333;
  font-weight: 600;
}

.payment-table tr:nth-child(even) {
  background-color: #fafafa;
}

.payment-table tr:hover {
  background-color: #fffcf0;
}

.accordion-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-family: "poppins", sans-serif;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background: #fafafa;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}



.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
}

.accordion-content img {
  width: 100%;
  display: block;
}
.accordion-item.active .accordion-content {
  max-height: 600px; /* enough for image height */
}
#community {
  padding: 50px 0;
}

.community-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.community-container h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #31190b;font-family: "Special Gothic", sans-serif;     
}


.community-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 20px;
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-container p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
font-family: "Quicksand", sans-serif;              
  font-weight: 400;
}

.community-container ul {
  margin-top: 25px;
  padding-left: 25px;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.community-container ul li {
  margin-bottom: 8px;
}
#experts {
  background: #fefefe;
  text-align: center;
  padding: 60px 20px;
}

.experts-container h3 {
  font-size: 31px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 30px;
font-family: "Merriweather", serif;   
}

.register-btn {
  background:rgb(17, 17, 17);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;font-family: "Montserrat", sans-serif;
}

.register-btn:hover {
  background: rgb(17, 17, 17);
  padding: 12px 35px;
}

.crypto-text {
  margin-top: 25px;
  font-size: 16px;
  color: #444;
  font-weight: 500;
}

.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eaeaea;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
  .video-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
  }

  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video ko container me auto adjust karta hai */
    display: block;
  }
 .ta-active{
 box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
 border-radius: 8px;
 }

 /* ---------- BASIC LAYOUT ---------- */
.property-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.property-left { flex: 1 1 45%; }
.property-left h2 { font-size: 32px; color: #0d5c75; margin-bottom: 8px; font-weight: 600;}
.property-left p { margin: 6px 0; color: #333333; line-height: 1.6; }
.price { margin-top: 10px; font-size: 20px; color: #0d5c75; }
.price strong{color: rgb(250, 122, 37);}
.price span{color: rgb(250, 122, 37);font-family: "Montserrat", sans-serif; }
.btn-primary {
  background: #e4e4e4;
  color: #0d5c75;font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 16px;box-shadow: none !important;outline: none !important;
}
.btn-primary:hover{
  background: #296f85;color: #e4e4e4;
}
.btn-primary:focus{
  background-color: #296f85 !important;box-shadow: none !important;outline: none !important;
}
.brochure-link {
  display: inline-block;
  margin-left: 15px;
  color: #e9671c;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #e9671c;
  position: relative;
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* Arrow icon using Font Awesome 4.7 */
.brochure-link::after {
  content: "\f105"; /* Font Awesome chevron-right */
  font-family: FontAwesome;
  position: absolute;
  right: -10px; /* closer to text */
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.4s ease;
  color: #e9671c;
  font-size: 16px;
}

/* Hover states */
.brochure-link:hover,
.brochure-link:active {
  color: #c46f0f;
  border-bottom: 1px solid #e48314;
}

.brochure-link:hover::after {
  opacity: 1;
  transform: translateX(5px);
  color: #c46f0f;
}
/* 👇 Add this new line */
.brochure-link:visited {
  color: #c46f0f;
  border-bottom: 1px solid #c46f0f;
}
.property-right {
  flex: 1 1 50%;
  display: flex;
  gap: 10px;
}

.main-image { flex: 2; }
.side-images { flex: 1; display: flex; flex-direction: column; gap: 10px; }

.property-right img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.show-all-wrapper { position: relative; }
.show-all {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 5px;
  cursor: pointer;user-select: none;
}

/* ---------- POPUP STYLES ---------- */
.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  max-width: 90%;
  width: 800px;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.carousel { position: relative; }
.carousel img {
  width: 100%;
  border-radius: 10px;
  transition: opacity 0.4s ease;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  font-size: 24px;height: 50px;width: 50px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 100%;
}

.prev:hover, .next:hover { background: rgba(255,255,255,0.4); }
.prev { left: -40px; } .next { right: -40px; }

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.thumbnails img {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.thumbnails img.active, .thumbnails img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .property-section { flex-direction: column; padding: 20px; }
  .property-right { flex-direction: column; }
  .main-image { flex: 1; }
  .side-images { flex-direction: row; }
}
.property-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 18px;
  padding: 40px;
  background: conic-gradient(from 270deg at 117% 39%,rgb(247, 247, 247), rgb(247, 247, 247), #ffffff )
}

.property-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #a02929;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Sizes */
.property-card.tall { grid-row: span 2; }
.property-card.portrait { grid-row: span 2; }
.property-card.landscape { grid-column: span 2; }
.property-card.square { grid-row: span 1; }

/* Hover */
.property-card:hover {
transition: .4s;
}
.property-card:hover img {
  transform: scale(1.08);transition: .4s;
}

/* Text Overlay */
.property-info {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.property-info h4 { font-size: 15px; font-weight: 600;color: #ffffff; }
.property-info p { font-size: 13px; opacity: 0.9;color: #ffffff; }
/* Show More */
.show-more-card {
  background: #ff623d;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;        /* 👈 align content to bottom */
  justify-content: flex-start;  /* 👈 move content to left */
  padding: 20px;                /* 👈 add spacing from edges */
  transition: background 0.3s ease, transform 0.3s ease;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.show-more-card:hover {
  background: #e24f2d;
  transform: translateY(-5px);
}

.show-more-content {
  text-align: left;             /* 👈 left align text */
  font-weight: 600;
  font-size: 30px;
  line-height: 1.4;
}
.show-more-content a{
color: #000 !important;
}
.show-more-content p{
  color: rgb(0, 0, 0);
}
.show-more-content .arrow {
  font-size: 28px;
  display: inline-block;        /* 👈 same line as text if needed */
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.show-more-card:hover .arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .property-masonry {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-rows: 160px;
    padding: 20px;
  }
  .property-info h4 { font-size: 13px; }
  .show-more-content { font-size: 15px; }
}

  .hidden {
    display: none;
  }


  /* Popup */
  .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: none;
    width: 100%;
    z-index: 10;
  }
  .popup button {
    margin-top: 10px;
    background: black;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
  }
  .fade {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .heart {
    font-size: 60px;
    color: gray;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
  }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  z-index: 9999;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
.toast.success { background: #28a745; }
.toast.error { background: #dc3545; }
.popup-overlay {
  position: fixed;
  top:0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  width: 90%; height: 90%;
  background: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}
/* Shimmer overlay initially hidden */
.shimmer {
  position: absolute;
  top:0; left:0;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.2) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.2) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  opacity: 0; /* hidden by default */
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pi-pic:hover .shimmer {
  opacity: 1; /* show on hover */
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.cta-section {
  width: 100%;
  background: #fff;
  padding: 80px 5%;
  box-sizing: border-box;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.cta-text {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.cta-text .small-text {
  color: #888;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;letter-spacing: 1.3px;
  margin-bottom: 10px;font-family: 'lato' , sans-serif;
}

.cta-text h1 {
  font-size: 36px;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;font-weight: 600;font-family: "Merriweather", serif;  
}

.cta-text .desc {
  color: #555;
  font-size: 14px;
  line-height: 1.6;letter-spacing: 1.3px;
  margin-bottom: 20px;
}

.cta-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.cta-text li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  line-height: 1.5;list-style: none;text-decoration: none;
}

.cta-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #cca331;
  border-radius: 2px; /* remove if you want sharp square */
}
.cta-btn {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #fff;box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 1px, rgb(51, 51, 51) 0px 0px 0px 1px;color: #000;
}

.cta-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.cta-image img {user-select: none;
  width: 100%;
height: 500px;  object-fit: cover;
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text ul {
    list-style: none;
    padding: 0;
  }
}


.btn-green{
   appearance: none;
 background: linear-gradient(135deg, #f6ea94 0%, #e5d66e 100%);
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: "lato", sans-serif; 
  font-size: 14px;
  line-height: 20px;
  list-style: none;
  padding: 10px 16px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;text-transform: uppercase;
}
.btn-green:hover{
  transition: .5s;
 background: linear-gradient(135deg, #e5d66e 0%, #f6ea94 100%);

  text-decoration: none;
  transition-duration: 0.1s;
}
.btn-green:disabled{
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}
.btn-green:active{
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}
.btn-green:focus{
  outline: 1px transparent;
}
.btn-green:before{  display: none;}
.btn-green:-webkit-details-marker{
    display: none;
}
.btn-grey{
 appearance: none;
  background-color: transparent;
  border: 1px solid #1a1a1a;
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
} .btn-grey:hover, .btn-grey:focus{
    opacity: .75;
}
.why-choose-us .why-heading {
    color: #151515;
    	background: linear-gradient(90deg,#7d5417,#bfa351 25%,#1a1a1a 54%,#1a1a1a 75%,#f6dca2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
font-family: "Bricolage Grotesque", sans-serif; 
    font-weight: bold;
    font-size: 42px;
}

.why-choose-us .card {
    padding: 15px;
    border: 0;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.why-choose-us .card .card-content {
    z-index: 99;
}

.why-choose-us .card .card-heading {
    color: #151515;
    font-size: 15px;
    font-weight: bold;text-transform: uppercase;
}

.why-choose-us .card .card-text {
    color: #969696;
    font-size: 14px;padding-top: 5px;
}

.why-choose-us .card:hover {
    background: #3a2c12;
}

.why-choose-us .card:hover::before {
    content: '';
    background: #7c582a;
    display: block;
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    top: -40px;
    box-shadow: 0 0 30px #7c562a;
    right: -50px;
    filter: blur(20px);
}

.why-choose-us .card:hover .card-heading {
    color: #fff;
}

.why-choose-us .card:hover .card-text {
    color: rgba(255, 255, 255, .75);
}

@media screen and (max-width:768px) {
    .why-choose-us .card .card-heading {
        font-size: 26px;
    }
    .why-choose-us .card .card-text {
        font-size: 18px;
    }
}
.how-it-works {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 10px;
  border-radius: 19px;
  gap: 20px;
}

.steps {
  flex: 1;
}

.step {
  margin-bottom: 20px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;color: #d48816;
  font-family: "montserrat", sans-serif;
}

.step p {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;font-family: "poppins", serif;
}

.steps-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

.steps-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 15px;
  object-fit: cover;
}@media (max-width: 768px) {
  .how-it-works {
    flex-direction: column;
    text-align: center;
  }
  .steps-image {
    margin-top: 20px;
  }
} .bd-section {
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.bd-intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;padding: 20px;
}

.bd-ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
  border-left: 3px solid #d4af37;
}

.bd-ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 10px;
}
.bd-ul strong{
  color: #d48816;
}
.bd-ul li::before {
  content: "•";
  color: #d4af37;
  position: absolute;
  left: -15px;
  font-size: 18px;
  line-height: 1;
}

.bd-ul p {
  margin: 8px 0 0 0;
  color: #444;
  font-size: 0.98rem;
}

.inner-ul {
  border-left: none;
  margin-top: 8px;
}

.bd-note {
  font-size: 0.95rem;
  color: #555;
  background: #f8f8f8;
  border-left: 4px solid #d4af37;
  padding: 10px 15px;
  border-radius: 6px;
}

.bd-recommend {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  margin-top: 20px;
}

.faqtabs {
  max-width: 1000px;
  margin: 50px auto;
  font-family: "lato", sans-serif;
}

.faqtabs h2 {
  font-size: 35px;
  color: #d48816;
  font-weight: 700;
  margin-bottom: 25px;
}

.faqbox {
  border: 1px solid #e5e7eb;
  background: #fff;
  overflow: hidden;margin: 5px;
  transition: all 0.3s ease;border-radius: 12px;
}

.faqtitle {
  width: 100%;
  padding: 18px 20px;
  cursor: pointer;
  background: #fff;
  color: #806700;
  font-size: 1.15em;
  font-weight: 500;
  text-align: left;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faqtitle:hover {
  background: transparent;
}

.faqicon {
  font-size: 16px;
  color: #9ca3af;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faqcontent {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  line-height: 1.6;
  color: #804d00cc;font-weight: 400;
  transition: max-height 0.4s ease, padding 0.3s ease; font-size: 1.25em;
}
.faqcontent a{
  color: #d48816;font-style: italic;transition: .4s;
}
.faqcontent a:hover{
    color: #a16c1d;font-style: italic;transition: .4s;
}

.faqbox.active {
  border-color: #f97316;
}

.faqbox.active .faqcontent {
  max-height: 400px;
  padding: 15px 20px 20px;
}

.faqbox.active .faqicon {
  transform: rotate(180deg);
  color: #f97316;
}
.faqcontent li{
  list-style: none;font-size: 17px;
}
.faqcontent strong{
  font-weight: 700;
}

/* Hide on Desktop */
@media (min-width: 769px) {
  .floating-menu { display: none; }
}

/* Floating container */
.floating-menu {
  position: fixed;
  bottom: 60px;
  right: 20px;
  user-select: none;
  z-index: 9999;
}

/* Main floating button */
.main-fab {
  background-color: #ff4c1f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 19px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.main-fab.rotate {
  transform: rotate(45deg);
}

/* Hidden menu buttons */
.fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Show state */
.fab-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Individual small buttons */
.fab-btn {
  background: #ffffff;
  color: #0e0d0d;
  border-radius: 30px;
  padding: 6px 10px;
  font-size: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  box-shadow: none;
  border: none;
  text-decoration: none;
}

.fab-btn:hover {
  background: #ff4c1f;
  color: #ffffff;
}
        /* Renamed from .viewport-wrapper - Fullscreen Layout Container */
        .list-tag {
            width: 100vw; 
      
            display: flex;
            justify-content: center;
            align-items: center;
            
            padding: 20px 10px; 
            box-sizing: border-box;
          
            overflow-x: hidden; user-select: none;
        }

        /* Renamed from .diagonal-banner-wrapper - The main card wrapper */
        .listcards-wrapper {
            position: relative;
            max-width: 900px;
            width: 100%; 
            height: 160px;
            overflow: hidden; 
            display: flex;
        }

        /* Renamed from .diagonal-section - The clickable half-card */
        .list-section {
            position: absolute;
            top: 0;
            width: 50%;
            height: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0d5c75;
            padding: 0 3%; 
            box-sizing: border-box;
            text-decoration: none;
            transition: transform 0.3s ease;
            text-align: center;
        }

        .list-section:hover {
            z-index: 1;
        }

        .list-section h3 {
            margin: 0;
            font-size: 1.5em;
            line-height: 1.3;
font-family: "Quicksand", sans-serif; font-weight: 600;
            word-break: break-word; color: #0d5c75;
        }
       

        /* Left Section (Orange) */
        .section-left {
            left: 0;
            background-color: #efefd0;
            clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
            transform-origin: top right;
        }
    

        /* Right Section (Slightly different Orange) */
        .section-right {
            right: 0;
            background-color: #efefd0;
            clip-path: polygon(25px 0, 100% 0, 100% 100%, 0% 100%);
            transform-origin: top left;
        }

      

        /* Renamed from .section-content - Content Centering */
        .list-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }


        /* Responsive adjustments */
        @media (max-width: 768px) {
            .listcards-wrapper {
                height: auto; 
                flex-direction: column;
                box-shadow: none;
                /* FIX: Use 95% to guarantee space around the element */
                width: 95%; 
                max-width: 450px; /* Optional: Sets a reasonable max width for the stacked view */
            }

            .list-section {
                position: static; 
                width: 100%; 
                height: 150px;
                clip-path: none;
                border-radius: 8px;
                margin-bottom: 15px;
               
                transform: none !important;
                padding: 15px; /* Smaller padding for stacked view */
            }

             .list-section:last-child {
                margin-bottom: 0;
            }

            .section-left, .section-right {
                background-color: #efefd0;
            }
        }

         @media (max-width: 480px) {
            .list-section h3 {
                font-size: 1.2em;
            }
          
        }
      .social-links {
    display: inline-flex;      
    justify-content: center;     /* horizontally center */
    align-items: center;         /* vertically center */
    margin: 10px 0;              /* upar-neechay gap */
    text-decoration: none;       /* underline remove */
}

.social-links i {
    font-size: 40px;             /* icon size */
    color: #ffcf4c;              /* Telegram blue */
    transition: transform 0.3s;  /* hover effect smooth */
}

  .footer-top{
            text-align: center;
            padding-top: 20px;
          
            font-size: 0.85rem;
        }
        .linksimg{
          width: 100%;float: right;
          
        } .txt-rotate{
  color:orangered;font-family: 'lato' , sans-serif;
} 

/* General */ 
.mc-wrapper {
  font-family: "lato", sans-serif;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  color: #1a1a1a;
}

.mc-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mc-subtitle {
  color: #555;
  margin-bottom: 25px;
}

/* Container */
.mc-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.mc-left,
.mc-right {
  flex: 1 1 46%;
}

/* Labels and Inputs */
.mc-label {
  display: block;
  margin: 15px 0 8px;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.mc-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: border 0.2s ease;
}
.mc-input:focus {
  outline: none;
  border-color: rgb(54, 22, 1);
  
}

.mc-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mc-percent-btn {
  border:1px solid #dbdbdbc9 ;
  color: rgb(0, 0, 0);user-select: none;pointer-events: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;background-color: white;
  font-weight: 400;
}


/* Notes */
.mc-note {
  color: #777;
  font-size: 13px;
  text-align: left;
  margin-top: 4px;
}
.mc-note-bold {
  font-size: 14px;
  color: #444;
  font-weight: 600;
  text-align: left;
  margin-top: 20px;
}

/* Rate Buttons */
.mc-rate-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.mc-rate {
  flex: 1;
  background: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 10px;color: #a85f00;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}
.mc-rate.active,
.mc-rate:hover {
  background: transparent;
  border-color: #a85f00;
  color: #814900;
}
.mc-rate strong{
    font-weight: 800 ;color: #000 ;
}
/* Results */
.mc-result {
  background: #f9fafb;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 18px;
}
.mc-result-label {
  color: #333;
  font-weight: 500;
}
.mc-result-value {
  color: #a85f00;
  font-size: 22px;
  margin: 5px 0 0;
  font-weight: 700;
}

/* Banner */
.mc-small {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.mc-banner {
  background: #fdf8f0;
  border: 1px solid #ead8bd;
  border-radius: 10px;
  padding: 10px;
  color: #382001;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Buttons */
.mc-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.mc-apply {
  flex: 1;
  display: inline-block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
.mc-apply {
  background: #a85f00;
  color: white;
}

.mc-apply:hover {
  background: #ffffff;color: #a85f00;
  box-shadow: #a85f00 0px 1px 2px, #a85f00 0px 0px 0px 2px;
}


/* Responsive */
@media (max-width: 768px) {
  .mc-box {
    flex-direction: column;
    padding: 20px;
  }
  .mc-left,
  .mc-right {
    flex: 1 1 100%;
  }
}