* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

body{
    width: 100%;
    background-color: #161c2c;
}


/* navNar */
.nav-section{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.893);
    z-index: 999;
  
}

.nav-section button{
    opacity: 0%;
}

.nav{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
    font-size: 20px;
}

.nav li i{
    margin-right: 10px;
    color: greenyellow;
  }


.nav-section .nav a {
    font-weight: 700;
    text-decoration: none;
    color: greenyellow;
    padding: 10px 0;
    transition: 0.2s ease;
}

.nav-section .nav a:hover {
    color: whitesmoke;
}


.logo{
    font-size: 1.8rem;
    color: white;
}

.logo p{
    margin-left: 30px;
}

.logo span{
    color: greenyellow;
}


/* Hamburger menu styles */
#menu-toggle {
    display: none;
}
  
#hamburger-btn {
    font-size: 1.9rem;
    color: yellowgreen;
    cursor: pointer;
    display: none;
    order: 1;
}


/* sub nav */
.sub-menu{
    display: none;
  }
  
  .sub-menu ul{
    list-style: none;
  }
  
  .nav-section ul li:hover .sub-menu{
    display: block;
    position: absolute;
    background: rgb(27, 27, 27);
    padding-bottom: 20px;
    margin-top: 1px;
    margin-left: 15px;
    color: greenyellow;
  }
  
  .nav-section ul li:hover .sub-menu ul{
    display: block;
    margin: 10px;
  }
  
  .nav-section ul li:hover .sub-menu ul li{
    width: 100px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
  }


  /* hero section */
  .ws_h{
    /* max-width: 1024px; */
    padding-top: 72px;
    margin-left: auto;
    margin-right: auto;
}


  .ws_hero{
    background-image: url('../images/supplies-hero1.jpg');
    background-size: cover;
    height: 50vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 220px 0 40px 0;
  }

  .ws_hero h1{
    position: absolute;
    color: yellowgreen;
    left: 50%;
    top: 30%;
    font-size: 5rem;
    transform: translate(-50%, -50%);
}

  /* Body */
.sectionWrap{
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    width: 80%;
    background-color: #161c2cc6;
}


  .waterBody{
    padding-top: 77px;
    /* display: flex; */
    width: 100%;

  }


  .wB{
    margin: 10px;
    padding: 20px;
    width: 100%;
  }

  .wB img{
    width: 60%;
  }

  .textWater{
    border-left: lawngreen solid 5px;
  }



  /* Section 2 */
  .videoSec{
    padding-top: 20px;
  }

  .videoFlex{
    display: flex;
    justify-content: center;
    padding: 40px;
    padding-bottom: 0%;
  }

  .vidStyle{
    margin-right: 40px;
    border-radius: 20%;
  }

  video{
    border-radius: 20%;
    height: 50%;
    border-bottom: 7px solid rgba(153, 205, 50, 0.312);
    border-bottom: 7px solid rgba(153, 205, 50, 0.312);
  }

  video:hover{
    border: 10px solid rgba(153, 205, 50, 0.542);
    margin: 4px 2px;
    opacity: 0.6;
    transition: 0.3s;
  }

  .vidStyle img{
    border-radius: 20%;
    height: 50%;
    border-bottom: 7px solid rgba(153, 205, 50, 0.312);
    border-bottom: 7px solid rgba(153, 205, 50, 0.312);
  }

  .vidStyle img:hover{
    border: 10px solid rgba(153, 205, 50, 0.542);
    margin: 4px 2px;
    opacity: 0.6;
    transition: 0.3s;
  }

  /* Footer */

footer{

    background-color: #0f1320;
}

.foot{
    display: flex;
    justify-content: space-evenly;
    padding: 3pc;
}

.founder{
    display: flex;
    padding: 5px;
    justify-content: space-around;
}

.founder img{
    width: 110px;
    height: 180px;
    border-radius: 25px;
    border: 1px solid yellowgreen;
}

.founder-info{
    color: yellowgreen;
    margin-left: 10px;
    margin-top: 0px;
}

.founder-info p {
    padding: 10px;
}


iframe{
    filter: invert(100);
    border-radius: 20px;
}


.foot-info{
    padding: 5px;
    color: yellowgreen;
}

.foot-info p{
    padding: 8px;
}


.foot-logo{
    background-color: aliceblue;
    display: flex;
    justify-content: space-around;
}

.foot-logo img{
    width: 9%;
}

.social{
    font-size: 20px;
    margin-left: 10%;
    margin-top: 20px;
}

.social a{
    color: yellowgreen;
    margin-right: 25px;
    
}

.social a:hover{
    color: black;
}

.foot hr{
    opacity: 10%;
}


