body {
    background-color: #000;
  }
  .journel-container {
display: flex;
height: 90vh;
margin-top: 10vh;
position: relative;
}
.journel-container::after {
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  background: linear-gradient(to bottom, black,  transparent);
  mix-blend-mode: multiply;
  pointer-events: none;
}
iframe {
  pointer-events: auto;
}
.show-iframe {
width: 50%;
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4;
}

#iframe {
width: 100%;
  height: 100%;
  display: none;
}

.slider-container {
width: 50%;
overflow: hidden;
display: flex;
align-items: center;
}


.slider {
display: flex;
width: max-content;
transition: transform 0.3s ease;
}

.slider-item {
min-width: 20%;
width: calc(100% / 5);
  text-align: center;
  padding: 0;
  background: #ddd;
  border: 0;
  cursor: pointer;
  height: 90vh;
  position: relative;
}
.textItem {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.slider-item.active {
background: transparent;
color: white;
filter: sepia(0.2) saturate(2.5);
box-shadow: 0 8px 10px black, 0 8px 10px black, 10px 1px 20px black;
}


.prev-arrow,
.next-arrow {
position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0000008a;
  color: white;
  border: none;
  /* padding: 10px 20px; */
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 50px;
  height: 50px;
}

.prev-arrow {
left: 10px;
opacity: 0;
}

.next-arrow {
right: 10px;
}

.prev-arrow:disabled,
.next-arrow:disabled {
background-color: transparent;
cursor: not-allowed;
opacity: 0.3;
}
.rotated-text {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg);
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 2px 2px black, 0 2px 10px black, 12px 2px 10px black;
  white-space: nowrap;
  font-family: "NeuzeitGro-Lig";
  font-size: 26px;
}

.readmorecta{
position: relative;
display: inline-block;
font-size: 16px;
font-family: "NeuzeitGro-Bold";
text-decoration: none;
background: linear-gradient(-45deg, #B8835A, #fff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: normal;
letter-spacing: normal;
filter: drop-shadow(0 2px 3px black);

}

.readmorecta::after {
content: '';
position: absolute;
bottom: -14px;
left: 13%;
width: 76%;
height: 2px;
background: linear-gradient(45deg, #B8835A, #fff);
border-radius: 0;
pointer-events: none;
}
.pos-rm {
position: absolute;
bottom: 2rem;
left: 0;
width: 100%;
text-align: center;
}
@media only screen and (max-width: 1024px) {
/* Adjust slider items to show vertically stacked layout */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  flex-direction: column; /* Arrange items vertically */
  transition: transform 0.3s ease;
}

.slider-item {
  min-height: 15vh; /* Control the height of each item */
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  font-family: "NeuzeitGro-Lig";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-item.active {
  opacity: 1;
  transform: scale(1.05); /* Slight zoom effect for active item */
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-item:not(.active) {
  opacity: 0.5;
}

.textItem {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: bold;
}

.readmorecta {
  display: inline-block;
  font-size: 12px;
  font-family: "NeuzeitGro-Bold";
  text-decoration: none;
  background: linear-gradient(-45deg, #B8835A, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 3px black);
}
.readmorecta::after {
  bottom: -7px;
  pointer-events: none;
}
.pos-rm {
  bottom: 0;
  padding-bottom: 1rem;
}
.prev-arrow,
.next-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.next-arrow {
  position: absolute;
  top: unset;
  bottom: 2rem;
  left: 44%;
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-arrow {
  top: 53%;
  z-index: 99;
  /* background: red; */
  position: absolute;
  opacity: 1;
  transform: rotate(270deg);
  display: flex
;
  justify-content: center;
  align-items: center;
  align-content: center;
  left: 44%;
}

.prev-arrow:disabled,
.next-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.rotated-text {
  position: absolute;
  bottom: unset;
  left: 0%;
  top: 31%;
  transform: unset;
  font-size: 4.3vw;
  white-space: wrap;
  width: 100%;
  line-height: normal;

}
.journel-container {
  display: block;
  height: 100vh;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.show-iframe {
  width: 100%;
  display: flex
;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  height: 56vh;
}
.journel-container::after {
  background: linear-gradient(to bottom, black 60%, transparent);
  pointer-events: none;

}
}

@media only screen and (max-width: 1024px) {
    /* .slider-container {
        width: 100%;
        display: flex
;
        flex-direction: column;
        align-items: center;
        height: 40vh; 
        overflow: hidden;
        position: relative;
    }
    .slider {
      width: auto;
    }
    
    .journel-container {
        display: block
    ;
        height: auto;
        margin-top: 10vh;
        position: relative;
    }
    .show-iframe {
        width: 100%;
        height: 50vh;
    }
 
    .rotated-text {
        display: none;
    }
    .next-arrow {
        right: 50%;
        top: unset;
        bottom: 0;
        rotate: 90deg;
    }
    .slider-item {
           width: min-content;
           height: 100%;
           width: auto;
    } */
     
}