@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

body{
    margin: 0;
    padding: 0;
}

header{
    display: flex;
    background-color: #7A9E9F;
}

.identity{
    display: flex;
    align-items: center;
}

.identity img{
    display: block;
    margin: 10px 10px;
}

header{
    display: flex;
    justify-content: space-between;
}

.website_name{
    margin: 10px;
    font-size: 20px;
    width: 100px;
}

.nav{
    display: flex;
    align-items: center;
    flex-direction: row;
}

.global_search_bar{
    display: flex;
    align-items: center;
    width: 50%;
}

.global_search_bar>form{
    width: 100%;
}

.global_search_bar>form>input{
    width: 90%;
    border-radius: 6px;
    padding: 5px;
}

.global_search_bar>form>input::placeholder{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 5%, rgba(214, 214, 214, 0.5) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Lato", Courier, monospace;
    font-weight: 700;
}

.dot_3{
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(214, 214, 214, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav>ul{
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.nav>ul>li{
    min-width: fit-content;
    margin: 10px 10px;
    padding: 10px 0px;
    background-color: #5f767a;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav>ul>li:hover{
    background-color: #678485;
    /* box-shadow: 0px 0px 10px -2px #00000057; */
}

.nav>ul>li>a{
    padding: 10px 10px;
}

a{
    text-decoration: none;
    color: black;
}

h1{
    font-family: "Lato", Courier, monospace;
    font-weight: 700;
}

h2, h3{
    text-align: center;
    font-family: "Lato", Courier, monospace;
    font-weight: 700;
}

p, a{
    font-family: "Lato", Courier, monospace;
    font-weight: 400;
}

.slide{
    width: 99.999%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x : scroll;
    margin: 35px 0px;
}

.card{
    height: fit-content;
    width: 200px;
    padding: 16px;
    padding-bottom: 19px;
    margin: 15px 15px;
    background-color: #B8D8D8;
    text-align: center;
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.card:hover{
    box-shadow: 0px 0px 20px -2px #00000057;
}

.card>img{
    padding: 10px;
    height: 130px;
    width: auto;
}

footer{
    text-align: center;
    /* display: flex; */
    justify-content: space-around;
    /* position: absolute; */
    /* top: 50px; */
    /* bottom: 0; */
    width: 100%;
    background-color: #7A9E9F;
    /* margin-top: 50px; */
    height: calc(100vh - (92px + 528px + 20px + 35px));
}

.ul-eleves{
    list-style: none;
    padding: 0px;
    width: 370px;
    text-align: center;
}
footer img{
    align-items: center;
    height: 50px;
}

.img-info{
    margin: 16px 0px;
}

.eleves{
    display: flex;
    justify-content: center;
}

.discover{
    background-color: #7A9E9F;
    border-radius: 6px;
    padding: 6px;
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.discover:hover{
    background-color: #5F767A;
}

.team{
    margin-top: 5px;
}

.ul-eleves.ul-info{
    width: 100%;
}

.team-info{
    margin-top: 10px;
}

.desc, .desc_name{
    width: 160px;
    height: fit-content;
}

@media all and (max-width: 980px){
    .nav>ul {
        flex-direction: column;
    }
    .nav>ul>li {
        margin: 5px 10px;
        padding: 5px 0px;
    }
}