@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

body {
  padding: 0;
  margin: 0;
  font-family: "Sora", sans-serif;
}

:root {
  --white_bg: #ffffff;
  --border_radius: 7px;
  --border-top: 1px solid rgba(0, 0, 0, .1);
  --border-bottom: 1px solid rgba(0, 0, 0, .1);
  --border-left: 1px solid rgba(0, 0, 0, .1);
  --border-right: 1px solid rgba(0, 0, 0, .1);
  --border: 1px solid rgba(0, 0, 0, .05);
  --light_bg: #F9F9F9;
  --black_bg: #111111;
  --inactive_link: #999;
  --bg_success: #EEFCF3;
  --bg_danger: #FFEEEB;
  --bg_warning: #FFF5EB;
  --body_bg: #f7f8ff;
  --brand_color: #F39235;
  /* --secondary_color: #F20505; */
}

.lazy {
  filter: blur(10px);
  background: #f1f1f1;
}

/*.ud-body {*/
/*    padding: 20px !important;*/
/*}*/

.form-check-label {
    font-size: 12px;
}

form .password-group {
  position: relative;
}
form .password-group .pass-view {
  position: absolute;
  right: 10px;
  top: 43px;
}

.direct-to-wishlist {
    text-decoration: none;
    color: #000;
    font-size: 10px;
}

.skeleton .img-box {
    height: 250px;
    background: #e5e5e5;
    border-radius: 8px;
}

.skeleton .line {
    background: #e5e5e5;
    height: 12px;
    margin-top: 10px;
    border-radius: 4px;
}

.skeleton .title {
    width: 80%;
}

.skeleton .price {
    width: 40%;
}

.skeleton {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: .4; }
    100% { opacity: 1; }
}


/* Skeleton Base */
.skeleton-cart {
    animation: cart-pulse 1.5s infinite ease-in-out;
}

.skeleton-img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    background: #e0e0e0;
}

.skeleton-text {
    height: 16px;
    background: #e0e0e0;
    margin-bottom: 12px;
    border-radius: 4px;
}

.skeleton-text.title {
    width: 70%;
    height: 20px;
}

.skeleton-text.small {
    width: 50%;
}

.skeleton-summary .skeleton-text {
    height: 18px;
}

/* Animation */
@keyframes cart-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}



.nav_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
}

#product-sections {
    row-gap: 40px;
}

nav.navbar {
  box-shadow: 0 0 3px 1px rgba(114, 135, 156, .15);
  background-color: var(--white_bg);
  border: var(--border);
  padding: 5px 10px;
  /* border-radius: 3rem; */
}

nav.navbar .nav-item .nav-link {
  font-size: .7em;
  font-weight: 700;
  color: var(--black_bg);
  text-transform: uppercase;
}

nav.navbar .navbar-nav {
  gap: 30px;
}

nav.navbar .navbar-nav .book-appointment {
  background-color: var(--brand_color);
  color: var(--white_bg);
  border-radius: 3em;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


nav.navbar .navbar-nav .book-appointment span {
  width: 30px;
  height: 30px;
  background-color: var(--white_bg);
  color: var(--brand_color);
  padding: 10px 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

nav.navbar .navbar-nav .book-appointment span i {
  color: var(--brand_color);
}

nav.navbar .navbar-brand {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--black_bg);
}

 .success_page {
	width: 100%;
	/*height: 100vh;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.success_page.hero {
    /*padding: 15px;*/
}

.success_page .success_box {
	display: flex;
	flex-direction: column;
	gap: 30px;
	background-color: var(--white_bg);
  padding: 30px;
  box-shadow: 1px 3px 30px rgba(0, 0, 0, .06);
  border-radius: 1.5em;
  margin-top: 10em;
  margin-bottom: 4em;
}

.success_page .success_box h2 {
	font-weight: 900;
	font-size: 1.5em;
	margin-bottom: 0;
}

.success_page .success_box i {
	font-size: 2em;
	margin-bottom: 20px;
	color: var(--brand_color);
}


.success_page .success_box .pay_info .item-box {
	display: flex;
	flex-direction: row;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.success_page .success_box .pay_info .item-box:last-child {
	border-bottom: none;
}

.success_page .success_box .pay_info .item-box .item-body {
	margin-left: auto;
}

.success_page .success_box p {
	font-weight: 500;
	font-size: .85em;
	margin-bottom: 0;
}

.success_page .success_box .home_btn a {
	background-color: var(--brand_color);
	color: #fff;
}   

.carousel-container {
  position: relative;
  /* width: 100vw; */
  height: 100vh;
  overflow: hidden;
  /* border-radius: 15px; */
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: all 1.5s ease-in-out;
  /* border-radius: 40px; */
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide.next {
  transform: translateX(100%) scale(0.9);
  opacity: 0;
}

.carousel-slide.prev {
  transform: translateX(-100%) scale(0.9);
  opacity: 0;
}

.slide-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /*filter: brightness(0.7);*/
  /* border-radius: 60px; */
}

.slide-fragments {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
  opacity: 0;
  transition: all 0.8s ease;
}

.carousel-slide.active .slide-fragments {
  opacity: 1;
}

.fragment {
  background-size: 800% 600%;
  background-repeat: no-repeat;
  transform: scale(0.9) rotateY(15deg);
  transition: all 0.9s ease-in-out;
  /* smoother */
  opacity: 0;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 85%);
}

.carousel-slide.active .fragment {
  transform: scale(1) rotateY(0deg);
  opacity: 1;
}

/* Give odd fragments slightly slower easing for variety */
.fragment:nth-child(odd) {
  transition: all 1.1s ease-in-out;
}

.slide-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-10%);
  width: 40%;
  /* height: 100%; */
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
  border-radius: 30px;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.3) 80%,
      transparent 100%);
  /* backdrop-filter: blur(20px); */
  /* -webkit-backdrop-filter: blur(20px);
            mask: linear-gradient(to right, 
                black 0%, 
                black 30%, 
                rgba(0, 0, 0, 0.8) 50%, 
                rgba(0, 0, 0, 0.3) 70%, 
                transparent 100%);
            -webkit-mask: linear-gradient(to right, 
                black 0%, 
                black 30%, 
                rgba(0, 0, 0, 0.8) 50%, 
                rgba(0, 0, 0, 0.3) 70%, 
                transparent 100%); */
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.3s;
  background: var(--white_bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
  color: #ccc;
}

