.container {
  overflow-y: auto;
  overflow-x: hidden;
}

section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-color: var(--c05);
  padding: 0 10vw;
}

.cover_bg {
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.cover_bg video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.scroll {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  width: 1px;
  height: 100px;
  animation-name: anim_scroll;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background-color: var(--c02);
}

@keyframes anim_scroll {
  0% {
    bottom: 100px;
    height: 0px;
    opacity: 0;
  }
  20% {
    bottom: 0px;
    height: 100px;
    opacity: 1;
  }
  80% {
    bottom: 0px;
    height: 100px;
    opacity: 1;
  }
  100% {
    bottom: 0px;
    height: 0px;
    opacity: 0;
  }
}

/* Specific Sections */
#cover {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.cover_symbol {
  position: relative;
  height: 153px;
  width: 186px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  filter: invert(100%) sepia(99%) saturate(4%) hue-rotate(114deg)
    brightness(104%) contrast(96%);
}

.cover_symbol_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cover_symbol_img_reg {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 8px;
  height: 8px;
}

#slogan {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: transparent;
}

#slogan h4 {
  color: var(--c02);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1em;
  text-transform: uppercase;
  word-spacing: normal;
}

#slogan p {
  position: relative;
  width: 580px;
  max-width: 80%;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.5em;
  text-align: center;
  color: var(--c02);
  margin: 0;
  padding: 0;
  display: none;
  opacity: 0;
}

/* --------------------------------------------------------------- */
/* RESPONSIVO ---------------------------------------------------- */
/* --------------------------------------------------------------- */

@media (max-width: 1200px) {
  .cover_symbol {
    height: 139px;
    width: 169px;
  }
}

@media (max-width: 696px) {
  .cover_symbol {
    height: 115px;
    width: 140px;
  }
  section {
    padding: 0 2vw;
  }
}

@media (max-width: 360px) {
  .cover_symbol {
    height: 102px;
    width: 124px;
  }
}
