/* This CSS resource incorporates links to font software which is the valuable copyrighted property of Monotype and/or its suppliers. You may not attempt to copy, install, redistribute, convert, modify or reverse engineer this font software. Please contact Monotype with any questions regarding Web Fonts: http://www.fonts.com */


@charset "UTF-8";




:root {
  --black: rgb(20, 20, 20);
  --white: rgb(225, 225, 225);
  --greyLight: rgb(205, 205, 205);
  --greyMid: rgb(135, 135, 135);
  --greyDark: rgb(65, 65, 65);
  --pureWhite: rgb(255, 255, 255);
  --gold: rgb(206, 143, 121);
  --goldDarker: rgb(186, 123, 101);
  --mainEdge: 2rem;
  --bigEdge: 3rem;
  --hugeEdge: 9rem;
  --enormousEdge: 15rem;
  --sides: 9rem;
  --fontMain: termina, Helvetica, sans-serif;
  --fontScript: bickham-script-pro-3, serif;
  --borderRadius: 4px;
  --fontSizeLable: 14px;
  --fontSizeSmall: 14px;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
  box-sizing: border-box;
}

body {
	font-family: var(--fontMain);
	font-size: 18px;
  line-height: 1.3;
	font-weight: 400;
	margin: 0;
	color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: none;
  overscroll-behavior-x: none;
  overflow-x: hidden;
  /* overflow: hidden; */
}

/* main>h1{
  position: absolute;
  left: var(--mainEdge);
  top: var(--mainEdge);
} */
a, a:hover, a:visited, a:focus{
  /* text-decoration: none; */
  color: var(--black);
  text-underline-offset: 1px;
}
.big-text u{
  cursor: pointer;
}
.scroll-container{
  height: 100vh;
  overflow: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  z-index: 100;
}
section{
  /* min-height: 100vh; */
  /* scroll-snap-align: start; */
}
p:not(footer p){
  margin-bottom: var(--mainEdge);
}

h1,h2,h3,h4{
  font-weight: 400;
}
h1,h2{
  font-weight: 400;
}
h3{
  font-weight: 500;
  margin-bottom: calc(var(--mainEdge)*0.5);
  text-transform: uppercase;
}
.regular{
  font-weight: 400;
}
.medium{
  font-weight: 500;
}
.bold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}

.size6{font-size: 12.5vw}
.size5{font-size: 120px}
.size4{font-size: 72px}
.size3{font-size: 56px}
.size2{font-size: 36px}
.size1, h3{font-size: 20px}
.size0{font-size: var(--fontSizeSmall)}

.margin-top{margin-top: var(--mainEdge)}
.margin-bottom{margin-bottom: var(--mainEdge)}

.margin-top-big{margin-top: var(--bigEdge)}
.margin-bottom-big{margin-bottom: var(--bigEdge)}

.margin-top-huge{margin-top: var(--hugeEdge)}
.margin-bottom-huge{margin-bottom: var(--hugeEdge)}

.margin-top-enormous{margin-top: var(--enormousEdge)}
.margin-bottom-enormous{margin-bottom: var(--enormousEdge)}

