
.vs-hero-resource-detail {
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 1;
  padding: 0 150px;
  background-size: cover;
  background-repeat: no-repeat;
}

.vs-hero-resource-detail button {
  width: fit-content;
  cursor: pointer;
  padding: .6rem 2rem;
  border-radius: 25px;
  border: none;
  background-color: #E45750;
}

.vs-hero-resource-detail button a {
  color: white;
}

.vs-hero-resource-detail__main-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vs-hero-resource-detail__headers-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vs-hero-resource-detail__headers-container h2 {
  color: white;
}

.vs-hero-resource-detail__headers-container p {
  width: 100%;
  color: white;
}

.vs-hero-resource-detail__title {
  font-weight: 400;
  font-size: 2rem;
}

.vs-hero-resource-detail__image-section {
  width: 30%;
  display: flex;
  justify-content: space-around;
}

.vs-hero-resource-detail__image-container img {
  width: 200px !important;
}

@media screen and (max-width: 1024px) {
  .vs-hero-resource-detail {
    padding: 0 80px;
  }
}


@media screen and (max-width: 768px) {
  .vs-hero-resource-detail {
    padding: 3rem 20px;
    height: auto;
  }

  .vs-hero-resource-detail__main-container {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 1rem;
  }

  .vs-hero-resource-detail__headers-container,
  .vs-hero-resource-detail__image-section {
    width: 100%;
    align-items: center;
  }

  .vs-hero-resource-detail__title {
    font-size: 1.5rem;
  }

  .vs-hero-resource-detail__image-container img {
    width: 150px;
  }
}