.carousel-slide.active .slide-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.slide-button {
  padding: 10px 10px;
  background: var(--white_bg);
  border: none;
  width: 150px;
  border-radius: 30px;
  color: var(--black_bg);
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.7s;
  text-align: center;
  text-decoration: none;
}

.carousel-slide.active .slide-button {
  opacity: 1;
  transform: translateY(0);
}

.slide-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.carousel-navigation {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: var(--brand_color);
  transform: scale(1.2);
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.arrow {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
  }

  .slide-content {
    left: 5%;
    max-width: 90%;
  }

  .slide-fragments {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

.about {
  padding: 100px 15px;
}

.about .col-md-4 .img-box {
  width: 100%;
  height: 600px;
}

.about .col-md-4 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .8em;
}

.about .col-md-6 .img-box {
  width: 100%;
  height: 400px;
}

.about .col-md-6 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .8em;
}

.about .about-img-box {
  width: 100%;
  height: 70vh;
}

.about .about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about .about-box {
  margin: 50px 0;
}

.about .about-box h2 {
  font-size: 2em;
  font-weight: 800;
}

.about .about-box p {
  font-size: .9em;
  font-weight: 500;
  line-height: 1.8;
}

.about .info-box .data-box {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
  border-radius: .9em;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-color: var(--white_bg);
  border: var(--border);
}

.about .info-box .data-box h3 {
  font-size: 1.2em;
  font-weight: 800;
}

.about .info-box .data-box p {
  font-size: .8em;
  font-weight: 500;
  margin-bottom: 5px;
}

.about .facilities-box {
  margin: 30px 0;
}

.about .facilities-box .box {
  box-shadow: 0px 15px 50px 0px rgba(27, 32, 50, 0.1);
  border-radius: .5em;
  transition: all .4s ease-in-out;
}

.about .facilities-box .box .img-box {
  height: 150px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}

.about .facilities-box .box .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
  overflow: hidden;
  transition: all .4s ease-in-out;
}

.about .facilities-box .box h3 {
  font-weight: 800;
  font-size: 1em;
  padding: 15px;
  margin-bottom: 0;
}

.row-gap {
    row-gap: 35px;
}

.about .facilities-box .row {
  row-gap: 35px;
}

.about .facilities-box h2 {
  font-size: 2em;
  font-weight: 800;
}

.about .facilities-box {
  padding: 50px 15px;
}

.values {
  padding: 100px 15px;
}

.values .img-box {
  width: 100%;
  height: 40vh;
  padding: 0 30px;
}

.values .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.gallery {
  padding: 100px 15px;
}

.gallery .image-gallery {
  width: 100%;
  /* max-width: 3000px; */
  margin: 0 auto;
  /* margin-top: 0px;
    margin-bottom: 0px; */
  padding: 50px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
  grid-gap: 10px;
  /* margin-top: 50px;
  margin-bottom: 10px; */
}

.gallery .image-gallery .img-box:nth-child(7n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery .image-gallery .img-box {
  position: relative;
  background-color: #f6f6f6;
  overflow: hidden;
  border-radius: 3px;
}

.gallery .image-gallery .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.heading {
  margin-bottom: 100px;
}

.heading h3 {
  font-size: 1em;
  color: var(--inactive_link);
  margin-bottom: 0;
}


.heading .d-flex {
  gap: 5px;
}

.heading h2 {
  font-size: 3.5em;
  color: var(--black_bg);
  font-weight: 800;
}

.heading p {
  font-size: 1.2em;
  color: var(--inactive_link);
  font-weight: 500;
}

.heading.d-flex.flex-column {
  gap: 10px !important;
}

.heading a {
  background-color: var(--brand_color);
  color: var(--white_bg);
  border-radius: 3em;
  padding: 15px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 150px;
  gap: 10px;
  font-size: 1em;
  font-weight: 500;
}

.heading-bottom {
  margin-top: 100px;
}

.about .text-box p {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--black_bg);
}

