.sti-container {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 50px 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.sti-container .slideshow-container {
  display: flex;
  will-change: transform;
  height: auto;
  width: 100%;
}
.sti-container .mySlides {
  flex: 0 0 100%;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.sti-container .mySlides .slide-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.sti-container .c-numbertext {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5em;
  margin: 5px;
  z-index: 10;
  border-radius: 4px;
  font-size: 14px;
}
.sti-container .c-prev,
.sti-container .c-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 24px;
  height: 24px;
  color: white;
  text-decoration: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border-radius: 5%;
}
.sti-container .c-prev.c-prev,
.sti-container .c-next.c-prev {
  left: 10px;
}
.sti-container .c-prev.c-next,
.sti-container .c-next.c-next {
  right: 10px;
}
.sti-container .dot-block {
  width: 100%;
}
.sti-container .dot-block .dot-cont {
  margin: auto;
  width: 150px;
  height: auto;
  transform: translateX(0%);
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  display: block;
  padding: 0.5em;
  z-index: 20;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.sti-container .dot-block .dot-cont::-webkit-scrollbar {
  display: none;
}
.sti-container .dot-block .dot-cont span.dot {
  padding: 5px;
  margin: 0 5px;
  background-color: #646464;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.sti-container .dot-block .dot-cont span.dot.active {
  background-color: #000000;
}
.sti-container .dot-block .dot-cont .dot.small {
  transform: scale(0.5);
}
.sti-container .text-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  text-decoration: none;
  margin-bottom: 10px;
  /*&.is-expanded {
      .toggle-text {
        bottom: 80px;
      }
    }*/
}
.sti-container .text-content-container button.toggle-text {
  margin-top: 5px;
  margin-left: auto;
  padding: 1% 4% 4%;
  align-self: right;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  color: #391be0;
  border: none;
  cursor: pointer;
  white-space: normal;
  font-size: 2vh;
  font-weight: 500;
}
.sti-container .text-content-container .text-content {
  flex-grow: 1;
  display: block;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 5%;
  font-weight: 200;
}
.sti-container .text-content-container .text-content.expanded-text {
  max-height: none;
  overflow: visible;
  padding: 0  5%;
  /* Increased padding on the sides */
}
.sti-container .text-content-container .text-content p,
.sti-container .text-content-container .text-content h1,
.sti-container .text-content-container .text-content h2,
.sti-container .text-content-container .text-content h3,
.sti-container .text-content-container .text-content h4,
.sti-container .text-content-container .text-content h5,
.sti-container .text-content-container .text-content h6,
.sti-container .text-content-container .text-content a {
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
  color: #202020;
}
.sti-container .text-content-container .text-content h2,
.sti-container .text-content-container .text-content h3 {
  font-size: 22px;
  font-weight: 600;
}
.sti-container .text-content-container .text-content p {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 300;
}
.sti-container .action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0 5px;
  border-top: 0.5px solid #a9a9a9;
}
.sti-container .action-buttons .showElementButton,
.sti-container .action-buttons .gotoHotels,
.sti-container .action-buttons .travelGuide {
  background: rgba(255, 255, 255, 0);
  color: #391be0;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  font-size: 1.9vh;
  font-weight: 700;
  text-decoration: none;
  /*&:not([style*="display: none"]) {
        display: block; // Ensures it shows when JS sets display to block
      }*/
}
