/* 03-resets.scss */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   https://gist.github.com/hcatlin/1027867
*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; }

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul, li {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:after, blockquote:before {
  content: '';
  content: none; }

q:after, q:before {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

button, input[type="submit"] {
  border: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input {
  border: none;
  font-family: inherit;
  font-size: inherit; }

/* END 03-resets.scss */
.noclick {
  pointer-events: none; }

.space-between {
  -webkit-justify-content: space-between;
  justify-content: space-between; }

body {
  background-color: #f1f3f5;
  font-size: 22px;
  font-family: "mr-eaves-modern", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #3C3C3C; }
  body.noscroll {
    overflow-y: hidden; }

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  min-height: 580px;
  padding: 80px;
  background-color: #ffffff;
  background-image: url(../img/leaf.svg);
  background-position: center top 170px;
  background-size: 50%;
  background-repeat: no-repeat; }
  .login header {
    height: 60px;
    background-image: url(../img/headline.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 60px;
    text-indent: -10000px; }

.tempMessage {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px 80px 60px 80px;
  text-align: center; }

.loginForm {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px 80px 60px 80px; }
  .loginForm input[type="text"] {
    width: 100%;
    background-color: #f1f3f5;
    text-align: center;
    line-height: 48px;
    font-family: "mr-eaves-modern", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal; }
    .loginForm input[type="text"]::placeholder {
      color: #b6c0cb; }
  .loginForm input[type="submit"] {
    width: 100%;
    margin-top: 6px;
    background-color: #5F4B8B;
    color: #ffffff;
    line-height: 48px;
    text-transform: uppercase;
    font-family: "fairplex-wide", Georgia, Times, "Times New Roman", serif;
    font-weight: 500;
    font-style: normal;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }

.siteHeader {
  position: relative;
  height: 240px; }
  @media only screen and (max-width: 720px) {
    .siteHeader {
      height: 420px; } }
  .siteHeader .wrapper {
    padding: 0px 82px; }
  .siteHeader .logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 720px) {
      .siteHeader .logo {
        bottom: 240px; } }
    .siteHeader .logo a {
      display: block;
      width: 200px;
      height: 160px;
      background-image: url(../img/headline.svg);
      background-position: center bottom;
      background-repeat: no-repeat;
      background-size: 200px auto; }
      @media only screen and (max-width: 1023px) {
        .siteHeader .logo a {
          height: 80px;
          background-image: none; } }
      .siteHeader .logo a:before {
        content: "";
        display: block;
        width: 60px;
        height: 60px;
        margin: 0 auto;
        background-image: url(../img/logo.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 60px auto; }
        @media only screen and (max-width: 1023px) {
          .siteHeader .logo a:before {
            width: 80px;
            height: 80px;
            background-size: 80px auto; } }

nav.mainNav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0; }
  nav.mainNav ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 0px !important; }
    @media only screen and (max-width: 720px) {
      nav.mainNav ul {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap; } }
  @media only screen and (max-width: 720px) {
    nav.mainNav li {
      -webkit-box-flex: 0 0 100%;
      -moz-box-flex: 0 0 100%;
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%; } }
  nav.mainNav li li:not(:last-child) {
    margin-right: 60px; }
  nav.mainNav a {
    font-size: 18px;
    text-decoration: none;
    font-family: "fairplex-narrow", Georgia, Times, "Times New Roman", serif;
    font-weight: 700;
    font-style: normal; }
    @media only screen and (max-width: 720px) {
      nav.mainNav a {
        display: block;
        line-height: 30px;
        text-align: center; } }

.wrapper {
  max-width: 1280px;
  margin: 0px auto; }

.rsvpFlyout {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 640px;
  transform: translateX(100%);
  background-color: #ffffff;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  z-index: 10000;
  -webkit-transition: transform 0.5s ease-in-out 0s;
  -moz-transition: transform 0.5s ease-in-out 0s;
  -o-transition: transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s; }
  @media only screen and (max-width: 720px) {
    .rsvpFlyout {
      width: 100vw; } }
  .rsvpFlyout.toggle {
    transform: translateX(0);
    -webkit-transition: transform 0.5s ease-in-out 0s;
    -moz-transition: transform 0.5s ease-in-out 0s;
    -o-transition: transform 0.5s ease-in-out 0s;
    transition: transform 0.5s ease-in-out 0s; }
  .rsvpFlyout iframe {
    height: 100vh; }

.closeFlyout {
  display: block;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  text-indent: 10000px;
  background-image: url(../img/close_icon_white.svg);
  background-size: 12px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #2B155C;
  overflow: hidden; }

.contentBox {
  margin-bottom: 60px; }
  .contentBox .wrapper {
    background-color: #ffffff;
    padding: 72px 48px 48px 48px; }
    @media only screen and (max-width: 720px) {
      .contentBox .wrapper {
        padding: 72px 24px 48px 24px; } }
  .contentBox.intro .wrapper {
    background-color: transparent;
    padding: 72px 48px 48px 48px; }
    @media only screen and (max-width: 720px) {
      .contentBox.intro .wrapper {
        padding: 72px 24px 48px 24px; } }

h2 {
  font-size: 48px;
  color: #2B155C;
  margin-bottom: 24px;
  font-family: "fairplex-narrow", Georgia, Times, "Times New Roman", serif;
  font-weight: 500;
  font-style: normal; }
  h2 span {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: #5F4B8B; }

.mapcontainer {
  height: 480px;
  margin-bottom: 36px; }
  .mapcontainer .marker {
    border: none;
    cursor: pointer;
    margin-left: -15px;
    margin-top: -10px;
    background-size: cover;
    background-color: transparent; }

:not(.mapcontainer) .button {
  display: inline-block;
  background-color: #5F4B8B;
  color: #ffffff;
  line-height: 42px;
  padding: 0px 24px;
  cursor: default;
  font-family: "fairplex-wide", Georgia, Times, "Times New Roman", serif;
  font-weight: 500;
  font-style: normal;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.hotellist {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }
  .hotellist > * {
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 24px;
    font-size: 20px; }
    @media only screen and (max-width: 1023px) {
      .hotellist > * {
        -webkit-box-flex: 0 0 50%;
        -moz-box-flex: 0 0 50%;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%; } }
    @media only screen and (max-width: 720px) {
      .hotellist > * {
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; } }
    .hotellist > *:hover {
      background-color: #f1f3f5; }
  .hotellist h3 {
    font-family: "fairplex-wide", Georgia, Times, "Times New Roman", serif;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 6px;
    color: #2B155C; }
  .hotellist p {
    line-height: 1.1em;
    margin-bottom: 0px; }

.contentWrapper {
  margin: 0px 36px; }
  @media only screen and (max-width: 720px) {
    .contentWrapper {
      margin: 0px 12px; } }

.textCols {
  margin-bottom: 48px;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px; }
  @media only screen and (max-width: 1023px) {
    .textCols {
      -webkit-columns: 1;
      -moz-columns: 1;
      columns: 1; } }
  .textCols.nomargin {
    margin-bottom: 0px; }
  .textCols p {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid; }

.twoCols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }
  .twoCols > * {
    -webkit-box-flex: 0 0 calc(50% - 24px);
    -moz-box-flex: 0 0 calc(50% - 24px);
    -webkit-flex: 0 0 calc(50% - 24px);
    -ms-flex: 0 0 calc(50% - 24px);
    flex: 0 0 calc(50% - 24px); }
    @media only screen and (max-width: 1023px) {
      .twoCols > * {
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; } }

.intro {
  padding-bottom: 24px; }
  .intro h1 {
    font-family: "fairplex-narrow", Georgia, Times, "Times New Roman", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 60px;
    color: #2B155C;
    margin-bottom: 36px; }
  .intro .additional {
    padding: 24px;
    background-color: #e2e6ea; }
    .intro .additional > *:last-child {
      margin-bottom: 0px; }

.introBottom {
  margin-top: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 1023px) {
    .introBottom {
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-flex: 0 0 100%;
      -moz-box-flex: 0 0 100%;
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%; } }

.rsvpNote {
  margin-left: 24px;
  font-size: 18px;
  color: #7a8da0; }
  @media only screen and (max-width: 1023px) {
    .rsvpNote {
      margin-left: 0px;
      margin-top: 24px; } }

#collage {
  max-width: 2200px;
  margin: 0px auto;
  padding: 0px 120px; }
  #collage ul {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-gap: 24px 24px;
    margin-bottom: 120px; }
    #collage ul > *::before {
      content: "";
      display: inline-block;
      width: 1px;
      height: 0;
      padding-bottom: calc(100% / 1); }
  #collage li {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-color: #7760a9;
    background-blend-mode: multiply; }
    #collage li:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: black;
      mix-blend-mode: lighten; }
    #collage li:hover {
      background-blend-mode: normal; }
  #collage li:nth-child(1) {
    grid-area: 2 / 1 / 4 / 3;
    background-image: url(../img/collage/IMG_0026_2.jpg); }
  #collage li:nth-child(2) {
    grid-area: 1 / 3 / 5 / 7;
    background-image: url(../img/collage/IMG_0179_2.jpg); }
  #collage li:nth-child(3) {
    grid-area: 4 / 7 / 7 / 10;
    background-image: url(../img/collage/IMG_0204_2.jpg); }
  #collage li:nth-child(4) {
    grid-area: 1 / 7 / 4 / 10;
    background-image: url(../img/collage/SAM_0445_2.jpg); }
  #collage li:nth-child(5) {
    grid-area: 2 / 10 / 8 / 16;
    background-image: url(../img/collage/IMG_3930_2.jpg); }
  #collage li:nth-child(6) {
    grid-area: 1 / 16 / 6 / 21;
    background-image: url(../img/collage/IMG_4129_2.jpg); }
  #collage li:nth-child(7) {
    grid-area: 3 / 21 / 7 / 25;
    background-image: url(../img/collage/IMG_4614_2.jpg); }
  #collage li:nth-child(8) {
    grid-area: 5 / 2 / 10 / 7;
    background-image: url(../img/collage/IMG_9821_2.jpg); }
  #collage li:nth-child(9) {
    grid-area: 6 / 16 / 10 / 20;
    background-image: url(../img/collage/P5250142_2.jpg); }

