* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;

}

.section {
  background-image: url("images/space.webp");

  /* Full height */
  width: 100%;
  height: 100vh;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section h1 {
  width: 20%;
  top: 15%;
  left: 15%;
  transform: translate(-50%, -50%);
  position: absolute;
  display: block;
}

.section h2 {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  color: red;
  padding-top: 305px;
}

.section h2 span {
  background-color: #FF0000;
  color: #FFF;
}

#mouse-scroll {
  position: absolute;
  margin: auto;
  left: 50%;
  top: 490px;
  -webkit-transform: translateX(-50%);
  z-index: 9999;
}
#mouse-scroll span{
  display: block;
  width: 7px; 
  height: 7px;
  -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
       transform: rotate(45deg);
       transform: rotate(45deg);
  border-right: 2px solid red; 
  border-bottom: 2px solid red;
  margin: 0 0 1px 1px;
}

#mouse-scroll .down-arrow-1 {
  margin-top: 10px;
}
#mouse-scroll .down-arrow-1, #mouse-scroll .down-arrow-2, #mouse-scroll .down-arrow-3 {
  -webkit-animation: mouse-scroll 1s infinite; 
    -moz-animation: mouse-scroll 1s infinite;
}
#mouse-croll .down-arrow-1 {
   -webkit-animation-delay: .1s; 
   -moz-animation-delay: .1s;
   -webkit-animation-direction: alternate;
}
#mouse-scroll .down-arrow-2 {
  -webkit-animation-delay: .2s; 
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
}
#mouse-scroll .down-arrow-3 {
   -webkit-animation-delay: .3s;
   -moz-animation-dekay: .3s;
   -webkit-animation-direction: alternate;
}

#mouse-scroll .mouse-in {
 -webkit-animation: animated-mouse 1.2s ease infinite;
}

@-webkit-keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
     opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  } 
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

a {
    color: white;
    text-decoration: none;
}

header {
  width: 100%;
  height: 140px;
  z-index: 1;
}

.header {
width: 100%;
height: 140px;
width: 100%;
z-index: 3;
}

.header ul {
margin-top: 22px;
padding: 0;
list-style: none;
overflow: hidden;
z-index: 1;
}

.header li a {
font-family: 'Lexend', sans-serif;
font-size: 0.8em;
font-weight: 400;
text-align: right;
padding-top: 17px;
padding-right: 10px;
color: #000;
display: block;
text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {

}

.header .logo {
display: block;
float: left;
font-size: 2em;
padding: 10px 20px;
text-decoration: none;
}

/* menu */

.header .menu {
clear: both;
max-height: 0;
transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
padding-top: 80px;
padding-right: 50px;
cursor: pointer;
display: inline-block;
float: right;
position: relative;
user-select: none;

}

.header .menu-icon .navicon {
background: #000;
display: block;
height: 2px;
position: relative;
transition: background .2s ease-out;
width: 20px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
background: #000;
content: '';
display: block;
height: 100%;
position: absolute;
transition: all .2s ease-out;
width: 100%;
}

.header .menu-icon .navicon:before {
top: 5px;
}

.header .menu-icon .navicon:after {
top: -5px;
}

/* menu btn */

.header .menu-btn {
display: none;
}

.header .menu-btn:checked ~ .menu {
max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
.header li {
  padding-right: 30px;
  float: left;
}
.header li a {
  text-align: right;
  padding-top: 60px;
}
.header .menu {
  clear: none;
  float: right;
  max-height: none;
}
.header .menu-icon {
  display: none;
}
}


.header li a:hover {
color: #FF0000;
}



.content {
  background-color: #E8E8E8;

  /* Full height */
  width: 100%;
  height: 80vh;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content h1 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 3em;
  font-weight: 900;
  text-align: center;
  padding-top: 30px;

}

 .content h2 {
  font-family: 'Lexend', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    padding-top: 2px;
    color: #000;
  }

  .content h3 {
    font-family: 'Lexend', sans-serif;
      width: 75%;
      font-size: 1.8em;
      font-weight: 400;
      text-align: center;
      margin: 0 auto;
      padding-top: 40px;
      color: #000;
    }

  .content h3 span { 
    color: #FF0000;
  }

/* video styles */
.video {
  background-color: #E8E8E8;
  
}

/* video styles */
video {
  width: 90%;
  height: 80vh;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
  top: 0;
  left: 0;
  z-index: -1;
  
}

  .cases {
    width: 100%;
    height: 60vh;
    display: block;
    background-color: #E8E8E8;
 
}

.cases h2 {
    width: 90%;
    font-family: 'Lexend', sans-serif;
    color: #000;
    font-size: 3em;
    font-weight: 900;
    text-align: left;
    padding-top: 30px;
    padding-left: 40px;
  }

  .products {
    width: 100%;
    display: block;
    background-color: #E8E8E8;
 
}

.products h1 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 3em;
  font-weight: 900;
  text-align: center;
  padding-top: 50px;
}

