















/* ============================================================
   CELEBRATION CHURCH
   CONTACT PAGE
   Page-specific stylesheet
============================================================ */


/* ============================================================
   VARIABLES
============================================================ */

.contact-page {
  --contact-red: #06699A;
  --contact-black: #000000;
  --contact-charcoal: #282828;
  --contact-white: #ffffff;
  --contact-off-white: #f7f5f2;
  --contact-soft: #f8eaea;
  --contact-border: rgba(0, 0, 0, 0.12);
  --contact-muted: #777777;
  --contact-dark-muted: #a7a7a7;

  --contact-container: 1240px;

  --contact-display: "Bebas Neue", Impact, sans-serif;
  --contact-body: "DM Sans", Arial, sans-serif;
}


/* ============================================================
   GLOBAL PAGE RESET
============================================================ */

.contact-page {
  margin: 0;
  padding: 0;
  background: var(--contact-white);
  color: var(--contact-black);
  font-family: var(--contact-body);
  overflow-x: hidden;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
  box-sizing: border-box;
}

.contact-page img {
  max-width: 100%;
  display: block;
}

.contact-page a {
  color: inherit;
  text-decoration: none;
}

.contact-page button,
.contact-page input,
.contact-page textarea,
.contact-page select {
  font: inherit;
}

.contact-page button {
  cursor: pointer;
}

.contact-page section {
  position: relative;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p {
  margin-top: 0;
}

.contact-page p {
  line-height: 1.7;
}


/* ============================================================
   ACCESSIBILITY
============================================================ */

.contact-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   CONTAINER
============================================================ */

.contact-page .contact-container {
  width: min(
    calc(100% - 80px),
    var(--contact-container)
  );

  margin-inline: auto;
}


/* ============================================================
   HEADER
============================================================ */

.contact-page .contact-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  color: var(--contact-white);

  background: rgba(0, 0, 0, 0.92);

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-page .contact-header.is-scrolled {
  position: fixed;

  background: rgba(0, 0, 0, 0.97);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.18);
}

.contact-page .contact-header-inner {
  width: min(
    calc(100% - 70px),
    1400px
  );

  min-height: 82px;

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* ============================================================
   LOGO
============================================================ */

.contact-page .contact-logo {
  flex: 0 0 auto;

  display: flex;
  flex-direction: column;

  line-height: 0.85;

  letter-spacing: 0.04em;
}

.contact-page .contact-logo-main {
  font-family: var(--contact-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-page .contact-logo-bottom {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-top: 7px;

  font-family: var(--contact-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-page .contact-logo-mark {
  color: var(--contact-red);

  font-size: 24px;
  font-weight: 400;

  line-height: 0.5;

  transform: rotate(-8deg);
}


/* ============================================================
   DESKTOP NAVIGATION
============================================================ */

.contact-page .contact-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: clamp(18px, 2.2vw, 38px);
}

.contact-page .contact-desktop-nav a {
  position: relative;

  padding: 30px 0;

  color: rgba(255, 255, 255, 0.92);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.16em;

  transition:
    color 0.25s ease;
}

.contact-page .contact-desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 22px;

  width: 0;
  height: 1px;

  background: var(--contact-red);

  transition:
    width 0.25s ease;
}

.contact-page .contact-desktop-nav a:hover {
  color: var(--contact-white);
}

.contact-page .contact-desktop-nav a:hover::after {
  width: 100%;
}

.contact-page .contact-desktop-nav .contact-nav-give {
  padding-inline: 19px;

  color: var(--contact-white);

  border: 1px solid var(--contact-red);

  background: var(--contact-red);

  border-radius: 999px;
}

.contact-page .contact-desktop-nav .contact-nav-give::after {
  display: none;
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.contact-page .contact-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 8px;

  border: 0;
  background: transparent;

  flex-direction: column;
  align-items: flex-end;
  justify-content: center;

  gap: 5px;
}

.contact-page .contact-menu-toggle span {
  display: block;

  height: 1.5px;

  background: var(--contact-white);

  transition:
    transform 0.3s ease,
    width 0.3s ease,
    opacity 0.3s ease;
}

.contact-page .contact-menu-toggle span:nth-child(1) {
  width: 24px;
}

.contact-page .contact-menu-toggle span:nth-child(2) {
  width: 18px;
}

.contact-page .contact-menu-toggle span:nth-child(3) {
  width: 24px;
}

.contact-page .contact-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.contact-page .contact-menu-toggle.is-open span:nth-child(2) {
  width: 24px;
  opacity: 0;
}

.contact-page .contact-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   MOBILE NAVIGATION
============================================================ */

.contact-page .contact-mobile-menu {
  display: none;

  width: 100%;

  padding: 0 30px 28px;

  background: rgba(0, 0, 0, 0.98);

  flex-direction: column;

  overflow: hidden;

  max-height: 0;

  opacity: 0;

  transform: translateY(-10px);

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.contact-page .contact-mobile-menu.is-open {
  max-height: 600px;

  opacity: 1;

  transform: translateY(0);
}

.contact-page .contact-mobile-menu a {
  padding: 17px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  color: var(--contact-white);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.16em;
}

.contact-page .contact-mobile-menu .contact-mobile-give {
  margin-top: 15px;

  padding: 15px 20px;

  text-align: center;

  border: 0;

  border-radius: 999px;

  background: var(--contact-red);
}


/* ============================================================
   HERO
============================================================ */

.contact-page .contact-hero {
  min-height: 740px;
  height: 78vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #111;
}

.contact-page .contact-hero-image {
  position: absolute;
  inset: 0;

  background-image:
    url("/img/4.jpg");

  background-size: cover;
  background-position: center 45%;

  transform: scale(1.03);

  animation: contactHeroImage 12s ease-out forwards;
}

@keyframes contactHeroImage {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.03);
  }
}

.contact-page .contact-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.7) 100%
    );
}

