.quote-section {
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.quote-section > .container {
    max-width: 650px;
    width: 100%;
    margin: auto;
}

.quote-section .title {
    font-family: 'Poppins-Regular';
    font-size: 16px;
    color: var(--main-blue);
}

.quote-section .testimonies {
    overflow: hidden;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
}

.quote-section .testimony .quote {
    font-family: 'Poppins-Medium';
    font-size: 30px;
    line-height: 1.15;
    text-align: center;
    color: var(--main-blue);
}

.quote-section p {
    text-align: center;
    color: var(--main-blue);
}

.quote-section .logo {
    opacity: 0.6;
    cursor: pointer;
    transition: all 300ms ease;
}

.quote-section .logo img {
    max-width: 150px;
}

.quote-section .logo.active {
    opacity: 1;
}

.quote-section .logos {
    column-gap: 40px;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .quote-section > .container {
        max-width: 100%;
    }

    .quote-section .quote {
        font-size: 20px;
    }
}