
.vs-hero-event-detail {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 0 150px;
  }
  
  .vs-hero-event-detail__main-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .vs-hero-event-detail__headers-container {
    width: 70%;
  }

  .vs-hero-event-detail__headers-container .vs-event-details,
  .vs-hero-event-detail__headers-container .vs-event-details i {
    color: white;    
  }
  
  .vs-hero-event-detail__title {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  .vs-hero-event-detail__button-section {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .vs-hero-event-detail__button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .vs-hero-event-detail__button-container button {
    cursor: pointer;
    padding: .6rem 2rem;
    border-radius: 25px;
    border: none;
    background-color: #E45750;
  }

  .vs-hero-event-detail__button-container button a {
    color: white;
    text-decoration: none;
  }
  
  .vs-hero-event-detail__button-container button.clear {
    background-color: transparent !important;
  }
  
  @media screen and (max-width: 1024px) {
    .vs-hero-event-detail {
      padding: 0 80px;
    }
  }
  
  
  @media screen and (max-width: 768px) {
    .vs-hero-event-detail {
      padding: 3rem 20px;
      height: auto;
    }
  
    .vs-hero-event-detail__main-container {
      flex-direction: column;
      justify-content: center;
      gap: 3rem;
    }
  
    .vs-hero-event-detail__headers-container,
    .vs-hero-event-detail__button-section {
      width: 100%;
      align-items: center;
    }
  
    .vs-hero-event-detail__title {
      font-size: 1.5rem;
    }
  }
  