/*--------------GENERAL---------------*/
:root{
    --main-color: #045184;
    --black: #13131a;
    --bg: #ffffff;
    --border: 1rem solid rgba(255,255,255,.3);
    
    --color-primary: #7380EC;
    --color-danger: #FF7782;
    --color-success: #41F1B6;
    --color-warning:#FFBB55;
    --color-white: #fff;
    --color-info-dark:#7D8DA1;
    --color-info-light:#DCE1EB;
    --color-dark:#363949;
    --color-light:rgba(132,139,200,0.18);
    --color-primary-variant:#111E88;
    --color-dark-variant:#677483;
    --color-backgorund:#F6F6F9;

    --card-border-radius: 2rem;
    --border-radius-1: 0.4rem;
    --border-radius-2: 0.8rem;
    --border-radius-3: 1.2rem;

    --card-padding: 1.8rem;
    --padding-1: 1.2rem;

    --box-shadow: 0 2rem 3rem var(--color-light);
}

/*---------------------DARK THEME VARIABLES---------------*/
.dark-theme-variables{
    --color-backgorund: #181a1e;
    --color-white: #202528;
    --color-dark: #edeffd;
    --color-dark-variant: #a3bdcc;
    --color-light: rgba(0, 0, 0, 0.4);
    --box-shadow: 0 2rem 3rem var(--color-light);
}

*{
    margin: 0px;
    padding: 0px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100&family=Poppins:wght@100&display=swap');

html, body{
    width: 100%;
    height: 100%;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    background-color:var(--color-white);
}



/*--------------GENERAL---------------*/


/*-------------------------------------------HEADER---------------------------------------------*/
header{
    background-color: #1D1128;
    width: 100%;
    height: 15%;
    float: left;
}

header .logo img{
    margin-top: 20px;
    height: 50px;
    margin-left: 5px;
}
header .logo{
    float: left;
    margin-left: 15px;
}

header nav{
    float: left;
    padding-top: 3%;
    padding-left: 2%;
}
header .navbar a{
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.navbar{
    display: none;
}
.navbar2{
    box-sizing: border-box;
    display: block;
}
.navbar2 a{
    color: white;
    text-decoration: none;
}
.navbar2 ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
}
.navbar2 ul li a{
    display: list-item;
    text-align: -webkit-match-parent;
    margin-left: 4rem;
}
.navbar2 a:hover{
    color: orange;
    border-bottom: 2px solid orange;
    transition: all 0.1s ease-in-out;
    box-shadow: 5px 5px 10px 10px rgba(0,0,0,0.15);
}
.navbar a:hover{
    color: orange;
    border-bottom: 2px solid orange;
    transition: all 0.1s ease-in-out;
}
header .icons{
    margin-top: 15px;
}
header .icons a{
    color: #FFF;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}
header .icons div:hover{
    color:var(--main-color);
}
#menu-btn{
    display: none;
}
/*-------------------------------------------HEADER---------------------------------------------*/



/*-------------------------------------------MAIN---------------------------------------------*/
main{
    background-color: #5941A9;
    width: 100%;
    height: 280%;
    float: left;
}

.login{
    width: 60%;
    margin: 0 auto;
    margin-top: 5%;
    background-color: white;
}

.login{
    padding: 20px;
    text-align: center;
    box-shadow: 1px 1px 5px 5px rgba(0,0,0,0.15);
}

.login form input, .login form button, .type{
    height: 35px;
    outline: #111E88;
    padding: 0 15px;
    border: 2px solid var(--main-color);
}
.login form button{
    transition: all 0.5s ease;
}
.login form input:focus{
    border-bottom-width: 4px;
    box-shadow: 1px 1px 5px 5px rgba(0,0,0,0.15);
}

.login form button:hover{
    border-radius: var(--border-radius-2);
    background-color: #045184;
    color: white;
    transition: all 0.5s ease;
}
.eye-icon{
    position: relative;
    right: 2rem;
    top: 0.3rem;
    font-size: 20px;
    color: #8b8b8b;
    cursor: pointer;
}

.gallery{
    height: 30%;
    display: flex;
    box-sizing: content-box;
    text-align: center;
}
.sec{
    margin: 0 auto;
    background-color: #1D1128;
    width: 30%;
    color: white;
    box-shadow: 1px 1px 5px 5px rgba(0,0,0,0.15);
}
.galpic{
    height: 60%;
}



.attendance{
    width: 80%;
    margin: 0 auto;
    margin-top: 5%;
    background-color: white;
    border-radius: var(--border-radius-3);
    padding: 20px;
    text-align: center;
    box-shadow: 1px 1px 5px 5px rgba(0,0,0,0.15);
}

tbody, th, thead, table, tr, td{
    border: 1px solid black;
}
/*-------------------------------------------MAIN---------------------------------------------*/





/*-------------------------------------------FOOTER---------------------------------------------*/
footer{
    background-color: #1D1128;
    width: 100%;
    height: 80%;
    float: left;
    color: white;

}

footer .logo img{
    margin-top: 7%;
    height: 50px;
    margin-left: 5px;
    float: left;
}

footer .line_footer{
    float: left;
    background-color:#FAF0E6;
    width:0px;
    height: 90%;
    border-right:2px solid white;
    margin-left: 10px;
    margin-top: 1%;
}

footer .footer_sections{
    color: white;
    display: flex;
    padding: 2rem;
}
footer .footer_sections .foot_title{
    margin-left: 2rem;
}

#map{
    position: relative;
    height: 70%;
    width: 90%;
    border-radius: var(--border-radius-2);
}
.social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin-right: 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}
/*-------------------------------------------FOOTER---------------------------------------------*/


/*----------------------RESPONSIVE----------------------*/
@media (max-width: 767px) {
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width: 574px) {
    .footer-col{
        width: 100%;
    }
}
@media (max-width: 767px) {
    nav{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width:1030px){
    #menu-btn{
        display: inline-block;
        cursor: pointer;
        color: white;
        font-size: 2rem;
        float: right;
        margin-right: 1rem;
        margin-top: 20px;
    }
    .navbar2{
        display: none;
    }
    header .icons{
        margin-top: 15px;
    }
    header .icons{
        color: #FFF;
        cursor: pointer;
        font-size: 2.5rem;
        margin-left: 2rem;
    }
    header .icons div:hover{
        color:var(--main-color);
    }
    header .navbar{
        display: none;
        position: absolute;
        margin-top: 5.7rem;
        background-color: var(--color-white);
        width: 20rem;
        height: 100%;
        right: 0%;
        box-shadow: 2px 2px 5px 5px rgba(0,0,0,0.15);
        transition: all 0.4s ease-in-out;
    }
    header .navbar.active{
        display: block;
        transition: all 0.4s ease-in-out;
    }
    header .navbar a{
        color: var(--black);
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }
    main{
        height: 285%;
    }
    .gallery{
        height: 60%;
        position: relative;
        display: block;
        text-align: center;
        align-content: center;
    }
    .sec{
        width: 80%;
        height: 30%;
    }
    .galpic{
        height: 6rem;
    }


    footer{
        height: 120%;
    }
    footer .logo img{
        margin-top: 7%;
        height: 60px;
        margin-left: 5px;
        float: left;
    }
    footer .line_footer{
        display: none;
    }
    footer .footer_sections{
        display: block;
    }
}