/* Mobile Section */
.hero-section {
    position:relative;
    display: flex;
    flex-direction:column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 500px;
    /* height:auto; */
    overflow: hidden;
    background-image: url("../pictures/arnaldo.jpg");
    background-size: cover;
    background-position: 80% 30%;
    color: white;
  }

  .hero-text {
    flex: 0 0 auto;
    max-width: 50%;
    margin-top: 5%;
    padding-left: 5%;
    color: #103770;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }

  .hero-section h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
  }

  .hero-payoff{
    background-color:rgba(255, 232, 189, 0.6);
    padding: 10px;
    font-size: 1.3rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: fit-content;
  }

  .hero-section-mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align:center;
  }

  .hero-text-mobile{
    opacity: 1;
    visibility: visible;
    padding: 1rem;
  }

  .hero-text-mobile h1{
    color: #103770;
    font-size: 3rem;
  }

  .hero-text-mobile h4{
    color: #232323;
    font-style: italic;
  }


/* Desktop Section */
  @media (min-width: 992px) {
    .hero-section {
      width: 992px;
      margin: 0 auto;
      background-size: cover;
      background-repeat: no-repeat;

    }
  
    .hero-text {
      opacity: 1;
      visibility: visible;
    }

    .hero-section-mobile{
      display:none;
    }
}