.asptt-quote-bloc__container{
    padding: 30px;
    background-color: #eeeeee;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    gap: 42px;
}

.asptt-quote-bloc__container svg,
.asptt-quote-bloc__container i {
    position: absolute;
    color:var(--e-global-color-primary);
    font-size: 35px;
}

.asptt-quote-bloc__container svg.fa-quote-right{
    top: -10px;
    left: 20px;
}

.asptt-quote-bloc__container svg.fa-quote-left{
    bottom: -13px;
    right: 20px;
}

.asptt-quote-bloc__author{
    display: flex;
    align-items: center;
    gap: 24px;
}

.asptt-quote-bloc__author-photo{
    width: 80px;
    height: 80px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-position: center;
}

.asptt-quote-bloc__author-informations{
    line-height: 1;
}

.asptt-quote-bloc__author__firstname{
    font-size: 14px;
}

.asptt-quote-bloc__author__lastname{
    font-size: 22px;
    font-weight: bold;
}

.asptt-quote-bloc__author__job{
    color:var(--e-global-color-primary);
    font-style: italic;
}

.asptt-quote-bloc__content{
    font-size: 15px;
    font-weight: bold;
    color: #231f20;
    line-height: 24px;
}

@media screen and (max-width: 768px) {
    .asptt-quote-bloc__container {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 17px;
        padding-bottom: 23px;
    }

    .asptt-quote-bloc__content {
        padding-left: 0;
    }
}