.hero {
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.04));
  border-radius: 12px;
  margin: 24px;
}

.hero img {
  width: 100%;
}

.hero-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 12px;
}

.hero-content a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), rgba(3, 199, 220, 0.1);
  padding: 12px 24px;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  margin-top: 4px;
}

@media only screen and (min-width: 768px) {
  .hero {
    width: calc(100vw - 65px);
  }

  .hero-content {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
    top: 120px;
    left: 80px;
    width: 582px;
    height: 520px;
  }
  
  .hero-content h1 {
    font-size: 60px;
    font-weight: 600;
  }

  .hero-content small {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.32px;
    padding-left: 32px;
  }

  .hero-content small:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 1px;
    top: 50%;
    left: 0;
    background-color: #FFFFFF;
  }

  .hero-content a {
    margin-top: auto;
  }
}