.content {
    font-family: "Raleway", sans-serif;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    color: #000000;
    font-variant-numeric: lining-nums proportional-nums;
 }
 .content h1 {
    font-size: 32px;
    line-height: 37px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
 }
 .text-times {
    margin: 60px 0;
    padding: 40px 60px;
    border-radius: 30px;
    border: 1px solid #F0F0F0;
    background: #FFF;
 }
 .text-times * {
    margin-bottom: 20px;
 }
 .text-times p {
    font-size: 18px;
    line-height: 26px;
 }
 .wrapper-table {
    width: 100%;
    overflow-x: auto;
 }
 .wrapper-table .item {
    width: 100%;
    padding: 40px 20px;
    border-radius: 30px;
    background-color: #fff;
 }
 .wrapper-table .item table {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 21px;
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
 }
 .wrapper-table .item table thead tr {
    border-bottom: dashed 1px #D9D9D9;
    font-size: 12px;
    line-height: 14px;
    color: #757575;
    font-weight: 400;
    padding-bottom: 5px;
 }
 .wrapper-table .item table tbody tr {
    border-bottom: 1px dashed #D9D9D9;
 }
 .wrapper-table .item table th, .wrapper-table .item table td {
    white-space: nowrap;
    font-weight: 400;
    text-align: center;
 }
 .wrapper-table .item table td {
    padding: 10px 0;
    border-right: 1px dashed #D9D9D9;
    vertical-align: middle;
 }
 .wrapper-table .item table td:last-child {
    border-right: 0;
 }
 .wrapper-table .item table td img {
    width: 100px;
    height: auto;
 }

 @media (max-width: 768px) {
    .wrapper-table, .wrapper-table .item {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .wrapper-table .item {
       padding: 20px;
    }
    .wrapper-table .item table {
      min-width: 800px;
    }
    .wrapper-table .item table td img {
       width: 70px;
    }
 }

 @media (max-width: 550px) {
    .content h1 {
       font-size: 18px;
       line-height: 21px;
    }
    .text-times {
       margin: 30px 0;
       padding: 20px;
       border-radius: 16px;
    }
    .text-times p {
       font-size: 14px;
       line-height: 21px;
    }
    .wrapper-table {
       margin: 20px 0;
    }
 }