/*Mise en place des éléments

**************************************************************/
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 18px;
    font-family: 'Work Sans', sans-serif;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

button:focus {
    outline: none;
}

.container {
    max-width: 1160px;
    margin: auto;
}

@media screen and (max-width:1160px) {
    .container {
        padding: 0 20px;
    }

}

.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 40px;
}

.col-1 {
    grid-column: span 1;
}

.cl-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

.col-6 {
    grid-column: span 6;
}

.btn{
    border-radius: 50px;
    padding: 20px 55px;
    text-align: center;
    text-transform: uppercase;
}

nav ul{
    padding: 0;
    display: flex;
    width: 600px;
    justify-content: space-between;
}

.btn-ouline-yellow {
    border: rgba(255, 255, 0, 1) solid 2px;
    color: rgba(255, 255, 0, 1);
    box-shadow: 0px 10px 30px rgba(255, 255, 0, 0.2);
    transition: 0.3s;
}

.btn-ouline-yellow:hover {

    box-shadow: 10px 0 30px rgba(255, 255, 0, 0.5), 0 10px 30px rgba(255, 255, 0, 0.5), -10px 0 30px rgba(255, 255, 0, 0.5), 0 -10px 30px rgba(255, 255, 0, 0.5);
    color: black;
    background: rgba(255, 255, 0, 1);
    transition: 0.3s;

}

.btn-ouline-yellow:active {
    box-shadow: inset 2px 2px 4px black;
}

.btn-dark {
    background: rgba(40, 40, 40, 1);
    box-shadow: 0px 10px 30px rgba(146, 146, 146, 0.3);
    color: white;
    transition: 0.3s;
}

.btn-dark:hover {
    background: rgba(80, 80, 80, 1);
    box-shadow: 10px 0 30px rgba(146, 146, 146, 0.5), 0 10px 30px rgba(146, 146, 146, 0.5), -10px 0 30px rgba(146, 146, 146, 0.5), 0 -10px 30px rgba(146, 146, 146, 0.5);
    transition: 0.3s;
}

.btn-dark:active {
    box-shadow: inset 2px 2px 4px black;
}

.btn-blue {
    background: rgba(0, 126, 250, 1);
    box-shadow: 0px 10px 30px rgba(146, 146, 146, 0.3);
    color: white;
    transition: 0.3s;
}

.btn-blue:hover {
    background: rgba(20, 146, 255, 1);
    box-shadow: 10px 0 30px rgba(20, 146, 255, 0.5), 0 10px 30px rgba(20, 146, 255, 0.5), -10px 0 30px rgba(20, 146, 255, 0.5), 0 -10px 30px rgba(20, 146, 255, 0.5);

}

.btn-blue:active {
    box-shadow: inset 2px 2px 4px black;
}

.btn-green {
    color: white;
    background: rgba(28, 187, 180, 1);
    box-shadow: 0 10px 30px rgba(28, 187, 180, 0.5);
    transition: 0.3s;
}

.btn-green:hover {
    background: rgba(48, 227, 200, 1);
    box-shadow: 10px 0 30px rgba(28, 187, 180, 0.7), 0 10px 30px rgba(28, 187, 180, 0.7), -10px 0 30px rgba(28, 187, 180, 0.7), 0 -10px 30px rgba(28, 187, 180, 0.7);
    transition: 0.3s;
}

.btn-green:active {
    box-shadow: inset 2px 2px 4px black;
}

.btn-yellow {
    background: rgba(255, 255, 0, 1);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.3);
    transition: 0.3s;
}

.btn-yellow:hover {
    background: rgba(255, 255, 0, 1);
    box-shadow: 10px 0 30px rgba(255, 255, 0, 0.5), 0 10px 30px rgba(255, 255, 0, 0.5), -10px 0 30px rgba(255, 255, 0, 0.5), 0 -10px 30px rgba(255, 255, 0, 0.5);
    transition: 0.3s;
}

.btn:hover span {
    display: block;
    transform: scale(1.05);
}

.btn-yellow:active {
    box-shadow: inset 2px 2px 4px black;
}

.btn:active span {
    display: block;
    transform: scale(0.95);
}

nav ul li {
    list-style: none;

}

nav ul li a {

    color: white;

}

.active {
    opacity: 0.5;
    cursor: default;
}

