/* Navigation Bar */
nav{
  display: flex;
  background: black;
  border: 0px solid black;
  justify-content: space-between;
  align-items: center;
}

.navLogo img{
  width: 20vh;
  margin: 1vw;
  border-radius: 5rem;
  float: right;
  align-self: center;
}

.navLinks{
  height: 100%;
  display: flex;
  margin: 0 0rem 0 1rem;
  padding: 2px 0rem 2px 5rem;
  background: white;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  justify-content: flex-end;
  align-items: center;
}

.navLinks a{
  color: black;
  font-weight: bold;
  font-size: 1.75rem;
  margin-right: 5vh;
  text-decoration: none;
}

.navLinks a::after{
  display: block;
  width: 0%;
  height: 2px; 
  margin: auto; 
  content: '';
  background: rgb(0, 202, 108);
  transition: 0.5s;
}

.navLinks a:hover::after{
  width: 100%;
}
/*
.searchBarContainer form{
  border: 2px solid black;
  border-radius: 10px;
  display: flex;
}

.searchBarContainer input[type="text"] { 
  font-size: 1.5rem;
  height: 5vh;
  border: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 1rem;
}

.navLinks .searchBarContainer button {
  width: 5rem;
  height: 5vh;
  font-size: large;
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  align-self: flex-end;
}

.navLinks .searchBarContainer button:hover {
  background: #ccc;
}
*/
.navMenu{
  display: none;
}

.accessBtns{
  display: flex;
  margin-left: 2.5vh;
}

.accessBtns .Btn{
  color: white;
  font-size: 2.5vw;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 2rem;
}

.accessBtns .Btn:hover{
  color: rgb(26, 26, 26);
  background:rgb(0, 202, 108);
}


@media screen and (max-width: 800px){
  nav{
    width: 100%;
    height: 7.5vh;
    margin-bottom: 10vh;
    background: rgba(0, 0, 0, 1);
    align-items: center;
  }
  .navLogo{
    height: 100%;
  }
  
  .navLogo img{
    width: 20vh;
    margin: 1vw;
    border-radius: 5rem;
    float: right;
    align-self: center;
  }

  .navLogo img{
    width: auto;
    height: 80%;
  }

  .navMenu{
    display: block;
    color: white;
    font-size: 5rem;
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
  }
  
  .navLinks{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    margin: 0rem;
    padding: 5rem;
    background: black;
    border-radius: 0%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    opacity: 1;
    z-index: 50;
  } 
  .navLinks a{
    color: white;
    width: auto;
    font-size: 5vh;
    margin: 0%;
    text-align: center;
  }
  .navLinks div{
    width: 100%;
    padding: 5rem;
  }
  
  .navLinks .accessBtns{
    margin: 0%;
    justify-content: space-around;
  }
  .navLinks .accessBtns .Btn{
    color: black;
    font-size: 5vw;
    background: white;
  }
  .navLinks .accessBtns .Btn:hover{
    background: rgb(0, 202, 108);
  }
}

/*----------------------------------------------------------*/

/* Main General Content */
.mainContent{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

fieldset{
  display: flex;
  justify-content: space-around;
  width: 75vw;
  height: auto;
  border: 2px solid black;
  background: linear-gradient(0.45turn, white,rgb(70, 70, 70));
}

legend {
  color: white;
  font-size: 17px;
  font-weight: bold;
  margin-left: 1rem;
  padding: 5px 10px;
  border: 2px solid black;
  background: black;
}


/*----------------------------------------------------------*/

/* New Product */
.newProduct {
  display: flex;
  margin: 3rem; 
  justify-content: center;
}

.newProduct img{
  max-width: 30vw;
  margin: 2.5rem;
  align-self: center;
}

.newProductDetails{
  font-size: 1.5vw;
  padding: 1rem 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.newProductDetails section{
  width: 100%;
  height: 85%;
  justify-self: flex-end;
  align-self: flex-end;
}

.newProductDetails section h1{
  font-size: 3vw;
}

.newProductDetails section p,ul{
  color: rgb(41, 41, 41);
}

.newProductDetails section ul li{
  margin: 1rem 0rem 1rem 2rem;
}

.newProductDetails .Btn{
  justify-self: center;
  align-self: flex-end;
}

/* Relevant Products */
.relevantProducts{
  display: flex;
  margin: 3rem; 
  justify-content: center;
}

.relevantProducts .item{
  width: 20vw;
  height: 90%;
  font-size: 1.25vw;
  display: flex;
  flex-direction: column;
  border: 2px solid black;
  margin: 2rem;
  align-self: center;
  justify-content: center;
}

.relevantProducts .item img{
  width: 100%;
  max-height: 50%;
  align-self: center;
}

.relevantProducts .item section{
  width: 100%;
  height: 85%;
  justify-self: flex-end;
  align-self: flex-end;
  padding: 1rem;
}

.relevantProducts .item section h1{
  font-size: 2vw;
}

.relevantProducts .item section p,ul{
  color: rgb(41, 41, 41);
}

.relevantProducts .item section ul li{
  margin: 1rem 0rem 1rem 2rem;
}

.relevantProducts .item .Btn{
  justify-self: center;
  align-self: flex-end;
}

/*----------------------------------------------------------*/

/* Other Info */
.otherInfo{
  display: flex;
  width: 75vw;
  height: auto;
  justify-content: space-around;
}

.otherInfo .info{
  display: flex;
  width: 100%;
  height: auto;
  margin: 5rem;
  flex-direction: column;
  align-items: center;
}

.otherInfo .info h1{
  font-size: 2vw;
  padding: 1rem;
  background: black;
  border: 2px solid rgb(0, 202, 108);
  border-radius: 5rem
}
.otherInfo .info a{
  color: white;
  text-decoration: none;
}

.otherInfo .info a::after{
  display: block;
  width: 0%;
  height: 2px; 
  margin: auto; 
  content: '';
  background: rgb(0, 202, 108);
  transition: 0.5s;
}

.otherInfo .info a:hover::after{
  width: 100%;
}

.otherInfo .info img{
  width: 30vw;
  height: 30vh;
  margin-top: 0.5rem;
  padding: 2rem;
  border: 2px solid black;
  border-radius: 1rem; 
  cursor: pointer;
}

@media screen and (max-width: 800px){
  fieldset{
    width: 100%;
    height: auto;
    border: 0;
  }
  
  .newProduct{
    width: 100%;
    height: auto;
    margin: 0rem 0rem 3rem 0rem; 
    justify-content: center;
  }

  .newProduct img{
    margin: 1.5rem;
  }

  .newProductDetails{
    font-size: 3vw;
    padding: 1rem 0 1rem 0;
  }

  .newProductDetails section h1{
    font-size: 4vw;
  }

  .relevantProducts{
    width: 100%;
    height: auto;
  }

  .relevantProducts fieldset{
    flex-direction: column;
  }

  .relevantProducts .item{
    width: 80%;
    height: auto;
    font-size: 3vw;
    margin: 1rem;
  }

  .relevantProducts .item section h1{
    font-size: 4vw;
  }

  .relevantProducts .item section ul {
    padding-left: 1rem;

  }

  .relevantProducts .item section ul li{
    margin: 1rem;
  }

  .otherInfo{
    width: 100%;
    height: auto;
  }
  .otherInfo .info h1{
    text-align: center;
    font-size: 3vw;
  }

  .otherInfo .info img{
    height: 15vh;
  }
}

/*----------------------------------------------------------*/

footer{
  position: relative;
}