.contact-page .contact-hero-content {
  position: relative;
  z-index: 2;

  width: min(
    calc(100% - 40px),
    950px
  );

  margin: 82px auto 0;

  text-align: center;

  color: var(--contact-white);
}

.contact-page .contact-eyebrow,
.contact-page .contact-section-eyebrow,
.contact-page .contact-newsletter-label,
.contact-page .contact-aside-eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.25em;

  text-transform: uppercase;
}

.contact-page .contact-eyebrow {
  position: relative;

  padding-left: 40px;
  padding-right: 40px;

  color: var(--contact-white);
}

.contact-page .contact-eyebrow::before,
.contact-page .contact-eyebrow::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 27px;
  height: 1px;

  background: var(--contact-red);
}

.contact-page .contact-eyebrow::before {
  left: 0;
}

.contact-page .contact-eyebrow::after {
  right: 0;
}

.contact-page .contact-hero h1 {
  margin: 0;

  font-family: var(--contact-display);

  font-size: clamp(
    72px,
    9.4vw,
    145px
  );

  font-weight: 400;

  line-height: 0.8;

  letter-spacing: 0.01em;

  text-transform: uppercase;
}

.contact-page .contact-hero h1 span {
  color: var(--contact-red);
}

.contact-page .contact-hero p {
  width: min(
    100%,
    570px
  );

  margin: 30px auto 0;

  color: rgba(255, 255, 255, 0.88);

  font-size: 14px;

  line-height: 1.75;
}

.contact-page .contact-hero-actions {
  margin-top: 30px;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 12px;
}


/* ============================================================
   BUTTONS
============================================================ */

.contact-page .contact-btn {
  min-height: 48px;

  padding: 0 27px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  border-radius: 999px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.13em;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-page .contact-btn:hover {
  transform: translateY(-2px);
}

.contact-page .contact-btn-light {
  color: var(--contact-black);

  background: var(--contact-white);

  border: 1px solid var(--contact-white);
}

.contact-page .contact-btn-light:hover {
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.2);
}

.contact-page .contact-btn-outline {
  color: var(--contact-white);

  border: 1px solid rgba(255, 255, 255, 0.6);

  background: rgba(0, 0, 0, 0.15);
}

.contact-page .contact-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-page .contact-btn-red {
  color: var(--contact-white);

  border: 1px solid var(--contact-red);

  background: var(--contact-red);
}

.contact-page .contact-btn-red:hover {
  background: #b90000;
}

.contact-page .contact-btn-dark {
  color: var(--contact-white);

  background: var(--contact-black);

  border: 1px solid var(--contact-black);
}

.contact-page .contact-btn-outline-dark {
  color: var(--contact-black);

  background: transparent;

  border: 1px solid rgba(0, 0, 0, 0.35);
}


/* ============================================================
   HERO SCROLL INDICATOR
============================================================ */

.contact-page .contact-scroll {
  position: absolute;

  left: 50%;
  bottom: 25px;

  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 8px;
  letter-spacing: 0.25em;

  transform: translateX(-50%);
}

.contact-page .contact-scroll-line {
  width: 1px;
  height: 38px;

  background:
    linear-gradient(
      to bottom,
      var(--contact-red),
      transparent
    );
}


/* ============================================================
   REVEAL ANIMATION
============================================================ */

.contact-page .contact-reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.contact-page .contact-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* ============================================================
   INTRO
============================================================ */

.contact-page .contact-intro {
  padding: 135px 0 125px;

  background: var(--contact-white);
}

.contact-page .contact-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.85fr);

  gap: 80px;

  align-items: end;
}

.contact-page .contact-section-eyebrow {
  color: var(--contact-red);
}

.contact-page .contact-intro-heading h2,
.contact-page .contact-form-header h2,
.contact-page .contact-campus-header h2,
.contact-page .contact-faq-heading h2,
.contact-page .contact-map-content h2,
.contact-page .contact-red-cta-content h2 {
  margin: 0;

  font-family: var(--contact-display);

  font-size: clamp(
    65px,
    7vw,
    108px
  );

  font-weight: 400;

  line-height: 0.84;

  letter-spacing: 0.01em;
}

