/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on July 24, 2022 */


@font-face {
    font-family: 'quicksandlight';
    src: url('../webfonts/quicksand_light-webfont.woff2') format('woff2'),
         url('../webfonts/quicksand_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

*{
    font-family: "quicksandlight";
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    height: fit-content;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.155)), url(../../images/bg.jpg);
    background-position: center;
    background-size:cover;
    z-index: -1;
}

/* --- Scrollbar styling --- */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    margin: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(165, 165, 165, 0.7);
    border-radius: 10px;
}

.navigation{
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100vh;
    width: 5%;
    background-color: rgba(33, 33, 33, 0.3);
    border-radius: 5px;
    transition: .5s;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-white-space: nowrap;
    overflow: hidden;
    flex-flow: nowrap;
    z-index: 10;
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.navigation .fa-xmark{
    display: none;
}

.navigation ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    list-style: none;
    height: 50px;
    opacity: .8;
}

.navigation ul li a{
    text-decoration: none;
    color: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 10;
    font-size: 14px;
    margin: 15px 10px;
}

.navigation ul li a .tools{
    display: none;
    margin-left: 20px;
}


.open{
    /* 15% */
    /* min-width: fit-content; */
    width: 15%; 
}

.open ul li{
    justify-content: left;
}

.open ul li a .tools{
    display: inline;
}

.navigation ul li:hover {
    background-color: rgba(255, 255, 255, 0.075);
    opacity: 1;
}

.navigation ul li:active {
    background-color: rgba(255, 255, 255, 0.175);
    opacity: 1;
}

.navigation ul .current {
    background-color: rgba(255, 255, 255, 0.175);
    opacity: 1;
}

.logo{
    width: 100%;
    height: 20%;
}

.button{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 35px; 
    height: 25px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgb(211, 211, 211);
    cursor: pointer;
    bottom: 1%;
    right: 5%;
}

.button::before{
    content: '';
    position: absolute;
    width: 60%;
    height: .5px;
    border-radius: 3px;
    background-color: rgb(47, 47, 47);
    transform: translateY(-5px);
    transition: 1s;
}

.button::after{
    content: '';
    position: absolute;
    width: 60%;
    height: .5px;
    border-radius: 3px;
    background-color: rgb(47, 47, 47);
    transform: translateY(5px);
    transition: 1s;
}

.active::before{
    content: '';
    position: absolute;
    width: 40%;
    height: 1px;
    border-radius: 3px;
    background-color: rgb(47, 47, 47);
    transform: translateY(0) rotateZ(-405deg);
    transition: 1s;
}

.active::after{
    content: '';
    position: absolute;
    width: 40%;
    height: 1px;
    border-radius: 3px;
    background-color: rgb(47, 47, 47);
    transform: translateY(0) rotateZ(225deg);
    transition: 1s;
}

.button-phone{
    display: none;
}    

/* Information */

.our-features{
    padding: 20px 100px;
    color: white;
}

.our-features h2{
    padding: 30px 0;
}

.our-features p span{
    font-weight: 600;
}

.our-features p{
    width: 80%;
    line-height: 30px;
}

.our-features ol{
    transform: translate(2%);
    line-height: 30px;
}


/* Media query pour les mobiles */

@media(max-width: 700px) {

    .navigation{
        background-color: rgba(33, 33, 33, 0.862);
        position: fixed;
        width: 40%;
        transform: translateX(0);
        z-index: 100;
        transition: transform .5s;
    }


    .navigation .fa-xmark{
        display: inline-block;
        position: absolute;
        right: 5px;
        top: 5px;
        color: white;
    }

    .navigation ul li:nth-child(1){
        margin-top: 20px;
    }

    .navigation ul li{
        justify-content: left;
        margin: 10px 0;
    }

    .button{
        display: none;
    }

    .button-phone{
        display: flex;
        /* display: none; */
        opacity: 1;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 25px; 
        height: 25px;
        border-radius: 15px;
        background-color: rgba(255, 255, 255, 0.4);
        border: 1px solid rgb(211, 211, 211);
        cursor: pointer;
        top: 15px;
        left: 15px;
    }

    .button-phone:active{
        background-color: rgba(255, 255, 255, 0.175);
    }

    .navigation ul li a .tools{
        display: inline;
        font-size: 10px;
        margin-left: 5px;
        text-align: left;
    }

    /* Information */

    .our-features{
        padding: 20px;
        color: white;
    }

    .our-features h2{
        padding: 30px 0;
    }

    .our-features p span{
        font-weight: 600;
    }

    .our-features p{
        width: 100%;
        line-height: 30px;
    }

    .our-features ol{
        /* width: 60%; */
        font-size: 14px;
        transform: translate(4%);
        line-height: 30px;
    }

    .logo{
        width: 80%;
    }
   
}


