section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* section background */
section.about,
section.pricing,
section.contact {
  background-color: var(--primary-color);
}
section.services,
section.book {
  background-color: #fff;
}
footer {
  background-color: #282828;
}

/* section padding */
section.about,
section.services,
section.pricing,
section.book,
section.contact,
footer {
  padding: 4rem 2rem;
}
@media screen and (max-width: 374px) {
  section.contact {
    padding: 4rem 1.5rem;
  }
}
@media screen and (max-width: 420px) {
  section.about,
  section.book {
    padding: 4rem 0rem;
  }
}

/* section showcase */
.showcase .title {
  display: flex;
  align-items: center;
}
.showcase .title h2 {
  margin-top: 2.7rem;
  margin-left: 1rem;
}
@media screen and (max-width: 520px) {
  .showcase .title {
    flex-direction: column;
  }
  .showcase .title h2 {
    margin-top: -.8rem;
  }
  .showcase p {
    margin-top: 1rem;
  }
}

/* section services */
section.services .service {
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0;
  margin-bottom: 2rem;
}
section.services .service h3 {
  margin-bottom: .5rem;
}
section.services .service p {
  color: #8e8e8e;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
}
section.services .btn {
  display: inline-block;
  border: none;
  background-color: var(--primary-color);
  color: var(--font-color);
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: opacity .5s ease;
}

/* section book */
section.book form input,
section.book form textarea {
  border-color: var(--primary-color);
  border-style:solid;
}

.calendar {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.calendar .head div:nth-child(2) {
  flex: 3;
}
.calendar .row div {
  flex: 1;
  /*border: 1px solid #333;*/
  font-size: 1.5rem;
  /*padding: 1rem;*/
}
.calendar .time .col > div {
  flex: 50%;
}

@media screen and (max-width: 320px) {
  .table td, .table th {
    padding: .25rem;
  }
}
@media screen and (min-width: 321px) and (max-width: 410px) {
  .table td, .table th {
    padding: .55rem;
  }
}

.book .head,
.book .week .row,
.book .date .row {
  margin-bottom: .5rem;
}

.book .time .gcol {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 50%;
}

.highlight {
  background-color: #A6756A;
  color: #fff;
}

.book .calendar .time > .row,
.book .calendar .form {
  transition: all .5s ease;
}
.h-auto {height: auto !important;}

@media screen and (max-width: 374px) {
  .book .calendar .row div {
    font-size: 1rem;
  }
}

/* section contact */
section.contact .timetable li {
  list-style: none;
  text-align: center;
}

section.contact .timetable li span {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.5rem;
}

section.contact .timetable li span:first-child {
  width: 100px;
}

section.contact .timetable li span:last-child {
  width: 130px;
}

@media screen and (max-width: 768px) {
  .col {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .col {
    flex-basis: 50%;
    max-width: 50%;
  }
}

.google-maps {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}