.heroSection {
  padding-top: 20px;
  padding-bottom: 120px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  height: 70vh;
  justify-content: space-between;
}
.heroSection .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 35, 35, 0.5);
}
.heroSection .heroContainer {
  position: relative;
}
.heroSection .heroContainer .content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.heroSection .heroContainer .content .textContainer {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.heroSection .heroContainer .content .textContainer .list {
  display: flex;
  gap: 50px;
}
.heroSection .heroContainer .content .textContainer .list .item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.heroSection .heroContainer .content .textContainer .list .item img {
  width: 22px;
  height: 22px;
}
.heroSection button {
  position: relative;
}

@media (max-width: 850px) {
  .heroSection {
    padding-top: 20px;
    padding-bottom: 50px;
    gap: 60px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .heroSection .heroContainer .content {
    gap: 60px;
  }
  .heroSection .heroContainer .content .textContainer {
    gap: 30px;
  }
  .heroSection .heroContainer .content .textContainer .list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .heroSection .btn {
    margin: auto;
  }
}/*# sourceMappingURL=heroSection.css.map */