main img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

main li {
  list-style-type: disc;
  margin-left: 30px;
}

.img-block {
  width: 100%;
  max-width: 450px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.img-block img {
  width: 100%;
}

.img-block img:nth-of-type(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.img-block img:nth-of-type(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.img-block img:nth-of-type(3),
#care-for-yourself img,
#your-invitation img {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  border-radius: 1000px;
}

#above-the-fold {
  margin-top: 80px;
}

#above-the-fold .txt-block-left p:nth-of-type(1) {
  color: var(--primary);
  font-weight: 700;
}

#strip-one,
#strip-two,
#strip-three {
  width: 100%;
  padding: 40px 0;
  background: var(--gradient);
}

#strip-one .caption,
#strip-two h3,
#strip-three .caption {
  color: var(--white);
}

#strip-three .txt-block-left {
  width: 100%;
}

#your-future {
  position: relative;
}

#your-future::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 50%;
  transform: translateX(50%);
  width: 200px;
  height: 1px;
  border-radius: 100px;
  background-color: var(--secondary);
}

#your-future .txt-block-centre {
  margin-bottom: 60px;
}

#your-future .txt-block-left {
  border: 1px solid var(--secondary);
  border-radius: 10px;
  padding: 10px 20px;
}

span {
  font-weight: 700;
}

.calendar {
  width: 100%;
  height: 400px;
  background-color: var(--dark);
}

#booking .map {
  width: 100%;
  border-radius: 10px;
}

/* Shared desktop styles */
@media (min-width: 1100px) {
  #above-the-fold {
    margin-top: 20vh;
  }

  #above-the-fold .vertical-to-column,
  #right-tools .vertical-to-column,
  #your-invitation .vertical-to-column {
    flex-direction: row-reverse;
  }

  .img-block {
    width: 50%;
  }

  .calendar {
    width: 50%;
  }
}

form {
    width: 100%;
    /* margin-top: 20px; */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input,
form select,
form option,
form textarea{
    padding: 7.5px 12.5px;
    border: 1px solid var(--primary);
}

form input:not(:last-of-type),
form textarea {
    margin-bottom: 20px;
}

form input:last-of-type {
    width: max-content;
}