.about .text-box a {
  font-size: 1em;
  color: var(--black_bg);
  text-decoration: none;
  border-bottom: 1px solid var(--black_bg);
}

.about .text-box {
  padding: 50px 0;
}

.programs {
  padding: 50px 15px;
}

.programs .img-box {
  width: 100%;
  height: 500px;
  position: relative;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%,  rgba(0, 0, 0, 0.5) 50%,  rgb(0, 0, 0) 100%); */
}

.programs .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .8em;
}

.programs .img-box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, .75) 25%, rgba(0, 0, 0, 0));
  padding: 20px;
  border-radius: .8em;
}

.programs .img-box .text h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--white_bg);
}

.programs .img-box .text p {
  font-size: .85em;
  color: var(--white_bg);
  margin-bottom: 0;
}

.process {
  padding: 50px 15px;
}

.process .d-flex.flex-column {
  gap: 50px;
}

.process .d-flex.flex-column .item-box {
  box-shadow: 0px 15px 50px 0px rgba(27, 32, 50, 0.1);
  border-radius: 1.5em;
  transition: all .4s ease-in-out;
  padding: 50px;
}

.process .d-flex.flex-column:first-child .item-box {
  border-top: var(--border-bottom);
}

.process .d-flex.flex-column .item-box .text-box h2 {
  font-size: 2em;
  font-weight: 800;
}

.process .d-flex.flex-column .item-box .text-box p {
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: 500;
  /* margin-bottom: 0; */
}

.process .d-flex.flex-column .item-box .text-box ul {
  list-style: none;
  margin-bottom: 0;
}

.process .d-flex.flex-column .item-box .text-box ul li {
  padding: 10px 0;
  font-size: 1em;
  font-weight: 500;
}

.process .d-flex.flex-column .item-box .text-box ul li i {
  color: var(--brand_color);
}

/* .process .d-flex.flex-column .item-box .img-box{
  width: 100%;
  height: 200px;
} */

.process .d-flex.flex-column .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing {
  padding: 50px 15px;
}

.pricing .tab-box .nav.nav-mobile-role {
  background-color: #fafafa;
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 2em;
}

.pricing .tab-box {
  gap: 50px;
}

.pricing .tab-box .nav.nav-mobile-role .nav-item .nav-link.active {
  background-color: var(--white_bg);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .09);
  border-radius: 2em;
  font-weight: 600;
}

.pricing .tab-box .nav.nav-mobile-role .nav-item .nav-link {
  text-decoration: none;
  color: var(--black_bg);
  font-size: .95em;
  font-weight: 500;
}

.pricing .tab-box .price-data-box {
  background-color: #fff;
  box-shadow: 0px 15px 50px 0px rgba(27, 32, 50, 0.1);
  transition: all .4s ease-in-out;
  padding: 30px;
  border-radius: .8em;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: var(--border);
}

.pricing .tab-box .price-data-box h3 {
  font-size: 1.5em;
  margin-bottom: 0;
  font-weight: 800;
}

.pricing .tab-box .price-data-box h4 {
  font-size: 1em;
  margin-bottom: 0;
  font-weight: 700;
}

.pricing .tab-box .price-data-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing .tab-box .price-data-box ul li {
  padding: 10px 0;
  font-size: .85em;
}

.pricing .tab-box .price-data-box ul li i {
  color: var(--brand_color);
}

