/**
* Updated: Aug 07 2024 with Bootstrap v5.3.3
*/

/* Fonts */
:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", 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: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea;
  /* 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: #ffffff;
  /* 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. */
}
.blog-single-img img
{
	height: 275px;
    width: 100%;
    object-fit: cover;
}
.bgbaner img
{
	height: 400px;
    object-fit: cover;
}

/* 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: #222222;
  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea;
  /* 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: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
  overflow-x: hidden !important;
}

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;

  &:hover {
    color: #F29840 !important;
    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 {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--gray);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 100px;
  padding: 10px 0;
}

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

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

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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,
  .right_li li a {
    color: var(--white);
    padding: 18px 25px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 400;

  }

  .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(--white);
  } */

  .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);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-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(--white);
    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: #f29840 !important;
  }

  .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;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  /* background-image: url("assets/img/dw/bgfooter.png") no-repeat right top; */
  background: url("../img/dw/bgfooter.png") no-repeat center center / cover;
  /* background-color: color-mix(in srgb, var(--accent-color), transparent 96%); */
  padding: 70px 0;
}

.footer .footer-newsletter h4,
.footer .footer-newsletter p {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.footer .footer-newsletter .newsletter-form {
  padding: 5px 8px;
  position: relative;
  backdrop-filter: blur(4px);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  height: 48px;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
      align-items: center;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="text"] {
  border: 0;
    padding: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 23px;
    color: #fff;
    padding-left: 14px;
    height: 48px;
    border-bottom: 1px solid #fff;
}

.footer .footer-newsletter .newsletter-form input[type="text"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  background-image: url(../img/dw/loc.png);
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  background-color: transparent;
  position: absolute;
  right: 0;
  left: 90.9%;
  height: 50px;
  width: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background-image: url(../img/dw/loc.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  /* color: var(--accent-color); */
}

.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 {
  display: inline-block;
  /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: #f29840;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #ffffff;
  border-radius: 8px 8px 0px 0px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #f29840;
  color: #fff;
}

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

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  background-color: #f29840 !important;
  color: #fff !important;
}

.my-float {
  margin-top: 24px;
  position: relative;
  top: 8px;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

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

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

.footer .footer-links ul a:hover {
  color: #f29840;
}

.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: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 180px 0 50px 0px;
  display: flex;
  align-items: center;
  background: url(../img/dw/banner.png) center center;
  background-size: cover;
  border-radius: 0px 0px 30px 30px;
}

.hero:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

/* .hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
} */

.hero h1 span {
  color: var(--accent-color);
}

.hero p {

  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  color: #000000;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}




@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

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

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

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

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

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

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

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

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  /* padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Farhan dwell away  css Section
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  font-family: "Inter", sans-serif;
}

:root {
  --dark-black: #000000;
  --white: #ffffff;
  --gray: #959595;
}

.navText {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: var(--dark-black);
}

.header_bg {
  background: linear-gradient(90deg, #171818 0%, #121313 100%);
}

.opacitybg {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 60px 20px;
  max-width: 40rem;
}

.header .topbar .contact-info a,
.header .topbar .contact-info i span,
.header .topbar .contact-info i,
.header .topbar .contact-info i a {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 5vw, 15px);
  line-height: clamp(20px, 5vw, 19px);

  text-align: center;
  color: var(--dark-black);
}

.social-links i {
  color: var(--dark-black);
}

.header .topbar {
  background-color: #ffffff;
  height: 50px;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14.9223px;
  line-height: 18px;
}

.opacitybg1 {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 20px 19px;
  max-width: 30rem;
}

.ictext h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 5px;
  color: var(--dark-black);
}

.booking-form form {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid #ffffff;
  backdrop-filter: blur(4px);
  border-radius: 100px;
}

.booking-form form .input-select {
  width: auto;
}

.booking-form form .input-box .icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking-form form .input-box .form-select
{
	font-size: 14px;
    line-height: 14px;
    width: 170px;
}
.booking-form form .input-box .form-select::placeholder
{
	color : #000;
}

.search_btn {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 31px;
  padding: 8px 25px;
  border-radius: 46px;
  height: auto;
  border: 1px solid #0000;
  background-color: var(--dark-black);
  /* identical to box height, or 196% */

  /* Secondary/White */
  color: #ffffff;
}

/* .booking-form form .input-box label {
  display: none;
} */

.booking-form form .input-box label {
  padding: 15px 0 0 0;
  background: transparent;
  height: auto;
  line-height: 1;
  font-size: 14px;
}

.booking-form form .input-box {
  position: relative;
  background: transparent;
  padding-left: 50px;
  color: var(--dark-black);
}

.form-select {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  text-transform: capitalize;
  color: var(--dark-black);
}

.resident_text h4 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 50px);
  margin-bottom: 20px;
  color: var(--dark-black);
}

.gray {
  color: var(--gray);
}

.resident_text {
  

}

.viewBt a {
  border: 1px solid var(--dark-black);
  background-color: transparent;
  border-radius: 46px;
  padding: 10px 30px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 31px;
  color: var(--dark-black);

  &:hover {
    background-color: #F29840 !important;
    color: var(--white);
    transition: 0.5s;
  }

  &:focus {
    background-color: var(--dark-black);
    color: var(--white);
  }

  &:hover svg path {
    fill: var(--white);
    transition: 0.5s;
  }
}

.description {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 31px;
  text-transform: capitalize;
  color: var(--dark-black);
}

.stars i,
.stars span {
  color: var(--dark-black);
}

.user_img {
  background: #e6e6e6;
  border-radius: 25px;
  padding: 0px 2px;
  max-width: 200px;
}

.top_text {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  /* identical to box height, or 114% */
  text-transform: uppercase;

  color: var(--);
}

.arrow_icon {
  position: relative;
  bottom: 8px;
  right: 65px;
}

/* cards section */

