

/* =========================================================
   NEOFUNS ABOUT PAGE
   TEAM GROUP PHOTO CTA
   ========================================================= */

.neofuns-team-cta {

  position: relative;

  width: 100%;

  min-height: 430px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 60px 20px;

  box-sizing: border-box;

  overflow: hidden;

  background-image: url("//ueeshop.ly200-cdn.com/u_file/UPAZ/UPAZ216/2608/13/photo/Neofunspeople.jpeg");

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;
}


/* =========================================================
   DARK IMAGE OVERLAY
   ========================================================= */

.neofuns-team-cta-overlay {

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.22);

  z-index: 1;
}


/* =========================================================
   CONTENT BOX
   ========================================================= */

.neofuns-team-cta-content {

  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 560px;

  padding: 38px 45px;

  box-sizing: border-box;

  text-align: center;

  background: rgba(255, 255, 255, 0.94);
}


/* =========================================================
   H2
   PC: 42px
   ========================================================= */

.neofuns-team-cta-content h2 {

  margin: 0 0 14px;

  font-size: 42px;

  line-height: 1.2;

  font-weight: 600;

  color: #111;

  letter-spacing: -0.3px;
}


/* =========================================================
   DESCRIPTION
   PC: 17px
   ========================================================= */

.neofuns-team-cta-content p {

  max-width: 480px;

  margin: 0 auto 25px;

  font-size: 17px;

  line-height: 1.65;

  font-weight: 400;

  color: #555;
}


/* =========================================================
   BUTTON CONTAINER
   ========================================================= */

.neofuns-team-cta-buttons {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;
}


/* =========================================================
   BUTTON
   ========================================================= */

.neofuns-team-cta-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 175px;

  min-height: 48px;

  padding: 0 22px;

  box-sizing: border-box;

  border-radius: 24px;

  background: #111;

  color: #fff;

  text-decoration: none;

  font-size: 13px;

  line-height: 1;

  font-weight: 600;

  letter-spacing: 0.3px;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}


/* =========================================================
   BUTTON HOVER
   ========================================================= */

.neofuns-team-cta-btn:hover {

  background: #004297;

  color: #fff;

  transform: translateY(-2px);
}


/* =========================================================
   BUTTON FOCUS
   Accessibility
   ========================================================= */

.neofuns-team-cta-btn:focus-visible {

  outline: 2px solid #004297;

  outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .neofuns-team-cta {

    min-height: 400px;

    padding: 50px 24px;
  }


  .neofuns-team-cta-content {

    max-width: 520px;

    padding: 34px 35px;
  }


  .neofuns-team-cta-content h2 {

    font-size: 34px;
  }


  .neofuns-team-cta-content p {

    font-size: 16px;
  }

}


/* =========================================================
   MOBILE
   <= 767px
   ========================================================= */

@media (max-width: 767px) {

  .neofuns-team-cta {

    min-height: 450px;

    padding: 35px 18px;

    background-position: center center;
  }


  .neofuns-team-cta-content {

    width: 100%;

    max-width: 500px;

    padding: 28px 20px;
  }


  /* -----------------------------------------
     H2
     Mobile: 28px
     ----------------------------------------- */

  .neofuns-team-cta-content h2 {

    margin-bottom: 10px;

    font-size: 28px;

    line-height: 1.25;
  }


  /* -----------------------------------------
     DESCRIPTION
     Mobile: 14px
     ----------------------------------------- */

  .neofuns-team-cta-content p {

    margin-bottom: 20px;

    font-size: 14px;

    line-height: 1.65;
  }


  /* -----------------------------------------
     BUTTONS
     ----------------------------------------- */

  .neofuns-team-cta-buttons {

    width: 100%;

    flex-direction: column;

    gap: 9px;
  }


  .neofuns-team-cta-btn {

    width: 100%;

    min-height: 44px;

    font-size: 12px;

    border-radius: 22px;
  }

}


/* =========================================================
   SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  .neofuns-team-cta {

    min-height: 420px;

    padding: 30px 14px;

    background-position: center center;
  }


  .neofuns-team-cta-content {

    padding: 25px 18px;
  }


  .neofuns-team-cta-content h2 {

    font-size: 24px;
  }


  .neofuns-team-cta-content p {

    font-size: 14px;

    line-height: 1.6;
  }


  .neofuns-team-cta-btn {

    min-height: 44px;

    font-size: 12px;
  }

}


/* =========================================================
   REDUCE MOTION
   Accessibility
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .neofuns-team-cta-btn {

    transition: none;
  }

}