.pricing .tab-box .price-data-box a {
  background-color: var(--brand_color);
  color: var(--white_bg);
  border-radius: 3em;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.faq {
  padding: 50px 15px;
}

.faq .accordion-button {
  padding: 25px 0;
  font-size: .5em;
  font-weight: 600;
}

.faq .accordion-body {
  font-size: .9em;
  line-height: 2;
}

.testimonial-container {
  overflow: hidden;
}

.testimonials {
  padding: 50px 15px;
}

.testimonial-track {
  display: inline-flex;
  animation: scroll 50s linear infinite;
}

.testimonial {
  background-color: #fff;
  border: 1px solid var(--brand_color);
  border-radius: 10px;
  padding: 30px;
  margin: 0 15px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial p {
  font-size: .9em;
  line-height: 2;
  font-weight: 500;
}

.testimonial .d-flex {
  gap: 15px;
}

.testimonial .img-box {
  width: 30px;
  height: 30px;
}

.testimonial .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial h4 {
  margin: 0;
  font-size: .8em;
  font-weight: 600;
  color: #333;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.location {
  padding: 50px 15px;
}

.location .item-box {
  /* box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 15px 50px 0px rgba(27, 32, 50, 0.1);
  border-radius: .8em;
  transition: all .4s ease-in-out;
}

.location .item-box:hover .img-box img {
  transform: scale(1.05);
}

.location .item-box .img-box {
  height: 400px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: .8em;
  border-top-right-radius: .8em;
}

.location .item-box .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: .8em;
  border-top-right-radius: .8em;
  overflow: hidden;
  transition: all .4s ease-in-out;
}

.location .item-box .text-box {
  padding: 20px;
}

.location .item-box .text-box h2 {
  font-weight: 800;
  font-size: 1.1em;
}

.location .item-box .text-box p {
  font-weight: 500;
  font-size: .8em;
}

.location .item-box .text-box a {
  font-weight: 300;
  font-size: .8em;
  color: var(--brand_color);
  text-decoration: none;
  border-bottom: 1px solid var(--brand_color);
}


.intelude {
  padding: 100px 15px;
  width: 100%;
  height: auto;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.94) 35%, rgba(0, 0, 0, 0)), url('https://framerusercontent.com/images/24jhdUHWvxlInGAXhURXveQtI.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intelude .text-box h2 {
  font-size: 3em;
  font-weight: 800;
  color: var(--white_bg);
  margin-bottom: 0;
}

.intelude .text-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.intelude .text-box p {
  font-size: 1.3em;
  font-weight: 500;
  color: var(--white_bg);
  margin-bottom: 0;
}

.intelude .text-box a {
  color: var(--brand_color);
  background-color: var(--white_bg);
  padding: 15px 15px;
  border-radius: 3em;
  font-size: .9em;
  font-weight: 500;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 10px;
}

.intelude .text-box a span {
  width: 30px;
  height: 30px;
  background-color: var(--brand_color);
  padding: 10px 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.intelude .text-box a span i {
  color: var(--white_bg);
}

.footer {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.983), rgba(0, 0, 0, 0.98) 55%);
  padding: 50px 15px;
}

.footer .infoBox h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--white_bg);
}

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

.footer .infoBox ul li {
  font-size: .8em;
  padding: 5px 0;
  color: var(--white_bg);
}

.footer .infoBox ul li a {
  text-decoration: none;
  color: var(--white_bg);
  font-weight: 600;
}

.footer .infoBox i {
  color: var(--white_bg);
}

.footer .logo-box p {
  color: var(--white_bg);
  font-weight: 500;
}

.footer .footerBottom {
  text-align: center;
  border-top: 1px solid rgba(135, 135, 135, 0.09);
  padding-top: 30px;
  margin-top: 20px;
}

.footer .footerBottom p {
  margin-bottom: 0;
  font-size: .8em;
  color: #777;
  font-weight: 500;
}

.hero-banner {
  width: 100%;
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  /* padding-bottom: 50px; */
}

.hero-banner .text-box {}

.hero-banner .text-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.hero-banner .text-box h1 {
  color: var(--white_bg);
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 800;
  text-align: left;
}

.hero-banner .text-box p {
  color: var(--white_bg);
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 300;
  padding-right: 100px;
  text-align: left;
}

.hero-banner .text-box a {
  color: var(--brand_color);
  background-color: var(--white_bg);
  padding: 15px 15px;
  border-radius: 3em;
  font-size: .9em;
  font-weight: 500;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 10px;
}

.hero-banner .text-box a span {
  width: 30px;
  height: 30px;
  background-color: var(--brand_color);
  padding: 10px 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero-banner .text-box a span i {
  color: var(--white_bg);
}

.heading.fff-section {
  margin-bottom: 15px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, .099);
  padding-bottom: 30px;
  /* border-bottom: 1px solid var(--brand_color); */
}

.heading.fff-section h2 {
  color: var(--black_bg);
  font-size: 1.5em;
  font-weight: 800;
  margin-bottom: 0;
}

.heading.fff-section a {
  font-size: 1em;
  text-decoration: none;
  position: relative;
  top: 10px;
  color: var(--white_bg);
  font-size: .8em;
}

.heading.fff-section a i {
  font-size: .8em;
}

.product-display {
  padding: 20px 15px;
}

.product-display .store-item {
  border: 1px solid rgba(0, 0, 0, .05);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
}

.product-display .store-item .img-box {
  width: 100%;
  height: 300px;
}

.product-display .store-item .img-box img {
  width: 100%;
  height: 100%;
   border-radius: 6px;
  object-fit: cover;
}

.product-display .store-item a {
  color: var(--black_bg);
  text-decoration: none;
}


.product-display .store-item a .text-box h2 {
  color: var(--black_bg);
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 0;
}

.product-display .store-item a .text-box span {
  color: var(--brand_color);
  font-size: .8em;
  font-weight: 500;
}

.data-breadcrumb {
  margin-top: 100px;
}

.data-breadcrumb .breadcrumb {
  gap: 20px;
  align-items: center;
}

.data-breadcrumb .breadcrumb a {
  text-decoration: none;
  color: var(--black_bg);
  font-size: .8em;
  font-weight: 500;
}

.data-breadcrumb .breadcrumb i {
  font-size: .7em;
}

.data-product-prev {
  padding: 50px 15px;
}

.data-product-prev .carousel-item {
  width: 100%;
  height: 650px;
  border: var(--border);
  padding: 15px;
  border-radius: 10px;
}

.data-product-prev .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.data-product-prev .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .099); */
  background-color: var(--brand_color);
}

.data-product-prev .carousel-indicators {
  margin-bottom: 0;
  bottom: -30px;
}

.data-product-prev .product-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.data-product-prev .product-desc span.category {
  font-size: .9em;
  font-weight: 500;
  color: var(--inactive_link);
}

.data-product-prev .product-desc span.cost {
  font-size: .9em;
  font-weight: 600;
  color: var(--brand_color);
}

