
.neofuns-today,
.neofuns-today *{
  box-sizing:border-box;
}

.neofuns-today{
  width:100%;
  padding:70px 0;
  background:#f7f7f7;
  color:#111;
  overflow:hidden;
}

.neofuns-today-inner{
  max-width:1280px;
  margin:auto;
  padding:0 30px;
}

/* Header */

.neofuns-today-header{
  max-width:850px;
  margin:0 auto 55px;
  text-align:center;
}

.neofuns-today-label{
  margin-bottom:15px;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  color:#004297;
  text-transform:uppercase;
}

.neofuns-today h2{
  margin:0 0 18px;
  font-size:42px;
  line-height:1.2;
}

.neofuns-today-intro{
  margin:auto;
  font-size:18px;
  line-height:1.7;
  color:#555;
}


/* Cards */

.neofuns-process{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.neofuns-card{
  position:relative;
  min-height:420px;
  padding:38px;
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:16px;
  overflow:hidden;
  transition:.3s ease;
}

.neofuns-card:last-child{
  grid-column:span 2;
}

.neofuns-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}


/* Number */

.neofuns-number{
  position:absolute;
  right:25px;
  top:20px;
  font-size:55px;
  font-weight:800;
  color:#f1f3f6;
}


/* Content */

.neofuns-content{
  position:relative;
  z-index:2;
  transition:.35s ease;
}

.neofuns-icon{
  width:50px;
  height:50px;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#004297;
  color:#fff;
  font-weight:700;
}


.neofuns-card h3{
  margin:0 0 14px;
  font-size:24px;
}

.neofuns-card p{
  margin:0 0 20px;
  font-size:16px;
  line-height:1.7;
  color:#555;
}


.neofuns-list{
  margin:0;
  padding:0;
  list-style:none;
}

.neofuns-list li{
  position:relative;
  padding-left:16px;
  margin-bottom:8px;
  font-size:14px;
}

.neofuns-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#004297;
}


/* Image */

.neofuns-image{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:scale(1.05);
  transition:.45s ease;
}

.neofuns-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}


.neofuns-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.1)
  );
}


.neofuns-image-title{
  position:absolute;
  left:30px;
  bottom:25px;
  color:#fff;
  font-size:14px;
  font-weight:700;
  z-index:2;
}


/* PC Hover */

@media(min-width:901px){

.neofuns-card:hover .neofuns-content{
  opacity:0;
}

.neofuns-card:hover .neofuns-number{
  opacity:0;
}

.neofuns-card:hover .neofuns-image{
  opacity:1;
  visibility:visible;
  transform:scale(1);
}

}


/* Mobile */

@media(max-width:900px){

.neofuns-process{
  grid-template-columns:1fr;
}

.neofuns-card,
.neofuns-card:last-child{
  grid-column:auto;
}

}


@media(max-width:600px){

.neofuns-today{
 padding:45px 0;
}

.neofuns-today-inner{
 padding:0 16px;
}

.neofuns-today h2{
 font-size:28px;
}

.neofuns-today-intro{
 font-size:15px;
}

.neofuns-card{
 min-height:390px;
 padding:25px 20px;
}

.neofuns-card h3{
 font-size:20px;
}

.neofuns-card p{
 font-size:14px;
}

}
