html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: smooth;
}
body {
  font-family: "Open Sans";
  scroll-behavior: smooth;

  margin: 0 auto;
}

/*nav {
  grid-area: navigation;
}
.slider {
  grid-area: slider;
}
.about {
  grid-area: about;
}
.backimage {
  grid-area: backimage;
}
.brands {
  grid-area: brands;
}

main {
  display: grid;
  grid-template-areas:
    "nav"
    "slider"
    "about"
    "backimage"
    "brands";
}*/

nav {
  z-index: 100;
  position: fixed;
  bottom: 0%;
  width: 100%;
}

ul {
  list-style-type: none;
  padding: 0px;
}

a {
  text-decoration: none;
}

nav,
nav a {
  color: #fff;
}

nav a:hover {
  color: #0a2f5d;
}

.blue,
.blue a {
  color: #0a2f5d;
}

.blue a:hover {
  color: #0a2f5d;
}

ul li a {
  letter-spacing: 3px;
  font-size: 18px;
  font-weight: bold;
}

nav .navlinks {
  float: left;
  margin-left: 10px;
}

nav #copyrightinfo {
  float: right;
  margin-top: 42px;
  font-size: 13px;
  font-weight: bold;
  margin-right: 10px;
}

.item-video {
  /* position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;*/
  overflow: hidden;
}

main video {
  display: block;
  /* position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;*/
  /*min-height: 80vh;*/
}

#about {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  padding-top: 50px;
}
.aboutimg {
  display: flex;
  justify-content: flex-end;
  margin-right: 55px;
  align-items: flex-start;
}
.aboutimg img {
  width: 34%;
}
section .about {
  color: #777;
  font-size: 18px;
  font-weight: bold;
  width: 60%;
  display: flex;
  text-align: justify;
  align-items: center;
  padding-right: 80px;
}
/*
#abouttextid {
  border-right: 7px #ff0000 solid;
  padding-right: 8px;
}
*/
header {
  top: 60px;
  position: absolute;
  width: 100%;
  z-index: 1000;
  float: right;
}

#logo {
  float: right;
  padding-right: 80px;
}

#logo img {
  height: 300px;
}

.aboutsection {
  clear: both;
}

#backimage img {
  position: absolute;
  width: 100%;
  z-index: 3;
  animation: slideshow 12s linear 0s infinite;
  max-height: 100vh;
}

#backimage img:nth-child(2) {
  z-index: 2;
  animation-delay: 4s;
}

#backimage img:nth-child(3) {
  z-index: 1;
  animation-delay: 8s;
}

@keyframes slideshow {
  25% {
    opacity: 1;
  }

  33.33% {
    opacity: 0;
  }

  91.66% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#brandslist {
  position: absolute;
  clear: both;
  margin-top: 118vh;
  width: 100%;
  display: flex;
  margin-bottom: 120px;
  justify-content: center;
}

.brandslist {
  min-height: 60vh;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.brandslist ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media screen and (max-width: 900px) {
  nav #copyrightinfo {
    margin: 0px 0px 2px 10px;
  }
  #about {
    min-height: 80vh;
    flex-direction: column;
  }
  .aboutimg img {
    width: 44%;
  }
  section .about {
    /* margin-top: 100px; */
    width: 97%;
    /* margin-right: 20px; */
    font-weight: 300;
    padding: 10px;
  }
  #brandslist {
    margin-top: 60vh;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  #logo {
    padding-right: 10px;
  }
  #logo img {
    height: 200px;
  }
  .aboutimg img {
    width: 72%;
    margin-right: 0px;
  }
  section .about {
    /* padding-right: 0px; */
    font-size: 18px;
    margin-bottom: 94px;
    margin-right: 0px;
    margin-top: 5px;
    width: 92%;
    padding: 11px;
  }
  #brandslist {
    margin-top: 38vh;
    right: 10%;
    margin-bottom: 60px;
  }
}
