body{
  margin: 0;
  padding: 0;
  font-size: 16px;
  text-align: justify;
}
.system_text{
  flex:1;
  margin: 2vh;
  height: 90vh;
  padding: 2vh;
  
}

.card_system{
  width: 100vw;
  height: 100vh;
  margin:0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(to right bottom, #b9b9b9, #C8BFA0) ;
}

.apparition{
  flex:2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;

  animation: arrivee .8s ease-in forwards;

}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 700px;
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  animation: espace 10s ease-in-out infinite;
   
}


.aureole {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  box-shadow: -10px -10px 10px 10px #d6af2355;


}


.sphere {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(140deg,#AAA2,#f0dfa2);
  position: absolute;
  box-shadow: -10px -10px 10px 10px #d6af2355;


}

#flou_sphere{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  animation: bubbleEffect 10s ease-in-out infinite;
  filter: blur(1.5px);
}


.satellite {
  opacity: 0.85;
  cursor: pointer;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}


.satellite .satellite {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #77611355;
  position: absolute;
  top: 50%;
  left: 50%;
  animation: orbit_connect 10s linear infinite;
}


.s_secure {
  background-color: #77611355;
  animation: orbitS 15s linear infinite;
  box-shadow: -1px -5px 15px #aaa;
}
.s_secure:hover {
  border : #5555FF55 solid 10px;
}

.s_maintanance {
  width: 120px ;
  height: 120px ;
  background-color: #77611355;
  animation: orbitM 10s linear infinite;
  box-shadow: -1px -5px 15px #aaa;
}
.s_maintanance:hover {
  border : #55FF5555 solid 10px;
}

.s_logit {
  width: 150px ;
  height: 150px ;
  background-color: #77611355;
  transform-origin: center center;
  animation: orbit 15s linear infinite;
  box-shadow: -1px -5px 15px #aaa;
}
.s_logit:hover {
  border : #ff638455 solid 10px;
}
.s_connect {
  background-color: #77611355;
  box-shadow: -1px -5px 15px #aaa;
}
.s_connect:hover {
  border : #ffFF5555 solid 10px;
}

.satellite:hover {
  width: 150px;
  height: 150px;
  animation-play-state: paused;
  box-shadow:none;
}

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(150px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(150px);
  }
}
@keyframes orbitS {
  0% {
    transform: translate(-50%, -50%) rotate(-180deg) translateX(300px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(300px);
  }
}
@keyframes orbitM {
  0% {
    transform: translate(-50%, -50%) rotate(-220deg) translateX(150px) ;
  }
  100% {
    transform: translate(-50%, -50%) rotate(140deg) translateX(150px);
  }
}

@keyframes orbit_connect {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(125px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(125px);
  }
}
.show_view{
  width: 99vw !important;
  height: 98vh !important;
  opacity: 1;
  z-index: 2010 !important;
}


#view_maintenance{
  bottom:0;
  left:50%;
  width: 99vw;
  height: 0;
  transform:  translate( -50% , 0);
  transition:  height 0.2s ease-in-out;
  display: none;
  z-index: 201;
  background-color: #555;
  position: fixed;
  border : 10px #65a165 solid
}

#view_secure{
  top:50%;
  left: 50%;
  width: 0;
  height: 0;
  transform:  translate( -50% , -50%);
  transition: width 0.2s ease-in-out, height 0.1s ease-in-out;
  display: none;
  z-index: 201;
  background: linear-gradient(to right bottom, #EFEFEF, #e3dfcf) ;
  position: fixed;
  border : 10px #00758f solid
}


#view_connect{
  top:50%;
  left: 50%;
  width: 0;
  height: 0;
  transform:  translate( -50% , -50%);
  transition: width 0.2s ease-in-out, height 0.1s ease-in-out;
  display: none;
  z-index: 201;
  background-color: #555;
  position: fixed;
  border : 10px #d6af23 solid
}


#view_logit{
  top:50%;
  left: 50%;
  width: 0;
  height: 0;
  transform:  translate( -50% , -50%);
  transition: width 0.2s ease-in-out, height 0.1s ease-in-out;
  display: none;
  z-index: 201;
  background-color: #555;
  position: fixed;
  border : 10px #ff7866 solid;
}

#view_logit .header_view {

  border-bottom:2px #ff7866 solid ;
}

.header_view{
  display: flex;
  justify-content: center;
  align-items: center;

}




@keyframes bubbleEffect {
  0% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.01;
  }
  100% {
    opacity: 0.08;
  }
}













































@font-face {
  font-family: lemon_milk;
  font-weight: normal;
  src: url("assets/lemon_milk/LEMONMILK-Regular.otf") format("opentype");
}

