/*QUOTE CARDS*/

.quote-cards-wrapper{
	margin-left  : calc( -100vw / 2 + 100% / 2 );
	margin-right : calc( -100vw / 2 + 100% / 2 );
	max-width    : 100vw;
    width: 100vw;
    position:relative;
    margin-top:-50px;
}

.quote-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    max-width:1100px;
	margin:0 auto;
}

.quote-card{
    padding:40px;
    border-radius:20px;
}

.quote-card__logo{
    margin:0 0 20px 0;
    min-height:50px;
    display:flex;
    align-items: center;
}

.quote-card__quote, .quote-card__client{
    font-weight:500;
    color:#fff;
    line-height:1.4;
    margin:10px 0;
}

.quote-card__client{
    font-family:'Poppins', sans-serif;
    font-weight:400;
    font-size:15px;
}

.orange{
    background-color:#F75E00;
}

.green{
    background-color:#0B8165;
}

.pink{
    background-color:#DA005F;
}