
 #section-20 {
   margin-top: 96px;
 }

 .item-step-benefit {
   padding: 20px;
   border-radius: var(--border-radius-40);
   display: flex;
   gap: 38px;
   align-items: center;
   background: rgba(248, 198, 225, 30%);

 }

 .step-benefit-wrapper {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin: 75px 0;
 }

 .number-step {
   background: var(--primary-color);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   width: 94px;
   height: 94px;
   border-radius: 50%;
 }

 .number-step p {
   font-family: Gotham Rounded;
   font-size: 64px;
   line-height: 1;
   font-weight: 500;
   color: var(--white);
   text-align: center;
   margin-bottom : 0 !important
 }

 .text-step-benefit {
   font-family: Gotham Rounded;
   font-size: 28px;
   font-weight: 400;
   color: var(--black);
   text-align: left;
 }

 .btn-section-20 {
   display: flex;
   justify-content: space-evenly;
   align-items: center;
   width: 605px;
   max-width: 100%;
   margin: 0 auto;
 }

 .bg-arrow-blue {
   background-color: var(--secondary-color) !important;
 }

 @media(max-width : 768px) {
   .text-step-benefit {
     font-size: 20px;
   }

   .number-step {
     width: 75px;
     height: 75px;
   }

   .number-step p {
     font-size: 40px;
   }
 }

 @media(max-width : 576px) {
   .item-step-benefit {
     flex-direction: column;
     align-items: center;
   }

   .text-step-benefit {
     text-align: center;
   }

   .item-step-benefit {
     gap: 20px;

   }
 }
