iframe {
  /*min-height: 500px;*/
  /*object-fit: contain;*/
}

.mySlides {
  display: block;
  /*!important;*/
}

.mySlides:hover .slide-img {
  opacity: .8;
  transition: opacity 0.4s ease-in-out;
}

.slider_1 {
  height: 600px;
}

.splide__track {
  /*padding: 0 2em;*/
}

.splide__slide {
  display: flex;
  /*justify-content: center;*/
}

/* Splide Arrows */
.splide__arrows {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  /*opacity: 0;*/
  /*transition: opacity .5s ease-in-out;*/
  /*transition-property: opacity;*/
  /*transition-duration: .5s;*/
  /*transition-timing-function: ease-in-out;*/
  visibility: hidden;
  /*transition: visibility 0.5 ease-in-out;*/
}

.splide:hover .splide__arrows {
  visibility: visible;
  /*opacity: .7;*/
  /*transition: opacity .5s ease-in-out;*/
  /*transition-property: opacity;*/
  /*transition-duration: .5s;*/
  /*transition-timing-function: ease-in-out;*/
  /*transition: visibility 0.5 ease-in-out;*/
}

.splide__arrow {
  /*opacity: 0;*/
  transition-property: opacity;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.splide:hover .splide__arrow {
  /*opacity: .7;*/
  /*transition-property: opacity;*/
  /*transition-duration: .5s;*/
  /*transition-timing-function: ease-in-out;*/
}

.arrow-slider-1 {
  width: 3.1em;
  height: 3.1em;
  background: rgba(0, 0, 0, 0);
  color: #fff;
}

.arrow-slider-1 svg {
  width: 3em;
  height: 3em;
  filter: invert(1);
}

.arrow-slider-2 {}

.splide__pagination {
  position: relative;
  bottom: 0;
}

.splide__pagination__page {
  background: #555;
  width: 12px;
  height: 12px;
}

.splide__pagination__page.is-active {
  background: #0a8040;
}

.review-card {
  /*display: block;*/
  min-width: 280px;
  margin: 1em 2em;
  /*max-width: 300px;*/
  /*height: fit-content;*/

  display: flex;
  flex-direction: column;
  width: 100%;
}

.review-rating img {
  display: inline-block;
  height: 1em;
}

/* Reviews Box */
.review-text {
  /*position: relative;*/
  /* max-height: 300px; */
  /*text-overflow: ellipsis;*/
  /*max-height: 320px;*/
  /*overflow: clip;*/
  width: 100%;
}
.oversized {
  max-height: 320px;
  overflow: clip;
}
.review-text_expand {
  max-height: max-content;
  height: 100%;
}

.oversized > p {
  /* margin-bottom: 4rem; */
  margin-bottom: 1rem;
}

.expand_text_div {
  position: relative;
  display: inline;
}

.expand_text {
  /*background: linear-gradient(0deg, white 0%, white 65%, transparent 100%);*/
  width: 100%;
  margin: 0;
  font-weight: 700;

  position: relative;
  padding: .5rem 0 0 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.expand_text:hover {
  color: green;
}
.expand_text::before {
  content: "";
  height: 200%;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  position: absolute;
  top: -200%;

  background: linear-gradient(0deg, white 0%, transparent 100%);
  /*background: linear-gradient(0deg, white 0%, white 10%, transparent 100%);*/
}
.expanded::before {
  background: transparent;
}