.glbBnrSec {
  min-height: 450px;
  background: url("https://www.bindia.dk/2024/images/homepage/home-banner.webp");
  background-position: bottom;
  background-size: cover;
}

.glbBnrSec .homeBnrCTA .glb-white-button {
  min-width: 400px;
}

@media only screen and (max-width: 760px) {
  .glbBnrSec {
    min-height: 150px;
    max-height: 150px;
    padding: 0;
  }
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox {
  background: white;
  cursor: default;
  gap: 10px;
}

#feedback {
  margin-top: 20px;
}
#feedback > div {
  margin-bottom: 20px;
}
#feedback > div .testomonialOwlSldrContentBox {
  border: 1px solid #E7E7E7;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  padding: 10px;
  position: relative;
}
#feedback > div .testomonialOwlSldrContentBox .startDetails {
  margin-bottom: 15px;
}
#feedback > div .testomonialOwlSldrContentBox .startDetails .reviewIcons {
  display: flex;
  gap: 2px;
}
#feedback > div .testomonialOwlSldrContentBox .startDetails .reviewIcons .star {
  clip-path: polygon(50% 0%, 61% 29%, 98% 35%, 70% 58%, 79% 91%, 50% 70%, 21% 91%, 30% 58%, 2% 35%, 38% 29%);
  background: var(--orange-75);
  height: 25px;
  width: 25px;
}
#feedback > div .testomonialOwlSldrContentBox .tesmonialDetails {
  font-size: 90%;
  margin-bottom: 50px;
}
#feedback > div .testomonialOwlSldrContentBox .userDetail {
  position: absolute;
  bottom: 10px;
}
#feedback > div .testomonialOwlSldrContentBox .userDetail .name {
  display: block;
  font-weight: bold;
}

.partnersSecHeading {
  text-align: start !important;
}

.partnerSecWrapper2 {
  margin-top: 20px;
}
.partnerSecWrapper2 .partnerDetail {
  text-align: center;
  margin-bottom: 20px;
}
.partnerSecWrapper2 .partnerDetail img {
  height: 100px;
  object-fit: contain;
  margin: auto;
}

