.section-quotes{
    width: 100%;
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.quote-block{
    width: 276px;
    height: 256px;
    background-color: #F6F7F8;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #0C1440;
    padding: 15px 30px 0 55px;
    position: relative;
    text-align: left;
}


.quote-block::after{
    content: '';
    position: absolute;
    bottom:30px;
    left: 55px;
    background: url("../images/quote.png") no-repeat;
    height: 60px;
    width: 60px;
    background-size: 100%;
}

.quotes{
    margin-left: 50px;
}
.quote p{
    margin: 0;
    padding-bottom: 20px;
}

.quote.show-hidden{
    display: none;
}

.quote:not(:first-child){
    padding-top: 45px;
}

.quote a{
    position: relative;
    margin-left: 120px;
    margin-top: 55px;

}

.quote a::before{
    content: '';
    position: absolute;
    width: 95px;
    left: -120px;
    top: 50%;
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.btn-show-quote{
    font-size: 20px;
    font-family: Raleway-SemiBold, sans-serif;
    color:#0A1A40 ;
    position: relative;
    padding-left: 40px;
    margin-top: 50px;
    text-transform: uppercase;
}

.btn-show-quote::before{
    content: '';
    position: absolute;
    width: 12px;
    height: 23px;
    left: 0;
    top: 7px;
    background: url("../images/pre_icon.png") no-repeat;
    background-size: 100%;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
    transform-origin: center center;
}

.btn-show-quote.rotated::before{
    transform: rotate(-90deg);
    transition: all .3s ease-in-out;
    transform-origin: center center;
}

.quote-link {
    font-size: 18px;
    color: black;
    font-family: Raleway-SemiBold, sans-serif;
}

.quote-link:hover{
    text-decoration: none;
    color: black;
}

@media (min-width: 2560px){
    .quotes{
        margin-left: 0;
    }
}

@media (max-width: 1440px) {
    .quote-block{
        margin-left: 0;
    }

    .section-quotes{
        padding-right: 35px;
    }
}

@media (max-width: 992px) {
    .quotes{
        margin-top: 35px;
        margin-left: 0;
    }
}

@media (max-width: 768px){
    .section-quotes{
        margin-top: 35px;
        padding-right: 0;
    }

    .quote-block{
        margin-left: 0;
        padding-top: 20px;
        width: 200px;
        height: 200px;
    }

    .quote-block::after{
        bottom: 4%;
    }
    .quote a{
        margin-left: 60px;
    }

}