* {
    box-sizing: border-box;
    margin: 0;
    padding: 0; 
    font-family: 'Barlow Semi Condensed', sans-serif;
}

body {
    background-color: #ecf2f8;
}
.container {
    padding: 5% 2%;
}
#testimonial-1 {
    background-color: #7541c8;
    color: white;
    position: relative;
    z-index: 0;
}

#testimonial-2 {
    background-color: #48556a;
    color: white;
}

#testimonial-3, #testimonial-5 {
    background-color: #ffffff;
    color: #48556a;
}

#testimonial-4 {
    background-color: #19212e;
    color: white;
}

.grid {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 2%;
    font-size: 13px;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
}
.grid p {
    opacity: 70%;
    font-weight: 500;
}
.header .name {
    opacity: 100%;
    font-size: 1rem;
}
.header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}
.header img{
    border-radius: 50%;
    border: 2px solid wheat;
    margin-right: 8px;
}
.grid h4{
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}
.qoutation {
    position: absolute;
    right: 50px;
    top: 0;
    z-index: 1;
}

@media (min-width: 576px) {
    .container,
    #main-left,
    #top,
    #bottom {
        display: flex;
    }
    .container {
        max-width: 1440px;
        margin: 0 auto;
        justify-content: space-between;
    }
    #testimonial-5 {
        flex-basis: 30%;
    }
    #main-left {
        flex-direction: column;
        flex-basis: 68%;
    }
    #top, #bottom {
        flex-basis: 50%;
        justify-content: space-between;
    }
    #testimonial-1, #testimonial-4 {
        flex-basis: 63%;
    }
    #testimonial-2, #testimonial-3 {
        flex-basis: 35%;
    }
}