@import "branding.css";
@import "STY-text.css";
@import "STY-sections.css";
@import "STY-buttons-elements.css";
@import "STY-parallax.css";


body {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    font-family: 'Spinnaker', sans-serif;
    position: relative;
}
a {
    text-decoration: none;
    cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--white);
}
::-webkit-scrollbar-thumb {
    background: var(--blue-700);
}
.nodisplay {display: none;}
/* Display flex */
.display-row-center {
    display: flex; flex-direction: row;
    justify-content: center; align-items: center;
}
.display-column-center {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
}

/* Hover - click */
.click {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.click:hover {filter: brightness(80%);}
.click:active {filter: brightness(100%);}


/* ----------------------------------------------------------- PAGE */
.page {
    width: 100%;
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center;
    position: relative;
}
/* ----------------------------------------------------------- ADMIN NAV */
.admin-nav {
    width: 90%; 
    display: flex; flex-direction: column;
    padding: 20px 40px 0px 0px; box-sizing: border-box;
}
.admin-nav-a-first {
    margin: 0px 0px 10px 0px;
}
.admin-nav-a-second {
    margin: 0px 0px 10px 20px;
}

/* ----------------------------------------------------------- NAV */
#header {
    width: 100%;
    height: 60px;
    background-color: var(--white);
    position: fixed;
    top: 0;
    z-index: 100;
}
.header-logo {
    height: 50px;
    margin: 0px 0px 0px 20px;
}
.logo-nav {
    width: 30px; height: 30px;
    fill: var(--text-dark);
    margin: 0px 0px 0px 20px;
}
.header-left {
    width: 160px; height: 100%;
    display: flex; flex-direction: row; justify-content: left; align-items: center;
}
.header-right {
    width: 160px; height: 100%;
    display: flex; flex-direction: row; justify-content: right; align-items: center;
}

/* Navigation */
#nav {
    width: calc(100% - 320px); height: 100%;
}
.nav-li-a {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0px 20px 0px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.nav-li-a:hover {color: var(--green-700);}
.nav-li-a:active {color: var(--text-dark);}

.nav-li-a-onPage {
    font-size: 14px;
    color: var(--green-700);
    margin: 0px 20px 0px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.nav-login {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0px 20px 0px 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.nav-login:hover {color: var(--green-700);}
.nav-login:active {color: var(--text-dark);}

.profile-initials {
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: var(--green-700);
    display: flex; justify-content: center; align-items: center;
    margin: 0px 20px 0px 0px;
}
.mentor-initials {
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: var(--blue-700);
    display: flex; justify-content: center; align-items: center;
    margin: 0px 20px 0px 0px;
}

/* Burger */
#burger {
    display: none;
}
.burger-icon {
    width: 30px; height: 30px;
    fill: var(--text-dark);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.burger-icon:hover {fill: var(--green-700)}
.burger-icon:active {fill: var(--text-dark)}

@keyframes burgerNavDown {
    from {margin-top: -100px}
    to {margin-top: 60px;}
}
@keyframes burgerNavUp {
    from {margin-top: 60px}
    to {margin-top: -100px;}
}
.burger-nav {
    width: 100%;
    background-color: var(--white);
    margin-top: -100px;
    position: fixed;
    z-index: 1;
}
.burger-nav-anim-down {
    width: 100%;
    background-color: var(--white);
    margin-top: 60px;
    position: fixed;
    z-index: 1;
    animation-name: burgerNavDown;
    animation-duration: 1.5s;
}
.burger-nav-anim-up {
    width: 100%;
    background-color: var(--white);
    margin-top: -100px;
    position: absolute;
    z-index: 1;
    animation-name: burgerNavUp;
    animation-duration: 1.5s;
}
#burger-nav a {
    width: 100%;
    padding: 10px 0px 10px 0px;
}

#admin-nav {
    width: 100%;
    height: 60px;
    display: flex; flex-direction: row; align-items: center;
    padding: 0px 20px; box-sizing: border-box;
}
/* ----------------------------------------------------------- FOOTER*/
.footer {
    width: 100%;
    background-color: var(--white);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 60px 0px 60px 0px;
}

.footer-nav {
    display: flex; flex-direction: row;
    justify-content: center; align-items: center;
}
.footer-nav a {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0px 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.footer-nav a:hover {color: var(--green-700);}
.footer-nav a:active {color: var(--text-dark);}

.footer-info {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    margin-top: 20px;
}
.footer-info-row {
    display: flex; flex-direction: row;
    justify-content: center; align-items: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.liaa-logo {
    width: 100px;
    margin: 0px 10px;
}
.liaa-text {
    width: 50%;
    margin-left: 40px;
    text-align: justify;
}
/* ----------------------------------------------------------- PAGINATIONS - per page*/
.pagination {
    width: 90%;
    display: flex; flex-direction: row; justify-content: center; align-items: center;
    margin: 20px 0px 40px 0px;
}
.pagination a {
    margin: 0 5px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
}
.pagination .active {
    font-weight: bold;
    font-size: 15px;
}
.pagination-icon {
    width: 25px; height: 25px;
    fill: var(--text-dark);
    margin: 0 5px -4px 5px;
}
.rotate180 {rotate: 180deg;}
/* ----------------------------------------------------------- COOKIE modal*/
@keyframes cookieModal {
    0% {margin-bottom: -100%}
    50% {margin-bottom: -100%}
    100% {margin-bottom: 0px;}
}

.modal-cookie {
    width: calc(100vw - 10px);
    padding: 20px 20px;
    box-sizing: border-box;
    background-color: var(--green-300);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    position: fixed;
    bottom: 0;
    z-index: 200;
    animation-name: cookieModal;
    animation-duration: 4s;
}
.cookie-l {
    width: 50%;
    padding: 20px; box-sizing: border-box;
    display: flex; justify-content: right;
}
.cookie-r {
    width: 50%;
    padding: 20px; box-sizing: border-box;
    display: flex; justify-content: left;
}

/* ----------------------------------------------------------- @media */
@media only screen and (max-width: 900px) {
    #nav {
        display: none;
    }
    #burger {
        display: inline;
        width: calc(100% - 320px); height: 100%;
        display: flex;
        justify-content: center; align-items: center;
    }
    .footer-info-row {
        flex-direction: column;
    }
    .liaa-text {
        width: 80%;
        margin-left: 0px;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .footer-nav {
        flex-direction: column;
    }
    .footer-nav a {
        margin: 0px 0px 10px 0px;
    }
}
@media only screen and (max-width: 400px) {
    #burger {
        width: 20%;
    }
    .header-left, .header-right {
        width: 40%; 
    }
}