.expert-quote {
    padding: 120px 0;
}

.expert-quote-wrapper {
    max-width: 1224px;
    display: flex;
    align-items: center;
}

.expert-quote-image-wrapper {
    width: 100%;
}

.expert-quote-image {
    position: relative;
    margin-right: 120px;
}

.expert-quote-image svg {
    width: 96px;
    height: 96px;
    position: absolute;
    top: 15%;
    right: -10px;
}

.expert-quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-quote-content-wrapper {
    width: 100%;
}

.expert-quote-content {
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    color: var(--primary);
}

.expert-quote-author {
    margin-top: 32px;
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: var(--primary);
}

.expert-quote-personal-information {
    margin-top: 4px;
    font-family: 'Larsseit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary);
}

@media (max-width: 991px) {
    .expert-quote {
        padding: 96px 0;
    }

    .expert-quote-image {
        margin-right: 92px;
    }

    .expert-quote-image svg {
        top: 12%;
        right: -20px;
    }

    .expert-quote-content {
        font-size: 20px;
        line-height: 24px;
    }

    .expert-quote-personal-information {
        font-size: 12px;
        line-height: 14px;
    }
}

@media (max-width: 575px) {
    .expert-quote-wrapper {
        flex-direction: column;
    }

    .expert-quote-image {
        margin-right: 0;
    }

    .expert-quote-image svg {
        width: 86px;
        height: 86px;
        top: 13%;
        right: -15px;
    }

    .expert-quote-content-wrapper {
        margin-top: 96px;
    }
}