@charset "utf-8";
/* CSS Document */




/**
* Template Name: Instant
* Template URL: https://bootstrapmade.com/newtemplate-bootstrap-website-template/
* Updated: Jun 11 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #fff; /* Background color for the entire website, including individual sections */
  --default-color: #000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e59d02; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #fff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000;  /* The default color of the main navmenu links */
  --nav-hover-color: #e59d02; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1b1a1a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1b1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f8f8f8; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e59d02; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fff;
  --surface-color: #e1e1e1;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1b1b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
   background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 1px 0;
  
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 67x;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}


.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.btn-getstarted:hover{
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
   order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
    font-size: 8px;
    color: #000;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
   background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* optional border */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255,255, 255, 0.6);
    backdrop-filter: blur(10px);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}


.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  height: 100%;
  background: url(../images/footer.jpg) center center / cover no-repeat;
  z-index: 0;
  opacity: 0.5;
}
.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
   	background: url(../images/bg.jpg) center;
padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
  background-size: cover;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.hero .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
margin-top: 268px;
  }

 .hero img {
  object-position:85% 50%;
  }
  .hero p {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about .image-wrapper:hover {
  transform: translateY(-5px);
}

.about .content h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about .content h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  left: 0;
  bottom: -10px;
}

.about .content h5 {
  font-weight: 500;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.about .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about .features-list {
  margin-top: 2rem;
}

.about .features-list .feature-item {
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .features-list .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.about .features-list .feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .features-list .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.about .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.about .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .about .image-wrapper {
    margin-bottom: 2rem;
  }

  .about .content {
    text-align: center;
  }

  .about .content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about .signature-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about .features-list .feature-item {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .intro-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  line-height: 1.3;
}

.features .intro-content p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 35px;
  line-height: 1.6;
}

.features .intro-content .feature-stats {
  display: flex;
  gap: 30px;
}

.features .intro-content .feature-stats .stat-item {
  text-align: center;
}

.features .intro-content .feature-stats .stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.features .intro-content .feature-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

.features .intro-image {
  position: relative;
}

.features .intro-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.features .intro-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.features .intro-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--heading-color), color-mix(in srgb, var(--heading-color), transparent 40%));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.features .feature-item {
  position: relative;
  background: var(--surface-color);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transition: left 0.5s ease;
}

.features .feature-item .feature-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  line-height: 1;
  z-index: 1;
}

.features .feature-item .feature-content {
  position: relative;
  z-index: 2;
}

.features .feature-item .feature-content .feature-icon {
  margin-bottom: 25px;
}

.features .feature-item .feature-content .feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .feature-item .feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
  line-height: 1.3;
}

.features .feature-item .feature-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.6;
}

.features .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.features .feature-item .feature-content .feature-tags .tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features .feature-item:hover::before {
  left: 0;
}

.features .feature-item:hover .feature-number {
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.1);
}

.features .feature-item:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .feature-item:hover .feature-tags .tag {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .features .intro-content {
    margin-bottom: 40px;
  }

  .features .intro-content h2 {
    font-size: 32px;
  }

  .features .intro-content .feature-stats {
    justify-content: center;
    gap: 25px;
  }

  .features .features-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .features .intro-content .feature-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }


.header {
border-radius: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  top: 25px;
  backdrop-filter: none;

  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s;

 background: rgba(255, 255, 255, 0.15); /* increased tint for more depth */





  z-index: 997;


}


  .features .intro-content .feature-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .features .intro-content .feature-stats .stat-item .stat-number {
    font-size: 24px;
  }

  .features .intro-content .feature-stats .stat-item .stat-label {
    margin-top: 0;
  }

  .features .feature-item {
    padding: 25px;
  }

  .features .feature-item .feature-number {
    font-size: 36px;
    top: 15px;
    right: 20px;
  }

  .features .feature-item .feature-content h4 {
    font-size: 20px;
  }

  .features .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .features .intro-content h2 {
    font-size: 28px;
  }

  .features .intro-content p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Features Tabs Section
--------------------------------------------------------------*/
.features-tabs .tabs-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-tabs .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .features-tabs .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}

.features-tabs .nav-item {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .features-tabs .nav-item {
    flex: none;
  }
}

.features-tabs .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}

.features-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .features-tabs .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}

.features-tabs .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-tabs .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .features-tabs .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.features-tabs .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.features-tabs .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-content h5 {
    font-size: 14px;
  }
}

.features-tabs .nav-link .tab-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-content span {
    font-size: 12px;
  }
}

.features-tabs .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .nav-link:hover::before {
  opacity: 1;
}

.features-tabs .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-tabs .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}

.features-tabs .nav-link:hover .tab-content h5,
.features-tabs .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.features-tabs .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .nav-link.active::before {
  opacity: 1;
}

.features-tabs .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.features-tabs .nav-link.active .tab-icon i {
  color: var(--accent-color);
}

.features-tabs .nav-link.active .tab-content h5,
.features-tabs .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

.features-tabs .tab-content .tab-pane {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .features-tabs .tab-content .tab-pane {
    padding: 20px 0;
  }
}

.features-tabs .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .features-tabs .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.features-tabs .content-wrapper .icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}

.features-tabs .content-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features-tabs .content-wrapper h3 {
    font-size: 24px;
  }
}

.features-tabs .content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features-tabs .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.features-tabs .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-tabs .content-wrapper .feature-grid .feature-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.features-tabs .content-wrapper .feature-grid .feature-item span {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.4;
}

.features-tabs .content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row {
    gap: 20px;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item {
  text-align: center;
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 20px;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-tabs .content-wrapper .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features-tabs .content-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}

.features-tabs .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.features-tabs .visual-content {
  position: relative;
}

.features-tabs .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features-tabs .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.features-tabs .visual-content .main-image:hover img {
  transform: scale(1.05);
}

.features-tabs .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
  }
}

.features-tabs .visual-content .floating-card i {
  font-size: 28px;
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card i {
    font-size: 24px;
  }
}

.features-tabs .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.features-tabs .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 2.2rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 3rem;
  }
}

.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .avatars {
  position: relative;
}

.stats .avatars img {
  width: 60px;
  height: 60px;
  border: 3px solid var(--accent-color);
  margin-right: -15px;
  transition: transform 0.3s ease;
}

