div.pricingContainer{
    width: 100%;
    background:#5c539d;
    min-height: 100%;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 150px;
    margin-bottom: 50px;
    padding-bottom: 10px;
}
div.pricingContainer h2{
    color: white;
    font-size: 2rem;
    padding: 50px 0;
    text-align: center;
}
div.price-row{
    width: 100%;
    max-width: 100vw;
    /* border: 2px solid black; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap:25px;
}
div.price-col{
    /* border: 1px dashed red; */
    background: #1f283b;
    padding: 10% 15%;
    border-radius: 10px;
    color:white;
    text-align: center;
}
div.price-col p {
    font-size: 1.2rem;
}
div.price-col h3{
    font-size: 2rem;
    margin: 20px 0 40px;
    font-weight: 500;
}
div.price-col h3 span{
    font-size:1rem;
}
div.price-col ul{
    text-align: left;
    margin: 20px 0;
    color: #ddd;
}
div.price-col ul li {
    margin: 15px 0;
    list-style: none;
}
div.price-col ul li::before{
    content: '\2022';
    color: #e33058;
    font-weight: bold;
    margin-right: 9px;
}
div.price-col button{
    width: 100%;
    padding: 14px 0;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    border: 1px solid #e33058;
    border-radius: 6px;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.5s;
}
div.price-col button:hover{
    background-color: #e33058;

}
div.price-col button:active{
    background-color: #aa0a2d;
}
.photo-heading{
    color: #fff;
    text-align: center;
    font-size: 2rem;
    border-bottom: 2px solid white;
    padding-bottom: 20px;
}
div.gallery1{
    width: 100%;
    height: 35%;
    border-top: 2px solid red;
    background: url(groupImg.JPG);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.gallery2{
    width: 100%;
    height:60%;
    border-top: 2px solid red;
    background: url(student-img.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.gallery3{
    width: 100%;
    height:50%;
    border-top: 2px solid red;
    background: url(student-img2.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.gallery4{
    width: 100%;
    height:50%;
    border-top: 2px solid red;
    background: url(student-img3.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.review1{
    width: 100%;
    height:20%;
    border-top: 2px solid red;
    background: url(Review1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.review2{
    width: 100%;
    height:20%;
    border-top: 2px solid red;
    background: url(Review2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.review3{
    width: 100%;
    height:20%;
    border-top: 2px solid red;
    background: url(Review3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.review4{
    width: 100%;
    height:20%;
    border-top: 2px solid red;
    background: url(Review4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.review5{
    width: 100%;
    height:20%;
    border-top: 2px solid red;
    background: url(Review5.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
div.review6{
    width: 100%;
    height:10%;
    border-top: 2px solid red;
    background: url(Review6.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top-left;
    margin-bottom: 150px;
}
iframe{
    margin-bottom: 150px;
}
.footer{
    background: #222;
    color:#fff;
    padding: 20px 0;
    text-align: center;
}
.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}
.footer-section{
    flex:1;
    padding: 10px;
    min-width: 250px;
}
.footer-section h3{
    color:#4caf50;
}
.footer-section ul{
    list-style: none;
    padding: 0;
}
.footer-section ul li{
    margin: 8px 0;
}
.footer-section ul li a{
    color: #fff;
    text-decoration: none;
}
.footer-bottom{
    margin-top: 20px;
    border-top: 1px solid white;
    padding: 10px;
}
@media(max-width: 768px){
    .footer-container{
        flex-direction: column;
        text-align: center;
    }
    .footer-section{
        padding: 15px;
    }
}