#residents_live .card {
  height: 600px;
  border-radius: 35px;
  position: relative;
  overflow: hidden;

}

#residents_live .card:before,
#residents_live .card:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#residents_live .card:before {
  
  background-repeat: no-repeat;
  z-index: 1;
}

#residents_live .card:after {
  /* background-image: linear-gradient(to bottom, #2c1bce4f 20%, #902a4df5 87%); */

  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.42%, #000000 100%);
  border-radius: 35px;
  z-index: 2;
}

#residents_live .card-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: #fff;
}

#residents_live .card-text {
  margin-top: 19rem;
  padding: 0px 10px 18px 16px;
}

#residents_live .card-text--accent {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding: 15px 10px;
  vertical-align: middle;
  border-radius: 50%;
  border: 2px dotted;
  border-left: 0;
  margin-left: -5px;
}

#residents_live .card-button {
  border-radius: 46px;
  padding: 10px 19px;
  background: #ffffff;
  border: 2px solid;
  position: absolute;
  bottom: 15px;
  display: flex;
  align-items: center;
  width: 95%;
  font-family: "Inter", sans-serif;
  font-style: normal;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  line-height: 31px;
  margin-left: 5px;
}

.residents_live {
  padding: 20px 0;
}

#residents_live .card-button-icon {
  font-size: 16px;
  position: absolute;
  right: 16px;
  transition: transform 0.25s ease-out;
  color: #000000 !important;
  font-weight: 800;
}

/* -- Interactions Animations -- */

#residents_live .card-button:hover>.card-button-icon {
  transform: translateX(6px);
}

h4:is(.bd_1) {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: clamp(30px, 5vw, 34px);
  line-height: clamp(40px, 5vw, 49.49px);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.amenities .box {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.box p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  margin: unset;
  padding-left: 10px;
}

.residents_live div:is(.col-lg-3) h4 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(15px, 5vw, 18px);
  line-height: clamp(20px, 5vw, 24px);

}

.residents_live div:is(.col-lg-3) .card:before {
  background-repeat: no-repeat;
  z-index: 1;
}

.residents_live div:is(.col-lg-3) .box P {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 5vw, 11px);
  line-height: clamp(15px, 5vw, 15px);
  margin: unset;
  padding-left: 4px;
}

.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 23px 23px 0px 0px;
  padding: 36px 20px;
  margin: 0 auto;
}

.paragraph p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 0;
  color: #000000;
}

.paragraph1 p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 0;
  color: #000000;
}

.paragraph1 h5 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  font-size: clamp(25px, 5vw, 30px);
  line-height: clamp(30px, 5vw, 30.9px);

  text-transform: capitalize;
}

.residents_live .paragraph1 h5 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 31px;
  /* or 103% */
  text-transform: capitalize;

  color: #000000;
}

.heading_sec P {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 3vw, 18px);
  line-height: clamp(20px, 5vw, 31px);
  text-align: justify;
  text-transform: capitalize;
  color: #959595;
  margin-bottom: 20px;
}

.heading_sec h5 {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(35px, 3vw, 50px);
  line-height: clamp(45px, 5vw, 70px);
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}

/* listimgs cards */

.listing-card {
  /* margin: 25px auto; */
  margin: 0px auto 30px auto;
  max-width: 382px;
}

.listing-card .img {
  position: relative;
  max-height: 340px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.listing-card .img .img-text {
  position: absolute;
  left: 0;
  bottom: 10px;
  padding: 0 20px;
  z-index: 1;
}

.listing-card .img .wishlist-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 26px;
  z-index: 1;
}

.listing-card .img .buttons-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.listing-card .text .name {
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
  color: #000000;
}

.listing-card .text .address {
  font-weight: 500;
  color: #9a9a9a;
  font-size: 17px;
  margin-bottom: 15px;
}

.page-link {
  color: #000000;
}

.listing .box p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  margin: unset;
  padding-left: 10px;
}

.listing-card .text .amenities,
.listing-card-2 .text .amenities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#cards_listings .amenities .box {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

#cards_listings .box P {
  font-family: "Inter", sans-serif;
  margin: unset;
  padding-left: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  color: #000000;
}

.card_expand .listing-card {
  margin: 0px auto 30px auto;
  max-width: 100%;
}

.card_expand .listing-card .text .name {
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 27px;
  color: #000000;
}

.card_expand .card_img img {
  width: 100%;
}

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

.test_h .resident_text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin: 0 auto;
}

#testimonial_sec .swiper-container {
  position: relative;
  /* width: 90vw; */
  height: 500px;
  /* top: 20px; */
}

#testimonial_sec .swiper-container>#testimonial_sec .swiper-slide__content {
  position: absolute;
  top: 0;
}

#testimonial_sec .swiper-slide {
  height: 450px;
  padding: 20px;
  display: flex;
  background: #eee;
  align-items: start;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.8);
  color: #000000;
  background: #f5f5f5;
  border-radius: 32px;
  cursor: pointer;
}

#testimonial_sec .swiper-slide p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}

#testimonial_sec .swiper-slide.swiper-slide-active {
  transform: scale(1);
  background: #000000;
  border-radius: 32px;
  padding: 25px 30px;
  color: #fff;
  cursor: pointer;
}

#testimonial_sec .swiper-slide.swiper-slide-active h5 {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(15px, 5vw, 20px);
  line-height: clamp(20px, 5vw, 20px);
  text-transform: capitalize;
  color: #FFFFFF;
}

#testimonial_sec .swiper-slide.swiper-slide-active p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(15px, 5vw, 18px);
  line-height: clamp(25px, 5vw, 30px);
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 0px;

}

#testimonial_sec .swiper-button-prev {
  right: 50%;
  top: auto;
  background: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  transform: translateX(10px);
  border: 1px solid #000000;
  color: #000000;
  left: auto;
  margin-right: 10px;
}

