a {
    color: inherit !important;
}

a:hover {
    text-decoration: none;
}

.quotes-main {
    margin-top: 7rem;
}

.quotes-info {
    display: flex;
    justify-content: space-between;
}

.quotes-label-icon {
    justify-content: center;
    align-items: center;
}

.quotes-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.quotes-img {
    border-radius: 10px;
    width: 100%;
}

@media (max-width: 991px) {
    .quotes-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1199px) {
    .quotes-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}