/* ===== Container chính ===== */
.section-home-carousel {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
}

/* ===== Desktop ===== */
.banner-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  /* chiều cao banner desktop */
  border-radius: 16px;
  overflow: hidden;

  display: flex;
  /* flexbox thay vì absolute */
  flex-direction: column;
  justify-content: center;
  /* căn giữa dọc */
  align-items: center;
  /* căn giữa ngang */
}

/* ===== Mobile ===== */
.banner-wrapper-mobile {
  position: relative;
  width: 100%;
  min-height: 400px;
  /* chiều cao banner mobile */
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===== Ảnh nền ===== */
.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===== Overlay ===== */
.banner-overlay,
.banner-overlay-mobile {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.banner-overlay {
  border-radius: 16px;
}

/* ===== Khối nội dung (text + search) ===== */
.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  /* khoảng cách giữa text và search */
  padding: 40px 20px;
  width: 100%;
  max-width: 800px;
  /* giới hạn độ rộng nội dung */
}

/* ===== Text ===== */
.banner-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner-title,
.banner-title-mobile {
  font-weight: 350;
  margin: 0;
}

.banner-title {
  font-size: 48px;
}

.banner-title-mobile {
  font-size: 32px;
}

.banner-subtitle,
.banner-subtitle-mobile {
  font-weight: 400;
  /* sửa lại từ 3250 */
  margin: 0;
  opacity: 0.9;
}

.banner-subtitle {
  font-size: 20px;
}

.banner-subtitle-mobile {
  font-size: 16px;
}

.banner-search,
.banner-search-mobile {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section-home-carousel {
    padding: 16px;
  }

  .banner-wrapper,
  .banner-wrapper-mobile {
    min-height: 380px;
  }

  .banner-inner {
    padding: 32px 20px;
    gap: 20px;
  }

  .banner-title,
  .banner-title-mobile {
    font-size: 36px;
  }

  .banner-subtitle,
  .banner-subtitle-mobile {
    font-size: 18px;
  }

  .banner-search,
  .banner-search-mobile {
    max-width: 90%;
    /* cho search rộng hơn trên tablet */
  }
}

@media (max-width: 767px) {
  .section-home-carousel {
    padding: 12px;
  }

  .banner-wrapper,
  .banner-wrapper-mobile {
    min-height: 350px;
  }

  .banner-inner {
    padding: 24px 16px;
    gap: 16px;
  }

  .banner-title-mobile {
    font-size: 28px;
  }

  .banner-subtitle-mobile {
    font-size: 14px;
  }

  .banner-search-mobile {
    max-width: 100%;
  }
}

.search-form-section {
  padding: 40px 0;
  background-color: #fff;
}

.search-form-section .section-wrap {
  display: flex;
  justify-content: center;
}

.favorite-wrapper {
  padding: 10px 98px 35px;
}

@media (min-width: 1375px) {
  .section-home-carousel .swiper-slide {
    min-height: 515px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
  }
}

.section-home-carousel img {
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ededed;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #d3427a;
}

.home-carousel__wrap {
  /*max-width: 1290px;*/

  margin: 0 auto;
}

.carousel-inner {
  overflow: visible;
}

.swiper {
  width: 100%;
  height: 100%;
}

.home-carousel__caption {
  max-width: 487px;
  position: absolute;
  bottom: 0.5rem;
  top: 0.5rem;
  left: 3.5rem;
  color: #fff;
}

.carousel__caption--heading {
  font-size: 3.75rem;
  line-height: 4.375rem;
  font-family: "Mulish Black";
}

.carousel__caption--sub-heading {
  font-size: 25px;
  line-height: 31.38px;
  font-family: "Mulish Medium";
}

/* Top Rated*/
.card-body.top_salon__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-top-rate-salons {
  padding: 20px 0;
  overflow: hidden;
  max-height: 356px;
}

.top_salon {
  overflow: hidden;
  border: 1px solid #ccc;
  min-height: 375px;
  min-width: 328px;
  max-width: 328px;
}

.top_techinician {
  overflow: hidden;
}

.top_techinician:hover,
.top_salon:hover {
  cursor: pointer;
  border: 1px solid #682243;
  filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.25));
  -webkit-filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.25));
}

