@import url('https://fonts.googleapis.com/css?family=Poppins: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;
}

body
{
    display: flex;
    justify-content:center;
    align-items: center;
    min-height: 100vh;
    background: #111;
}

.accueil
{
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(#2b1055,#7597de);
    overflow-x: hidden;

}

header
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

header .Logo
{
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10000;
}

header ul
{
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li
{
    list-style: none;
    margin-left: 20px;
}

header ul li a
{
    text-decoration: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 20px;
}

header ul li a:hover,
header ul li a.active
{
    background: #fff;
    color: #2b1055;
}

section
{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section::before
{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #1c0522, transparent);
    z-index: 1000;
}

section img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

section img#moon
{
    mix-blend-mode: screen;
}

section img#junglefront
{
    z-index: 10;
}

#texte
{
    position: absolute;
    right: -365px;
    color: #fff;
    white-space: nowrap;
    font-size: 7.5vw;
    z-index: 9;
}

#btn
{
    text-decoration: none;
    padding: 8px 30px;
    display: inline-block;
    border-radius: 30px;
    background: #fff;
    color: #2b1055;
    font-size: 1.5em;
    z-index: 9;
    transform: translateY(100px);
}

.sec
{
    position: relative;
    padding: 100px;
    background: #1c0522;
}

.sec h2
{
    color: white;
    font-size: 75px;
    width: 1130px;
    margin: 30px auto;
    text-align: center;
}

.sec p
{
    font-size: 1.3em;
    color: #fff;
}

.container
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
}

.container .ring
{
    position: relative;
    width: 150px;
    height: 150px;
    margin: -30px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #fff;
    animation: animate 4s linear infinite;
}

@keyframes animate
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}

.container .ring::before
{
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: #fff;
    box-shadow: 0 0 0 5px #ffffff33,
    0 0 0 10px #ffffff22,
    0 0 0 20px #ffffff11,
    0 0 20px #fff,
    0 0 50px #fff;
}

.container .ring:nth-child(2)
{
    animation: animate2 4s linear infinite;
    animation-delay: -1s;
    border-top: 4px solid transparent;
    border-left: 4px solid #fff;
}

.container .ring:nth-child(2)::before
{
    content: '';
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: #fff;
    box-shadow: 0 0 0 5px #ffffff33,
    0 0 0 10px #ffffff22,
    0 0 0 20px #ffffff11,
    0 0 20px #fff,
    0 0 50px #fff;
}


@keyframes animate2
{
    0%
    {
        transform: rotate(360deg);
    }
    100%
    {
        transform: rotate(0deg);
    }
}

.container .ring:nth-child(3)
{
    animation: animate2 4s linear infinite;
    animation-delay: -3s;
    position: absolute;
    top: -66.66px;
    border-top: 4px solid transparent;
    border-left: 4px solid #fff;
}

.container .ring:nth-child(3)::before
{
    content: '';
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: #fff;
    box-shadow: 0 0 0 5px #ffffff33,
    0 0 0 10px #ffffff22,
    0 0 0 20px #ffffff11,
    0 0 20px #fff,
    0 0 50px #fff;
}


.container p
{
    position: absolute;
    color: #fff;
    font-size: 1.5em;
    bottom: -80px;
    letter-spacing: 0.12em;
    font-weight: 300;
}

.projets
{
    background: #1c0522;
    width: 100%;
    padding: 100px 0px;

}

.title h2
{
    color: white;
    font-size: 75px;
    width: 1130px;
    margin: 30px auto;
    text-align: center;
    margin-top: -50px;

}

.box
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.cards
{
    height: 365px;
    width: 335px;
    padding: 20px 35px;
    background: #191919;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cards i 
{
    font-size: 50px;
    display: block;
    text-align: center;
    margin: 25px 0px;
    color: #fff;
}

h5
{
    color: #fff;
    font-size: 23px;
    margin-bottom: 15px;
} 

.pra p
{
    color: #fff;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
}

.cards .button
{
    background-color: #f9004d;
    color: #fff;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    transition: .4s;
}

.cards .button:hover
{
    background-color: transparent;
    border: 2px solid #f9004d;
    cursor: pointer;
}

.contact
{
    width: 100%;
    height: 290px;
    background: #191919;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.contact p
{
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact .button
{
    background-color: #f9004d;
    color: #fff;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    transition: .4s;
}

.contact .button:hover
{
    background-color: transparent;
    border: 2px solid #f9004d;
    cursor: pointer;
}

.third
{
    background-color: #191919; 
}

.third p 
{
    position: relative;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}