#our_partners .swiper-button-prev {
  right: 50%;
  top: auto;
  background: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  transform: translateX(10px);
  border: 1px solid #000000;
  color: #000000;
  left: auto;
  margin-right: 10px;
}

#testimonial_sec .swiper-button-next:hover,
#testimonial_sec .swiper-button-prev:hover {
  background: #000000;
  transition: all 0.3s;
  color: #fff;
}


#testimonial_sec .swiper-button-next {
  left: 50%;
  top: auto;
  /* background: #fff; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  transform: translateX(10px);
  border: 1px solid #000000;
  color: #ffffff;
  right: auto;
  background: #000000;
}

#our_partners .swiper-button-next {
  left: 50%;
  top: auto;
  background: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  transform: translateX(10px);
  border: 1px solid #000000;
  color: #000000;
  right: auto;
}

#our_partners .section-title {
  text-align: center;
  padding-bottom: 16px;
  position: relative;
}

#testimonial_sec .swiper-slide-next {
  transform: rotate(4.65deg);
}

#testimonial_sec .swiper-slide-prev {
  transform: rotate(-4.65deg);
}

#testimonial_sec .swiper-button-next:after,
#testimonial_sec .swiper-button-prev:after {
  font-size: 12px;
}

#our_partners .swiper-button-next:after,
#our_partners .swiper-button-prev:after {
  font-size: 12px;
}

.t_details #testimonial_sec .swiper-slide__content {
  height: 350px;
}

.Latest_blogs h4,
.our_partners h4 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 70px;
  font-size: clamp(35px, 5vw, 40px);
  line-height: clamp(55px, 5vw, 70px);
  text-align: center;
  text-transform: capitalize;

  color: #000000;
}

.Latest_blogs {
  padding-top: 0px;
  padding-bottom: 100px;
}

.Latest_blogs p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 5vw, 25px);
  line-height: clamp(30px, 5vw, 35px);
  text-align: center;
  text-transform: capitalize;
  color: var(--gray);
}

.blog-pg-card {
  margin: 15px 0;
  cursor: pointer;
}

.blog-pg-card .img {
  /* height: 330px; */
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

#blog .blog-pg-card .img img {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0px 0px;
}


#blog .blog-pg-card .text {
  background: transparent;

}

.blog-pg-card .text {
  background: #ffffff;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  border-radius: 0 0 5px 5px;
  padding: 19px 10px;
}

.blog-pg-card .title {
  color: var(--dark-black);
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 136%;
  text-align: start;
  max-width: 298px;
  margin: unset;
  padding-bottom: 8px;
  letter-spacing: 0.025em;
}

#blog .s-text {

  max-width: 100%;

}
#blog .shrot-content , .blog-pg-card .shrot-content
{
    display: -webkit-box; /* Required for -webkit-line-clamp */
  -webkit-box-orient: vertical; /* Sets the box orientation to vertical */
  -webkit-line-clamp: 4; /* Specifies the maximum number of lines */
  overflow: hidden; /* Hides any overflowing content */
  text-overflow: ellipsis; /* Displays an ellipsis for truncated text */
  padding-bottom : 0px !important;
}
.blog-pg-card .title , #blog .title
{
    display: -webkit-box; /* Required for -webkit-line-clamp */
  -webkit-box-orient: vertical; /* Sets the box orientation to vertical */
  -webkit-line-clamp: 2; /* Specifies the maximum number of lines */
  overflow: hidden; /* Hides any overflowing content */
  text-overflow: ellipsis; /* Displays an ellipsis for truncated text */
      padding-bottom: 0px;
}

.blog-pg-card .s-text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 181.6%;
  color: var(--gray);
  text-align: start;
  max-width: 350px;
  margin: 0;
  padding-bottom: 14px;
}

.blog-pg-card .bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;

}

.blog-pg-card .date,
.blog-pg-card .read {
  font-size: 14px;
  color: #959595;
  font-weight: 400;
  width: -webkit-fill-available;
  max-width: 100%;
  text-align: start;
  margin: unset;
}

.blog-pg-card .bottom-right {
  position: absolute;
  bottom: 0px;
  right: 20px;
  background: #000000;
  border-radius: 10px 10px 0px 0px;
  padding: 15px 18px;
}

.blog-pg-card .blogdate h5 {
  margin-bottom: 0;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  /* identical to box height, or 38px */
  text-align: center;
  color: #ffffff;
}

.blog-pg-card .viewBt a {
  border: 1px solid var(--dark-black);
  background-color: var(--dark-black);
  border-radius: 46px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  padding: 7.0238px 21.0714px;
  color: #fff;
}

.img_content {
  background: #FFFFFF;
  border: 1px solid rgba(217, 217, 217, 0.5);
  border-radius: 15px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 30px;
}

.footer {
  color: #fff;
  font-size: 14px;
  padding-bottom: 3px;
  position: relative;
  background: linear-gradient(90deg, #171818 0%, #121313 100%);
}

.footer .copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-contact p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: justify;
  color: #d9d9d9;
  max-width: 450px;
}

.footer .footer-links ul a,
.socila_list a {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
  color: #d9d9d9;
}

.footer h4 {
  position: relative;
  padding-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #d9d9d9;
}

/* ends */

/* salmans css for dwell awasy */
/* SALMAN's CSS STARTS */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-salman {
  width: 100%;
  min-height: 45dvh;
  position: relative;
  /* padding: 60px 0; */
  display: flex;
  justify-content: center;
  background: url(../img/dw/herobg.png) center;
  background-size: cover;
  overflow-y: visible;
  background-position: 100% 100%;
}

.hero-salman .main-col {
  position: absolute;
  top: 15%;
  z-index: 1;
}

.hero-salman .right-col {
  /* position: absolute; */
  top: 45%;
  z-index: 1;
}

.hero-salman .mid-col {
  /* position: absolute; */
  top: 25% !important;
  z-index: 1;
}

