@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Rouge+Script&display=swap);
@media (min-width: 768px) {
  .hide-for-medium {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .show-for-medium {
    display: none !important;
  }
}

.desktop-navbar {
  height: 70px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.desktop-navbar__logo {
  margin: auto;
  display: flex;
  justify-content: center;
}
.desktop-navbar__title {
  text-transform: uppercase;
  text-align: center;
  font-size: 36px;
  font-family: "Cormorant Garamond", cursive;
  color: white;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .desktop-navbar__title {
    font-size: 60px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.desktop-navbar__subtitle {
  text-align: center;
  font-family: "Rouge Script", cursive;
  font-size: 26px;
  color: white;
  font-weight: 400;
  margin-top: 0px;
}
@media (min-width: 768px) {
  .desktop-navbar__subtitle {
    font-size: 40px;
  }
}
.desktop-navbar__links {
  display: flex;
  gap: 20px;
  justify-content: center;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  align-items: center;
  height: 54px;
  background: rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .desktop-navbar__links {
    gap: 32px;
  }
}
.desktop-navbar__links a {
  font-size: 20px;
  font-family: "Cormorant Garamond", cursive;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}
.desktop-navbar__links a:not(:last-of-type) {
  border-right: 2px solid white;
}

.mobile-navbar {
  height: 76px;
  border-bottom: 1px solid white;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.mobile-navbar__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
  height: 70px;
  width: 100px;
}
.mobile-navbar__menu {
  top: 20px;
  right: 20px;
  position: absolute;
  display: flex;
  justify-content: center;
  border: none;
  background-color: transparent;
  align-items: center;
  height: 38px;
  width: 38px;
}
.mobile-navbar__popout-link {
  border-bottom: 1px solid #1D6179;
  width: 300px;
  padding: 16px 0px;
  text-decoration: none;
  color: #1D6179;
  text-decoration: none;
  font-size: 18px;
}
.mobile-navbar__popout-link:active, .mobile-navbar__popout-link:focus, .mobile-navbar__popout-link:hover {
  color: #1D6179;
}
.mobile-navbar__popout-link:first-of-type {
  border-top: 1px solid #1D6179;
}
.mobile-navbar__popout {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  align-items: center;
  width: 90vw;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: white;
  position: fixed;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.mobile-navbar__popout.open {
  transform: translateX(0);
}
.mobile-navbar__popout button {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: transparent;
  border: none;
}

body {
  margin: 0px;
}

.banner {
  position: relative;
  overflow-x: clip;
  position: absolute;
  top: 0px;
  z-index: 1;
}
.banner__content {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
}
.banner__gradient {
  position: absolute;
  top: 0px;
  z-index: 3;
  height: 90vh;
  width: 100%;
  left: 0;
}
.banner__flower-container {
  position: absolute;
  top: -45px;
  left: -55px;
  transform-style: preserve-3d;
  max-width: 30vw;
}
@media (min-width: 768px) {
  .banner__flower-container {
    top: -215px;
    left: 0;
  }
}
.banner__flower-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner__flower-container-flipped {
  position: absolute;
  top: -45px;
  right: -55px;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  max-width: 30vw;
}
@media (min-width: 768px) {
  .banner__flower-container-flipped {
    top: -215px;
    right: 0;
  }
}
.banner__flower-container-flipped img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner__title {
  text-transform: uppercase;
  text-align: center;
  font-size: 36px;
  font-family: "Cormorant Garamond", cursive;
  color: white;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .banner__title {
    font-size: 60px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.banner__button {
  position: absolute;
  top: 16px;
  text-decoration: none;
  right: 16px;
  background-color: #FFF;
  border: 1px solid #b6c7ff;
  margin: auto;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  font-family: "Cormorant Garamond", cursive;
  color: #1D6179;
  align-items: center;
  height: 48px;
}
.banner__subtitle {
  text-align: center;
  font-family: "Rouge Script", cursive;
  font-size: 26px;
  color: white;
  font-weight: 400;
  margin-top: 0px;
}
@media (min-width: 768px) {
  .banner__subtitle {
    font-size: 40px;
  }
}
.banner__image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 90vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .banner__image-container {
    max-height: calc(100vh - 260px);
  }
}
.banner__image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.rsvp-form {
  position: relative;
}
.rsvp-form p {
  color: #1D6179;
  margin: 20px 0px 0px;
  border-top: 1px solid #1D6179;
  font-family: "Cormorant Garamond", cursive;
  padding: 20px 0px;
}
.rsvp-form h3 {
  color: #1D6179;
  padding: 20px 0px;
  font-family: "Cormorant Garamond", cursive;
  margin: 0px;
  font-weight: 500;
  font-size: 20px;
}
.rsvp-form__con-button-wrapper {
  display: block !important;
  margin-top: 16px;
}
.rsvp-form__col-button-wrapper {
  display: block !important;
}
.rsvp-form__submit {
  background-color: white;
  padding: 10px;
  color: #1D6179;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  border-radius: 4px;
  width: 160px;
  border: 1px solid #1D6179;
}
@media (min-width: 768px) {
  .rsvp-form__submit {
    margin-top: 20px;
  }
}
.rsvp-form div[data-freeform-controls] {
  justify-content: center !important;
}
.rsvp-form__select {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0px;
}
@media (min-width: 768px) {
  .rsvp-form__select {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .rsvp-form__select--top {
    margin-bottom: 20px;
  }
}
.rsvp-form__child-header {
  text-align: left;
  font-size: 18px;
  color: #1D6179;
  margin: 0px !important;
}
.rsvp-form__child-text {
  text-align: left;
  font-size: 16px;
  color: #1D6179;
  margin: 0px !important;
  border-top: none !important;
  padding: 10px 0px !important;
}
.rsvp-form__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 10px;
}
.rsvp-form__wrapper form {
  padding: 0px 30px 30px;
  width: 80vw;
}
.rsvp-form__wrapper form input {
  font-weight: 500;
  border: 1px solid #1D6179;
  border-radius: 4px;
  color: #1D6179;
  padding: 4px 4px;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 16px;
  width: inherit;
}
.rsvp-form__wrapper form input::-moz-placeholder {
  color: #1D6179;
}
.rsvp-form__wrapper form input::placeholder {
  color: #1D6179;
}
@media (min-width: 768px) {
  .rsvp-form__wrapper form input {
    width: auto;
    margin-bottom: 0px;
  }
}
.rsvp-form__wrapper form select {
  border: none;
  font-weight: 500;
  color: #1D6179;
  border: 1px solid #1D6179;
  background-color: transparent !important;
  border-radius: 4px;
  padding: 4px 4px;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .rsvp-form__wrapper form select {
    margin-bottom: 20px;
  }
}
.rsvp-form__wrapper form textarea {
  font-weight: 500;
  border: 1px solid #1D6179;
  color: #1D6179;
  border-radius: 4px;
  padding: 4px 4px;
  grid-column: span 2;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  width: 98% !important;
  margin-bottom: 40px;
}
.rsvp-form__wrapper form textarea::-moz-placeholder {
  color: #1D6179;
}
.rsvp-form__wrapper form textarea::placeholder {
  color: #1D6179;
}
@media (min-width: 768px) {
  .rsvp-form__wrapper form textarea {
    margin-top: 20px;
  }
}
.rsvp-form__grid-2 {
  display: block;
  width: 97%;
  padding-top: 32px;
  max-width: 600px;
  margin: auto;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.col-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .col-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.col-images__image-wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: end;
}
.col-images__image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.order__container {
  padding: 0px 16px 16px;
}
.order__container h3 {
  font-family: "Cormorant Garamond", cursive;
  color: #1D6179;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .order__container h3 {
    font-size: 60px;
  }
}
.order__tile h4 {
  font-family: "Rouge Script", cursive;
  color: #1D6179;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 8px;
  margin-top: 0px;
}
.order__tile p {
  font-family: "Cormorant Garamond", cursive;
  color: #1D6179;
  font-size: 16px;
  margin-top: 0px;
}

.timeline {
  padding: 20px 20px;
  max-width: 600px;
  margin: auto;
}
@media (min-width: 768px) {
  .timeline {
    padding: 40px 40px;
  }
}
.timeline__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline__header h3 {
  color: #1D6179;
  margin: 20px 0px 0px;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  font-family: "Rouge Script", cursive;
}
.timeline__header h2 {
  margin: 0px;
  color: #1D6179;
  text-align: center;
  font-weight: 400;
  font-family: "Cormorant Garamond", cursive;
  text-transform: uppercase;
  font-size: 32px;
}
@media (min-width: 768px) {
  .timeline__header h2 {
    font-size: 60px;
  }
}
.timeline__entry {
  display: flex;
  gap: 8px;
}
@media (min-width: 768px) {
  .timeline__entry {
    gap: 16px;
  }
}
.timeline__entry p {
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  color: #1D6179;
}
@media (min-width: 768px) {
  .timeline__entry p {
    font-size: 18px;
  }
}
.timeline__top-circle {
  height: 40px;
  border-left: 1px solid #1D6179;
  position: relative;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .timeline__top-circle {
    border-left: 2px solid #1D6179;
  }
}
.timeline__t-circle {
  height: 20px;
  width: 20px;
  border: 1px solid #1D6179;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: -12px;
  background-color: white;
}
@media (min-width: 768px) {
  .timeline__t-circle {
    border: 2px solid #1D6179;
  }
}
.timeline__bottom-circle {
  height: 40px;
  border-left: 1px solid #1D6179;
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .timeline__bottom-circle {
    border-left: 2px solid #1D6179;
  }
}
.timeline__b-circle {
  height: 20px;
  width: 20px;
  border: 1px solid #1D6179;
  border-radius: 50%;
  position: absolute;
  bottom: -12px;
  left: -12px;
  background-color: white;
}
@media (min-width: 768px) {
  .timeline__b-circle {
    border: 2px solid #1D6179;
  }
}
.timeline__time {
  font-weight: 600;
  margin: 10px;
}
.timeline__description {
  font-weight: 400;
  margin: 10px;
}
.timeline__entry:not(:last-child) {
  border-bottom: 1px solid #1D6179;
}
@media (min-width: 768px) {
  .timeline__entry:not(:last-child) {
    border-bottom: 2px solid #1D6179;
  }
}
.timeline__entries-wrapper {
  border-top: 1px solid #1D6179;
  border-bottom: 1px solid #1D6179;
}
@media (min-width: 768px) {
  .timeline__entries-wrapper {
    border-top: 2px solid #1D6179;
    border-bottom: 2px solid #1D6179;
  }
}

.faqs {
  padding: 20px 20px;
  max-width: 600px;
  margin: auto;
}
@media (min-width: 768px) {
  .faqs {
    padding: 40px 40px;
  }
}
.faqs h3 {
  color: #1D6179;
  margin: 20px 0px 0px;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  font-family: "Rouge Script", cursive;
}
.faqs h2 {
  margin: 0px;
  color: #1D6179;
  text-align: center;
  font-weight: 400;
  font-family: "Cormorant Garamond", cursive;
  text-transform: uppercase;
  font-size: 32px;
}
@media (min-width: 768px) {
  .faqs h2 {
    font-size: 60px;
  }
}
.faqs__question {
  cursor: pointer;
  padding: 20px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 10px;
  text-align: left;
}
@media (min-width: 768px) {
  .faqs__question {
    margin: 0px 20px;
  }
}
.faqs__question h3 {
  color: #1D6179;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  margin: 0px 8px 0px 0px;
  font-family: "Cormorant Garamond", cursive;
}
@media (min-width: 768px) {
  .faqs__question h3 {
    font-size: 18px;
  }
}
.faqs__question img {
  max-width: 20px;
}
@media (min-width: 768px) {
  .faqs__question img {
    max-width: 40px;
  }
}
.faqs__faq {
  padding-bottom: 20px;
}
.faqs__faq:not(:last-child) {
  border-bottom: 1px solid #1D6179;
}
@media (min-width: 768px) {
  .faqs__faq:not(:last-child) {
    border-bottom: 2px solid #1D6179;
  }
}
.faqs__answer {
  display: none;
  padding: 20px 0px 0px;
  margin: 0px 10px;
  max-width: 90%;
  text-align: left;
}
@media (min-width: 768px) {
  .faqs__answer {
    margin: 0px 20px;
  }
}
.faqs__answer p {
  color: #1D6179;
  font-family: "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  margin: 0px;
}

.wedding-info {
  padding: 30px 16px 40px;
}
.wedding-info h2 {
  margin: 0px;
  color: #1D6179;
  padding: 30px 0px 0px;
  text-align: center;
  font-weight: 400;
  font-family: "Cormorant Garamond", cursive;
  text-transform: uppercase;
  font-size: 32px;
}
@media (min-width: 768px) {
  .wedding-info h2 {
    font-size: 60px;
  }
}
.wedding-info p {
  color: #1D6179;
  font-size: 18px;
  padding-bottom: 0px;
  margin-top: 10px;
  text-align: center;
  font-family: "Cormorant Garamond", cursive;
}
@media (min-width: 768px) {
  .wedding-info p {
    font-size: 24px;
  }
}
.wedding-info__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 150px;
  overflow: hidden;
}
.wedding-info__icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wedding-info a {
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #1D6179;
  min-width: 120px;
  color: #1D6179;
  margin: auto;
  font-family: "Cormorant Garamond", cursive;
  text-align: center;
}
.wedding-info__icon-wrapper-date {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 250px;
  overflow: hidden;
  padding-bottom: 30PX;
}
.wedding-info__icon-wrapper-date img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.full-width-image {
  position: relative;
  overflow-x: clip;
  z-index: 1;
  margin-top: -76px;
}
@media (min-width: 768px) {
  .full-width-image {
    margin-top: -70px;
  }
}
.full-width-image__image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 80vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .full-width-image__image-container {
    height: 100vh;
  }
}
.full-width-image__image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.full-width-image__overlay {
  position: absolute;
  top: 0px;
  z-index: 3;
  height: 80vh;
  width: 100%;
  left: 0;
}
@media (min-width: 768px) {
  .full-width-image__overlay {
    height: 100vh;
  }
}
.full-width-image__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 4;
}
.full-width-image__header h3 {
  color: white;
  margin: 0px 0px 0px;
  font-weight: 400;
  font-size: 36px;
  text-align: center;
  font-family: "Rouge Script", cursive;
}
.full-width-image__header h2 {
  margin: 0px;
  color: white;
  text-align: center;
  font-weight: 400;
  font-family: "Cormorant Garamond", cursive;
  text-transform: uppercase;
  font-size: 36px;
}
@media (min-width: 768px) {
  .full-width-image__header h2 {
    font-size: 60px;
  }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: pulse-move 2s infinite ease-in-out;
  opacity: 0.85;
}
.scroll-down-indicator .arrow-icon {
  width: 36px;
  height: 36px;
  stroke: white;
  animation: bounce-fade 2s infinite ease-in-out;
}

@keyframes bounce-fade {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}
.registry {
  padding: 20px 16px 80px;
}
.registry p {
  color: #1D6179;
  font-size: 16px;
  text-align: center;
  padding: 0px 20px 10px;
  font-family: "Cormorant Garamond", cursive;
}
.registry__button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.registry a {
  text-decoration: none;
  border: 1px solid #1D6179;
  padding: 8px 16px;
  color: #1D6179;
  font-family: "Cormorant Garamond", cursive;
  margin: auto;
  text-align: center;
}
.registry__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-height: 300px;
  overflow: hidden;
}
.registry__icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.registry h3 {
  color: #1D6179;
  margin: 20px 0px 0px;
  font-weight: 400;
  font-size: 36px;
  text-align: center;
  font-family: "Rouge Script", cursive;
}
.registry h2 {
  margin: 0px;
  color: #1D6179;
  text-align: center;
  font-weight: 400;
  font-family: "Cormorant Garamond", cursive;
  text-transform: uppercase;
  font-size: 36px;
}
@media (min-width: 768px) {
  .registry h2 {
    font-size: 60px;
  }
}

.accomodation {
  padding: 30px 16px 40px;
  max-width: 600px;
  margin: auto;
}
.accomodation__top-text {
  color: #1D6179;
  font-size: 18px;
  margin: 0px;
  padding-bottom: 30px;
  font-family: "Cormorant Garamond", cursive;
}
.accomodation__tile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-decoration: none;
  gap: 10px;
  text-decoration: none;
}
.accomodation__tile:not(:last-of-type) {
  margin-bottom: 20px;
}
.accomodation__image-wrapper {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .accomodation__image-wrapper {
    height: 220px;
  }
}
.accomodation__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accomodation__content {
  text-align: left;
  display: flex;
  align-items: center;
}
.accomodation__content h3 {
  font-family: "Cormorant Garamond", cursive;
  font-size: 18px;
  margin: 0px;
  color: #1D6179;
  text-transform: uppercase;
  padding-bottom: 3px;
}
.accomodation__content p {
  font-family: "Cormorant Garamond", cursive;
  font-size: 20px;
  color: #1D6179;
  margin: 0px;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
  max-width: 600px;
  margin: auto;
}
.links__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.links img {
  margin: auto;
  text-align: center;
}
.links__link {
  background-color: #8FB0D2;
  aspect-ratio: 1/1;
  max-width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.links__link:hover {
  opacity: 0.3;
}
.links h3 {
  color: white;
  text-decoration: none;
  margin: 20px 0px 0px;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  font-family: "Rouge Script", cursive;
}
.links h2 {
  margin: 0px;
  color: white;
  text-align: center;
  font-weight: 400;
  font-family: "Cormorant Garamond", cursive;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}
@media (min-width: 768px) {
  .links h2 {
    font-size: 28px;
  }
}

.rsvp-responses {
  padding: 20px 20px 60px 20px;
}
.rsvp-responses__person {
  border-bottom: 1px solid #1D6179;
}
.rsvp-responses h3 {
  color: #1D6179;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  margin: 0px 8px 0px 0px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #1D6179;
  font-family: "Cormorant Garamond", cursive;
}
@media (min-width: 768px) {
  .rsvp-responses h3 {
    font-size: 20px;
  }
}
.rsvp-responses h4 {
  color: #1D6179;
  background-color: rgba(29, 97, 121, 0.0784313725);
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  margin: 0px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #1D6179;
  font-family: "Cormorant Garamond", cursive;
}
@media (min-width: 768px) {
  .rsvp-responses h4 {
    font-size: 18px;
  }
}
.rsvp-responses p {
  color: #1D6179;
  font-family: "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  margin: 0px;
}

.taxi {
  padding: 30px 16px 40px;
}
.taxi img {
  margin: auto;
  padding: 0px 0px 30px;
  display: flex;
}
.taxi__links:not(:last-of-type) {
  padding-bottom: 20px;
}
.taxi__links h3 {
  text-transform: uppercase;
  color: #1D6179;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin: 0px 0px 5px;
  font-size: 18px;
  text-align: center;
}
.taxi__links p {
  color: #1D6179;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin: 0px;
  text-align: center;
}
.taxi__bottom {
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin: 0px auto;
  padding-top: 30px;
  max-width: 300px;
  color: #1D6179;
  text-align: center;
}
