.about-first5__card {
    position: static;
    padding: 30px 40px 20px 40px;
  }
  
  .about-first5 {
    background-color: var(--SECONDARY_MINOR_COLOR);
  }
  
  .about-first5__container {
    max-width: var(--CONTAINER_WIDTH);
    margin: 0px auto;
    padding: 32px 20px;
  }
  
  
  @media (min-width: 576px) {
    .about-first5__row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin: 0 -15px;
    }
  }
  
  .about-first5__row-item {
    margin-bottom: 30px;
  }
  
  @media (min-width: 576px) {
    .about-first5__row-item {
      margin: 0;
      padding: 20px 15px;
      flex: 0 1 50%;
    }
  }
  
  @media (min-width: 992px) {
    .about-first5__row-item {
      flex: 0 1 33.33333%;
    }
  }
  
  .about-first5__row-item:last-child {
    margin: 0;
  }
  
  .about-first5__card {
    box-shadow: 0px 0px 25px rgba(6, 40, 69, 0.15);
    background-color: var(--SECONDARY_MINOR_COLOR);
    border-radius: 15px;
  }
  
  .about-first5__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin-bottom: 20px;
    background-color: var(--EXTRA_COLOR);
  }
  
  @media (min-width: 576px) {
    .about-first5__icon {
      width: 70px;
      height: 70px;
      font-size: 35px;
    }
  }
  
  .about-first5__icon .bi,
  .about-first5__icon .fa,
  .about-first5__icon .fab,
  .about-first5__icon .fas {
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  .about-first5__card-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
    color: var(--SECONDARY_MAJOR_COLOR);
  }
  
  @media (min-width: 576px) {
    .about-first5__card-title {
      font-size: 24px;
    }
  }
  
  .about-first5__card-text {
    font-size: 18px;
    line-height: 140%;
    color: var(--TEXT_COLOR);
  }
  