.hero-salman .left-col {
  /* position: absolute; */
  top: 45% !important;
  z-index: 1;
}
#about_us , #listings_page , #contact_page
{
	    margin-top: 146px;
}
#about_us .container-fluid , #listings_page .container-fluid , #contact_page .container-fluid
{
	    --bs-gutter-x: 4.5rem;
}
#listings_page .booking-form
{
	padding-left: 40px;
    padding-right: 40px;
}
.hero-salman .container {
  position: relative;
}

.hero-salman h1 {
  margin: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: clamp(35px, 5vw, 55px);
  line-height: clamp(45px, 5vw, 70px);
  /* padding: 20px 0px; */

  text-align: center;
  color: #000000;
  text-shadow: 0px 0px 50px #ffffff;
}

.hero-salman .card {
  background: rgba(255, 255, 255, 0.6);
  padding: 19px 20px;
}
.hero-salman .card.shadow
{
	
}
.hero-salman .big-card {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.hero-salman .card-title,
.hero-salman .card-text {
  color: #000;
}



@media (max-width: 768px) {


  .hero-salman .main-col {
    position: unset;
  }
}

@media (max-width: 640px) {

  .hero-salman .main-col {
    position: unset;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# About Section salman css
--------------------------------------------------------------*/

.founder-sec {
  padding-top: 0px;
  padding-bottom: 70px;
}

.founder-sec p {
  font-style: normal;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #959595;
  max-width: 600px;
  margin: 0 auto;
}

.fs_text {
  color: #959595;
}



.founder-sec h2,
.contact h2 {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(35px, 5vw, 40px);
  line-height: clamp(50px, 5vw, 45px);

  text-align: center;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  color: #000000;
}

.founder_img {
  padding-bottom: 70px;
}

.vision-sec img {
  width: 100%;
  height: auto;

}

.vision-sec h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  font-size: clamp(30px, 5vw, 40px);
  line-height: clamp(50px, 5vw, 60px);
  color: #000000;
  text-align: start;
}

.vision-sec P {
  font-style: normal;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: start;
  color: #959595;
  max-width: 100%;

}

.founder_img img {
  border: 3px solid #000000;
  padding: 6px;
  border-radius: 100%;
}


#about_us .about {
  margin-top: 250px;
  padding-bottom: 70px;
}

#about_us .about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

#about_us .about .about-content ul {
  list-style: none;
  padding: 0;
}

#about_us .about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

#about_us .about .about-content ul li:first-child {
  margin-top: 35px;
}

#about_us .about #about_us .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

.about .aboutbtn {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-radius: 46px;

}

.about .aboutbtn:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Contact Section salman 
--------------------------------------------------------------*/
#contact_page .contact {
  margin-top: 250px;
}

#contact_page .contact .card .info-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

#contact_page .contact .section-title {
  padding-bottom: 0 !important;
}

#contact_page .contact .php-email-form .contact-btn {
  width: 100%;
  background-color: #000 !important;
  color: #fff !important;
}



#contact_page .contact #contact_page .info-wrap {
  background-color: var(--surface-color);
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
  padding: 30px;
}

@media (max-width: 575px) {
  #contact_page .contact .info-wrap {
    padding: 20px;
  }
}

#contact_page .contact .contact-info .card-img {
  width: 90px;
  height: 90px;
  background-color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact_page .contact .php-email-form {
  /* background-color: var(--surface-color); */
  /* height: 100%; */
  padding: 10px;
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 575px) {
  #contact_page .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #D9D9D9;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-bottom: 1px solid #000000;
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact-info .card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #000000;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 40px;
padding-top: 55px;
    padding-bottom: 55px;
  width: 427px;
}

.contact-info .card h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 0px;
     
}

.contact-info .card p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  color: #959595;
  margin-bottom: 0px;
}

#listing_form {
  margin-top: 220px;
}

.form-select:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

#listing_form .booking-form form {
  border: 1.5px solid #d9d9d9;
}

#listing .listing-card {
  margin: 0px auto;
  max-width: 382px;
}

.listing .pagination .page-link.active {
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-link:hover {

  color: #F09740;
}

.page-item:not(:first-child) .page-link,
.page-item:first-child .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  background: #FFFFFF;
  border: 1.366px solid #F1F1F1 !important;
  color: #333333;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: flex;
  margin-left: 6px;
  justify-content: center;
  align-items: center;
}

.preview img {
  display: block;
  height: auto;
  width: 100%;
  border-radius: 15px;
}

.preview h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  /* identical to box height, or 140% */
  text-transform: capitalize;
  color: #000000;
}

.preview p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}

.preview button {
  background: #000000;
  padding: 10px 19px;
  border-radius: 46px;
}

.preview .card-body {
  background: #ffffff;
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  padding: 30px 15px;
}

/* checkout page css starts */
#checkout {
  padding: 50px 0px;
}

.billingsummary h5,
.bprice h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 12px;
}

.billingsummary .addons_form {
	background: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px 18px;
}

.billingsummary label {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  /* Secondary/Black */
  color: #000000;
}

.billingsummary .form-control,
.billingsummary .form-select {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #d9d9d9;

  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  color: #959595;
  padding: 10px 0px 18px 0px !important;

}

&& .billingsummary .form-control:focus {
  border-color: #000000;
  box-shadow: none;
}

#checkout button {
  background: #000000;
  padding: 10px 19px;
  border-radius: 46px;
}

#checkout .card-body {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px 15px;
}

/* ends */

#checkout .card-body p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  /* or 67% */

  color: #000000;
}

#checkout .modal-content {
  background: #ffffff;
  border: 1.5px solid rgba(205, 205, 205, 0.5);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}

.modal {
  --bs-modal-width: 720px;
}

#checkOut .modal-body button {
  background: #000000;
  border-radius: 46px;
  padding: 10px 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 31px;
  text-align: center;
  color: #FFFFFF;

}

