html {
  background-color: #fef8e0;
  overflow-x: hidden;
  font-family: "Gilda Display", sans-serif;
}
html button {
  font-family: "Gilda Display", sans-serif;
}

.content-wrap {
  color: #3d402f;
  margin: 52vh auto 0vh auto;
  text-align: center;
  font-family: "Gilda Display", sans-serif;
  width: 100%;
  height: 100%;
}
.content-wrap h1 {
  font-size: 3.9rem;
  font-weight: 100;
  letter-spacing: 6px;
}
.content-wrap h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0%;
  letter-spacing: 3px;
}
.content-wrap nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: initial;
  height: initial;
  margin-top: 8vh;
}
.content-wrap nav .btn {
  font-size: 15px;
  font-weight: normal;
  color: #3A3A3A;
  letter-spacing: 2px;
}
.content-wrap nav .nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: initial;
  height: initial;
}
.content-wrap nav .nav-wrap .nav-underline {
  background-color: black;
  width: 90%;
  height: 0.2vh;
  border-radius: 10%;
  transition: opacity 0.5s;
}

.nature-img {
  width: 72vw;
  height: 54vw;
  position: absolute;
  left: 0%;
  top: 0%;
  pointer-events: none;
}

.btn {
  cursor: pointer;
  transition: filter 0.25s;
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  border-radius: 1.5%;
  background: #bcaf7e;
  border-style: unset;
  box-shadow: 1px 2px 1px 1px #786c44;
}

.btn:hover {
  filter: brightness(120%);
}

.text-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.1rem;
  box-shadow: none;
}

#bodyId .hidden {
  width: 0%;
  height: 0%;
  display: none;
  opacity: 0%;
  padding: 0% !important;
}
#bodyId .hidden * {
  display: none !important;
  width: 0% !important;
  height: 0% !important;
}

.hidden-with-display {
  width: 0%;
  height: 0%;
  opacity: 0%;
  padding: 0% !important;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10%;
  height: initial;
  margin: 5vh auto 20vh;
  text-align: center;
}
.logo-wrap h1 {
  font-weight: 100;
  margin: 0vh 0vw 2vh;
  font-size: 2rem;
  white-space: nowrap;
}
.logo-wrap .home-underline {
  background-color: black;
  width: 90%;
  height: 0.2vh;
  border-radius: 10%;
}
.logo-wrap span {
  font-style: italic;
  margin-top: 2vh;
}

.section-container-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: initial;
  height: initial;
  margin-top: 4vh;
}

#container0 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: initial;
  height: initial;
}
#container0 img {
  width: 40vw;
  height: 30vw;
  border-radius: 1%;
}

#container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
#container1 #countrySelectWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20vw;
  height: 100%;
  background-color: #fafaf8;
  padding: 0rem 0.5rem;
  box-shadow: 1px 1px 1px 1px #bcaf7e;
  transition: font-size 0.2s, height 0.2s, padding 0.2s;
}
#container1 #countrySelectWrap .selection-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: initial;
  padding: 0.5rem;
  cursor: pointer;
  text-indent: 10%;
  font-size: initial;
}
#container1 #countrySelectWrap .selection-header #dropdownHeaderText {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: initial;
  white-space: nowrap;
}
#container1 #countrySelectWrap .selection-header #countrySelectionArrow {
  width: 1vw;
  height: 1vw;
  transition: transform 0.2s;
  transform: rotate(90deg);
}
#container1 #countrySelectWrap .selection-header #countrySelectionArrow.open-dropdown {
  transform: rotate(180deg);
}
#container1 #countrySelectWrap .country-selection {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.4s, font-size 0.2s, height 0.2s, padding 0.2s;
  cursor: default;
  text-indent: 10%;
  padding: 0.2rem;
}
#container1 #countrySelectWrap .country-selection span {
  width: 100%;
  text-indent: 5%;
}
#container1 #countrySelectWrap .country-selection * {
  pointer-events: none;
}
#container1 #countrySelectWrap .country-selection:hover {
  background-color: #bcaf7e;
}
#container1 #countrySelectWrap .flag {
  width: 10%;
  height: 90%;
  transition: width 0.2s, height 0.2s;
}
#container1 #countrySelectWrap.close-dropdown .country-selection {
  font-size: 0px;
  height: 0px;
  padding: 0px;
}
#container1 #countrySelectWrap.close-dropdown .country-selection .flag {
  width: 0px;
}
#container1 .country-info-wrap {
  display: flex;
}
#container1 .country-info-wrap .country-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: initial;
  height: initial;
}
#container1 .country-info-wrap .country-info ul {
  width: 40vw;
}
#container1 .country-info-wrap .country-info ul li {
  margin: 2vh 0vw;
  letter-spacing: 3px;
}
#container1 .question {
  text-transform: uppercase;
  margin: 4vh auto;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}

#container2 {
  width: initial;
}

#container3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: initial;
  height: initial;
}
#container3 .qa-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 40%;
  height: initial;
  color: #3a3a3a;
  letter-spacing: 3px;
  margin-top: 4vh;
  opacity: 0%;
  transition: opacity 1s;
}
#container3 .qa-wrap .question {
  text-transform: uppercase;
  margin: 0% auto;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
#container3 .qa-wrap .answer {
  margin: 2vh 0vw 6vh;
}
#container3 .qa-wrap .qa-link {
  cursor: pointer;
  color: blue;
}

