.section h1,
.text-align--center {
  text-align: center;
}
.banner,
.customer-info,
.flex-display,
.gallery,
.menu-item {
  display: flex;
}
* {
  box-sizing: border-box;
  font-family: 'Work Sans', Arial, sans-serif;
  scroll-behavior: smooth;
}
h2 {
  text-decoration: underline;
  text-underline-offset: 8px;
}
a {
  text-decoration: none;
}
.margin--zero,
body {
  margin: 0;
}
section {
  padding: 0 12px 42px;
}
footer {
  background-color: #f6f9fc;
}
blockquote {
  color: gray;
}
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: #333333;
  color: white;
}
.banner {
  background-image: url(./img/landing_backdrop.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo {
  border: 10px double #fff;
  padding: 24px;
  width: 449px;
  margin-bottom: 96px;
}
.arrow-text {
  color: #fff;
}
.arrow-wrapper {
  cursor: pointer;
  position: absolute;
  top: 80%;
}
.arrow,
.arrow:before {
  top: 50%;
  border-left: none;
  border-top: none;
}
.arrow-container {
  position: relative;
}
.arrow,
.arrow:before {
  position: absolute;
  left: 50%;
}
.arrow {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  -webkit-transform: rotate(45deg);
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.arrow:before {
  content: '';
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrow;
}
.section {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 64px;
}
.section h1 {
  font-size: 2em;
}
.half-column {
  width: 50%;
}
.half-column:first-of-type {
  padding-right: 36px;
}
.half-column:nth-of-type(2) {
  padding-left: 36px;
}
.menu-item {
  justify-content: space-between;
}
.gallery-item-wrap-33 {
  width: 33%;
  height: 350px;
  padding: 2px;
}
.gallery-item-wrap-50 {
  width: 50%;
  height: 300px;
  padding: 2px;
}
.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-text {
  color: #778899;
}
.h1--horizontal-rule {
  display: flex;
  flex-direction: row;
}
.h1--horizontal-rule:after,
.h1--horizontal-rule:before {
  content: '';
  flex: 1 1;
  border-bottom: 1px solid;
  margin: auto;
}
.h1--horizontal-rule:before {
  margin-right: 10px;
}
.h1--horizontal-rule:after {
  margin-left: 10px;
}
.customer-card {
  min-height: 300px;
  padding: 24px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 12px;
}
.customer-img {
  border-radius: 80px;
}
.customer-info {
  flex-direction: column;
  align-items: center;
}
@keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -10px);
  }
}
@media only screen and (max-width: 768px) {
  .logo {
    width: 300px;
  }
  .flex-direction-column-xs,
  .gallery {
    flex-direction: column;
  }
  .gallery-item-wrap-33 {
    width: 100%;
    height: auto;
  }
  .gallery-item-wrap-50 {
    width: 100%;
  }
  .full-column-xs {
    width: 100%;
    padding: 0 !important;
  }
  .half-column:first-of-type {
    padding-right: 12px;
  }
  .half-column:nth-of-type(2) {
    padding-left: 12px;
  }
}