.active:hover {
    color: white;
}

nav ul li a:hover {
    color: rgba(0, 129, 255, 1);
    transition: 0.3s;
}

nav ul li a:active {
    transform: scale(0.95);
}

nav ul li a:visited {
    color: none;
}

a {
    text-decoration: none;
}

.font1 {
    font-family: 'Montserrat', sans-serif;
}

.font2 {
    font-family: 'Work Sans', sans-serif;
}

.font3 {
    font-family: 'Leckerli One', cursive;
}

.font4 {
    font-family: 'Coustard', serif;
}

.font5 {
    font-family: 'Cambay', sans-serif;
}

h2 {
    font-family: 'Leckerli One', cursive;
    font-size: 36px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

/*Header

**************************************************************/

header {
    position: absolute;
    width: 100%;
    padding: 60px 0 10px;
}

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 99999;
    padding: 10px 0 50px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    animation: animation-header-sticky 0.3s ease-out;
}

@keyframes animation-header-sticky {
    0% {
        transform: translateY(-100%);

    }

    100% {
        transform: translateY(0);
    }
}



header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -3px;
    margin: 0 10px;
    color: white;
}

header .btn {
    padding: 10px 35px;
}

.button-toggle {
    display: none;
    font-size: 1.5em;
}

.button-toggle::before {
    font-family: "Font Awesome 5 Free";
    /* updated font-family */
    content: "\f0c9";
}

.navigation {
    opacity: 1;
}



@keyframes animationsOpen {
    0% {
        display: block;
        opacity: 0;
        transform: translateX(0px);
    }

    100% {
        display: block;
        opacity: 1;
        transform: translateX(-240px);
    }
}

@keyframes animationsClose {
    0% {

        opacity: 1;
        transform: translateX(-240px);
    }

    100% {
        display: none;
        opacity: 0;
        transform: translateX(0px);
    }
}

@media screen and (max-width : 1050px) {
    header .container div {
        display: flex;
        align-items: center;
    }

    .button-toggle {
        display: block;
        margin-left: 15px;
    }

    .navigation {
        opacity: 0;
        padding: 50px;
        font-size: 1.2em;
        position: absolute;
        top: 127px;
        right: -240px;
        flex-direction: column;
        width: auto;
        background: rgba(0, 0, 0, 0.8);
        animation-duration: 0.5s;
        transition: 0.3s;
        z-index: 2000;
        display: none;
    }

    .navigation li {
        padding: 20px;
    }

    .navigation-opened {
        display: block;
        animation: animationsOpen 0.5s ease-out;
        animation-fill-mode: forwards;
    }

    .navigation-closed {
        display: block;
        animation: animationsClose 0.5s ease-out;
        animation-fill-mode: forwards;
    }

    .navigation-toggle-opened::before {
        content: "\f00d"
    }
}

@media screen and (max-width:550px) {
    header {
        padding: 10px 0
    }

    header .container {
        flex-direction: column;
        height: 200px;
    }

    .navigation {
        top: 200px;
        width: 100%;
        text-align: center;
    }

    header .container div {
        flex-direction: column;
        align-items: center;
    }

    .button-toggle {
        margin: 15px 0
    }
}


/*Footer


**************************/

footer{
    background: url(Image/bg3.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 0
    
}

footer .container{
    padding-bottom: 180px;
}

footer small{
    font-size: 1em;
    color: gray;
}

footer .reseauSociaux{
    
    margin: 50px 0;
    
}

footer .font1{
    font-size: 42px;
    font-weight: 900;
}

footer .font5 a{
    color: rgba(0,126,250,1);
}

footer input , footer textarea{
    color: white;
    background: rgba(43,43,43,1);
    border:solid 2px rgba(53,53,53,1);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    width: 100%;
    display: block;
    transition: 0.3s;
    margin: 20px 0;
}

footer textarea{
    resize: none;
}

footer textarea::-webkit-scrollbar{
    display: none;
}

footer input:focus, footer textarea:focus{
    background: rgba(33,33,33,1);
    border: solid 2px #8799a3;
    outline: none;
}

footer button {
    margin: 20px 0;
}


 .footerSection2{
    padding-top: 80px;
}

.botBar{
    background: rgba(0,0,0,0.2);

}

.botBar .container{
        padding: 50px
}