.nav__link {
  padding: 8px 30px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  display: block;
  border-bottom: 2px solid transparent;
}
.nav__link.is-active {
  border-color: #0d6efd;
  background-color: #0d6efd;
  border-radius: 5px;
  color: white;
}
.sortable__nav {
  display: flex;
  justify-content: center;
}
.phoneMenu {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phoneMenu > span {
  display: block;
  width: 19%;

  height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #ccc;
  border-radius: 10px;
}
.phoneMenu > span.phone-active {
  background: #0d6efd;
}
.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 2px 6px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
}
.hand {
  cursor: pointer;
}
.card__picture {
  display: block;
  width: 100%;
  height: auto;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.card__title {
  font-family: "myfont";
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}
.card__text {
  font-size: 14px;
  font-weight: 300;
  height: 50px;
  margin: 0;
  color: #86888a;
}
.card-infos {
  padding: 20px;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.card:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
}