.check_text h5 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(25px, 5vw, 30px);
  line-height: clamp(30px, 5vw, 30px);

  margin-bottom: 13px;
  color: #000000;
}

.check_text p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #959595;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* .img img {
  border-radius: 20px 20px 0px 0px;
} */

.chk_cards div {
  margin-bottom: 15px;
  border-bottom: 1px solid #F0F0F0;

}

/* wizard dashboard css */
.wizard,
.wizard .nav-tabs,
.wizard .nav-tabs .nav-item {
  position: relative;
}

.wizard .nav-tabs:after {
  content: "";
  width: 80%;
  /* border-bottom: solid 2px #ccc; */
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 38%;
  z-index: -1;
}

.wizard .nav-tabs .nav-item .nav-link {
  color: #000000;
  padding: 20px;
  width: 260px;
  text-align: center;
}

.wizard .nav-tabs .nav-item .nav-link:hover {
  color: #000;
}

.wizard .nav-tabs .nav-item .nav-link.active {
  background: #000000;
  border-radius: 40px;
  padding: 20px;
  width: 260px;
  color: #fff;
  text-align: center;
}

.wizard .nav-tabs .nav-item .nav-link.active svg path {
  fill: #fff;
}

.wizard .nav-tabs .nav-item .nav-link svg {
  font-size: 25px;
}

.wizard ul {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 40px;
  margin-bottom: 25px;
}


#step3 .table th {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  padding-bottom: 25px;
}

#step3 .table td {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
  padding-bottom: 20px;
}


#step3 .nav-tabs .nav-item {
  margin-left: 10px;
}


#step3 .wizard ul {

  padding-left: 0;
}

#dashboard .box P {
  font-size: 14px;
}

#dashboard .top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

#step3 .nav-tabs-bordered .nav-link.active {
  color: #000000;
  border-bottom: 1px solid #000000;
  border-radius: 0;
  text-align: start;
  padding: 3px 0px 18px 0px;
  background: #fff;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 35px;
  text-transform: capitalize;
}

#step3 .nav-tabs-bordered .nav-link {
  color: #959595;
  border-bottom: 1px solid #959595;
  border-radius: 0;
  text-align: start;
  padding: 3px 0px 18px 0px;
  background: #fff;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 35px;
  text-transform: capitalize;
}

#step3 .nav-tabs .nav-item .nav-link {
  text-align: start;
}

#step3 {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px 15px;
}

.Submit_bt .btn {
  padding: 10px 19px;
  background: #000000;
  border-radius: 46px;
  width: 100%;
}

.form-left h5 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 5vw, 40px);
  line-height: clamp(30px, 5vw, 40px);

  text-transform: capitalize;
  color: #000000;

}

.login-page .search input {
  width: 100%;

  height: 55px;

}

.search {
  position: relative;
  color: #aaa;
  font-size: 16px;
}

.search .bi-envelope,
.search .bi-eye,
.search .bi-person,
.search .bi-telephone {
  position: absolute;
  top: 15px;
  left: 10px;
}

.search {
  display: inline-block;
  width: 100%;
}

.search input,
.select_guests .form-select {
  width: 100%;
  border: 1px solid #959595;
  border-radius: 56px;
  padding: 14px 22px;
  height: 45px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  background: #FFFFFF;
  color: #959595;
}

.search input {
  text-indent: 5px;
}

.search .bi-envelope,
.search .bi-eye,
.search .bi-person,
.search .bi-telephone {
  left: auto;
  right: 30px;
  font-size: 19px;
}


.sipdd .search .bi-envelope {

  right: 20px;

}

.sipdd .search .bi-envelope {

  top: 10px;
  /* left: 10px; */
}

/* owl login css */

.main-content {
  position: relative;
}

/* .main-content .owl-theme .custom-nav {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
} */

.main-content .owl-theme .custom-nav .owl-prev,
.main-content .owl-theme .custom-nav .owl-next {
  position: absolute;
  height: 100px;
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}

.main-content .owl-theme .custom-nav .owl-prev i {
  font-size: 20px;
  color: #ffffff;
}

.main-content .owl-theme .custom-nav .owl-next i {
  color: #000000;
  font-size: 20px;
}

.main-content .owl-theme .custom-nav .owl-prev {
  left: 0px;
  bottom: 8px;
  background: #000000 !important;
  border-radius: 28px;
  padding: 10px 39px;
  height: 65px;
}

.main-content .owl-theme .custom-nav .owl-next {
  right: -10px;
  background: rgb(211 211 211 / 60%) !important;
  backdrop-filter: blur(2px);
  border-radius: 28px;
  padding: 9px 39px;
  height: 70px;
  bottom: 2px;
  width: 140px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #000000 !important;
  outline: 1px solid #000000;
  outline-offset: 5px;
  transform: scale(1);
  width: 12px;
  height: 12px;
  border-radius: 7.5px;
}


.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  /* -webkit-backface-visibility: visible; */
  transition: opacity .2s ease;
  border-radius: 30px;
}

.main-content .owl-dots {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 15px;
}

.login-page .top-left {
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: 999;
}

.login-page .top-left button {
  border: 1px solid #959595;
  border-radius: 56px;
  padding: 15px 20px;
  background: transparent;
  color: #000000;
}

/* blogs css */

.rs_btn button {
  border: 1px solid #000000;
  border-radius: 4px;
  padding: 6px 10px;
}

.airbnb h5 {

  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  font-size: clamp(35px, 5vw, 50px);
  line-height: clamp(55px, 5vw, 75px);

  letter-spacing: 0.025em;
  text-transform: capitalize;
  color: #000000;
}

.airpara {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  text-transform: capitalize;
  color: #959595;
  margin-top: 0;
  margin-bottom: 1rem;
  max-width: 600px;
  float: inline-end;
}

#blog .pagination .page-link.active {
  color: #fff;
  background-color: #000;
  border-radius: 50%;
}