.data-product-prev .product-desc h2 {
  font-size: 1.5em;
  font-weight: 800;
  color: var(--black_bg);
  margin-top: 15px;
}

.data-product-prev .product-desc .add-to-cart {
  font-size: .8em;
  font-weight: 600;
  color: var(--white_bg);
  background-color: var(--black_bg);
  border-radius: 0;
}

.data-product-prev .product-desc .add-to-wishlist {
  font-size: .8em;
  color: var(--black_bg);
  background-color: var(--white_bg);
  border: 1px solid var(--black_bg);
  border-radius: 0;
}

.data-product-prev .product-desc .box-2 .d-flex {
  gap: 15px;
}

.data-product-prev .product-desc .box-3 .accordion-button {
  padding: 20px 0;
  font-size: .6em;
  font-weight: 600;
}


.data-product-prev .product-desc .box-3 .accordion-body {
  font-size: .85em;
  font-weight: 500;
  line-height: 1.8;
  border-left: 4px solid #232323;
}

.data-product-prev .product-desc .box-3 .accordion-body p{
    margin-bottom: 0;
}


.data-product-prev .product-desc .box-3 .accordion-body .d-flex {
  gap: 20px;
}

.data-product-prev .product-desc .box-3 .accordion-body ul li {
  padding: 5px;
  font-size: .8em;
}

.data-product-prev .product-desc .box-3 .accordion-body .review-item {
  border: var(--border);
  padding: 15px;
}

.data-product-prev .product-desc .box-3 .accordion-body .review-item span.date {
  font-size: .9em;
  font-weight: 500;
  color: var(--inactive_link);
}

.data-product-prev .product-desc .box-3 .accordion-body .review-item h3 {
  font-size: 1.2em;
  font-weight: 800;
  color: var(--black_bg);
  margin-top: 15px;
}

.data-product-prev .product-desc .box-3 .accordion-body .review-item p {
  font-size: 1em;
  font-weight: 400;
  color: var(--black_bg);
}

.data-product-prev .product-desc .box-3 .accordion-body .review-item span.reviewer {
  font-size: 1em;
  font-weight: 600;
  color: var(--inactive_link);
}

.data-product-prev .product-desc .box-3 .accordion-body .review-item .review-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  /* border-radius: .7em; */
}

.data-product-prev .product-desc .box-3 .accordion-body .review-item .review-img {
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.counter-container {
  display: flex;
  align-items: center;
  gap: 10px;
}


#quantity {
  width: 40px;
  text-align: center;
  font-size: 18px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cart-display {
  padding: 50px 15px;
}

.cart-display .summary-box {
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  gap: 20px;
}

.add-address-btn {
    cursor: pointer;
    font-size: 12px;
}

.cart-display .summary-box h2 {
  margin-bottom: 0;
  font-size: 1.3em;
  font-weight: 800;
}

.cart-display .summary-box .d-flex h4 {
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 600;
}

.cart-display .summary-box .d-flex h5 {
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 800;
}

.cart-display .summary-box button {
  font-size: 1em;
  font-weight: 600;
  background: var(--black_bg);
  color: var(--white_bg);
  border-radius: 5px;
}

.cart-display .cart-item {
  border: var(--border);
  padding: 15px;
  border-radius: 10px;
}

.cart-display .cart-item .img-box {
  width: 100%;
  height: 250px;
  border: var(--border);
  padding: 10px;
  border-radius: 8px;
}

.cart-display .cart-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   border-radius:5px;
}

.cart-display .cart-item a {
  text-decoration: none;
  color: var(--black_bg);
}

.cart-display .cart-item a .text-box h2 {
  font-size: 1.2em;
  color: var(--black_bg);
  font-weight: 700;
}

.cart-display .cart-item a .text-box .d-flex span.category {
  font-size: .8em;
  color: var(--inactive_link);
  font-weight: 600;
}

.cart-display .cart-item a .text-box .d-flex span.cost {
  font-size: .8em;
  color: var(--brand_color);
  font-weight: 600;
}


.cart-display .cart-item .d-flex .btn.trash {
  color: var(--brand_color);
}

.cart-display .item-flex {
  gap: 30px;
}

.app-auth {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.94) 35%, rgba(0, 0, 0, 0)), url('https://framerusercontent.com/images/24jhdUHWvxlInGAXhURXveQtI.jpg');
  background-position: center;
  background-size: cover;
}

