:root {
    --primary-color: #0f4c81;
    --secondary-color: #FDEA00;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300&display=swap');
* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
}

header {
    width: 100%;
    height: 100vh;
    background-image: url("pic/ilus.png");
    background-size: cover;
    background-position: center center;
}

.hdr-content {
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 76, 129, .5);
}

nav {
    width: 100%;
    background-color: var(--primary-color);
}

nav ul {
    width: 80%;
    margin: 0 auto;
    padding: 0;
}

nav ul li {
    list-style: none;
    display: inline-block;
    padding: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: lighter;
}

.toggle {
    
    display: none;
}

.btn-toggle {
    background-color: var(--primary-color);
    text-decoration: none;
    border: 0px solid;
    outline: 0;
}

.hdr-body {
    position: absolute;
    top: 25%;
    left: 2.5%;
}

.hdr-body h1 {
    font-family: 'Heebo', 'Open Sans', sans-serif;
    font-size: 7vw;
    line-height: 3rem;
    color: white;
}

.hdr-body h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 3vw;
    color: var(--secondary-color);
    line-height: 1rem;
}


/*                   Fin Header                      */

.about {
    background-color: #ededed;
    padding: 1px;
}

.abt-content {
    margin: 50px;
}

.abt-content h1 {
    color: var(--primary-color);
    text-align: center;
    font-family: 'Heebo', 'Open Sans', sans-serif;
    font-size: 3.5rem;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    line-height: 1rem;
}

.abt-content p {
    color: var(--primary-color);
    font-family: 'Heebo', 'Open Sans', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    line-height: 2.6rem;
}

.btn {
    display: block;
    width: 180px;
    height: 30px;
    margin: 0 auto;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    font-family: 'Heebo', 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid;
    border-color: var(--primary-color);
}


/*                 Fin About                             */

.slider {
    position: relative;
    overflow: hidden;
}

.sld-content {
    background-color: #fff;
    padding: 1px;
}

.sld-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.sld-body-flex-text {
    width: 65%;
}

.sld-content h1 {
    color: var(--primary-color);
    text-align: center;
    font-family: 'Heebo', 'Open Sans', sans-serif;
    font-size: 3.5rem;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    line-height: 1rem;
}

.sld-content p {
    color: var(--primary-color);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-left: 8%;
    margin-right: 4%;
    line-height: 3rem;
}

.sld-body-flex-progress {
    width: 30%;
}

.sld-body-flex-progress ul {
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-color);
    width: 400px;
    margin: 120px auto 0;
    position: relative;
    line-height: 2em;
    padding: 0px;
}

.sld-body-flex-progress ul li {
    margin-bottom: 50px;
    background: #e9e5e2;
    background-image: linear-gradient(top, #e1ddd9, #e9e5e2);
    height: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 0px #bebbb9 inset, 0 1px 0 #fcfcfc;
}

.sld-body-flex-progress ul li h3 {
    position: relative;
    top: -30px;
}

.bar {
    height: 18px;
    margin: 1px 2px;
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(#347F8E, var(--primary-color));
}

#slide1 {
    display: block;
}

.cisco {
    width: 50%;
    animation: progress50 1.5s ease-out;
}

.vmware {
    width: 60%;
    animation: progress60 1.5s ease-out;
}

.windows {
    width: 85%;
    animation: progress85 1.5s ease-out;
}

.linux {
    width: 45%;
    animation: progress45 1.5s ease-out;
}

#slide2 {
    display: none;
}

.html {
    width: 85%;
    animation: progress85 1.5s ease-out;
}

.js {
    width: 50%;
    animation: progress50 1.5s ease-out;
}

.php {
    width: 45%;
    animation: progress45 1.5s ease-out;
}

.xd {
    width: 50%;
    animation: progress50 1.5s ease-out;
}

#slide3 {
    display: none;
}

.photo {
    width: 75%;
    animation: progress75 1.5s ease-out;
}

.video {
    width: 45%;
    animation: progress45 1.5s ease-out;
}

.light {
    width: 50%;
    animation: progress50 1.5s ease-out;
}

.photoshop {
    width: 70%;
    animation: progress70 1.5s ease-out;
}

@keyframes progress95 {
    0% {
        width: 0px;
    }
    100% {
        width: 95%;
    }
}

@keyframes progress90 {
    0% {
        width: 0px;
    }
    100% {
        width: 90%;
    }
}

@keyframes progress85 {
    0% {
        width: 0px;
    }
    100% {
        width: 85%;
    }
}

@keyframes progress80 {
    0% {
        width: 0px;
    }
    100% {
        width: 80%;
    }
}

@keyframes progress75 {
    0% {
        width: 0px;
    }
    100% {
        width: 75%;
    }
}

@keyframes progress70 {
    0% {
        width: 0px;
    }
    100% {
        width: 70%;
    }
}

@keyframes progress65 {
    0% {
        width: 0px;
    }
    100% {
        width: 65%;
    }
}

@keyframes progress60 {
    0% {
        width: 0px;
    }
    100% {
        width: 60%;
    }
}

@keyframes progress50 {
    0% {
        width: 0px;
    }
    100% {
        width: 50%;
    }
}

@keyframes progress45 {
    0% {
        width: 0px;
    }
    100% {
        width: 45%;
    }
}


/*                        Partie btn suivant                             */

.btn-slide {
    display: flex;
    justify-content: center;
    background-color: #fff;
    margin-bottom: 30px;
}

