html {
    font-size: 14px;
    scroll-behavior: smooth;
  }
  
  @media (min-width: 768px) {
    html {
      font-size: 16px;
    }
  }
  
  html {
      position: relative;
      min-height: 100%;
  }
  
  /* INDEX LOADER */
  .loader {
    position: relative;
    left:45%;
    border: 16px solid white;
    border-top: 16px solid #df0000;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /*HEADER START*/
  .site-header {
    width:100%;
    height:50px;
    color:white;
    background-color: rgba(0, 0, 0, 0.5);
    top:0px;
    left:0px;
    position:fixed;
    align-content: center;
    text-align:center;
    z-index: 99;
  }
  .button-logo {
    height: 48px;
    width: 48px;
    position:absolute;
    text-align: left;
    left:50px;
    cursor: pointer;
    background-image: url("../images/materials/LECLOGO.png");
  }
  .button-home {
    position:absolute;
    text-align: right;
    top:45%;
    right:350px;
  }
  .button-home:hover {
    cursor:pointer;
    color: wheat;
  }
  .button-products {
    position:absolute;
    text-align: right;
    top:45%;
    right:255px;
  }
  .button-products:hover {
    cursor:pointer;
    color: wheat;
  }
  .button-projects {
    position:absolute;
    text-align: right;
    top:45%;
    right:170px;
  }
  .button-projects:hover {
    cursor:pointer;
    color: wheat;
  }
  .button-news {
    position:absolute;
    text-align: right;
    top:45%;
    right:110px;
  }
  .button-news:hover {
    cursor:pointer;
    color: wheat;
  }
  .button-aboutus {
    position:absolute;
    text-align: right;
    top:45%;
    right:20px;
  }
  .button-aboutus:hover {
    cursor:pointer;
    color: wheat;
  }
  /*HEADER END*/

  body {
    margin-bottom: 60px;
    background-color: #0e0900;
  }

  .body-container {
    text-align: center;
    align-content: center;
  }
  .coverpic {
    position:relative;
    text-align: center;
    color:white;
  }
  
  .coverpic img {
    height: 100%;
    width:100%;
    top:0px;
    left:0px;
    border-radius: 5px 5px 5px 5px;
    -webkit-filter: brightness(100%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    filter:brightness(100%)
  }
  .coverpic img:hover {
    -webkit-filter: brightness(50%);
    filter:brightness(50%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    cursor: pointer;
  }

  .covertext-centered {
    position:absolute;
    top:25%;
    left:50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width:99%;
    height:13%;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px 10px 10px 10px;
  }
  .covertext-centered img:hover {
    font-size: 25px;
    cursor: pointer;
    filter: brightness(100%);
    transform:scale(1.2);
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
  }

  .aboutlec {
    position:relative;
    width:200px;
    height:30px;
    background-color: white;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align:inherit;
    text-anchor: middle;
    border-radius: 10px 0px 10px 0px;
  }
  .aboutlec-content {
    position:relative;
    margin-top: 50px;
    text-align: center;
  }
  .aboutlec-content img {
    width:60%;
    height:auto;
  }

  .whatwedo {
    position:relative;
    width:200px;
    height:30px;
    background-color: white;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align:inherit;
    text-anchor: middle;
    border-radius: 10px 0px 10px 0px;
  }
  .whatwedo-content {
    position:relative;
    margin-top: 50px;
    text-align: center;
  }
  
  /* WHAT WE DO GALLERY START */
  .whatwedo-gallery {
    width:100%;
    margin:100px auto 50px;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap:30px;
  }
  .wwd-img img {
    width:100%;
    cursor:pointer;
    border-radius: 20px;
  }
  .wwd-img-text {
    position:relative;
    top:-50%;
    left:50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width:60%;
    height:8%;
    font-size: 2.3vw;
    text-anchor: middle;
    text-align: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    border-radius: 10px 10px 10px 10px;
    transition: all 1s ease
  }
  .wwd-img-text:hover {
    cursor:pointer;
    font-size: 2.6vw;
    transition: all 1s ease
  }
  .wwd-img:hover {
    transform: scale(0.8);
    transition: all 2s ease
  }

  .footer-box {
    position:relative;
    border-top: wheat;
    color:lightslategrey;
    text-align: center;
    z-index: 99;
  }
  /* PRODUCTS */
  .products-gallery {
    width:80%;
    margin:100px auto 50px;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap:30px;
  }
  .products-gallery img {
    width:100%;
    cursor:pointer;
    border-radius: 5px 5px 5px 5px;
  }
  .products-gallery img:hover {
    transform: scale(1.2) rotate(-15deg);
    transition: all 1s ease;
  }
  /* PROJECTS */
  .projects-gallery {
    width:80%;
    margin:100px auto 50px;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap:30px;
  }
  .projects-gallery img {
    width:100%;
    cursor:pointer;
    border-radius: 5px 5px 5px 5px;
  }
  .projects-gallery img:hover {
    transform: scale(1.2) rotate(-15deg);
    transition: all 1s ease;
    box-shadow: 0 32px 75px rgba(68,77,136,0.2);
  }
  /* NEWS */
  .fb-container {
    height: 200%;
    width:auto;
  }
  /* ABOUT US */

  /* ABOUT US SLIDESHOW START */
.slide-container {
  width: 65%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
  overflow: hidden;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
  object-fit: scale-down;
}

.image-container {
  object-fit: scale-down;
  width: 65%;
  height: auto;
  position:relative;
  transition: left 2s;
  -webkit-transition: left 2s;
  -moz-transition: left 2s;
  -o-transition: left 2s;
}
  .image-container img {
      width:945%;
  }

  .slider-image {
      float: left;
      margin: 0px;
      padding: 0px;
  }

.button-container {
  top: -10px;
  position: relative;
}

.slider-button {
  display: inline-block;
  height: 10px;
  width: 25px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border: solid;
  border-color: black;
  border-width: 1.5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}
.slider-button-NP {
  display: inline-block;
  height: 20px;
  width: 25px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border: solid;
  border-color: black;
  border-width: 1.5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}


#slider-image-1:target ~ .image-container {
  left: 0px;
}

#slider-image-2:target ~ .image-container {
  left: -103%;
}

#slider-image-3:target ~ .image-container {
  left: -206%;
}

