.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: self-end;
    justify-content: center;
    padding: 40px 0px;
    box-sizing: border-box;
}

.hero-content {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px
}

.hero-text {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #4B4D53;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17.25px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #59CAD9;
  border-radius: 26px;
  padding: 17px 43px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #47b5c3;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text {
    font-size: 26px;
  }

  .hero-button {
    font-size: 16px;
    padding: 14px 20px;
  }
}
.arrow-down {
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid rgb(64,184,199,0.4);
	display: inline-block;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}

@media screen and (max-width: 767px){
    .arrow-down {
        pointer-events: auto !important;
        opacity: 1 !important;
        cursor: pointer;
        z-index: 98;
    }
}
body.scrolled .arrow-down{
  opacity: 0 !important;
  pointer-events: none !important;
}