.programSection{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.programTitle{
    width: 80%;
    height: 100%;
    border-radius: 10px;
    background-color: #00cddf;
    border-top: 4px solid #008c99;
    border-bottom: 4px solid #008c99;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.programTitle p{
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    text-align: center;
}

.classes{
    display: flex;
    width: 100%;
    padding: 40px;
    justify-content: center;
    align-items: center;
    
}
.classInformation{
    flex-basis: 45%;
    padding: 0 50px;
    color: #fff;
}
.classImage1{
    width: 700px;
    background: url('../images/programs/banner1.jpg') no-repeat;
    height: 350px;
    background-position: center;
    background-size: cover;
}
.classImage2{
    width: 700px;
    background: url('../images/programs/Banner2.jpg') no-repeat;
    height: 350px;
    background-position: center;
    background-size: cover;
}
.classImage3{
    width: 700px;
    background: url('../images/programs/banner3.jpg') no-repeat;
    height: 350px;
    background-position: center;
    background-size: cover;
}

.classInformation ol li{
    list-style: upper-roman;
}
.classInformation h1{
    font-size: 60px;
}
p.classPara{
    font-size: 20px;
    margin-top: 30px;
    line-height: 25px;
}
.classInformation ol{
    font-size: 18px;
    margin: 10px 0 10px 30px;
}
.classInformation ol li{
    margin: 10px 0;
}

@media only screen and (width <=1135px){
    .classes{
        flex-direction: column;
    }
    .classInformation{
        flex-basis: 100%;
        padding: 30px 20px;
    }
    .classImage1, .classImage2, .classImage3{
        width: 90vw;
        padding: 0 20px;
    }
    .classes:nth-child(2){
        flex-direction: column-reverse;
    }
}

@media only screen and (width <= 1000px){
    .programTitle p{
        font-size: 15px;
    }
}
@media only screen and (width <= 900px){
    .classInformation h1{
        font-size: 40px;
    }
}