#slider-image-4:target ~ .image-container {
  left: -309%;
}

#slider-image-5:target ~ .image-container {
  left: -412%;
}

#slider-image-6:target ~ .image-container {
  left: -515%;
}

/* ABOUT US SLIDESHOW END */

  .certification-gallery {
    width:80%;
    margin:100px auto 50px;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap:30px;
  }
  .certification-gallery img {
    width:100%;
    cursor:pointer;
    border-radius: 5px 5px 5px 5px;
  }
  .certification-gallery img:hover {
    transform: scale(1.2);
    transition: all 2s ease;
  }
  .detailedhistory {
    position:relative;
    width:200px;
    height:30px;
    background-color: white;
    color:black;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align:inherit;
    text-anchor: middle;
    border-radius: 10px 0px 10px 0px;
  }
  .corporatemilestone{
    position:relative;
    width:200px;
    height:30px;
    background-color: white;
    color:black;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align:inherit;
    text-anchor: middle;
    border-radius: 10px 0px 10px 0px;
  }
  .certifications {
    position:relative;
    width:200px;
    height:30px;
    background-color: white;
    color:black;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align:inherit;
    text-anchor: middle;
    border-radius: 10px 0px 10px 0px;
  }
  .contactus {
    position:relative;
    width:200px;
    height:30px;
    background-color: white;
    color:black;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align:inherit;
    text-anchor: middle;
    border-radius: 10px 0px 10px 0px;
  }

  h1 {
    text-align: center;
    font-size: 50px;
    color: #df0000;
  }
  p {
    position: relative;
    text-align: center;
    font-size: 2.5vw;
    color: #df0000;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
  }
  p99 {
    color:white;
    font-size: 1vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  p99:hover {
    cursor: pointer;
    color: wheat;
    font-size: 1.2vw;
    transition: all 1s ease
  }