/*Variables*/
@keyframes smoothBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
#lgh .page-wrapper header .panel {
  display: none;
}
#lgh .page-wrapper .wrapper article {
  margin-bottom: 0;
  padding-bottom: 0;
}
#lgh .page-wrapper .wrapper article main {
  padding-bottom: 0;
}
#lgh .page-wrapper #selfHelpPage .sh-container .sh-content {
  margin-top: 5rem;
}
#lgh .page-wrapper #selfHelpPage .sh-container .sh-content .sh-img {
  height: 300px;
  animation: smoothBounce 1.5s ease-in-out infinite;
}
#lgh .page-wrapper #selfHelpPage .sh-container .sh-content .sh-img:hover {
  animation-play-state: paused;
}
#lgh .page-wrapper #selfHelpPage .sh-container .sh-content .sh-title {
  font-size: 2.5rem;
  margin: 1rem 0;
}
#lgh .page-wrapper #selfHelpPage .sh-container .sh-content .sh-text {
  font-size: 1rem;
  line-height: 1.5;
}
#lgh .page-wrapper #selfHelpPage .sh-container .sh-content .sh-text span {
  color: #b0aa00;
}
/* Responsive adjustments */
@media screen and (min-width: 768px) {
  #lgh .page-wrapper .lgh-wave {
    margin-top: -3rem;
  }
  #lgh .page-wrapper #selfHelpPage .sh-container .sh-content .sh-text {
    margin: auto;
    max-width: 60%;
  }
}
@media screen and (min-width: 992px) {
  body .header.content .logo {
    width: 50%;
  }
  #lgh .page-wrapper .nav-sections {
    display: none;
  }
  #lgh .page-wrapper #selfHelpPage .sh-container .sh-content {
    margin-top: 3rem;
  }
  #lgh .page-wrapper .lgh-wave {
    margin-top: -4.5rem;
  }
}