#singleBLog .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#singleBLog .centered h5 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 40px);
  line-height: clamp(40px, 5vw, 40px);

  max-width: 500px;
  margin-bottom: 0;
}

#singleBLog .centered {
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 60px 20px;
  /* border: 1.5px solid #fff; */
  border: 1.5px solid;
  border-image-slice: 1;
  border-width: 1.5px;
  border-image-source: linear-gradient(233.31deg, #FFFFFF 2.14%, rgba(255, 255, 255, 0) 57.92%, #FFFFFF 100%);
}

.dateblog h5 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 136%;
  letter-spacing: 0.025em;
  text-transform: capitalize;
  color: #000000;
}

.dateblog p,
.sipdd_text p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  /* or 188% */
  text-align: justify;
  text-transform: capitalize;

  /* Secondary/Dark Gray */
  color: #959595;
}

.sipdd {
  padding-top: 0px;

}

.sipdd h5 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;

  font-size: clamp(15px, 5vw, 25px);
  line-height: clamp(25px, 5vw, 35px);

  text-transform: capitalize;
  color: #000000;
}

.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
  display: none;
}

.add-read-more.show-more-content .read-more {
  display: none;
}


.add-read-more .read-more,
.add-read-more .read-less {
  cursor: pointer;
}

.read-more,
.read-less {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  text-decoration-line: underline;
  text-transform: capitalize;
  color: #000000;
}

.sipdd_text h5 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  /* identical to box height, or 140% */
  text-transform: capitalize;

  color: #000000;
}

.sipdd_form form {
  background-color: #000000;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px 15px;
}

.bgshadow {
  padding: 30px 0px;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

#our_partners .listing-card {
  margin: 0px auto;
  max-width: 100%;
}

#lpd .swiper-button-next {
  left: 95%;
  top: 20px;
  background: #ffffff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  transform: translateX(7px);
  border: 1px solid #000000;
  color: #000000;
  right: auto;
}

#lpd .swiper-button-prev {
  right: 5%;
  top: 20px;
  width: 30px;
  height: 30px;
}

#lpd .img_content {
  background: #ffffff;
  border: 0;
  border-radius: 15px;
  height: auto;
  display: unset;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 0;
}

#lpd .swiper-slide {
  transition: 0.7s;
}

#lpd .swiper-slide-active .listing-card .text .name {
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #000000;

}

#lpd img {
  border-radius: 10px;
}

/* #lpd .swiper-slide-active {
  transform: scale(1.2);
} */




/* SWIPER CSSS   */
#lpd .main-content .owl-dots {
  position: absolute;
  right: unset;
  left: 0;
  bottom: 25px;
}

#lpd .main-content .owl-theme .custom-nav .owl-next {
  right: 0;
  top: -100px;
  background: #000000 !important;
  border-radius: 50%;
  padding: 10px 25px;
  height: 50px;
  width: 50px;
}


#lpd .main-content .owl-theme .custom-nav .owl-prev {
  left: 87%;
  top: -98px;
  background: #000000 !important;
  border-radius: 50%;
  padding: 5px 10px;
  height: 50px;
  width: 50px;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}


#lpd .main-content .owl-theme .custom-nav .owl-prev i {
  color: #ffffff;
  font-size: 23px;
  text-align: center;
}

#lpd .main-content .owl-theme .custom-nav .owl-next i {
  color: #ffffff;
  font-size: 23px;
  text-align: center;
}


#featured-services {
  padding: 50px 0px 80px 0px;
}

.residents_live,
.dwell_special_Sec {
  padding-top: 0px;
  padding-bottom: 100px;
}


.dwell_away .heading_sec ul li {

  font-weight: 400;
  font-size: clamp(15px, 5vw, 18px);
  line-height: clamp(20px, 5vw, 20px);

}


.home_listings,
.cards_listings {
  padding-top: 0px;
  padding-bottom: 44px;
}

.test_h {
  padding-bottom: 70px;
}

.theme_para {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 3vw, 18px);
  line-height: clamp(20px, 5vw, 31px);
  text-align: justify;
  color: var(--gray);
  margin-bottom: 0;
}

.mb_24 {
  margin-bottom: 24px;
}

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

.our_partners {
  padding-top: 0px;
  padding-bottom: 100px;
}

.pb_50 {
  padding-bottom: 50px;
}


.pb_70 {
  padding-bottom: 70px;
}

.pt_50 {
  padding-top: 50px;
}

.pt_70 {
  padding-top: 70px;
}


.about-section h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 19px;
  font-size: clamp(35px, 5vw, 50px);
  line-height: clamp(50px, 5vw, 60px);

  text-transform: capitalize;
  color: #000000;
}

.contact_img img,
.contact_img {
  height: 100% !important;
}


#listing_slider {
  padding-top: 135px;
}


.leftside img {
  border-radius: 20px;
  height: 223px;
  object-fit: cover;
}

.share_icons .left_share {
  position: absolute;
  top: 15px;
  left: 20px;
}

#list_details .swiper-button-next,
#list_details .swiper-button-prev {
  right: 50%;
  top: auto;
  background: transparent;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  transform: translateX(10px);
  border: 1px solid #000000;
  color: #000000;
  left: auto;
  margin-right: 5px;
}


#list_details .swiper-button-prev:after {
  content: '← ';
}

#list_details .swiper-button-next:after {
  content: '→';
}

#list_details .swiper-button-next:after,
#list_details .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

#list_details .swiper-button-prev {
  right: 22%;
  background-color: #000000;
  border: 0;
  top: 20px;
}

#list_details .swiper-button-next {
  left: 78%;
  top: 20px;
  background-color: #000000;
  border: 0;
  right: auto;
}


.ls-slider .viewBt a {
  background-color: var(--dark-black) !important;
  color: #fff  !important;
}

#list_details .swiper-pagination {
  transform: translate(15rem, -9rem);
}

