.status-cards {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* padding: 20px 150px; */
    width: 100%;
    flex-wrap: wrap;
    gap: 70px;
    /* border: 1px solid red; */
  }
  
  .status-cards .status-card {
    
    width: 300px;
    height: 300px;
    color: var(--white-color);
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    transition: all 1s;
    animation: float 5s infinite forwards;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  .status-cards .left {
    border: 1px solid var(--achieved-left-card-border-color);
    background: var(--achieved-left-card-color);
    animation: float 5s infinite backwards reverse;
  }
  
  .status-cards .right {
    border: 1px solid var(--achieved-right-card-border-color);
    background: var(--achieved-right-card-color);
  }
  
  .status-card span {
    height: 50%;
    font-size: 70px;
    display: flex;
    align-items: center;
    font-weight: bolder;
    /* border: 1px solid red; */
  }
  
  .status-card h1 {
    text-align: center;
    font-size: 25px;
    text-wrap: wrap;
    width: 70%;
    height: 25%;
    text-align: center;
    /* border: 1px solid red; */
  }
  
  .status-cards .left:hover {
    scale: calc(110%);
    box-shadow: 0px 0px 100px var(--achieved-left-card-shadow-color);
    transition: all 1s;
  }
  
  .status-cards .right:hover {
    scale: calc(110%);
    box-shadow: 0px 0px 100px var(--achieved-right-card-shadow-color);
    transition: all 1s;
  }

  
  /* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {

    .achived .status-cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
       /* border: 1px solid red;  */
      }
    
      .achived .status-cards .status-card {
        width: 250px;
        height: 250px;
      }
    
      .status-card span {
        /* width: 50%; */
        /* height: 60%; */
        /* margin: 0 20px; */
        font-size: 40px;
        font-weight: bolder;
        /* border: 1px solid red; */
      }
    
      .status-card h1 {
        font-size: 17px;
        width: 50%;
        /* border: 1px solid red; */
      }
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {

    .status-cards {
        justify-content: center;
        align-items: center;
        align-content: center;
       }
      
}