.testimonial-nav {
    color: #FFD89B;
}

.testimonial-main-section{
    background-image: url(Website\ -\ Pic21.jpg);
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
}

.title {
    margin-top: 20px;
    margin-bottom: 20px;
    /* margin-right: 40%; */
    font-size: 1.6em;
    font-weight: 900;
    color: #FDF6F0;
}

.quote {
    width: 90%;
    height: 68vh;
    min-height: 400px;
    padding: 40px;
    display: flex;
    z-index: 2;
    background: rgb(252, 250, 242, 0.5);
    margin-bottom: 50px;
    position: relative;
}

.quote .box{
    color: #4F4F48;
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 85%;
    background: #BDC0BA;
    overflow: hidden;
    transition: 0.5s;
    z-index: 2;
    padding: 30px;
    box-shadow: -10px 25px 50px rgba(0,0,0,.2);
    display: none;
    flex-direction: column;
    animation: slide 1s ease-in-out;
}

.quote .text-container {
    overflow: auto;
}

.quote .text-container::-webkit-scrollbar {
    display: none;
  }

@keyframes slide {
    from{
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.quote .box.active {
    display: flex;
}

.quote .box:hover {
    box-shadow: -20px 50px 100px rgba(0,0,0,.5);
}

.quote .box p {
    margin: 0;
    padding: 5px;
    font-size: 18px;
    line-height: 27px;
    text-indent: 2em;
}

.quote .box:hover p {
    color: #c8c9bf;
}
.quote .box h2 {
    /* margin-left: 70%; */
    padding: 0;
    font-size: 20px;
    text-transform: uppercase;
    float: right;
}

.quote .box:hover h2 {
    color: #4F4F48;
}

.quote .box:hover {
    opacity: 1;
    background-color: black; /* For browsers that do not support gradients */
    background-image: linear-gradient(#283048, #859398); /* Standard syntax (must be last) */
}

.quote .box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(225,225,225,.1);
    pointer-events: none;
}
.quote .box:after {
    content: url(quote.png);
    position: absolute;
    bottom: 12%;
    right: 10%;
    opacity: .1;
    background: rgba(225,225,225,.2);
    pointer-events: none;
}

.controllers {
    color: #dddddd;
    font-weight: bolder;
    font-size: 6em;
    font-family: monospace;
    cursor: pointer;
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.controllers:hover {
    color: #28304891;
    background-color: #00000011;
}

.controllers.next {
    position: absolute;
    top: 0;
    right: 0;
}

.controllers.prev {
    position: absolute;
    top: 0;
    left: 0;
}

.indicator {
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #859398;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator div {
    position: relative;
    width: 60px;
    height: 7px;
    background:rgba(209, 217, 219, 0.6);
    margin: 0px 10px;
    margin-top: 10px;
}

.indicator div.active{
    background: rgb(255, 216, 155, 0.6);
}



@media screen and (max-width: 1100px) {
    .quote .box.box3 {
        display: none;
    }

    .quote {
        grid-template-columns: 50% 50%;
    }
}

@media screen and (max-width: 800px) {
    .quote .box.box2 {
        display: none;
    }

    .quote {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

