﻿
      
        .companies-list {
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
            width: calc(100% + 30px);
        }

        .companies-list .company {
            width: calc(33.3% - 30px);
            margin: 0 30px 30px 0;
            flex-grow: 1;
            text-align: center;
            /*border-right: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;*/
            padding: 50px 0;
            background-color: #fff;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .companies-list .company:hover {
            transform: translateY(-3px);

        }

@media (min-width: 993px) {
    .companies-list .company:nth-child(3n) { border-right: none; }
        .companies-list .company:nth-last-child(-n+3) { border-bottom: none; }
        }

.companies-list .company img {
    max-width: 120px;
    max-height: 60px;
    display: inline-block;
    margin: 0;
    transform: translate3d(0,0,0);
}

        .companies-list .company .company-logo {
            height: 60px;
            display: flex;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }

        .companies-list .company h4 {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            transition: 0.3s;
            display: block;
        }

        .companies-list .company span {
            color: #888;
        }

        .companies-list .company .star-rating {
            margin-top: 5px;
        }

        .not-rated,
        .company-not-rated {
            border-radius: 4px;
            background-color: #f0f0f0;
            color: #888;
            font-size: 14px;
            line-height: 15px;
            font-weight: 600;
            padding: 7px 9px;
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }

        /* Media Queries for Companies List */
@media (max-width: 1366px) {
    .letters-list a {
        font-size: 16px;
        height: 36px;
        width: 36px;
        line-height: 36px;
        margin: 0 -1px;
    }
}

@media (max-width: 992px) {
    .companies-list .company { 	width: calc(50% - 30px); }
}

@media (max-width: 768px) {
    .companies-list .company { width: 100%; }
}



 