.display-xl-bold,
.heading-h1-bold,
.heading-h2-bold,
.heading-h4-bold {
  font-family: "CIBFontSans Bold", sans-serif;
  font-weight: 700;
}

.heading-h1-light,
.heading-h2-light,
.heading-h3-light,
.heading-h4-light,
.body-md-light {
  font-family: "CIBFontSans Light", sans-serif;
  font-weight: 200;
}

.heading-h2-regular {
  font-family: "CIBFontSans Regular", sans-serif;
  font-weight: 400;
}

.display-xl-bold {
  margin: 0;
  font-size: 50px;
  line-height: 55.35px;
  letter-spacing: -0.26px;
}

.body-md-light {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.26px;
}

.heading-h1-bold,
.heading-h1-light {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.6px;
}

.heading-h2-bold,
.heading-h2-regular,
.heading-h2-light {
  font-size: 32px;
  line-height: 34px;
  letter-spacing: -0.6px;
  vertical-align: middle;
}

.heading-h3-light {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.45px;
  vertical-align: middle;
}

.heading-h4-bold {
  font-size: 34px;
  line-height: 26px;
}

.heading-h4-light {
  font-size: 20px;
  line-height: 24px;
}

.small-regular {
  font-family: "CIBFontSans Light", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.2px;
  vertical-align: middle;
}

.small-semibold {
  font-family: "Open Sans SemiBold", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.2px;
}
.welcome-sections {
  width: 100%;
  height: calc(100vh - 127px);
  margin-top: -17px;
  display: flex;
  justify-content: space-between;
  background-color: #fafafa;
  gap: 40px;
  .content-information {
    width: 100%;
    padding: 0 10px 0 256px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .titles {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 64px;
    }

    .items_balance_availability {
      width: 100%;
      display: flex;
      gap: 56px;

      .card-item {
        width: 100%;
        max-width: 105px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;

        .title_card_balance_availability {
          font:
            400 15px "CIBFontSans Light",
            sans-serif;
          line-height: 100%;
          text-align: center;
        }
      }
    }
  }

  .image-container {
    display: flex;
    justify-content: flex-end;

    .image-mobile,
    .image-tablet {
      display: none;
    }
  }
  /* Tablet */
  @media (min-width: 768px) and (max-width: 1278px) {
    height: 100%;
    .content-information {
      padding: 0 10px 0 50px;
    }
    .image-desktop{
      width: 600px;
    } 
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    height: 100%;
    gap: 43px;
    .content-information {
      max-width: 525px;
      margin: 18px auto 0;
      padding: 0 10px;
    }
    .display-xl-bold {
      font-size: 30px;
      line-height: 100%;
      letter-spacing: -0.52px;
    }

    .body-md-light {
      font-size: 18px;
      font-weight: 400;
      letter-spacing: -0.5px;
    }

    .content-information {
      max-width: 313px;

      .items_balance_availability {
        gap: 10px;

        .card-item .title_card_balance_availability {
          font-size: 13px;
          letter-spacing: -0.35px;
        }
      }
    }

    .image-tablet {
      display: block !important;
      width: 100%;
      max-height: 400px;
      height: auto;
    }

    .image-desktop,
    .image-mobile {
      display: none;
    }
  }

  /* Mobile */
  @media (max-width: 767px) {
    height: 100%;
    margin-top: 0;
    padding-bottom: 32px;
    flex-direction: column;

    .display-xl-bold {
      font-size: 24px;
      line-height: 26px;
      letter-spacing: -0.45px;
    }

    .body-md-light {
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      letter-spacing: -0.2px;
    }

    .content-information {
      order: 2;
      padding: 0 43px;

      .titles {
        margin-bottom: 32px;
      }

      .items_balance_availability {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;

        .card-item {
          max-width: none;
          flex-direction: row;
          justify-content: flex-start;

          img {
            width: 24px;
            height: 21px;
          }
        }
      }
    }

    .image-container {
      order: 1;
      width: 100%;
      justify-content: center;

      .image-mobile {
        display: block;
        width: 100%;
        max-height: 350px;
        height: auto;
      }

      .image-desktop,
      .image-tablet {
        display: none;
      }
    }
  }
}
