.reviewsSection{
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 5%;
    overflow: hidden;
}

.headingPlusButtons{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.headingPlusButtons>h1{
    font-size: 300%;
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 100;
    text-align: center;
}

.reviewsButtons{
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.reviewsButtons>button{
    background-color: #EFEFEF;
    border: none;
    height: 70px;
    width: 70px;
    border-radius: var(--br1);
    font-size: 230%;
    transition: 250ms ease-out;
    cursor: pointer;
}

.reviewsButtons>button:hover{
    background-color: black;
    color: white;
}

.reviewsSlider {
    overflow: hidden;
    position: relative;
}

.oneRevBox {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #EFEFEF;
    padding: 30px 7%;
    border-radius: var(--br1);
    display: flex;
    flex-direction: column;
    cursor: grab;
}

.companyPlusPic{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.companyPlusPic>h2{
    font-size: 30px;
}

.companyPlusPic>img{
    width: 70px;
    height: 70px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    padding: 3px;
}

.oneRevBox>h1{
    font-family: var(--font2);
    font-size: 150%;
    line-height: 1.7;
    font-weight: 600;
    text-transform: capitalize;
}

.oneRevBox>p{
    font-family: var(--font2);
    font-size: 130%;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 50px;
}

.namePlusStars>h1{
    font-family: var(--font2);
    font-size: 120%;
    line-height: 1.7;
    font-weight: 600;
    text-transform: capitalize;
}

.revStars{
    color: goldenrod;
    font-size: 120%;
    display: flex;
    gap: 3px;
}

@media only screen and (max-width: 1400px) {
    .headingPlusButtons>h1 {
        font-size: 250%;
    }
    .oneRevBox>h1{
        font-size: 130%;
    }
    
    .oneRevBox>p{
        font-size: 110%;
    }
    
    .namePlusStars>h1{
        font-size: 100%;
    }

}

@media only screen and (max-width: 1080px) {
    .headingPlusButtons>h1 {
        font-size: 200%;
    }
}

@media only screen and (max-width: 768px) {
    .headingPlusButtons{
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
    .oneRevBox>h1{
        font-size: 110%;
    }
    
    .oneRevBox>p{
        font-size: 100%;
    }
    
    .namePlusStars>h1{
        font-size: 90%;
    }
}