.imageSection {
  padding: 20px 40px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .imageSection {
    padding: 20px;
  }
}
.imageLink {
  width: 100%;
  max-width: 330px;
  height: 330px;
  border-radius: 30px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: center;
  background-image: url(../../img/index/booking_link.jpg);
  background-size: cover;
  background-position: left 50% top 30%;
  background-repeat: no-repeat;
  position: relative;
}
.imageLink > h4 {
  text-align: center;
  font-size: var(--button-font-size);
  padding: 0 10px;
}
@media screen and (min-width: 800px) {
  .imageLink {
    max-width: 100%;
    height: 490px;
    background-position: center;
  }
  .imageLink > h4 {
    font-size: var(--subtitle-font-size);
  }
}
.imageLink > p {
  color: var(--spaWhite);
  display: block;
  width: 100%;
  max-width: 900px;
  text-align: center;
}
.imageLink > .buttonLink {
  background-color: #0000007a;
  color: var(--spaWhite);
  border-color: var(--spaWhite);
}
.buttonWithLineContainer {
  width: 100%;
  position: relative;
  height: 40px;
}
.buttonWithLineContainer > .buttonLink {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.buttonWithLineContainer > .buttonBackground {
  height: 40px;
  width: 450px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--spaWhite);
  z-index: 2;
}
.buttonWithLineContainer > .bodyLineContainer {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
