/***************************************************************
            Developped by Theophile PACAUD - Trainee
                    https://git.xnj.ovh/tpacaud
                        intervalle.contact@tpacaud.fr
                  Universite Sorbonne PARIS NORD
                      For INTERVALLE SARL
                      All rights reserved
***************************************************************/

/*********************
        Header
*********************/

.header{
    text-align: center;
    background-color: rgba(255, 255, 255, 0.90);
}

/* .navbar-fixed{
    position: fixed;
} */

.background {
    filter: blur(4px);
    position: absolute;
    width: 100%;
    height: 100%;
}

.foreground {
    backdrop-filter: blur(10px);
}

.slogan{
    position: relative;
    float: right;
    margin-top: 16%;
}

.logo{
    /* margin-left: 6%; */
}

/*********************
    Home
*********************/

.home{
    /* padding-top: 30%; */
    width: 100%;
}

.home-content{
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 2%;
    display: flex;
    align-self: flex-start;
    gap: 5%;

    flex-direction: row;
    /* border-radius: 5px; */
    text-align: justify;
    background-color: rgba(255, 255, 255, 0.90);
}

@media (max-width: 1080px) {
    .home-content {
        position: initial;
        margin-top: 0%;
        flex-direction: column;
    }
}

@media (max-width: 1366px) {
    .home-content {
        padding-left: 4%;
        padding-right: 4%;
    }
}

.home-para{
    padding: 1%;
    /* flex: 50%; */
}

@media (max-width: 1025px) {
    .home-para {
        flex-direction: column;
    }
}

.home-title{
    color: #014ea2;
    text-align: left;
    /* NEEDED FOR LOGO IMG */
    /* width: 30%; */
    margin-bottom: 2%;
}

/*********************
    Menu Burger
*********************/


.burgermenu{
    z-index: 2;
    margin-right: 3%;
    margin-top: 1.3%;
    position: relative;
    float: right;
    cursor: pointer;
}

.burgerhide{
    opacity: 0;
}

/* .bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #014ea2;
    margin: 6px 0;
    transition: 0.4s;
} */

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #014ea2;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 20px;
}

@media (max-width: 1025px) {
    .bar1, .bar2, .bar3 {
        width: 55px;
        height: 8px;
        background-color: #014ea2;
        margin: 7px 0;
        border-radius: 20px;
    }
    .burgermenu{
        margin-top: 2%;
        margin-right: 4%;
    }
}

/*********************
    Menu
*********************/

.flex-closemenu{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.closemenu{
    cursor: pointer;
    margin-top: 1.3vh;
    margin-right: 3vh;
}

.menu .bar1{
    transform: rotate(-45deg) translate(-9px, 6px);
    width: 35px;
    height: 5px;
    margin: 6px 0;

}

.menu .bar2{
    transform: rotate(45deg) translate(-1px, 0px);
    width: 35px;
    height: 5px;
    margin: 6px 0;
}

/* .menu .bar1, .menu .bar2, .menu .bar3 {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s;
} */

.buttonmenu{
    cursor: pointer;
    /* border-radius: 8px; */
    color: #014fa2;
    padding: 1%;
    width: 70%;
    text-align: center;
    margin-top: 2%;
}

.buttonmenu a{
    text-decoration: none;
}

.firstmenubutton{
    margin-top: 3%;
}

.menu{
    font-family: "Brandon";
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border-radius: 8px; */
    width: 40%;
    height: 100vh;
    /* position: fixed; */
    padding-bottom: 3%;
/*     margin-right: 0.3%;
    margin-top: 0.3%; */
    background-color: #fffffff9;
    background-color: rgba(255, 255, 255, 1);
    color: black;
}


.flex-menu{
    position: fixed;
    top: 0%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (max-width: 1025px) {
    .menu {
        width: 50%;
    }
}