body{
    background-color: var(--grey-200); /* Pour les navigateurs ne suportant pas les dégradés */
    background: radial-gradient(circle,
        var(--grey-900) 0%,
        var(--grey-900) 50%,
        black 100%
    );
    color: var(--grey-100);
}

/* ******************************************* ANIMATION ******************************** */
@keyframes slideDown {
    from { transform: translateY(0); }
    to { transform: translateY(5%); }
}
@keyframes slideUp {
    from { transform: translateY(5%); }
    to { transform: translateY(0); }
}


/* ******************************************* OFFICE HOME ******************************** */


#office-home-container{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
}
#office-left-side{
    display: flex;
    flex-direction: column;
    /* justify-content: start; */
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 650px;
    /* margin-left: 10%; */
    background-color: var(--grey-200);
    /* background-color => secondary-color avec transparence à 50% */
    /* background-color: rgba(235, 208, 36, 0.5); */
    

    
    
}

/* ******************************************* OFFICE MOBILE LAYOUT ******************************** */

#office-mobile-layout{
    z-index: 1000;
    /* position: absolute; */
    /* top: calc(60% - 150px); */
    /* left: 30px; */
    display: flex;
    flex-direction: column;
    /* align-self: flex-start; */
    align-self: center;
    justify-content: center;

    height: 300px;
    width: 600px;
    border-radius: 20px;
    background-color: black;
    box-shadow: 2px 1px 10px 2px rgba(0,0,0,0.5);
}
#office-mobile-frame{
    display: flex;
    flex-direction: column;
    margin: 6px;
    height: 100%;
    width: 97%;
    border-radius: 20px;
    background-color: var(--grey-800);
}
#office-iframe{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background-color: var(--grey-800);
}

/* ******************************************* OFFICE RIGHT ******************************** */

#office-right-side{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    /* width: 66%; */
    width: calc(100% - 660px);
    /* background-color: var(--grey-800); */
}
#office-right-side-content{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    /* padding: 10px 10px 10px 14%; */
    overflow: auto;
}

/* ******************************************* OFFICE HEADER ******************************** */

#office-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    padding: 10px 20px;
    color: black;
}

#office-brand-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 110px;
    width: 100%;
    font-size: 70px;
    color: var(--secondary-color);
    font-weight: 500;
    /* letter spacing of font*/
    letter-spacing: 8px;
}
#office-domain-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    /* letter spacing of font*/
}
#office-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid var(--grey-500);
}

#account-box{
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    /* height: 50px; */
    /* width: 200px; */
    max-width: 200px;
    /* background-color: var(--grey-500); */
    /* border-radius: 2px; */
    /* padding: 0 10px; */
    cursor: pointer;
}
#profile-icon{
    height: 30px;
    width: 30px;
    /* margin-right: 10px; */
    margin: 0 30px;
    color: var(--secondary-color);
}
#profile-icon span{
    font-size: 30px;
}

#connexion-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 34px;
    width: 160px;
    /* background-color: var(--primary-color); */
    background-color: var(--secondary-color);
    font-size: 16px;
    border-radius: 2px;
    /* margin: 0 30px 0 220px; */
    /* border: 3px solid var(--primary-color); */
}
#connexion-btn:hover{
    background-color: var(--grey-300);
}


/* ******************************************* OFFICE VIEWS ******************************** */


#office-accueil-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
}
#office-marketing-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}
#office-formation-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}
#office-neuro-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}
#office-legal-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 2s ease-out;
    padding: 10px;
}

.horizontal-content{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;

}




/* ******************************************* MENU ******************************** */
.office-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 20px 20px;
    /* background-color: var(--grey-500) */
}

.menu-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 34px;
    background-color: var(--grey-200);
    border-radius: 2px;
    /* border-bottom: 3px solid var(--grey-500); */
    cursor: pointer;
}

.menu-btn:hover{
    /* background-color: var(--grey-300); */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.5); */
    /* position: relative; */
    /* bottom: -10px; */
    background-color: var(--primary-color);
}
.selected-btn{
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    animation: slideDown 0.5s forwards;
}


/* ******************************************* OFFICE INTER SIDE ******************************** */

#office-inter-side{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 10px;
    background-color: var(--grey-300);
}