.app-auth .form-box {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.app-auth .form-box .wrapper {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
  border-radius: .9em;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-color: var(--white_bg);
  border: var(--border);
}

.app-auth .form-box .wrapper h2 {
  font-weight: 800;
  font-size: 2em;
  padding: 0 80px;
}

.app-auth .form-box form label {
  font-size: .8em;
  margin-bottom: 10px;
  font-weight: 500;
}

.app-auth .form-box form input {
  height: calc(2.5em + .75rem + 2px);
  color: var(--black_bg);
  border-radius: 5px;
  padding-left: 20px;
  font-size: .8em;
  font-weight: 500;
}

.app-auth .form-box form select {
  height: calc(2.5em + .75rem + 2px);
  color: var(--black_bg);
  border-radius: 5px;
  padding-left: 20px;
  font-size: .8em;
  font-weight: 500;
}


.app-auth .form-box .route span {
  color: var(--inactive_link);
  font-size: .9em;
}

.app-auth .form-box .route a,
.app-auth .form-box .form-group a {
  color: var(--brand_color);
  text-decoration: none;
  font-size: .9em;
}

.app-auth .form-box form button.formBtn {
  height: calc(2.5em + .75rem + 2px);
  color: var(--white_bg);
  background-color: var(--brand_color);
  border-radius: 10px;
  font-size: 1em;
  font-weight: 600;
}

.btn-check:checked+.btn {
  background-color: var(--brand_color);
  color: #fff;
  border-color: var(--brand_color);
}

.btn {
  /* min-width: 120px; */
  /* make them more button-like */
}

.contact-box {
  padding: 150px 15px;
}

.contact-box .text-box {
  padding: 0 30px;
}

.contact-box .text-box .box {
  margin-bottom: 30px;
  margin-top: 20px;
}

.contact-box .text-box h2.title {
  font-size: 3em;
  font-weight: 900;
}


.contact-box .text-box .box span {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
}

.contact-box .text-box .box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
  margin-top: 10px;
}

.contact-box .text-box .box p a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.contact-box .text-box p.subtitle {
  font-size: 1.2em;
  font-weight: 500;
}

.contact-box .text-box .box.socials .social-icons {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 20px;
  margin-top: 10px;
}

.contact-box .text-box .box.socials a {
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black_bg);
  border-radius: 50%;
}

.contact-box .text-box .box.socials a i {
  color: #fff;
  position: absolute;
  font-size: 12px;
}

.contact-box .form-box h2 {
  font-size: 2em;
  font-weight: 700;
  color: #333;
}

.contact-box form {
  margin-top: 30px;
}

.contact-box .form-box .form-group {
  margin-bottom: 20px;
}

.contact-box .form-box label {
  font-size: 11px;
  color: #555;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-box .form-box input {
  font-size: 13px;
  color: #333;
  background: transparent;
  height: calc(2.5em + .75rem + 2px);
  border-radius: .6em;
}

.contact-box .form-box textarea {
  font-size: 13px;
  color: #333;
  background: transparent;
  border-radius: .6em;
}

.contact-box .form-box button[type="submit"] {
  border: 1px solid var(--black_bg);
  border-radius: 1em;
  transition: all .5s ease-in-out;
  background: var(--black_bg);
  color: #fff;
  font-size: 13px;
  height: calc(3.5em + .75rem + 2px);
}

.location-wrapper .form-box .wrapper {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
  border-radius: .9em;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-color: var(--white_bg);
  border: var(--border);
}

.location-wrapper .form-box .wrapper h2 {
  font-weight: 800;
  font-size: 2em;
  padding: 0 80px;
}

.location-wrapper .form-box form label {
  font-size: .8em;
  margin-bottom: 5px;
  font-weight: 500;
}

.location-wrapper .form-box form input {
  height: calc(2em + .75rem + 2px);
  color: var(--black_bg);
  border-radius: 5px;
  padding-left: 20px;
  font-size: .7em;
  font-weight: 500;
}

.location-wrapper .form-box form select {
  height: calc(2em + .75rem + 2px);
  color: var(--black_bg);
  border-radius: 5px;
  padding-left: 20px;
  font-size: .7em;
  font-weight: 500;
}

.location-wrapper .form-box form button.formBtn {
  height: calc(2em + .75rem + 2px);
  color: var(--white_bg);
  background-color: var(--brand_color);
  border-radius: 10px;
  font-size: .8em;
  font-weight: 600;
}

@media screen and (max-width:1440px) {
  .slide-title {
    font-size: 2.8rem;
  }

  nav.navbar .nav-item .nav-link {
    font-size: .6em;
    font-weight: 800;
  }

  nav.navbar .navbar-nav {
    gap: 20px;
  }

  .about .text-box p {
    font-size: 1.2em;
  }

  .about .col-md-4 .img-box {
    width: 100%;
    height: 500px;
  }

  .heading h2 {
    font-size: 2.8em;
    color: var(--black_bg);
    font-weight: 800;
  }

  .heading p {
    font-size: 1em;
    color: var(--inactive_link);
    font-weight: 500;
    line-height: 1.8;
  }

  .heading {
  margin-bottom: 70px;
}

  .heading a {
    padding: 10px 5px;
  }

  .heading-bottom {
  margin-top: 50px;
}

  .programs .img-box {
    width: 100%;
    height: 350px;
  }

  .programs .img-box .text p {
    font-size: .75em;
  }

  .process .d-flex.flex-column .item-box {
    padding: 30px;
  }

  .process .d-flex.flex-column .item-box .text-box p {
    font-size: .85em;
    line-height: 2;
  }

  .process .d-flex.flex-column .item-box .text-box ul li {
    padding: 5px 0;
    font-size: .8em;
    font-weight: 500;
  }

  .process .d-flex.flex-column .item-box .text-box h2 {
    font-size: 1.5em;
    font-weight: 800;
  }

  .location .item-box .img-box {
    height: 300px;
    border-top-left-radius: .6em;
    border-top-right-radius: .6em;
  }

  .location .item-box .img-box img {
    border-top-left-radius: .6em;
    border-top-right-radius: .6em;
  }
  .location .item-box .text-box {
  padding: 15px;
}
.location .item-box .text-box h2 {
  font-weight: 800;
  font-size: 1em;
}
.location .item-box .text-box p {
  font-weight: 500;
  font-size: .75em;
}
.pricing .tab-box {
  gap: 30px;
}
.pricing .tab-box .price-data-box {
  padding: 20px;
  border-radius: .6em;
  gap: 15px;
}
.pricing .tab-box .price-data-box ul li {
  padding: 10px 0;
  font-size: .75em;
}
.pricing .tab-box .price-data-box a {
  font-size: .8em;
  font-weight: 600;
}
.faq .accordion-button {
  font-size: .4em;
}
.testimonial {
  background-color: rgba(255, 205, 205, 0.039);
  border: 1px solid #fea4a4;
  border-radius: 10px;
  padding: 20px;
}
.testimonial p {
  font-size: .8em;
  line-height: 2;
  font-weight: 500;
}
.intelude .text-box h2 {
  font-size: 2.5em;
  font-weight: 800;
  color: var(--white_bg);
  margin-bottom: 0;
}

.intelude .text-box a {
  padding: 10px 15px;
  width: 200px;
}
.footer {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.983), rgba(0, 0, 0, 0.98) 55%);
  padding: 30px 15px;
}