@media screen and (max-width: 1023px) {
  .ws_hero{
    background: url(../images/supplies-hero1.jpg);
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    padding: 40px 20px; 
  }

  .ws_hero h1{
    font-size: 4rem;
    
  }


  .nav-section .logo p {
    font-size: 1.5rem;
  }
  
  .nav {
    position: fixed;
    left: -100%;
    top: 75px;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    /*background: #175d69;*/
    background: url("../images/hero1a.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    transition: 0.3s ease;
  }
  
    .nav-section #menu-toggle:checked ~ .nav {
      left: 0;
    }
  
    .nav-section #hamburger-btn {
      display: block;
    }
  
  
    /* sub nav */
    .sub-menu ul{
      list-style: none;
    }
    
  
    .nav-section ul li fa-caret-down:hover .sub-menu{
      display: block;
      position: absolute;
      background: none;
      margin-top: 1px;
      margin-left: 15px;
      color: greenyellow;
    }
    
  
    .nav-section ul li:hover .sub-menu ul{
      display: block;
      margin: 10px;
    }
  
    .nav-section ul li:hover .sub-menu ul li{
      width: 100px;
      padding: 10px;
      border-bottom: 1px dotted #fff;
      background: transparent;
      border-radius: 0;
      text-align: left;
    }
  
    .nav-section ul li:nth-child(3):hover{
      margin-bottom: 220px;
    }
  

    video{
      border-radius: 50%;
      height: 250px;
      width: 250px;
      border-bottom: 7px solid rgba(153, 205, 50, 0.312);
      border-bottom: 7px solid rgba(153, 205, 50, 0.312);
    }


    .vidStyle img{
      border-radius: 50%;
      height: 250px;
      width: 250px;
      border-bottom: 7px solid rgba(153, 205, 50, 0.312);
      border-bottom: 7px solid rgba(153, 205, 50, 0.312);
    }


     /* FOOTER */
     .foot{
      display: block;
      justify-content: space-evenly;
      padding: 20px;
  }

  .founder{
      display: flex;
      padding: 5px;
      justify-content: space-around;
      align-items: center;
  }
  
  .founder img{
      width: 100px;
      height: 120px;
      border-radius: 10px;
      border: 1px solid yellowgreen;
  }
  
  .founder-info{
      color: yellowgreen;
      margin-top: 2px;
  }
  
  .founder-info p {
      padding: 2px;
      font-size: 10px;
  }

  .foot-info{
      font-size: 10px;
      padding: 2px;
      color: yellowgreen;
      margin-left: 50px;
      margin-top: 10px;
  }
  
  .foot-info p{
      padding: 4px;
  }

  hr:nth-of-type(2){
      display: none;
  }

  iframe{
      width: 100%;
  }
  
  .foot-logo{
      background-color: aliceblue;
      display: flex;
      justify-content: space-around;
  }
  
  .foot-logo img{
      width: 30%;
  }

  .social{
      font-size: 20px;
      margin-left: 10%;
      margin-top: 10px;
  }
  
  .social a{
      color: black;
      margin-right: 15px;
      
  }

  .social a:hover{
      color: yellowgreen;
  }

  .sec-hero{
      background-image: url('../images/markus1.jpg');
      background-repeat: no-repeat;
      background-size: cover;
      height: 50vh;
      text-align: center;
      padding: 150px 0 40px 0;
  }
  
  .sec-hero h1{
      color: whitesmoke;
      font-size: 35px;
  }

  }


  @media screen and (max-width: 850px){

  }

  
  
  @media screen and (max-width: 620px){

      /* hero section */

    .ws_hero{
      background: url(../images/supplies-hero2.jpg);
      min-height: 50vh;
      height: auto;
      padding: 40px 20px;
      
    }

    .ws_hero h1{
      font-size: 2rem;
      top: 30%;

    }


    .wB img{
      width: 95%;
    }

    .sectionWrap{
      margin-right: auto;
      margin-left: auto;
      text-align: center;
      width: 100%;
      background-color: #161c2cc6;
  }

  .sectionWrap .waterBody{
    padding-top: 0%;
  }

/* Section 2 */
.videoSec{
  padding-top: 10px;
}

.videoFlex{
  display: block;
  justify-content: space-around;
  padding: 20px;
}

.vidStyle{
  margin-right: auto;
  border-radius: 20%;
  padding: 20px;
}

video{
  border-radius: 50%;
  height: 250px;
  width: 250px;
  border-bottom: 7px solid rgba(153, 205, 50, 0.312);
  border-bottom: 7px solid rgba(153, 205, 50, 0.312);
}

.vidStyle img{
  border-radius: 50%;
  height: 250px;
  width: 250px;
  border-bottom: 7px solid rgba(153, 205, 50, 0.312);
  border-bottom: 7px solid rgba(153, 205, 50, 0.312);
}



    /* FOOTER */
    .foot{
      display: block;
      justify-content: space-evenly;
      padding: 20px;
  }

  .founder{
      display: flex;
      padding: 5px;
      justify-content: space-around;
      align-items: center;
  }
  
  .founder img{
      width: 100px;
      height: 120px;
      border-radius: 10px;
      border: 1px solid yellowgreen;
  }
  
  .founder-info{
      color: yellowgreen;
      margin-top: 2px;
  }
  
  .founder-info p {
      padding: 2px;
      font-size: 10px;
  }

  .foot-info{
      font-size: 10px;
      padding: 2px;
      color: yellowgreen;
      margin-left: 50px;
      margin-top: 10px;
  }
  
  .foot-info p{
      padding: 4px;
  }

  hr:nth-of-type(2){
      display: none;
  }

  iframe{
      width: 100%;
  }
  
  .foot-logo{
      background-color: aliceblue;
      display: flex;
      justify-content: space-around;
  }
  
  .foot-logo img{
      width: 30%;
  }

  .social{
      font-size: 20px;
      margin-left: 10%;
      margin-top: 10px;
  }
  
  .social a{
      color: black;
      margin-right: 15px;
      
  }

  .social a:hover{
      color: yellowgreen;
  }

  .sec-hero{
      background-image: url('../images/markus1.jpg');
      background-repeat: no-repeat;
      background-size: cover;
      height: 50vh;
      text-align: center;
      padding: 150px 0 40px 0;
  }
  
  .sec-hero h1{
      color: whitesmoke;
      font-size: 35px;
  }
  }
  
  
  