#reviews {
    position: relative;
    width: calc(40vw + 75px);
    height: max-content;
    margin-left: 7.5vw;
    display: block;
    overflow: hidden;
}

#review-box {
    height: fit-content;
    padding-bottom: 8px;
    width: calc(calc(40vw + 75px) * 6);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: inherit;
}

.review-wrapper {
    width: calc(40vw + 75px);
    height: max-content;
}

.review {
    left: 0;
    position: relative;
    width: 40vw;
    padding: 10px;
    margin-right: 75px;
    margin-bottom: 10px;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    
    border-radius: 8px;
    border-top-right-radius: 0;
    background-color: #27ae60a0;

    visibility: visible;
    transform-origin: top right;
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.review::after {
    content: ' ';
    
    width: 0;
    height: 0;
    top: 0;
    position: absolute;
    right: auto;
    bottom: auto;
    border: 6px solid;
    
    margin-right: 10px;
    margin-left: auto;
    
    transition-property: transform;
    transition-duration: 200ms;
    border-top-color: #27ae60a0;
    border-right-color: #27ae60a0;
    border-bottom-color: transparent;
    border-left-color: transparent;
    right: -22px;
    transform: scaleX(-1);
}

.review-icon {
    width: 100%;
    height: 100%;
}

.review-icon-wrapper {
    width: 50px;
    height: 50px;
    
    position: absolute;
    top: 0;
    right: -55px;
    border-radius: 100%;
    overflow: hidden;
}

.review-name {
    margin: 0;
    margin-bottom: 3px;

    font-weight: 800;
}

.review-text {
    margin: 0;
    
    font-weight: 500;
    font-size: 14px;
}

.review-job {
    margin: 0;
    right: 5px;
    bottom: -17px;
    position: absolute;
    
    font-weight: 500;
    font-size: .6em;
    opacity: .7;
}

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

}

@media screen and (max-width: 600px) {
    #reviews {
        width: calc(75vw + 75px);
        margin-left: 5vw;
    }

    .review {
        width: 75vw;
    }

    #review-box {
        width: calc(calc(75vw + 75px) * 6);
    }

    .review-wrapper {
        width: calc(75vw + 75px);
    }

    .review-name {
        font-size: .7em;
    }

    .review-text {
        font-size: .6em;
    }

    .review-icon-wrapper {
        transform: scale(.75);
        transform-origin: top left;
    }

}
