.banner {
  position: relative;
}
.banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 33.6458333333vw;
}
.banner .text {
  position: absolute;
  left: 8.3333333333vw;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
  font-weight: 700;
  line-height: 1.18;
}
.banner .links {
  position: absolute;
  left: 8.3333333333vw;
  bottom: 2.0833333333vw;
  display: flex;
  gap: 0.4166666667vw;
  align-items: center;
}
.banner .links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.875;
  transition: all 600ms;
}
.banner .links a:hover {
  color: #fff;
}
.banner .links span {
  width: 1.0416666667vw;
  height: 1px;
  display: block;
  background: #fff;
  opacity: 0.7;
}
.banner .links p {
  color: #FFF;
  font-weight: 500;
  line-height: 1.875;
}

@media screen and (max-width: 768px) {
  .banner {
    margin-top: 60px;
  }
  .banner img {
    height: 200px;
    object-fit: cover;
  }
  .banner .text {
    left: 5%;
  }
  .banner .links {
    left: 5%;
    bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 14px;
  }
  .banner .links span {
    width: 15px;
  }
}

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