.sectionIntro {
  font-size: 30px;
  margin-bottom: 48px; }

.sectionImage {
  margin-bottom: 48px; }
  .sectionImage img {
    width: 100%;
    height: auto; }

.timeline {
  padding: 48px 0px;
  border: 1px solid #eeeeee; }
  .timeline li {
    text-align: center; }
    .timeline li:not(:last-child) {
      margin-bottom: 48px; }
  .timeline .time {
    margin-bottom: 6px;
    font-size: 18px; }
  .timeline h5 {
    font-size: 30px; }

.giftlist {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 84px; }
  @media only screen and (max-width: 720px) {
    .giftlist {
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .giftlist > * {
    -webkit-box-flex: 0 0 33%;
    -moz-box-flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    padding: 0px 12px; }
    @media only screen and (max-width: 720px) {
      .giftlist > * {
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; } }
    .giftlist > *:first-child {
      margin-left: 0px; }
    .giftlist > *:last-child {
      margin-right: 0px; }
    .giftlist > * > div {
      height: 100%;
      border: 1px solid #eeeeee;
      padding: 48px 24px 24px 24px;
      text-align: center; }
  .giftlist .image {
    position: relative; }
    .giftlist .image:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 62.5%; }
    .giftlist .image > * {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .giftlist .image img {
      margin: auto; }
  .giftlist p {
    font-size: 18px; }
  .giftlist .france img {
    width: 82%;
    height: auto; }
  .giftlist .thermomix img {
    width: auto;
    height: 90%; }
  .giftlist .closet img {
    width: 85%;
    height: auto; }

h1.inline, h2.inline, h3.inline, h4.inline, h5.inline {
  font-family: "fairplex-wide", Georgia, Times, "Times New Roman", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #5F4B8B;
  margin: 36px 0px 12px; }
  @media only screen and (max-width: 1023px) {
    h1.inline:first-of-type, h2.inline:first-of-type, h3.inline:first-of-type, h4.inline:first-of-type, h5.inline:first-of-type {
      margin-top: 0px; } }

h3 {
  font-family: "fairplex-wide", Georgia, Times, "Times New Roman", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  margin-bottom: 16px;
  color: #2B155C; }
  h3:not(:first-child) {
    margin-top: 36px; }

h4 {
  font-family: "fairplex-narrow", Georgia, Times, "Times New Roman", serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 12px;
  font-size: 22px;
  color: #2B155C; }

h5 {
  font-family: "fairplex-narrow", Georgia, Times, "Times New Roman", serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  font-size: 20px;
  color: #2B155C; }

p, ul {
  margin-bottom: 24px;
  line-height: 1.24em; }
  p.mainInfo, ul.mainInfo {
    font-family: "fairplex-narrow", Georgia, Times, "Times New Roman", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 36px;
    color: #2B155C; }
  p.tCenter, ul.tCenter {
    text-align: center; }

q {
  font-size: 42px;
  text-align: center; }
  q .quote {
    font-family: "fairplex-narrow", Georgia, Times, "Times New Roman", serif;
    font-weight: 500;
    font-style: normal; }
  q .source {
    font-family: "mr-eaves-modern", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    color: #BEBEBE; }

.important {
  padding: 24px;
  border: 2px solid #2B155C; }

a {
  color: #5F4B8B;
  text-decoration: underline; }

b, strong {
  font-weight: 400; }

img.self {
  margin-bottom: 18px; }

img.width100 {
  width: 100%; }

.codeName {
  display: inline-block;
  min-width: 100px; }

.code {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  font-size: 0.84em; }

footer {
  min-height: 200px; }