.products h2 {
  font-family: 'Lexend', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    padding-top: 2px;
    padding-bottom: 55px;
    color: #000;
  }

  .products h2 img {
    width: 5%;
    padding-top: 150px;
}

  .products h3 {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-size: 1.6em;
    font-weight: 900;
    text-align: center;
    padding-top: 10px;
  }

  .products p {
    font-family: 'Lexend', sans-serif;
    color: #000;
    font-size: 0.8em;
    font-weight: 600;
    text-align: center;
    padding-top: 5px;
  }

  .products p a:hover {
    color: red;
  }

  .products a {
    color: #000;
  }

  .products .container { 
    width: 70%;
    margin: 0 auto;
    display: flex; 
    flex-wrap: wrap;
  }

.box { 
  flex-grow: 2; 
  width: 33%; 
  height: 400px;
  margin-bottom: 25px;
 }

 .products .box img {
  width: 200px;
  height: 300px;
  margin: 0 auto;
  margin-top: 20px;
  display: block;
}

.products .box img:hover{
  -webkit-transform: rotateZ(-20deg);
  -ms-transform: rotateZ(20deg);
  transform: rotateZ(-20deg);
  transition: 0.5s ease;
}

.comic-button {
  font-family: 'Lexend', sans-serif;
  display: inline-block;
  padding: 10px 40px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #FF0000;
  border: 2px solid #000;
  border-radius: 5px;
  box-shadow: 3px 3px 0px #000;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 3px;
  margin-bottom: 10px;
}

.comic-button:hover {
  background-color: #FF0000;
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px 0px #000;
}


.newsletter {
  background-image: url("images/bolt_energy_hero.webp");

  /* Full height */
  width: 100%;
  height: 100vh;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}


.stores {
  width: 100%;
  height: 120vh;
  display: block;
  background-color: #E8E8E8;

}

.stores h1 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 3em;
  font-weight: 900;
  text-align: center;
  padding-top: 25px;
}

.stores h2 {
  font-family: 'Lexend', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    padding-top: 2px;
    padding-bottom: 100px;
    color: #000;
  }

.stores h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 900;
  text-align: center;
  padding-top: 20px;
}

.stores p {
  font-family: 'Lexend', sans-serif;
  color: #000;
  font-size: 0.8em;
  font-weight: 600;
  text-align: center;
  padding-top: 5px;
}

.stores .container { display: flex; flex-wrap: wrap; }
.box { 
  flex-grow: 2; 
  width: 33%; 
  height: 400px;
 }

 .stores .box img {
  width: 350px;
  height: 300px;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}



  @keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
    background-color: #E8E8E8;
  }
  
  .logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 1;
  }
  
  .logos:before {
    left: 0;
  }
  
  .logos:after {
    right: 0;
    
  }

  .logo_items {
    display: inline-block;
    animation: 60s slides infinite linear;
  }

  .logo_items img{
    width: 300px;
  }

  .contact {
  background-color: #E8E8E8;

  /* Full height */
  width: 100%;
  height: 100vh;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
 
}

