.favorite-btn[data-v-b657bff4] {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
}.services {
  padding-bottom: 60px;
  width: 100%;
}
.services .top {
  margin-bottom: 20px;
  gap: 20px;
}
.services .top .title {
  margin-top: 0;
}
.services .q-list {
  display: grid;
  /* TODO: check next in future */
  /*grid-template-columns: repeat(4, 1fr);
  gap: 20px;*/
}
.services .q-item {
  flex-direction: column;
}
.services .q-item:hover img {
  transform: scale(1.05);
}
.services__top {
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
  z-index: 1;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: start;
  align-items: flex-end;
}
.services__img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services__img .q-img {
  height: 100%;
}
.services__img img {
  transition: all 0.3s linear;
}
.services__title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.services__info {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}
.services__info svg {
  min-width: 18px;
}
.services__location {
  color: #858790;
}
@media (max-width: 1080px) {
.services .q-list {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.services .top {
    margin-bottom: 15px;
    justify-content: space-between;
}
.services .q-list {
    padding-bottom: 10px;
    display: flex;
    overflow-x: auto;
}
.services .q-item a {
    width: 260px;
}
.services__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}
.services__info {
    font-size: 15px;
    font-weight: 400;
}
}