
.blockquote-container {
    width: 100%;

    background-color: white;
    border-top: 5px solid #003AAA;
    border-right: 5px dashed #003AAA;
    border-bottom: 5px dashed #003AAA;
    border-left: 5px solid #003AAA;
    
    position: relative;

    .blockquote-content {
        margin: 72px 76px 10px;

        .blockquote-user-data {
            display: flex;
            justify-content: space-between;
            
            img {
                width: 100px;
                height: 100px;
                border-radius: 60px;
            }

            h4 {
                font-family: Inter;
                font-weight: 400;
                font-size: 28px;
                line-height: 35px;
                color: #272727;
            }

            p {
                font-family: Inter;
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #272727;
            }
        }

        .blockquote-user-text {
            margin-top: 64px;

            p {
                font-family: Inter;
                font-weight: 400;
                font-size: 20px;
                line-height: 35px;
                text-align: center;
            }
        }
    }
}

.blockquote-container::after {
    content: url(../images/quotes.jpg);
    position: absolute;
    top: -48px;
    right: 0px;
    padding: 10px 40px;
    background-color: #FFF;
}

.blockquote-container::before{
    content: url(../images/quotes.jpg);
    transform: rotate(180deg);
    position: absolute;
    bottom: -50px;
    right: 385px;
    padding: 10px 40px;
    background-color: #FFF;
}

/*! ------ RESPONSIVE ------- */
@media screen and (max-width: 675px) {
    .blockquote-container {
        width: auto;
        margin-top: 12%;

        .blockquote-content {
            margin: 60px 35px 10px;

            .blockquote-user-data {
                display: flex;
                gap: 20px;
                
                img {
                    width: 85px;
                    height: 85px;
                }
    
                h4 {
                    font-size: 20px;
                    line-height: 15px;
                }
    
                p {
                    font-size: 12px;
                    line-height: 10px;
                    color: #272727;
                }
            }

            .blockquote-user-text {
                margin-top: 45px;
                margin-bottom: 45px;
    
                p {
                    font-size: 12px;
                }
            }
        }
    }

    .blockquote-container::before {
        bottom: -55px;
        right: 186px;
    }
}