.stats .avatars img:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.stats .counters h2 {
  color: var(--heading-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats .counters h2 span {
  display: inline-block;
}

.stats .counters p {
  color: var(--default-color);
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .stats .row {
    text-align: center;
  }

  .stats .avatars {
    justify-content: center;
    margin-bottom: 40px;
  }

  .stats .counters h2 {
    font-size: 36px;
  }

  .stats .counters p {
    font-size: 16px;
  }

  .stats .counters .col-md-4 {
    margin-bottom: 30px;
  }

  .stats .counters .col-md-4:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .stats {
    padding: 60px 0;
  }

  .stats .avatars {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats .avatars img {
    margin: 0 -8px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

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

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-header {
  margin-bottom: 50px;
}

.team .team-header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team .team-header h2:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.team .team-header p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
}

@media (max-width: 991px) {
  .team .team-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .team .team-header h2:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .team .team-header p {
    margin: 0 auto;
  }

  .team .team-header .team-controls {
    margin-top: 30px;
    justify-content: center;
  }
}

.team .team-controls {
  display: flex;
  gap: 12px;
}

.team .team-controls .team-control-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-controls .team-control-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-slider {
  padding: 10px 5px 40px;
}

.team .team-slider .swiper-wrapper {
  height: auto !important;
}

.team .team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team .team-member:hover .member-image .member-social {
  opacity: 1;
  bottom: 20px;
}

.team .team-member:hover .member-image:before {
  opacity: 0.8;
}

.team .team-member .member-image {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team .team-member .member-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team .team-member .member-image .member-social {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  bottom: -30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .team-member .member-image .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.team .team-member .member-image .member-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .team-member .member-content {
  padding: 25px;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-member .member-content span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.team .team-member .member-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-section {
  height: 100%;
}

.contact .contact-info-section .info-header {
  margin-bottom: 40px;
}

.contact .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.contact .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.contact .contact-info-section .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-info-section .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.contact .contact-info-section .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.contact .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-content {
  flex: 1;
}

.contact .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-info-section .info-item .info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .social-contact {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 20px;
  text-align: center;
}

.contact .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact .contact-info-section .social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact .contact-info-section .social-contact .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-info-section .social-contact .social-icons .social-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--background-color) 50%));
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact .contact-form-wrapper .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact .contact-form-wrapper .form-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-wrapper .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-control {
  height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
  outline: none;
}

.contact .contact-form-wrapper .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-wrapper .php-email-form .message-textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact .contact-form-wrapper .php-email-form .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .php-email-form .submit-btn span {
  position: relative;
  z-index: 1;
}

.contact .contact-form-wrapper .php-email-form .submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .contact .contact-info-section {
    margin-bottom: 40px;
  }

  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact .contact-info-section .info-item {
    padding: 20px;
  }

  .contact .contact-info-section .info-item:hover {
    transform: translateY(-5px);
  }

  .contact .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact .contact-form-wrapper .form-header h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}















*{
	outline: none !important;
}

body.ng-scope{
display:block;
}

btn {
 font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px;
  border-radius: 0;
  border: none;
  transition: all ease-in-out 200ms;
  background: white;
    background-image: none;
  color: black;
  margin-left: 2px;
  letter-spacing: 1px;
  text-shadow: none;
}

.btn-success {
color: var(--contrast-color);
  background: var(--accent-color);
text-transform: capitalize;
border-radius: 2px;
border:none;
font-size: 12px;
padding: 12px;
  text-transform: uppercase;
font-weight: 600;
}

.btn-success:hover {
  background: #000!important;
color:#ffffff;
}

.btn-active {
    background: #000 !important;
    color: #ffffff !important;
}

.btn-default {
    background: #c7c7c7;
}

.btn-default:hover {
    background: #919191;
}



.btn-primary

{
 color: #ffffff;
    background: #000;
    border-radius: 2px;
    padding: 5px;
    height: 35px;
}

.btn-primary.active{
 color: #ffffff;
    background: #000;
    border-radius: 2px;
    padding: 5px;
    height: 35px;
}

.btn-border {
    border: 1px solid #000;
}

.btn-border:hover {
      border: 1px solid #000;
    background: #e1e1e1;
    color: #000;
}

[ng-cloak].loader-overlay
{
    display: block !important;
}
[ng-cloak].wrapper
{
    display: none !important;
}
[ng-cloak].table-wrap
{
    display: none !important;
}

.site-header{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	z-index: 99;
}
.site-header .header-top{
	height: 50px;
	background: #2f85d2;
	color: #b2b2b2;
}
.site-header .header-bottom{
	background: #fff;
	padding: 20px 0;
	transition: all ease-in-out 200ms;
}
.site-header .header-bottom .container{
	position: relative;
}
.site-header .navbar-brand{
	/*background: #000;*/
	width: 200px;
	height: 200px;
	position: absolute;
	top: -70px;
	left: 15px;
	text-align: center;
	padding: 0;
}
.site-header.fix-head .navbar-brand{
	width: 122px;
	height: 122px;
}
.site-header .navbar-brand > span{
	display: table;
	width: 100%;
	height: 100%;
}
.site-header .navbar-brand > span > span{
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.site-header .navbar-brand img{
	max-width: 100%;
}
.site-header .navbar-nav > li > a {
    background: none !important;
    color: #000;
    padding: 15px 8px;
    float: left;
    font-weight: 700;
}
.site-header .navbar-nav > li .fa-angle-down {
	margin-top: 18px;
}
.site-header .navbar-nav > li > a:hover,
.site-header .navbar-nav > li.active > a{
	color: #2f85d2;
}
.navbar-nav > li.dropdown.open{
	background:#2f85d2;
}
.navbar-nav > li.dropdown.open  a{
	color:#fff;
}
.navbar-nav > li > .dropdown-menu{
	background:#2f85d2;
        max-height:242px;
}
.navbar-nav > li > .dropdown-menu li a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #fff;
    white-space: nowrap;
}
.dropdown-menu li a{
	color:#fff;
}
.navbar-nav > li > .dropdown-menu li a:focus, .navbar-nav > li > .dropdown-menu li a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}
.not-show-under-1024{
	opacity:0; 
	position:absolute;
}
.site-header.fix-head{
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.site-header.fix-head .header-bottom{
	padding:0;
}
.site-header .header-lan{
	height: 24px;
	float: left;
	margin: 20px 0 0 215px;
}
.site-header .header-lan .map-icons{
    display: block;
    float: left;
    white-space: nowrap;
}
.site-header .header-lan .map-icons a{
    display: inline-block;
}
.site-header .header-lan img{
	 display:block;
	 margin:auto;
}
.site-header .header-social{
	float: left;
	font-size: 18px;
	margin: 12px 0 0 30px;
}
.site-header .header-social ul{
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-header .header-social ul li{
	float: left;
	margin-right: 10px;
}
.site-header .header-social ul li a{
	color:#92ccfe;
}
.site-header .header-social ul li a:hover{
	color:#2f85d2;
}
.site-header .header-actions{
	float: right;
}
.site-header .header-actions ul{
	float: right;
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-header .header-actions ul li{
	float: left;
	margin-left: 25px;
}
.site-header .header-actions ul li:first-child{
	margin-left:0;
}
.site-header .header-actions ul li a,
.site-header .header-actions ul li .search-link{
	color: #92ccfe;
	line-height: 50px;
	display: block;
	text-decoration: none !important;
	background:none;
	border:none;
}
.site-header .header-actions ul li a:hover,
.site-header .header-actions ul li .search-link:hover{
	color:#fff;
}
.site-header .header-actions ul li a .fa{
	font-size: 18px;
	margin-right: 2px;
	position: relative;
	top: 1px;
}


.flexslider-container .flexslider{
	position:relative;
}
.flexslider-container .flexslider:after{
	position:absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/banner-overlay.png) repeat-x left top;
	content: "";
	z-index: 5;
}
.flexslider .slides{
	margin: 0;
	padding: 0;
	list-style: none;;
}
.flexslider .slides:before,
.flexslider .slides:after{
	display: table;
  	content: "";
}
.flexslider .slides:after{
	clear: both;
}

.flexslider .slides > li{
	height: 860px;
	position: relative;
}
.flexslider .slides .slider-item{
	position: absolute;;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.flexslider .flex-control-nav{
	display: none;
	visibility: hidden;
}
.flexslider .flex-direction-nav{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 7;
	list-style: none;
	padding: 0;
	margin:0;
	text-align: center;
}
.flexslider .flex-direction-nav li{
	display: inline-block;
	margin:0 2px;
}
.flexslider .flex-direction-nav li a{
	width: 40px;
	height: 40px;
	display: block;
	background: #2f85d2;
	text-indent:-9999px;
	position:relative;
}
.flexslider .flex-direction-nav li a:before{
	font-family:'FontAwesome';
	content:"";
	color:#fff;
	font-size:30px;
	position:absolute;
	left:0;
	top:1px;
	text-indent:0;
}
.flexslider .flex-direction-nav li a.flex-prev:before{
	content:"\f104";
	left:13px;
}
.flexslider .flex-direction-nav li a.flex-next:before{
	content:"\f105";
	left:15px;
}
.flexslider .flex-direction-nav li a:hover{
	background:#20272b;
}


.content-area{
	padding:60px 0;
}
.content-area.white-bg{
	background-color:#fff;
}
.content-area .heading-sec{
	margin-bottom:30px;
}
.content-area .heading-sec h3{
	display:inline-block;
	padding-bottom:20px;
	margin:0;
	text-transform:uppercase;
	position:relative;
}
.content-area .heading-sec h3:after{
	position:absolute;
	width:90px;
	height:1px;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	content:"";
}
.content-area.white-bg .heading-sec h3{
	color:#2f85d2;
}
.content-area.white-bg .heading-sec h3:after{
	background:#2f85d2;
}
.content-area.dark-bg .heading-sec h3{
	color:#fff;
}
.content-area.dark-bg .heading-sec h3:after{
	background:#909395;
}
.project-listing{
	margin-left:5%;
	margin-right:5%;
	margin-top:50px;
}
.project-listing ul{
	margin:0;
	padding:0;
	list-style:none;
}
.project-listing ul li{
	width:24.6%;
	height:300px;
	margin:.2%;
	float:left;
	position:relative;
}

.project-block {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  transition: opacity 0.3s ease-in-out;
    z-index: 1;
    overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
}
.project-block .project-thumb::before {
  content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent red overlay */
      mix-blend-mode: multiply; /* Blend the overlay with the image */
      pointer-events: none; /* Allow interaction with the image */
}



.project-block:hover img {
   opacity: 1; 
}


.project-block .project-thumb {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    transition: all ease-in-out 200ms;
}

.project-block:hover .project-thumb {
    transform: scale(1.1, 1.1);
}

.project-block .project-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
   padding-bottom: 121px;


}
.result-blocks .project-block .project-info{
background: rgb(0, 0, 0);
background: linear-gradient(0deg, rgba(0, 0, 0,1) 0%, rgba(0, 0, 0,0) 100%); 
}
.project-block .project-info .prop-title{
	margin:0;
	text-align:center;
	text-transform:uppercase;
}
.project-block .project-info .prop-title a{
	color:#2f85d2;
	text-decoration:none !important;
}
.project-block .project-info .prop-title a:hover{
	color:#fff;
}

.skyline-bg{
	background:url(../images/skyline-bg.jpg) no-repeat center center fixed;
	background-size:cover;
}
.neighborhood-blocks .nav{
	margin-bottom:30px;
}
.neighborhood-blocks .nav > li{
	display:inline-block;
	font-size:18px;
	text-transform:uppercase;
}
.neighborhood-blocks .nav > li > a{
	border:1px solid #2f85d2;
	padding:5px 15px;
}
.neighborhood-blocks .nav > li.active > a{
	background:#2f85d2;
	color:#fff;
}
.neighborhood-block{
	height:430px;
	position:relative;
	margin-bottom:30px;
}
.featured-neighborhoods .btn-border{
	font-size:14px;
	font-weight:500;
}
.featured-neighborhoods .btn-border .fa{
	font-size:17px;
	margin-left:5px;
}
.project-block .project-info .prop-title.light {
    font-size: 17px;
    font-weight: 400;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.project-block .project-info .prop-title.light a {
color: #ffffff;
  text-decoration: none !important;
  font-size: 30px;
}

.project-block .project-info .prop-title.light a:hover {
    color: #e1e1e1;
}

.project-block .project-info .prop-tags {
    list-style: none;
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}



.project-block .project-info .prop-explore {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
font-family: var(--default-font);
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
letter-spacing: 2px;
 margin-bottom: 20px;
    color: #fff;

  width: 100%;

}


.project-block .project-info .prop-tags li {
    display: inline-block;
    color: #ffffff;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 2px solid #ffffff;
    height: 11px;
    line-height: 11px;
}

.project-block .project-info .prop-tags li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}


.left-tab-panel{
	border-bottom:1px solid #c7c7c7;
}
.left-tab-panel .tab-bg{
	width:645px;
	min-height:700px;
	background:url(../images/tab-bg.jpg) no-repeat left center;
	background-size:cover;
	float:left;
}
.left-tab-panel .nav > li{
	font-size:20px;
	text-transform:uppercase;
	font-weight:400;
	letter-spacing:2px;
}
.left-tab-panel .nav > li > a{
	color:#fff !important;
	display:inline-block;
	padding:10px 30px;
	background:none !important;
}
.left-tab-panel .nav > li.active > a{
	color:#2f85d2 !important;
	background:#fff !important;
}
.left-tab-panel .tab-content{
	padding:60px 30px 100px;
	overflow:hidden;
	position:relative;
}
.left-tab-panel .tab-content .btn-holder{
	position:absolute;
	left:30px;
	right:30px;
	bottom:30px;
	text-align:center;
}
.left-tab-panel .tab-content .btn-holder .btn{
	font-size:14px;
	padding:10px 20px;
	font-weight:500;
}

.project-slider{
	padding-bottom:80px;
}
.project-slider .slider-single{
	height:430px;
}
.project-slider .swiper-button-next,
.project-slider .swiper-button-prev{
	top:auto;
	bottom:10px;
	background-color:#2f85d2;
	width:40px;
	height:40px;
	background-size:12px auto;
	transition:all ease-in-out 200ms;
}
.project-slider .swiper-button-next:not(.swiper-button-disabled):hover,
.project-slider .swiper-button-prev:not(.swiper-button-disabled):hover{
	background-color:#333;
}
.project-slider .swiper-button-next{
	left:50%;
	margin-left:10px;
}
.project-slider .swiper-button-prev{
	left:50%;
	margin-left:-40px;
}
.form-group{
	margin-bottom:20px;
}
.control-label{
	font-weight:400;
}

.form-control {

}


.quick-search .form-control {
 min-height: 42px;
font-family: revert;
  box-shadow: none;

  background: none;
color:#000000;
  border-bottom: 1px solid #e1e1e1;
  border-top: 0px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  text-align: left;
  padding-top: 14px;
}

.custom-select{
	position:relative;
	background:#fff;
	border-radius:6px;
}
.custom-select select{
	position:relative;
	z-index:2;
	-webkit-appearance:none;
   -moz-appearance:none;
   appearance:none;
   background:none;
text-transform: capitalize;
   padding-right:30px;
   /*color:rgba(0,0,0,0);
   text-shadow:0 0 0 #4a4a4a;*/
}
.custom-select:after{
	width:15px;
	height:8px;
	background:url(../images/select-arrow.png) no-repeat;
	background-size:15px 8px;
	position:absolute;
	right:15px;
	top:18px;
	z-index:1;
	content:"";
}
.check-icon label{
	margin:0;
	display:inline-block;
}
.check-icon label input[type=checkbox]{
	display:none;
}
.check-icon label input[type=checkbox] + span{
	display:block;
	float:left;
	width:68px;
	height:42px;
	margin-right:4px;
	background-color:#f7f7f7;
	border:1px solid #c7c7c7;
	border-radius:2px;
	text-align:center;
	line-height:40px;
	font-size:14px;
	font-weight:300;
	color:#a6a6a6;
	transition:border-color ease-in-out 200ms;
}
.check-icon label input[type=checkbox] + span:not(.num-label){
	cursor:pointer;
	background-image:url(../images/check-icons.png);
	background-repeat:no-repeat;
}
.check-icon label input[type=checkbox] + span:not(.num-label):hover{
	border-color:#7c7c7c;
}
.check-icon label input[type=checkbox]:checked + span:not(.num-label){
	border:2px solid #2f85d2;
}
.check-icon label input[type=checkbox] + span.bed-label{
	background-position:center 9px;
}
.check-icon label input[type=checkbox]:checked + span.bed-label{
	background-position:center -45px;
}
.check-icon label input[type=checkbox] + span.bath-label{
	background-position:center -97px;
}
.check-icon label input[type=checkbox]:checked + span.bath-label{
	background-position:center -151px;
}

.news-area{
	background:#20272b;
}
.news-blocks .news-block{
	background:#fff;
	padding:20px 30px;
}
.news-blocks .news-block .news-title{
	text-transform:uppercase;
	margin-bottom:15px;
	line-height:24px;
}
.news-blocks .news-block .news-title a{
	color:#2f85d2;
}
.news-blocks .news-block .news-date{
	color:#627681;
	font-size:14px;
}


.site-footer .footer-top{
	border-top:1px solid #e4e4e4;
	border-bottom:1px solid #e4e4e4;
	padding:50px 0;
}
.site-footer .broker-block .broker-thumb{
	width:150px;
	height:150px;
	border:7px solid #fff;
	box-shadow:0 0 1px rgba(0,0,0,0.4);
	float:left;
	margin-right:20px;
	overflow: hidden;
}
.site-footer .broker-block .broker-info{
	overflow:hidden;
	padding-right:50px;
}
.site-footer .broker-block .broker-info .name{
	font-size:20px;
	text-transform:uppercase;
	font-weight:400;
	margin-bottom:2px;
}
.site-footer .broker-block .broker-info .info{
	font-size:14px;
	text-transform:uppercase;
	font-weight:400;
	color:#b3b3b3;
}
.site-footer .social-icons h3{
	font-size:20px;
	text-transform:uppercase;
	margin:0 0 15px;
	font-weight:400;
}
.site-footer .social-icons ul{
	margin:0;
	padding:0;
	list-style:none;
}
.site-footer .social-icons ul li{
	float:left;
	margin-right:5px;
}
.site-footer .social-icons ul li a{
	display:block;
	width:30px;
	height:30px;
	color:#fff;
	background:#ccc;
	text-align:center;
	line-height:30px;
	font-size:17px;
}
.site-footer .social-icons ul li a:hover{
	opacity:0.8;
}
.site-footer .social-icons ul li a.facebook{
	background:#204385;
}
.site-footer .social-icons ul li a.twitter{
	background:#2aa9e0;
}
.site-footer .social-icons ul li a.linkedin{
	background:#02669a;
}
.site-footer .social-icons ul li a.google-plus{
	background:#d3492c;
}
.site-footer .social-icons ul li a.youtube_url {
    background: #e62117;
}
.site-footer .sponsor-logos .logo-block{
	margin-bottom:15px;
}
.site-footer .sponsor-logos .logo-block:last-child{
	margin-bottom:0;
}
.site-footer .sponsor-logos .logo-block img{
	max-width:100%;
}

.site-footer .footer-middle{
	padding:40px 0;
}
.site-footer .logo-chain ul{
	margin:0;
	padding:0;
	list-style:none;
}
.site-footer .logo-chain ul li{
	display:inline-block;
	margin:0 25px;
}
.site-footer .footer-bottom{
	font-size:13px;
	background:#20272b;
	color:#fff;
	padding:50px 0;
}
.site-footer .footer-link ul{
	list-style:none;
	margin:0 0 10px;
	padding:0;
}
.site-footer .footer-link ul li{
	display:inline-block;
	height:12px;
	line-height:12px;
	padding-right:10px;
	margin-right:10px;
	border-right:1px solid #fff;
}
.site-footer .footer-link ul li:last-child{
	padding-right:0;
	margin-right:0;
	border-right:none;
}
.site-footer .footer-link ul li a{
	color:#fff;
}
.site-footer .copyright-info{
	margin-top:30px;
	line-height:25px;
}
.site-footer .copyright-info p{
	margin:0;
}


.quick-contact-box{
	position:fixed;
	right:10%;
	bottom:-70px;
	width:330px;
	background:#2f85d2;
	color:#fff;
	border-radius:3px 3px 0 0;
	z-index:99;
	transition:all ease-in-out 400ms;
}
.quick-contact-box.anim-up{
	bottom:0;
}
.quick-contact-box .box-handel{
	font-size:18px;
	text-transform:uppercase;
	padding:15px;
	position:relative;
	cursor:pointer;
}
.quick-contact-box .box-handel:after{
	font-family:'FontAwesome';
	content:"\f106";
	position:absolute;
	right:15px;
	top:16px;
}
.quick-contact-box .box-form{
	display:none;
}
.quick-contact-box .box-form .form-horizontal{
	border-top:1px solid #92ccfe;
	margin:0 15px 15px;
	padding-top:15px;
}
.quick-contact-box .box-form .control-label{
	font-weight:300;
	text-align:left;
	font-size:14px;
}
.quick-contact-box .box-form .form-control{
	min-height:34px;
	background:none;
	border:1px solid #92ccfe;
	box-shadow:none;
	color:#fff;
}
.quick-contact-box .box-form .form-control:focus{
	border-color:#fff;
}
.quick-contact-box .box-form .btn{
	background:none;
	border:1px solid #92ccfe;
	font-size:15px;
	text-transform:uppercase;
}
.quick-contact-box .box-form .btn:hover{
	background:#fff;
	border-color:#fff;
	color:#2f85d2;
}
.required{
	color:#f00;
}

/* Inner Page */


hr {
    border-color: #e9e9e9;
    margin-top: 30px;
    margin-bottom: 30px;
}

.home-finder-form .sub-heading {
    font-weight: 400;
    margin: 30px 0;
}

.custom-checkbox label {
    display: block;
    font-weight: 400;
    position: relative;
    margin: 0;
    line-height: 30px;
    padding-left: 30px;
    cursor: pointer;
}

.custom-checkbox input[type=checkbox] {
    display: none;
}

.custom-checkbox label:before {
    width: 20px;
    height: 20px;
    border: 1px solid #c7c7c7;
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
}

.custom-checkbox label:hover:before {
    border-color: #a6a6a6;
}

.custom-checkbox input[type=checkbox]:checked + label:before {
    background: url(../images/check-icon.png) no-repeat center center #000;
    background-size: 14px auto;
    border-color: #000;
}

.agent-panel {
    min-height: 640px;
    position: relative;
}

.search-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8) url(../images/loader-32-32.gif) no-repeat center center;
    z-index: 5;
}

.search-top {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #c7c7c7;
}

.search-tags {
    font-size: 14px;
    margin-top: 20px;
}

.search-tags ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-tags ul li {
    display: inline-block;
    margin: 0 5px 9px 0;
    padding: 5px 30px 5px 10px;
    border: 1px solid #000;
    border-radius: 2px;
    position: relative;
    color: #ffffff;
    background: #000;
    font-weight: 400;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.search-tags ul li strong {
    color: #ffffff;
}

.search-tags .close-tag {
    position: absolute;
    right: 10px;
    top: 5px;
    font-weight: 500;
    text-decoration: none !important;
    color: #ffffff;
}

.search-tags .close-tag:hover {
    color: #ffffff;
}

.search-top .search-buttons .btn {
    font-size: 14px;
}

.search-top .search-buttons .btn .fa {
    margin-right: 5px;
}

.search-top .toggle-search {
    margin-top: 30px;
    background: #f2f2f2;
    padding: 20px;
}

.search-top .check-icon label input[type="checkbox"] + span {
    width: 65px;
}

.search-top .mid-row {
    padding-top: 20px;
    border-top: 1px solid #dedede;
}

.search-top .prop-lists {
    min-height: 100px;
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.search-top .prop-lists a {
    display: block;
    padding: 2px 10px;
    color: #000;
    text-decoration: none !important;
}

.search-top .prop-lists a span {
    color: #000;
    font-style: italic;
}

.search-top .prop-lists a:hover {
    background: #f2f2f2;
}

.search-top .more-choise ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.search-top .more-choise ul li {
    padding: 2px 0;
    font-size: 13px;
}

.search-top .more-choise ul li a {
    color: #000;
}

.search-top .more-choise ul li a.active {
    font-weight: 500;
    color: #000;
}

.home-banner-container {
    position: relative;
    background: rgba(0, 0, 0, 0.84);
}

.home-banner .form-control::placeholder {
     font-size: 14px;
    color: #464646;


}
#weather {
    width: 235px;
    text-transform: capitalize;
    position: absolute;
    top: 200px;
    z-index: 9;
    background: rgba(0, 0, 0, 0.65);
    left: 50%;
    margin-left: -588px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

#weather i {
    font-family: weather;
    font-size: 100px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.0;
    text-transform: none;
}

.icon-0:before {
    content: ":";
}

.icon-1:before {
    content: "p";
}

.icon-2:before {
    content: "S";
}

.icon-3:before {
    content: "Q";
}

.icon-4:before {
    content: "S";
}

.icon-5:before {
    content: "W";
}

.icon-6:before {
    content: "W";
}

.icon-7:before {
    content: "W";
}

.icon-8:before {
    content: "W";
}

.icon-9:before {
    content: "I";
}

.icon-10:before {
    content: "W";
}

.icon-11:before {
    content: "I";
}

.icon-12:before {
    content: "I";
}

.icon-13:before {
    content: "I";
}

.icon-14:before {
    content: "I";
}

.icon-15:before {
    content: "W";
}

.icon-16:before {
    content: "I";
}

.icon-17:before {
    content: "W";
}

.icon-18:before {
    content: "U";
}

.icon-19:before {
    content: "Z";
}

.icon-20:before {
    content: "Z";
}

.icon-21:before {
    content: "Z";
}

.icon-22:before {
    content: "Z";
}

.icon-23:before {
    content: "Z";
}

.icon-24:before {
    content: "E";
}

.icon-25:before {
    content: "E";
}

.icon-26:before {
    content: "3";
}

.icon-27:before {
    content: "a";
}

.icon-28:before {
    content: "A";
}

.icon-29:before {
    content: "a";
}

.icon-30:before {
    content: "A";
}

.icon-31:before {
    content: "6";
}

.icon-32:before {
    content: "1";
}

.icon-33:before {
    content: "6";
}

.icon-34:before {
    content: "1";
}

.icon-35:before {
    content: "W";
}

.icon-36:before {
    content: "1";
}

.icon-37:before {
    content: "S";
}

.icon-38:before {
    content: "S";
}

.icon-39:before {
    content: "S";
}

.icon-40:before {
    content: "M";
}

.icon-41:before {
    content: "W";
}

.icon-42:before {
    content: "I";
}

.icon-43:before {
    content: "W";
}

.icon-44:before {
    content: "a";
}

.icon-45:before {
    content: "S";
}

.icon-46:before {
    content: "U";
}

.icon-47:before {
    content: "S";
}
.home-banner-container{
	position:relative;
}
#weather {
  width: 235px;
  text-transform: uppercase;
  position:absolute;
  top:200px;
  z-index:9;
  background:rgba(0,0,0,0.65);
  left:50%;
  margin-left:-588px;
  color: #fff;
  font-size:14px;
  font-weight:500;
}

#weather i{
  font-family: weather;
  font-size: 100px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.0;
  text-transform: none;
}

.icon-0:before { content: ":"; }
.icon-1:before { content: "p"; }
.icon-2:before { content: "S"; }
.icon-3:before { content: "Q"; }
.icon-4:before { content: "S"; }
.icon-5:before { content: "W"; }
.icon-6:before { content: "W"; }
.icon-7:before { content: "W"; }
.icon-8:before { content: "W"; }
.icon-9:before { content: "I"; }
.icon-10:before { content: "W"; }
.icon-11:before { content: "I"; }
.icon-12:before { content: "I"; }
.icon-13:before { content: "I"; }
.icon-14:before { content: "I"; }
.icon-15:before { content: "W"; }
.icon-16:before { content: "I"; }
.icon-17:before { content: "W"; }
.icon-18:before { content: "U"; }
.icon-19:before { content: "Z"; }
.icon-20:before { content: "Z"; }
.icon-21:before { content: "Z"; }
.icon-22:before { content: "Z"; }
.icon-23:before { content: "Z"; }
.icon-24:before { content: "E"; }
.icon-25:before { content: "E"; }
.icon-26:before { content: "3"; }
.icon-27:before { content: "a"; }
.icon-28:before { content: "A"; }
.icon-29:before { content: "a"; }
.icon-30:before { content: "A"; }
.icon-31:before { content: "6"; }
.icon-32:before { content: "1"; }
.icon-33:before { content: "6"; }
.icon-34:before { content: "1"; }
.icon-35:before { content: "W"; }
.icon-36:before { content: "1"; }
.icon-37:before { content: "S"; }
.icon-38:before { content: "S"; }
.icon-39:before { content: "S"; }
.icon-40:before { content: "M"; }
.icon-41:before { content: "W"; }
.icon-42:before { content: "I"; }
.icon-43:before { content: "W"; }
.icon-44:before { content: "a"; }
.icon-45:before { content: "S"; }
.icon-46:before { content: "U"; }
.icon-47:before { content: "S"; }

#weather h2 {
	background:rgba(0,0,0,0.55);
	font-size: 50px;
	font-weight: 300;
	text-align: center;
	margin:0;
	border-bottom:1px solid #454443;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}
#weather ul{
	margin: 0;
	padding: 20px;
	list-style:none;
}
#weather li{
	padding:10px 0;
	border-bottom:1px solid rgba(255,255,255,0.3);
}
#weather li:last-child{
	border-bottom:none;
}
#weather li label{
	display:block;
	color:#2f85d2;
	margin:0 0 3px;
}
#weather .w-error{
	padding: 10px;
	margin: 0;
	text-align: center;
	text-transform: none;
	font-weight: 400;
	font-size: 12px;
	position:relative;
	padding-top:40px;
}
#weather .w-error:before{
	font-family:'FontAwesome';
	content:"\f071";
	position:absolute;
	left:0;
	right:0;
	top:12px;
	text-align:center;
	font-size:20px;
	color:#ec8d12;
}

