.reviews-section {
    margin: 30px 0;
    background: #152c3e;
    padding: 15px;
}

.reviews-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -5px;
    position: relative;
}

.reviewcard {
    flex: 0 0 200px;
    max-height: 100%;
    background: #fbfbfb;
    margin: 0 5px;
    margin-bottom: 10px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px 0px;
}


.reviewcard .reviewtext {
    font-size: .85em;
}

.reviewcard .reviewauthor {
color: #505050;
display: flex;
height: 100%;
flex-direction: column;
padding: 10px;
justify-content: flex-start;
align-items: center;
}

.reviewcard .reviewauthor .authortitle {
    height: 50px;
    font-size: 1.1em;
    font-weight: 600;
    width: 100%;
}

.reviewcard .reviewauthor .authortitle a {
    font-size: .85em;
    font-weight: 300;
    color: #d8c9d8;
    float: right;
}

.stars span {
    color: #ffc633;
    font-size: 1.5em;
}

.view-more-link {
    display: block;
    max-width: 200px;
    text-align: center;
    color: white;
    text-decoration: none;
    background-color: #252729;
    padding: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: inherit;
}

.view-more-link:hover {
    background-color: #070808;
}

#about-company {
    display: flex;
align-items: center;
flex-wrap: wrap;
align-content: stretch;
justify-content: flex-start;
padding: 10px 0;
margin-bottom: 20px;

}

.company-name {
margin: 10px;
font-size: 1.3rem;
font-weight: 700;
color: #ffffff;
}

.company-rating {
    background: #15bb6c;
color: rgb(70, 70, 70);
padding: 10px;
font-style: italic;
font-size: 1.1rem;
border-radius: 5px;
}

.tag {
color: #80aa07 !important;
margin: 10px 0;
}



@media (max-width: 1000px) {

    .reviews-box {
        justify-content: center;
    }

    #about-company {
justify-content: center;
}

}