/*=============== Styles for Wheeltec website ===============*/

@import url('https://fonts.cdnfonts.com/css/helvetica-neue-9');              

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration-color: #fff;
}
html {
  font-family: 'Helvetica 65 Medium', sans-serif;
  scroll-behavior: smooth;
  color: #D0FB15;
}
section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000;
}
#sec-1 {
  background-color: rgb(0, 0, 0);
  min-height: 100vh;
}
#sec-2 {
  background-color: rgb(0, 0, 0);
  justify-content: center;
  text-align: center;
  height:min-content;
}
.scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid #D0FB15;
  position: absolute;
  left: 50%;
  bottom: 20px;
  border-radius: 50px;
  cursor: pointer;
}
.scroll-down::before,
.scroll-down::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(45deg);
  border: 2px solid #D0FB15;
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s ease-in-out infinite;
}
.scroll-down::before {
  top: 30%;
  animation-delay: 0.3s;
  /* animation: scroll-down 1s ease-in-out infinite; */
}
span{
  font-weight: 900;
  display: block;
  margin-top: 10vh;
}


@keyframes scroll-down {
  0% {
    /* top:20%; */
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

:root {
  --header-height: 3.5rem; /*56px*/

  /*========== Colors Variables ==========*/
  --first-color: #000000;
  --first-color-alt: #000000;
  --container-color: rgb(0, 0, 0);
}

/*=============== Base css elements ===============*/

*{ /* "*" = universal selector */
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

img{
  max-width: 100%;
  height: auto;
}
/*=============== Reusable CSS Classes ===============*/

.grid{
  display: grid;
}

/*=============== Store CSS ===============*/


  .store__card{
    background-color: transparent;
    padding: 2.5rem 3rem 2rem 1.5rem;
    border-radius: 1rem;
  }


.store__image{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/*=============== Breakpoints ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  .container{
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .store__card{
    padding: 1.5rem;
  }
  .text-1 { display: inline-block; 
    margin-left: 10vw;
    font-size: 10vw ;
  }
  .sec-1{
    justify-content: left;
  }

  .text-2 { display: none; }

  .container{
    max-width: 80%;
    margin-left: 5vw;
    margin-right: 5vw;
    justify-content: center;
  }
}

/*Other Size Devices*/
@media screen and (max-width: 576px),(min-width: 320px){
  .text-2 { display: none; }
  .text-1 { display: inline-block; font-size: 10vw ;}
  .container{
    max-width: 80%;
    margin-left: 5vw;
    margin-right: 5vw;
    justify-content: center;
  }
  h1{
    font-size: 10vw ;
  }
}

/* For medium devices */
@media screen and (min-width: 576px){
  .store__container{
    grid-template-columns: repeat(3, 1fr);
  }

  .text-1 { display: none; }
  .text-2 { display: inline-block;
    font-size: 50px ; }

  .container{
  max-width: 100%;
  margin-left: 5vw;
  margin-right: 5vw;
  }
  h1{
    font-size: 50px ;
  }

}

/* For large devices */
@media screen and (min-width: 992px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }

  .store__container{
    grid-template-columns: repeat(5, 1fr);
  }
  .store__bg{
    padding: 3.5rem 2.5rem;
  }
  .store__card-title{
    font-size: var(--normal-font-size);
  }
}

p{
  color: #fff;
  text-align: center;
  font-weight: 900;
}

ul, li{
  list-style: none;
  text-align: left;
  margin-top: 10px;
  text-decoration: underline;
  color:#D0FB15;
}

a{
  color:#D0FB15;
  text-decoration-color: #D0FB15;
}
.bellow{
  float: both;

}