#container4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#container4 .slideshow-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 90%;
  position: relative;
  transition: width 0.6s, height 0.6s, opacity 0.6s, padding 0.6s, font-size 0.6s, filter 0.25s;
}
#container4 .slideshow-wrap * {
  transition: width 0.4s, height 0.4s, opacity 0.4s, padding 0.4s, font-size 0.4s, filter 0.25s;
}
#container4 .slideshow-wrap .rsvp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
}
#container4 .slideshow-wrap .slideshow-shrink {
  width: 0% !important;
  height: 0% !important;
  font-size: 0px !important;
  pointer-events: none;
  opacity: 0% !important;
  padding: 0% !important;
}
#container4 .slideshow-wrap .slideshow-shrink * {
  width: 0% !important;
  height: 0% !important;
  font-size: 0px !important;
  pointer-events: none;
  opacity: 0% !important;
  padding: 0% !important;
}
#container4 .slideshow-wrap #rsvpSlideshow1 .search-title {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  margin: 2vh 0vw 4vh;
}
#container4 .slideshow-wrap #rsvpSlideshow1 #nameSelectWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20vw;
  height: 100%;
  background-color: #fafaf8;
  padding: 0rem 0.5rem;
  box-shadow: 1px 1px 1px 1px #bcaf7e;
  transition: font-size 0.2s, height 0.2s, padding 0.2s;
  border-radius: 1%;
}
#container4 .slideshow-wrap #rsvpSlideshow1 #nameSelectWrap .selection-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: initial;
  padding: 0.5rem;
  text-indent: 10%;
  font-size: initial;
}
#container4 .slideshow-wrap #rsvpSlideshow1 #nameSelectWrap .selection-header #nameSearch {
  width: 100%;
  border: none;
  background-color: #fafaf8;
  outline: none;
}
#container4 .slideshow-wrap #rsvpSlideshow1 #nameSelectWrap .rsvp-name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.4s, font-size 0.2s, height 0.2s, padding 0.2s;
  cursor: pointer;
  text-indent: 10%;
  padding: 0.2rem;
}
#container4 .slideshow-wrap #rsvpSlideshow1 #nameSelectWrap .rsvp-name span {
  width: 100%;
  text-indent: 5%;
  pointer-events: none;
}
#container4 .slideshow-wrap #rsvpSlideshow1 #nameSelectWrap .rsvp-name:hover {
  background-color: #bcaf7e;
}
#container4 .slideshow-wrap #rsvpSlideshow1 #nameSelectWrap .hide-name {
  font-size: 0px;
  height: 0px;
  padding: 0px;
}
#container4 .slideshow-wrap #rsvpSlideshow2 .rsvp-for-title {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
#container4 .slideshow-wrap #rsvpSlideshow2 #invitationContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: initial;
  height: initial;
  margin: 4vh 0vw;
}
#container4 .slideshow-wrap #rsvpSlideshow2 #invitationContainer .invitation-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: initial;
  height: initial;
  margin: 1vh 0vw;
}
#container4 .slideshow-wrap #rsvpSlideshow2 #invitationContainer .invitation-wrap .invitation-checkbox {
  width: 2vw;
  height: 2vw;
  max-width: 2vw;
  max-height: 2vw;
  margin: 0vh 1vw 0vh 0vw;
}
#container4 .slideshow-wrap #rsvpSlideshow2 #invitationContainer .invitation-wrap .invitation-guest-name {
  white-space: nowrap;
}
#container4 .slideshow-wrap #rsvpSlideshow2 .invitation-error {
  padding: 0.5rem;
  border: 2px solid red;
}
#container4 .slideshow-wrap #rsvpSlideshow2 .btn-wrap button {
  margin: 0vh 2vw;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .question1-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: initial;
  height: initial;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .question1-wrap .col-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: center;
  height: center;
  margin: 2vh 2vw;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .question1-wrap .col-wrap .rsvp-survey-name {
  font-size: 1.2rem;
  margin-bottom: 1vh;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .invitation-error {
  padding: 0.5rem;
  border: 2px solid red;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .questions2-3-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: initial;
  height: initial;
  margin: 1vh 0vw;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .questions2-3-wrap .rsvp-survey-name {
  font-size: 1.2rem;
  margin-right: 1vw;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .question {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 3vh 0vw;
  white-space: nowrap;
  text-align: center;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .check-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: initial;
  margin: 1vh 0vw;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .check-wrap .rsvp-survey-radio {
  width: 2vw;
  height: 2vw;
  max-width: 2vw;
  max-height: 2vw;
  background: #fafaf8;
  margin: 0vh 1vw 0vh 0vw;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .check-wrap .rsvp-survey-radio-label {
  white-space: nowrap;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .rsvp-survey-textbox {
  width: 100%;
  height: 4vh;
  text-indent: 5%;
  border-radius: 5%;
  border: none;
  background: #fafaf8;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .btn-wrap {
  margin-top: 5vh;
}
#container4 .slideshow-wrap #rsvpSlideshow3 .btn-wrap button {
  margin: 0vh 2vw;
}

#container5 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: initial;
  height: initial;
}
#container5 span {
  margin: 6vh 0vw;
  font-size: 1.2rem;
  font-style: italic;
}

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