/* WPForms fixes */
/* Initial field looks */
.wpforms-container input[type=date], .wpforms-container input[type=datetime], .wpforms-container input[type=datetime-local], .wpforms-container input[type=email], .wpforms-container input[type=month], .wpforms-container input[type=number], .wpforms-container input[type=password], .wpforms-container input[type=range], .wpforms-container input[type=search], .wpforms-container input[type=tel], .wpforms-container input[type=text], .wpforms-container input[type=time], .wpforms-container input[type=url], .wpforms-container input[type=week], .wpforms-container select, .wpforms-container textarea {
  background: #fff;
  border-width: 0 0 1px 0;
  color: var(--ast-global-color-2);
  opacity: 0.5;
  /* On focus */
}
.wpforms-container input:focus, .wpforms-container select:focus, .wpforms-container textarea:focus {
  outline: none;
  opacity: 1;
  border-color: var(--ast-global-color-0);
  /* Don't allow resizing the Message box */
}
.wpforms-container textarea {
  resize: none;
  /* Message box fixed height */
}
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
  height: 136px;
  /* Button size & font size */
}
.wpforms-container button {
  padding: 15px 34px;
  font-size: 15px;
  /* WPForms done */
  /* Footer 2 big columns on sides and 1 small one in the middle */
}
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
  grid-template-columns: 3fr 1fr 3fr;
}
.section {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.scroll {
  width: 100%;
  display: flex;
}
.scroll div {
  background-color: black;
  color: white;
  font-size: 4em;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  animation: animate 30s linear infinite;
}
.scroll div span {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.scroll.text {
  transform: rotate(-5deg) translateY(200px) translateX(-20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}
@keyframes animate {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@media only screen and (max-width: 768px) {
  .section {
    height: 35vh;
  }
  .scroll div {
    font-size: 2.7em;
  }
  .scroll.text {
    transform: rotate(-5deg) translateY(150px) translateX(-80px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  }
}
@media only screen and (max-width: 360px) {
  /* Apply this CSS to your header element */  .scroll div {
    font-size: 2em;
  }
}
.header {
  position: sticky;
  top: 0;
  /* Change the background color as needed */
  background-color: #fff;
  /* Adjust the z-index to control stacking order */
  z-index: 100;
  /* Add shadow if desired */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  /* Add styles to your header elements (logo, navigation, etc.) */
}