.top_salon__img--top,
.top_salon__img--top img,
.top_techinician__img--top,
.top_techinician__img--top img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.top_salon__img--avatar,
.top_salon__img--avatar img {
  width: 37px;
  height: 37px;
}

.top_salon__img--avatar img {
  border: 1px solid #777;
}

.white-space-nw {
  white-space: nowrap !important;
}

.list-top-salons,
.list-top-technician {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 1.5rem;
  column-gap: 1rem;
  padding: 10px 98px 35px;
}

@media (min-width: 769px) {
  .section-home-carousel img {
    max-height: 400px;
    width: 100%;
    border-radius: 0;
  }

  .swiperGrid {
    padding: 10px 98px 35px;
  }

  .testimonial--swiperGrid {
    padding: 10px 10px 35px;
  }
}

@media (min-width: 991px) {
  .section-home-carousel img {
    max-height: 515px;
    /* min-height: 425px; */
    width: 100%;
    border-radius: 1rem;
  }

  /* .section-home-carousel{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  } */
  /* .section-home-carousel #carouselNail360{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  } */
}

.section-favorite-salons__heading {
  padding: 35px 0px 10px;
}

.section-favorite-salons {
  background-color: #f3f3f3;
  margin: 0px;
  padding-bottom: 3rem;
}

.favorite-salons-container {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1440px;
  background-color: #ffffff;
}

.top-rated-salons-container {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1440px;
  background-color: #ffffff;
}

.top-featured-salons-container {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 35px;
  max-width: 1440px;
  background-color: #f3f3f380;
}

/* .list_favorite-salons{
  padding: 0 ;
} */

.section-favorite-salons__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.favorite__salons-navigation-container {
  position: relative;
  margin-right: 6%;
}

.brand_name {
  line-height: 22.6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 18px;
}

.top_salon__info--description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
}

.top_salon__info--bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_salon__booking-btn-desktop {
  padding: 12px 20px;
  line-height: 10px;
  color: #333333;
  transition: all 0.3s;
  position: relative;
  min-width: 90px;
  min-height: 34px;
  border-radius: 300px;
  border: 1px solid var(--n360-paragraph-color);
  text-align: center;
  background-color: #ffffff;
}

.top_salon__booking-btn {
  padding: 12px 20px;
  line-height: 10px;
  color: var(--n360-btn-label-color);
  transition: all 0.3s;
  position: relative;
  min-width: 90px;
  min-height: 34px;
  border-radius: 5px;
  /* border: 1px solid var(--n360-paragraph-color); */
  text-align: center;
  background-color: #682243;
}

.top_salon__infor_right_box {
  min-width: 95px;
}

.top_salon__infor_left_box {
  padding-right: 5px;
}

/* .top_salon__booking-btn-desktop:hover {
  color: white;
  border: none;
  background-color: var(--n360-main-color);
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.25));
  -webkit-filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.25));
} */

/* .top_salon__booking-btn:hover {
  color: #fff;
  border: none;
  background-color: var(--n360-main-color);
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.25));
  -webkit-filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.25));
} */

.favs-button-next {
  left: 0 !important;
}

