      
.lang-menu {
    font-family: 'Poppins', sans-serif;
    width: 90px;
    text-align: right;
    margin-top: 25px;
    position: relative;
}
.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-between;
    line-height: 2;
    cursor: pointer;
}
.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../images/french.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 10%;
    padding: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 35px;
    right: 0px;
    left: -10%;
    width: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}


.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
}

.lang-menu ul li:hover {
    background-color: #f2f2f2;
    
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.en:before {
    background-image: url(../images/en.png);
}

.fe:before {
    background-image: url(../images/french.png);
}
.en{
    font-family: 'Poppins', sans-serif;
}
.fe{
    font-family: 'Poppins', sans-serif;
}
.selected-lang{
    font-family: 'Poppins', sans-serif;
    padding: 10% 0%;
}
.lang-menu:hover ul {
    display: block;
}

/*  */
/*  */






  

  
/* Fallback for hidden attribute */
hidden {
    display: none;
  }
  
  /**
   * Keyframes for autoplay
   */
  @-webkit-keyframes autoplay {
    /* position of the first slide */
    0% {
      left: -10px;
    }
    /* position of the second slide */
    25% {
      left: -0px;
    }
    /* position of the third slide */
    50% {
      left: -160px;
    }
    /* position of the fourth slide */
    100% {
      left: -1100px;
    }
  }
  @keyframes autoplay {
    /* position of the first slide */
    0% {
        left: 0px;
      }
      /* position of the second slide */
      25% {
        left: -0px;
      }
      /* position of the third slide */
      50% {
        left: -0px;
      }
      /* position of the fourth slide */
      100% {
        left: -1080px;
      }
      
  }
  
  /**
   * Slider
   */
  .slider {
    position: relative;
    /* top margin is for purposes of demo */
    margin-top: -26rem;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    width: 980px;
    height: 375px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  .header{
    position: relative;
    margin-top: -5%;
    color: white;
    text-align: center;
  }
  
  .slider__list {
    position: absolute;
    left: 0;
    width: 162.5rem;
    margin:0;
    padding:0;
  }
  
  .slider__slide {
    float: left;
  }
  
  /**
   * Slider control
   */
  .slider__control {
    margin-right: auto;
    margin-left: auto;
    width: 4.5rem;
    font-family: sans-serif;
  }
  
  .slider__control label {
    position: relative;
    display: block;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 4.5rem;
    height: 2rem;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: transparent;
    background: #96a5df;
    border-radius: 2rem;
    cursor: pointer;
    transition: left 0.15s ease-out;
  }
  .slider__control label:before {
    content: "autoplay";
    position: absolute;
    top: 2.5rem;
    left: 0;
    color: #333;
    font-size: .95rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  .slider__control label:after {
    content: "";
    position: absolute;
    top: .25rem;
    left: .25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 2rem;
    background: #fff;
    transition: left 0.15s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  
  .slider > .slider__list {
    -webkit-animation-name: autoplay;
            animation-name: autoplay;
    /* This will change the time it takes to move to next slide */
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  