body{
    color: #181E19;
    background-color: #F1F6F1;
    font-family: 'Poppins', sans-serif;
}

header{
    font-family: 'Poppins', sans-serif;
    padding: 0 10%;
    width: 100%;
    height: 60vh;
    background:  linear-gradient(to bottom, rgba(19, 26, 69, 0.7), rgba(0,0,0,0.9)), url("../images/rkp-auditorium.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

header h1{
    color: #fff;
    font-size: 4rem;
    text-transform: capitalize;
    margin: 3rem 0 0 0;
}

header .underline{
    content: "";
    width: 50px;
    height: 2px;
    background-color: #1ECD56;
    display: inline-block;
}

.online, .service-time{
    padding: 2rem 10%;
}

.online iframe{
    width: 100%;
    height: 70vh;
}

.online h1{
    font-size: 40px;
    margin: 4rem 0 1rem 0;
    text-transform: uppercase;
}

.online a{
    background-color: transparent;
    border: 1px solid #1ECD56;
    color: #1ECD56;
    padding: 12px 20px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin: 1rem 0;
    border-radius: 6px;
}

.online a:hover{
    background-color: #1ECD56;
    color: #fff;
    transition: all ease-in-out .3s;
}

/*Service Time*/
.service-time h1{
    text-align: center;
    padding: 2rem 0;
    font-size: 40px;
    color: #181e19;
}

.service-time .container{
    background-color: #fff;
    line-height: 1.7rem;
    display: flex;
}

.service-time table tr td:last-of-type{
    padding: 15px 30px;
}

.service-time table tr h2{
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.service-time table tr p{
    color: #5F695F;
}

.service-time .container i{
    color:#1ECD56;
    font-size: 1.6rem;
}


@media screen and (max-width: 1000px){
    header, .online, .service-time{
        padding: 0 5%;
    } 
}

@media screen and (max-width: 750px){
    header h1{
        font-size: 2.5rem;
    }

    .online h1{
        font-size: 2rem;
    }

    .service-time .container{
        display: flex;
        flex-direction: column;
        margin-bottom: 3rem;
    }
    
}

@media screen and (max-width: 400px){
    header h1{
        font-size: 2rem;
    }

    header .underline{
        content: "";
        width: 30px;
        height: 2px;
        background-color: #1ECD56;
        display: inline-block;
    }

}