.contact-page .contact-intro-heading h2 span,
.contact-page .contact-form-header h2 span,
.contact-page .contact-campus-header h2 span,
.contact-page .contact-faq-heading h2 span,
.contact-page .contact-map-content h2 span,
.contact-page .contact-red-cta-content h2 span {
  color: var(--contact-red);
}

.contact-page .contact-intro-copy {
  max-width: 500px;
}

.contact-page .contact-intro-copy p {
  margin-bottom: 20px;

  color: #555;

  font-size: 14px;
}

.contact-page .contact-intro-copy p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   CONTACT INFORMATION GRID
============================================================ */

.contact-page .contact-info-grid {
  margin-top: 85px;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  border-top: 1px solid var(--contact-border);
  border-bottom: 1px solid var(--contact-border);
}

.contact-page .contact-info-card {
  position: relative;

  min-height: 330px;

  padding: 35px 30px;

  border-right: 1px solid var(--contact-border);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.contact-page .contact-info-card:first-child {
  border-left: 1px solid var(--contact-border);
}

.contact-page .contact-info-card:hover {
  background: #fafafa;

  transform: translateY(-5px);
}

.contact-page .contact-info-number {
  color: #b7b7b7;

  font-family: var(--contact-display);

  font-size: 20px;

  line-height: 1;
}

.contact-page .contact-info-icon {
  margin-top: 50px;

  color: var(--contact-red);
}

.contact-page .contact-info-card h3 {
  margin: 25px 0 12px;

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 0.1em;
}

.contact-page .contact-info-card p {
  min-height: 75px;

  margin-bottom: 20px;

  color: #707070;

  font-size: 12px;

  line-height: 1.65;
}

.contact-page .contact-text-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: var(--contact-black);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;

  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.contact-page .contact-text-link span {
  color: var(--contact-red);

  font-size: 15px;
}

.contact-page .contact-text-link:hover {
  color: var(--contact-red);

  gap: 17px;
}

.contact-page .contact-status {
  display: inline-block;

  padding: 7px 11px;

  color: var(--contact-red);

  background: var(--contact-soft);

  border-radius: 999px;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.1em;
}


/* ============================================================
   FORM SECTION
============================================================ */

.contact-page .contact-form-section {
  padding: 130px 0;

  background: var(--contact-off-white);
}

.contact-page .contact-form-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.7fr);

  gap: 80px;

  align-items: end;
}

.contact-page .contact-form-header > p {
  margin: 0 0 4px;

  color: #666;

  font-size: 14px;
}

.contact-page .contact-form-layout {
  margin-top: 75px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.7fr)
    minmax(300px, 0.7fr);

  gap: 35px;

  align-items: stretch;
}


/* ============================================================
   FORM
============================================================ */

.contact-page .contact-form {
  padding: 48px;

  background: var(--contact-white);

  border: 1px solid rgba(0, 0, 0, 0.07);

  border-radius: 5px;

  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.04);
}

.contact-page .contact-form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;

  margin-bottom: 22px;
}

.contact-page .contact-field {
  position: relative;

  margin-bottom: 22px;
}

.contact-page .contact-form-row .contact-field {
  margin-bottom: 0;
}

