.section-container {
    display: grid;
    place-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header {
    position: relative;
    padding-top: 10px;
    text-align: center;
    font-weight: 900;
    padding-bottom: 35px;
    color: #fff;
}

.section-header:after {
    content: '';
    height: 3px;
    width: 200px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 100px);
    background: #fff;
}

.section-header p {
    display: block;
    font-size: 15px;
    font-weight: 300;
}

.testimonials {
    max-width: 1000px;
    padding: 0 15px 30px;
    margin: 0 auto;
}

.single-item {
    background: #FFFFFFCC;
    color: #111;
    padding: 15px;
    margin: 50px 15px;
    border-radius: 16px;
}

.item-content {
    font-size: 18px;
    padding: 24px;

}

.item-content p {
    text-align: justify;
}

.item-content h3 {
    text-align: center;
    font-size: 22px;
}

.item-content h4 {
    text-align: center;
    font-size: 18px;
}


.item-content p span {
    font-size: 48px;
    margin-right: 20px;
    color: #1A5F7A;
}

.carousel-indicators button {
    background-color: #1A5F7A;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 1px 3px;
}

.carousel-indicators .active {
    background-color: #fff;
}


@media only screen and (max-width: 600px) {
    .section-header{
        margin-top: 8px;
    }
}