@font-face {
  font-family: lemon_milk;
  font-weight: bold;
  src: url("assets/lemon_milk/LEMONMILK-Bold.otf") format("opentype");
}

@font-face {
  font-family: lemon_milk;
  font-weight: lighter;
  src: url("assets/lemon_milk/LEMONMILK-Light.otf") format("opentype");
}


@-webkit-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-webkit-keyframes fadein_fleche {
  0%   { opacity: 0; }
  20%   { opacity: 0; }
  75% { opacity: 1; }
  83% { opacity: 0.3; }
  100% { opacity: 1; }
}

@-moz-keyframes fadein_fleche {
  0%   { opacity: 0; }
  20%   { opacity: 0; }
  75% { opacity: 1; }
  83% { opacity: 0.3; }
  100% { opacity: 1; }
}

@keyframes fadein_fleche {
  0%   { opacity: 0; }
  20%   { opacity: 0; }
  75% { opacity: 1; }
  83% { opacity: 0.3; }
  100% { opacity: 1; }
}


@-webkit-keyframes gotoleft {
0%   { transform:translateX(400px);opacity: 0;}
25%   { transform:translateX(400px);opacity: 0;}
60% { transform:translateX(0px);opacity: 0.8;}
100% { transform:translateX(0px);opacity: 1;}
}

@-moz-keyframes gotoleft {
0%   { transform:translateX(400px);opacity: 0;}
25%   { transform:translateX(400px);opacity: 0;}
60% { transform:translateX(0px);opacity: 0.8;}
100% { transform:translateX(0px);opacity: 1;}
}

@keyframes gotoleft {
0%   { transform:translateX(400px);opacity: 0;}
25%   { transform:translateX(400px);opacity: 0;}
60% { transform:translateX(0px);opacity: 0.8;}
100% { transform:translateX(0px);opacity: 1;}
}



@keyframes movebottom {
0%   { top: -30px; }
100% { top: 0px; }
}

.card{
  height: 100vh;
  /*border: red solid 1px;*/
  position: relative;
  
  width: 100%;
 
}
body{
  padding: 0;
  margin: 0;
  font-family: 'lemon_milk', sans-serif;
}
#accueil{
  padding: 0 !important;
  background: linear-gradient(140deg,#AAA2,#d6af2322);
}
.col_nav{
flex:1;
text-align: center;
padding-top:2vh ;
}
#video-bg {
opacity: 0.3;
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
z-index: -1;
filter: blur(7px);
}

#sys_c{
background: linear-gradient(60deg, #FFF, #fffcfa);
}
#logit_c{ 
background: linear-gradient(60deg, #FFF, #ffe9e6);
}
#system{
background: linear-gradient(to bottom,#d6af23  ,#ff7866 20%,#d6af23);
}
#logit{
background: linear-gradient(to bottom,#d6af23  ,#ff7866 20%);
}
#connect_c{
background: linear-gradient(60deg, #FFF, #fbf6e4);
}
#connect{
background: linear-gradient(to bottom,#ff7866,#d6af23 50%,#ff7866);
}

#secure_c{
background: linear-gradient(60deg, #FFF, #def9ff);
}
#secure{
background: linear-gradient(to bottom,#ff7866,#00758f 20%);
}
#maintenance_c{
background: linear-gradient(60deg, #FFF, #e4efe4);
}
#maintenance{
background: linear-gradient(to bottom,#00758f,#65a165 20%);
}
#entreprise{
background: linear-gradient(140deg,#fafffa,#d6af2322);
}
#img_acc{
  
  height:80vh;
  -webkit-animation: fadein 2s ease-in;
     -moz-animation: fadein 2s ease-in;
          animation: fadein 2s ease-in;
  opacity: 1;
}
#fleche{
  width: 10vh;
  height: 10vh;
  opacity: 1;
  -webkit-animation: fadein_fleche 2300ms ease-in ;
     -moz-animation: fadein_fleche 2300ms ease-in ;
          animation: fadein_fleche 2300ms ease-in ;
}

.visible, .invisible {
  opacity: 0.0;
  transition: opacity 0.5s ease;
}
.visible {
  opacity: 1.0;
} 


.row{
  display: flex;
}
.col{
  flex:1;
  text-align: center;
  padding: 5vh;
}

.titre{
  font-size: 2.5em;
  font-weight: bold;
  height:15vh;
  padding-top: 5vh;
  margin-left: 5vh;
  opacity: 1;
  z-index: 6;
  position: relative;
}

.image{
  height:  60vh;
  border-radius: 10px;
  opacity: 0.6;
}

