* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

body,
::placeholder {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: myriad-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  padding-bottom: 2rem;
}

body,
html {
  overflow-x: hidden;
}
body.no-scroll,
html.no-scroll {
  overflow-y: hidden;
}
body .overlay,
html .overlay {
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.4;
  transform: scale(0);
  transition: all 0.1s ease-in-out;
}
body .overlay.shown,
html .overlay.shown {
  transform: scale(1);
}

::placeholder {
  font-size: 0.855rem;
  color: rgba(117, 117, 117, 0.6);
}

header {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  color: white;
  text-shadow: 0 0 20px black;
  width: 100%;
  height: 3.5rem;
  padding: 0rem 20px;
  z-index: 999;
  transition: 0.1s linear;
}
header.scrolled {
  background-color: white;
  box-shadow: 0 2px 50px rgba(122, 122, 122, 0.5);
}
header > * {
  display: -webkit-flex;
  display: flex;
}
header > * > * {
  margin-top: auto;
  margin-bottom: auto;
}
header #our-names {
  order: -3;
  flex: 100%;
  justify-content: center;
}
header #our-names .name {
  font-family: wreath, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.2rem;
}
@media screen and (min-width: 342px) {
  header #our-names .name {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 550px) {
  header #our-names .name {
    font-size: 5rem;
    line-height: 5rem;
    margin-top: 1rem;
  }
}
header #lastname {
  font-family: wreath, serif;
  font-weight: 700;
  font-style: normal;
  order: -2;
  flex: 50%;
  height: 100%;
  padding-top: 0.5rem;
  display: none;
}
header #lastname p {
  font-size: 3.5rem;
  line-height: 2rem;
}
header #countdown {
  order: 1;
  justify-content: center;
  display: none;
}
header nav {
  order: 0;
  margin-top: 0rem;
  justify-content: center;
  border-top: 1px solid white;
  padding-top: 0.5rem;
  margin: 0;
  width: 100%;
  max-width: 500px;
}
header nav ul {
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
header nav ul li {
  margin: 0 0.5rem;
  cursor: pointer;
  position: relative;
}
@media (hover: hover) {
  header nav ul li:hover::after {
    width: 85%;
  }
}
header nav ul li::after {
  content: "";
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid white;
  width: 0;
  transition: all 0.15s ease-in-out;
}
header nav ul li a {
  font-size: 0.77rem;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 378px) {
  header nav ul li a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 550px) {
  header nav ul li a {
    font-size: 1.2rem;
  }
}

main section {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}
main section .content {
  margin: 0 auto;
  margin-top: 1rem;
  width: 100%;
  display: -webkit-flex;
  display: flex;
}
main section#home {
  position: relative;
  height: 100vh;
  transform: translate3d(0, 0, 1px);
  overflow: hidden;
  transition: all 0.3s linear;
}
main section#home .slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 1.5s ease-in-out;
}
main section#home .slideshow-image.hidden {
  opacity: 0;
}
main section#home .slideshow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1000px) {
  main section#wedding-day {
    padding: 0 20px;
  }
}
main section#wedding-day .content {
  flex-direction: column-reverse;
  justify-content: center;
  max-width: 1300px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  main section#wedding-day .content {
    flex-direction: row;
  }
}
main section#wedding-day .content .map {
  height: 45vh;
  border-radius: 8px;
}
@media screen and (min-width: 1000px) {
  main section#wedding-day .content .map {
    margin-bottom: 0;
    height: 35vh;
    width: 50%;
    height: 350px;
  }
}
main section#wedding-day .content .details {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 1000px) {
  main section#wedding-day .content .details {
    margin: auto;
    width: 369px;
  }
}
main section#wedding-day .content .details::after {
  content: "";
  position: absolute;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  height: calc(100% - 20px);
  width: calc((100% - 279.25px) / 2 + 94.25px + 12px);
  top: 10px;
  left: 0;
}
@media screen and (min-width: 550px) {
  main section#wedding-day .content .details::after {
    width: calc((100% - 329.25px) / 2 + 94.25px + 12px);
  }
}
@media screen and (min-width: 1000px) {
  main section#wedding-day .content .details::after {
    width: 107px;
  }
}
main section#wedding-day .content .details > * {
  width: 100%;
  justify-content: center;
  display: -webkit-flex;
  display: flex;
  margin: 0.5rem 0;
}
@media screen and (min-width: 1000px) {
  main section#wedding-day .content .details > * {
    justify-content: start;
  }
}
main section#wedding-day .content .details > * .details-heading {
  text-align: right;
  margin: auto 0;
  font-weight: 700;
  margin-right: 12px;
  font-size: 1.3rem;
  width: 94.25px;
  color: rgb(62, 61, 61);
}
main section#wedding-day .content .details > * .details-info {
  text-align: left;
  margin: 0;
  margin-left: 12px;
  font-size: 1.2rem;
  width: 161px;
}
@media screen and (min-width: 550px) {
  main section#wedding-day .content .details > * .details-info {
    width: 211px;
  }
}
@media screen and (min-width: 1000px) {
  main section#wedding-day .content .details > * .details-info {
    width: auto;
  }
}
main section#rsvp .content {
  justify-content: center;
}
main section#rsvp .content form {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
  flex-wrap: wrap;
}
main section#rsvp .content form > * {
  width: 100%;
}
@keyframes shakeerror {
  0% {
    margin-left: 0rem;
  }
  25% {
    margin-right: -0.5rem;
  }
  75% {
    margin-left: -0.5rem;
    margin-right: 0;
  }
  100% {
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
main section#rsvp .content form > .search-inputs {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 10px - 50px);
}
main section#rsvp .content form > .search-inputs .search-input {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  width: calc(50% - 5px);
  transition: all 0.1s linear;
}
main section#rsvp .content form > .search-inputs .search-input:first-child {
  margin-right: 10px;
}
main section#rsvp .content form > .search-inputs .search-input:hover {
  box-shadow: 0px 0px 15px rgba(117, 117, 117, 0.4);
}
main section#rsvp .content form > .search-inputs .search-input > * {
  width: 100%;
}
main section#rsvp .content form > .search-inputs .search-input label {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  font-size: 0.9rem;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
}
main section#rsvp .content form > .search-inputs .search-input input {
  height: 60px;
}
main section#rsvp .content form > .search-inputs .search-input input,
main section#rsvp .content form > .search-inputs select,
main section#rsvp .content form > .search-inputs textarea {
  z-index: 0;
  position: relative;
  background-color: #f1f1f1;
  border: none;
  padding: 10px;
  padding-top: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.855rem;
  transition: box-shadow 0.1s linear;
}
main section#rsvp .content form > .search-inputs .search-input input:focus, main section#rsvp .content form > .search-inputs .search-input input:focus-visible, main section#rsvp .content form > .search-inputs .search-input input:hover,
main section#rsvp .content form > .search-inputs select:focus,
main section#rsvp .content form > .search-inputs select:focus-visible,
main section#rsvp .content form > .search-inputs select:hover,
main section#rsvp .content form > .search-inputs textarea:focus,
main section#rsvp .content form > .search-inputs textarea:focus-visible,
main section#rsvp .content form > .search-inputs textarea:hover {
  outline: none;
  box-shadow: 0px 0px 15px rgba(117, 117, 117, 0.4);
}
main section#rsvp .content form > #party-members {
  width: 100%;
  margin-bottom: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