.favs-button-next:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAzMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjIxNTMgMTguOTc4NUMxOS45MjI0IDE4Ljc0NDEgMTkuODA1MiAxOC4zOTI2IDE5LjgwNTIgMTcuOTgyNEMxOS44MDUyIDE3LjYzMDkgMTkuOTIyNCAxNy4yNzkzIDIwLjIxNTMgMTcuMDQ0OUwyNS43ODE3IDExLjQxOTlIMS45OTI2OEMxLjE3MjM2IDExLjQxOTkgMC41ODY0MjYgMTAuODM0IDAuNTg2NDI2IDEwLjAxMzdDMC41ODY0MjYgOS4yNTE5NSAxLjE3MjM2IDguNjA3NDIgMS45OTI2OCA4LjYwNzQySDI1Ljc4MTdMMjAuMjE1MyAzLjA0MTAyQzE5LjYyOTQgMi41MTM2NyAxOS42Mjk0IDEuNjM0NzcgMjAuMjE1MyAxLjEwNzQyQzIwLjc0MjcgMC41MjE0ODQgMjEuNjIxNiAwLjUyMTQ4NCAyMi4yMDc1IDEuMTA3NDJMMzAuMTc2MyA5LjA3NjE3QzMwLjcwMzYgOS42MDM1MiAzMC43MDM2IDEwLjQ4MjQgMzAuMTc2MyAxMS4wMDk4TDIyLjIwNzUgMTguOTc4NUMyMS42MjE2IDE5LjU2NDUgMjAuNzQyNyAxOS41NjQ1IDIwLjIxNTMgMTguOTc4NVoiIGZpbGw9IiNEMzQyN0EiLz4KPC9zdmc+Cg==") !important;
}

.favs-button-next.swiper-button-disabled:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAzMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjIxNTMgMTguOTc4NUMxOS45MjI0IDE4Ljc0NDEgMTkuODA1MiAxOC4zOTI2IDE5LjgwNTIgMTcuOTgyNEMxOS44MDUyIDE3LjYzMDkgMTkuOTIyNCAxNy4yNzkzIDIwLjIxNTMgMTcuMDQ0OUwyNS43ODE3IDExLjQxOTlIMS45OTI2OEMxLjE3MjM2IDExLjQxOTkgMC41ODY0MjYgMTAuODM0IDAuNTg2NDI2IDEwLjAxMzdDMC41ODY0MjYgOS4yNTE5NSAxLjE3MjM2IDguNjA3NDIgMS45OTI2OCA4LjYwNzQySDI1Ljc4MTdMMjAuMjE1MyAzLjA0MTAyQzE5LjYyOTQgMi41MTM2NyAxOS42Mjk0IDEuNjM0NzcgMjAuMjE1MyAxLjEwNzQyQzIwLjc0MjcgMC41MjE0ODQgMjEuNjIxNiAwLjUyMTQ4NCAyMi4yMDc1IDEuMTA3NDJMMzAuMTc2MyA5LjA3NjE3QzMwLjcwMzYgOS42MDM1MiAzMC43MDM2IDEwLjQ4MjQgMzAuMTc2MyAxMS4wMDk4TDIyLjIwNzUgMTguOTc4NUMyMS42MjE2IDE5LjU2NDUgMjAuNzQyNyAxOS41NjQ1IDIwLjIxNTMgMTguOTc4NVoiIGZpbGw9IiM3NzciLz4KPC9zdmc+Cg==") !important;
}

.favs-button-prev {
  left: -40px !important;
}

.favs-button-prev:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAzMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjU4NTkgMC43ODUxNTZDMTAuODc4OSAxLjA3ODEyIDExLjA1NDcgMS40Mjk2OSAxMS4wNTQ3IDEuNzgxMjVDMTEuMDU0NyAyLjE5MTQxIDEwLjg3ODkgMi41NDI5NyAxMC41ODU5IDIuNzc3MzRMNS4wMTk1MyA4LjM0Mzc1SDI4Ljg2NzJDMjkuNjI4OSA4LjM0Mzc1IDMwLjI3MzQgOC45ODgyOCAzMC4yNzM0IDkuNzVDMzAuMjczNCAxMC41NzAzIDI5LjYyODkgMTEuMTU2MiAyOC44NjcyIDExLjE1NjJINS4wMTk1M0wxMC41ODU5IDE2Ljc4MTJDMTEuMTcxOSAxNy4zMDg2IDExLjE3MTkgMTguMTg3NSAxMC41ODU5IDE4LjcxNDhDMTAuMDU4NiAxOS4zMDA4IDkuMTc5NjkgMTkuMzAwOCA4LjY1MjM0IDE4LjcxNDhMMC42ODM1OTQgMTAuNzQ2MUMwLjA5NzY1NjIgMTAuMjE4OCAwLjA5NzY1NjIgOS4zMzk4NCAwLjY4MzU5NCA4LjgxMjVMOC42NTIzNCAwLjg0Mzc1QzkuMTc5NjkgMC4yNTc4MTIgMTAuMDU4NiAwLjI1NzgxMiAxMC41ODU5IDAuNzg1MTU2WiIgZmlsbD0iI0QzNDI3QSIvPgo8L3N2Zz4K") !important;
}

.favs-button-prev.swiper-button-disabled:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAzMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjU4NTkgMC43ODUxNTZDMTAuODc4OSAxLjA3ODEyIDExLjA1NDcgMS40Mjk2OSAxMS4wNTQ3IDEuNzgxMjVDMTEuMDU0NyAyLjE5MTQxIDEwLjg3ODkgMi41NDI5NyAxMC41ODU5IDIuNzc3MzRMNS4wMTk1MyA4LjM0Mzc1SDI4Ljg2NzJDMjkuNjI4OSA4LjM0Mzc1IDMwLjI3MzQgOC45ODgyOCAzMC4yNzM0IDkuNzVDMzAuMjczNCAxMC41NzAzIDI5LjYyODkgMTEuMTU2MiAyOC44NjcyIDExLjE1NjJINS4wMTk1M0wxMC41ODU5IDE2Ljc4MTJDMTEuMTcxOSAxNy4zMDg2IDExLjE3MTkgMTguMTg3NSAxMC41ODU5IDE4LjcxNDhDMTAuMDU4NiAxOS4zMDA4IDkuMTc5NjkgMTkuMzAwOCA4LjY1MjM0IDE4LjcxNDhMMC42ODM1OTQgMTAuNzQ2MUMwLjA5NzY1NjIgMTAuMjE4OCAwLjA5NzY1NjIgOS4zMzk4NCAwLjY4MzU5NCA4LjgxMjVMOC42NTIzNCAwLjg0Mzc1QzkuMTc5NjkgMC4yNTc4MTIgMTAuMDU4NiAwLjI1NzgxMiAxMC41ODU5IDAuNzg1MTU2WiIgZmlsbD0iIzc3NyIvPgo8L3N2Zz4K") !important;
}

/* Testimonial */
.section_customer_testimonial_template {
  background-color: #f9fafa;
  padding: 44px 35px;
}

.card-testimonial {
  transition: transform 0.2s;
  height: 273px;
  border-radius: 5px;
  box-shadow: 5px 2px 15px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 5px 2px 15px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 5px 2px 15px 0px rgba(0, 0, 0, 0.16);
}

.card-testimonial:hover {
  cursor: pointer;
  -ms-transform: translateY(-10px);
  /* IE 9 */
  -webkit-transform: translateY(-10px);
  /* Safari 3-8 */
  transform: translateY(-10px);
  box-shadow: 5px 2px 20px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 5px 2px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 5px 2px 20px 0px rgba(0, 0, 0, 0.25);
}

.customer_testimonial__subheading {
  max-width: 620px;
  margin-bottom: 3rem;
}

.testimonial__img--avatar {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid #777;
}

.testimonial__img--avatar img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.testimonial__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.75;
  font-style: italic;
}

.testimonial__img--user_avatar {
  width: 41px;
  height: 41px;
  overflow: hidden;
}

.testimonial__img--user_avatar img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/*Salon Owner Question*/
.section-salon-owner-question__container {
  overflow: hidden;
  margin: 2.5rem 98px;
  height: 250px;
  border-radius: 9px;
  background-position:
    left center,
    right center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 3.5rem;
}

.section-salon-owner-question {
  margin-top: -1px;
}

.section-salon-owner-question__container--paragraph {
  margin-top: 1rem;
}

.list-salon__btn {
  width: 150px;
  height: 40px;
  text-align: center;
  color: #fff;
  border: none;
}

.section-salon-owner-question__container--text {
  max-width: 450px;
  text-align: left;
  z-index: 10;
}

