.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 160px;
  padding: 0 160px;
}
@media screen and (max-width: 950px) {
  .hero-section {
    padding: 0px 80px;
  }
}
@media screen and (max-width: 600px) {
  .hero-section {
    margin-bottom: 80px;
    padding: 0px 20px;
  }
}
@media screen and (max-width: 480px) {
  .hero-section {
    min-height: 0;
  }
}
.hero-section .img-container {
  z-index: 1;
  padding: 40px 0 60px;
  width: 100%;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}
.hero-section .img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-section .text-container {
  z-index: 1;
  width: 100%;
  flex: 1 1 100%;
  max-width: 1360px;
  text-align: center;
}
.hero-section .text-container .small-label {
  display: inline-block;
  position: relative;
  text-decoration: none;
  background-color: var(--black);
  padding: 12px 15px;
  border: 3px solid var(--black);
  border-radius: 5px;
  color: white;
  transition: 0.3s;
  text-transform: uppercase;
}
.hero-section .text-container .small-label:hover {
  background-color: transparent;
  color: var(--black);
}
.hero-section .background-video-container {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
}
.hero-section .background-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*# sourceMappingURL=hero.css.map */