main section#rsvp .content form > #party-members.no-content {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  display: none;
}
main section#rsvp .content form > #party-members .party-member {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  margin-bottom: 0.5rem;
}
main section#rsvp .content form > #party-members .party-member p {
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #f1f1f1;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  width: calc(60% - 5px);
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
main section#rsvp .content form > #party-members .party-member > div {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  width: calc(40% - 5px);
}
@media screen and (min-width: 375px) {
  main section#rsvp .content form > #party-members .party-member > div {
    flex-direction: row;
  }
}
main section#rsvp .content form > #party-members .party-member > div input {
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 0;
  background: #f1f1f1;
  border-radius: 8px;
  border: 0px solid transparent;
  outline: none;
  height: calc(1.1rem + 15px);
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
@media screen and (min-width: 375px) {
  main section#rsvp .content form > #party-members .party-member > div input {
    width: calc(50% - 2.5px);
    height: unset;
  }
}
main section#rsvp .content form > #party-members .party-member > div input::after {
  font-weight: 600;
  font-size: 1rem;
}
main section#rsvp .content form > #party-members .party-member > div input#yes {
  margin-right: 0;
  margin-bottom: 5px;
}
main section#rsvp .content form > #party-members .party-member > div input#yes::after {
  content: "Accept";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: calc(50% - 0.5rem);
}
main section#rsvp .content form > #party-members .party-member > div input#yes:checked, main section#rsvp .content form > #party-members .party-member > div input#yes:hover {
  background: rgba(92, 178, 93, 0.3);
}
@media screen and (min-width: 375px) {
  main section#rsvp .content form > #party-members .party-member > div input#yes {
    margin-right: 5px;
    margin-bottom: 0;
  }
}
main section#rsvp .content form > #party-members .party-member > div input#no::after {
  content: "Decline";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: calc(50% - 0.5rem);
}
main section#rsvp .content form > #party-members .party-member > div input#no:checked, main section#rsvp .content form > #party-members .party-member > div input#no:hover {
  background: rgba(229, 53, 41, 0.3);
}
main section#rsvp .content form > #party-members .party-member .dietary-restrictions {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-top: 0.5rem;
  background-color: #f1f1f1;
  padding: 10px;
  padding-top: 35px;
  transition: all 0.1s linear;
}
main section#rsvp .content form > #party-members .party-member .dietary-restrictions:hover {
  box-shadow: 0px 0px 15px rgba(117, 117, 117, 0.4);
}
main section#rsvp .content form > #party-members .party-member .dietary-restrictions label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.9rem;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
}
main section#rsvp .content form > #party-members .party-member textarea {
  z-index: 0;
  position: relative;
  background-color: #f1f1f1;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.855rem;
  transition: box-shadow 0.1s linear;
  width: 100%;
  height: 75px;
  resize: vertical;
  border-radius: 8px;
}
main section#rsvp .content form > #party-members .party-member textarea:focus, main section#rsvp .content form > #party-members .party-member textarea:focus-visible, main section#rsvp .content form > #party-members .party-member textarea:hover {
  outline: none;
}
main section#rsvp .content form > a {
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
main section#rsvp .content form > a#submit {
  background: #51bee5;
  width: calc(50% - 5px);
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -0.5rem;
}
main section#rsvp .content form > a#submit:hover {
  background: rgba(81, 190, 229, 0.7);
}
main section#rsvp .content form > a#submit.no-data {
  margin: 0;
  padding: 0;
  height: 0;
  width: 0;
  display: none;
}
main section#rsvp .content form > a#search {
  background: #1ac86d;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 60px;
  width: 50px;
}
main section#rsvp .content form > a#search:hover {
  background: rgb(92, 178, 93);
}
main section#rsvp .confirmation {
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  padding: 1.2rem;
  width: calc(100% - 40px);
  max-width: 600px;
  background: #f1f1f1;
  box-shadow: 0px 0px 15px rgba(117, 117, 117, 0.4);
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
main section#rsvp .confirmation.shown {
  transform: translate(-50%, -50%) scale(1);
}
main section#rsvp .confirmation p {
  margin: 0;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