.btn-next {
    background-color: #fff;
    text-decoration: none;
    border: 0px solid;
    outline: 0;
}

.btn-prev {
    background-color: #fff;
    text-decoration: none;
    border: 0px solid;
    outline: 0;
}

.btn-next:hover {
    transform: translateX(10px);
}

.btn-prev:hover {
    transform: translateX(-10px);
}

.prev {
    transform: rotate(180deg);
    width: 40px;
    height: 40px;
}

.next {
    width: 40px;
    height: 40px;
}

.transform-down {
    transition: all 1s ease;
    transform: translateX(-100%);
    opacity: 0%;
}

.transform-down2 {
    transition: all 1s ease;
    transform: translateX(100%);
    opacity: 0%;
}

@keyframes opaci {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

.op {
    animation: opaci 0.5s ease-out;
}


/*              Chronologie                     */

.timeline {
    background-color: var(--primary-color);
    padding: 0.1px;
}

.timeline h1 {
    color: var(--secondary-color);
    text-align: center;
    font-family: 'Heebo', 'Open Sans', sans-serif;
    font-size: 3.5rem;
    text-decoration: underline;
    text-decoration-color: #fff;
    line-height: 1rem;
}

.timeline h2 {
    color: #fff;
    text-align: center;
    font-family: 'Heebo', 'Open Sans', sans-serif;
    font-size: 2.5rem;
    line-height: 1rem;
}

.timeline h3 {
    font-family: 'Heebo', 'Open Sans', sans-serif;
    color: #fff;
    font-size: 2.2em;
    line-height: 0rem;
}

.timeline p {
    font-family: 'Heebo', 'Open Sans', sans-serif;
    line-height: 1em;
    font-size: 1.5em;
    color: #fff;
}

.tl-content {
    margin: 20px 0px 50px 0px;
    background-color: var(--primary-color);
}

.tl-body-svg {
    display: flex;
    justify-content: center;
}

.tl-body-svg-min {
    display: none;
}

.tl-body-svg svg {
    background-color: #347F8E;
    background-image: url("pic/soft-wallpaper.png");
    background-size: cover;
    background-position: center center;
    -webkit-box-shadow: 6px 11px 22px 9px rgba(0, 0, 0, 0.63);
    -moz-box-shadow: 6px 11px 22px 9px rgba(0, 0, 0, 0.63);
    box-shadow: 6px 11px 22px 9px rgba(0, 0, 0, 0.63);
}

.line {
    /*stroke-width: 15;*/
    stroke: var(--secondary-color);
}

.rgt {
    padding: 1px;
}

.lft {
    padding: 1px;
    text-align: right;
}

.svg-div-left {
    transition: all 0.1s ease-in-out;
    transform: translateX(0px);
}

.svg-div-left:hover {
    transition: all 0.1s ease-in-out;
    transform: translateX(-5px);
}

.svg-div-right {
    transition: all 0.1s ease-in-out;
    transform: translateX(0px);
}

.svg-div-right:hover {
    transition: all 0.1s ease-in-out;
    transform: translateX(5px);
}

.img-adii {
    width: 122px;
    height: 81px;
}

.img-rascol {
    width: 227px;
    height: 75px;
}

.img-iut {
    width: 120px;
    height: 75px;
}

.img-lux {
    width: 180px;
    height: 84px;
}

.img-cned {
    width: 147px;
    height: 81px;
}

.img-cisco {
    width: 173px;
    height: 79px;
}

.img-id {
    width: 170px;
    height: 86px;

}

/*                  Loader                 */

.loader-wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;

}

.spinner {
    margin-top:50px;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
  }
   
  .spinner > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
  }
  
  .spinner .rect1 {
       background:#FEDD31;
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
  .spinner .rect2 {
       background:#FEDD31;
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
  
  .spinner .rect3 {
       background:#FEDD31;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  .spinner .rect4 {
       background:#FEDD31;
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
  
  .spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
       background:#FEDD31;
  }
  
  @-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
    20% { -webkit-transform: scaleY(1.0) }
  }
  
  @keyframes sk-stretchdelay {
    0%, 40%, 100% { 
      transform: scaleY(0.4);
      -webkit-transform: scaleY(0.4);
    }  20% { 
      transform: scaleY(1.0);
      -webkit-transform: scaleY(1.0);
    }
  }
 
  
  @keyframes sk {
  1% {
      top: -15px;
   
    }
    2% {
      top: 10px;
   
    }
    5% {
      top: -20px;
   
    }
     10% {
      left: -10px;
   
    }
     20% {
     top:-25px;
   
    }
    30% {
     left:15px;
         background:#FEDD31;
   
    }
    35% {
     top:5px;
   
    }
     45% {
     top:-5px;
   
    }
    50% {
     top:-5px;
   
    }
    
    60% {
     top:-6px;
   
    }
     70% {
     top:6px;
   
    }
     80% {
     top:6px;
   
    }
     60% {
     top:-6px;
   
    }
  }

  .fadeout {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    opacity: 0%;
    -khtml-opacity: 0%;
}
   

/* Passage slider en colonne */

@media screen and (max-width: 1440px) {
    .sld-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sld-body-flex-text {
        width: 85%;
    }
    .sld-body-flex-progress {
        width: 60%;
    }
    .sld-body-flex-progress ul {
        margin: 50px auto 0;
    }
}
