@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
body {
  overflow-x: hidden;
  background: #000;
  color: #FFF;
}

body a {
  color: #FFF;
  text-decoration: underline;
  font-style: italic;
}

body header {
  text-align: center;
  background: url("pix/logo-black.png") center center no-repeat;
  height: 150px;
}

body header nav {
  font-size: 48px;
  float: left;
  cursor: pointer;
}

body header nav a {
  color: #000;
}

body header nav i {
  margin-left: 28px;
}

body header nav ul {
  list-style-type: none;
  position: absolute;
  width: 100%;
  background: #FFF;
  z-index: 999;
  height: 100vh;
  opacity: .8;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}

@-webkit-keyframes slideIn {
  from {
    max-height: 0;
  }
  to {
    max-height: 100vh;
  }
  /* Adjust to the actual height */
}

@keyframes slideIn {
  from {
    max-height: 0;
  }
  to {
    max-height: 100vh;
  }
  /* Adjust to the actual height */
}

@-webkit-keyframes slideOut {
  from {
    max-height: 200px;
  }
  to {
    max-height: 0;
  }
}

@keyframes slideOut {
  from {
    max-height: 200px;
  }
  to {
    max-height: 0;
  }
}

body header nav .slideIn {
  -webkit-animation: slideIn 0.5s ease-in-out forwards;
          animation: slideIn 0.5s ease-in-out forwards;
}

body header nav .slideOut {
  -webkit-animation: slideOut 0.5s ease-in-out forwards;
          animation: slideOut 0.5s ease-in-out forwards;
}

body header img {
  width: 100px;
  position: fixed;
  right: 50px;
  top: 20;
  float: right;
  z-index: 999;
}

body .hero div {
  height: 450px;
}

body .hero div img {
  display: block;
  text-align: center;
  margin: auto;
  width: 100%;
}

body .hero div img img.scale {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

body .hero div img#name {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

body main .brands .row div {
  text-align: center;
  margin: 5px 0;
}

body main .brands .row div img {
  width: 90%;
  border-radius: 5px;
  opacity: .6;
}

body main .brands .row div img:hover {
  opacity: 1;
  cursor: pointer;
}

body main h2 {
  font-weight: bold;
  text-decoration: underline;
  padding-top: 30px;
  font-style: italic;
  margin-bottom: 20px;
}

body main div.aboutus {
  margin: 50px auto;
  border-radius: 3px;
  -webkit-box-shadow: 6px 6px 5px;
          box-shadow: 6px 6px 5px;
  border: 5px solid #000;
  border-radius: 10px;
  text-align: center;
}

body main div.aboutus p {
  padding: 30px 50px;
}

body main div.aboutus h3 {
  font-weight: bold;
  text-decoration: underline;
  padding-top: 30px;
  font-style: italic;
}

body footer {
  background: #FFF;
  color: #000;
}

body footer div h3 {
  font-weight: bold;
  text-decoration: underline;
  padding-top: 30px;
  font-style: italic;
}

body .footer-bottom {
  font-size: 60px;
  text-align: center;
}

body #aboutimg {
  float: right;
}

@media only screen and (max-width: 600px) {
  body #aboutimg {
    float: none;
    position: relative;
    margin: auto;
    display: block;
  }
  body header img {
    bottom: 45px;
    right: 6px;
  }
  body .hero div {
    height: auto;
  }
  body header nav {
    font-size: 34px;
  }
  body header nav i {
    margin-left: 16px;
  }
}
/*# sourceMappingURL=basic.css.map */