#section-19 {
   margin-top: 120px;
 }

 .data-amount {
   width: 325px;
   max-width: 100%;
   height: 325px;
   max-height: 100%;
   border-radius: 50%;
   background: var(--primary-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
 }

 .item-amount-financed {
   padding: 15px;

 }

 .bg-blue-amount {
   background: var(--secondary-color);
 }

 .amount-financed-wrapper {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 20px;
   margin-top: 66px;

 }

 .percentage-amount-financed {
   font-family: Gotham Rounded;
   font-size: 96px;
   font-weight: 500;
   color: var(--white);
   text-align: center;
 }

 .details-amount-financed {
   font-family: Gotham Rounded;
   font-size: 32px;
   font-weight: 400;
   color: var(--white);
   text-align: center;
 }

 .description-amount-financed {
   font-family: Gotham Rounded;
   font-size: 32px;
   font-weight: 400;
   color: var(--black);
   text-align: center;
   margin-top: 25px;
 }

 @media(max-width : 1100px) {
   .data-amount {
     width: 180px;
     height: 180px;
   }

   .percentage-amount-financed {
     font-size: 35px;
   }

   .details-amount-financed {
     font-size: 22px;
   }

   .description-amount-financed {
     font-size: 22px;
   }
 }

 @media(max-width :768px) {

   .amount-financed-wrapper {
     grid-template-columns: repeat(1, 1fr);


   }
 }
