@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.burger {
    position: fixed;
    top: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #61b1fc url(images/Burger.png);
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1000;
}

.burger:hover {
    box-shadow: 0 0 20px 10px #61b1fc;
}

.burger.active {
    background: #fff url(images/Fermer.png);
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
}

section {
    padding: 100px;
    min-height: 100vh;
    background: #000;
    /* border-bottom: 3px solid #c45e2c; */
}

.presentation {
    position: relative;
    width: 100%;
    border: 3px solid #61b1fc;
}

.presentation .imgPresentation {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
}

.presentation .imgPresentation img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-left: 3px solid #61b1fc;
}

.presentation .description, .menu {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 500px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 100px;
}

.logo {
    position: absolute;
    top: 0;
    width: 500px;
    height: 500px;
}

.nom {
    display: none;
}

.texte {
    font-size: 1.1em;
    margin: 20px 0;
    font-weight: 300;
    text-align: justify;
    color: #fff;
}

.presentation .description h2 {
    font-size: 3em;
    color: #fff;
}

.presentation .description h2 span {
    color: #61b1fc;
}

p {
    font-size: 1.1em;
    margin: 20px 0;
    font-weight: 300;
    text-align: justify;
    color: #000;
}

.telecharger {
    text-align: center;
}

.bouton {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 10px;
    letter-spacing: 2px;
    background: #61b1fc;
    color: #fff;
    text-decoration: none;
}

.menu {
    position: fixed;
    background: #61b1fc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    padding: 40px;
    z-index: 100;
    top: -100%;
}

.menu.active {
    top: 0;
}

.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
}

.menu ul li {
    margin-top: 10px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    margin: 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu ul li a:hover {
    color: #000;
}

.titre {
    width: 100%;
    text-align: center;
}

.titre h2 {
    display: inline-block;
    position: relative;
    color: #61b1fc;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px;  
}

.titre h2::after {
    content: '';
    position: absolute;
    left: 0%;
    bottom: -10px;
    width: 20%;
    height: 4px;
    background: #fff;
    -webkit-animation: 3s linear 0s infinite slide;
            animation: 3s linear 0s infinite slide;
}
@-webkit-keyframes slide { from { margin-left: 0%; } to { margin-left:80%; }  }
        @keyframes slide { from { margin-left: 0%; } to { margin-left:80%; }  }

.carte {
    padding-bottom: 0;
}

.carte .contenant {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.carte .contenant .contenu {
    padding: 40px 20px;
    max-width: 340px;
    min-width: 340px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
    background: #fff;
    border-radius: 30px;
}

.carte .contenant .contenu:hover {
    box-shadow: 0 0 20px 20px #61b1fc;
}

.carte .contenant .contenu img {
    max-width: 225px;
    transition: 0.5s;
}

.carte .contenant .contenu h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
    text-align: center;
}

.carte .contenant .contenu:hover h2 {
    color: #61b1fc;
}

.carte .contenant .contenu p {
    margin: 0;
    transition: 0.5s;
}

.carte .contenant .contenu:hover p {
    color: #61b1fc;
}

.carte .contenant .contenu h4 {
    text-align: center;
    transition: 0.5s;
}

.carte .contenant .contenu:hover h4 {
    color: #61b1fc;
}

.carte .contenu a {
    color: #000;
}

.footer {
    display: flex;
    justify-content: space-around;
    color: #61b1fc;
    background: #000;
    padding: 10px;
    border: 3px solid #61b1fc;
}

.footer p {
    color: #fff;
}

.footer a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 1181px) {
   
    .burger {
        top: 20px;
        left: 20px;
    }

    .nom {
        display: flex;
        position: absolute;
        top: 15%;
        font-size: 1.5em;
        letter-spacing: 1px;
        color: #61b1fc;
    }

    .presentation .imgPresentation {
        display: none;
    }

    .presentation .description, .menu {
        align-items: center;
        width: 100%;
        padding: 30px;
    }
    
    section {
        padding: 30px;
    }

    .carte .contenant {
        margin-top: 10px;
    }

    .carte .contenant .contenu {
        padding: 30px 20px;
        margin: 10px;
    }

    .carte .contenant .contenu:hover {
        box-shadow: 0 0 20px 10px #61b1fc;
    }

    .titre h2::after {
        bottom: 0px;
    }

    .menu ul li a {
        font-size: 1.3em;
        text-transform: capitalize;
        letter-spacing: 0;
    }

    .footer {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .footer p {
        font-size: 0.9em;
    }

    .logo {
        display: none;
    }
}

@media (min-width: 1921px) {
    .logo {
        top: 225px;
    }
}