.invert{
  color: var(--white);
}
.inverted{
  color: var(--white);
  background-color: var(--gold);
}
.reveal{
  opacity: 1;
  transition: all 2s ease;
}
.show{
  opacity: 1;
}
.header-background{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70% 70%;
}
.background{
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.background-mobile{
  display: none;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
strong{
  /* text-transform: uppercase; */
  display: inline;
  font-weight: 600;
}
.center{
  position: absolute;
  top: 50%;
  right: var(--mainEdge);
  left: var(--mainEdge);
  transform: translateY(-50%);
}
.big-text{
  font-family: var(--fontScript);
  line-height: 1;
  text-align: center;
  /* text-transform: uppercase; */
  margin-left: var(--hugeEdge);
  margin-right: var(--hugeEdge);
}
.big-text a{
  text-decoration: underline;
  /* text-decoration-thickness: 16px; */
}
.script-text{
  font-family: var(--fontScript);
  line-height: 1;
  text-align: center;
  margin-left: var(--hugeEdge);
  margin-right: var(--hugeEdge);
}
header, .content{
  width: 100%;
  padding: var(--mainEdge);
  padding-left: var(--sides);
  padding-right: var(--sides);
  position: relative;
}
header>h1{
  text-align: center;
  margin-top: 1rem;
}
.head-image-container{
  display: flex;
  justify-content: center;
  max-height: 60vh;
}
.header-image{
  width: 100%;
  object-fit: contain;
}
header.password-header{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
header.password-header form>*{
  margin-bottom: calc(var(--mainEdge)*0.5);
  display: block;
}
.nav-bar{
  position: relative;
  width: 100%;
  z-index: 10;
  text-align: right;
}
.menu, .close{
  text-transform: uppercase;
}
#menu, #close, #gallery-close{
  position: fixed;
  width: 40px;
  /* transform: translateX(-100%); */
  cursor: pointer;
  right: var(--mainEdge);
  top: var(--mainEdge);
}
#arrow-left, #arrow-right, #download{
  width: 30px;
}
#close{
  display: none;
}
.nav-overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: scroll;
  color: var(--white);
  background-color: var(--black);
  z-index: 100;
  transition: height 0.5s;
}
.overlay-content a{
  color: var(--white);
}
.overlay-content{
  width: 100%;
  height: 100vh;
  padding: var(--mainEdge);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overlay-menu{
  text-align: center;
}
.overlay-menu a, .footer-menu a{
  text-decoration: none;
}
.overlay-menu ul li{
  margin-bottom: var(--mainEdge);
  position: relative;
}
.nav-link{
  font-family: var(fontMain);
  text-transform: uppercase;
}
.nav-link a p{
  display: inline;
  margin-right: 3px;
}
.nav-link div p{
  display: inline;
  margin-right: 3px;
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.block-gallery-container{
  position: relative;
  padding: 0 var(--bigEdge);
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(var(--mainEdge)/2);
}
.thumbnail{
  display: inline-block;
  width: auto;
  height: 15vh;
  cursor: pointer;
}
.gallery-overlay{
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(20, 20, 20, 0.9);
  z-index: 10;
}
.gallery-image-container{
  width: 100vw;
  height: 100vh;
  height: var(--doc-height);
}
.gallery-image-slide{
  position: relative;
  height: 100vh;
  height: var(--doc-height);
  width: 100vw;
  padding: calc(var(--bigEdge)*2);
  display: flex;
}
.gallery-image{
  display: none;
  max-height: 100%;
  max-width: 100%;
  margin: auto;
}
.gallery-arrows{
  position: absolute;
  bottom: calc(var(--mainEdge)/2);
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.arrow-left, .arrow-right, .download{
  display: inline-block;
  color: var(--pureWhite);
  cursor: pointer;
}
.gallery-image, .arrow-left::selection, .arrow-right::selection, .gallery-arrows::selection, .download::selection{
  background: none;
}
#arrow-left{
  margin-right: var(--mainEdge);
}
#arrow-right{
  margin-left: var(--mainEdge);
}
.video-content-container{
  width: 80%;
  margin: auto;
}
.video-container{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  width: 100%;
}
.video-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.quoteAuthor{
  font-family: var(--fontMain);
}


@media (min-aspect-ratio: 16/9) {
  .video-background video {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-background video {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
.header-title{
  text-transform: uppercase;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
.description-text p:nth-of-type(2){
  margin-top: var(--mainEdge);
}
.centered-text{
  width: 50vw;
  text-align: center;
  margin: auto;
  margin-bottom: var(--bigEdge);
}
.image-container{
  /* position: relative; */
  position: absolute;
  width: 100%;
  height: 40vw;
  /* mix-blend-mode: overlay; */
}
/* .slide-container{
  position: absolute;
  width: 100vw;
  top: 50%;
  transform: translateY(-50%);
} */

.cursor-text{
  font-family: "Univers LT W01_67 Bold_1476016", "Arial-BoldMT", Arial, sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  text-align: center;
  color: var(--white);
  transition: all 0.2s ease-in;
  display: none;
}
.svg-container{
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 60%;
  text-align: center;
  overflow: hidden;
  padding: var(--bigEdge);
  z-index: 1;
  display: none;
}
svg{
  display: inline-block;
  height: 100%;
}
line{
  fill: none;
  stroke: var(--black);
  stroke-width: 16px;
}
.scaleText{
  -webkit-transform: translate(-50%, -45%) scale(1) !important;
  transform: translate(-50%, -45%) scale(1) !important;
}
#background-layer{
  z-index: -1;
}
.slider-background{
  width: 300vw;
  overflow: hidden;
  /* padding-top: var(--mainEdge);
  padding-bottom: var(--mainEdge); */
  transition: all 0.75s ease-in-out;
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}
.slider-content{
  position: relative;
  width: 100vw;
  float: left;

  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.arrows{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* .arrow-left{
  width: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.arrow-right{
  width: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
} */
.slide1{
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.slide2{
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}
.slide3{
  -webkit-transform: translateX(-200vw);
  transform: translateX(-200vw);
}
.button1, button, input{
  font-family: var(--fontMain);
  font-size: 0.75em;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: calc(var(--mainEdge)*0.5) var(--mainEdge);
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--borderRadius);
  border: none;
}
.button1, button{
  background-color: var(--gold);
  text-transform: uppercase;
}
.button1:hover, button:hover{
  background-color: var(--goldDarker);
}
.button1.inactive, button.inactive{
  cursor: default;
  background-color: var(--greyLight);
  color: var(--white);
}
input{
  background-color: var(--white);
  color: var(--greyLight);
}
input:active{
  background-color: var(--white);
}
label{
  font-size: 14px;
  color: var(--greyDark);
  text-transform: uppercase;
  font-weight: 500;
}
section:nth-child(even) .palette-center .palette-column{
  position: relative;
  width: 50%;
  height: 80vh;
  float: left;
  padding: var(--bigEdge);
}
section:nth-child(odd) .palette-center .palette-column{
  position: relative;
  width: 50%;
  height: 80vh;
  float: right;
  padding: var(--bigEdge);
}
.palette-image-container{
  position: relative;
  height: 100%;
}
.home-option-block{
  width: 100%;
  padding: var(--mainEdge) 0 var(--hugeEdge);
  border-top: 1px solid var(--greyDark);
}
.heading{
  font-weight: 600;
  text-transform: uppercase;
  display: inline;
}
footer{
  /* scroll-snap-align: start; */
}
footer a, footer a:hover, footer a:focus, footer a:visited{
  color: var(--white);
}
.footer-content{
  overflow: hidden;
  padding-top: var(--mainEdge);
  padding-bottom: var(--mainEdge);
  padding-left: var(--sides);
  padding-right: var(--sides);
}
.rows{
  float: left;
  width:25%;
  /* padding: var(--mainEdge); */
}
.footer-menu{
  text-align: center;
}
.footer-menu li{
  margin-bottom: 0.5rem;
}
.footer-section{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer-section>*{
  float: left;
}
.footer-text-container{
  width: 75%;
}
.footer-logo-container{
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.footer-logo{
  max-width: 60%;
  max-height: 8rem;
}
.footer-line{
  border-top: 1px solid var(--white);
  width: 100%;
}
.footer-menu, .footer-section{
  width: 100%;
  padding-top: var(--mainEdge);
  padding-bottom: var(--mainEdge);
}
.right{
  text-align: right;
}


.schedule-block-container{
  margin-bottom: var(--hugeEdge);
}
.schedule-block-head{
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: var(--mainEdge);
}
.schedule-time, .schedule-location{
  font-size: var(--fontSizeLable);
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  border-radius: var(--borderRadius);
  background-color: var(--greyDark);
  color: var(--white);
  margin: 5px;
  padding: calc(var(--mainEdge)*0.25) calc(var(--mainEdge)*0.5);
  text-align: center;
}
.schedule-block-line{
  width: 100%;
  position: absolute;
  border-top: 1px solid var(--greyDark);
  z-index: -1;
  top: 50%;
}
.schedule-text li {
  margin-bottom: calc(var(--mainEdge)*0.5);
  list-style: disc;
}
.block-image-container{
  text-align: center;
  margin-bottom: var(--bigEdge);
  overflow: hidden;
  padding: 0 var(--bigEdge);
}
.block-image{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.present-gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.present-block-container{
  margin-bottom: var(--hugeEdge);
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.present-block-head{
  position: absolute;
  top: -2rem;
}
.block-image-container{
  width: 100%;
  height: 40vh;
}
.present-form-container{
  margin-bottom: var(--hugeEdge);
}



.fui-btn {
    --fui-btn-font-size: 1rem;
    --fui-btn-padding: 0.375rem 0.75rem;
    --fui-btn-border-radius: var(--borderRadius);
    color: var(--black);
}
.fui-submit {
    /* --fui-submit-btn-bg-color: #dc3545; */
    /* --fui-submit-btn-border-color: #dc3545; */
    /* --fui-submit-btn-bg-color-hover: #bb2d3b; */
    /* --fui-submit-btn-border-color-hover: #b02a37; */
    --fui-submit-btn-box-shadow-focus: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.fui-repeater-add-btn{
  font-weight: 400;
}
.fui-input, .fui-select {
    --fui-input-font-size: 16px;
    --fui-input-padding: 0.75rem 1rem;
    --fui-input-border-radius: var(--borderRadius);
}
.fui-i{
    --fui-font: var(--fontMain);
    --fui-primary-color: var(--gold);
    --fui-primary-color-hover: var(--goldDarker);
    --fui-btn-bg-color: var(--greyLight);
    --fui-btn-bg-color-hover: var(--greyMid);
}
.fui-label, .fui-legend{
    text-transform: uppercase;
}




@media only screen and (max-width: 2000px) {
  .rows{
    width: 50%;
  }
}

@media only screen and (max-width: 1800px) {
  .image-container{
    height: 45vw;
  }
  .arrows{
    width: 55%;
  }
}

@media only screen and (max-width: 1600px) {
  .image-container{
    height: 50vw;
  }
  .arrows{
    width: 60%;
  }
}

@media only screen and (max-width: 1400px) {
  .size2{font-size: 32px}
  .size1, h3{font-size: 18px}

  .image-container{
    height: 60vw;
  }
  .arrows{
    width: 70%;
  }
}

@media only screen and (max-width: 1200px) {
  .size3{font-size: 48px}
  .size2{font-size: 28px}
  .size1, h3{font-size: 18px}

  .image-container {
    height: 70vw;
  }
  .arrows{
    width: 80%;
  }
}

@media only screen and (max-width: 1000px) {
  .size5{font-size: 96px}
  .size4{font-size: 68px}
  .size3{font-size: 48px}
  .size2{font-size: 28px}
  .size1, h3{font-size: 18px}

  .big-text, .email{
    margin-left: var(--bigEdge);
    margin-right: var(--bigEdge);
  }
  .image-container {
    height: 80vw;
  }
  .arrows{
    width: 90%;
  }
  section:nth-child(odd) .palette-center .palette-column, section:nth-child(even) .palette-center .palette-column{
    width: 100%;
    height: 30vh;
    padding: unset;
    margin-bottom: var(--mainEdge);
  }
  .palette-text-container {
    margin-right: unset;
  }
}
@media only screen and (max-width: 800px) {
  :root{
    --sides: 2rem;
  }
  .size5{font-size: 80px}
  .size4{font-size: 58px}
  .size3{font-size: 40px}
  .size2{font-size: 26px}
  .size1, h3{font-size: 18px}
  .arrows{
    top: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .centered-text {
    margin-top: var(--bigEdge);
  }
  .footer-logo{
    width: 65vw;
  }
  .block-gallery-container, .block-image-container{
    padding: unset;
  }
  #arrow-left, #arrow-right, #download{
    width: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .size5{font-size: 64px}
  .size4{font-size: 54px}
  .size3{font-size: 32px}
  .size2{font-size: 24px}
  .size1, h3{font-size: 18px}

  #menu, #close, #gallery-close{
    width: 30px;
  }
  #arrow-left, #arrow-right, #download{
    width: 20px;
  }
  #arrow-left{
    margin-right: calc(var(--mainEdge)/2);
  }
  #arrow-right{
    margin-left: calc(var(--mainEdge)/2);
  }
  .footer-text-container{
    width: 100%;
  }
  .footer-logo-container{
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .gallery-image-slide{
    padding: var(--bigEdge);
  }
}
@media only screen and (max-width: 400px) {
  .size5{font-size: 40px}
  .size4{font-size: 40px}
  .size3{font-size: 24px}
  .size2{font-size: 18px}
  .size1, h3{font-size: 16px}

  .big-text, .email{
    margin-left: 0;
    margin-right: 0;
  }
  .circle-text{
    width: 35%;
  }
  .footer-logo{
    padding-bottom: 15vh;
  }
}
