@import url('https://fonts.googleapis.com/css?family=Lato');
* {
  box-sizing: border-box;
  /*border: 1px solid;*/
}
html, body {
  margin: 0;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  scroll-behavior: smooth;
  background-color: #000;
}
.body-bg {
  background-image: url(images/background.jpg);
  background-size: cover;
  background-attachment: fixed;
  margin-top: 100px;
}

/*HEADER START*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background-color: #1e1e1e;
  display: flex;
  justify-content: flex-start;
  z-index: 1;
}
.header-left {
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#header-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.header-left > h1 {
  color: #fff;
}
.header-right {
  width: 50%;
  display: flex;
  align-items: center;
}
#nav-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-left: 140px;
}
#nav-bar ul {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-around;
}
.nav-link-li {
  list-style-type: none;
  padding: 10px;
  border-radius: 10px;
}
.nav-link-li:hover {
  list-style-type: none;
  transition-duration: 0.3s;
  transform: scale(1.2);
  background: #fff;
}
.nav-link-li > a {
  color: #fff;
}
.nav-link-li > a:hover {
  color: #000;
}
/*HEADER END*/

/*MAIN START*/
#about-us {
  margin-top: 100px;
  color: #fff;
}
.row {
  background-color: #000;
  border-radius: 20px;
  opacity: 0.8;
  margin: 50px;
  position: relative;
  top: 30px;
  text-align: justify;
  z-index: 0;
}
.row > h3 {
  display: inline-block;
  text-align: justify;
  margin: 25px 50px auto;
  opacity: 1;
}
.row > p {
  margin: 50px;
  padding-bottom: 50px;
}
.video-div {
  display: flex;
  justify-content: center;
}
#video {
margin: 50px;
margin-bottom: -30px;
}
.row img {
  width: 70vw;
  padding-left: 260px;
}
#contact, #products {
  color: #fff;
}
form {
  margin-left: 50px;
  margin-top: -50px;
  padding-bottom: 50px;
}
/*MAIN END*/




@media (max-width: 768px) {
  #nav-bar {
    width: 70%;
    display: flex;
    justify-content: center;
    margin: 0px;
  }
  #header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    position: fixed;
    background-color: #1e1e1e;
    display: flex;
    justify-content: flex-start;
    z-index: 1;
  }
  .row img {
    width: 100%;
    /*padding-left: 260px;*/
  }
}