.author-quotes {
    padding-left: 15vw;
    padding-top: 90px;
    padding-bottom: 90px;
}

.author-quotes-title {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 30px;
}

.author-quotes-title span {
    color: var(--main-color);
}

.box-quote {
    background: #1A1A1A;
    padding: 10px;
    border-radius: 15px;
    height: -webkit-fill-available;
    display: grid;
    grid-column-gap: 15px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 4fr;
    align-items: center;
}

.box-quote img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.author-quotes-carousel {
    overflow: hidden;
}

.quote-author a {
    font-size: 16px;
    color: var(--main-color);
    font-weight: 700;
}

.quote-author {
    margin: 0;
    margin-top: 5px;
}

.quote-box-text {
    margin: 0;
    color: #bfbfbf;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}


/*Responsive CSS for Politis Group by Efi Kakouni*/

@media only screen and (max-width: 1650px) {

    .author-quotes {
        padding-left: 5vw;
        padding-top: 30px;
        padding-bottom: 60px;
    }

}

@media only screen and (max-width: 1250px) {
    .author-quotes-title {
        font-size: 36px;
    }

}


@media only screen and (max-width: 1000px) {
    .box-quote {
        grid-template-columns: 25% 75%;
    }
    
    .quote-box-text {
        font-weight: 600;
        font-size: 16px;
    }
    
    .box-quote-line{
        margin-right: 15px;
    }
    
    .box-quote img {
        width: 120px;
    }
    
    .author-quotes-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .author-quotes {
        padding-top: 15px;
        padding-bottom: 30px;
    }
}












