/* HEADER */
#headerContainer{
    position: relative; height: 20vh; width: 99%; margin: 0.5%;
}

#headerImage{
    width:100%; height:100%; object-fit: cover;border-radius: 10px;
}

#headerText{
    position: absolute; bottom: 15px; left: 30px; font-size: 40px; color: white; 
}

#headerBtn{
    position: absolute; bottom: 15px; right: 30px; color: black; width:120px; height: 35px;
}

/* SHORTCUTS */
.shortcutContainer{
    text-align: center; display: inline-block; position: relative; width: 20%; margin-top: 20px; 
}

.shortcut{
    text-align: center; display: inline-block; background-color: rgba(255, 255, 255, 0.8); position: relative; width: 180px; height: 180px; border-radius: 10px; margin-top: 20px; margin-bottom: 20px;
}

.shortcutIcon{
    width: auto; height:130px; object-fit: contain; margin:0px;
}

/* POLICY SHORTCUT */
.shortcutPolicy{
    text-align: center; display: inline-block; background-color: rgba(255, 255, 255, 0.8); position: relative; width: 29%; margin-left: 2%; margin-right: 2%; height: 50px; 
    border-radius: 10px; margin-top: 20px; margin-bottom: 0px; font-weight: bold; line-height: 50px; text-align: center; color: rgb(73, 73, 73); font-size: 20px; text-decoration: none;
}

/* OTHERS */
#subHeading{
    font-size: 20px; width: 100%; border-bottom: 3px solid #ffc107; font-weight: bold; margin-top: 20px;
}

#tableContainer{
    width: 80%; margin: auto; margin-bottom: 20px;
}

/* RESPONSIVE RELATED */
@media screen and (max-width: 800px) {
    #headerContainer{
        position: relative; height: 10vh; width: 99%; margin: 0.5%;
    }

    #headerText{
        position: absolute; bottom: 10px; left: 20px; font-size: 25px; color: white; 
    }

    .shortcutContainer{
        text-align: center; display: inline-block; position: relative; width: 50%; margin-top: 20px; 
    }

    #headerBtn{
        position: absolute; bottom: 10px; right: 10px; color: black; width:100px; height: 30px; font-size: 12px;
    }

    .shortcut{
        margin-top: 5px; margin-bottom: 5px; width: 150px; height: 180px;
    }

    .shortcutPolicy{
        margin-top: 10px; margin-bottom: 0px; line-height: 40px; height: 40px; width: 95%; color: rgb(73, 73, 73); font-size: 16px; text-decoration: none;
    }

    #tableContainer{
        width: 90%; margin: auto; margin-bottom: 20px;
    }
}
