* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background-color: #f5f5f5;
}

html {
  font-size: 62.5%;
}

.mainContainer {
  min-height: 100%;
  overflow: auto;
}

/**********************************
HEADER & NAVBAR
***********************************/

#header {
  background-color: rgb(82, 80, 80);
  position: fixed;
  width: 100%;
  z-index: 3;
  font-family: helvetica;
  box-shadow: 0px 1rem 1rem rgba(0,0,0,0.2);
}

#header #header-img {
  position: relative;
  width: 4rem;
  float: left;
  display: block;  
  padding: 1rem 1rem; 
  /* background: yellow; */
}

h1 {
  font-size: 3rem;
  line-height: 4rem;
  display: block;
  float: left;
  padding: 1rem 1rem;
  /* margin: 0 0 0 11rem; */
  /* background: green; */
}

#header #nav-bar {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /* background: orange; */
  max-height: 0;
  clear: both;
  transition: max-height .2s ease-out;
  
}

#header #nav-bar .nav-link {
  display: block;
  padding: 1rem 1rem; 
  line-height: 4rem;
  font-weight: 500;
  font-size: 2rem;
}

#header a {
  text-decoration: none;
  color: white;
}

#header #nav-bar .nav-link:hover {
  background-color: red;
  text-decoration: underline;
  /* border-bottom: solid black 3px; */
}

#header #nav-bar .nav-link:active {
  background-color: rgb(138, 138, 133);
  /* text-decoration: underline; */
}

h2{
  padding: 1rem 0 1rem 0;
}




/**********************************
          mAIN CONTENET
          ***********************************/

          
.main {
  position: relative;
  /* top: 10.0rem; */
  font-family: helvetica;
  padding: 0 3.2rem;
  
}

#home, #about, #products, #contact{
  padding-top: 8rem;
}

.main > h2, #products > h2, #contact{
  font-size: 2.4rem;
  /* margin-top: 10.0rem; */
}

.main > p {
  font-size: 2.0rem;
}

#products > h3{
  font-size: 2.0rem;
  padding-top: 5rem;
}

.specs > h4{
  font-size: 1.8rem;
  margin-left: -2rem;
  margin-bottom: 1.5rem;
}

.specs ul > li{
  font-size: 1.6rem;
}

#product-container01 {
  display: flex;
  flex-direction: row;
/*   background: dodgerblue; */
}

#product-container02 {
  display: flex;
  flex-direction: row;
/*   background: yellow; */
}

#product-container03 {
  display: flex;
  flex-direction: row;
/*   background: green; */
}

#product-container01 .video-container, 
#product-container02 .video-container,
#product-container03 .video-container {
  display: flex;
  flex-direction: column;
/*   background: orange; */
}

#product-container01 .video-container .vid,
#product-container02 .video-container .vid, 
#product-container03 .video-container .vid {
  flex: 1;
  padding-top: 56.25%; 
  position: relative; 
  overflow: hidden; 
  margin: 1%;
}

#product-container01 .video-container .vid iframe,
#product-container02 .video-container .vid iframe,
#product-container03 .video-container .vid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#product-container01 .video-container .vid-price,
#product-container02 .video-container .vid-price,
#product-container03 .video-container .vid-price {
  flex: 1;
  width: 100%;
  text-align: center;
/*   background-color: yellow; */
  font-size: 1.6rem;
  padding: 1rem 1rem;
}


.video-container {
  width: 40%;
  height: auto;
  margin: 0.5% 0.5%;
/*   background-color: grey; */
}

.buy-button {
  background-color: #0089de;
  border: none;
  border-radius: 1.0rem;
  color: white;
  padding: 1.0rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.6rem;
  margin: 1.5rem 1.0rem;
  cursor: pointer;
}

.specs {
  width: 60%;
  height: auto;
  margin: 0.5rem 2.5rem;
  padding-top: 1rem;
/*   background-color: red; */
}



.footer {
  /* top: 10.0rem; */
  position: relative;
  padding: 0 3.2rem;
  font-family: Helvetica;
}

form{
  padding: 2.0rem 0;
  font-size: 1.6rem;
}

#email{
  height: 3rem;
  width: 25rem;
}

#submit{
  margin: 2.5rem 0;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  /* border: none; */
}

#submit:hover{
  background: #0089de;
  cursor: pointer;
  color: white;
}

#footer1 {
  position: relative;
  height: 4.8rem;
  width: 100%;
  background-color: #fffafa;
  padding: 0;
  margin: 0;
  clear: both;
}

#footer1 p {
  width: 100%;
  background-color: #fffafa;
  bottom: 0;
  font-size: 1.8rem;
  line-height: 1.6rem;
  text-align: center;
  padding-top: 1.6rem;
}