#list_details .swiper-pagination-bullet {
  background: #000000;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
}


#list_details .swiper-pagination-bullet-active {
  background: #000000 !important;
  outline: 1px solid #000000;
  outline-offset: 5px;
  transform: scale(1);
  width: 12px;
  height: 12px;

}

.ov_pt {
  padding: 40px 0px;
}

.v_all span {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #000000;
}

.opts-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.opts-list li {
  width: 20%;
  padding: 15px 10px 15px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #F0F0F0;
}

#preview,
#checkout {
  padding: 190px 0 70px 0px;
}

.top_icons {
  position: absolute;
  top: 15px;
  z-index: 1;
  right: 15px;
}

/* .thumbnail-slider .slick-slide {
  margin: 0 5px;
} */

.main-slider .slick-next {
  left: 55px;
}

.main-slider .slick-prev,
.main-slider .slick-next {
  position: absolute;
  top: 30px;
  left: 20px;
  background: rgba(255, 255, 255);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  font-family: "slick";
  font-size: 16px;
  line-height: 1;
  color: #333;
  opacity: 1;
}

.booking_pdp_slider .slick-prev:before {
  color: transparent;
  /* content: '>' !important; */
  background-image: url(../img/dw/left.png);

  background-repeat: no-repeat;
}

.main-slider .slick-next {
  left: 65px;
}

.thumbnail-slider .slick-prev {
  left: -40px;
}

.thumbnail-slider .slick-prev,
.thumbnail-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.thumbnail-slider .slick-next {
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 100%);
  border-radius: 4px;
  height: 75px;
  right: 0px;
}



.thumbnail-slider .slick-prev {
  background: linear-gradient(275deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 100%);
  border-radius: 4px;
  height: 75px;
  left: 0px;
}

.thumbnail-slider {
  width: 100%;
  margin: 10px auto;
  position: relative;
}

.booking_pdp_slider .slick-next:before {
  color: transparent;
  content: '>' !important;
  background-image: url(../img/dw/right.png);
  background-repeat: no-repeat;
}


.thumbnail-slider::before {
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 100%);
  border-radius: 4px;
}

.thumbnail-slider .slick-current img {
  border: 2px solid #333;
  /* padding: 3px; */
}

.thumbnail-slider img {
  width: 95%;
  height: 75px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  padding: 4px;
}

.booking_preview h5 {

  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 12px;
}

.bps_card {
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px 15px;
}

.p_details_bb {
  border-bottom: 1px solid #F0F0F0;
  padding: 5px 0px 10px 0px;
  margin: 10px 0px;
}

.p_name p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 10px;
  color: #000000;
  margin-bottom: 0px;
}

.p_details p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;
  color: #000000;
  margin-bottom: 0;
}


.p_name small {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin-bottom: 15px;
}


.form-check-input:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #000000;
  border-color: #000000;
}

.acknowledgement {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
  color: #000000;

}

#blog {
  padding-top: 180px;
}


#singleBLog {
  padding-top: 150px;
}

.login-page {
  padding: 30px 44px;
}


.icons_position {
  position: absolute;
  transform: translateY(-50%) !important;
  top: 50% !important;
  right: 24px;
}

.hr {
  border-bottom: 1px solid #D9D9D9;
}


#blog .blog-pg-card::before {

  content: '';
  right: -13px;
  border-left: 1px solid #D9D9D9;
  position: absolute;
  top: 0%;
  bottom: 10%;
}

#blog .blog-pg-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  height: 1px;
  background-color: #D9D9D9;
}

.blog-pg-card {
  position: relative;
}


.blog_details {
  padding: 70px 0px;
}

.wc_text {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #959595;
  font-size: clamp(15px, 5vw, 22px);
  line-height: clamp(20px, 5vw, 25px);

}


.newsletter-form input::placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
}

#dashboard {
  padding-top: 150px;
}


#dashboard .wizard {
  padding-top: 40px;
  padding-bottom: 70px;
}

#dashboard .nav-link:focus-visible {
  outline: 0;
  box-shadow: unset;
}

#checkOut .modal-body {
  padding: 30px 20px;
}

/* login form new css */

.half_img {
  position: relative;
  height: 600px;
  border-radius: 25px;
  overflow: hidden;
}

.half_img .img-box {
  position: absolute;
  inset: 0;
  transition: 0.3s all linear;
}

.half_img .img-box:hover {
  transform: scale(1.1);
}

.half_img .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-page .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 100px;
  border-top-left-radius: 50px;
  padding: 12px;
  background-color: white;
}

.login-page .icon::after {
  position: absolute;
  content: "";
  top: -18px;
  right: 0;
  background: transparent;
  width: 18px;
  height: 18px;
  border-bottom-right-radius: 50px;
  box-shadow: 10px 10px 0 10px #fff;
}

.login-page .icon::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -18px;
  background: transparent;
  width: 18px;
  height: 18px;
  border-bottom-right-radius: 50px;
  box-shadow: 10px 10px 0 10px #fff;
}


.login-page .icon1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 116px;
  height: 100px;
  border-top-right-radius: 50px;
  padding: 12px;
  background-color: white;
}

.icon1::after {
  position: absolute;
  content: "";
  top: -18px;
  left: 0;
  background: transparent;
  width: 18px;
  height: 18px;
  border-bottom-left-radius: 50px;
  box-shadow: -5px 3px 0px 0px #fff;
}

.icon1::before {

  position: absolute;
  content: "";
  bottom: 0;
  right: -18px;
  background: transparent;
  width: 18px;
  height: 18px;
  border-bottom-left-radius: 50px;
  box-shadow: -12px 11px 0 10px #fff;
}


.icon2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 90px;
  border-bottom-right-radius: 50px;
  padding: 12px;
  background-color: white;
}