.contact-page .contact-field label {
  display: block;

  margin-bottom: 9px;

  color: #333;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.contact-page .contact-field input,
.contact-page .contact-field textarea,
.contact-page .contact-field select {
  width: 100%;

  border: 1px solid #d8d8d8;

  border-radius: 0;

  outline: none;

  background: #fff;

  color: #111;

  font-size: 13px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-page .contact-field input,
.contact-page .contact-field select {
  height: 55px;

  padding: 0 17px;
}

.contact-page .contact-field textarea {
  min-height: 160px;

  padding: 16px 17px;

  resize: vertical;
}

.contact-page .contact-field input::placeholder,
.contact-page .contact-field textarea::placeholder {
  color: #aaa;
}

.contact-page .contact-field input:focus,
.contact-page .contact-field textarea:focus,
.contact-page .contact-field select:focus {
  border-color: var(--contact-red);

  box-shadow:
    0 0 0 3px rgba(217, 0, 0, 0.07);
}

.contact-page .contact-field.is-error input,
.contact-page .contact-field.is-error textarea,
.contact-page .contact-field.is-error select {
  border-color: var(--contact-red);
}

.contact-page .contact-field-error {
  display: block;

  min-height: 0;

  margin-top: 6px;

  color: var(--contact-red);

  font-size: 9px;
}

.contact-page .contact-form-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 8px;
}

.contact-page .contact-checkbox {
  display: flex;

  align-items: flex-start;

  gap: 11px;

  max-width: 420px;

  color: #666;

  font-size: 10px;

  line-height: 1.5;

  cursor: pointer;
}

.contact-page .contact-checkbox input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.contact-page .contact-checkmark {
  flex: 0 0 16px;

  width: 16px;
  height: 16px;

  margin-top: 1px;

  border: 1px solid #bbb;

  background: white;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-page .contact-checkbox input:checked + .contact-checkmark {
  border-color: var(--contact-red);

  background:
    var(--contact-red);

  position: relative;
}

.contact-page .contact-checkbox input:checked + .contact-checkmark::after {
  content: "";

  position: absolute;

  left: 4px;
  top: 1px;

  width: 5px;
  height: 9px;

  border-right: 1.5px solid white;
  border-bottom: 1.5px solid white;

  transform: rotate(45deg);
}

.contact-page .contact-checkbox input:focus-visible + .contact-checkmark {
  outline: 2px solid var(--contact-red);

  outline-offset: 3px;
}

.contact-page .contact-form-message {
  min-height: 0;

  margin-top: 18px;

  font-size: 11px;

  line-height: 1.5;
}

.contact-page .contact-form-message.success {
  color: #16733a;
}

.contact-page .contact-form-message.error {
  color: var(--contact-red);
}


/* ============================================================
   FORM ASIDE
============================================================ */

.contact-page .contact-form-aside {
  min-height: 100%;

  padding: 42px 35px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  color: var(--contact-white);

  background: var(--contact-charcoal);

  overflow: hidden;
}

.contact-page .contact-form-aside::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -150px;
  bottom: -140px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

.contact-page .contact-aside-eyebrow {
  color: var(--contact-red);

  font-size: 9px;
}

.contact-page .contact-aside-top h3 {
  margin: 25px 0 0;

  font-family: var(--contact-display);

  font-size: 62px;

  font-weight: 400;

  line-height: 0.86;
}

.contact-page .contact-aside-bottom {
  position: relative;
  z-index: 2;
}

.contact-page .contact-aside-bottom p {
  color: #c5c5c5;

  font-size: 12px;
}

.contact-page .contact-aside-link {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-top: 12px;

  color: var(--contact-white);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.contact-page .contact-aside-link span {
  color: var(--contact-red);

  font-size: 17px;
}


/* ============================================================
   PRAYER SECTION
============================================================ */

.contact-page .contact-prayer {
  min-height: 610px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: var(--contact-white);

  background: #111;
}

.contact-page .contact-prayer-image {
  position: absolute;
  inset: 0;

  background-image:
    url("https://images.unsplash.com/photo-1544427920-c49ccfb85579?auto=format&fit=crop&w=2200&q=88");

  background-size: cover;
  background-position: center;
}

.contact-page .contact-prayer-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.64) 48%,
      rgba(0, 0, 0, 0.25) 100%
    );
}

.contact-page .contact-prayer-content {
  position: relative;
  z-index: 2;

  width: 650px;

  padding: 115px 0;
}

.contact-page .contact-white-eyebrow {
  color: var(--contact-white);
}

.contact-page .contact-prayer-content h2 {
  margin: 0;

  font-family: var(--contact-display);

  font-size: clamp(
    75px,
    8vw,
    120px
  );

  font-weight: 400;

  line-height: 0.82;
}

.contact-page .contact-prayer-content h2 span {
  color: var(--contact-red);
}

.contact-page .contact-prayer-content p {
  width: min(100%, 500px);

  margin: 27px 0;

  color: rgba(255, 255, 255, 0.8);

  font-size: 13px;
}


/* ============================================================
   CAMPUSES
============================================================ */

.contact-page .contact-campuses {
  padding: 135px 0;

  background: var(--contact-white);
}

.contact-page .contact-campus-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.72fr);

  gap: 80px;

  align-items: end;
}

.contact-page .contact-campus-header p {
  max-width: 500px;

  margin: 0 0 5px;

  color: #666;

  font-size: 14px;
}

.contact-page .contact-campus-grid {
  margin-top: 75px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.contact-page .contact-campus-card {
  background: var(--contact-white);

  border: 1px solid #e3e3e3;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-page .contact-campus-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.09);
}

.contact-page .contact-campus-image-wrap {
  position: relative;

  height: 275px;

  overflow: hidden;
}

.contact-page .contact-campus-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.7s ease;
}

.contact-page .contact-campus-card:hover
.contact-campus-image-wrap img {
  transform: scale(1.06);
}