.text-left{
  text-align: left;
}
.text-justify{
  text-align: justify;
}
.text-right{
  text-align: right;
}
.motchoc{
  font-weight: bold;
  font-size: 1.5em;
}

#fleche:hover img{
  opacity: 0.5;
  height: 22vh;
}
p{
  font-size: 0.95em;
}



.btn {
position: relative;
text-decoration: none;
color: #444;
padding: 5px 0;
margin-right: 10%;
cursor: pointer;
}


.btn:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background: #444;
transition: width 300ms ease;
}


.btn:hover:after {
width: 100%;
}

th{
width:30%
}

.band{
height:100%;
background-color: red;
width:1vh;
position: absolute;
top:0;
left:2vh;
z-index: 0;
}

#accueil_b{
height:20vh;
top:80vh;
background: linear-gradient(to bottom,transparent 20%,#d6af23 );
}
#entreprise_b{
height:20vh;
top:0vh;
background: linear-gradient(to bottom,#65a165 20%,transparent );
}
.text_acc{
-webkit-animation: gotoleft 2s ease-in;
-moz-animation: gotoleft 2s ease-in;
animation: gotoleft 2s ease-in;

}
.p_accueil{
margin: 5px;
}
#titre_accueil{
height: auto !important;
-webkit-animation: fadein 2s ease-in;
-moz-animation: fadein 2s ease-in;
animation: fadein 2s ease-in;
margin: 0;
}
#nav{
background-color: #CCCA;
display: none;
position: fixed ;
z-index: 1000;
height: 60px;
width: 100%;
animation: movebottom 100ms ease-in;

}

#min_nav {
display: flex;
position: fixed ;
z-index: 1000;
height: 2px;
width: 100%;
top:15px;
animation: movebottom 100ms ease-in;
}
#min_nav #barre{
border: #CCCA 5px solid;
border-radius: 20px;
}


.blason{
width:30vh;
height:17vh;
}

.blason img{
width: inherit;
height: 60%;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
opacity: 0.8;
}

.blason span{
font-weight: bolder;
}



.footer{
position: absolute;
bottom:20px;
width:100%;
font-size: 0.8em;
font-style: italic;


}
@media only screen and (min-device-width : 320px) and (max-device-width : 960px) {
/* Styles pour cette Media Queries */
#titre_accueil{
  text-align: center;
}
.card{
  width: 100%;
  height: 100vh;
  padding: 0;
}
.titre{
  margin-left: 5vh;
}
body{
  width: inherit;
  font-size: 1.3em;

}
#img_acc{
  width: 90%;
  height: 90%;
  display: inline;
}
#encouragement{
  display: block;
}
.row{
  display: block;
}
.col{
  padding: 0;
}
.text_acc{
  padding-left: 5vh;
}
.image{
  width: 40%;
  height: 40%;
  display: inline;

}
.titre{
  height: auto;
  padding-top:1vh;
  padding-bottom: 2vh;
}
.text-left{
  margin-left:5vh;
  margin-right:5vh;
}
.text-right{
  margin-left:5vh;
  margin-right:5vh;
}
.blason{
width:20vh;
height:12vh;
margin: 0 auto;
text-align: center;
}
.blason img{
  width: 60%;
  margin: 0 auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  opacity: 0.8;
}
#nav{
  display: none;
}
#min_nav{

  display: none;
}
 #entreprise{
  height: 100vh;
 }

 .apparition{
  display: none;
 }

 .titre_page{
  height: 5vh !important;
  transform: rotate(0deg) !important;
  writing-mode: inherit !important;
  padding-top: 5vh !important;
 }
 .img_titre_logo{
  transform: rotate(0deg) !important;
  writing-mode: inherit !important;
  height: 3vh !important;
  padding-left: 1vh !important;
 }
 .text{
  padding-right: 2vh;
 }
}











.parent {
  width: 100%;
  height: 90%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  text-align: center;
  }
  .border{
    display: flex;
    background: transparent ;
    height: 100%;
  }
  .icon{
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .text{
    flex:3;
  }

  
  .text p{
    text-align: justify;
    font-size: 0.9em;
    padding-right: 10px;
  }




  .titre_page{
    height: 100vh;
    background: transparent;
    text-align: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-left: 3vh;

  }
  .col_titre{
    flex:2;
  }
  .col_card{
    flex:25;
    
  }
  #logit_t{
    background: linear-gradient();
  }
  .titre_page span{
    text-align: center;
    font-size: 4em;
    font-weight: bold;
  }
  .img_titre_logo{
    transform: rotate(90deg);
    height:5vh;
    width:auto;
  padding-left: 3vh;  }

.motchoc_card{
  text-align: center;
  font-size: 1.6em;
  margin-top: 2vh;
}


