.slider {
    margin-top: 5rem;
    display: flex;

    gap: 20px;
}



.item hr {
    border: 1px solid #B9FE03;
    width: 90%; 
    margin: 1px 0;
  }

  .item h1 {
    color: black;
    font-size: 21px;
  }

  .item p {
    font-size: 18px;
  }

  .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.box:hover {
    transform: scale(1.1);
}

.box {
    width: 370px;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.box img {
    width: 122px;
    height: 122px;
}

.box h1 {
    font-size: 20px;
    color: black;
}

.box p {
    margin-top: 5px;
    font-size: 18px;
    text-align: center;
    color: rgb(85, 85, 85);
}

.box h1, .box p {
    margin: 2;
}