.section-salon-owner-question__container--text h3 {
  line-height: 37.65px;
}

.section-salon-owner-question__container--text p {
  line-height: 22.59px;
}

/* Responsive */

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1365px) {
  .top_salon {
    width: 100%;
    height: 100%;
    min-height: 375px;
  }

  .list-top-salons,
  .list-top-technician {
    grid-template-columns: repeat(3, 1fr);
  }

  .top_salon__img--top,
  .top_salon__img--top img {
    height: 200px;
  }
}

/* @media (max-width: 1320px) {
  .list-salon__btn {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
  }
} */
@media (max-width: 1199.98px) {

  .top_salon__img--top,
  .top_salon__img--top img {
    height: 250px;
  }

  .list-top-salons,
  .list-top-technician,
  .favorite-salons-container {
    padding: 1rem;
  }
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

  .list-top-salons,
  .list-top-technician {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel__caption--heading {
    font-size: 2rem;
    line-height: 1;
  }

  .carousel__caption--sub-heading {
    font-size: 20px;
    line-height: 1.5;
  }

  .home-carousel__caption {
    max-width: 34%;
  }

  .list-top-salons,
  .list-top-technician {
    padding: 1rem;
  }

  .section_customer_testimonial_template {
    padding: 1.5rem 1rem;
  }

  .section-salon-owner-question__container--text {
    max-width: 50%;
  }

  .section-salon-owner-question__container--text h3 {
    font-size: 1.2rem;
  }

  .section-salon-owner-question__container--text p {
    font-size: 1rem;
  }
}

.section-top-rate-salons__heading,
.customer_testimonial__heading,
.section-favorite-salons__heading,
.section-recommended_technician__heading {
  font-family: "Roboto";
  font-size: 32px;
  font-weight: 700;
  z-index: 1;
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .section_customer_testimonial_template {
    padding: 1.5rem 0;
  }
  
  .section-home-carousel {
    padding: 0 0 0;
  }

  .testimonial__description {
    font-family: "Roboto";
    font-size: 12px;
    font-weight: 400;
    line-height: 1.17166666667;
    text-align: left;
    font-style: normal;
    color: #cdcdcd;
    min-height: 42.14px;
    width: 100%;
  }

  .customer_testimonial__subheading {
    line-height: 1.5;
    font-size: 14px;
    z-index: 1;
    position: relative;
  }

  .section-salon-owner-question__container {
    margin: 1rem;
    padding: 1.5rem;
    background-size: cover;
    background-color: #1b1d20 !important;
  }

  .section-salon-owner-question__container--text {
    max-width: 60%;
  }

  .section-salon-owner-question__container--text h3 {
    font-size: 16px;
  }

  .section-salon-owner-question__container--text p {
    font-size: clamp(0.625rem, 0.5357rem + 0.4464vw, 0.75rem);
  }
}

@media (max-width: 700px) {}

@media (max-width: 1365px) {
  #customerTestimonial .swiperSlide {
    width: 45%;
  }
}

