 .c-netbenef {
     padding: 2rem 1rem;
 }

 .c-netbenef__principal {
     display: flex;
     justify-content: space-between;
     flex-direction: column;
     gap: 12px;
     max-width: 900px;
     margin: 0 auto;
 }

 .c-netbenef__box {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 1rem;
     max-width: 630px;
 }

 .c-netbenef__head {
     align-self: center;
     text-align: center;
 }

 .c-netbenef__head i {
     font-size: 150px;
     line-height: 10px;
     color: var(--c-net);
 }

 .c-netbenef__head i::before {
     line-height: 40px;
     vertical-align: middle;
 }

 .c-netbenef__title {
     font-size: 1.2rem;
     margin-bottom: 1rem;
 }

 .c-netbenef__item {
     padding: 8px 1rem;
     border-radius: 12px;
     background: #F5F5F5;
     text-align: center;
     width: 46%;
 }

 .c-netbenef__item i {
     font-size: 35px;
     color: var(--blue);
 }

 .c-netbenef__item p {
     font-size: .875rem;
     line-height: normal;
     font-family: var(--f3);
     font-weight: 400;
 }


 @media screen and (min-width: 768px) {
     .c-netbenef__principal {
         flex-direction: row;
     }

     .c-netbenef__item {
         max-width: 300px;
         width: 100%;
     }
 }