.icon2::after {
  position: absolute;
  content: "";
  top: -1px;
  right: -14px;
  background: transparent;
  width: 18px;
  height: 18px;
  border-top-left-radius: 50px;
  box-shadow: -2px -2px 0px 0px #fff;
}

.icon2::before {
  position: absolute;
  content: "";
  bottom: -17px;
  left: -1px;
  background: transparent;
  width: 18px;
  height: 18px;
  border-top-left-radius: 50px;
  box-shadow: -7px -4px 0px 4px #fff;
}

.pp_tc {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #000000;

}


.fa-angle-left:after {
  content: "\f177" !important;
}

.fa-angle-right:before {
  content: "\f178" !important;
}

.fa-angle-left:before {
  content: "" !important;
}

/* ends */


.btn-check:checked+.btn,
.btn.active,
.btn:hover,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: #fff !important;
  background-color: #F29840 !important;
  border-color: #F29840 !important;
}

#contact_page .card-body,
#about_us .card-body,
#listings_page .card-body {
  padding-left: 0px;
}


.book_icons {
  position: absolute;
  transform: translateY(50%);
  right: 15px;

}



#preview .slick-next:focus,
#preview .slick-next:hover,
#preview .slick-prev:focus,
#preview.slick-prev:hover {
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 100%);
  /* background: #fff; */
}

.card_first .card-button {
  width: 96% !important;
  margin-left: 12px !important;
}


#our_partners .swiper-slide-active .img_content {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}


#myTabContent .listing-card .img {

  max-height: 230px;

}

.card_img img {
  width: 100%;
  height: 392px;
  object-fit: cover;
  margin-bottom: 12px;
}


.first-column .name{
  font-family: 'Inter' !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 25px !important;
  line-height: 27px !important;
  color: #000000 !important;
  margin-bottom: 10px !important;
}

.first-column .address {
  font-family: 'Inter' !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 17px !important;
line-height: 25px !important;
color: #959595 !important;
}


.grid-container {
  display: grid;
  gap: 22px;
  margin-bottom: 20px;
  grid-template-columns: 1fr 1fr 2fr ;
}

.grid-container {
  @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr 2fr ;
  }
}


.grid_container_1{
  display: grid;
  gap: 22px;
  margin-bottom: 20px;
  grid-template-columns: 2fr 1fr 1fr;
}

.grid_container_1 {
  @media (min-width: 768px) {
      grid-template-columns: 2fr 1fr 1fr;
  }
}


.column .name{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 27.5px;
  color: #000000;
  margin-bottom: 4px;
}

.column .address {
  font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 17px;
line-height: 27.5px;
color: #959595;
    margin-bottom: 10px;
}

/* ends farhan csss sec */


.list_details {
  padding-top: 40px;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    /* max-width: 1300px; */
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
  }
}


/* farhan 600px query */

@media (max-width: 600px) {

  .first-column .name {
 
    font-size: 20px !important;
    line-height: 25px !important;
  
}

  .amenities {

    margin-bottom: 20px;
}

  .grid-container , .grid_container_1  {
    display: block;
  }
  .table_none {
    display: none;
  }

  #dashboard .wizard {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .sbi img {
    width: 100%;
  }

  .blog_details {
    padding: 40px 0px;
  }

  #singleBLog .centered {

    width: 100%;
  }

  .acknowledgement {
    font-size: 11px;
    padding-left: 0;
  }

  #about_us .about {
    padding-bottom: 40px;
  }

  .sipdd h5 {

    margin-bottom: 20px;
  }

  #step3 {

    padding: 10px 5px;
  }

  #dashboard .wizard .nav {
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }

  .login-page {
    padding: 30px 20px;
  }

  /* #lpd .swiper-button-prev,
  #lpd .swiper-button-next {
    display: none;
  } */

  .opts-list li {
    width: 100% !important;
  }

  .list_details {
    overflow: hidden !important;
  }

  .ls-slider {
    overflow: visible;
  }

  #list_details .swiper-pagination {
    transform: translate(10rem, 0rem);
  }

  .hero-salman {

    padding: 190px 0 40px;
    background: url(../img/dw/herobg.png) center no-repeat;
    background-size: cover;
  }

  .footer .footer-newsletter {
    padding: 50px 0px;
  }


  .testimonial_sec {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .our_partners,
  .Latest_blogs,
  .test_h,
  .residents_live,
  .dwell_special_Sec {
    padding-bottom: 50px;
  }

  .card_content ul {
    margin-bottom: 30px;
  }

  .socila_list a {
    margin-left: 10px;

  }

  .socila_list {
    margin-bottom: 0px;
  }

  .footer .footer-newsletter .newsletter-form input[type="submit"] {

    margin: -7px 8px 7px 0;


    top: 8px;
    left: 86%;

  }

  .card_expand .listing-card {
    margin: 15px auto;
    max-width: 382px;
  }

  #about_us .about,
  #contact_page .contact,
  #listing_form {
    margin-top: 0;
  }
}

/* salmans css ends  for dwell awasy */

@media only screen and (max-width: 1024px) {
  .booking-form form .input-select {
    width: 100%;
    margin-bottom: 20px;
    height: 40px;
    overflow: visible;
  }

  .booking-form {
    border-radius: 20px;
    padding: 15;
  }
}

.banner_heading {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
      font-size: clamp(18px, 4vw, 35px);
    line-height: clamp(30px, 4vw, 50px);
  text-transform: uppercase;
  color: var(--dark-black);
  text-shadow: 0px 0px 50px #ffffff;
}


/* farhn cs for media  */

@media (max-width: 600px) {
  .banner_heading {
    text-align: center;
  }

  .opacitybg {
    padding: 40px 20px;
  }

  .booking-form form {

    border-radius: 10px;
  }

}

.error
{
	color : red;
}

.slider_image_middle
{
	height : 465px;
}
.newsletter-form #email-error
{
	position: absolute;
    top: 51px;
    color: #fff;
}
