.flex-container {
    width: 100%;
    display: flex;
    height: auto;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #254f86;
    align-content: space-between;
    flex-wrap: wrap;
  
  }
  
  .flex-item {
    width: 100%;
    display: flex;
    margin: 10px;
    flex-wrap: wrap;
  }
  
  .flex-div {
    width: 250px;
    height: 350px;
    background-color: #fff;
    border-radius: 10px;
    margin: 10px;
  }
  
  .flex-div  img:first-child {
    width: auto;
    height: 250px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }