@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
html {
  font-size: 100%;
  box-sizing: border-box;
  height: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background-color: #262626;
  color: white;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  height: 100%;
  width: 100%;
}

body {
  height: 2000px;
}
body header .nav {
  display: flex;
  margin: 0 10px 0 0;
  justify-content: space-between;
  color: #fff;
}
body header .nav h1 {
  font-size: 20px;
  margin: 0;
  padding-top: 10px;
}
body header .nav .left {
  display: flex;
}
body header .nav .left .hamburger {
  display: none;
}
body header .nav .left img {
  width: 120px;
  height: 60px;
}
body header .nav .mid {
  display: none;
}
body header .nav .mid input {
  color: white;
}
body header .nav .mid input:focus {
  outline-style: none;
}
body header .nav .right {
  display: flex;
}
body header .nav .right img {
  width: 18px;
  margin-right: 20px;
}
body header .nav .right img:last-child {
  margin-right: 0;
}
body section .nav-side {
  display: none;
}
body section .card img {
  width: 100%;
}
body section .card .desc {
  display: flex;
  margin: 10px 20px;
}
body section .card .desc img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 20px;
}
body section .card .desc .about-desc h6 {
  font-size: 15px;
  margin: 0;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
body section .card .desc .about-desc .about-vid {
  display: flex;
}
body section .card .desc .about-desc .about-vid p {
  font-size: 10px;
}
body section .card .desc .about-desc .about-vid p:first-child {
  margin-right: 10px;
}
body footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #262626;
}
body footer .menu-bottom {
  padding: 10px 0 0 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
}
body footer .menu-bottom img {
  width: 20px;
}
body footer .menu-bottom .plus img {
  width: 40px;
}
body footer .menu-bottom p {
  margin: 0;
  font-size: 10px;
}

@media all and (min-width: 1040px) {
  body header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    background-color: #262626;
  }
  body header .nav {
    margin: 0 10px;
  }
  body header .nav .left .hamburger {
    display: flex;
    background-color: #262626;
  }
  body header .nav .left .hamburger button {
    border: 1px solid #262626;
    background-color: #262626;
  }
  body header .nav .left .hamburger img {
    width: 30px;
    background-color: #262626;
  }
  body header .nav .mid {
    display: flex;
    margin: 15px 0;
  }
  body header .nav .mid .search {
    display: flex;
  }
  body header .nav .mid .search input {
    background-color: #000;
    border: 1px solid #303030;
    padding: 5px;
    height: 32px;
    width: 450px;
    margin: 0;
  }
  body header .nav .mid .search button {
    background-color: #303030;
    padding: 3px;
    border: none;
    margin-right: 10px;
    width: 50px;
    height: 32px;
    border: 3px solid #303030;
  }
  body header .nav .mid .search button img {
    height: 14px;
  }
  body header .nav .mid button {
    width: 50px;
    background-color: #262626;
    border: 2px solid #262626;
    height: 30px;
  }
  body header .nav .mid button img {
    height: 20px;
  }
  body header .nav .right img {
    width: 20px;
    margin-right: 35px;
  }
  body section {
    display: flex;
  }
  body section .nav-side {
    display: block;
    background-color: #262626;
    position: fixed;
    top: 60px;
    min-width: 200px;
    margin: 0;
  }
  body section .nav-side img {
    margin: 0 20px;
    width: 21px;
  }
  body section .nav-side p {
    margin: 15px 0px 10px 0;
  }
  body section .nav-side .first-col {
    border-bottom: 1px groove #ccc;
  }
  body section .nav-side .sec-col {
    margin-top: 10px;
    border-bottom: 1px groove #ccc;
  }
  body section .nav-side .third-col {
    margin-top: 10px;
    border-bottom: 1px groove #ccc;
  }
  body section .nav-side .fourth-col {
    margin-top: 10px;
    border-bottom: 1px groove #ccc;
  }
  body section .nav-side .row {
    display: flex;
    width: 200px;
  }
  body section .card-container {
    background-color: #1f1f1f;
    display: grid;
    grid-template-columns: repeat(4, 19.5vw);
    grid-column-gap: 15px;
    position: relative;
    left: 230px;
    top: 80px;
  }
  body footer .menu-bottom {
    display: none;
  }
}