.sec-3 {
    width: 100vw;
    /* background-color: #D7847B; */
    overflow-x: hidden;
}

/* Slideshow container */
.slideshow-container {
    width: 100%;
    height: 650px;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

/* Hide the images by default */
.mySlides {
    width: 66%;
    background-color: #FBF9F7;
    border-radius: 8px;
    padding: 4% 5% 3%;
    position: absolute;
    left: -42%;
    display: none;
    transition: all 1.1s ease-out;
}
.txt > div {
    margin: 6px auto;
}
.txt div:first-child {
    max-height: 370px;
    overflow: hidden;
}
.queue-slide {
    display: block;
    transform: scale(0.5); 
    animation: change-opacity 0.5s ease-in;
    z-index: 1;
    opacity: 0;
}
@keyframes change-opacity {
    0% {
        opacity: 1;
        transform: scale(0.7);
    }
    40% {
        opacity: 0.4;
        transform: scale(0.5);
    }
    45% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 0;
    }
}
.right-slide {
    display: block;
    transform: scale(0.7); 
    position: absolute;
    left: 76%;  
    z-index: 2;
}
.middle-slide {
    display: block;
    flex-shrink: 0;
    right: 17%;
    left: 17%;
    z-index: 3;
}
.one-slide {
    width: 66%;
    background-color: #FBF9F7;
    border-radius: 8px;
    padding: 4% 5% 3%;
    position: absolute;
    display: block;
    right: 17%;
    left: 17%;
    z-index: 3;
}
.left-slide {
    display: block;
    transform: scale(0.7); 
    position: absolute;
    left: -42%; 
    z-index: 2;  
}
.queue-slide .txt, 
.left-slide .txt, 
.right-slide .txt {
  opacity: 0.6; 
}
.mySlides-img {
    margin: 60px auto 16px !important;
    display: block;
    width: 140px;
    text-align: center;
}
.mySlides-star {
    margin: 0 auto;
    height: 24px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 80px;
    height: 80px;
    margin-top: -22px;
    margin-left: 10px;
    padding: 30px 36px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.4s ease;
    border-radius: 50%;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 4;
    transition: all 0.6s ease-out;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    margin-right: 10px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text paragraf*/
.slider-h {
    color: #fff;
    padding: 100px 0 15px;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #fff;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}