#hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
}


#hero-section h4 {
    color: var(--navi-blue);
}

#hero-section h4 em {
    font-weight: 400;
}

#hero-section p.role {
    font-size: 14px;
    color: #888890;
}

.background-grey {
    background-color: #F2F2F2;
}

.background-white {
    background-color: #FFF;
}

.background-blue {
    background: rgb(0, 35, 97);
    background: -moz-linear-gradient(318deg, rgba(0, 35, 97, 1) 0%, rgba(0, 70, 191, 1) 99%);
    background: -webkit-linear-gradient(318deg, rgba(0, 35, 97, 1) 0%, rgba(0, 70, 191, 1) 99%);
    background: linear-gradient(318deg, rgba(0, 35, 97, 1) 0%, rgba(0, 70, 191, 1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002361", endColorstr="#0046bf", GradientType=1);
}

.testimonial-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 20px;
}

.testimonial-image-wrapper {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.testimonial-image {
    width: 130px;
    flex-basis: 130px;
    height: 130px;
    position: relative;
    overflow: hidden;
    /*border-radius: 50%;*/
    background-color: var(--white);

}

.testimonial-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.author-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 0;
}

.background-grey,
.background-white {
    color: var(--blue);
}

.background-blue {
    color: var(--white);
}

@media (max-width: 991.8px) {
    #hero-section {
        padding-top: 120px;
    }
}