.contact h1 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 3em;
  font-weight: 900;
  text-align: center;
  padding-top: 100px;
}

.contact h2 {
  font-family: 'Lexend', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    padding-top: 2px;
    padding-bottom: 85px;
    color: #000;
  }
  
  .contact p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    padding-top: 2px;
    color: #000;
    display: block;
    text-align: center;
  }
  
  .contact a {
    color: #000;
    text-decoration: none;
  }

  footer {
    background-color: #000;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
  }

  footer img {
    width: 120px;
    margin: 0 auto;
    display: block;
    padding-top: 10px;

  }

  footer p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    color: #FFF;
    text-decoration: none;
}

  footer .row {
    width: 120px;
    margin: 0 auto;
    display: flex;
    padding-top: 20px;
}

/* Create three equal columns that sits next to each other */
footer .column {
    flex: 33.33%;
    padding: 5px;
}









@media only screen and (max-width: 768px) {

    .header ul {
    margin-top: 80px;
    padding: 0;
    list-style: none;
    overflow: hidden;
    z-index: 1;
    }
   
    .section h1 {
        width: 40%;
        top: 14%;
        left: 30%;
        transform: translate(-50%, -50%);
        position: absolute;
        display: block;
        margin: 0 auto;
      }

      .section h2 {
        width: 100%;
        font-family: "Montserrat", sans-serif;
        font-size: 0.8em;
        font-weight: 600;
        text-align: center;
        color: red;
        padding-top: 310px;
      }

      #mouse-scroll {
        position: absolute;
        margin: auto;
        left: 50%;
        top: 480px;
        -webkit-transform: translateX(-50%);
        z-index: 9999;
      }

      .content {
        background-color: #E8E8E8;
      
        /* Full height */
        width: 100%;
        height: 120vh;
      
        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      }

      .content h1 {
        font-family: "Montserrat", sans-serif;
        color: #000;
        font-size: 3em;
        font-weight: 900;
        text-align: center;
        padding-top: 10px;
    }

      .content h2 {
        width: 85%;
        font-family: 'Lexend', sans-serif;
        font-size: 1em;
        font-weight: 900;
        text-align: center;
        margin: 0 auto;
        padding-top: 5px;
        color: #000;
      }

      .cases {
        width: 100%;
        height: 50vh;
        display: block;
        background-color: #E8E8E8;
     
    }

    .logos {
      overflow: hidden;
      padding: 30px 0px;
      white-space: nowrap;
      position: relative;
    }

    .products {
      width: 100%;
      height: 460vh;
      display: block;
      background-color: #E8E8E8;
   
  }

  .products h2 {
    width: 85%;
    font-family: 'Lexend', sans-serif;
    font-size: 1em;
    font-weight: 900;
    text-align: center;
    margin: 0 auto;
    padding-top: 5px;
    color: #000;
  }

    .container { display: flex; flex-wrap: wrap; }
    .box { 
      flex-grow: 2; 
      width: 100%; 
      height: 400px;
     }
    
     .products .box img {
      width: 200px;
      height: 300px;
      margin: 0 auto;
      margin-top: 20px;
      display: block;
    
    }

    .stores {
      width: 100%;
      height: 260vh;
      display: block;
    
    }

    .stores .box img {
      width: 350px;
      height: 300px;
      margin: 0 auto;
      margin-top: 20px;
      display: block;
      border-radius: 10px;
    }

    .stores h2 {
      width: 85%;
    font-family: 'Lexend', sans-serif;
    font-size: 1em;
    font-weight: 900;
    text-align: center;
    margin: 0 auto;
    padding-top: 5px;
    color: #000;
      }

    .stores h3 {
      font-family: "Montserrat", sans-serif;
      font-size: 1.3em;
      font-weight: 900;
      text-align: center;
      padding-top: 15px;
    }

    .stores p {
      font-family: 'Lexend', sans-serif;
      color: #000;
      font-size: 0.8em;
      font-weight: 600;
      text-align: center;
      padding-top: 5px;
    }

}