.about-cont .author-thumb{
	width: 242px;
  height: 333px;
  float: left;
  margin: 0 40px 30px 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.contact-cont .author-thumb{
	height:430px;
	border:15px solid #edeeee;
	margin-bottom:15px;
}
.contact-info h4,
.contact-form h4{
	font-size:24px;
	margin:0 0 20px;
}
.contact-info .dl-horizontal dt{
	text-align:left;
	width:80px;
	text-transform:uppercase;
}
.dl-horizontal dd{
	margin-left:80px;
	margin-bottom:5px;
}


.advanced-filter{
	margin:40px 0;
	border-top:1px solid #c7c7c7;
	border-bottom:1px solid #c7c7c7;
}
.advanced-filter .heading-cont{
	position:relative;
	margin-top:20px;
	margin-bottom:20px;
}
.advanced-filter .heading-cont h3{
	font-weight:300;
	text-transform:uppercase;
	font-size:20px;
	margin:0;
}
.advanced-filter .heading-cont .toggle-filter{
	position:absolute;
	right:0;
	top:0;
	color:#848484;
}
.advanced-filter h4{
	font-weight:400;
	font-size:18px;
	margin:0 0 15px;
	padding:0 0 15px;
	border-bottom:1px solid #c7c7c7;
}
.advanced-filter ul{
	margin:0;
	padding:0;
	list-style:none;
}
.advanced-filter ul li{
	padding:5px 0;
}
.advanced-filter ul li a{
	color:#20272b;
	text-decoration:none !important;
}
.advanced-filter ul li a:hover{
	color:#2f85d2;
}
.advanced-filter ul li a.active{
	font-weight:500;
	color:#2f85d2;
}

.filter-col{
	-webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
	-webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.search-result-listing .result-heading{
	border-bottom:1px solid #c7c7c7;
	padding:20px 0;
	margin-bottom:25px;
}
.search-result-listing .result-heading h3{
	font-weight:400;
	font-size:24px;
	letter-spacing:2px;
	margin:9px 0 0;
	text-transform:uppercase;
}
.search-result-listing .result-heading .btn{
	font-size:14px;
	min-height:42px;
	vertical-align:top;
}
.search-result-listing .result-heading .custom-select{
	display:inline-block;
	vertical-align:top;
}
.result-blocks .result-block{
	height:320px;
	position:relative;
	margin-bottom:30px;
}
.result-block .project-block .project-info{
	color:#fff;
}
.result-block .project-block .project-info .prop-title{
	text-align:left;
	margin-bottom:10px;
}
.result-block .project-block .project-info .prop-title a{
	color:#fff;
}
.result-block .project-block .project-info .prop-address,
.result-block .project-block .project-info .prop-no{
	margin:0;
	font-size:13px;
	font-weight:500;
}
.result-block .project-block .project-info .prop-price{
	margin-top:10px;
}
.result-block .project-block .project-info .prop-price .price{
	font-size:24px;
	font-weight:500;
	float:left;
	margin-right:10px;
}
.result-block .project-block .project-info .prop-tags{
	margin-top: 8px;
  font-size: 11px;
}
.result-block .project-block .project-info .sale-tag{
	font-size:13px;
	font-weight:500;
	color:#fff;
	text-transform:uppercase;
	position:absolute;
	right:15px;
	top:17px;
}
.result-block .project-block .like-icon{
	position:absolute;
	top:10px;
	right:15px;
	font-size:24px;
	cursor:pointer;
	z-index:9;
}
.agent-panel .map-prop-cont{
  position: relative;
  overflow: hidden;
}
.agent-panel .map-prop-cont > div{
  /*position: static !important;*/
}
.agent-panel .property-map{
  width: 50%;
  float: right;
  padding-left: 15px;
}
.agent-panel .map-prop-listing{
  float: left;
  width: 50%;
  padding-right: 15px;
}
.agent-prop-listing{
	/*height:580px;*/
	position:relative;
	padding-bottom:50px;
}
.agent-prop-listing .pagination{
	position:absolute;
	height:50px;
	left:0;
	right:0;
	bottom:0;
	background:#e4e4e4;
	margin:0;
	padding:10px 15px;
	border-radius:0;
}
.agent-prop-listing .pagination > li{
	margin:0 2px;
	float:left;
}
.agent-prop-listing .pagination a,
.agent-prop-listing .pagination span{
	display: inline-block;
	padding: 5px;
	border: 1px solid #ccc;
	min-width: 30px;
	height: 30px;
	text-align: center;
	line-height: 18px;
	border-radius: 3px;
	font-size: 12px;
	text-decoration:none;
	background:none;
}
.agent-prop-listing .pagination a:hover{
	background:#fff;
	color:#000;
}
.agent-prop-listing .pagination > li.active a{
	background:#2f85d2;
	color:#fff;
	border-color:#2f85d2;
}
.agent-prop-listing > ul{
	padding:0;
	margin:0;
	list-style:none;
	/*max-height: 530px;
	overflow-x: auto;*/
}
.agent-prop-listing > ul > li{
	border-bottom:1px solid #c7c7c7;
	padding:10px;
}
.agent-prop-listing > ul > li:nth-child(even){
	background:#f2f2f2;
}
.agent-prop-block .thumb-container{
	width:170px;
	height:140px;
	float:left;
	margin-right:15px;
	overflow:hidden;
	position:relative;
}
.agent-prop-block .virtual-tour{
	position:absolute;
	left:0;
	right:0;
	bottom:-30px;
	font-size:12px;
	color:#fff;
	text-decoration:none !important;
	font-weight:500;
	text-align:center;
	padding:6px;
	background:rgba(0,0,0,0.6);
	transition:all ease-in-out 200ms;
}
.agent-prop-block .virtual-tour:hover{
	color:#2f85d2;
	background:rgba(0,0,0,0.8);
}
.agent-prop-block:hover .virtual-tour{
	bottom:0;
}
.agent-prop-block .thumb-container .thumb{
	width:100%;
	height:140px;
}
.agent-prop-block .project-info{
	font-size:14px;
}
.agent-prop-block .project-info .prop-title{
	margin:0 0 10px;
}
.agent-prop-block .project-info .prop-address,
.agent-prop-block .project-info .prop-no{
	margin:0;
}
.agent-prop-block .project-info .prop-price{
	margin-top:10px;
}

.agent-prop-block .project-info .prop-price .price{
	font-size:24px;
	color:#2f85d2;
	font-weight:500;
}
.agent-prop-block .project-info .prop-tags{
	list-style:none;
	margin:3px 0 0;
	padding:0;
	font-size:12px;
	font-weight:500;
	text-transform:uppercase;
}
.agent-prop-block .project-info .prop-tags li{
	display:inline-block;
	padding-right:10px;
	margin-right:10px;
	border-right:2px solid #ccc;
	height:11px;
	line-height:11px;
}
.agent-prop-block .project-info .prop-tags li:last-child{
	padding-right:0;
	margin-right:0;
	border-right:none;
}
.agent-panel .agent-header{
	background:#e4e4e4;
	padding:10px;
	font-size:14px;
}
.agent-panel .agent-header .show-result{
	float:left;
	margin-top:12px;
}
.agent-panel .agent-header .sorting{
	float:right;
}
.agent-panel .agent-header .sorting .custom-select{
	display:inline-block;
}
.detail-top-sec{
	padding-bottom:50px;
	margin-bottom:50px;
	border-bottom:1px solid #e9e9e9;
}
.details-cont .price-row{
	margin-bottom:15px;
}
.details-cont .price-row .price{
	font-size:30px;
	font-weight:700;
}
.details-cont .price-row .sale-tag{
	font-size:14px;
	font-weight:700;
	text-transform:uppercase;
	color:#2f85d2;
	padding:0 10px;
}
.details-cont .prop-title{
	margin:15px 0;
}
.details-cont .prop-title h1, .details-cont .prop-title h2{
	font-size:24px;
	font-weight:300;
	margin:0;
}
.details-cont .prop-address{
	margin:15px 0;
	color:#7a7a7a;
	font-size:16px;
}
.details-cont .prop-address p{
	margin:0;
}
.details-cont .virtual-tour{
	margin:15px 0;
	font-size:16px;
	text-transform:uppercase;
	font-weight:400;
}
.details-cont .prop-info{
	margin:15px 0;
	color:#7a7a7a;
	font-size:16px;
}
.details-cont .prop-info p{
	margin:0;
}
.details-cont .prop-tags{
	margin:15px 0;
}
.details-cont .prop-tags ul{
	margin:0;
	padding:0;
	list-style:none;
}
.details-cont .prop-tags ul li{
	display:inline-block;
	border:1px solid #cacaca;
	border-radius:2px;
	font-size:12px;
	text-transform:uppercase;
	padding:10px;
	text-align:center;
}
.details-cont .prop-tags ul li span{
	font-size:20px;
	font-weight:700;
	color:#2f85d2;
	display:block;
}
.details-cont .call-info{
	margin:15px 0;
	font-size:20px;
	text-transform:uppercase;
}
.details-cont .prop-action{
	margin-top:15px;
}
.details-cont .prop-action .btn{
	font-size:15px;
	font-weight:400;
}
.property-details h3{
	/*margin:0 0 20px;*/
	font-size:22px;
	font-weight:400;
	text-transform:uppercase;
}
.property-details .dl-horizontal{
	margin-top:30px;
}
.property-details .dl-horizontal dt{
	width:220px;
	text-align:left;
}
.property-details .dl-horizontal dd{
	margin-left:240px;
	margin-bottom:14px;
}
.property-sidebar .contact-box{
	background:url(../images/tab-bg.jpg) no-repeat center bottom;
	background-size:cover;
	padding:20px;
}
.property-sidebar .contact-box{
	margin-bottom:30px;
	color:#fff;
}
.property-sidebar .contact-box h4{
	font-size:16px;
color:#fff;
	margin:0 0 20px;
	text-transform:uppercase;
}
.property-sidebar .contact-box .form-control{
	min-height:40px;
	background:none;
	border:1px solid rgba(255, 255, 255, 0.4);
	box-shadow:none;
	color:#fff;
}
.property-sidebar .contact-box .form-control:focus{
	border-color:#fff;
}
.property-sidebar .contact-box .btn{
	background:none;
	border:1px solid #e1e1e1;
	font-size:15px;
	font-weight:400;
	padding:10px;
	text-transform:uppercase;
}
.property-sidebar .contact-box .btn:hover{
	background:#fff;
	border-color:#fff;
	color:#2f85d2;
}
.detail-mid-sec{
    padding-bottom: 50px;
    margin-bottom: 50px;
    /*border-bottom: 1px solid #e9e9e9;*/
}
.detail-bottom-sec .prop-desc h3{
	margin-bottom:20px;
}
.detail-bottom-sec .prop-desc p{
	margin-top: 30px;
    font-size: 16px;
}
.bottom-gap{
	margin-bottom: 20px;
}
.detail-mid-sec.document {
    padding-bottom: 30px;
    margin-bottom: 30px;    
    display: table;
}
span.spanclass {
    margin: 0 5px 5px 0;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 48%;
    box-shadow: none !important;
}
.btn-customdownload:hover {
	color: #2f85d2 !important;
}
.newclass {
    
}


/* RATING */

.rating {
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.rating li {
    display: inline-block;
    margin-right: 4px;
}

.rating li span {
    display: block;
    float: left;
    width: 61px;
    height: 42px;
    background-color: #f7f7f7;
    border: 1px solid #c7c7c7;
    border-radius: 2px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #a6a6a6;
    cursor: pointer;
    background-image: url(../images/check-icons.png);
    background-repeat: no-repeat;
    transition: border-color ease-in-out 200ms;
}

.rating li span:hover {
    border-color: #000;
}

.rating li.filled span {
    border: 2px solid #000;
}

.rating li span.bed-label {
    background-position: center 9px;
}

.rating li.filled span.bed-label {
    background-position: center -45px;
}

.rating li span.bath-label {
    background-position: center -97px;
}

.rating li.filled span.bath-label {
    background-position: center -151px;
}

.rating li span.zero-label {
    background-image: none !important;
}

.search-map {
    width: 100%;
    height: 485px;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: #000;
    border-color: #000;
}

.pagination > li > a,
.pagination > li > span {
    color: #000;
}

.modal .btn {
    font-size: 14px;
}

.sidebar-map {
    height: 300px;
}


/* Gallery */

.lSSlideOuter {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.lSSlideOuter .lSSlideWrapper {
    border: 1px solid #e1e1e1;
}

.lightSlider > li {
    height: 450px;
}

.lSSlideOuter .lSGallery {
    position: absolute;
    bottom: 20px;
    z-index: 99;
}

.lSSlideOuter .lSPager.lSGallery li {
    transition: all ease-in-out 300ms;
    opacity: 0.7;
}

.lSSlideOuter:hover .lSPager.lSGallery li {
    opacity: 1;
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 0;
}

.lSSlideOuter .lSPager.lSGallery li a {
    display: block;
    border: 4px solid rgba(0, 0, 0, 0.3);
    transition: all ease-in-out 200ms;
}

.lSSlideOuter .lSPager.lSGallery li:hover a {
    border-color: rgba(0, 0, 0, 0.6);
}

.lSSlideOuter .lSPager.lSGallery li.active a {
    border-color: #000;
}

.lSAction > a {
    background: #000 !important;
    margin-top: -60px;
    opacity: 1;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
}

.lSAction > a.lSPrev {
    left: 0;
}

.lSAction > a.lSNext {
    right: 0;
}

.lSAction > a:hover {
    background: #626262 !important;
}

.q-search-panel a {
    color: #000;
}

.search-result-listing {
    position: relative;
    min-height: 450px;
}

.modal-body {
    position: relative;
    min-height: 70px;
}

.custom-select .chosen-container {
    display: block;
    width: 100% !important;
}

.custom-select .chosen-container .search-field input[type=text] {
    width: 100% !important;
}

#image-gallery.lightSlider {
    margin: 0 !important;
}
.custom_class{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 24.9%;
}
.dev-blocks .custom_class .dev-block{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 8px 6px -6px #20272b;
}
.roweq_height{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.dev-block .dev-project-details .dev-info li a:hover{
  color: #a6d5ff;
display:none;
  text-decoration: none;
}
.dev-block .dev-project-details .dev-info li:before{
  color: #2f85d2;
display:none;
}
.dev-block .dev-project-details .dev-info li{
  padding-left: 10px;

}
.dev-block .dev-project-details h4 a{
  text-transform: uppercase;
}
.dev-block .dev-project-details h4{
  margin-bottom: 15px;
}
.form-horizontal .control-label{
  margin-bottom: 5px;
}
hr{
    clear: both;
    float: left;
    width: 100%;
}
.btn-custom{
	font-size: 17px;
}
.mtop10 {
    margin-top: 10px !important;
    text-decoration: none;
}
.no-arrow::after{
	display: none !important; 
}
.log-form{
    max-width: 700px;
    margin: auto;
    border: 1px solid #ededed;
    background: #f7f7f7;
    padding: 15px;
}
.form-group:last-child{
    margin-bottom: 0;
}

.site-header .header-actions ul li a.email-link {
    width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-header .header-actions ul li a.user-nameheader {
    width: 55px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
}
.success-save{
	color: #2f85d2;
}
.error-save{
	color:red;
}
.customstylemodal .modal-header{
	background: #2f85d2;
}
.customstylemodal .modal-title{
    padding-bottom: 5px;
    margin-bottom: 0;
    font-size: 20px;
    color: #fff;
    position: relative;
}
.customstylemodal h4.modal-title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 50%;
    margin-left: -30px;
}
.customstylemodal h4.modal-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    margin-left: -20px;
}
.customstylemodal .form-group:last-child {
    margin-bottom: 20px;
}
.modal-header .close {
    margin-top: -2px;
    z-index: 12;
    position: relative;
}
.fav-fill{
	color:#2f85d2;
}
.property-mail-succ{
	color:#FFF;
}
.property-mail-err{
	color:#F00;
}

/*---------------Meet our team--09-12-2016----------------------*/
.ourTeam { width: 100%; margin: 0 0 40px 0; overflow: hidden; }
.ourTeam .broker-thumb { width: 150px; height: 150px; border: 7px solid #fff;  box-shadow: 0px 2px 3px rgba(0,0,0,0.3);  margin: 0 auto 15px auto; border-radius: 50%; float: none;}
.ourTeam .broker-info { width: 100%; text-align: center; }
.ourTeam .broker-info .name { font-size: 20px; text-transform: uppercase; font-weight: 400; padding: 0; margin: 0 0 5px 0; }
.ourTeam .broker-info .info { font-size: 14px; text-transform: uppercase; font-weight: 400; color: #b3b3b3; padding: 0; margin: 0 0 10px 0; }
.ourTeam .broker-info .call { font-size: 15px; font-weight: 300; color: #333333; padding: 0; margin: 0 0 5px 0; vertical-align: middle; }
.ourTeam .broker-info .email { font-size: 15px; font-weight: 300; color: #333333; padding: 0; margin: 0 0 5px 0; vertical-align: middle; }
.ourTeam .broker-info .email a { color: #333333; text-decoration: none; }
.ourTeam .broker-info .email a:hover { color: #2f85d2; text-decoration: none; }
.ourTeam .broker-info i { font-size: 16px; margin: 0 6px 0 0; display: inline-block; color: #2f85d2; }
.ourTeam .broker-info .call i { font-size: 22px; }
.ourTeam .broker-info .name.colorG { color: #2f85d2; }
/*---------------End Meet our team--09-12-2016----------------------*/

/*---------------- Sumitra 23-12-2016 Start-------------------*/

.criteria-labels{
    padding: 15px;
    border: 1px solid #333;
}
.criteria-labels label{
    padding: 10px 20px;
    border-radius: 5px;
    margin: 3px;
}
.property-listing .panel{
    position: relative;
}
.property-listing .panel-heading{
    font-size: 20px;
    padding: 15px;
}
.property-listing .prop-panel-btn{
    position: absolute;
    top: 15px;
    right: 15px;
}
.property-listing .prop-panel-btn button{
    padding: 0;
    margin-left: 10px;
    border: none;
    background: none;
    font-size: 20px;
}
.property-listing .panel .panel-body{
    padding: 15px;
}
.property-listing .property-thumb{
	width:210px;
	height:160px;
	overflow:hidden;
}
.property-listing .details{
	padding:20px;
	overflow:hidden;
}
.fav-heading{
    border-color: #e1e1e1;
    padding: 20px;
    font-size: 24px;
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;

}
/*------------------ Sumitra 23-12-2016 End------------------*/


/*...............added on 16th jan...........*/
.site-header .navbar-brand{
	width: 140px;
    height: 140px;
}
.site-header .navbar-brand img{
	max-height: 55px;
}
.site-header.fix-head .navbar-brand img{
	max-height: 100px;
}
.lefted-ul li{
	list-style-type: none;
	display: inline-block;
	margin-left: 10px;
}
.lefted-ul li:first-child{
	margin-left: 0;
}
.lefted-ul li img {
    max-width: 70px;
}

.set-position{
	float: left;
    margin: 0;
    list-style-type: none;
    padding: 0;
}
.set-position li{
	float: none;
    margin: 1px;
    display: inline-block;    
}
/*..........added on 19th jan...........*/

.content-area .project-slider+.btn-holder a:first-child{
	margin-right: 4px;
}
.news-blocks .news-block .news-title{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-blocks .news-block{
	min-height: 198px;
}
.text-center .btn-center{
	display: inline-block;
}
.site-header .header-social ul li a:hover,.site-header .header-social ul li a:hover img{
	color: #b2b2b2;
	opacity: .8
}
.set-position{
	margin-top: -3px;
	text-align: center;
	width: 100%;
}
.site-header .header-social ul li{
	margin-top: 3px;
}
.home-finder-form .form-group:last-child{
	margin-bottom: 20px;
}
.nomargbottom{
	margin-bottom: 0;
}
.nomargbottom.advanced-filter .form-group:last-child{
	margin-bottom: 20px;
}
.site-header.fix-head .navbar-brand {
    top: -61px;
}
.ourTeam .broker-info i{
	font-size: 19px
}
.ourTeam .broker-info img{
    position: relative;
    top: -3px;
    margin-right: 6px;
    border-radius: 4px;
}

.home-banner-container .quick-search{
	position: absolute;
	z-index: 5;
	background: rgba(0,0,0,0.6);
	margin-top: 220px;
	left: 50%;
	margin-left: -570px;
	padding: 20px;
	color: #fff;
}
.home-banner-container .quick-search .heading-sec h3{
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
.col-md-4.col-sm-6.ng-scope.common-edit:nth-of-type(3n+1) {
    clear: left;
}
.succ-msg-home{
position: relative;
    float: left;
    margin-top: 10px;
    padding-left: 15px;
}

/*........added later......*/

.gal-mesonry,.gal-mesonry2{
    margin: 50px 0;
}

.gal-mesonry .grid,.gal-mesonry2 .grid {
    margin: 0 -15px;
    padding: 0;
}

.gal-mesonry .grid-item,.gal-mesonry2 .grid-item{
  float: none;
  width: 25%;
  display: inline-block;
}
.gal-mesonry .grid-item--width2,.gal-mesonry2 .grid-item--width2 { 
    width: 50%; 
}
.gal-mesonry .grid-item .grid-block,.gal-mesonry2 .grid-item .grid-block{
    height: 240px;
    background: #1f272a;
    margin: 15px;
    position: relative;
}
.gal-mesonry .grid-item--width2 .grid-block,.gal-mesonry2 .grid-item--width2 .grid-block{
    height: 480px;
}
.gal-mesonry .grid-thumb,.gal-mesonry2 .grid-thumb{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}
.gal-mesonry .grid-thumb > .overlay-text:before,
.gal-mesonry2 .grid-thumb > .overlay-text:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    border-radius: 100%;
    content: "";
    opacity: 1;
    visibility: visible;
    transform: scale(2,2);
    transition: all ease-in-out 500ms;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.84+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.84) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.84) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.84) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d6000000',GradientType=0 ); /* IE6-9 */
}
.gal-mesonry .grid-thumb:hover > .overlay-text:before,
.gal-mesonry2 .grid-thumb:hover > .overlay-text:before{
    opacity: 1;
    visibility: visible;
    transform: scale(2,2);
}
.gal-mesonry .grid-thumb .grid-title,
.gal-mesonry2 .grid-thumb .grid-title{
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
    z-index: 2;
    opacity: 1;
    /*transform: translate3d(-40px,0,0);*/
    transition: all ease-in-out 400ms;
}
.gal-mesonry .grid-thumb:hover .grid-title,
.gal-mesonry2 .grid-thumb:hover .grid-title{
    opacity: 1;
    transform: translate3d(0,0,0);
}
.gal-mesonry .grid-thumb .grid-title:after,
.gal-mesonry2 .grid-thumb .grid-title:after{
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 100%;
    right: 0;
    top: 2px;
    font-family: 'FontAwesome';
    font-size: 15px;
    content: "\f105";
    text-align: center;
    line-height: 18px;
    opacity: 1;
    /*transform: translate3d(-15px,0,0);*/
    transition: all ease-in-out 500ms;
}
/*.gal-mesonry .grid-thumb:hover .grid-title:after{
    opacity: 1;
    transform: translate3d(0,0,0);
}*/
.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    text-align: left;
    padding: 10px 30px;
}
.mainTitle {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    display: block;
    /*transform: translate3d(-15px,0,0);*/
    transition: all ease-in-out 500ms;
    opacity: 1;    
}
.gal-mesonry .grid-thumb:hover .mainTitle,
.gal-mesonry2 .grid-thumb:hover .mainTitle {
	opacity: 1;
    transform: translate3d(0,0,0);
}
.table-prop {
	display: table;
	width: 100%;
	height: 100%;
	table-layout: fixed;
}
.table-cell {
	display: table-cell;
	height: 100%;
	width: 100%;
	vertical-align: bottom;
}
.table-cell.valign-middle {
	vertical-align: middle;
}
.overlay-text a {
    height: auto !important;
    width: auto !important;
    color: #9aceff;
    text-decoration: none;
    padding: 0 10px;
    border-left: 1px solid #9aceff;
    float: left;
    /*transform: translate3d(0px,15px,0);*/
    transition: all ease-in-out 500ms;
    opacity: 1;
}
.gal-mesonry .grid-thumb:hover .overlay-text a,
.gal-mesonry2 .grid-thumb:hover .overlay-text a
 {
	transform: translate3d(0px,0,0);    
    opacity: 1;
}
.overlay-text a:nth-of-type(1) {
	padding-left: 0;
	border: none;
}
.overlay-text .table-prop {
	position: relative;
    z-index: 12;
}
.new-developments {
	background: #f2f2f2;
}
.new-developments .project-block .project-info .prop-title.light a {
    color: #000;
    text-decoration: none !important;
}
.new-developments .project-block .project-info .prop-title.light a:hover {
    color: #000;
}

.project-block .project-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
   padding-bottom: 121px;


}

.result-blocks .project-block .project-info {
 background: rgb(0, 0, 0);
background: linear-gradient(0deg, rgba(0, 0, 0,1) 0%, rgba(0, 0, 0,0) 100%); 
}

.project-block .project-info .prop-title {
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.project-block .project-info .prop-title a {
    color: #e1e1e1;
    text-decoration: none !important;
}

.project-block .project-info .prop-title a:hover {
    color: #ffffff;
}





.new-developments .project-block .project-info {
	background: #fff;
}
.new-developments .project-block .project-info .prop-tags li {
    color: #4289c1;
}
.new-developments .neighborhood-blocks .nav > li > a {
    border: 1px solid #2887d9;
    color: #2887d9;
}
.new-developments .neighborhood-blocks .nav > li.active > a {
    background: #2887d9;
    color: #fff;
    border-color: #2887d9;
}
.btn-blue {
    border-color: #2887d9;
    color: #2887d9;
}
.btn-blue:hover {
	border-color: #2887d9;
	background-color: #2887d9;
}
.left-tab-panel.new-gapings {
	padding: 70px 0 50px;
}
.dummy-listing {
	padding: 50px 0;
}
.grid-style {
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: none;
    list-style: none;
    text-align: center;
}
.grid-style figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 0;
    min-width: 100%;
    max-width: 100%;
    max-height: 365px;
    width: 100%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    min-height: 365px;
}
figure.effect-oscar {
    background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
    background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
}
.grid-style figure .image-section {
    background-position: center center !important;
    background-repeat: no-repeat;
    background-size: cover !important;
    min-height: 425px;
    width: 100%;
}
.grid-style figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.grid-style figure figcaption, .grid-style figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
figure.effect-oscar figcaption {
    padding: 3em;
    background-color: transparent;
    -webkit-transition: background-color 0.35s;
    transition: background-color 0.35s;
    background: -moz-linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%,rgba(244,85,56,0) 100%);
    background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%,rgba(244,85,56,0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%,rgba(244,85,56,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f45538', endColorstr='#000',GradientType=1 );
    transition: all 500ms ease-in-out;
}
.grid-style figure figcaption::before, .grid-style figure figcaption::after {
    pointer-events: none;
}
figure.effect-oscar figcaption::before {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    content: '';
}
figure.effect-oscar figcaption::before, figure.effect-oscar p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.grid-style figure h2 {
    font-weight: normal;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
}
.grid-style figure h2, .grid-style figure p {
    margin: 0;
}
figure.effect-oscar h2 {
    margin: 20% 0 10px 0;
    margin: 0;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}
.grid-style figure p {
    letter-spacing: 5px;
    font-size: 16px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}
figure.effect-oscar figcaption::before, figure.effect-oscar p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0);
    transform: scale(0);
}
figure.effect-oscar:hover figcaption::before, figure.effect-oscar:hover p {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
figure.effect-oscar:hover h2 {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
figure.effect-oscar:hover figcaption::before, figure.effect-oscar:hover p {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
figure.effect-oscar:hover figcaption {
    background: -moz-linear-gradient(to right, rgba(244,85,56,0) 0%,rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(to right, rgba(244,85,56,0) 0%,rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to right, rgba(244,85,56,0) 0%,rgba(0, 0, 0, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f45538', endColorstr='#000',GradientType=1 );
}

/*====new-page-copy====*/
.map-area {
    float: left;
    margin-top: 140px;
    position: relative;
    width: 100%;
}

.map-area .map-image{
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

.map-area-content{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.map-area-content .quick-search{
	width: 490px;
    height: auto;
    background: #2f85d2;
    padding: 25px 55px;
    position: relative;
    margin-left: -245px;
}
.map-area-content .quick-search::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -42px;
    margin-top: -44px;
    background: url(../images/red-arrow.png) no-repeat 0 0;
    width: 50px;
    height: 85px;
    content: "\f0da";
    font-family: FontAwesome;
    background: none;
    font-size: 150px;
    color: #2f85d2;
    z-index: 11;
    line-height: 85px;

}

.map-area-content .quick-search h3{
	margin: 0;
}
.heading-sec{
	 position: relative;
	 margin-bottom: 8px;
}
.heading-sec h3{
	letter-spacing: 2px;
    font-size: 26px;
    line-height: 26px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 22px;
   }

.heading-sec h3::after{
	width: 85px;
	height: 2px;
	background: #FFF;
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -43px;
	content: "";
}


.map-area-content .q-search-panel .form-group .control-label,.map-area-content .q-search-panel .form-group span{
	 color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 12px;
    border:none;
}
.map-area-content .q-search-panel .form-group .form-control{
	border-radius: 6px;
}
.map-area-content .check-icon{
	color: #FFF;
}
.white-text{
	color: #FFF;
}
.map-area-content .btn-success{
	background: #080607;
	width: 100%;
	border-radius: 6px;
}
.map-area-content .form-area{
	margin-top: 20px;
}
.map-bottom-boxes{
	display: inline-block;
	width: 100%;
}
.map-bottom-boxes ul{
	float:left;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.map-bottom-boxes ul li{
	float:left;
	width:25%;
	position: relative;
	padding-left: 1px;
	overflow:hidden; 
	cursor: pointer;
}
.map-bottom-boxes ul li:first-child{
	margin-left:0;
}
.map-bottom-boxes ul li::before{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	content: "";
	transform: scale(0,0);
    transition: all ease-in-out 500ms;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.84+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.84) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.84) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.84) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d6000000',GradientType=0 ); /* IE6-9 */
}
.map-bottom-boxes ul li:hover::before{
	opacity: 0.6;
    visibility: visible;
    transform: scale(2,2);
}
.map-bottom-boxes ul li img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.box-content{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 15px 20px;
}
.box-content::before{
	width: 100%;
	height: 2px;
	background: rgb(255,255,255,0.2);
	content: "";
	position: absolute;
	left: 0;
	top: 0;

}

.box-content h3{
	color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
}
.box-content h3 a{
	float: right;
}


/*====featured-area=====*/
.featured-area h2{
	text-transform: uppercase;
	margin: 0;
	position: relative;
	padding-bottom: 20px;
	font-weight: 400;
}
.featured-area h2::after{
	position: absolute;
	left: 50%;
	bottom: 0;
	background: #41444d;
	width: 20px;
	height: 2px;
	margin-left: -10px;
	content: "";
}
.featured-area .neighborhood-blocks{
	margin-top: 36px;
}

.featured-area .neighborhood-blocks .nav > li.active > a {
    background: #3184d2;
    color: #fff;
}
.featured-area .neighborhood-blocks .nav > li > a {
    border: 1px solid #aaaaaa;
    padding: 5px 15px;
    color: #aaaaaa;
}

.project-slider.home-top-slider .slider-single {
    height: 380px;
    position: relative;
}
.project-slider.home-top-slider .project-info .prop-title.light {
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.project-slider.home-top-slider .project-info .prop-title.light a{
	float: right;
}

.project-slider.home-top-slider .project-block .project-info {
    background: rgba(32, 39, 43, 0.6);
}
.project-slider.home-top-slider{
    padding-bottom: 0;
}

.featured-area .gal-mesonry, .featured-area .gal-mesonry2 {
    margin: 50px 0 0;
}
.home-top-slider .swiper-slide{
	padding-left: 1px;
}
.home-top-arrows{
	margin-top: 80px;
}

.tab-up-button .nav{
	margin-bottom:40px;
	display: inline-block;
	width: 100%;
	text-align: center;
}
.tab-up-button .nav > li{
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    margin-left: 4px;
}
.tab-up-button .nav > li > a{
	 border: 1px solid #aaaaaa;
    color: #aaaaaa !important;
	padding:5px 15px;
}
.tab-up-button .nav > li.active > a{
	background:#3184d2 !important;
	color:#fff !important;
}

h3.heading{
	text-transform: uppercase;
	margin: 0;
	position: relative;
	padding-bottom: 20px;
	font-weight: 400;
	text-align: center;
}
h3.heading::after{
	position: absolute;
	left: 50%;
	bottom: 0;
	background: #41444d;
	width: 20px;
	height: 2px;
	margin-left: -10px;
	content: "";
}
.mt-30 {
    display: inline-block;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}
.about-us{
	margin-top: 30px;
}
.about-content p{
	font-size: 14px;
	line-height: 24px;
	margin-top: 15px;
}
#loading-bar .bar {
  background: #20272b;
}
#loading-bar-spinner .spinner-icon {
  border-top-color:  #20272b;
  border-left-color: #20272b;
}
#loading-bar .peg {
  -moz-box-shadow: #20272b 1px 0 6px 1px;
  -ms-box-shadow: #20272b 1px 0 6px 1px;
  -webkit-box-shadow: #20272b 1px 0 6px 1px;
  box-shadow: #20272b 1px 0 6px 1px;
}

.dev-block .dev-project-details .dev-info li a {
	color: #fff;
}
.tab-up-button .nav > li > a:hover {
	background: #3184d2 !important;
    color: #fff !important;
}
a.lSNext::before {
    content: '\f105';
    font-family: FontAwesome;
}
.lSAction > a.lSPrev::before {
	content: "\f104";
    font-family: FontAwesome;
}

.map-area-content ul.rating li span {
    line-height: 42px !important;
    color: #000 !important;
}

/*changed as perclient*/
	
.site-header .navbar-brand {
    width: 140px;
    height: 140px;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    display: inline-block;
    margin: 0 auto;
    float: none;
}
.site-header.fix-head .navbar-brand img {
    max-height: 60px;
}
.site-header.fix-head .navbar-brand {
    top: auto;
    width: auto;
    height: 60px;
}
.navbar-header {
	width: 100%;
}
.site-header .header-bottom {
	padding: 10px 0;
}
.new-developments .project-block .project-info .prop-tags li:first-child {
    border-right: 1px solid #4289c1;
}
.map-area-content .quick-search {
	background: rgba(47, 133, 210, 0.74);
}
.page-breadcrumb {
	padding-top: 198px;
}
.map-area-content .quick-search::after {
	display: none;
}
.flexslider .slides > li {
    height: 640px;
}
.gal-mesonry .grid-thumb .grid-title:after, 
.gal-mesonry2 .grid-thumb .grid-title:after {
	display: none;
}
@media (min-width: 768px){
	.navbar-right {
		float: none !important;
	    display: -webkit-box;
	    display: -moz-box;
	    display: box;
	    display: -webkit-flex;
	    display: -moz-flex;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-orient: row wrap;
	    -moz-box-orient: row wrap;
	    box-orient: row wrap;
	    -webkit-box-direction: normal;
	    -moz-box-direction: normal;
	    box-direction: normal;
	    -webkit-flex-direction: row wrap;
	    -moz-flex-direction: row wrap;
	    flex-direction: row wrap;
	    -ms-flex-direction: row wrap;
	    -webkit-box-pack: distribute;
	    -moz-box-pack: distribute;
	    box-pack: distribute;
	    -webkit-justify-content: space-around;
	    -moz-justify-content: space-around;
	    -ms-justify-content: space-around;
	    -o-justify-content: space-around;
	    justify-content: space-around;
	    -ms-flex-pack: distribute;
	}
}

.site-header .left-navheader .header-lan {
    margin: 15px 0 0 0;
}
.site-header .header-social {
    margin: 5px 0 0 0px;
    clear: left;
}
.site-header .header-actions ul li a, 
.site-header .header-actions ul li .search-link {
    color: #2f85d2;
}
.left-navheader {
	float: left;
}
.site-header .header-social ul li a {
    color: #2f85d2;
}
.site-header .header-social ul li a:hover, .site-header .header-social ul li a:hover img {
    color: #2f85d2;
    opacity: .8;
}
.site-header .header-actions ul li a:hover, 
.site-header .header-actions ul li .search-link:hover {
    color: #fff;
}
.site-footer .broker-block .broker-thumb {
	height: auto;
}
.site-footer .broker-block .broker-thumb img {
    object-fit: contain;
    width: 100%;
}
.map-area-content .btn-success {
    width: auto;
}
.map-area-content .btn-success:hover {
	background: #464646;
}
.news-blocks .swiper-wrapper .swiper-slide::after {
    content: '';
    width: 15px;
    height: 15px;
    background: #56a9f3;
    position: absolute;
    border-radius: 100%;
    left: 50%;
    margin-left: -7.5px;
    top: 55px;
}
.news-blocks .swiper-wrapper .swiper-slide {
    padding: 20px 0;
    position: relative;
}
.news-blocks .swiper-wrapper .swiper-slide::before {
    content: '';
    width: 0;
    height: 100%;
    border-right: 1px dashed #fff;
    position: absolute;
    left: 50%;
    top: 0;
}
.news-blocks .swiper-wrapper .swiper-slide::after {
    content: '';
    width: 15px;
    height: 15px;
    background: #56a9f3;
    position: absolute;
    border-radius: 100%;
    left: 50%;
    margin-left: -7.5px;
    top: 55px;
}
.news-blocks .swiper-wrapper .swiper-slide .col-sm-6:nth-child(1) .news-block {
    top: -5px;
}
.news-blocks .swiper-wrapper .swiper-slide .col-sm-6:nth-child(2) .news-block {
    top: 5px;
}
.news-blocks .swiper-wrapper .swiper-slide .col-sm-6:nth-child(2) .news-block::before {
    content: '';
    position: absolute;
    border-right: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    left: -6px;
    top: 34px;
}
.news-blocks .swiper-wrapper .swiper-slide .col-sm-6:nth-child(1) .news-block::before {
    content: '';
    position: absolute;
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    right: -6px;
    top: 38px;
}
.news-blocks .news-block {
	position: relative;
}

/*.news-area {
	height: 390px;
}*/
.news-area .swiper-container {
	height: 244px;
}
.news-area {
    background: url(../images/newsbackground.jpg) no-repeat 0 0;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
.news-area::before {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.78);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%,rgba(0,0,0,0.7) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%,rgba(0, 0, 0, 0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}

.info-blockfooter {
    float: left;
    width: 28%;
    padding: 0 20px;
}
.info-blockfooter p a {
    display: block;
}
.site-footer .broker-block .broker-thumb {
    width: 125px;
}
.site-footer .social-icons ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
}
.social-icons.text-center {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #eee;
}
.info-blockfooter p {
    margin-bottom: 2px;
}
.icon-block {
    position: relative;
    padding-left: 20px;
}
.icon-block span.icon-portion {
    position: absolute;
    font-size: 15px;
    left: 0;
    color: #fff;
}
.icon-block + .icon-block {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}
.icon-block .icon-block + .icon-block span.icon-portion {
	top: 4px;
}
.zillow-itemclass {
    min-width: 22px;
    min-height: 20px;
    background: url(../images/icon/zilo-grey.png) no-repeat 0 0;
    background-size: contain;
    display: inline-block;
    vertical-align: bottom;
}
.trulia-itemclass {
    min-width: 22px;
    min-height: 14px;
    background: url(../images/trulia-grey.png) no-repeat center center;
    background-size: contain;
    display: inline-block;
}
.project-slider.home-top-slider .project-block .project-info {
	bottom: auto;
	top: 0;
}
.project-slider.home-top-slider {
	margin-top: 8px;
}
.content-area.news-area .swiper-button-next, .content-area.news-area .swiper-button-prev {
	margin-top: 10px;
}
.agent-prop-listing .pagination {
	padding: 10px;
	position: relative;
	height: auto;
	width:100%;
}

.project-block .project-info .prop-tags li {
    padding-left: 10px;
    margin-left: 10px;
    padding-right: 0;
    margin-right: 0;
    border-right: none !important;
    border-left: 1px solid #fff;
}
.project-block .project-info .prop-tags li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}
.new-developments .project-block .project-info .prop-tags li {
    color: #4289c1;
    border-left: 1px solid #4289c1;
}
.project-block .project-info .prop-tags li:first-child{
	padding-left: 0;
	margin-left: 0;
	border-left: none !important;
}
button.btn.btn-success.btn-help i {
    margin-right: 10px;
}
/*google map Markers info-window details*/

.load_map_img {
    background: url('../images/loader-32-32.gif') no-repeat;
}

.marker_googlemap {
    background-color: #000 !important;
    border: 2px solid #ffffff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 8px;
    margin-left: -22px;
    margin-top: -22px;
    padding: 3px 6px 1px;
    text-align: center;
    z-index: 999;
    color: #ffffff;
    font-weight: bold;
}

.marker_googlemap::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    display: block;
    margin-left: -5px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    border-top: 8px solid #ffffff;
    z-index: 2;
}

.marker_googlemap::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    display: block;
    margin-left: -5px;
    position: absolute;
    bottom: -7px;
    left: 50%;
    border-top: 8px solid #000;
    z-index: 12;
}

.map_infowindowinfo {
    color: #444;
    display: inline-block;
    line-height: 1.3em;
    padding: 7px 0 5px;
    position: relative;
}

.right_mappart {
    float: left;
    width: 70%;
}

.load_map_img {
    float: left;
}

.right_mappart h4 {
    font-size: 14px;
    color: #333;
    font-family: Roboto, Arial;
    font-size: 13px;
    background-color: white;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
    margin-top: 0;
    margin-bottom: 3px;
}

.load_map_img {
    float: left;
    margin-right: 10px;
    border: 1px solid rgba(204, 204, 204, 0.27);
}

.right_mappart span {
    float: left;
    margin-left: 3px;
    padding-left: 4px;
    /* border-left: 1px solid #fff; */
    position: relative;
}

.right_mappart strong {
    text-transform: capitalize;
    color: #fff;
}

.load_map_img img {
    object-fit: contain;
    height: 50px;
}

.right_mappart span::before {
    content: '';
    width: 1px;
    height: 14px;
    background: rgba(11, 86, 164, 0.41);
    position: absolute;
    right: -4px;
    top: 1px;
}

.right_mappart span:nth-of-type(1) {
    padding-left: 0;
    margin-left: 0;
}

.right_mappart span:nth-of-type(3)::before {
    display: none;
}

.right_mappart h4 a {
    color: inherit;
}

.marker_googlemap.already_seen {
    background: #e6e6ff !important;
}

.marker_googlemap.already_seen::before {
    border-top-color: #e6e6ff !important;
}

.marker_googlemap.already_seen:hover,
.marker_googlemap:hover {
    background: #a3a3c2 !important;
    color: #000;
}


/*changed as perclient*/

/*......added on 27th july.......*/

.detail-top-sec.detail_customnew {
    padding-bottom: 0;
    margin-bottom: 50px;
    border-bottom: none;
}
.top_borderproperty {
	margin-top: -4px;
	padding-top: 18px;
	border-top: 1px solid #e9e9e9;
}
.project_desc,.project_desc p {


}
.project_desc p>strong,.project_desc ul+ strong {
    font-size: 22px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
}
.project_desc ul {
	padding: 0 0 0 15px;
}
.project_desc ul li {
	font-size: 16px;
	line-height: 36px;
	color: #484848;
	position: relative;
	list-style-type: none;
}
.project_desc ul li::before {
    content: '';
    width: 3px;
    height: 3px;
    background: #6d6d6d;
    border-radius: 100%;
    position: absolute;
    left: -15px;
    top: 16px;
}
p:empty {
	display: none;
}
.btn-customdownload {
    font: 400 15px/24px 'Roboto', sans-serif;
    color: #20272b;
    padding-left: 34px;
    position: relative;
}
.btn-customdownload::before {
    content: '';
    background: url(../images/icons8-download.gif) no-repeat 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
}
.newclass {
	clear: both;
}
.property-sidebar .table>thead>tr>th {
    font-size: 14px;
    color: #484848;
    font-weight: 500;
    text-align: center;
    padding: 15px 8px;
    border-bottom: 2px solid #c7c7c7;
}
.property-sidebar .table>tbody tr td {
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    color: #484848;
    padding: 11px 8px;
    border-bottom: 1px solid #e1e1e1;
    font-weight: 400;
    white-space: nowrap;
}
.property-sidebar .table>tbody > tr > td {
    padding: 0;
}
.property-sidebar .table>tbody>tr:last-child>td {
	border-bottom: none;
}
.property-sidebar .table>tbody>tr .specialstyleclass {
    background: #f4f4f4;
    font-size: 20px;
    line-height: 30px;
    color: #484848;
    padding: 21px;
    font-weight: 300;
}
.property-sidebar .nav-tabs>li>a {
	font-size: 18px;
	line-height: 30px;
	color: #484848;
	font-weight: 400;
	border-radius: 0;
	padding: 15px;
}
.property-sidebar .nav-tabs {
	border-bottom: 2px solid #c7c7c7;
}
.property-sidebar .nav-tabs>li {
	position: relative;
	width: 50%;
    text-align: center;
}
.property-sidebar .nav-tabs>li.active>a, 
.property-sidebar .nav-tabs>li.active>a:focus, 
.property-sidebar .nav-tabs>li.active>a:hover {
    color: #000;
    font-weight: 500;
    border: none;
}
.property-sidebar .nav-tabs>li.active::after {
	content: '';
	height: 3px;
	background: #000;
	width: 100%;
	position: absolute;
	bottom: -3px;
	left: 0;
}
.property-sidebar .table-responsive {
	margin-bottom: 0;
}
.total_tabwrap {
	box-shadow: 0 0 10px #eaeaea;
}
.gottodetails {
    font-size: 20px;
    color: #000;
    display: inline-block;
    margin-left: 10px;
}
.property-details .dl-horizontal dt {
    width: 150px;
    text-align: left;
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 500;
}
.property-details .dl-horizontal dd {
    margin-left: 170px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #7a7a7a;
}
.details-cont .prop-address p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}
.removeclassnameaftermap {
	height: 300px;
	background-color: #ccc;
	width: 100%;
}
 .table-responsive table {
    margin-bottom: 0;
}
.detail-mid-sec.document.custom_newclass {
	display: block;
}
.detail-mid-sec.document.custom_newclass span.spanclass:nth-of-type(2) {
    float: right;
    margin-right: 0;
}

.property-sidebar .table>tbody tr td:nth-child(1),
.property-sidebar .table>thead>tr>th:nth-child(1) {
    width: 76px;
}
.property-sidebar .table>tbody tr td:nth-child(2),
.property-sidebar .table>thead>tr>th:nth-child(2) {
    width: 76px;
}
.property-sidebar .table>tbody tr td:nth-child(4),
.property-sidebar .table>thead>tr>th:nth-child(4) {
    width: 108px;
}
.property-sidebar .table>tbody tr td:nth-child(5),
.property-sidebar .table>thead>tr>th:nth-child(5) {
    width: 142px;
}
.specialUl ul {
    list-style-type: none;
    padding-left: 0;
}
.specialUl ul li {


    list-style-type: disc;
    list-style-position: inside;
}
 .specialUl ul li font {

}
.unit_number_style{
	font-size: 15px;
    color: #000;
    display: inline-block;
    margin-left: 10px;
}
.detail-bottom-sec {
    border-top: 1px solid #e9e9e9;
    margin-top: 21px;
}
.property-details.top_borderproperty {
	border-top: none;
}
.detail-bottom-sec.ng-scope p {
    font: 300 16px/26px 'Roboto', sans-serif;
    color: #484848;
}

/*......added on 27th july.......*/



/*...........new search page...........*/
.top_search {
  height: 59px;
  background: #000;
  width: 100%;
  top: 124px;
  padding-top: 0;
  position: absolute;
}


.map_search {
    width: 50%;
    float: left;
    height: 100%;
    background: #ffffff;
    position: relative;
}
.search-map {
    width: 100%;
    height: 100%;
}

.search_listingnew {
   width: 50%;
  float: left;
  height: 100%;
  overflow-y: auto;
  padding: 0 15px;
  background: #ffffff;
}
.total_searchlisting {
  width: 100%;
  top: 158px;
  bottom: 0;
}

.total_searchlisting .search_results {
  height: 100%;
  position: absolute;
  width: 100%;
margin-top: -23px;

}

.total_searchlisting .project-block .project-thumb {
    position: absolute;
    left: -25px;
    right: -25px;
    top: -45px;
    bottom: -35px;
    z-index: 2;
    transition: all ease-in-out 200ms;
}

.total_searchlisting .result-blocks .project-block .project-info {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000+0,000000+44,000000+100&0+0,0.73+44,1+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.8) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.8) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.8) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#000', GradientType=0);
    /* IE6-9 */
}

.total_searchlisting .project-block:hover .project-thumb {
    transform: scale(1, 1);
}

.total_searchlisting .result-block .project-block .project-info .prop-price .price {
    font-size: 22px;
}

.total_searchlisting .result-block .project-block .project-info .prop-price {
    clear: left;
}

.total_searchlisting .result-block .project-block .project-info .prop-address {
    padding-right: 5px;
    margin-right: 5px !important;
    border-right: 1px solid #ffffff;
    margin-bottom: 7px;
}

.total_searchlisting .result-block .project-block .project-info .prop-address,
.total_searchlisting .result-block .project-block .project-info .prop-no {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    float: left;
    margin-bottom: 10px;
}

.search_propform {
    position: relative;
    margin-top: 9px;
}


/*.search_propform::after{
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    right: 25px;
    top: 12px;
    color: #b2b2b2;
}*/

.top_search {
    text-align: center;
}

.top_search .form-control {
    border-color: #cececf;
border: none;
    font-size: 13px;
background: #fff;
    color: #b2b2b2;
}

.top_search .form-control::placeholder {
    border-color: #cececf;
border: none;
    font-size: 13px;
background: #fff;
    color: #b2b2b2;
}

.middle_searchform {
    display: inline-block;
    float: left;
max-width: 100%;
  width: 56% !important;
}

.middle_searchform .open>.dropdown-menu {
    display: block !important;
}

.middle_searchform .dropdown-toggle,
.advance_search {
    font: 400 15px/59px Roboto, Arial;
    color: #ffffff;
    background: none;
    border: none;
    margin-top: 0;
    padding: 0 20px;
}

.advance_search {
    background: #000;
    color: #ffffff;
}

.middle_searchform .dropdown-menu,
.topsearch_collapse {
    top: 59px;
    background-color: #fafafa;
    position: absolute;
    margin-left: 1px;
    display: none;
    box-shadow: 0px 3px 8px 0 #c0bcb5;
    padding-left: 12px;
    padding-right: 12px;
    border: none;
    border-radius: 0;
    padding: 15px;
    border: 1px solid #a3a09a;
    border-top: none;
    margin: 0;
    min-width: 395px;
}

.middle_searchform .dropdown::before {
    content: '';
    width: 1px;
    height: 22px;
    background: #e1e1e1;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
}


.custom_radio {
    position: relative;
    overflow: hidden;
}

.custom_radio input[type="radio"] {
    position: absolute;
    left: -99px;
}

.custom_radio input[type="radio"]+label {
    font: 400 15px/22px Roboto, Arial;
    color: #20272b;
    padding-left: 22px;
}

.custom_radio input[type="radio"]+label::before {
    content: "\f096";
    position: absolute;
    left: 0;
    top: 0;
    font-family: FontAwesome;
    color: #2d699e;
}

.custom_radio input[type="radio"]:checked+label::before {
    content: "\f14a";
}

.topsearch_collapse h4 {
    font: 500 18px/22px Roboto, Arial;
    color: #20272b;
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 7px;
    margin-top: 0;
}

.topsearch_collapse ul li a {
    font: 300 15px/26px Roboto, Arial;
    color: #20272b;
    display: inline-block;
}

.topsearch_collapse ul li a:hover {
    color: #398bd4;
    text-decoration: none;
}

.feature_listpanel ul li {
    float: left;
    width: 50%;
}

.topsearch_collapse ul {
    padding-left: 0;
    list-style-type: none;
}

.advancesearch_panel {
    position: relative;
}

.topsearch_collapse h3 {
    font: 300 20px/22px Roboto, Arial;
    color: #20272b;
    margin-top: 0;
    margin-bottom: 15px;
}

#advance_collapse {
    min-width: 695px;
    text-align: left;
    padding: 15px 25px;
    right: 0;
z-index: 2;
}

footer.search_prop.site-footer {
    margin: 0 -15px;
}

footer.search_prop.site-footer .logo-chain li {
    margin: 0 10px;
}

footer.search_prop.site-footer .footer-middle {
    padding: 20px 0;
    border-top: 1px solid #e4e4e4;
}

.button_searpanel .btn-success {
    background: none;
    font: 700 15px/22px Roboto, Arial;
    color: #000;
}

.button_searpanel .btn-success.btn-custom {
    color: #ffffff;
border: none;
}

.button_searpanel .btn-success:hover,
.button_searpanel .btn-success:active,
.button_searpanel .btn-success:focus {
    color: #e1e1e1;
}

.button_searpanel.pull-right {
    padding-right: 15px;
    margin-top: 12px;
    overflow-x: hidden;
width: 15% !important;
    overflow-x: hidden;
}

.result-blocks .result-block {
    height: 208px;
    margin-bottom: 10px;
}

.result-blocks .col-sm-6 {
    padding: 0 5px;
}

.result-blocks .row {
    margin: 0 -10px;
}

.modal {
    z-index: 9999999;
}

.map_search span.msgtoshow {
      display: block;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    position: absolute;
    bottom: 0;
    padding: 3px;
    font-size: 12px;
    text-shadow: none;
}

.middle_searchform .rating li span,
.rating li span.bath-label {
    position: relative;
}

.middle_searchform .rating li span cite.blockedelm,
.rating li span.bath-label cite.blockedelm {
    position: absolute;
    right: 5px;
    top: 0;
    line-height: 18px;
    font-size: 10px;
    font-weight: 700;
}

.result-block .project-block .project-info .prop-title {
    text-align: left;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 65px;
}

.ui-menu.ui-autocomplete {
    z-index: 9999999;
}

.ui-menu.ui-autocomplete .ui-menu-item {
    font-size: 13px;
    line-height: 22px;
    border-top: 1px dotted #ccc;
}

.ui-menu.ui-autocomplete .ui-menu-item:first-child {
    border-top: none;
}

.m200 .dropdown-toggle {
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.m200 .dropdown-toggle .caret {
    position: absolute;
    right: 10px;
    top: 24px;
}

.mw165 {
    min-width: 165px;
    text-align: left;
}

.mw165 .caret {
    position: absolute;
    right: 15px;
    top: 27px;
}

.left-icon i {
    margin-right: 10px;
}

.details-cont .prop-action .btn {
    font-size: 13px;
}

header .header-bottom .navbar-header {
    width: 100%;
}

#loading-bar .bar {
    z-index: 99999999;
}

.search-loader {
    left: -15px;
    right: -15px;
}

.middle_searchform .dropdown.mw165::before {
    left: -1px;
}

.search-top {
    margin: 0 10px;
}

.search-result-listing .result-heading {
    margin-bottom: 0;
}

.search-top {
    padding-bottom: 10px;
}

.site-header .header-social {
    margin: 12px 0 0 10px;
    clear: none;
}


/*.........added on 27thoct.......*/
/*.........added on 27thoct.......*/
.dev-block.customdev_block .dev-project-thumb {
    height: 160px;
}
.dev-blocks .custom_class .dev-block.customdev_block {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0 8px 6px -6px rgba(32, 39, 43, 0.42);
}
.dev-blocks .custom_class .dev-block.customdev_block .dev-project-details .dev-info li a {
    color: #797979;
    font-weight: 700;
}
.dev-blocks .custom_class .dev-block.customdev_block .dev-project-details .dev-info li {
    padding-left: 0;
}
.dev-blocks .custom_class .dev-block.customdev_block .dev-project-details .dev-info li:before {
    display: none;
}
.dev-blocks .custom_class .dev-block.customdev_block .dev-project-details h4 a{
    margin-bottom: 15px;
    color: #2f85d2;
    font-weight: 700;
    font-size: 14px;
}

/* BLOG SECTION START 03-05-2018*/
.content-area-blog
{
	padding:20px;
}
.total-blog
{
    position: relative;
    background: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
    float: left;
    width: 100%;
}
.blog_img {
    position: static;
    left: 20px;
    width: 260px;
    padding: 10px;
    background: #fff;
    float: left;
    width: 24%;
}
.blog_img img {
    width: 100%;
    height: auto;
}
.posted p {
    float: left;
    margin-right: 5px;
    font-weight: 500;
    color: #545454;
}
.blog-content img
{
    float: left;
    margin: 0 20px 10px 0;
    object-fit: contain;
    width: 134px;
    height: 100px;
}
.line-below
{
	/*border-bottom: 1px solid #9a9292;
	padding-bottom: 10px;*/
} 
.blog-content {
    font: 300 14px/18px 'Roboto', sans-serif;
    width: 73%;
    float: right;
} 
.blog-content h2 {
    margin-top: 0;
    font-size: 22px;
} 	
/* BLOG SECTION END 03-05-2018*/.login-tab.nav-tabs>li a {
    padding: 12px 45px;
}

ul.nav.nav-tabs.login-tab {
    margin-bottom: 20px;
    max-width: 700px;
    margin: auto;
    border-bottom: none;
}
.login-tab.nav-tabs>li {
    float: none;
    display: inline-block;
}
.nav-tabs.login-tab>li.active>a, .nav-tabs.login-tab>li.active>a:focus, .nav-tabs.login-tab>li.active>a:hover {
   background-color: #f7f7f7;
}

.map_search span.msgtoshow {
    width: 90%;
}
.search-remove-btn {
    cursor: pointer;
    font-size: 11px;
    padding: 10px 11px;
    cursor:pointer;
}
.custom-select:after {
    display:none;
}
.chosen-container:after {
    width: 15px;
    height: 8px;
    background: url(../images/select-arrow.png) no-repeat;
    background-size: 15px 8px;
    position: absolute;
    right: 15px;
    top: 18px;
    z-index: 1;
    content: "";
    cursor: pointer;
}
/* Related Property */
.swiper-button-next.swiper-button-white.related-property,
.swiper-button-prev.swiper-button-white.related-property {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}
.swiper-button-next.swiper-button-white.related-property {
	
	left: auto;
    right: 0;
}
.swiper-button-prev.swiper-button-white.related-property {
    left: 0;
    margin-left: 0;
}
.custom-image-section .project-slider .slider-single.related-property {
	height: 160px;
}
.custom-image-section .project-block .project-thumb {
	left: -47px;
    right: -47px;
    top: -45px;
    bottom: -35px;
}
.custom-image-section .project-block .project-info .prop-tags{
	margin-top: 5px;
}
.custom-image-section .project-block .project-info {
	padding: 10px;
}

/** Blog Details And Listing */
.lefted-ul.blog-social li img {
    max-width: 23px;
    height: auto;
    margin: 0px;
}
.lefted-ul.blog-social li img {
    max-width:25px;
}
.blog_img {
    position: absolute;
    left: 20px;
    width: 260px;
    padding: 10px;
    background: #fff;
    max-height: 156px;
}
.blog_img img {
    width: 100%;
    height: 135px;
    object-fit: cover;
}
/* Related Property */
.swiper-button-next.swiper-button-white.related-property,
.swiper-button-prev.swiper-button-white.related-property {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}
.swiper-button-next.swiper-button-white.related-property {
	
	left: auto;
    right: 0;
}
.swiper-button-prev.swiper-button-white.related-property {
    left: 0;
    margin-left: 0;
}
.custom-image-section .project-slider .slider-single.related-property {
	height: 160px;
}
.custom-image-section .project-block .project-thumb {
	left: -47px;
    right: -47px;
    top: -45px;
    bottom: -35px;
}
.custom-image-section .project-block .project-info .prop-tags{
	margin-top: 5px;
}
.custom-image-section .project-block .project-info {
	padding: 10px;
}

/** Blog Details And Listing */
.lefted-ul.blog-social li img {
    max-width: 23px;
    height: auto;
    margin: 0px;
}
.lefted-ul.blog-social li img {
    max-width:25px;
}
.blog_img {
    position: absolute;
    left: 20px;
    width: 260px;
    padding: 10px;
    background: #fff;
    max-height: 156px;
}
.blog_img img {
    width: 100%;
    height: 135px;
    object-fit: cover;
}
/* Related Property */
.swiper-button-next.swiper-button-white.related-property,
.swiper-button-prev.swiper-button-white.related-property {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}
.swiper-button-next.swiper-button-white.related-property {
	
	left: auto;
    right: 0;
}
.swiper-button-prev.swiper-button-white.related-property {
    left: 0;
    margin-left: 0;
}
.custom-image-section .project-slider .slider-single.related-property {
	height: 160px;
}
.custom-image-section .project-block .project-thumb {
	left: -47px;
    right: -47px;
    top: -45px;
    bottom: -35px;
}
.custom-image-section .project-block .project-info .prop-tags{
	margin-top: 5px;
}
.custom-image-section .project-block .project-info {
	padding: 10px;
}

/** Blog Details And Listing */
.lefted-ul.blog-social li img {
    max-width: 23px;
    height: auto;
    margin: 0px;
}
.lefted-ul.blog-social li img {
    max-width:25px;
}
.blog_img {
    position: absolute;
    left: 20px;
    width: 260px;
    padding: 10px;
    background: #fff;
    max-height: 156px;
}
.blog_img img {
    width: 100%;
    height: 135px;
    object-fit: cover;
}
/**
/**
/**
/**
* Copy url
*/
.p-0 {
    padding: 10px 5px !important;
    font-size: 12px !important;
    background: none !important;
    font-weight: 700 !important;
}
/* Size change add */
.middle_searchform .dropdown-toggle,.advance_search {
	 font: 400 12px/59px Roboto,Arial;
}
.detail-bottom-sec.description { 
    padding: 30px 0; 
}
.detail-bottom-sec.description .stellar-logo {
     float: left; padding-right: 50px; 
}
.detail-bottom-sec.description .stellar-logo img {
     max-width: 120px; height: auto; 
}






/*26-02-2020*/
.property-sidebar .nav-tabs > li.thead-col-3 { width: 33.333333%; }
table.project-tbl {}
table.project-tbl table.project-inner-tbl { width:100%; margin-bottom:0 }
.tr-bgcolor { background-color: #373737; color: #fff; }
table.project-tbl table.project-inner-tbl .specialstyleclass { font-size: 24px; font-weight: 400; text-align: left; }
table.project-tbl table.project-inner-tbl .tr-bgcolor td { color: #fff; }
table.project-tbl table.project-inner-tbl tbody tr td { color: #000; }
.newclass.download-tap span.spanclass {max-width: 100%; width: 100%;}
.detail-mid-sec.document.custom_newclass .newclass.download-tap span.spanclass:nth-child(2) { float: none; }
.custom_newclass .detail-bottom-sec { padding-top: 50px; }

/* ============ Rimpa register-modal ============ */


.register-modal {

}
.register-modal .modal-lg {
  max-width: 95%;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.register-modal .modal-content{
  border-radius: 0;
  border: none;
}
.register-modal-row {
 display: flex;
}
.register-modal-row .image-col {
  width: 50%;
}
.register-modal-row .image-col .image-holder{
  position: relative;
  width: 100%;
  height: 100%;
}
.register-modal-row .image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
}

.register-modal-row .register-content-col {
  width: 50%;
  padding: 50px;
}
.register-modal-row .register-content-heading-block{
  margin-bottom: 25px;
}
.register-modal-row .register-content-heading-block .headingText {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  color: #153254;
  margin: 0 0 10px;
}

.register-modal-row .register-content-heading-block .sub-headingText {
  font-size: 17px;
  line-height: 1.3;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  color: #153254;
  margin: 0;
}


.form-btn-holder .btn-comn-regal-blue{
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  background-color: #153254;
  padding: 13px 30px;
}
.register-modal-infoText {
  margin: 30px 0 0 ;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  display: inline-block;
}
.register-modal-infoText a{
  font-weight: 900;
  color: #153254;
  display: inline-block;
}
.register-modal-infoText a:hover{
  color: #000000;
}


.other-login {
}
.other-login .orDevider {
  position: relative;
  margin: 25px 0;
}
.other-login .orDevider:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
}
.other-login .orDevider .orText {
  background-color: #fff;
  color: #979797;
  font-size: 12px;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
}
.other-login .other-btn-holder .other-btn {
  width: 100%;
  height: 45px;
  border-radius: 0;
  border: solid 1px #d3d3d3;
  background-color: #fff;
  padding: 5px 15px;
  text-align: left;
  line-height: 33px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: #000;
  text-align: center;
  text-transform: none;
}
.other-login .other-btn-holder .other-btn + .other-btn{
  margin-top: 10px;
}
.other-login .other-btn-holder .other-btn img {
  width: 26px;
  margin-right: 5px;
  height: 22px;
  object-fit: contain;
}
.other-login .other-btn-holder .other-btn:hover {
  box-shadow: 0 4px 14px 0 rgba(213, 213, 213, 0.7);
}/* ------- projectDetail-imgVideo-slider --------- */
.projectDetail-imgVideo-slider {
    position: relative;
}

.projectDetail-imgVideo-slider .swiper-slide {
    background-color: transparent;
}

.projectDetail-imgVideo-slider .img-slide {
    width: 100%;
    padding: 62.5% 0 0 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.projectDetail-imgVideo-slider .img-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projectDetail-imgVideo-slider .video-slide {
    width: 100%;
    padding: 62.5% 0 0 0;
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.projectDetail-imgVideo-slider .video-slide iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.projectDetail-imgVideo-slider .video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projectDetail-imgVideo-slider .swiper-pagination {
    top: 10px;
    right: 10px;
    width: auto;
    left: auto;
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 5px 10px;
    border-radius: 4px;
}

.projectDetail-imgVideo-slider .pagination-text {
    font-size: 12px;
    line-height: 1.14;
    color: #ffffff;
}


.projectDetail-imgVideo-slider .swiper-button-next,
.projectDetail-imgVideo-slider .swiper-button-prev {
    width: 48px;
    height: 38px;
    border: none;
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    background-image: none;
    opacity: 1 !important;
    box-shadow: none;
    transform: translateY(0);
}

.projectDetail-imgVideo-slider .swiper-button-next:after,
.projectDetail-imgVideo-slider .swiper-button-prev:after {
    font-size: 20px;
}

.projectDetail-imgVideo-slider .swiper-button-next {
    border-radius: 3px 0 0 3px;
    right: 0;
}

.projectDetail-imgVideo-slider .swiper-button-prev {
    border-radius: 0 3px 3px 0;
    left: 0;
}

.projectDetail-imgVideo-slider .swiper-button-next.swiper-button-disabled,
.projectDetail-imgVideo-slider .swiper-button-prev.swiper-button-disabled {
    border: none;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.35);
}

/* ------- end projectDetail-imgVideo-slider --------- */

/* ------- projectDetail-fileFolder-modal ------- */

.projectDetail-fileFolder-modal {
    padding-right: 0 !important;
    background-color: #fff;
}

.projectDetail-fileFolder-modal .swiper-button-prev:after,
.projectDetail-fileFolder-modal .swiper-container-rtl .swiper-button-next:after,
.projectDetail-fileFolder-modal .swiper-button-next:after,
.projectDetail-fileFolder-modal .swiper-container-rtl .swiper-button-prev:after {
    font-size: 20px;
    color: #8a92af;
}

.projectDetail-fileFolder-modal .swiper-button-next,
.projectDetail-fileFolder-modal .swiper-container-rtl .swiper-button-prev {
    right: 5px;
}

.projectDetail-fileFolder-modal .swiper-button-prev,
.projectDetail-fileFolder-modal .swiper-container-rtl .swiper-button-next {
    left: 5px;
}

.projectDetail-fileFolder-modal .modal-dialog {
    width: 100%;
    margin: 0;
    height: 100%;
}

.projectDetail-fileFolder-modal .modal-content {
    box-shadow: none;
    border: none;
    border-radius: 0;
    height: 100%;
}

.projectDetail-fileFolder-modal .modal-header {
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}

.projectDetail-fileFolder-modal .modal-body {
    min-height: calc(100% - 92px);
    padding: 0;
    overflow-y: auto;
}

.projectDetail-fileFolder-slider {
    position: relative;
    background-color: #fafbff;
    height: 90px;
    padding-left: 20px;
    padding-right: 20px;
}



.projectDetail-fileFolder-slider .swiper-slide {
    background-color: transparent;
}

.projectDetail-fileFolder-slider .swiper-container {
    padding-bottom: 7px;
}

.projectDetail-fileFolder-slider .folderImgBox-holder {
    padding: 12px 10px;
    width: 100%;
}


.projectDetail-fileFolder-slider .folderImgBox-holder.activeBox {
    background-color: #e3ecfb;
    box-shadow: inset 0 -2px 0 0 #264d90;
    position: relative;
}

.projectDetail-fileFolder-slider .folderImgBox-holder.activeBox:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #264d90 transparent transparent transparent;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -6px;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .folder-img-holder {
    width: 65px;
    height: 65px;
    position: relative;
    margin: 0 auto;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .folder-img-holder .folderImg {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .playBtn-holder {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .playBtn-holder img {
    width: 100%;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .folder-box {
    width: 100%;
    margin: auto;
    text-align: center;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .folder-box .folder-icon-box {
    width: 50px;
    height: 47px;
    position: relative;
    margin: 0 auto 5px;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .folder-box .folder-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .folder-box .folder-icon-box .number-text {
    font-size: 12px;
    line-height: 1.4;
    color: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 17px;
    opacity: 0.7;
}

.projectDetail-fileFolder-slider .folderImgBox-holder .folder-box .folder-name-text {
    font-size: 12px;
    line-height: 1.2;
    color: #242424;
    margin: 0;
}


/* ------- fileFolder-detail-slider --------- */
.fileFolder-detail-slider {
    position: relative;
}

.fileFolder-detail-slider .swiper-slide {
    background-color: transparent;
}

.fileFolder-detail-slider .img-slide {
    width: 100%;
    padding: 62.5% 0 0 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.fileFolder-detail-slider .img-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fileFolder-detail-slider .video-slide {
    width: 100%;
    padding: 62.5% 0 0 0;
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.fileFolder-detail-slider .video-slide iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.fileFolder-detail-slider .video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fileFolder-detail-slider .swiper-pagination {
    top: 10px;
    right: 10px;
    width: auto;
    left: auto;
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 5px 10px;
    border-radius: 4px;
}

.fileFolder-detail-slider .pagination-text {
    font-size: 12px;
    line-height: 1.14;
    color: #ffffff;
}


.fileFolder-detail-slider .swiper-button-next,
.fileFolder-detail-slider .swiper-button-prev {
    width: 48px;
    height: 38px;
    border: none;
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    background-image: none;
    opacity: 1 !important;
    box-shadow: none;
    transform: translateY(0);
}

.fileFolder-detail-slider .swiper-button-next:after,
.fileFolder-detail-slider .swiper-button-prev:after {
    font-size: 20px;
}

.fileFolder-detail-slider .swiper-button-next {
    border-radius: 3px 0 0 3px;
    right: 0;
}

.fileFolder-detail-slider .swiper-button-prev {
    border-radius: 0 3px 3px 0;
    left: 0;
}

.fileFolder-detail-slider .swiper-button-next.swiper-button-disabled,
.fileFolder-detail-slider .swiper-button-prev.swiper-button-disabled {
    border: none;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.35);
}

/* -------- end fileFolder-detail-slider --------- */
.fileFolder-detail-container {
    padding: 50px;
    position: relative;
}

.fileFolder-detail-container .dsc-heading-block .headingText {
    color: #242424;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    margin: 0;
}

.fileFolder-detail-container .dsc-content p {
    color: #000000;
    font-size: 14px;
    line-height: 1.5;
}

.fileFolder-detail-container .close {
    position: absolute;
    right: 20px;
    top: 20px;
}
.search-result-listing .result-heading .result-headingText-holder {
                    float: left;
                    display: flex;
                    align-items: center;
                }
                 
                @media screen and (max-width: 767px) {
                    .search-result-listing .result-heading .result-headingText-holder {
                        float: none;
                        text-align: center;
                        display: block;
                    }
                }
                 
                .search-result-listing .result-heading .result-headingText-holder .headingText1 {
                    font-weight: bold;
                    font-size: 25px;
                    letter-spacing: 1px;
                    margin: 0 10px 0 0;
                }
                 
                .search-result-listing .result-heading .result-headingText-holder .headingText2 {
                    font-weight: 400;
                    font-size: 19px;
                    letter-spacing: 1px;
                    margin: 0;
                    position: relative;
                    top: 2px;
                }.propertylist-criteria-infobox .lead {
    font-weight: 400;
}

/*** theme 7 ***/
body.overflow {
    overflow: hidden;
}

.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 99;
    display: none;
}

.menu-open-btn {
    display: none;
}

.menu-close-btn {
    display: none;
}

.section-gap {
    padding-top: 80px;
    padding-bottom: 80px;
}

.btn.new-btn {
    height: 45px;
    padding: 2px 19px 0px;
    line-height: 0.9;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    min-width: 150px;
    line-height: 43px;
}

.btn.new-btn.green-btn {
    background: #28af23;
    color: #fff;
}

.btn.new-btn.green-btn:hover {
    background: #1c9517;
    /* background: #591067; */
    color: #fff;
}

.section-head {
    margin-bottom: 40px;
}

.section-head {
    margin-bottom: 40px;
}

.section-head .section-title {
    padding-bottom: 30px;
    position: relative;
    z-index: 0;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.section-head .section-title:after {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: #28af23;
}

.section-head.text-center .section-title:after {
    right: 0;
    margin: auto;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 62px 0;
}

.main-header .container {
    width: 1200px;
    max-width: 100%;
}

.main-header .header-inner {
    position: relative;
}

.main-header .header-logo {
    max-width: 119px;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
}

.main-header .header-logo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.main-header .main-menu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-header .main-menu li {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.main-header .main-menu li:nth-child(5) {
    margin-left: 167px;
}

.main-header .main-menu li:not(:last-child) {
    margin-right: 30px;
}

.main-header .main-menu ul>li>a {
    display: block;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.main-header .main-menu>ul>li>a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    left: auto;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.main-header .main-menu>ul>li.active>a:after,
.main-header .main-menu>ul>li>a:hover:after {
    right: auto;
    left: 0;
    width: 100%;
}

.main-header .main-menu>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0px 0;
    margin: 0;
    z-index: -999;
    background: #ffffff;
    width: 180px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
}

.main-header .main-menu>ul>li>ul:before {
    content: '';
    bottom: 100%;
    height: 7px;
    left: 0;
    right: 0;
    background: transparent;
    position: absolute;
    z-index: 0;
}

.main-header .main-menu>ul>li:hover>ul {
    opacity: 1;
    z-index: 1;
    visibility: visible;
    padding: 8px 0;
}

.main-header .main-menu>ul>li>ul>li {
    margin: 0 0 !important;
    text-transform: capitalize;
}

.main-header .main-menu>ul>li>ul>li>a {
    color: #000;
    padding: 7px 15px;
}

.main-header .main-menu>ul>li>ul>li>a:hover,
.main-header .main-menu>ul>li>ul>li.active>a {
    color: #28af23;
}

.main-header .subToggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 22px;
    width: 22px;
    cursor: pointer;
}

.main-header .subToggle:after {
    content: '';
    width: 12px;
    height: 7px;
    top: 0px;
    bottom: 0;
    left: 0;
    right: -8px;
    background: url('../images/menu-toggle.png') no-repeat center center;
    margin: auto;
    position: absolute;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.main-header .subToggle.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-header .header-right {
    border-left: 1px solid #fff;
    padding-left: 30px;
    margin-left: 30px;
}

.is-contact-page .main-header {
    padding: 46px 0;
}

.language-box {
    position: relative;
    z-index: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
}

.language-box ul {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    list-style: none;
    padding: 4px 0 0 0;
    margin: 0;
    display: none;
    background-color: rgba(245, 245, 245, 0.7);
    padding: 5px;
    border-radius: 0 0 8px 8px;
}

.language-box li:not(:last-child) {
    margin-bottom: 4px;
}

.language-box img {
    width: 20px;
    height: auto;
    height: 13px;
}

.language-box img,
.language-box span {
    display: inline-block;
    vertical-align: middle;
    color: #6c757d;
}

.language-box .select-language span {
    color: #fff;
}

.language-box .select-language {
    background: url('../images/drop-down-l.png') no-repeat 100% center;
    padding-right: 15px;
    min-width: 66px;
}

.header-right .contact-box {
    margin-left: 20px;
}

.header-right .contact-box a {
    display: inline-block;
    vertical-align: middle;
}

.header-right .contact-box a:not(:last-child) {
    margin-right: 16px;
}


.home-banner img {
    display: block;
    max-width: 100%;
}

.home-banner .banner-list {
    position: relative;
    z-index: 0;
}

.home-banner .banner-list figure {
    width: 100%;
    height: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 48.65% 0 0 0;
    min-height: 100vh;
    position: relative;
    z-index: 0;
}

.home-banner .banner-list figure img {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: inherit;
}

.home-banner .banner-video {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-banner .banner-video video {
    width: 100%;
    /* height: 100%; */
    height: 100vh;
    object-position: center center;
    object-fit: cover;
    margin: 0 auto;
}

.home-banner .banner-form {
    z-index: 3;
    width: 771px;
    max-width: 100%;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.home-banner .banner-form-inner {
    width: 100%;
    padding: 20px 20px 20px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.4);
}

.home-banner .form-group {
    margin-bottom: 0;
    width: calc(100% - 150px);
    padding-right: 20px;
}

.home-banner .form-control {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    height: 45px;
    padding: 0 20px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.home-banner ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #777777;
}

.home-banner ::-moz-placeholder {
    /* Firefox 19+ */
    color: #777777;
}

.home-banner :-ms-input-placeholder {
    /* IE 10+ */
    color: #777777;
}

.home-banner :-moz-placeholder {
    /* Firefox 18- */
    color: #777777;
}

.home-banner .fromBox .btn.new-btn {
    width: 150px;
}


.featured-property-section {
    background: #f6f6f6;
    overflow: hidden;
}

.featured-property-section .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.featured-property-section .list-wrapper .holder {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.featured-property-section .list-item {
    width: 314px;
    /* padding: 0 9px; */
}

.featured-property-section .background-box {
    width: 100%;
    height: 0;
    padding: 139.18% 0 0 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #ededed;
}

.featured-property-section .background-box:after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #000;
    opacity: 0;
}

.featured-property-section .list-wrapper .holder:hover .background-box:after {
    opacity: 0.3;
}

.featured-property-section .list-content {
    width: 100%;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 20px 20px 20px;
    color: #666;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.featured-property-section .list-wrapper .holder:hover .list-content {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.featured-property-section h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 500;
    color: #000;
}

.featured-property-section h3 a {
    color: inherit;
}

.featured-property-section h3 a:hover {
    color: #28af23;
}

.featured-property-section .price-text {
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.featured-property-section .price-text strong {
    font-weight: 700;
    padding-right: 12px;
    margin-right: 13px;
    position: relative;
}

.featured-property-section .price-text strong:after {
    content: '';
    width: 1px;
    position: absolute;
    top: 2px;
    bottom: 2px;
    right: -1px;
    background: #666;
}

.featured-property-section .info-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
}

.featured-property-section img {
    max-width: 100%;
    display: block;
}

.featured-property-section .swiper-button-prev,
.featured-property-section .swiper-button-next {
    width: 55px;
    height: 55px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.featured-property-section .swiper-button-prev:hover,
.featured-property-section .swiper-button-next:hover {
    color: #fff;
    background-color: #28af23;
    ;
}

.featured-property-section .swiper-button-prev:after,
.featured-property-section .swiper-button-next:after {
    font-size: 16px;
    font-weight: 700;
}

.featured-property-section .swiper-button-prev {
    left: -26px;
}

.featured-property-section .swiper-button-next {
    right: -26px;
}


.featured-neighborhoods-section {
    background: #fff;
}

.featured-neighborhoods-section .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.featured-tab-section .tab-nav {
    margin-bottom: 42px;
}

.featured-tab-section .tab-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 0 16px;
    margin: 0;
    list-style: none;
}

.featured-tab-section .tab-nav ul li {
    /* -webkit-transition: 0.3s;
  transition: 0.3s; */
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    color: #000;
}

.featured-tab-section .tab-nav ul li a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.featured-tab-section .tab-nav ul li a:after {
    position: absolute;
    content: '';
    z-index: 0;
    background: #28af23;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -16px;
    pointer-events: none;
    opacity: 0;
}

.featured-tab-section .tab-nav ul li.tabActive a:after {
    opacity: 1;
}

.featured-tab-section .tab-nav ul li.tabActive {
    font-weight: 500;
    /* color: #000; */
}

.featured-tab-section .tab-nav ul li:not(:last-child):after {
    content: '|';
    font-weight: 300 !important;
    color: #000 !important;
    padding-left: 20px;
    padding-right: 20px;
    pointer-events: none;
}

.featured-tab-section .left-panel {
    width: calc(100% - 339px);
    padding-right: 11px;
}

.featured-tab-section img {
    max-width: 100%;
    display: block;
}

.featured-tab-section .left-panel figure {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 0;
    /* padding: 61.5% 0 0 0; */
    margin-bottom: 20px;
    height: 575px;
}

.featured-tab-section .left-panel figure img {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: inherit;
}

.featured-tab-section .right-panel {
    width: 339px;
}

.featured-tab-section .right-panel .small-list {
    padding: 10px 10px;
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.featured-tab-section .right-panel .small-list.current {
    background: #f2f2f2;
}

.featured-tab-section .right-panel figure {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 0;
    padding: 65.31% 0 0 0;
}

.featured-tab-section .right-panel figure img {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: inherit;
}

.featured-tab-section .right-panel .imageBox {
    width: 147px;
}

.featured-tab-section .right-panel .text-box {
    width: calc(100% - 147px);
    padding-left: 20px;
}

.featured-tab-section .right-panel .text-box p {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
    margin: 0;
}

.featured-tab-section .main-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 5px 0;
    padding: 0 0 0 50px;
    font-size: 15px;
    line-height: 26px;
    color: #666666;
    font-weight: 500;
    position: relative;
}

.featured-tab-section .main-content ul:after {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    height: 2px;
    width: 35px;
    background: #666666;
}

.featured-tab-section .main-content ul li {
    position: relative;
}

.featured-tab-section .main-content ul li:not(:last-child):after {
    content: '|';
    padding-left: 9px;
    padding-right: 9px;
    pointer-events: none;
}

.featured-tab-section .main-content .heading-box {
    width: calc(100% - 150px);
    padding-right: 20px;
}

.featured-tab-section .main-content h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.33;
    color: #000;
}

.featured-tab-section .scrollbox {
    height: 575px;
}

.featured-tab-section .mCSB_inside>.mCSB_container {
    margin-right: 16px;
}

.featured-tab-section .mCSB_scrollTools .mCSB_draggerContainer {
    left: auto;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgb(0 0 0) !important;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #d7d7d7;
    width: 3px;
}

.featured-neighborhoods-section .section-head {
    margin-bottom: 30px;
}

.our-development-section {
    background: #f6f6f6;
    overflow: hidden;
}

.our-development-section .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.our-development-section .section-head {
    margin-bottom: 30px;
}

.our-development-tab-section .tab-nav2 {
    margin-bottom: 42px;
}

.our-development-tab-section .tab-nav2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 0 16px;
    margin: 0;
    list-style: none;
}

.our-development-tab-section .tab-nav2 ul li {
    /* -webkit-transition: 0.3s;
  transition: 0.3s; */
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    color: #000;
}

.our-development-tab-section .tab-nav2 ul li a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.our-development-tab-section .tab-nav2 ul li a:after {
    position: absolute;
    content: '';
    z-index: 0;
    background: #28af23;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -16px;
    pointer-events: none;
    opacity: 0;
}

.our-development-tab-section .tab-nav2 ul li.tabActive a:after {
    opacity: 1;
}

.our-development-tab-section .tab-nav2 ul li.tabActive {
    font-weight: 500;
    /* color: #000; */
}

.our-development-tab-section .tab-nav2 ul li:not(:last-child):after {
    content: '|';
    font-weight: 300 !important;
    color: #000 !important;
    padding-left: 20px;
    padding-right: 20px;
    pointer-events: none;
}

.our-development-section .list-item {
    width: 314px;
    /* padding: 0 9px; */
}


.our-development-section .background-box {
   width: 100%;
height: 0;
padding: 76.18% 0 0 0;
position: relative;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
  margin-top: 24px;
}

.our-development-section .background-box:after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #000;
    opacity: 0;
}

.our-development-section .list-wrapper .holder:hover .background-box:after {
    opacity: 0.3;
}


.our-development-section .list-content {
    width: 100%;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
 background: rgb(0, 0, 0);
background: linear-gradient(0deg, rgba(0, 0, 0,1) 0%, rgba(255,255,255,0) 100%); 
    padding: 20px 20px;
    color: #ffffff;
    text-align: left;
    text-transform: capitalize;
}

.our-development-section .list-wrapper .holder:hover .list-content {


        padding: 20px 20px 20px;

      transition: all .5s ease-in-out;
}
.our-development-section h3 {
font-weight: 400;
    color: #ffffff;
 font-size: 20px;
  font-family: var(--default-font);

}

.our-development-section p {

}

.our-development-section h3 a {
    color: inherit;
}

.our-development-section h3 a:hover {
    color: #ffffff;
}

.our-development-section .list-wrapper .holder {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.our-development-section .button-holder {
    margin-top: 50px;
}

.development-navigation .swiper-button-prev,
.development-navigation .swiper-button-next {
    width: 55px;
    height: 55px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #ffffff;
    margin: auto;
    top: 0;
    bottom: 0;
    color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.development-navigation .swiper-button-prev:hover,
.development-navigation .swiper-button-next:hover {
    color: #ffffff;
    background-color: #000;
    ;
}

.development-navigation .swiper-button-prev:after,
.development-navigation .swiper-button-next:after {
    font-size: 16px;
    font-weight: 700;
}

.development-navigation .swiper-button-prev {
    left: -26px;
}

.development-navigation .swiper-button-next {
    right: -26px;
}


.real-estate-news-section {
    overflow: hidden;
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
}

.real-estate-news-section .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.real-estate-news-section p:last-child {
    margin-bottom: 0 !important;
}

.real-estate-news-section .section-head {
    margin-bottom: 58px;
}

.real-estate-news-section .container-fluid {
    position: relative;
    z-index: 2;
}

.real-estate-news-section::before {
    content: '';
    position: absolute;
  z-index: 0;
top: 0;
left: 0;
width: 99%;
height: 100%;
background: url('../images/sanders.jpg') no-repeat top;
  background-size: auto;
position: absolute;
background-size: cover;
}

.real-estate-news-section .date-box {
    font-size: 14px;
    line-height: 16px;
    padding-bottom: 20px;
    border-bottom: 2px solid #464646;
    margin-bottom: 23px;
}

.real-estate-news-section .date-box .news-date {
    display: block;
    color: #000;
}

.real-estate-news-section h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
font-family: var(--default-font);
    margin-bottom: 19px;
    color: #000;
}

.real-estate-news-section h3 a {
    color: inherit;
}

.real-estate-news-section h3 a:hover {
    color: #000;
}

.real-estate-news-section .list-item p {
    font-size: 14px;
    line-height: 1.71;
    color: #000;
}

.real-estate-news-section .list-item {
    /* padding: 0 26px; */
}

.newsSlide-navigation {
    padding-top: 50px;
}

.newsSlide-navigation .swiper-button-prev,
.newsSlide-navigation .swiper-button-next {
    width: 55px;
    height: 55px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #000;
    margin: 0 8px;
    color: #f3f3f3;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.newsSlide-navigation .swiper-button-prev:hover,
.newsSlide-navigation .swiper-button-next:hover {
   background: var(--accent-color);
    color:#ffffff;
    ;
}

.newsSlide-navigation .swiper-button-prev:after,
.newsSlide-navigation .swiper-button-next:after {
    font-size: 16px;
    font-weight: 700;
}


.home-bottom-section {}

.home-bottom-section .container {
    width: 1130px;
    max-width: 100%;
}

.home-bottom-section .top-info {
    width: 1130px;
    max-width: 100%;
}

.home-bottom-section .profile-info {
    width: 450px;
    padding-right: 15px;
    border-right: 1px solid #979797;
}

.home-bottom-section .profile-info figure {
    width: 199px;
    height: 199px;
    position: relative;
    z-index: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.home-bottom-section .profile-info figure img {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: inherit;
    display: block;
}

.home-bottom-section .profile-info .user-text {
    width: calc(100% - 199px);
    padding-left: 20px;
}

.home-bottom-section .profile-info .info-title {
    display: block;
    font-size: 14px;
    margin-bottom: 11px;
    line-height: 16px;
    text-transform: uppercase;
}

.home-bottom-section .profile-info .info-name {
    display: block;
    font-size: 26px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
}

.home-bottom-section .info-right {
    width: calc(100% - 450px);
    padding-left: 55px;
    font-size: 16px;
    line-height: 1.63;
    color: #000;
    font-weight: 400;
}

.home-bottom-section .info-right a {
    color: inherit;
}

.home-bottom-section .info-right a:hover {
    color: #28af23;
}

.home-bottom-section .info-right .image-box img {
    display: block;
    max-width: 100%;
}

.home-bottom-section .info-right .image-box {
    width: 152px;
}

.home-bottom-section .info-right .contact-box {
    max-width: 186px;
}

.home-bottom-section .info-right .contact-box:nth-child(2) {
    max-width: inherit;
}

.home-bottom-section .info-right .info-row {
    position: relative;
    z-index: 0;
    padding-left: 26px;
    margin-bottom: 20px;
}

.home-bottom-section .info-right .info-row:last-child {
    margin-bottom: 0;
}

.home-bottom-section .info-right .info-row img {
    max-width: 16px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.home-bottom-section .info-right .info-row .title {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    color: #666;
    margin-bottom: 6px;
}

.home-bottom-section .info-right .info-row p {
    margin-bottom: 0;
    font-weight: 400;
}

.home-bottom-section .top-info {
    padding-bottom: 20px;
    border-bottom: 1px solid #979797;
}

.home-bottom-section .swiper-wrapper {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.home-bottom-section img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.home-bottom-section .bottom-info {
    padding-top: 78px;
}

.main-footer {
    padding: 80px 0 80px;
    background: #444444;
    color: #fff;
}

.main-footer .container {
    width: 1190px;
    max-width: 100%;
}

.main-footer .footerMenu {
    margin-bottom: 35px;
}

.main-footer .footerMenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.main-footer .footerMenu ul li:not(:last-child):after {
    content: '|';
    padding-left: 13px;
    padding-right: 13px;
}

.main-footer .footerMenu ul li {
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.main-footer .footerMenu ul li a {
    color: #fff;
}

.main-footer .footerMenu ul li.active a,
.main-footer .footerMenu ul li a:hover {
    color: #28af23;
}

.main-footer .footerLogo {
    width: 93px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.main-footer .footerLogo img {
    display: block;
    max-width: 100%;
}

.main-footer .footerContent p,
.main-footer .powerBy p,
.main-footer .copyRight p {
    margin-bottom: 0;
}

.main-footer .footerContent {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
}

.main-footer .powerBy,
.main-footer .copyRight {
    font-size: 14px;
    line-height: 26px;
}

.social-icons a, .social-icons img {
    height: 30px;
    background-color: #87bc43;
    color: #fff;
    width: 30px;
    line-height: 30px;
    display: block;
    border-radius: 50%;
}

.not-home .main-header {
    background-color: rgba(135, 188, 67, 0.9);
}
/* ========= rimpa 21-06-21 ======== */
.middle_searchform .dropdown .custom_radio input[type="radio"]+label::after {
    content: "";
    opacity: 0.8;
    border: solid 1.2px rgba(151, 151, 151, 0.49);
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
}
.middle_searchform .dropdown .custom_radio input[type="radio"]:checked+label::after{
    content: "";
    background: #2d699e;
    border: solid 1.2px #2d699e;
}
.middle_searchform .dropdown .custom_radio input[type="radio"]+label::before {
    content: "";
}
.middle_searchform .dropdown .custom_radio input[type="radio"]:checked+label::before {
    content: "";
    background-image: url(fonts/check-wht-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    width: 16px;
    height: 10px;
    top: 6px;
    left: 2px;
}
.middle_searchform .dropdown .custom_radio input[type="radio"]+label {
    padding-left: 28px;
    font: 600 12px/22px Roboto,Arial;
    color: #000000;
}
.middle_searchform .dropdown .btn-holder,.topsearch_collapse .btn-holder{
    display: flex;
    width: 100%;
    margin-top: 10px;
}
.middle_searchform .dropdown .btn-holder-row,.topsearch_collapse .btn-holder-row{
    margin-left: -5px;
    margin-right: -5px;
}
.topsearch_collapse .btn-box,.middle_searchform .dropdown .btn-box{
    padding-left: 5px;
    padding-right: 5px;
    width: 50%;
}
.our_listings_virtual_tour{
                    position: absolute;
                    left: 0;
                    bottom: auto;
                    font-size: 14px;
                    color: #fff !important;
                    text-decoration: none !important;
                    font-weight: 500;
                    text-align: center;
                    padding: 6px;
                    background: rgba(0,0,0,0.6);
                    transition: all ease-in-out 200ms;
                    top: 0;
                    z-index: 4;
                    display: inline-block;
                    opacity: 0;
                    right: auto;
                }
                
                .result-blocks .result-block:hover .our_listings_virtual_tour{
                    opacity: 1;
                }.topsearch_collapse .btn-box .btn,.middle_searchform .dropdown .btn-box .btn{
    width: 100%;
}
#advance_collapse {
    /* min-width: 695px; */
    text-align: left;
    padding: 15px 25px;
    right: 0;
}

.price-list-wrap{
  display: flex;
  align-items: flex-start;
}

.price-list-wrap .price-list-col .input-box-holder{
    flex: 1 1 0;
    margin-bottom: 10px;
}
.price-list-wrap .price-list-col .input-box-holder input{
  border-radius: 1px;
  border: solid 1px #d1d1d5;
  width: 100%;
  background-color: #fff;
  padding: 12px;
  color: #333;
  height: 40px;
}
.price-list-wrap .price-middle-gap{
  width: 40px;
  height: 2px;
  position: relative;
}
.price-list-wrap .price-middle-gap:after{
  content: '';
  background-color: #d1d1d5;
  width: 16px;
  height: 2px;
  left: 10px;
  top: 20px;
  position: absolute;
}
.price-show {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 14px;
}
.price-filter-options.disabled .price-show{
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.topsearch_collapse h4.titleText{
  border-bottom: none;
  padding-bottom: 0;
}
/* ========== end rimpa 28/04/21 ========== */



 .agent-icon {
    width: 85px;
  height: 85px;
  border: 4px solid #fff;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-left: auto;
  cursor: pointer;
  background-color: #fff;
  bottom: 19px;
  position: fixed;
  z-index: 10;
  right: 15px;
  border-radius: 50% 50% 0;
    }

    .agent-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .agent-popup {
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 280px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
      padding: 15px;
      z-index: 1051;
      display: none;
    }

    .agent-popup .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      color: #aaa;
      cursor: pointer;
    }

    .agent-photo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .agent-popup .btn {
      width:  45%;
      margin-top: 8px;
    }


    @media (max-width: 576px) {
      .agent-popup {
        right: 10px;
        bottom: 80px;
        padding: 12px;
      }

      .agent-icon {
        width: 50px;
        height: 50px;
      }

      .agent-photo {
        width: 50px;
        height: 50px;
      }
    }


 .option-card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            margin-bottom: 15px;
        }

        @media (min-width: 768px) {
            .option-card {
                margin-bottom: 0;
            }
        }

        .option-card img {
            width: 100%;
            height: auto;
            display: block;
            transition: opacity 0.3s ease-in-out; /* Add opacity transition for smoother effect */
        }

        .option-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .option-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            z-index: 10;
            transition: font-size 0.3s ease-in-out;
            text-decoration: none !important;
        }

        .option-card:hover .option-text {
            font-size: 1.5rem;
        }

        .option-card:hover .option-overlay {
            opacity: 1; /* Show overlay on hover */
        }

        @media (min-width: 768px) {
            .option-text {
                font-size: 1.5rem;
            }




            .option-card:hover .option-text {
                font-size: 2rem;
            }
        }

        .overlay-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 15; /* Ensure link is on top of the overlay and text */
        }




.bg-meet{

background-image: linear-gradient(to right, #000 0%, #000 24%, #fff 24%, #fff 67%, #000 67%, #000 100% );


}

.premium-intro {
  padding:5% 0;
background: #000 !important;
  color:#fff;
  position:relative;
  text-align:center;
}

.premium-intro::before
{
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.premium-intro .container {
  position:relative;
  z-index:3
}
.premium-intro h2 {
font-weight: 500;
  font-size: 71px;
  color: #fff;
  margin: 0;
}
.premium-intro h3 {
  font-weight:700;
  margin:0;
color:#fff;
  text-transform:uppercase
}
.premium-intro p {
  font-size:22px;
  color:#fff;
}
.premium-intro .btn {
  margin:5px
}
.premium-intro .img-overlay {
  opacity:.1
}

.w-separator {
  clear:both;
  overflow:hidden;
  line-height:0;
  height:1.5rem
}
.w-separator-h {
  display:inline-flex;
  align-items:center;
  height:inherit
}
.w-separator:not(.with_content) .w-separator-h:before {
  width:100vw
}
.w-separator-h:before,
.w-separator-h:after {
  content:'';
  position:absolute;
  top:50%;
  height:0;
  width:100vw;
  border-top-width:1px;
  border-top-style:solid
}
.w-separator-h:before {
  right:100%
}
.w-separator.with_content .w-separator-h:before {
  margin-right:0.6em
}
.w-separator-h:after {
  left:100%;
  margin-left:0.6em
}
.w-separator a,
.color_alternate .w-separator a {
  color:inherit
}
.w-separator-text {
  line-height:inherit;
  padding:0.3em 0!important;
  margin:0
}
.w-separator.has_font_size .w-separator-text {
  font-size:inherit
}
.w-separator-text i {
  margin-right:0.4em
}
.w-separator.width_30 {
  width:30%;
  margin-left:auto!important;
  margin-right:auto!important
}
.w-separator.width_50 {
  width:50%;
  margin-left:auto!important;
  margin-right:auto!important
}
.w-separator.width_screen {
  margin-left:-2.5rem;
  margin-right:-2.5rem
}
.w-separator.style_dashed .w-separator-h:before,
.w-separator.style_dashed .w-separator-h:after {
  border-top-style:dashed
}
.w-separator.style_dotted .w-separator-h:before,
.w-separator.style_dotted .w-separator-h:after {
  border-top-style:dotted
}
.w-separator.style_double .w-separator-h:before,
.w-separator.style_double .w-separator-h:after {
  border-top-style:double
}
.w-separator.thick_2 .w-separator-h:before,
.w-separator.thick_2 .w-separator-h:after {
  margin-top:-1px;
  border-top-width:2px
}
.w-separator.thick_3 .w-separator-h:before,
.w-separator.thick_3 .w-separator-h:after {
  margin-top:-1px;
  border-top-width:3px
}
.w-separator.thick_4 .w-separator-h:before,
.w-separator.thick_4 .w-separator-h:after {
  margin-top:-2px;
  border-top-width:4px
}
.w-separator.thick_5 .w-separator-h:before,
.w-separator.thick_5 .w-separator-h:after {
  margin-top:-2px;
  border-top-width:5px
}
.w-separator.with_content {
  line-height:1.3
}
.w-separator:not(.with_content),
.w-separator.with_content .w-separator-h {
  position:absolute;
}
.w-separator:not(.with_content) .w-separator-h:before {
  left:50%;
  transform:translateX(-50%);
  right:auto
}
.w-separator:not(.with_content) .w-separator-h:after {
  display:none
}
.w-separator.size_small:empty {
  height:1.5rem
}
.w-separator.size_small.with_line {
  height:4rem
}
.w-separator.size_medium:empty {
  height:3rem
}
.w-separator.size_medium.with_line {
  height:6rem
}
.w-separator.size_large:empty {
  height:4.5rem
}
.w-separator.size_large.with_line {
  height:7rem
}
.w-separator.size_huge:empty {
  height:6rem
}
.w-separator.size_huge.with_line {
  height:9rem
}
.w-separator.color_border {
  color:#fff;
}
.w-separator.color_primary {
   color:#fff;
}
.w-separator.color_secondary {
    color:#fff;
}

.dev-blocks .dev-block {
margin-bottom: 30px;
  height: 100%;
  padding-top: 30px;

}

.dev-block .dev-project-thumb {
    height: 250px;
}

.dev-block .dev-project-details {
   color: #ffffff;
  padding: 20px;
  height: 100%;
  margin-top: 26px;
}

.dev-block .dev-project-details h4 {
    font-size: 29px;
    font-weight: 400;
color: #ffffff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px;
}

.dev-block .dev-project-details h4 a {
    color: #ffffff;
    text-decoration: none;
}

.dev-block .dev-project-details h4 a:hover {
    color: #fff;
}

.dev-block .dev-project-details .dev-info {
 margin-left: 27px;
  padding: 0;
  list-style: none;
}

.dev-block .dev-project-details .dev-info li {
    margin: 5px 0;
    position: relative;
    padding: 2px 2px 2px 15px;
}

.dev-block .dev-project-details .dev-info li:before {
font-family: 'FontAwesome';
  content: "\f105";
  position: absolute;
  left: -4px;
  top: 6px;
  font-size: 10px;
}

.dev-block .dev-project-details .dev-info li a:hover {
    color: #ffffff;
    text-decoration: none;
}

.dev-block .dev-project-details .dev-info li:before {
    color: #fff;
}

.dev-block .dev-project-details .dev-info li {
    padding-left: 10px;
}

.dev-block .dev-project-details h4 a {
    text-transform: capitalize;
}

.dev-block .dev-project-details h4 {
    margin-bottom: 15px;
}@media only screen and (max-width: 767px) {
    .register-modal-row {
        flex-flow: column;
    }
    .register-modal-row .image-col {
        width: 100%;
        display: block !important;
    }
    .register-modal-row .register-content-col {
        width: 100%;
        display: block !important;
    }
    .register-modal-row .image-col img {
        position: relative;
    }
}