.values .img-box {
  width: 100%;
  height: 40vh;
  padding: 0 0;
}

.values {
  padding: 50px 15px;
}

.about .about-img-box img {
  border-radius: .6em;
}

.gallery .image-gallery .img-box:nth-child(7n+1) {
  grid-column: span 1;
  grid-row: span 1.5;
}

.app-auth .form-box .wrapper h2 {
  font-size: 1.5em;
  padding: 0 20px;
}

.app-auth .form-box form select {
  height: calc(2em + .75rem + 2px);
}
.app-auth .form-box form input {
  height: calc(2em + .75rem + 2px);
}

.app-auth .form-box form button.formBtn {
  height: calc(2em + .75rem + 2px);
  border-radius: .6em;
  font-size: .8em;
}

.app-auth .form-box form label {
  font-size: .8em;
  margin-bottom: 3px;
}
.location-wrapper .form-box .wrapper {
  /* padding: 15px 15px; */
}
.about {
  padding: 50px 15px;
}
.about .about-box h2 {
  font-size: 1.5em;
  font-weight: 800;
}
.about .about-box p {
  font-size: .8em;
}
.about .info-box .data-box h3 {
  font-size: 1em;
  font-weight: 800;
}
.about .facilities-box {
  padding: 50px 15px;
}
.about .facilities-box {
  margin: 0 0;
}
.about .facilities-box h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.about .facilities-box .box .img-box {
  height: 100px;
}
.about .facilities-box .box h3 {
  font-weight: 800;
  font-size: .8em;
  padding: 10px;
  margin-bottom: 0;
}
.about .facilities-box .box {
  border-radius: .5em;
}
.product-display .store-item .img-box {
  width: 100%;
  height: 200px;
}
.product-display .store-item {
  padding: 10px;
}
.product-display .store-item a .text-box h2 {
  font-size: .9em;
  font-weight: 800;
}
.hero-banner .text-box h1 {
  font-size: 2.5em;
  font-weight: 900;
}
.hero-banner .text-box p {
  font-size: 1.3em;
  font-weight: 500;
  padding-right: 100px;
}
.cart-display .cart-item .img-box {
  padding: 10px;
}
.cart-display .cart-item {
  border: var(--border);
  padding: 10px;
}

.data-product-prev .carousel-item {
  height: 600px;
  border: var(--border);
  padding: 10px;
}
.data-product-prev .product-desc .box-3 .accordion-button {
  padding: 12px 0;
  font-size: .5em;
  font-weight: 700;
}

.data-product-prev .product-desc .box-3 .accordion-body {
  font-size: .75em;
  font-weight: 500;
  line-height: 2;
}
.gallery {
  padding: 50px 15px;
}
}

@media screen and (max-width:1366px) {
.slide-content {
  padding: 20px 20px;
  border-radius: 15px;
}
  .slide-title {
    font-size: 2.5rem;
  }
  .slide-subtitle {
  font-size: 1rem;
  line-height: 1.8;
}
 .heading h2 {
    font-size: 2.5em;
  }
   .location .item-box .img-box {
    height: 250px;
  }
    .location .item-box .text-box p {
    margin-bottom: 5px;
  }
  .pricing .tab-box .price-data-box h3 {
  font-size: 1.2em;
}
.pricing .tab-box .price-data-box h4 {
  font-size: .9em;
}
  .pricing .tab-box .price-data-box ul li {
    padding: 7px 0;
  }
  .footer .logo-box p {
  font-size: .8em;
}
.pricing .tab-box .nav.nav-mobile-role {
  padding: 4px;
}
.pricing .tab-box .nav.nav-mobile-role .nav-item .nav-link {
  font-size: .85em;
}
.programs .img-box .text {
width: 100%;
}
}

