/*Eweb Fancy Slider*/
.eweb-fancy-slider {
  position: relative;
  width: 100%;
  height: 630px;
  overflow: hidden;
  --f-transition-duration: 0.85s;
  --f-carousel-slide-width: 100%;
  background-color: rgba(227, 227, 227, 0.5) !important;
}
.eweb-fancy-slider .f-carousel__slide {
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.eweb-fancy-slider .f-carousel__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.eweb-fancy-slider .eweb-fancy-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.eweb-fancy-slider .eweb-fancy-tx {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
  padding: 7rem 5rem;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease 0.4s,
    transform 0.8s ease 0.4s;
}
.eweb-fancy-slider .f-carousel__slide.is-selected .eweb-fancy-tx {
  opacity: 1;
  transform: translateY(0);
}
.eweb-fancy-slider .eweb-count {
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 0.75rem;
  text-align: left !important;
}
.eweb-fancy-slider .eweb-fancy-tt {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.eweb-fancy-slider .eweb-fancy-td {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  opacity: 0.85;
  max-width: 540px;
  line-height: 1.7;
}
.f-carousel.has-dots {
  margin-bottom: 0px !important;
}
.eweb-fancy-slider .f-carousel__dots {
  position: absolute !important;
  bottom: 1.4rem !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  transform: none !important;
  width: max-content;
  /* max-width: calc(100% - 6rem); */
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: center;
  /* overflow-x: auto; */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.eweb-fancy-slider .f-carousel__dots::-webkit-scrollbar {
  display: none;
}
.f-carousel__dots li button {
  color: rgba(255, 255, 255, 0) !important;
}
.eweb-fancy-slider .f-carousel__dots li {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  opacity: 0.9;
  cursor: pointer;
}
button[data-carousel-page] {
  width: 44px;
  height: 44px;
  padding: 12px;
}
.eweb-fancy-slider .f-carousel__dots li.is-current {
  background-color: var(--es-active-color);
  opacity: 1;
  width: 10px;
}
button[data-carousel-page] {
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
}
.eweb-fancy-slider .f-button.is-prev,
.eweb-fancy-slider .f-button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.eweb-fancy-slider .f-button.is-prev {
  left: 1.5rem;
}
.eweb-fancy-slider .f-button.is-next {
  right: 1.5rem;
}
.eweb-fancy-slider .f-button svg {
  margin-top: 1px;
}
@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--es-active-color) !important;
  }
}
.eweb-fancy-slider .f-button.is-prev:hover,
.eweb-fancy-slider .f-button.is-next:hover {
  background: rgba(255, 255, 255, 0.28);
}
.eweb-progress {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  z-index: 10;
}
.eweb-progress svg {
  width: 36px;
  height: 36px;
  transform: rotate(-90deg);
}
.eweb-progress circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2.5;
  stroke-dasharray: 94.25;
  stroke-dashoffset: 94.25;
  transition: stroke-dashoffset 0.1s linear;
}
.eweb-progress span {
  display: none;
}
@media (max-width: 1024px) {
  .eweb-fancy-slider {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .eweb-fancy-slider {
    height: 400px;
  }
  .eweb-fancy-slider .eweb-fancy-tx {
    left: 24px;
    right: 24px;
    bottom: 120px !important;
    padding: 2rem 1.5rem;
  }
  .eweb-fancy-slider .eweb-fancy-tt {
    font-size: 30px;
  }
}

/* // pop up nearby */
.nearby-popup-btn {
  background: transparent;
  color: #796c5c;
  border: 1px solid var(--es-brown-lighter2);
  padding: 11.5px 15px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.nearby-popup-btn:hover {
  background: var(--es-brown-lighter2);
  color: #fff;
}
.nearby-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.nearby-modal-box {
  background: #fff;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 0px;
}
.nearby-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.nearby-close {
  cursor: pointer;
  font-size: 18px;
}
.nearby-modal-body {
  padding: 25px;
}
.nearby-columns {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.nearby-columns ul {
  list-style: disc;
  padding-left: 0px;
  flex: 1;
  min-width: 250px;
}
.nearby-map {
  width: 100%;
}
.nearby-columns ul,
ol {
  margin: 0 0 0 1em !important;
}
.nearby-columns ul li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
/* //review */
.blanc-reviews-carousel {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--brc-ink);
  text-align: center;
  box-sizing: border-box;
}
.blanc-reviews-carousel * {
  box-sizing: border-box;
}
.blanc-reviews-carousel .brc-stage {
  position: relative;
}
.blanc-reviews-carousel .brc-viewport {
  overflow: hidden;
}
.blanc-reviews-carousel .brc-track {
  display: flex;
  transition: transform 0.45s ease;
}
.blanc-reviews-carousel .brc-slide {
  flex: 0 0 100%;
  padding: 0 30px;
  text-align: center;
}
.blanc-reviews-carousel .brc-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsl(0, 0%, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 3px 12px rgba(43, 36, 32, 0.1);
  color: var(--es-active-color);
  font-size: 26px;
  line-height: 1;
}
.blanc-reviews-carousel .brc-badge img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.blanc-reviews-carousel .brc-card-title {
  font-family: "Arboria", sans-serif !important;
  text-transform: uppercase;
  font-size: 25px !important;
  color: var(--es-active-color);
  font-weight: 200 !important;
  margin: 0 0 15px;
}
.blanc-reviews-carousel .brc-text {
  color: #4a423b;
  max-width: 800px;
  margin: 0 auto 28px;
  white-space: pre-line;
}
.blanc-reviews-carousel .brc-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.blanc-reviews-carousel .brc-date {
  font-size: 13px;
  color: #444444;
}
.blanc-reviews-carousel .brc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.blanc-reviews-carousel .brc-dots {
  display: flex;
  gap: 9px;
}
.blanc-reviews-carousel .brc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd6c9;
  border: none;
  cursor: pointer;
  padding: 0;
}
.blanc-reviews-carousel .brc-dot.active {
  background: #a3824f;
}
.blanc-reviews-carousel .brc-dot:focus-visible {
  outline: 2px solid #a3824f;
  outline-offset: 2px;
}
.blanc-reviews-carousel .brc-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0px;
  background: var(--es-active-color);
  color: #fff;
  cursor: pointer;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 10;
  pointer-events: auto;
  transition: background 0.2s;
}
.blanc-reviews-carousel .brc-prev {
  left: -0px;
}
.blanc-reviews-carousel .brc-next {
  right: -0px;
}
.blanc-reviews-carousel .brc-nav-btn:hover {
  background: #a3824f;
}
.blanc-reviews-carousel .brc-nav-btn:focus-visible {
  outline: 2px solid #a3824f;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .blanc-reviews-carousel .brc-track {
    transition: none;
  }
}
@media (max-width: 900px) {
  .blanc-reviews-carousel .brc-prev {
    left: 0;
  }
  .blanc-reviews-carousel .brc-next {
    right: 0;
  }
}
@media (max-width: 600px) {
  .blanc-reviews-carousel .brc-card-title {
    font-size: 19px !important;
  }
  .blanc-reviews-carousel .brc-prev {
    left: -6px;
  }
  .blanc-reviews-carousel .brc-next {
    right: -6px;
  }
}
@media (max-width: 550px) {
  div#CDSWIDSSP {
    width: 100% !important;
  }
}
