
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-testimonial{
    position: relative;
    width: 100%;
    min-height: 450px;
    background-color: #f5f5f5;
    margin-top: 10%;
}
.container-testimonial .contents-wraper{
    width: 70%;
    min-height: inherit;
    margin: 30px auto;
    align-items: center;
}
.contents-wraper  h1{
    position: relative;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}
.contents-wraper h1::before{
    content: '';
    width: 300px;
    height: 2px;
    background-color: #006994;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.contents-wraper .testRow{
    width: 100%;
    min-height: inherit;
    position: relative;
    overflow: hidden;
}
.testRow .testItem{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}
.testRow .testItem:not(.active){
    top: 0;
    left: -100%;
}

.testRow .testItem h3{
    font-size: 20px;
    font-style: italic;
    padding: 7px;
    /* margin-top: 5%; */
}
.testRow .testItem h4{
    font-style: italic;
}
.testRow .testItem p{
    font-size: 19px;
    /* letter-spacing: 1px; */
    line-height: 1.2;
    padding: 10px;
    font-style: italic;
}
.contents-wraper .indicators{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    cursor: pointer;
}
.contents-wraper .indicators .dot{
    width: 15px;
    height: 15px;
    margin: 0px 3px;
    border: 3px solid #aaa;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}
.contents-wraper .indicators .active{
    background-color: #006994;
}
@keyframes next1{
    from{
        left: 0%;
    }
    to{
        left: -100%;
    }
}
@keyframes next2{
    from{
        left: 100%;
    }
    to{
        left: 0%;
    }
}

@keyframes prev1{
    from{
        left: 0%;
    }
    to{
        left: 100%;
    }
}
@keyframes prev2{
    from{
        left: -100%;
    }
    to{
        left: 0%;
    }
}

@media(max-width: 991px){
    .container-testimonial
    .contents-wraper
     {
        width: 100%;
        margin-top: 10%;
        }
   
    .contents-wraper h1{
        font-size: 25px;
    }
    .testRow .testItem h3{
        font-size: 18px;
        margin-left: 10px;
    }
    .testRow .testItem h4{
        font-size: 13px;
        margin-left: 10px;
    }
    .testRow .testItem p{
        font-size: 16px;
        margin-top: 10px;
        letter-spacing: initial;
        line-height: initial;
    }
    .contents-wraper .indicators .dot{
      display: none;
    }
}
