* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f7f7;
}

h2 {
  text-transform: uppercase;
}

.wrap {
  padding: 60px 0;
}

.header-section {
  height: 600px;
  /* background: #000; */
  background: url("./images/filler-bg.jpg") center center no-repeat;
  background-position-y: 60%;
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.header-section:before {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

.visit-wrap p {
  font-size: 2em;
}

img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.shadow {
  box-shadow: 0px 0px 20px 0px #333;
}

.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}

.section.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.half {
  flex-basis: 50%;
}

.blue {
  background: #2c82c5;
  color: #fff;
}

.gray {
  background: #11121c;
  color: #fff;
}

.button {
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 7px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.6rem;
}

.button:hover {
  background: #acacac;
  color: #000;
}

@media screen and (max-width: 1000px) {
  .section.flex {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section.flex > div {
    flex-basis: auto;
  }

  .blue .section.flex:last-child {
    flex-direction: column-reverse;
  }
}
