/* testimonies --------------------------------------*/

#testimonies h2 {
    font-size: clamp(1.8rem, 6vw, 4rem);
    color: var(--color-grey);
    position: relative;
    z-index: 5;
    text-shadow: 1px 1px 4px var(--color-black);
}

/* testimonies ---------------------------------------*/
#testimonies {
    background-color: rgb(38 38 40);
    text-align: center;
    position: relative;
}


/* testimonies with slide show*/
#testimonies h2 {
    margin: 0;
    padding: 24px 0 0 0;
    font-family: var(--font-italic);
    font-weight: 100;
}


.testimonial-slider {
    position: relative;
    max-width: 600px;
    margin: auto;
    text-align: center;
    z-index: 2;
}

.testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.testimonial.active {
    display: block;
    opacity: 1;
}


button.prev,
button.next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
}

button.prev:hover,
button.next:hover {
    color: #000;
}

button.prev {
    left: 0;
    top: 60px;
}

button.next {
    right: 0;
    top: 60px;
}

.dots {
    margin-top: 1rem;
}

.dot {
    height: 14px;
    width: 14px;
    margin: -1px 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

blockquote {
    background-color: var(--color-grey);
    color: var(--color-black);
    padding: .5rem;
    margin: 2rem;
    border-radius: 10px;
    position: relative;
    font-size: .6rem;
    line-height: .6rem;
}

.bible-cropped {
    display: none !important;
    position: relative;
    z-index: 1;
}

.bible-large {
    display: block !important;
    width: 100%;
    height: auto;
    margin-top: -150px;
    /* margin-top: -370px; */
}

@media screen and (min-width:300px) {
    #testimonies h2 {
        font-size: clamp(3.8rem, 6vw, 4rem);
    }

    blockquote {
        padding: 2rem;
        font-size: 4vw;
        line-height: 4.5vw;

    }
}

@media screen and (min-width:600px) {

    /* testimonies h2 */
    #testimonies h2 {
        font-size: clamp(6.5rem, 6vw, 4rem);
    }

    blockquote {
        font-size: 17px;
        line-height: 22px;
    }

}

@media screen and (min-width:1024px) {
    .bible-large {
        display: none !important;
    }

    .bible-cropped {
        display: block !important;
        margin-top: -386px;
        margin-left: 0;
        width: 70%;
    }
}

@media screen and (min-width:1450px) {
    .bible-cropped {
        margin-top: -420px;
        width: 60%;
    }
}

@media screen and (min-width:1800px) {
    .bible-cropped {
        width: 41%;
    }
}