/** Shopify CDN: Minification failed

Line 92:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.about-us-dhara-section .about-wrapper {
  width: 100%;
  position: relative;
}

.about-us-dhara-section .desktop-bg,
.about-us-dhara-section .mobile-bg {
  background-size: cover;
  background-position: center;
  display: none;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.about-us-dhara-section .desktop-bg {
  height: 550px;
}

.about-us-dhara-section .mobile-bg {
  height: 800px;
  flex-direction: column;
}

.about-us-dhara-section .about-text {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  max-width: 420px;
  padding: 25px 20px;
  text-align: center;
}

/* Heading */
.about-us-dhara-section .about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Paragraphs */
.about-us-dhara-section .about-text p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button link */
.about-us-dhara-section .about-text a.button-link {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

/* Desktop styles */
@media screen and (min-width: 769px) {
  .about-us-dhara-section .desktop-bg {
    display: flex;
    justify-content: flex-end;
  }

  .about-us-dhara-section .about-text {
    margin-right: 5%;
  }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .about-us-dhara-section .mobile-bg {
    display: flex;
    justify-content: flex-end;
    padding: 40px 15px 20px;
  }

  .about-us-dhara-section .about-text {
    margin: 0 auto 30px;
    background-color: rgba(0, 0, 0, 0.8);
    width: 90%;
    border-radius: 6px;
  }
}
@import url('https://unpkg.com/flickity@2/dist/flickity.min.css');

.banner-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.flickity-slider {
  width: 100%;
}

.slide {
  position: relative;
  width: 100%;
}

.desktop-banner {
  display: block;
  width: 100%;
}

.mobile-banner {
  display: none;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .desktop-banner {
    display: none !important;
  }
  .mobile-banner {
    display: block !important;
  }
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 90%;
}

.banner-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.banner-buttons a {
  background-color: #f3f4f1;
  color: #777;
  padding: 10px 27px;
    font-size: 13px;
    font-weight: 600;
  border: 1px solid #f3f4f1;
  transition: all 0.3s ease;
  text-decoration: none;
}

.banner-buttons a:hover {
  background-color: #000;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .banner-content h2 {
    font-size: 24px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .banner-content {
     top: 72%;
  }

.banner-buttons a {
    padding: 5px 8px;}
}