.service-book {
  width: 100%;
  margin: 10px auto 40px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.25em;
}

.service-info {
  text-align: left;
  color: var(--medium);
  line-height: 1.4;
  font-weight: 600;
}

.service-duration > span,
.service-price > span {
  font-size: 0.85em;
  color: var(--dark);
  font-weight: 300;
  margin-left: 5px;
}

.service-text {
  font-size: 0.85em;
  color: var(--dark);
  font-weight: 300;
}

.booking-link {
  border: 2px solid var(--medium);
  padding: 15px 35px;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 120%;
  margin: 0px 30px;
  min-width: 220px;
}

.booking-link:hover {
  background-color: var(--dark);
  color: white;
}

@media screen and (max-width: 1000px) {
  .service-book {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25em;
  }

  .booking-link {
    margin-top: 30px;
    width: 100%;
  }
}
