
body {
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
  height: 100vh;
  width: 100vw;
  flex-grow: 1;
}
canvas {
  position: fixed;
  height: 100vh;
  width: 100vw;
  flex-grow: 1;
}

p {
  position: relative;
  color: #333261;
  font: normal 75% Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-top: 10px;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 15px;
  padding: 20px;
  text-align: justify;
  background-color: transparent;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .05em;
  line-height: 1.5em;
  /* text-shadow: 1px 1px 1px lightblue; */
  border-radius: 10px;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

a {
    /* padding: 0px; */
    display: flex;
    width: 90%;
    /* margin-top: 20px; */
    justify-content: center;
    position: relative;
  
  } 


  button{
    /* width: 90vw; */
    display: flex;
    /* position: relative; */
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    background: transparent;
    border-color: transparent;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    /* border-radius: 100px; */
  }
  


  .proj-btn1 {
    width: 90%;
    margin: 5%;
    padding: -20%;
    /* margin-bottom: 5px; */
    /* margin-top: 5%; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInLeft ease .25s;
    /* animation: fadeInAnimation ease 1.5s; */
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: transparent;
    border-radius: 100px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  }



  #btn-pic1{
    /* display: flex; */
    /* margin-left: 10%; */
    width: 100%;
    /* margin: 20px; */
    margin-top: -5px;
    margin-bottom: -5px;
    /* position: relative; */
    background-color: rgb(250, 250, 222);
    animation: slideInLeft ease .25s;
    /* animation: fadeInAnimation ease 1.5s; */
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    border-radius: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  #btn-pic2{
    /* display: flex; */
    /* margin-left: 10%; */
    width: 100%;
    /* margin: -5px; */
    margin-bottom: -5px;
    margin-top: -5px;
    /* padding: 10px; */
    /* margin-left: -5px; */
    /* margin-right: -15px; */
    background-color: rgb(250, 250, 222);
    /* background-color: transparent; */
    /* background: radial-gradient(#bce9f8 70%, #ffffff); */
    animation: slideInLeft ease .44s;
    /* animation: fadeInAnimation ease 1s; */
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    border-radius: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  #btn-pic3{
    /* display: flex; */
    /* margin: -5px; */
    width: 100%;
    margin-bottom: -5px;
    margin-top: -5px;
    /* margin-bottom: -6px; */
    background-color: rgb(250, 250, 222);
    animation: slideInLeft ease .65s;
    /* animation: fadeInAnimation ease .5s; */
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    border-radius: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  #btn-pic4{
    /* display: flex; */
    /* margin-left: 10%; */
    width: 100%;
    margin-bottom: -5px;
    margin-top: -5px;
    background-color: rgb(250, 250, 222);
    /* border-radius: 100px; */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    animation: slideInLeft ease .85s;
    /* animation: fadeInAnimation ease 1.35s; */
    animation-iteration-count: 1; 
    animation-fill-mode: forwards;
    border-radius: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 
  }
  
  #btn-pic5{
    /* display: flex; */
    /* margin-left: 10%; */
    width: 100%;
    margin: 20px;
    /* margin-bottom: -2px; */
    background-color: lightgreen;
    /* border-radius: 100px; */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    animation: slideInLeft ease .95s;
    /* animation: fadeInAnimation ease 2s;  */
    animation-iteration-count: 1;
    animation-fill-mode: forwards; 
  }
  
  @keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
  }
  
  
  @keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
     }
  }
  
  
  @keyframes slideInRight {
    0% {
        transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
     }
  }
  
  @keyframes slideInTop {
    0% {
        transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
     }
  }
  
  @keyframes slideInBottom {
    0% {
        transform: translateY(400%);
    }
    100% {
      transform: translateY(0);
     }
  }
  

  .projectBrand{
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }

  .brand-name1{
    /* position: relative; */
    width: 85%;
    margin-top: 0px;
    margin-bottom: 15px;
    padding: 20px;
    display: flex;
    justify-content: center;
    background-color: transparent;
    /* background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  }

  .brand-name2{
   position: relative;
    width: 85%;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 20px;
    display: flex;
    justify-content: center;
    background-color: transparent;
    border-radius: 15px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  }


  .footer{
    position: relative;
     width: 85%;
     margin-top: 50%;
     /* margin-bottom: 10%; */
     padding: 20px;
     display: flex;
     justify-content: center;
     background-color: transparent;
     border-radius: 15px;
     /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
   }


  .swbrand{
    width: 85%;
    margin-bottom: 15px;
    padding: 10px;
    display: flex;
    justify-content: center;
    background: radial-gradient( #ffffff 60%, #feffcf);
    border-radius: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .project{
    display: flex;
    padding: 5px;
    margin-bottom: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
  

  .projContent{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 0 0px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
  }
  
  #frontPage{
    position: relative;
    width: 90%;
    padding: 0px;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* opacity: 65%; */
  }
  
  .lineup{
    padding: 5px;
    display: flex;
    width: 90%;
    margin-top: 20px;
    justify-content: center;
    position: relative;
    background-color: white;
    opacity: 90%;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  .panelpic{
    width: 90%;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 0px;
    position:relative;
  }
  .dataPic{
    width: 60%;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 0px;
    position:relative;
  }


#bottle{
  width: 20%;
  padding: 5px;
}


.bottles{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 15px;
  margin-top: -10px;
  background: transparent;
}

.labels{
  width: 80%;
  margin: 20px;
  /* height: 550px; */
  /* overflow:scroll;
  overflow-x:hidden;
  border: 10px solid #c6e8fe;
border-radius: 10px ; */
  /* position: relative; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: transparent;
}

.label{
  width: 85%;
  margin: 5%;
  padding: 10px;
  position:relative;
}
.storyBox{
  width: 90%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  margin-top: -20px;
  margin-left: 35px;
  margin-right: 35px;
  position: relative;
  
}


.story-btn1 {
  width: 90%;
  margin-left: 5%;
  margin-bottom: 5px;
  /* margin-top: 5%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}

#btn-bghist{
  /* display: flex; */
  /* margin-left: 10%; */
  width: 100%;
  margin: 2px;
  margin-bottom: -5px;
  background-color: transparent;
  /* animation: slideInLeft ease .44s; */
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.bgorigin{
  padding: 5px;
  display: flex;
  width: 90%;
  margin-top: 20px;
  justify-content: center;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
  border-radius: 20px;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}


.story-btn1 {
  width: 90%;
  margin-left: 5%;
  margin-bottom: 5px;
  /* margin-top: 5%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}


.projContent{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  padding: 0 0px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
}

.ticker-container {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  /* height: 50px; */
  overflow: hidden;
  /* background-color: transparent */
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.ticker-canvas {
  width: calc((100px * 14) + 1px);
  /* 
  200px = minimum width of ticker item before widget script starts removing ticker codes
  15 = number of ticker codes
  2px = accounts for 1px external border
  */
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker-canvas;
  animation-name: ticker-canvas;
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
}
.ticker-canvas:hover {
  animation-play-state: paused;
}

@-webkit-keyframes ticker-canvas {
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* visibility: visible; */
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker-canvas {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.tradingview-widget-container {
  position: relative;
  background: radial-gradient( #ffffff 60%, #feffcf);
  /* background-color: #FBF7C0 ; */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.tradingview-widget-container iframe {
    position: absolute;
    top: 15px;
}
.tradingview-widget-container iframe:nth-of-type(2) {
  left: 50%;
}

/* ---- particles.js container ---- */

#particles-js {

  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  background-image: url("");
  background-repeat: repeat;
  background-size: cover;
  background-position: 100% 100%;
  z-index: auto;
}


/* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: -48px;
  left: -40px;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.js-count-particles {
  font-size: 1.1em;
}


#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}


/* header stuff */





/* .mailto{
  width: 10%;
  position: relative;
  left: 50%;
  
  background-color: transparent;
}
 */



.projects{
  margin-top: 0px;
}
#title{
  /* margin-top: 50px; */
  /* padding: 50px; */
  display: flex;
  justify-content: center;
  background-color: transparent;
}


#patternBox{
  /* margin-top: 50px;padding: 50px; */
  display: flex;
  justify-content: center;
  background-color: transparent;
}

.pattern1{
  margin-top: 40px;
  margin-bottom: 0px;
  width: 99%;
  /* height: 50px; */
  border-radius: 10px;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
}


.pattern2{
  margin-top: 30px;
  margin-bottom: 30px;
  width: 99%;
  border-radius: 550px;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
}


#baag{
  padding: 5px;
  display: flex;
  justify-content: center;
  background-color: transparent;
}

.lineup{
  padding: 5px;
  display: flex;
  width: 90%;
  margin-top: 20px;
  justify-content: center;
  position: relative;
  background-color: white;
  opacity: 90%;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



.more{
  padding: 5px;
  display: flex;
  width: 90%;
  margin-top: 50px;
  justify-content: center;
  position: relative;
  background-color: white;
  opacity: 90%;
  border-radius: 80px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.moreBottom{
  padding: 0px;
  display: flex;
  width: 90%;
  margin-top: 0px;
  margin-bottom: 50px;
  justify-content: center;
  position: relative;
  background-color: white;
  opacity: 90%;
  border-radius: 80px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


#sellbox{
  padding: 0px;
  display: flex;
  justify-content: center;
  background-color: transparent;
}
.sell{
  padding: 0px;
  display: flex;
  width: 90%;
  margin-top: 20px;
  
  justify-content: center;
  position: relative;
  background-color: white;
  /* opacity: 90%; */
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.nutri1{
  padding: 0px;
  display: flex;
  width: 90%;
  margin-top: 50px;
  margin-bottom: 10px;
  justify-content: center;
  position: relative;
  background-color: white;
  /* opacity: 90%; */
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.nutri2{
  padding: 0px;
  display: flex;
  width: 90%;
  margin-top: 50px;
  margin-bottom: 50px;
  justify-content: center;
  position: relative;
  background-color: white;
  /* opacity: 90%; */
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


#formBox{
  padding: 0px;
  display: flex;
  justify-content: center;
  background-color: transparent;
}


.accordian2{
  width: 100%;
  transition: 0.4s;
}



.brand{
  margin-top: 25px;
  width: 80%;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
}

.brandBottom{
  margin-top: 0px;
  margin-bottom: 10px;
  width: 80%;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
}

#reviewBox{
  display: flex;
  justify-content: center;
  background-color: transparent;
}

#punchBox{
  display: flex;
  justify-content: center;
  background-color: transparent;
}

.review{
  width: 100%;
  margin: 10px;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
}

.morethanpan{
  width: 100%;
  margin-bottom: -20px;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
}
.baagua{
  width: 80%;
  position: relative;
  background-color: transparent;
  /* opacity: 90%; */
}

#bottles{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}


.bottle{
  width: 22%;
  margin: 5px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#socialBox1{
  display: flex;
  /* justify-content: center; */
  /* align-items: space-evenly; */
  /* padding: 10px; */
  margin-top: 20px;
  margin-bottom: 10px;
}
/* 
#socialBox{
  display: flex;
  justify-content: center;
  align-items: space-evenly;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
} */

#socialBox{
  display: flex;
  justify-content: center;
  align-items: space-between;
}

.social{
  width: 120px;
  height: 120px;
  margin: 25px;
}

/* .social{ */
  /* width: 150px;
  height: 150px; */
  /* width: 80vw;
  margin: 20px; */
  /* padding: 10%; */
  /* display: flex; */
  /* flex-direction: row; */
  /* align-items: center; */
  /* margin: 10px; */
  /* position: relative;
  border-radius: 100px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
} */

 
/* .social{
  width: 80vw;
  background-color: transparent;
  margin: 20px;
  padding: 10%;
}  */

.socialNug{
  width: 14%;
  background-color: transparent;
  margin: 2%;
  padding: 3%;
  background-color: transparent;
  /* border-radius: 100px; */
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */

}

@media (max-width: 1280px){

  .social{
    height: 100px;
    width: 100px;
    margin: 20px;
    position: relative;
  }

}


@media (max-width: 725px){
  .more{
    margin-top: 25px;
    border-radius: 30px;
  }
  .storyBox{
    width: 90%;
    margin: 20px;
  }
.sellBox{
  width: 90%
}
#socialBox{
  display: flex;
  justify-content: center;
  align-items: space-between;
}
  .social{
    width: 80px;
    height: 80px;
    margin: 20px;
  }
  
}
@media (max-width: 565px) {
  p{
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 15px;
    
  }  
#socialBox{
  display: flex;
  justify-content: center;
  align-content: space-between;
}


.social{
  height: 50px;
  width: 50px;
  margin: 10px;
  position: relative;
}
}



/* iPhone 11 pro */
@media (max-width: 375px) {

p{
  margin: 5px;
  margin-bottom: 15px;
}  

.pattern1{
  margin-top: 25px;
}

.nutri1{
  margin-bottom: 10px;
}

.nutri2{
  margin-top: 25px;
}


.more{
  margin-top: 25px;
  border-radius: 30px;
}




  .storyBox{
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    position: relative;
    
  }


  .bottle{
    width: 40%;
    margin: 5px;  
  }

  

 #dsBrand{
  padding: 20%;
  display: flex;
  justify-content: center;
}

.ds{
  width: 92.5%;
  position: relative;
  margin-left: auto;
}

/* .mailto{
  width: 50%;
  align-items: center;
  margin-top: 45px; 
} */



.projects{
  margin-top: 10px;
}

.dnasci{
  margin-top: 5px;
}

#socialBox{
  display: flex;
  justify-content: center;
  align-content: space-between;
}


.social{
  height: 50px;
  width: 50px;
  margin: 10px;
  position: relative;
}

}



