.info-table .figure {
    height: 112px;
    width: 112px;
    background: aliceblue;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: 600;
}
.info-table{
    display: flex;
    gap: 8px;
}
.text-ta span{
    color: #fff;
    font-weight: 550;
}
.text-ta{
    color: var(--body-color);
    font-weight: 400;
    max-width: 600px;
}
.start-b {
    display: grid;
    gap: 10px;
    justify-content: normal;
    height: auto;
}
.POST-TABLE{
    background: -webkit-linear-gradient(left, #25c481, #25b7c4);
    background: linear-gradient(to right, #c3c1c2, #25b7c4);
    font-family: 'Roboto', sans-serif;
    width: 100%;
    border-radius: 8px;
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 10px;
}
.tbl-content{
    height:300px;
    overflow-x:auto;
    margin-top: 0px;
    border: 1px solid rgba(255,255,255,0.3);
}


tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}
table{
    width:100%;
    table-layout: fixed;
}
.tbl-header{
    background-color: rgba(255,255,255,0.3);
}
.tbl-content{
    height:300px;
    overflow-x:auto;
    margin-top: 0px;
    border: 1px solid rgba(255,255,255,0.3);
}
th{
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}
td{
    padding: 15px;
    text-align: left;
    vertical-align:middle;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    border-bottom: solid 1px rgba(255,255,255,0.1);
}
@media (max-width: 991px) {
    .text-ta{
        max-width: 460px;
    }
    .info-table .figure {
        height: 175px;
        width: 175px;
    }
}
@media (max-width: 768px) {
    .info-table{
        flex-wrap: wrap;
    }
    .info-table .figure {
        height: 70px;
        width: 70px;
    }

}