:root {
  --primary: #2b305b;
  --accent: #ff9263;
  --white: white;
  --black: #131313;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--primary);
  font-family: Rubik, sans-serif;
  font-size: 17px;
  line-height: 24px;
}

h1 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.4;
}

h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

h4 {
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

h5 {
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

h6 {
  letter-spacing: 1.8px;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

p {
  margin-bottom: 24px;
}

a {
  border-bottom: 2px solid var(--accent);
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

a:hover {
  color: var(--accent);
}

ul {
  margin-bottom: 16px;
  list-style-type: disc;
}

ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 40px;
  list-style-type: lower-roman;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 3px solid #2b305b80;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 4px 0 8px 28px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
}

figure {
  margin-top: 16px;
  margin-bottom: 32px;
}

figcaption {
  text-align: right;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 8px;
  font-size: 13px;
}

.hero {
  color: var(--white);
  background-image: linear-gradient(#13131340, #13131340), url('../images/IMG_1500.JPG');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 0;
  display: flex;
}

.container {
  z-index: 1;
  width: 100%;
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 128px;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
}

.container.align-center {
  text-align: center;
}

.container.remove-spacing {
  padding-bottom: 0;
}

.hero-detail {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hero-detail-block {
  color: #fff9;
  text-align: center;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  width: 224px;
  margin-bottom: 0;
  font-weight: 500;
}

.hero-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.hero-subtitle {
  margin-top: 0;
  margin-bottom: 0;
}

.couple {
  margin-top: 32px;
  padding-bottom: 32px;
}

.couple-divider {
  margin-top: 24px;
  margin-bottom: 24px;
}

.headline {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 700;
  line-height: 60px;
}

.flourishes {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.corner {
  background-image: url('../images/flourish-corner-tl.svg');
  background-position: 50%;
  background-size: cover;
  width: 32px;
  height: 32px;
  position: absolute;
}

.corner.corner-top-left {
  top: 32px;
  left: 32px;
}

.corner.corner-top-right {
  top: 32px;
  right: 32px;
  transform: rotate(90deg);
}

.corner.corner-bottom-right {
  bottom: 32px;
  right: 32px;
  transform: rotate(180deg);
}

.corner.corner-bottom-left {
  bottom: 32px;
  left: 32px;
  transform: rotate(270deg);
}

.circle {
  background-image: url('../images/flourish-circle.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 48px;
  height: 24px;
  position: absolute;
}

.circle.circle-top {
  top: 50px;
  left: 50%;
  transform: translate(-50%);
}

.circle.circle-right {
  transform-origin: 100% 100%;
  top: 50%;
  right: 50px;
  transform: translate(0, -24px)rotate(-90deg);
}

.circle.circle-bottom {
  display: none;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
}

.circle.circle-left {
  transform-origin: 0 100%;
  top: 50%;
  left: 50px;
  transform: translate(0, -24px)rotate(90deg);
}

.nav {
  z-index: 998;
  background-color: var(--white);
  position: sticky;
  top: 0;
}

.cta-link {
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-bottom-style: none;
  padding-bottom: 10px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.link-text {
  z-index: 1;
  position: relative;
}

.link-underline {
  z-index: 0;
  background-color: var(--white);
  border-radius: 1px;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 30px;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%);
}

.section {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 128px;
  display: flex;
}

.section.section-video {
  background-image: linear-gradient(#2b305bcc, #2b305bcc), url('../images/IMG_543.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  position: relative;
}

.section.hide-overflow {
  overflow: hidden;
}

.section.section-gallery {
  background-image: linear-gradient(#2b305bcc, #2b305bcc), url('../images/IMG_543.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section.hide {
  display: none;
}

.menu {
  justify-content: space-around;
  width: 100%;
  display: flex;
}

.menu-link {
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom-style: none;
  padding: 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.menu-link.w--current {
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
}

.menu-link.hide {
  display: none;
}

.headline-display {
  letter-spacing: .75vw;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 96px;
  font-weight: 700;
  line-height: 88px;
}

.headline-display.color-white.last.mt {
  margin-top: 25px;
}

.headline-display.color-white.text-center {
  text-align: center;
}

.timeline {
  background-color: #0000;
  height: 640px;
  margin-bottom: 128px;
}

.timeline-mask {
  overflow: visible;
}

.event-slide {
  width: 20%;
  padding-bottom: 0;
  padding-right: 0;
}

.event-slide-inner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  height: 100%;
  display: grid;
}

.color-accent {
  color: var(--accent);
  margin-bottom: 4px;
}

.event-wrapper {
  box-shadow: 0 2px 0 0 var(--primary);
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0 32px 64px;
  display: flex;
  position: relative;
}

.event-wrapper.bottom {
  border-top: 2px solid var(--primary);
  box-shadow: none;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 64px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.event-wrapper.last {
  box-shadow: none;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
}

.arrow-icon {
  background-color: var(--accent);
  color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0;
  font-size: 20px;
  transition: all .2s;
  display: flex;
  top: 50%;
  transform: translate(0, -24px);
}

.arrow-icon:hover {
  background-color: var(--primary);
  color: var(--accent);
}

.table {
  border-top: 2px solid var(--primary);
}

.table-row {
  border-left: 2px solid var(--primary);
  display: flex;
}

.table-row.hide {
  display: none;
}

.table-row.hide.rsvp {
  display: block;
}

.table-cell {
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  flex: auto;
  padding: 24px 28px;
}

.table-cell.hide {
  display: none;
}

.button {
  background-color: var(--accent);
  color: var(--primary);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  min-width: 200px;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}

.button:hover {
  background-color: var(--primary);
  color: var(--accent);
}

.button.submit-button {
  width: 100%;
  margin-top: 0;
}

.button.hide {
  display: none;
}

.button.hotel {
  margin-top: -10px;
  margin-bottom: 0;
}

.button.hotel.mb0 {
  margin-bottom: 0;
}

.button.hotel.full {
  width: 100%;
}

.button.rsvp {
  margin-top: 5px;
  margin-bottom: 0;
}

._2-column-grid {
  grid-column-gap: 28px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-column {
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.grid-column.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.grid-column.hide {
  display: none;
}

.slider-arrow {
  width: 48px;
}

.slider-arrow.arrow-left {
  left: -16px;
  transform: translate(100%);
}

.slider-arrow.arrow-right {
  right: -16px;
  transform: translate(-100%);
}

.slider-nav {
  display: none;
}

.event-image {
  z-index: 1;
  opacity: .25;
  transform-origin: 0 0;
  position: absolute;
  bottom: auto;
}

.dark-background {
  background-color: var(--primary);
  color: var(--white);
}

.video {
  margin-bottom: 48px;
  box-shadow: 0 0 24px #00000040, 0 64px 64px -32px #131313bf;
}

.color-white {
  color: var(--white);
}

.party-grid {
  grid-column-gap: 28px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: -32px;
  display: grid;
}

.party-grid._3-up {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
}

.person {
  perspective: 1000px;
  margin-bottom: 64px;
  position: relative;
}

.person-photo {
  border-radius: 10px;
}

.person-photo.hover {
  z-index: 99;
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.person-info {
  z-index: 9999;
  background-image: linear-gradient(180deg, #2b305b00, #2b305b66 25%, var(--primary));
  margin-bottom: -32px;
  margin-left: -32px;
  margin-right: -32px;
  padding-top: 32px;
  padding-bottom: 55px;
  position: absolute;
  inset: auto 0% 0%;
}

.person-info.family {
  background-image: linear-gradient(180deg, #2b305b00, #2b305b80 27%, var(--primary));
  margin-bottom: -49px;
  padding-bottom: 10px;
}

.person-bio {
  margin-bottom: 0;
  padding-right: 64px;
  overflow: hidden;
}

.sticky-wrapper {
  position: sticky;
  top: 96px;
}

.registry-grid {
  grid-column-gap: 56px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding-top: 0;
  display: grid;
}

.registry-logo {
  filter: grayscale();
  border-bottom-style: none;
  padding-bottom: 0;
  transition: filter .2s, transform .2s;
}

.registry-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.logo-image {
  height: 64px;
}

.gallery-link {
  border-bottom-style: none;
  margin-bottom: 28px;
  padding-bottom: 0;
  transition-property: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.gallery-hover {
  background-color: #ff926380;
  background-image: url('../images/icon-zoom.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 48px;
  position: absolute;
  inset: 0%;
}

.event {
  z-index: 1;
  max-width: 408px;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
}

.timeline-tick {
  background-color: var(--primary);
  width: 2px;
  height: 32px;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.timeline-tick.top {
  top: 0;
  bottom: auto;
}

.align-center {
  text-align: center;
}

.wedding-icon {
  max-width: 160px;
}

.accordion-header {
  cursor: pointer;
  align-items: center;
  padding: 16px 28px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.accordion-header:hover {
  background-color: var(--primary);
  color: var(--accent);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.accordion-body {
  box-shadow: inset 0 2px 0 0 var(--primary);
  padding-left: 28px;
  padding-right: 28px;
  overflow: hidden;
}

.accordion-body.light {
  box-shadow: inset 0 2px #fff;
}

.last {
  margin-bottom: 0;
}

.last.hide {
  display: none;
}

.accordion {
  border: 2px solid var(--primary);
  margin-bottom: 32px;
}

.accordion.last {
  margin-bottom: 0;
}

.accordion.light {
  border-color: var(--white);
}

.accordion-text {
  margin-top: 18px;
  margin-bottom: 16px;
}

.form-wrapper {
  z-index: 1;
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

.text-input {
  text-align: center;
  border: 1px solid #0000;
  height: 56px;
  margin-bottom: 16px;
  font-weight: 400;
}

.text-input::placeholder {
  color: #2b305b80;
}

.text-input.accordion-input {
  margin-top: 18px;
}

.form {
  flex-direction: column;
  width: 480px;
  display: flex;
}

.footer {
  display: flex;
}

.footer-links {
  justify-content: space-between;
  display: flex;
}

.footer-item {
  margin-left: 14px;
  margin-right: 14px;
}

.link-list {
  display: flex;
}

.article {
  background-color: var(--white);
  margin-top: 16px;
  margin-bottom: 64px;
  padding: 32px;
}

.styleguide-label {
  color: #2b305b99;
  letter-spacing: 1px;
  border-top: 1px solid #0000001a;
  width: 100%;
  padding-top: 8px;
  font-family: Inconsolata, monospace;
  font-size: 13px;
  line-height: 16px;
}

.styleguide-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
}

.styleguide-grid {
  grid-column-gap: 28px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.styleguide-swatch {
  border: 1px solid #0000;
  width: 100%;
  margin-bottom: 8px;
  padding: 48px;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-black {
  background-color: var(--black);
}

.bg-white {
  background-color: var(--white);
}

.bg-white.styleguide-swatch {
  border-color: #1313131a;
}

.styleguide-code {
  background-color: #ffcfbb;
  border-radius: 3px;
  padding-left: 6px;
  padding-right: 4px;
  font-family: Inconsolata, monospace;
  font-size: 15px;
  display: inline-block;
}

.styleguide-instruction {
  border-left: 3px solid var(--accent);
  background-color: #f0f0f0;
  border-radius: 0 3px 3px 0;
  margin-bottom: 32px;
  padding: 12px 24px;
  font-family: Inconsolata, monospace;
}

.color-primary {
  color: var(--primary);
}

.color-black {
  color: var(--black);
}

.styleguide-link {
  border-bottom-style: none;
  padding-bottom: 0;
  text-decoration: underline;
}

.styleguide-padding {
  flex: 1;
  align-self: stretch;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.styleguide-padding.bg-primary.align-center {
  justify-content: center;
}

.styleguide-body {
  background-image: linear-gradient(#2b305bcc, #2b305bcc), url('../images/hero-image-2_1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.styleguide-back-link {
  color: var(--white);
  margin-bottom: 32px;
}

.gallery-grid {
  grid-column-gap: 28px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  margin-bottom: -28px;
  display: grid;
}

.hero-body {
  width: 100%;
}

.utility-page-wrapper {
  color: var(--white);
  text-transform: uppercase;
  background-image: url('../images/bg-shadows_1.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  padding-left: 28px;
  padding-right: 28px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.utility-page-content {
  z-index: 1;
  position: relative;
}

.padded-top {
  padding-top: 32px;
}

.radio-button {
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.radio-group {
  border: 2px solid #fff;
  justify-content: space-around;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-top: 20px;
  padding-bottom: 16px;
  display: flex;
}

.radio-button-label {
  margin-bottom: 0;
  font-size: 15px;
}

.radio-button-toggle {
  border-width: 2px;
  border-color: var(--white);
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-bottom: 12px;
  margin-left: 0;
  transition: border-width .2s;
}

.radio-button-toggle.w--redirected-checked {
  border-width: 6px;
  border-color: var(--accent);
}

.radio-button-toggle.w--redirected-focus {
  box-shadow: 0 0 0 3px #ffffff40;
}

.cancel-link {
  z-index: 1;
  color: var(--white);
  margin-bottom: 32px;
  position: absolute;
  top: 32px;
  left: 32px;
}

.error-message {
  margin-top: 16px;
}

.party-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
}

.party-title.large {
  margin-top: 4px;
  font-size: 17px;
  line-height: 21px;
  position: relative;
}

.text-span {
  position: absolute;
  inset: auto 0% 32px auto;
}

.small {
  font-size: 13px;
}

.small.mb-0 {
  margin-bottom: 0;
}

.pill {
  background-color: var(--accent);
  color: var(--white);
  border-radius: 13px;
  margin-bottom: 5px;
  padding: 1px 13px;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
}

.paragraph {
  margin-bottom: 5px;
  font-size: 18px;
}

.paragraph-2 {
  margin-bottom: 10px;
}

.paragraph-3 {
  font-size: 15px;
  line-height: 21px;
}

.paragraph-3.mt {
  margin-top: 8px;
  margin-bottom: 0;
}

.countdown-number {
  color: #fff;
  text-align: center;
  letter-spacing: -2.5px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.countdown-number.minutes, .countdown-number.hours, .countdown-number.seconds {
  color: #fff;
}

.countdown-box {
  border: 1px #fff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  height: auto;
}

.countdown-grid {
  grid-column-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 400px;
  margin-top: 30px;
  position: relative;
  inset: auto auto 3%;
}

.countdown-box-inner {
  border-bottom: 4px #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.countdown-box-inner.seconds {
  border-bottom-style: none;
  border-bottom-color: #fff;
}

.countdown-box-inner.hours, .countdown-box-inner.minutes {
  border-bottom-color: #fff;
}

.countdown-meta {
  color: #fff;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.heading-2, .heading-3 {
  margin-top: 0;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.heading-4 {
  margin-top: 0;
}

@media screen and (min-width: 1280px) {
  .hero {
    background-image: linear-gradient(to bottom, null, null), url('../images/IMG_1500.JPG');
    background-position: 0 0, 50% 100%;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-bottom: 64px;
  }

  .nav {
    background-color: var(--white);
    justify-content: flex-start;
    display: flex;
  }

  .section {
    min-height: 0;
    padding-top: 64px;
  }

  .section.section-video {
    padding-top: 128px;
  }

  .menu {
    background-color: var(--primary);
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
  }

  .menu-link {
    color: var(--white);
    text-align: left;
    border-bottom-style: solid;
    border-bottom-color: #ffffff1a;
    flex: none;
    padding: 20px 28px;
    transition: letter-spacing .2s, color .2s;
  }

  .menu-link.w--current {
    letter-spacing: 3px;
    border-bottom-color: #ffffff1a;
  }

  .headline-display {
    font-size: 80px;
    line-height: 72px;
  }

  .event-slide {
    width: 50%;
  }

  ._2-column-grid {
    grid-template-columns: 1fr;
    display: block;
  }

  .grid-column {
    padding-left: 0;
    padding-right: 0;
  }

  .party-grid {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .party-grid._3-up {
    margin-bottom: 60px;
  }

  .person {
    margin-bottom: 0;
  }

  .person-info {
    margin-bottom: -16px;
    margin-left: -16px;
    margin-right: -8px;
    padding-bottom: 48px;
  }

  .person-bio {
    padding-right: 48px;
  }

  .sticky-wrapper {
    position: static;
  }

  .registry-grid {
    grid-row-gap: 56px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-link {
    margin-bottom: 20px;
  }

  .gallery-hover {
    background-size: 32px;
    display: none;
  }

  .last {
    margin-bottom: 0;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-item {
    margin-bottom: 16px;
  }

  .footer-item.last {
    margin-bottom: 0;
  }

  .link-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-button {
    background-color: var(--accent);
    margin-left: 28px;
    margin-right: 28px;
    padding: 16px;
    transition: background-color .2s;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon {
    width: 24px;
    height: 24px;
  }

  .menu-close {
    z-index: 1;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .countdown-number {
    font-size: 46px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 36px;
  }

  h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 28px;
  }

  h3 {
    margin-top: 0;
    margin-bottom: 12px;
  }

  h4 {
    margin-top: 0;
  }

  p {
    margin-bottom: 12px;
  }

  blockquote {
    font-size: 24px;
  }

  .hero {
    background-color: var(--primary);
    background-image: none;
    background-position: 0 0;
    background-size: auto;
    height: auto;
    min-height: auto;
    display: block;
    position: relative;
  }

  .container {
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-detail {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .hero-detail-block {
    flex: 0 0 100%;
    width: auto;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .couple {
    margin-top: 14px;
    padding-bottom: 14px;
  }

  .couple-divider {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .headline {
    font-size: 50px;
    line-height: 56px;
  }

  .flourishes.hero-flourishes {
    background-image: url('../images/IMG_1500.JPG');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 344px;
    position: relative;
  }

  .corner.corner-top-left {
    top: 14px;
    left: 14px;
  }

  .corner.corner-top-right {
    top: 14px;
    right: 14px;
  }

  .corner.corner-bottom-right {
    bottom: 14px;
    right: 14px;
  }

  .corner.corner-bottom-left {
    bottom: 14px;
    left: 14px;
  }

  .circle.circle-top {
    top: 32px;
  }

  .circle.circle-right {
    right: 32px;
  }

  .circle.circle-bottom {
    bottom: 32px;
  }

  .circle.circle-left {
    left: 32px;
  }

  .nav {
    display: none;
  }

  .section {
    padding-top: 48px;
  }

  .section.section-video {
    background-color: var(--black);
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    padding-top: 96px;
  }

  .headline-display {
    margin-bottom: 16px;
    font-size: 50px;
    line-height: 50px;
  }

  .timeline {
    height: 512px;
    margin-bottom: 96px;
  }

  .event-slide {
    width: 50%;
  }

  .event-wrapper {
    padding-bottom: 48px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .event-wrapper.bottom {
    padding-top: 48px;
  }

  .table-cell {
    padding: 24px 16px;
  }

  .button {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .video {
    margin-bottom: 24px;
    box-shadow: 0 0 24px #00000040, 0 24px 24px -12px #131313bf;
  }

  .party-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .party-grid._3-up {
    grid-template-columns: 1fr;
  }

  .person {
    justify-content: flex-end;
    margin-bottom: 32px;
    display: flex;
  }

  .person-photo {
    width: 100%;
    margin-right: 0;
  }

  .person-info {
    margin-left: 0;
    padding-bottom: 24px;
    padding-left: 24px;
  }

  .registry-grid {
    grid-column-gap: 56px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr 1fr;
    padding-top: 48px;
  }

  .registry-logo {
    max-width: 100%;
  }

  .logo-image {
    height: 48px;
  }

  .gallery-link {
    width: 100%;
    margin-bottom: 32px;
  }

  .gallery-link.last {
    margin-bottom: 0;
  }

  .event {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-header, .accordion-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .last {
    margin-bottom: 0;
  }

  .accordion-text {
    margin-top: 16px;
    margin-bottom: 14px;
  }

  .form {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .article {
    margin-bottom: 48px;
    padding: 24px;
  }

  .styleguide-instruction {
    margin-bottom: 24px;
  }

  .menu-button {
    margin-left: 14px;
    margin-right: 14px;
  }

  .gallery-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .hero-body {
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
    display: flex;
  }

  .hide-mobile-l {
    display: none;
  }

  .utility-page-wrapper {
    padding-left: 14px;
    padding-right: 14px;
  }

  .utility-page-content {
    width: 100%;
  }

  .radio-button-label {
    font-size: 13px;
    line-height: 16px;
  }

  .image {
    margin-bottom: 10px;
  }

  .heading {
    line-height: 1.2;
  }

  .countdown-grid {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  h2 {
    font-size: 23px;
    line-height: 1.2;
  }

  h3 {
    font-size: 22px;
    line-height: 28px;
  }

  h4 {
    letter-spacing: 1.5px;
    font-size: 16px;
  }

  h5 {
    letter-spacing: 1.5px;
  }

  p {
    font-size: 15px;
  }

  blockquote {
    padding-left: 16px;
  }

  .hero {
    min-height: auto;
  }

  .container {
    padding-bottom: 32px;
  }

  .container.align-center {
    padding-bottom: 48px;
  }

  .hero-detail {
    flex-direction: column;
    align-items: center;
  }

  .hero-detail-block.last {
    margin-bottom: 0;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .couple-divider {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .headline {
    letter-spacing: 2.5px;
    font-size: 40px;
    line-height: 40px;
  }

  .flourishes.hero-flourishes {
    background-position: 50% 100%;
  }

  .corner {
    width: 16px;
    height: 16px;
  }

  .corner.corner-top-left {
    top: 8px;
    left: 8px;
  }

  .corner.corner-top-right {
    top: 8px;
    right: 8px;
  }

  .circle {
    width: 24px;
    height: 12px;
  }

  .circle.circle-top {
    top: 16px;
  }

  .circle.circle-right {
    right: 24px;
  }

  .circle.circle-bottom {
    bottom: 24px;
  }

  .circle.circle-left {
    left: 24px;
  }

  .section {
    padding-top: 32px;
  }

  .section.section-video {
    padding-top: 64px;
  }

  .headline-display {
    font-size: 36px;
    line-height: 35px;
  }

  .timeline {
    height: 360px;
    margin-bottom: 64px;
  }

  .event-slide {
    width: 100%;
  }

  .arrow-icon {
    width: 40px;
    height: 40px;
  }

  .table-cell {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .button {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .button.hotel {
    width: 100%;
    margin-top: -2px;
  }

  .slider-arrow.arrow-left {
    width: 40px;
    left: -26px;
  }

  .slider-arrow.arrow-right {
    width: 40px;
    right: -26px;
  }

  .video {
    margin-bottom: 16px;
    box-shadow: 0 0 24px #00000040;
  }

  .party-grid {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: 1fr;
  }

  .person-photo {
    object-fit: cover;
    margin-right: 0;
  }

  .person-info {
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 16px;
    padding-left: 16px;
  }

  .person-info.family {
    margin-bottom: -54px;
  }

  .gallery-link {
    margin-bottom: 16px;
  }

  .last {
    margin-bottom: 0;
  }

  .accordion {
    margin-bottom: 16px;
  }

  .article {
    padding: 14px;
  }

  .styleguide-grid {
    grid-column-gap: 14px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .styleguide-code {
    font-size: 13px;
  }

  .styleguide-instruction {
    padding-left: 16px;
    font-size: 15px;
  }

  .menu-button {
    margin-left: 13px;
  }

  .hero-body {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hide-mobile-s {
    display: none;
  }

  .utility-page-wrapper {
    align-items: center;
    min-height: 735px;
    padding-top: 64px;
    padding-bottom: 14px;
  }

  .cancel-link {
    left: 50%;
    transform: translate(-50%);
  }

  .image {
    margin-bottom: 8px;
  }

  .heading {
    font-size: 22px;
  }

  .party-title.large {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 17px;
  }

  .countdown-box {
    height: 100px;
  }

  .countdown-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block {
    grid-template-columns: 1fr;
  }
}

#w-node-_512716fd-7deb-c46b-5420-fe62931cac67-0dbfd093, #w-node-_512716fd-7deb-c46b-5420-fe62931cac6d-0dbfd093, #w-node-_512716fd-7deb-c46b-5420-fe62931cac73-0dbfd093, #w-node-_512716fd-7deb-c46b-5420-fe62931cac79-0dbfd093 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0c45b63c-e982-aa71-e81d-fc8a92d67d4e-0dbfd093 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_5925668b-c6fb-a0a5-c5ed-65b180a352b5-0dbfd093 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_5b1dc69e-e2b0-92ba-47ed-ac85986812ba-0dbfd093 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_563d978c-f530-c989-01ef-4c4969343d71-0dbfd093 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-cf609b08-2a06-29fc-4d9a-a4a6c0a7cd70-0dbfd093 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_50f63098-88d6-fdd2-0641-e42d9d9a8311-0dbfd093 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_27acbe06-31e5-c9bb-cd0e-81eb18c21e46-0dbfd093 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_0fe3a3a4-6103-f26e-049a-e6e3c5de26a0-0dbfd093 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-f9c43e98-f2e0-a067-f512-3c73fd991079-0dbfd093 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-e6871020-0acb-2f9b-f625-b7845057da47-0dbfd093 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_01db56ca-c581-f9ac-5c17-2a8e8312b65a-0dbfd09a, #w-node-a5004ddf-6567-ba22-8e4b-d68b623f35ed-0dbfd09a, #w-node-_6416d21e-9e9c-dfd5-1fe5-7b107ce1e53a-0dbfd09a, #w-node-d07bff80-ef1f-c285-b0c5-2ae94c3e731c-0dbfd09a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}


