.supports {
    margin: 25px auto;
}

.supports > div {
    background-color: #e5e5e5;
    width: 600px;
    margin: 10px auto;
    font-size: 14pt;
    font-family: arial;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 18px 0;
}

.supports img {
    left: 10px;
    top: 10px;
    position: absolute;
    width: 40px;
}

.support {
    background-color: #e5e5e5;
    margin-bottom: 20px;
    padding: 15px 20px;
}

.support img {
    float: left;
    margin-right: 10px;
    max-width: 250px;
}

.left_img {
    float: left;
    margin-right: 20px;
    width: 180px;
}

.support a {
    background: linear-gradient(#6200cc, #3e0081);
    font-family: Arial;
    font-size: 13pt;
    font-weight: bold;
    color: white;
    border-radius: 7px;
    margin: -45px auto 0 auto;
    width: 220px;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 8px 0;
}
.support a:hover {
    transition: 0.3s;
    background: linear-gradient(#3e0081, #6200cc);
}
@media (max-width: 768px) {
    .supports > div {
        max-width: 600px;
        padding: 18px 5px 18px 55px;
        width: 100%;
        font-size: 12pt;
    }
    .supports img {
        top: calc(50% - 20px);
    }
    .support {
        padding: 10px 15px;
    }

    .left_img {
        margin-right: 10px;
        width: 180px;
    }
    .support a {
        font-size: 12pt;
        margin: 0 0 0 auto;
        width: 200px;
        padding: 8px 0;
    }
}
@media (max-width: 530px) {
    .support img {
        max-width: 50%;
    }
    .support a {
        margin: 10px auto;
    }
}
@media (max-width: 485px) {
    .left_img {
        width: 100px;
    }
}
@media (max-width: 374px) {
    .left_img {
        margin-right: 5px;
        width: 60px;
    }
}
/*      TESTIMONIALS SECTION START      */
.support-testimonials-section {
    border-top: 4px dotted black;
    margin: 15px auto 0;
    max-width: 750px;
}
.support-testimonials-section .testimonial:nth-child(even) .testimonial-content {
    background-color: #b9b9b9;
}
.testimonial-date {
    font-size: 11pt;
    margin-bottom: 10px;
    margin-top: 25px;
}
.testimonial-content {
    font-size: 13pt;
    text-align: justify;
    background-color: #d7d7d7;
    padding: 20px 35px;
    border-radius: 15px;
    position: relative;
}
.testimonial-content::before, .testimonial-content::after {
    position: absolute;
    font-size: 40pt;
    color: #575757;
    font-weight: bold;
}
.testimonial-content::before {
    content: "“";
    left: 6px;
    top: 13px;
}
.testimonial-content::after {
    content: "”";
    right: 5px;
    bottom: 17px;
}

.testimonial-author {
    font-style: italic;
}
.visible-less .testimonial:nth-child(2), .visible-less .testimonial:nth-child(3) {
    display: none;
}
.show-less-more {
    font-size: 13pt;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
    color: blue;
    margin-top: 20px;
}
.show-less-more:hover {
    color: #0000a1;
}
.visible-less .show-less-more::after {
    content: " More";
}
.visible-more .show-less-more::after {
    content: " Less";
}
@media (max-width: 768px) {
    .show-less-more, .testimonial-content {
        font-size: 11pt;
    }
}
/*      Testimonials section end        */