*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    width: 100%;
    margin: 0;
}
html{
    height: 90vw;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100%;
    padding-bottom: 25.2rem;
    box-sizing: inherit;
}
header{
    width: 100%;
    height: auto;
}
.navbar{
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    background-color: #0082B5;
    align-items: center;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-right: 40px;
    padding-left: 40px;
}
.navbar-list{
    width: 100%;
    height: auto;
}
.navbar-list ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
.navbar-list ul li{
    list-style-type: none;
}
.navbar-list ul li a{
    text-decoration: none; 
    color: #ffffff;
    font-size: 1.1em;
    font-family: 'Times New Roman';
    font-weight: bold;
}
.current-page{
    color: #F5CB99;
}
.navbar-list ul li a:hover{
    color: #F5CB99;
}
.menu-toggle{
    display: none;
}
.menu-icon{
    cursor: pointer;
    display: none;
}
.aliet-icon-on-header{
    display: none;
}
.col{
    width: 53px;
    height: auto;
}
.col img{
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
    right: 20px;
}
.notice-bar{
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: #CCEDF9;
    overflow: hidden;
    margin-top: 60px;
}
.notices-container{
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    display: flex;
}
.notice{
    width: auto;
    height: auto;
}
.notice a{
    text-decoration: none;
    font-size: 1.1em;
    font-family: 'Times New Roman';
    font-weight: bold;
    color: #00415A;
    margin-right: 20px;
}
.notice a span{
    color: #B96400;
}
@keyframes marquee{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
.main{
    width: 100%;
    height: auto;
}
.main h2{
    font-size: 24px;
    font-family: 'Times New Roman';
    font-weight: bold;
    color: #00415A;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.table-intake-details{
    display: flex;
    align-items: center;
    justify-content: center;
}
table{
    width: 50%;
    height: auto;
    border: 2px solid #00415A;
}
th{
    font-size: 20px;
    font-family: 'Times New Roman';
    font-weight: bold;
    color: #ffffff;
    border: 2px solid #00415A;
    padding: 10px;
    background-color: #00415A;
}
td{
    font-size: 18px;
    font-family: 'Times New Roman';
    color: #000000;
    text-align: center;
    border: 2px solid #00415A;
    padding: 10px;
}
footer{
    width: 100%;
    position: absolute;
    background-color: #006288;
    bottom: 0;
}
.frow{
    display: flex;
    margin-left: 110px;
    margin-right: 110px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: left;
}
.fcol{
    width: 100%;
    flex-basis: 25%;
    padding: 20px;
    color: #ffffff;
}
.fcol h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    color: #CCD0DB;
}
.logo{
    width: 80px;
    height: 80px;
}
ul li{
    list-style: none;
    margin-bottom: 10px;
}
ul li a{
    text-decoration: none;
    font-size: 16px;
    font-family: 'Times New Roman';
    font-weight: bold;
    color: #ffffff;
    transition: 0.2s ease-in-out;
}
ul li a:hover{
    color: #CCD0DB;
}
.copyright{
    color: #ffffff;
    font-size: 14px;
    font-family: 'Times New Roman';
    font-weight: bold;
    text-align: center;
    padding: 5px;
}







@media (max-width: 1275px){
    .navbar-list{
        display: none;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 40px;
        padding-right: 40px;
        position: absolute;
        background-color: #F5F5F5;
        top: 60px;
        left: 0;
    }
    .navbar-list li{
        margin-bottom: 15px;
    }
    .navbar-list ul li a{
        font-family: 'Times New Roman';
        color: #00415A;
    }
    #menu-toggle:checked + .menu-icon + .navbar-list{
        display: flex;
    }
    .current-page{
        color: #B96400;
    }
    .menu-icon{
        display: block;
        width: 60px;
        color: #ffffff;
        padding-bottom: 10px;
    }
}
@media(max-width: 1134px){
    .navbar-list li{
        width: 16%;
        height: auto;
        text-align: center;
    }
}
@media(max-width: 755px){
    .navbar-list li{
        width: 25%;
        height: auto;
        text-align: center;
    }
}
@media(max-width: 530px){
    .navbar-list li{
        width: 30%;
        height: auto;
        text-align: center;
    }
}
@media(max-width: 403px){
    .navbar-list li{
        width: 50%;
        height: auto;
        text-align: center;
    }
}
@media(max-width: 1275px){
    .aliet-icon-on-header{
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        position: absolute;
        z-index: 1;
        top: 4px;
        right: 0;
    }
    .alietlogo{
        width: 80px;
        height: 50px;
    }
}
@media(max-width: 480px){
    .aliet-icon-on-header{
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        position: absolute;
        z-index: 1;
        right: 0;
    }
    .alietlogo{
        width: 60px;
        height: 40px;
    }
}
@media(max-width: 844px){
    body{
        padding-bottom: 40rem;
    }
}
@media(max-width: 508px){
    body{
        padding-bottom: 50rem;
    }
}
@media(max-width: 476px){
    body{
        padding-bottom: 60rem;
    }
}
@media(max-width: 360px){
    body{
        padding-bottom: 70rem;
    }
}