@media screen and (max-width:1024px) {
    .location .item-box .img-box {
    height: 200px;
  }
    .location .item-box .text-box p {
    font-weight: 500;
    font-size: .7em;
  }
  .slide-title {
    font-size: 2.2em;
  }
  .slide-subtitle {
    font-size: .9em;
  }
    nav.navbar .navbar-nav {
    gap: 15px;
  }
    .heading p {
    font-size: .9em;
  }
  .about .about-img-box {
  width: 100%;
  height: 50vh;
}
 .values .img-box {
    width: 100%;
    height: 25vh;
    padding: 0 0;
  }
  .hero-banner {
  width: 100%;
  height: 50vh;
}
  .hero-banner .text-box h1 {
    font-size: 2em;
    font-weight: 900;
  }
    .hero-banner .text-box p {
    font-size: 1.2em;
  }
  .cart-display .cart-item .img-box {
  height: 200px;
}
.cart-display .cart-item a .text-box h2 {
  font-size: 1em;
  margin-bottom: 5px;
}
.cart-display .summary-box {
  padding: 10px;
  gap: 20px;
}
.cart-display .summary-box .d-flex h4 {
  margin-bottom: 0;
  font-size: .8em;
  font-weight: 600;
}
.cart-display .summary-box .d-flex h5 {
  margin-bottom: 0;
  font-size: .8em;
  font-weight: 800;
}
.cart-display .summary-box h2 {
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 800;
}
.cart-display .summary-box button {
  font-size: .8em;
}
}

@media screen and (max-width:956px) {
  .about .info-box .data-box {
  padding: 15px;
  gap: 20px;
  margin-bottom: 30px;
}
 .about .facilities-box .box h3 {
    font-size: .6em;
    padding: 6px;
  }
    .intelude .text-box h2 {
    font-size: 2em;
  }
  .intelude .text-box {
  gap: 10px;
}
.intelude {
  padding: 50px 15px;
  width: 100%;
}
.slide-content {
  width: 60%;
}
  .heading {
    margin-bottom: 30px;
  }
  .process .d-flex.flex-column {
  gap: 30px;
}
 .programs .img-box {
    width: 100%;
    height: 300px;
  }
  .programs .img-box .text {
  padding: 10px;
}

.ry-5 {
  row-gap: 30px;
}

.flex-column.ry-5 {
    gap: 20px;
}

  .location .item-box .img-box {
    height: 300px;
  }
  .footer .infoBox h3 {
  font-size: 1em;
  font-weight: 800;
  color: var(--white_bg);
}
.about-page {
  margin-top: 50px;
}
  .heading h2 {
    font-size: 2em;
  }
    .heading p {
    font-size: .8em;
  }
  .contact-box {
  padding: 100px 15px;
}
.contact-box .text-box h2.title {
  font-size: 2.5em;
  font-weight: 900;
}
.contact-box .text-box .box {
  margin-bottom: 10px;
  margin-top: 10px;
}

.contact-box .text-box {
  padding: 30px 0;
}
.data-product-prev {
  padding: 30px 15px;
}
.hidden {
  display: none;
}
}

@media screen and (max-width:567px) {
  .slide-content {
    width: 100%;
    bottom: 3%;
    transform: translateY(0);
    top: auto;
    z-index: 99999;
  }
    .slide-title {
    font-size: 1.5em;
  }
    .slide-subtitle {
    font-size: .8em;
  }
  .carousel-arrows {
      padding:  0 15px;
  }
/*  .data-breadcrumb {*/
/*  margin-top: 40px;*/
/*}*/
 .data-product-prev {
    padding: 0 15px;
  }
  .carousel-navigation {
    display: none;
  }
  .about .text-box {
  padding: 30px 0;
  padding-bottom: 0;
}
  .programs .img-box {
    width: 100%;
    height: 350px;
  }
  .process .img-box {
     width: 100%;
    height: 200px;
    padding: 20px;
  }
    .values .img-box {
    width: 100%;
    height: 30vh;
    padding: 0 0;
    padding-bottom: 15px;
  }

  .values .img-box img {
  border-radius: 10px;
  }
  .gallery .image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-gap: 4px;
    margin-top: 30px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
    .gallery .image-gallery .img-box:nth-child(7n+1) {
    grid-column: unset;
    grid-row: unset;
  }

  .intelude .text-box p {
  font-size: 1em;;
  margin-bottom: 10px !important;
}
  .hero-banner {
    width: 100%;
    height: 45vh;
  }
    .hero-banner .text-box h1 {
    font-size: 1.5em;
    font-weight: 900;
  }

    .hero-banner .text-box p {
    font-size: 1em;
    padding-right: 0;
  }
  .heading.fff-section a {
  top: 0;
}
.heading.fff-section h2 {
  font-size: 1.3em;
}

  .product-display .store-item .img-box {
    width: 100%;
    height: 250px;
  }

    .cart-display .cart-item .img-box {
    height: 250px;
  }

  .cart-display .text-box-group {
    gap: 20px;
  }

  .cart-display {
  padding: 20px 15px;
}
.about-page   .heading {
    margin-bottom: 20px;
  }

  .about-page .heading p{
    margin-bottom: 0;
  }

   .about .info-box .data-box {
    padding: 20px;
  }
  .about .facilities-box .row {
  row-gap: 25px;
}
}