.compare-table {
    max-width: 950px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;

}
.table-row {
    display: flex;
    flex-direction: row;
}
.table-row {
    justify-content: space-between;
}
.table-row div:nth-child(1) {
    flex: 0 0 200px;
}
.table-row div:nth-child(2) {
    flex: 0 0 40px;
}
.table-row div:nth-child(3),
.table-row div:nth-child(4),
.table-row div:nth-child(5) {
    flex: 0 0 160px;
    text-align: center;
}

.table-head {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.4px;
    color: #212529;
    margin-bottom: 15px;
}
.table-head div {
    padding: 10px 25px;
}
.table-head div:nth-child(3) {

    justify-content: center;
    align-items: center;
    background: #FFD43B;
    border-radius: 8px;
}
.compare-area {
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    border-radius: 14px;
}
.compare-area .table-row {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    align-items: center;
    letter-spacing: -0.4px;
    color: #212529;
    border-top: 1px solid #C7C7C7;
    padding: 20px;
}
.compare-area .table-row:first-child {
    border-top: none;
}

.compare-area .info {
    position: relative;
}
.compare-area .info span {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    padding: 7px;
    border-radius: 3px;
    width: 240px;
    color: #fff;
}

@media only screen and (max-width: 1200px) {
    .table-row div:nth-child(1) {
        max-width: 105px;
        flex: 0 0 105px;
        font-size: 12px;
        padding: 0;
    }
    .table-row div:nth-child(3),
    .table-row div:nth-child(4),
    .table-row div:nth-child(5) {
        flex: 0 0 calc((100% - 105px) / 3);
        text-align: center;
        font-size: 12px;
        padding: 10px 0;
    }

    .table-row div:nth-child(2) {
        display: none;
    }
}