.hero{
    min-height: 120vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -120px;
    background-size: cover;
    position: relative;

}


.hero h1{
    font-family: "Poppins", sans-serif;
font-weight: 700;
font-weight: Bold;
font-size: 72px;
line-height: 120%;

}
.hero  p{
  font-family: "Poppins", sans-serif;
font-weight: 400;

font-size: 20px;
line-height: 180%;
letter-spacing: 1%;
 color: #D4D4D4;

}
.btn{
    font-family: "Poppins", sans-serif;
font-weight: 700;
font-weight: Bold;
font-size: 14px;
line-height: 24px;
letter-spacing: 0%;
background: linear-gradient(94.66deg, #FF8593 -14.8%, #FFBE5C 104.93%);
width: 178px;
height: 56px;
border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}
.btn:hover{
    opacity: 0.7;
}


@media (max-width:768px){
      .hero h1{
      font-size: 32px;
    }
    .hero p{
        font-size: 16px;
    }
    .hero{
              min-height: 500px;
              flex-wrap: unset;
    }
}

.hero__arrow {
  cursor: pointer;
  display: inline-block;      
      position: absolute;
    bottom: 10vh;
    left: 50%;     z-index: 9999;
}

.hero__arrow svg {
  transform: rotate(180deg);   
  transform-origin: center;     
  transition: transform 200ms; 
}

.hero__arrow:hover svg,
.hero__arrow:focus-within svg {
  transform: rotate(180deg) translateY(2px); 

}
.hero__arrow:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}


@media (prefers-reduced-motion: reduce) {
  .hero__arrow svg {
    transition: none;
  }
}
