@charset "utf-8";

.blockCompany {
    padding: 100px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    letter-spacing: 0.1em;
}

table th, table td {
    padding: 25px;
    border-top: 1px solid #ccc;
}

table th {
    background: #f6f6f6;
    width: 20%;
}

table td {
    padding-left: 40px;
}

table tr:last-child th,
table tr:last-child td {
    border-bottom: 1px solid #ccc;
}


@media (max-width: 767px){
    .blockCompany {
        padding: 50px 0;
    }

    table {
        font-size: 1.6rem;
    }
    
    table th,
    table td {
        display: block;
        width: 100%;
        padding: 10px !important;
    }

    table td {
        border-top: 0;
    }

    table tr:last-child th {
        border-bottom: 0;
    }
}