
.trial-hero-section {
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.trial-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/homePageimg/lines-top-left-dark-v2.svg');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: 0;
  opacity: 0.8;
}

.trial-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/homePageimg/line-bottom-right-dark-v2.svg');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: 0;
  opacity: 0.8;
}

.trial-hero-section .container {
  position: relative;
  z-index: 1;
}


@media (max-width: 992px) {
  .trial-hero-section::before,
  .trial-hero-section::after {
    background-size: 50% auto;
  }
}

@media (max-width: 768px) {
  .trial-hero-section::before,
  .trial-hero-section::after {
    background-size: 40% auto;
  }
}