.contact-page .contact-campus-tag {
  position: absolute;

  left: 18px;
  bottom: 18px;

  padding: 7px 10px;

  color: var(--contact-white);

  background: var(--contact-red);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.contact-page .contact-campus-body {
  padding: 28px 25px 30px;
}

.contact-page .contact-campus-body > span {
  color: var(--contact-red);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.contact-page .contact-campus-body h3 {
  margin: 10px 0;

  font-family: var(--contact-display);

  font-size: 39px;

  font-weight: 400;

  line-height: 0.9;
}

.contact-page .contact-campus-body p {
  min-height: 50px;

  margin-bottom: 20px;

  color: #777;

  font-size: 11px;
}

.contact-page .contact-campus-body a {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;

  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.contact-page .contact-campus-body a span {
  color: var(--contact-red);

  font-size: 15px;
}

.contact-page .contact-campus-body a:hover {
  color: var(--contact-red);

  gap: 17px;
}


/* ============================================================
   MAP SECTION
============================================================ */

.contact-page .contact-map-section {
  min-height: 650px;

  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr;

  background: var(--contact-off-white);
}

.contact-page .contact-map-visual {
  position: relative;

  min-height: 650px;

  overflow: hidden;

  background:
    #eee;
}

.contact-page .contact-map-pattern {
  position: absolute;
  inset: 0;

  opacity: 0.7;

  background-image:
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(0, 0, 0, 0.08) 49%,
      rgba(0, 0, 0, 0.08) 51%,
      transparent 52%
    );

  background-size: 95px 95px;
}

.contact-page .contact-map-visual::before,
.contact-page .contact-map-visual::after {
  content: "";

  position: absolute;

  width: 100%;
  height: 1px;

  left: 0;

  background: rgba(0, 0, 0, 0.08);
}

.contact-page .contact-map-visual::before {
  top: 38%;
  transform: rotate(-10deg);
}

.contact-page .contact-map-visual::after {
  top: 65%;
  transform: rotate(13deg);
}

.contact-page .contact-map-center {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 150px;
  height: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: var(--contact-white);

  background: var(--contact-black);

  border-radius: 50%;

  transform: translate(-50%, -50%);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-page .contact-map-center span {
  font-size: 8px;
  letter-spacing: 0.15em;
}

.contact-page .contact-map-center strong {
  margin-top: 5px;

  font-size: 13px;
  letter-spacing: 0.15em;
}

.contact-page .contact-map-pin {
  position: absolute;

  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--contact-red);

  border-radius: 50%;
}

.contact-page .contact-map-pin span {
  width: 8px;
  height: 8px;

  background: var(--contact-red);

  border-radius: 50%;
}

.contact-page .contact-map-pin-one {
  left: 25%;
  top: 28%;
}

.contact-page .contact-map-pin-two {
  right: 20%;
  top: 30%;
}

.contact-page .contact-map-pin-three {
  right: 31%;
  bottom: 20%;
}

.contact-page .contact-map-content {
  padding: 100px clamp(50px, 7vw, 110px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: var(--contact-white);
}

.contact-page .contact-map-content h2 {
  margin-bottom: 25px;
}

.contact-page .contact-map-content p {
  max-width: 420px;

  margin-bottom: 28px;

  color: #666;

  font-size: 13px;
}


/* ============================================================
   FAQ
============================================================ */

.contact-page .contact-faq {
  padding: 135px 0;

  color: var(--contact-white);

  background: var(--contact-charcoal);
}

.contact-page .contact-faq-heading {
  max-width: 700px;
}

.contact-page .contact-faq-heading .contact-section-eyebrow {
  color: var(--contact-red);
}

.contact-page .contact-faq-heading h2 {
  color: var(--contact-white);
}

.contact-page .contact-faq-list {
  margin-top: 80px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-page .contact-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-page .contact-faq-question {
  width: 100%;

  min-height: 105px;

  padding: 25px 0;

  display: grid;

  grid-template-columns:
    80px
    minmax(0, 1fr)
    55px;

  align-items: center;

  gap: 25px;

  border: 0;

  background: transparent;

  color: var(--contact-white);

  text-align: left;
}

.contact-page .contact-faq-number {
  color: var(--contact-red);

  font-family: var(--contact-display);

  font-size: 29px;

  line-height: 1;
}

.contact-page .contact-faq-text {
  font-family: var(--contact-display);

  font-size: clamp(
    25px,
    3vw,
    42px
  );

  font-weight: 400;

  line-height: 1;

  transition:
    color 0.25s ease;
}

.contact-page .contact-faq-question:hover
.contact-faq-text {
  color: #dddddd;
}

.contact-page .contact-faq-plus {
  justify-self: end;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  color: var(--contact-white);

  font-size: 25px;
  font-weight: 300;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.contact-page .contact-faq-question[aria-expanded="true"]
.contact-faq-plus {
  transform: rotate(45deg);

  border-color: var(--contact-red);

  background: var(--contact-red);
}

.contact-page .contact-faq-answer {
  padding:
    0 80px 30px
    80px;

  color: #bcbcbc;

  overflow: hidden;
}

.contact-page .contact-faq-answer p {
  max-width: 720px;

  margin: 0;

  font-size: 13px;
  line-height: 1.8;
}


/* ============================================================
   RED CTA
============================================================ */

.contact-page .contact-red-cta {
  padding: 100px 0 0;

  background: var(--contact-red);
}

.contact-page .contact-red-cta-card {
  position: relative;

  min-height: 410px;

  padding: 70px 75px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-radius: 7px;

  background: var(--contact-soft);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.14);
}

.contact-page .contact-red-cta-content {
  position: relative;

  z-index: 2;

  max-width: 650px;
}

.contact-page .contact-red-cta-content h2 {
  font-size: clamp(
    62px,
    6.4vw,
    96px
  );
}

.contact-page .contact-red-cta-content p {
  max-width: 480px;

  margin: 22px 0 25px;

  color: #5e5555;

  font-size: 13px;
}

.contact-page .contact-red-cta-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.contact-page .contact-line-art {
  position: absolute;

  right: -15px;
  bottom: -35px;

  width: min(
    46%,
    510px
  );

  color: rgba(217, 0, 0, 0.45);

  opacity: 0.7;
}

.contact-page .contact-line-art svg {
  width: 100%;
  height: auto;
}


/* ============================================================
   NEWSLETTER
============================================================ */

.contact-page .contact-newsletter {
  padding: 100px 0 80px;

  color: var(--contact-white);

  background: var(--contact-red);
}

.contact-page .contact-newsletter-inner {
  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}

.contact-page .contact-newsletter-label {
  color: rgba(255, 255, 255, 0.78);
}

.contact-page .contact-newsletter h2 {
  margin: 0;

  font-family: var(--contact-display);

  font-size: clamp(
    65px,
    8vw,
    110px
  );

  font-weight: 400;

  line-height: 0.82;
}

.contact-page .contact-newsletter p {
  width: min(
    100%,
    570px
  );

  margin: 25px auto 30px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 13px;
}

.contact-page .contact-newsletter-form {
  width: min(
    100%,
    650px
  );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.contact-page .contact-newsletter-form input {
  min-width: 0;

  height: 58px;

  padding: 0 10px;

  border: 0;
  outline: 0;

  color: var(--contact-white);

  background: transparent;

  font-size: 12px;

  letter-spacing: 0.08em;
}

.contact-page .contact-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.contact-page .contact-newsletter-form button {
  padding: 0 10px;

  display: flex;

  align-items: center;

  gap: 14px;

  border: 0;

  color: var(--contact-white);

  background: transparent;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.contact-page .contact-newsletter-form button span {
  font-size: 17px;

  transition:
    transform 0.25s ease;
}

.contact-page .contact-newsletter-form button:hover span {
  transform: translateX(5px);
}

.contact-page .contact-newsletter-message {
  min-height: 18px;

  margin-top: 14px;

  font-size: 10px;
}

.contact-page .contact-newsletter-message.success {
  color: white;
}

.contact-page .contact-newsletter-message.error {
  color: #ffe1e1;
}


/* ============================================================
   FOOTER
============================================================ */

.contact-page .contact-footer {
  padding: 0 0 30px;

  color: var(--contact-white);

  background: var(--contact-red);
}

.contact-page .contact-footer-top {
  padding: 85px 0 65px;

  display: grid;

  grid-template-columns:
    1.5fr
    repeat(4, 1fr);

  gap: 45px;
}

.contact-page .contact-footer-logo {
  display: inline-flex;

  flex-direction: column;

  color: var(--contact-white);

  line-height: 0.85;
}

.contact-page .contact-footer-logo span {
  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.contact-page .contact-footer-logo strong {
  display: flex;
  align-items: center;

  gap: 5px;

  margin-top: 7px;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.contact-page .contact-footer-logo i {
  color: var(--contact-white);

  font-size: 24px;

  font-style: normal;

  line-height: 0.5;
}

.contact-page .contact-footer-brand p {
  max-width: 260px;

  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;

  line-height: 1.7;
}

.contact-page .contact-footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.contact-page .contact-footer-column h3 {
  margin: 0 0 20px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.2em;
}

.contact-page .contact-footer-column a {
  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.77);

  font-size: 10px;

  line-height: 1.45;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-page .contact-footer-column a:hover {
  color: var(--contact-white);

  transform: translateX(3px);
}


/* ============================================================
   FOOTER APPS
============================================================ */

.contact-page .contact-footer-middle {
  padding-bottom: 45px;
}

.contact-page .contact-footer-apps {
  display: flex;

  gap: 10px;
}

.contact-page .contact-app-button {
  min-width: 155px;

  min-height: 50px;

  padding: 8px 13px;

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--contact-white);

  border: 1px solid rgba(255, 255, 255, 0.38);

  border-radius: 4px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-page .contact-app-button:hover {
  background: rgba(255, 255, 255, 0.1);

  transform: translateY(-2px);
}

.contact-page .contact-app-button span {
  display: flex;
  flex-direction: column;

  font-size: 12px;
  font-weight: 600;

  line-height: 1.1;
}

.contact-page .contact-app-button small {
  margin-bottom: 3px;

  font-size: 7px;
  font-weight: 500;

  letter-spacing: 0.05em;
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.contact-page .contact-footer-divider {
  width: 100%;
  height: 1px;

  background: rgba(255, 255, 255, 0.25);
}

.contact-page .contact-footer-bottom {
  padding-top: 25px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.contact-page .contact-footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 9px;
}

.contact-page .contact-socials {
  display: flex;

  align-items: center;

  gap: 8px;
}

.contact-page .contact-socials a {
  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--contact-white);

  border: 1px solid rgba(255, 255, 255, 0.32);

  border-radius: 50%;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.contact-page .contact-socials a:hover {
  background: rgba(255, 255, 255, 0.14);

  border-color: white;

  transform: translateY(-2px);
}

.contact-page .contact-socials svg {
  width: 14px;
  height: 14px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

  .contact-page .contact-desktop-nav {
    gap: 17px;
  }

  .contact-page .contact-desktop-nav a {
    font-size: 9px;
  }

  .contact-page .contact-info-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-info-card {
    border-bottom: 1px solid var(--contact-border);
  }

  .contact-page .contact-info-card:nth-child(3) {
    border-left: 1px solid var(--contact-border);
  }

  .contact-page .contact-form-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.55fr);
  }

  .contact-page .contact-footer-top {
    grid-template-columns:
      1.4fr
      repeat(2, 1fr)
      repeat(2, 0.9fr);
  }

}


/* ============================================================
   TABLET / MOBILE NAV
============================================================ */

@media (max-width: 900px) {

  .contact-page .contact-header-inner {
    min-height: 72px;

    width: min(
      calc(100% - 40px),
      1400px
    );
  }

  .contact-page .contact-desktop-nav {
    display: none;
  }

  .contact-page .contact-menu-toggle {
    display: flex;
  }

  .contact-page .contact-mobile-menu {
    display: flex;
  }

  .contact-page .contact-container {
    width: min(
      calc(100% - 40px),
      var(--contact-container)
    );
  }

  .contact-page .contact-hero {
    min-height: 680px;

    height: 76vh;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(
      66px,
      13vw,
      110px
    );
  }

  .contact-page .contact-intro-grid,
  .contact-page .contact-form-header,
  .contact-page .contact-campus-header {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .contact-page .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-form-aside {
    min-height: 390px;
  }

  .contact-page .contact-campus-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-map-section {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-map-visual {
    min-height: 500px;
  }

  .contact-page .contact-map-content {
    min-height: 500px;
  }

  .contact-page .contact-footer-top {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-footer-brand {
    grid-column: 1 / -1;
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 640px) {

  .contact-page .contact-container {
    width: calc(100% - 32px);
  }

  .contact-page .contact-header-inner {
    width: calc(100% - 30px);

    min-height: 67px;
  }

  .contact-page .contact-logo-main {
    font-size: 12px;
  }

  .contact-page .contact-logo-bottom {
    font-size: 11px;

    margin-top: 6px;
  }

  .contact-page .contact-logo-mark {
    font-size: 20px;
  }

  .contact-page .contact-mobile-menu {
    padding-inline: 20px;
  }

  .contact-page .contact-hero {
    min-height: 650px;

    height: 78vh;
  }

  .contact-page .contact-hero-image {
    background-position: 55% center;
  }

  .contact-page .contact-hero-content {
    margin-top: 65px;
  }

  .contact-page .contact-eyebrow {
    font-size: 8px;

    padding-inline: 33px;
  }

  .contact-page .contact-eyebrow::before,
  .contact-page .contact-eyebrow::after {
    width: 21px;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(
      60px,
      18vw,
      90px
    );

    line-height: 0.83;
  }

  .contact-page .contact-hero p {
    margin-top: 23px;

    font-size: 12px;
  }

  .contact-page .contact-hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .contact-page .contact-hero-actions .contact-btn {
    width: min(
      100%,
      300px
    );
  }

  .contact-page .contact-scroll {
    display: none;
  }

  .contact-page .contact-intro,
  .contact-page .contact-form-section,
  .contact-page .contact-campuses,
  .contact-page .contact-faq {
    padding: 85px 0;
  }

  .contact-page .contact-intro-grid {
    gap: 28px;
  }

  .contact-page .contact-intro-heading h2,
  .contact-page .contact-form-header h2,
  .contact-page .contact-campus-header h2,
  .contact-page .contact-faq-heading h2,
  .contact-page .contact-map-content h2,
  .contact-page .contact-red-cta-content h2 {
    font-size: clamp(
      62px,
      18vw,
      90px
    );
  }

  .contact-page .contact-intro-copy p,
  .contact-page .contact-campus-header p,
  .contact-page .contact-form-header > p {
    font-size: 12px;
  }

  .contact-page .contact-info-grid {
    margin-top: 55px;

    grid-template-columns: 1fr;
  }

  .contact-page .contact-info-card,
  .contact-page .contact-info-card:first-child,
  .contact-page .contact-info-card:nth-child(3) {
    min-height: 300px;

    border-left: 1px solid var(--contact-border);
    border-right: 1px solid var(--contact-border);
  }

  .contact-page .contact-info-card:last-child {
    border-bottom: 0;
  }

  .contact-page .contact-form-header {
    gap: 28px;
  }

  .contact-page .contact-form-layout {
    margin-top: 50px;

    gap: 18px;
  }

  .contact-page .contact-form {
    padding: 27px 20px;
  }

  .contact-page .contact-form-row {
    grid-template-columns: 1fr;

    gap: 0;

    margin-bottom: 0;
  }

  .contact-page .contact-form-row .contact-field {
    margin-bottom: 22px;
  }

  .contact-page .contact-form-bottom {
    flex-direction: column;

    align-items: stretch;
  }

  .contact-page .contact-form-bottom .contact-btn {
    width: 100%;
  }

  .contact-page .contact-form-aside {
    min-height: 420px;

    padding: 35px 25px;
  }

  .contact-page .contact-aside-top h3 {
    font-size: 56px;
  }

  .contact-page .contact-prayer {
    min-height: 600px;
  }

  .contact-page .contact-prayer-content {
    width: 100%;

    padding: 90px 0;
  }

  .contact-page .contact-prayer-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.86),
        rgba(0, 0, 0, 0.55)
      );
  }

  .contact-page .contact-prayer-content h2 {
    font-size: clamp(
      65px,
      18vw,
      90px
    );
  }

  .contact-page .contact-campus-grid {
    grid-template-columns: 1fr;

    margin-top: 50px;
  }

  .contact-page .contact-campus-image-wrap {
    height: 245px;
  }

  .contact-page .contact-campus-body h3 {
    font-size: 42px;
  }

  .contact-page .contact-map-visual {
    min-height: 390px;
  }

  .contact-page .contact-map-center {
    width: 125px;
    height: 125px;
  }

  .contact-page .contact-map-content {
    min-height: 450px;

    padding:
      75px 24px;
  }

  .contact-page .contact-faq-list {
    margin-top: 50px;
  }

  .contact-page .contact-faq-question {
    min-height: 90px;

    grid-template-columns:
      38px
      minmax(0, 1fr)
      40px;

    gap: 12px;
  }

  .contact-page .contact-faq-number {
    font-size: 23px;
  }

  .contact-page .contact-faq-text {
    font-size: 25px;

    line-height: 0.95;
  }

  .contact-page .contact-faq-plus {
    width: 34px;
    height: 34px;

    font-size: 21px;
  }

  .contact-page .contact-faq-answer {
    padding:
      0 40px 25px
      50px;
  }

  .contact-page .contact-faq-answer p {
    font-size: 11px;
  }

  .contact-page .contact-red-cta {
    padding-top: 50px;
  }

  .contact-page .contact-red-cta-card {
    min-height: 570px;

    padding: 45px 25px;

    align-items: flex-start;
  }

  .contact-page .contact-red-cta-content {
    width: 100%;
  }

  .contact-page .contact-red-cta-content h2 {
    font-size: clamp(
      60px,
      17vw,
      86px
    );
  }

  .contact-page .contact-red-cta-actions {
    flex-direction: column;
  }

  .contact-page .contact-red-cta-actions .contact-btn {
    width: 100%;
  }

  .contact-page .contact-line-art {
    right: -100px;
    bottom: -15px;

    width: 125%;
  }

  .contact-page .contact-newsletter {
    padding: 75px 0 65px;
  }

  .contact-page .contact-newsletter h2 {
    font-size: clamp(
      65px,
      19vw,
      90px
    );
  }

  .contact-page .contact-newsletter p {
    font-size: 11px;
  }

  .contact-page .contact-newsletter-form {
    grid-template-columns: 1fr;

    border-bottom: 0;

    gap: 10px;
  }

  .contact-page .contact-newsletter-form input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  }

  .contact-page .contact-newsletter-form button {
    min-height: 50px;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 999px;
  }

  .contact-page .contact-footer-top {
    padding: 65px 0 45px;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 40px 25px;
  }

  .contact-page .contact-footer-brand {
    grid-column: 1 / -1;
  }

  .contact-page .contact-footer-column a {
    font-size: 9px;
  }

  .contact-page .contact-footer-middle {
    padding-bottom: 35px;
  }

  .contact-page .contact-footer-apps {
    flex-direction: column;

    align-items: flex-start;
  }

  .contact-page .contact-app-button {
    width: 160px;
  }

  .contact-page .contact-footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

  .contact-page .contact-footer-bottom p {
    line-height: 1.5;
  }

}


/* ============================================================
   VERY SMALL PHONES
============================================================ */

@media (max-width: 360px) {

  .contact-page .contact-container {
    width: calc(100% - 26px);
  }

  .contact-page .contact-hero h1 {
    font-size: 58px;
  }

  .contact-page .contact-info-card {
    padding: 30px 22px;
  }

  .contact-page .contact-form {
    padding: 25px 16px;
  }

  .contact-page .contact-faq-question {
    grid-template-columns:
      30px
      minmax(0, 1fr)
      34px;

    gap: 9px;
  }

  .contact-page .contact-faq-text {
    font-size: 22px;
  }

  .contact-page .contact-red-cta-card {
    padding-inline: 20px;
  }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

  .contact-page *,
  .contact-page *::before,
  .contact-page *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .contact-page .contact-reveal {
    opacity: 1;
    transform: none;
  }

}