.container {
    padding: 50px 0px 1px 0px;
    font-family: "Public sans", sans-serif;
    color: #fff;
    background: var(--secondary-color);
}

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 30px;
}
.heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: var(--gradient);
    padding: 8px 40px;
    border-radius: 30px;
    text-align: center;
}
.subheading {
    margin-top: 10px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.table_container {
    width: 90%;
    max-width: 56rem;
    margin: 60px auto;
    overflow-x: hidden;
    padding-bottom: 1rem /* 16px */;
}

.head {
    display: flex;
}
.head .th {
    width: 33%;
    text-transform: uppercase;
    min-width: 120px;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid #bfbfbf;
    border-right: none;
}
.head .th:last-child {
    border-right: 3px solid #bfbfbf;
}

.brow {
    display: flex;
}
.brow .td {
    width: 33%;
    padding: 8px 10px;
    font-size: 16px;
    line-height: 1.2rem;
    min-width: 120px;
    border: 3px solid #bfbfbf;
    border-right: none;
    border-top: none;
    text-align: center;
}

.brow .td:last-child {
    border-right: 3px solid #bfbfbf;
}

.cta_container {
    margin-top: 40px;
}

@media screen and (max-width: 750px) {
    .heading {
        font-size: 22px;
        line-height: 2rem;
        /* text-transform: capitalize; */
    }
    .table_container {
        margin: 20px auto 60px auto;
    }
}

@media screen and (max-width: 550px) {
    .head .th {
        font-size: 14px;
        font-weight: 600;
        padding: 8px;
    }
    .brow .td {
        line-height: 1.1rem;
        font-size: 12px;
    }
}

@media screen and (max-width: 450px) {
    .heading {
        font-size: 16px;
    }
    .head .th {
        text-transform: capitalize;
        font-size: 14px;
        line-height: 1.2rem;
        min-width: auto;
    }
    .brow .td {
        min-width: auto;
    }
}
