/* ---- FONT FACE ---- */
@font-face {
  font-family: "Roboto";
  src: local(Roboto Thin), url("../fonts/roboto/Roboto-Thin.eot");
  src: url("../fonts/roboto/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../fonts/roboto/Roboto-Thin.woff") format("woff"), url("../fonts/roboto/Roboto-Thin.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Roboto";
  src: local(Roboto Light), url("../fonts/roboto/Roboto-Light.eot");
  src: url("../fonts/roboto/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../fonts/roboto/Roboto-Light.woff") format("woff"), url("../fonts/roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: local(Roboto Regular), url("../fonts/roboto/Roboto-Regular.eot");
  src: url("../fonts/roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/roboto/Roboto-Regular.woff") format("woff"), url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.eot");
  src: url("../fonts/roboto/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../fonts/roboto/Roboto-Medium.woff") format("woff"), url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.eot");
  src: url("../fonts/roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/roboto/Roboto-Bold.woff") format("woff"), url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
    font-family: 'font-iconregular';
    src: url('../fonts/navy/navy.woff2') format('woff2'),
         url('../fonts/navy/navy.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/* ---- BODY ---- */
html{
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
    margin:0;
    padding: 0;
}
.unselected{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
input, textarea{
    outline: none;
}
h1, h2, h3, h4, h5{
    margin-top:0;
}
h1{
    font-size:32px;
}
h2{
    font-size:18px;
    text-transform: uppercase;
    font-weight: 300;
}
h3{
    font-size:24px;
}
h4, h5{
    font-size:16px;
}
body {
    background: #f2f2f2;
    color: #222;
    font-family: "Roboto";
    font-size: 16px;
    margin: 0;
    font-weight: normal;
    padding: 0;
}
.taille_site{
    margin:auto;
    width:100%;
    max-width:1280px;
}
.message_temp{
    display: flex;
    height:100%;
    width:100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-bottom: solid 1px #fff;
    padding: 45px 0 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
footer {
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15px 0;
}
.menu .each{
    color:#222;
    font-weight: 300;
    padding: 0 15px;
    border-right:solid 1px #444;
    cursor: pointer;
    text-transform: uppercase;
}
.menu .each:first-child {
    font-size: 24px;
    padding-left:130px;
}
.menu .each:first-child img {
    position: absolute;
    width: 100px;
    left: 15px;
    top: 15px;
}
.menu .each:last-child{
    border-right:none;
}
.section_cv {
    padding: 15px 0;
}
.section_cv h3{
    font-size:24px;
    margin: 0;
}
.section_cv .each{
    display:flex;
    align-items: center;
    margin: 7.5px;
    cursor: pointer;
    transform: scale(0.9);
    transition:all 0.3s;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.section_cv .each .title_each{
    text-transform: uppercase;
    font-weight: 300;
}
.section_cv .each:hover{
    background: #ddd;
}
.section_cv .each.active, .section_cv .each.active:hover {
    background: #fff;
    transform: scale(1);
}
.section_cv .each .annee{
    background: #222;
    color:#fff;
    height: 75px;
    width:75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right:15px;
    font-weight: 300;
    font-size: 18px;
    padding:7.5px;
}
.section_cv .each .info{
    width:calc(100% - 100px);
}
.illustration{
    width:calc(100%);
    height: auto;
    overflow:hidden;
    margin: 30px 0;
    position: relative;
}
.illustration .legende{
    position: absolute;
    display:none;
    height:100%;
    width:100%;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color:#fff;
    top:0;
    left:0;
    opacity: 0;
    transition:all 0.3;
    font-size: 12px;
}
img.illu{
    width:100%;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.illustration:hover img.illu{
    filter:brightness(30%);
    transform:scale(1.05);
}
.illustration:hover .legende{
    display: flex;
    opacity: 1;
}
.section_cv .each .info .desc{
    color:#777;
}
.section_cv .each.active .info .desc{
    color:#50E3C2;
}
#cv > .taille_site{
    display: flex;
}
#cv .description_section_cv{
    margin: 22px 0 30px 30px;
    width: 100%;
    max-width: 750px
}
#cv .description_section_cv .desc{
    padding:30px;
}
#cv .section_cv{
    width: calc(100% - 750px);
    min-width: 300px;
    position: relative;
}
#cv .description_section_cv .each{
    margin-bottom:45px;
    background: #fff;
}
#cv .description_section_cv .each.active{
    display:block;
}
.description_section_cv .logo{
    display: flex;
    width:100%;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 15px 0;
}
.description_section_cv #waxinteractive .logo {
    background:#00b2ed;
}
.description_section_cv #icilalune .logo {
    background:#000;
}
.description_section_cv #seloger .logo,
.description_section_cv #feelandclic .logo,
.description_section_cv #miratech .logo {
    border-bottom:solid 1px #ddd;
}
.description_section_cv .logo img {
    height: 60px;
}
.description_section_cv #seloger .logo img {
    height: 60px;
}
.description_section_cv #miratech .logo img, .description_section_cv #waxinteractive .logo img {
    height: 60px;
    padding: 0px 0;
}
h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 300;
    text-transform: uppercase;
    padding-top: 60px;
}
.clients{
    display:flex;
    justify-content: center;
    align-items: center;
}
.clients .client{
    background: #aaa;
    padding: 15px;
    margin: 15px;
    height: 150px;
    width:150px;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius:100px;
    color:#444;
    text-transform: uppercase;
    flex-direction: column;
}
.clients .client .logo{
    width:100px;
}
.clients .client .logo img{
    width:100%;
}
#bloc_client{
    background: #222;
    padding: 45px 0 75px;
}
#bloc_client h1{
    color:#fff;
    border:none;
}
.savoirs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    flex-wrap: wrap;
}
.savoirs .savoir{
    display: flex;
    padding: 15px;
    flex-direction: column;
    height:150px;
    width:150px;
    align-items: center;
    justify-content: center;
    margin:15px;
    background: #fff;
    text-align: center;
    transform: scale(0.9);
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}
.savoirs .savoir:hover{
    background: #ddd;
}
.savoirs .savoir .name {
    margin-top: 7.5px;
    width: 100%;
}
.savoirs .savoir.active,
.savoirs .savoir.active:hover{
    background: #222;
    color:#fff;
    transform: scale(1);
}
.les_savoirs{
    background: #222;
    padding:45px;
    color:#fff;
    height:300px;
    margin-top:15px;
    display: flex;
}
.les_savoirs .each{
    padding: 15px;
}
.user,
.client,
.table{
    height:30px;
    width:30px;
    display:flex;
    background: #777;
    align-items: center;
    justify-content: center;
    margin: 7.5px;
    color:transparent;
    font-size:12px;
}
.user img,
.client img,
.table img{
    width:100%;
}
#moi.user {
    background: #444;
    color: transparent;
}
.savoir.active #moi.user,
.savoir.active .carte,
.savoir.active .case,
.savoir.active .map .rang .carte{
    color: #777;
    background: #fff;
}
.savoir.active .client,
.savoir.active .user,
.savoir.active .nav{
    color:#fff;
}
.table{
    height:30px;
    width:100px;
    background: #E1D4B3;
    display: flex;
    flex-direction: column;
}
.postits{
    display:flex;
}
.postit{
    height:5px;
    width:5px;
    background: #F10CE1;
    display:flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
}
.active .postit{
    opacity:0;
}
.feuille{
    height:10px;
    width:7px;
    background: #fff;
    display:flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
}
.rang{
    display: flex;
    align-items: center;
    justify-content: center;
}
h1 .explication {
    font-size: 18px;
    color: #777;
    text-align: center;
}
.place{

}
.place .rang{
    display: flex;
}
.place .carte{
    display: flex;
    background: #aaa;
    padding: 7.5px;
    margin: 2px;
    color:transparent;
}
.ecran .rang{
    display: flex;
}
.ecran .case{
    display: flex;
    background: #ccc;
    padding: 7.5px;
    margin: 2px;
    width: 100%;
    color:transparent;
    align-items: center;
    justify-content: center;
}
.ecran .case:nth-child(2){
    background: #aaa;
}
.ecran .nav{
    display: flex;
    background: #777;
    padding: 1px 3.25px;
    color:transparent;
    font-size:10px;
    width:100%;
    margin: 2px;
    align-items: center;
}
.map{
    display: flex;
    flex-direction: row;
}
.map .rang{
    display: flex;
    flex-direction: column;
}
.map .rang .carte{
    display: flex;
    width:20px;
    height:20px;
    background: #aaa;
    padding: 5px;
    align-items: center;
    justify-content: center;
    border-radius:30px;
    margin: 5px;
    position: relative;
    color:transparent;
}
.map .rang .carte span{
    position: relative;
    z-index: 10;
}
.map .rang .carte::before {
    content: "";
    width: 35px;
    background: #aaa;
    position: absolute;
    top: 50%;
    height: 3px;
    transform: rotate(27deg);
    left: 13px;
    top: 21px;
}
.map .rang .carte::after {
    content: "";
    width: 35px;
    background: #aaa;
    position: absolute;
    top: 50%;
    height: 3px;
    transform: rotate(-27deg);
    left: 13px;
    top: 6px;
}
.map .rang:nth-child(3) .carte::before,
.map .rang:nth-child(3) .carte::after{
    display:none;
    background: #fff;
}
.active .map .rang:nth-child(2) .carte::before,
.active .map .rang:nth-child(2) .carte::after{
    background: #fff;
}
.background {
    height: 400px;
    background: url("../images/background.jpg") fixed no-repeat 0 bottom #aaa;
    background-size:100%;margin-top:-100px;
    position: relative;
    z-index: 0;
}
#vision.section{
    background: #222;
    color:#fff;
    padding-bottom:60px;
    margin-top:45px;
}
.menu img.logo {
    width:30px;
}
.rang .board{
    background: #aaa;
    width:55px;
    height:35px;
    margin:5px;
    align-items: center;
    justify-content: center;
    display: flex;
    color: transparent;
    flex-direction: column;
}
.active .rang .board{
    color: #777;
    background:#fff;
}
.rang .board::before{
    width:7.5px;
    height:7.5px;
    margin-bottom:0;
    background: none;
    content:"";
}
.rang .board.pin::before{
    display:none;
}
.rang .board.pin i{
    font-size:10px;
    color:#7ED321;
    opacity: 0;
}
.rang .board.pin i.fa-times{
    color:#D0021B;
}
.rang .board.pin{
    font-size: 10px;
}
.active .rang .board::before{
    background: #F8E71C;
}
#recette.savoir{
    align-items: flex-start;
}
#analyse_data .each{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom:5Px;
}
#analyse_data .each .mot{
    color:#aaa;
    margin-left: 5Px;
}
#analyse_data .each .mot:nth-child(1){
    font-weight: bold;
    text-transform: uppercase;
    padding: 5Px;
}
#analyse_data .each .mot:nth-child(2){
    text-transform: uppercase;
    padding: 5px;
    font-size: 12Px;
}
#analyse_data .each .mot:nth-child(3){
    font-weight: bold;
    padding: 5px;
    font-size: 18Px;
}
#analyse_data .each .mot:nth-child(4){
    padding: 5px;
    text-transform: uppercase;
    font-size: 20Px;
}
#analyse_data .each .mot:nth-child(5){
    padding: 5px;
    font-size: 10Px;
}
#analyse_data .each .mot:nth-child(6){
    padding: 5px;
    font-size: 10Px;
    font-size: 12Px;
}
#analyse_data .each .mot:nth-child(7){
    padding: 5px;
    font-size: 10Px;
    font-weight: bold;
    text-transform: uppercase;
}
#analyse_data.active .each .mot{
    color:#E56D3D;
}
.info .rang {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
}
.info .rang .illustration{
    margin: 5Px;
}
.header_fixes .menu{
    position: fixed;
    width:100%;
    top:0;
    z-index: 1000;
    border-color: #ddd;
}
.header_fixes .menu .each{
    color:#222;
}
.header_fixes{
    padding-top:72px;
}
#recette .rang .board{
    margin:5px 15px;
}
#recette .each .rang {
    justify-content: flex-start;
    margin-left: 32px;
}
.menu_cv_fixes #menu_cv .inter{
    position: fixed;
    top:100px;
}
.menu_cv_fin_fixes #menu_cv .inter{
    position: absolute;
}
#vision ul {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
}
#vision ul li {
    list-style: none;
    padding: 15px;
    display: flex;
    margin: 0 15px;
    text-transform: uppercase;
    align-items: center;
}
#vision ul li i{
    font-size:45px;
    padding: 15px;
    border-right:solid 1px #444;
    margin-right:15px;
}
#vision ul li:nth-child(1) i {
    color: #50E3C2;
}
#vision ul li:nth-child(2) i {
    color: #50E3C2;
}
#vision ul li:nth-child(3) i {
    color: #50E3C2;
}
.contacts{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts .contact{
    display: flex;
    height:100px;
    width:100px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color:#eee;
    background: #777;
    padding: 15px;
    text-decoration: none;
    transition: all 0.3s;
}
.contacts .contact:hover{
    transform: rotate(8deg);
    background: #283e4a;
}
.contacts .contact .name{
    margin-top:7.5px;
    text-decoration: none;
}
.contacts .contact i{
    color:#fff;
    font-size:40px;
}
#contact.section{
    padding-bottom:60px;
}
#dev .ecran:nth-child(2) .rang{
    height:0;
}
#dev.active .ecran:nth-child(1) .rang:nth-child(1) .case:nth-child(1),
#dev.active .ecran:nth-child(2) .rang:nth-child(1) .case:nth-child(1){
    background: #33BCA7;
    color:#fff;
}
#dev.active .ecran:nth-child(2) .rang:nth-child(1) .case:nth-child(1){
    font-size:9px;
    justify-content: flex-start;
    padding: 5px;
}
#dev .ecran .rang{
    overflow: hidden;
}
#dev .each {
    height: 100px;
}
