.box {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  /*box-shadow: 0px 0px 10px var(--colorthree);*/

  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 240px;
  transition: transform 0.5s ease-in-out;
  position: relative;
}

.box:hover {
  transform: scale(1.1);
}
/*
.box::after {
  content: ' <i class=" fa fa-phone-square " aria-hidden=" true "></i>  ';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--colorthree);
  border: 1px solid var(--black);
  position: absolute;
  right: -15px;
  bottom: -15px;
}
*/
.box-apel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--colorthree);
  border: 1px solid var(--black);
  position: absolute;
  right: -15px;
  bottom: -15px;
}

.box-apel i {
  color: var(--black);
  font-size: 25px;
  font-weight: 700;
  animation: spin 10s linear infinite;
}

.box-picture {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.box-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.box-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.box-description {
  font-size: 16px;
  color: grey;
}

/* reguli CSS pentru dispozitive mobile */
@media (max-width: 767px) {
  .box {
    width: 250px;
    margin-bottom: 25px;
  }
}
