
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body{
    width: 100%;
    min-height: 100vh;
    background-color: #fcfcfc;
    display: flex;
    justify-content: center;
    align-items: center;
} */
.container-testimonial{
    position: relative;
    width: 100%;
    min-height: 450px;
    /* background-color: #f5f5f5; */
    background-image: url(../img/blue.jpg);
    background-size: cover;
}
.container-testimonial .contents-wraper{
    width: 70%;
    min-height: inherit;
    margin: 30px auto;
    align-items: center;
    /* text-align: center; */
}
.contents-wraper h1{
    position: relative;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    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;
    margin-top: 30px;
    padding: 7px;
}
.testRow .testItem h4{
    font-style: italic;
}
.testRow .testItem p{
    font-size: 19px;
    /* letter-spacing: 1px; */
    line-height: 1.2;
    padding: 10px;
    font-style: italic;
    font-family: 'Poppins' sans-serif;
}
.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: 550px){
    .container-testimonial .contents-wraper{
        width: 100%;
       
    }
    .contents-wraper h1{
        font-size: 25px;
    }
    .testRow .testItem h3{
        font-size: 18px;
        margin-left: 10px;
    }
    .testRow .testItem h4{
        font-size: 14px;
        margin-left: 10px;

    }
    .testRow .testItem p{
        margin-top: 20px;
        font-size: 14px;
        letter-spacing: initial;
        line-height: initial;
    }

}