@media (max-width: 767.98px) {
  main:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1031;
  }

  header.search-open {
    box-shadow: 0 10px 3rem rgb(255 255 255 / 20%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1032;
  }

  header.search-open~ :before {
    display: block;
  }

  .homepage-containter {
    background-color: #212327;
  }

  .carousel__caption--heading {
    font-size: 1.5rem;
  }

  .carousel__caption--sub-heading {
    font-size: 1rem;
    line-height: 1.5;
  }

  .home-carousel__caption {
    max-width: 40%;
    left: 1.5rem;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }

  .list-top-salons,
  .list-top-technician {
    grid-template-columns: repeat(1, 1fr);
  }

  .swiper-bottom {
    bottom: -5px;
    width: 100%;
    height: 30px;
    position: absolute;
    /* background-color: black; */
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 10;
  }

  .section-home-carousel {
    min-height: 215px;
  }

  .bg-owner-question-left {
    position: absolute;
    object-fit: contain;
    width: 132.31px;
    height: 163.88px;
    top: -14px;
    left: 0px;
  }

  .section-salon-owner-question-left {
    position: absolute;
    object-fit: contain;
    width: 94.77px;
    height: 119.34px;
    top: -9px;
    left: 0;
  }

  .section-salon-owner-question-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 121px;
    height: 122px;
    background-repeat: no-repeat;
    background-position: bottom right;
  }

  .list-salon__btn {
    width: 100%;
    max-width: 152px;
    max-height: 48px;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 14px;
  }

  .carousel__caption--heading {
    font-size: 25px;
    font-family: "Roboto";
    font-weight: 600;
  }

  .carousel__caption--sub-heading {
    font-size: 16px;
  }

  .card-testimonial {
    height: auto;
  }

  .section-salon-owner-question__container--text h3 {
    line-height: 1;
  }

  .home-carousel__caption,
  .section-salon-owner-question__container--text {
    max-width: 70%;
  }

  .section-salon-owner-question__container--paragraph {
    margin-top: 0;
    margin-bottom: 0.25rem;
  }

  .top_salon__info--bottom {
    margin-top: 10px;
  }

  .section-home-carousel .swiper-slide {
    min-height: 215px;
    width: 100%;
  }

  .section-home-carousel img {
    object-position: right;
  }

  .section-top-rate-salons .swiperSlide,
  .section-favorite-salons .swiperSlide {
    width: 78.375%;
    cursor: pointer;
    scroll-behavior: smooth;
  }

  #customerTestimonial .swiperSlide {
    width: 78.375%;
  }

  .section-top-rate-salons {
    border-radius: 30px 30px 0 0;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 1;
    margin-top: -28px;
  }

  .section-top-rate-salons__heading,
  .customer_testimonial__heading,
  .section-favorite-salons__heading,
  .section-recommended_technician__heading {
    font-family: "Roboto";
    font-size: 32px;
    font-weight: 700;
  }

  .top_salon__img--top,
  .top_salon__img--top img,
  .top_techinician__img--top,
  .top_techinician__img--top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
  }

  .top_salon__img--top {
    height: 217px;
    border-radius: 8px;
  }

  .top_salon__img--avatar,
  .top_techinician__img--avatar,
  .top_salon__img--avatar img {
    width: 35px;
    height: 35px;
  }

  .brand_name {
    font-size: 14px;
  }

  .top_techinician {
    min-height: unset;
  }

  .top_techinician__img--top {
    height: 185px;
    border-radius: 8px;
    overflow: hidden;
  }

  #recommendedTechnician .swiper-slide {
    width: 49%;
    cursor: pointer;
    scroll-behavior: smooth;
  }

  .list-top-technician {
    display: flex;
    overflow-x: hidden;
    cursor: grab;
    scroll-behavior: smooth;
  }

  .customer_testimonial__heading {
    line-height: 1.5;
  }

  .card-testimonial {
    background-color: #1b1d20;
    border-radius: 9px;
    box-shadow: none;
  }

  .testimonial__img--avatar {
    width: 42px;
    height: 42px;
  }

  .testimonial__img--user_avatar {
    width: 31px;
    height: 31px;
    border: 1px solid #d9d9d9;
  }

  .quote-mask {
    fill: #4a4a4a;
  }

  .section-salon-owner-question__container {
    height: 164px;
    padding: 0;
    margin: 20px;
  }

  .section-salon-owner-question__container--text {
    max-width: 100%;
    position: relative;
    margin: 1% 3% 1% 27.5%;
  }

  .circle-button {
    width: 34px;
    height: 34px;
  }

  .navbar__search {
    min-height: 40px;
  }

  .search-form-container {
    margin-top: 3.5rem;
  }

  .search_name {
    font-size: 14px;
    width: 25%;
  }

  .search_address {
    font-size: 14px;
    width: 75%;
  }

  .vertical-divider {
    margin: 0 6px;
  }

  .navbar__search {
    min-height: 52px;
    width: 340px;
  }

  #desktop-autocompleteContainer {
    width: 100% !important;
    left: 0 !important;
  }
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}