main section#rsvp .confirmation button {
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  background: #6cbde5;
  transition: all 0.1s ease-in-out;
}
main section#lodging .content, main section#activities .content {
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(5 * (2rem + 250px) - 2rem);
}
main section#lodging .content .card, main section#activities .content .card {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  background-color: #f1f1f1;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
main section#lodging .content .card:hover, main section#activities .content .card:hover {
  transform: scale(1.02);
}
@media screen and (min-width: calc(500px + 2rem + 40px)) {
  main section#lodging .content .card, main section#activities .content .card {
    max-width: 250px;
  }
}
main section#lodging .content .card .card-image, main section#activities .content .card .card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: calc(500px + 2rem + 40px)) {
  main section#lodging .content .card .card-image, main section#activities .content .card .card-image {
    height: 200px;
  }
}
main section#lodging .content .card .card-image img, main section#activities .content .card .card-image img {
  width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: calc(500px + 2rem + 40px)) {
  main section#lodging .content .card .card-image img, main section#activities .content .card .card-image img {
    height: 100%;
    width: auto;
  }
}
main section#lodging .content .card p, main section#activities .content .card p {
  font-size: 1.3rem;
  margin: 0;
  padding: 1rem;
  font-weight: 600;
  color: rgb(62, 61, 61);
  margin-top: auto;
  margin-bottom: auto;
}
main section#lodging .content .card p .subtext, main section#activities .content .card p .subtext {
  font-size: 1.1rem;
  color: rgba(62, 61, 61, 0.7);
  font-style: italic;
}
main section#registry {
  margin-top: -0.5rem;
}
main section#registry .content {
  display: -webkit-flex;
  display: flex;
  flex-direction: column-reverse;
  max-width: 1300px;
}
@media screen and (min-width: 1000px) {
  main section#registry .content {
    flex-direction: row;
  }
}
main section#registry .content > * {
  margin: auto 0;
}
@media screen and (min-width: 1000px) {
  main section#registry .content > * {
    width: 50%;
  }
}
main section#registry .content .registry-img {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  main section#registry .content .registry-img {
    width: 50%;
    margin-left: 1rem;
  }
}
main section#registry .content .registry-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
}
@media screen and (min-width: 1000px) {
  main section#registry .content .registry-img img {
    width: auto;
    max-height: 350px;
  }
}
main section#registry .content p {
  font-size: 1.2rem;
  text-align: center;
  margin: auto;
  margin-top: 1.3rem;
}
@media screen and (min-width: 550px) {
  main section#registry .content p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 800px) {
  main section#registry .content p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1000px) {
  main section#registry .content p {
    text-align: right;
    max-width: 461px;
    margin-top: auto;
    padding: 0;
  }
}
main section#registry .content p.thanks {
  font-style: italic;
  font-weight: 600;
  margin-top: 0.85rem;
  color: rgb(62, 61, 61);
}
main section#questions .content {
  justify-content: center;
  flex-wrap: wrap;
}
main section#questions .content > div {
  display: -webkit-flex;
  display: flex;
  background: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
  width: 250px;
  max-width: 100%;
  cursor: pointer;
  margin: 0 0.5rem;
  margin-bottom: 10px;
  transition: all 0.1s linear;
}
main section#questions .content > div:hover {
  transform: scale(1.05);
}
main section#questions .content > div .icon {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background-color: #9f9f9f;
  padding: 10px;
}
main section#questions .content > div a {
  margin: auto;
  color: black;
  text-decoration: none;
}
main section > h1 {
  font-family: wreath, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  line-height: 3rem;
  margin-top: 2.5rem;
  color: rgb(62, 61, 61);
}
main section > h2 {
  font-family: myriad-pro, serif;
  margin-top: -0.5rem;
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
}

/*# sourceMappingURL=styles.css.map */
