.page-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 1s max-height;
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  min-height: 0;
  min-width: 0;
}

/* ================================================================================ */
/* Header */
/* ================================================================================ */

.marquee-bar-wrapper {
  background: #ef7c83;
  font-size: 130px;
  overflow: hidden;
  white-space: nowrap;
  height: 123px;
  display: none;
}

.marquee-bar-text {
  font-family: "NeuePlak", serif;
  margin-top: -53px;
}

.marquee-bar {
  position: relative;
  display: flex;
  gap: 20px;
  flex-flow: row;
}

.marquee-bar.animate {
  animation: marquee 50s linear infinite;
}

@media screen and (max-width: 768px) {
  .marquee-bar-wrapper {
    font-size: 80px;
    height: 75px;
    padding-top: 20px;
  }

  .marquee-bar.animate {
    animation: marquee 15s linear infinite;
  }
}

@media screen and (max-width: 540px) {
  .marquee-bar.animate {
    animation: none;
  }
  .column.sacrifice-on-mobile {
    display: none;
  }
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.marquee-bar-text.blue {
  color: var(--zz-purple);
}

.marquee-bar-text.white {
  color: white;
}

/* ================================================================================ */
/* Main */
/* ================================================================================ */
.columns-wrapper {
  display: flex;
  flex-flow: row;
  overflow-x: auto;
  overflow-y: hidden;
  transition: 1s transform;
  scroll-behavior: smooth;
}

.column {
  background: white;
  display: flex;
  flex-flow: column;
  min-width: 470px;
  text-align: center;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

.column.grey {
  background-color: var(--gray);
}

.column.green {
  background-color: var(--zz-green);
}

.column.about {
  background: rgb(255, 225, 0);
  background: -webkit-linear-gradient(
    277deg,
    rgba(255, 225, 0, 1) -2%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -moz-linear-gradient(
    277deg,
    rgba(255, 225, 0, 1) -2%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    277deg,
    rgba(255, 225, 0, 1) -2%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    173deg,
    rgba(255, 225, 0, 1) -2%,
    rgba(255, 255, 255, 1) 100%
  );
}

.column.about .sections a {
  text-decoration: none;
}

.column-title {
  font-size: 30px;
  width: 100%;
  padding: 16px 0 12px;
  letter-spacing: 1.67px;
  text-decoration: none;
}

.column-title.white {
  background: white;
}

.column-title.purple {
  background: var(--zz-purple);
  color: white;
}

.sections {
  display: flex;
  flex-flow: column;
  gap: 30px;
  align-items: center;
  padding-bottom: 40px;
}

.section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 60px;
  display: block;
  white-space: normal;
  word-break: break-word;
  font-family: "ITCFranklinGothicStd-Demi", serif;
  padding: 30px 30px 0;
  letter-spacing: 1px;
}

.section-title-2 {
  font-size: 60px;
  display: block;
  padding: 0 30px;
  white-space: normal;
  word-break: break-word;
  font-family: "NeuePlak", serif;
  letter-spacing: 2px;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: 10px;
}

.section-subtitle {
  font-size: 30px;
  padding: 0 30px;
  font-family: "ITCFranklinGothicStd-Demi", serif;
  letter-spacing: 1px;
}

.section-image-wrapper {
  height: 220px;
}

.section-image {
  height: 100%;
  max-width: 100%;
}

.caption-title {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.caption {
  font-family: "ITCFranklinGothicLTPro-Dm", serif;
  font-size: 15px;
  letter-spacing: 1px;
}

.section-content {
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.paragraph {
  font-size: 16px;
  padding: 0 30px;
  line-height: 30px;
  letter-spacing: 1.11px;
}

.section-button {
  background: white;
  border-radius: 30px;
  border: 0;
  height: 30px;
  min-width: 210px;
  color: #ff5a64;
  font-size: 15px;
  cursor: pointer;
  font-family: ITCFranklinGothicLTPro-Bk, serif;
  padding-top: 2px;
}

.appointments {
  list-style: none;
  margin-top: 30px;
  padding: 0 30px;
}

.appointment-item {
  display: flex;
  flex-flow: row;
  gap: 30px;
  align-items: start;
}

.appointment-date {
  font-size: 20px;
  background: white;
  border-radius: 30px;
  padding: 5px 20px 1px 20px;
}

.appointment-text {
  font-size: 20px;
  line-height: 30px;
}

.newsletter {
  font-size: 30px;
  letter-spacing: 1.67px;
}

.about-newsletter {
    padding-bottom: 100px;
}

.small-paragraph {
  font-size: 15px;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
  line-height: 1.6;
  letter-spacing: 0.83px;
}

.textbox-wrapper {
  display: flex;
  flex-flow: row;
  gap: 10px;
  align-items: center;
  flex-flow: column;
}

.textbox {
  background: white;
  border: 0;
  height: 60px;
  font-size: 21px;
  border-radius: 30px;
  width: 350px;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
  text-align: center;
  padding: 3px 30px 0;
  letter-spacing: 1.4px;
}

.textbox-button {
  background: var(--zz-purple);
  color: white;
  border-radius: 30px;
  height: 30px;
  padding: 3px 10px 0;
  cursor: pointer;
  width: 45px;
  margin-left: 15px;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
  border: 0;
  letter-spacing: 1.4px;
}

.email-error {
  color: red;
}
