html{
    scroll-behavior: smooth;
    overflow-x: scroll;
}

.section-overview .contain{
    background-color: #F8F8F8;
    margin: auto;
    padding: 2rem;
}
.section-overview .contain ul li{
    margin: 1rem 0 1rem 4rem;
}

.section-programs, .section-price, .section-overview{
    padding: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.section-price{
    background-color: #F8F8F8;
}

.section-programs .contain .elite,
.section-programs .contain .midget,
.section-programs .contain .bantom{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
}

.section-sched .contain h2{
    text-align: center;
    margin: 1rem;
}

.section-sched .contain h4{
    text-align: center;
    word-spacing: 3rem;
}

.section-sched .contain h4 #elite{
    padding: 0 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}
.section-sched .contain h4 #midget{
    padding: 0 1.5rem;
    background-color: rgba(216, 44, 44, 0.6);
}
.section-sched .contain h4 #bantom{
    padding: 0 1.5rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.table-wrapper{
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
table{
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: left;
}
table tbody{
    width: 100%;
}
table, th, td{
    border: 1px solid black;
    border-collapse: collapse;
}
table th{
    text-align: center;
}
table#info #elite,
table#info #midget,
table#info #bantom{
    display: block;
    border-radius: 4px;
    text-align: center;
    margin-top: 10px;
}
table#info #elite{
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}
table#info #midget{
    background-color: rgba(216, 44, 44, 0.6);
}
table#info #bantom{
    background-color: rgba(0, 0, 0, 0.3);
}
th, td{
    padding: 15px;
}
table#info tr:nth-child(even){
    background-color: #eee;
}

table#info tr:nth-child(odd){
    background-color: #fff;
}

table#info th{
    background-color: black;
    color: white;
}

table{
    margin-left: auto;
    margin-right: auto;
}

.section-price .contain{
    padding: 2rem 0;
}

.section-price .contain h1{
    margin-bottom: 1rem;
}

.section-price .contain li{
    list-style: upper-alpha;
    margin: 1rem 0 1rem 4rem;
}

@media screen and (max-width: 768px){
    .section-a .contain h2{
        font-size: 3rem;
    }
    
    .section-programs .contain .elite,
    .section-programs .contain .bantom,
    .section-programs .contain .midget{
        grid-template-columns: 1fr;
    }

    .section-programs .contain .midget div:first-child{
        order: 2;
    }
}