.selectLocationsSection {
  margin-top: 10px;
}
.selectLocationsSection h3 {
  font-size: 50px;
  font-weight: 600;
}
.selectLocationsSection .selectLocationWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.selectLocationsSection .selectLocationWrapper .locationBox {
  cursor: pointer;
  padding: 20px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  height: 317px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
.selectLocationsSection .selectLocationWrapper .locationBox::before {
  position: absolute;
  transition: all 0.7s ease-in-out;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: var(--background);
  background-size: cover;
  background-position: center;
}
.selectLocationsSection .selectLocationWrapper .locationBox::after {
  position: absolute;
  transition: all 0.3s ease-in-out;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.4) 100%);
}
.selectLocationsSection .selectLocationWrapper .locationBox:hover::before {
  transform: scale(1.1);
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationContent {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationContent .locationTagsList {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationContent .locationTagsList li {
  height: 22px;
  background-color: rgba(9, 9, 9, 0.7);
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  color: #fff;
  font-weight: 400;
  font-size: 11px;
  padding: 8px;
  white-space: nowrap;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationContent .locationTagsList p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.selectLocationsSection .selectLocationWrapper .locationBox .order_now_btn {
  z-index: 2;
  color: white;
  background-color: transparent;
  display: inline-block;
  width: fit-content;
  text-align: center;
  padding: 5px 13px;
  right: 20px;
  bottom: 71px;
  border: 1px solid white;
}
.selectLocationsSection .selectLocationWrapper .locationBox .order_now_btn:hover {
  background-color: var(--orange-75);
  border-color: var(--orange-75);
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: flex-end;
  height: 100%;
  gap: 20px;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo .locationName {
  display: flex;
  align-items: center;
  gap: 6px;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo .locationName h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo .orderNow {
  position: absolute;
  z-index: 2;
  color: white;
  display: inline-block;
  padding: 5px 10px;
  right: 0;
  bottom: 30px;
  border: 1px solid white;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo .orderNow:hover {
  background-color: red;
  border-color: red;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationAddress {
  display: flex;
  flex-direction: column;
  gap: 14.4px;
}
.selectLocationsSection .selectLocationWrapper .locationBox .locationAddress p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.selectLocationsSection .selectLocationWrapper .locationBox .openInfo {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.selectLocationsSection .selectLocationWrapper .locationBox .openInfo svg {
  width: 14px;
  height: 14px;
  display: inline-block;
}
.selectLocationsSection .selectLocationWrapper .locationBox .openInfo svg.closed {
  fill: #ea7d7d;
}
.selectLocationsSection .selectLocationWrapper .locationBox .openInfo svg.opened {
  fill: #37ff88;
}

#askPaymentType.askPaymentType .modal {
  max-width: 550px;
  padding: 20px 24px 40px;
  border-radius: 0;
}
#askPaymentType.askPaymentType .modal h6 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 30px;
}

.paymentOptionsWrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.paymentOptionsWrapper .labelContainer {
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 2px solid black;
  border-radius: 5px;
}
.paymentOptionsWrapper .labelContainer:hover {
  background-color: #faeae1;
}
.paymentOptionsWrapper .labelContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.paymentOptionsWrapper .labelContainer input:checked ~ .checkmark {
  border-color: #000;
}
.paymentOptionsWrapper .labelContainer input:checked ~ .checkmark:after {
  display: block;
}
.paymentOptionsWrapper .labelContainer .checkmark {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 18px;
  width: 18px;
  border: 2px solid #838383;
  background-color: transparent;
  border-radius: 3px;
}
.paymentOptionsWrapper .labelContainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: -1px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.paymentOptionsWrapper .labelContainer:hover input ~ .checkmark {
  border-color: #000;
}
.paymentOptionsWrapper .labelContainer .labelConetent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.paymentOptionsWrapper .labelContainer .labelConetent .labelInfo {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
.paymentOptionsWrapper .labelContainer .labelConetent p {
  font-size: 16px;
  font-weight: 500;
}
.paymentOptionsWrapper .labelContainer .labelConetent .tag {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 0;
  font-size: 18px;
  font-weight: 900;
  color: #000000;
  border-radius: 40px;
}
.paymentOptionsWrapper .labelContainer .typeImage {
  width: 80px;
  height: 85px;
  margin-right: 10px;
}
.paymentOptionsWrapper .labelContainer .typeImage img {
  max-width: max-content;
  position: relative;
}
.paymentOptionsWrapper .labelContainer:nth-child(2) .typeImage img {
  top: -15px;
}
.paymentOptionsWrapper .labelContainer:nth-child(3) .typeImage img {
  top: -10px;
}

.modal-container.active.out {
  opacity: 0;
}

@media (max-width: 992px) {
  .selectLocationsSection {
    padding: 10px 0 60px;
  }
  .selectLocationsSection .selectLocationWrapper .locationBox {
    flex: 1 1 calc(50% - 20px);
  }
  .selectLocationsSection h3 {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .selectLocationsSection {
    padding: 10px 0 10px;
  }
  .selectLocationsSection h3 {
    font-size: 20px;
  }
  .selectLocationsSection .selectLocationWrapper .locationBox {
    flex: 1 1 100%;
    height: 317px;
  }
  .selectLocationsSection .selectLocationWrapper .locationBox .locationAddress p {
    font-size: 14px;
    margin-top: 5px;
  }
  #askPaymentType.askPaymentType .modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }
  #askPaymentType.askPaymentType .modal h6 {
    font-size: 18px;
  }
  .paymentOptionsWrapper .labelContainer {
    height: 160px;
  }
  .paymentOptionsWrapper .labelContainer .typeImage img {
    top: 0 !important;
  }
}
@media (max-width: 380px) {
  .paymentOptionsWrapper .labelContainer {
    padding: 0 10px 0 50px;
  }
  .paymentOptionsWrapper .labelContainer .checkmark {
    left: 15px;
  }
  .paymentOptionsWrapper .labelContainer .typeImage {
    width: 60px;
  }
  .paymentOptionsWrapper .labelContainer .typeImage img {
    max-width: 90px;
  }
  .paymentOptionsWrapper .labelContainer .labelConetent .labelInfo p {
    font-size: 14px;
  }
  .paymentOptionsWrapper .labelContainer .labelConetent .labelInfo .tag {
    font-size: 12px;
    height: 20px;
  }
}
.popularDishes .partnersSecHeading h4 {
  text-transform: capitalize;
}
.popularDishes .selectLocationWrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.popularDishes .selectLocationWrapper .item .nutDiv, .popularDishes .selectLocationWrapper .item .ingDiv {
  display: none;
}
.popularDishes .selectLocationWrapper .item {
  user-select: none;
  cursor: pointer;
  border: 1px solid #E7E7E7;
  background: #FFF;
  padding: 15px;
  height: 225px;
  flex-grow: 1;
  position: relative;
  display: flex;
  gap: 20px;
}
.popularDishes .selectLocationWrapper .item.homePageDeal {
  height: 190px !important;
}
.popularDishes .selectLocationWrapper .item .name {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #000;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popularDishes .selectLocationWrapper .item .image {
  width: 160px;
  min-width: 160px;
  position: relative;
}
.popularDishes .selectLocationWrapper .item .image img:not(.comboDeals) {
  min-height: 170px;
  width: 95%;
  object-fit: cover;
}
.popularDishes .selectLocationWrapper .item .image img {
  max-height: none;
  width: 100%;
  object-fit: cover;
}
.popularDishes .selectLocationWrapper .item .image .addIcon {
  position: absolute;
  top: 80px;
  right: 10px;
  z-index: 2;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  color: #e37231;
}
.popularDishes .selectLocationWrapper .item .image .orderNow {
  background-color: black;
  color: white;
  margin-top: 10px;
  display: inline-block;
  width: fit-content;
  padding: 5px 15px;
}
.popularDishes .selectLocationWrapper .item .desc {
  font-size: 14px;
  color: #4E4E4E;
  margin-bottom: 55px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popularDishes .selectLocationWrapper .item .price {
  position: absolute;
  bottom: 15px;
  color: #2a2e35;
  font-weight: bold;
  line-height: 19px;
}
.popularDishes .selectLocationWrapper .item .price :nth-child(3) {
  color: var(--orange-75);
  font-size: 20px;
}
.popularDishes .selectLocationWrapper .item .price u {
  text-decoration: none;
  font-size: 75%;
  font-weight: 400;
  color: #000;
  position: relative;
}
.popularDishes .selectLocationWrapper .item .price u:after {
  position: absolute;
  content: "";
  left: -3px;
  right: -3px;
  top: 10px;
  height: 1px;
  transform: rotate(-15deg);
  background-color: var(--95-black, #020202);
}
.popularDishes .selectLocationWrapper .item .icons {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 30px;
  position: absolute;
  bottom: 22px;
  flex-wrap: wrap;
}
.popularDishes .selectLocationWrapper .item .icons .tag {
  padding: 2px 6px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  user-select: none;
  color: #2a2e35;
  background-color: transparent;
  border: 1px solid #2a2e35;
}
.popularDishes .selectLocationWrapper .item .icons .ingredient {
  transform: scale(0.9);
  width: 24px;
  height: 24px;
  z-index: 1;
  background: url(https://www.bindia.dk/2023/template/assets/images/menu-ingredients.svg) no-repeat top transparent;
}
.popularDishes .selectLocationWrapper .item .icons .ingredient.iconchilli {
  background-position-y: -38px;
}
.popularDishes .selectLocationWrapper .item .icons .ingredient.iconNuts {
  background-position-y: -78px;
}
.popularDishes .selectLocationWrapper .item .icons .ingredient.iconLactose {
  background-position-y: 2px;
}
.popularDishes .selectLocationWrapper .item .icons .ingredient.iconDoubleChilli {
  background-position-y: -158px;
}
.popularDishes .selectLocationWrapper .item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.popularDishes .selectLocationWrapper .item:hover .addIcon {
  transform: rotate(90deg);
}

@media (max-width: 600px) {
  .popularDishes .partnersSecHeading h4 {
    text-transform: capitalize !important;
    font-size: 21px !important;
  }
  .popularDishes .selectLocationWrapper {
    overflow-y: revert;
    overflow-x: revert;
  }
  .popularDishes .selectLocationWrapper .price {
    display: revert !important;
  }
  .popularDishes .selectLocationWrapper .price u::after {
    top: 8px !important;
  }
  .popularDishes .image {
    height: 100% !important;
    width: 140px !important;
    min-width: 140px !important;
  }
  .popularDishes .image img {
    object-fit: cover !important;
  }
  .popularDishes .image .addIcon {
    top: 10px !important;
    padding: 7px !important;
  }
  .pillarsWrapper p {
    font-size: 9px;
  }
}
@media (max-width: 440px) {
  .selectLocationWrapper .item {
    width: 100% !important;
  }
}
.pillarsWrapper {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.pillarsWrapper .partnerDetail {
  text-align: center;
  width: 15%;
  margin-bottom: 10px;
}
.pillarsWrapper .partnerDetail img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  margin: auto;
}

@media (max-width: 600px) {
  .pillarsWrapper .partnerDetail {
    width: 30% !important;
  }
  .popularDishes .selectLocationWrapper .item .desc {
    margin-bottom: 25px;
    font-weight: 600;
  }
  .popularDishes .selectLocationWrapper .item .image img:not(.comboDeals) {
    min-height: 150px;
    aspect-ratio: 12/10 !important;
  }
}
@media (max-width: 900px) {
  .pillarsWrapper .partnerDetail {
    width: 15% !important;
  }
}
.more {
  display: block;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}

.p2 {
  display: none;
}

@media (max-width: 670px) {
  .ourCustomers {
    display: none;
  }
  h4 {
    font-size: 20px !important;
  }
  .container {
    padding: 0 16px !important;
  }
  .popularDishes .selectLocationWrapper .item .price {
    font-size: 14px !important;
  }
}
.w-5rem {
  width: 5rem;
}

#slider {
  display: none;
}

@media (max-width: 550px) {
  #slider {
    display: block;
    position: relative;
    margin: auto;
  }
  #slider p {
    color: #ffffff;
  }
  #slider .mySlides {
    display: none;
  }
  #slider .prev, #slider .next {
    cursor: help;
    position: absolute;
    top: 40%;
    width: auto;
    margin-top: -22px;
    padding: 8px 16px;
    color: #000000;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.5) !important;
    z-index: 1;
  }
  #slider .prev:hover, #slider .next:hover {
    background-color: #cc0000;
  }
  #slider .active, #slider .dot:hover {
    background-color: #717171;
  }
  #slider {
    /* Fading animation */
  }
  #slider .fade {
    animation-name: fade;
    animation-duration: 2.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
}
p.more2 {
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.ingredientIcon, .nutritionIcon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.modal .menuItemDetails {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E7E7E7;
}
.modal .closeModal {
  cursor: pointer;
}
.modal table, .modal td, .modal th, .modal .menuOptionsModalBody {
  text-align: left !important;
}

.glb-outline-button:before {
  background-color: #e37231 !important;
  color: white !important;
}

.slideshow-container {
  max-width: 1530px;
  width: 100%;
  position: relative;
  background: white;
  overflow: hidden;
  margin-top: 20px;
}
.slideshow-container .slideshow-header {
  background: linear-gradient(135deg, #00b67a 0%, #00a86b 100%);
  padding: 30px;
  text-align: center;
  color: white;
}
.slideshow-container .trustpilot-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.slideshow-container .header-subtitle {
  font-size: 16px;
  opacity: 0.9;
}
.slideshow-container .slides-wrapper {
  position: relative;
  overflow: hidden;
  height: 450px;
}
.slideshow-container .slides-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}
.slideshow-container .slide {
  min-width: 100%;
  display: flex;
  padding: 15px 30px;
  gap: 20px;
  align-items: stretch;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.slideshow-container .comment-card {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 320px;
}
.slideshow-container .comment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.slideshow-container .stars {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  gap: 3px;
}
.slideshow-container .star {
  width: 18px;
  height: 18px;
  background: #00b67a;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.slideshow-container .star.empty {
  background: #ddd;
}
.slideshow-container .comment-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
  position: relative;
  overflow-y: auto;
  height: 270px;
}
.slideshow-container .reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.slideshow-container .reviewer-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}
.slideshow-container .reviewer-avatar img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
}
.slideshow-container .reviewer-details {
  flex-grow: 1;
}
.slideshow-container .reviewer-name {
  font-weight: bold;
  color: #333;
  font-size: 14px;
  margin-bottom: 2px;
}
.slideshow-container .review-date {
  color: #666;
  font-size: 12px;
}
.slideshow-container .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.slideshow-container .nav-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}
.slideshow-container .prev {
  left: 20px;
}
.slideshow-container .next {
  right: 20px;
}
.slideshow-container .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #00b67a;
  transition: width 0.1s linear;
  border-radius: 0 0 0 20px;
}
.slideshow-container .slide-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  backdrop-filter: blur(10px);
}
.slideshow-container .pause-play-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.slideshow-container .pause-play-btn:hover {
  background: white;
  transform: scale(1.1);
}
.slideshow-container .slide-indicators {
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  background: transparent;
}
.slideshow-container .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slideshow-container .indicator.active {
  background: #00b67a;
  transform: scale(1.2);
}
.slideshow-container .indicator:hover {
  background: #00a86b;
}
.slideshow-container {
  /* Responsive Design */
}
@media (max-width: 1024px) {
  .slideshow-container .slide {
    gap: 15px;
    padding: 30px 20px;
  }
  .slideshow-container .comment-card {
    padding: 20px;
    min-height: 280px;
  }
  .slideshow-container .slide .comment-card:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .slideshow-container .slideshow-container {
    max-width: 95%;
    margin: 10px;
  }
  .slideshow-container .slides-wrapper {
    height: 400px;
  }
  .slideshow-container .slide {
    gap: 15px;
    padding: 20px 15px;
  }
  .slideshow-container .comment-card {
    min-height: 250px;
    padding: 20px;
  }
  .slideshow-container .slide .comment-card:nth-child(n+3) {
    display: none;
  }
  .slideshow-container .comment-text {
    font-size: 15px;
    overflow-y: auto;
    height: 250px;
  }
  .slideshow-container .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .slideshow-container .prev {
    left: 10px;
  }
  .slideshow-container .next {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .slideshow-container .slide {
    flex-direction: column;
    gap: 15px;
  }
  .slideshow-container .comment-card {
    min-height: 200px;
    margin-bottom: 0;
  }
  .slideshow-container .slide .comment-card:nth-child(n+2) {
    display: none;
  }
  .slideshow-container .slides-wrapper {
    height: 350px;
  }
}
.slideshow-container {
  /* Hide comments that exceed the responsive limit */
}
.slideshow-container .slide .comment-card.hidden {
  display: none;
}

/*# sourceMappingURL=home.css.map */
