/* Styling for the hero section */

/* images banner start */
.images-header-banner {
  padding: 120px 20px;
  background-color: black;
}

.image-header-text-header {
  font-size: 38px;
  font-weight: bold;
  color: #2fbcbb;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.image-body-text {
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* images banner end */

/* Styling for the text and links */
.help-with-header {
  font-size: 36px;
  color: #2fbcbb;
  font-weight: bold;
}

.help-brand-title {
  text-decoration: underline;
  font-size: 30px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.help-brand-text {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.show-element {
  opacity: 1;
  transform: translateY(0);
}
.help-banner {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
  background-color: white;
  padding: 120px 20px;
}

.help-banner.show {
  opacity: 1;
  transform: translateY(0);
}

/* Brief banner start */
.touch-banner {
  padding: 120px 20px;
  background-color: black;
}

.touch-text {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.touch-line {
  color: #2fbcbb;
  font-size: 22px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

@media (max-width: 766px) {
  .touch-line {
    font-size: 16px;
  }
}
.show-element {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 767px) {
  .hero-subtitle {
    max-width: 75%;
  }
}
/* Brief banner end */

.help-with-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
  background-color: white;
}

.help-with-section.show {
  opacity: 1;
  transform: translateY(0);
}

.header-and-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 18%;
  padding-right: 10%;
}

.help-with-header {
  font-size: 24px;
  color: #2fbcbb;
  margin: 0;
}

.image-gallery-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.image-gallery {
  display: flex;
  transition: transform 0.3s ease-in-out;
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* padding-left: 10%; Disabled for now. */
}

.image-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-image {
  margin: 0 10px;
  flex-shrink: 0;
  object-fit: cover;
}

.scroll-buttons {
  display: flex;
  gap: 5px;
}

.scroll-button {
  background-color: white;
  color: black;
  border-radius: 8px;
  border-width: 1px;
  border-color: #2fbcbb;
  width: 50px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0px 0px 10px #2fbcbb;
}

.scroll-button:hover {
  background-color: #2fbcbb;
  color: white;
  border-color: white;
}

.scroll-button:focus {
  outline: none;
}
