@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Oswald:wght@300;400&display=swap');

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

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

*,
*:before,
*:after {
    box-sizing: border-box;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

*:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
}

/* variables */
:root {
    --p: 12px;
    --width: 80rem;
    --font-default: 'Oswald', 'Lato', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --color-black: hsl(0, 0%, 10%);
    --color-white: hsl(0, 0%, 100%);
    --color-light: hsl(187, 53%, 97%);
    --color-red: hsl(0, 90%, 60%);
}

/* core */
html {
    text-size-adjust: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    scroll-behavior: smooth;
}

html,
body {
    width: 100vw;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    font-family: var(--font-default);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #979797;
    background-color: #fff;
}

/* ==========================================================================
   Wedding theme
   ========================================================================== */

.hide {
    display: none;
}

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.clear:after {
    clear: both;
    content: "";
    display: block
}

h1 {
    font-size: 55px;
    line-height: .87em
}

h2 {
    font-size: 43px;
    line-height: 1.12em
}

h3 {
    font-size: 36px;
    line-height: 1.3em
}

h4 {
    font-size: 22px;
    line-height: 1.3em
}

h5 {
    font-size: 16px;
    line-height: 1.3em
}

h6 {
    font-size: 14px;
    line-height: 1.3em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 20px 0;
    font-weight: 400;
    color: #160808
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #fbb8ac
}

a,
p a {
    color: #160808;
    text-decoration: none;
    -webkit-transition: color .2s ease-out;
    -moz-transition: color .2s ease-out;
    transition: color .2s ease-out
}

a:hover,
p a:hover {
    color: #fbb8ac
}

a.step {
    padding: 0 0 10px;
    /* color: #00CED1; */
    color: #000;
    text-decoration: none;
    position: relative;
}

a.step:before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0%;
    /* border-bottom: 2px solid #00CED1; */
    border-bottom: 2px solid #000;
    transition: 0.3s;
}

a.step:hover:before {
    width: calc(100% - 30px);
}

p {
    margin: 10px 0
}

input[type=submit] {
    -webkit-appearance: none
}

ol,
ul {
    list-style-position: inside;
    margin: 15px 0
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin: 0;
    padding: 0 0 0 15px
}

::selection {
    background: #fbb8ac;
    color: #fff
}

::-moz-selection {
    background: #fbb8ac;
    color: #fff
}


.alignleft {
    display: inline;
    text-align: left;
    margin: 0 20px 20px 0
}

.alignright {
    display: inline;
    float: right;
    margin: 0 0 20px 20px
}

.aligncenter {
    clear: both;
    display: block;
    margin: 10px auto
}

.alignwide {
    margin-left: auto;
    margin-right: auto;
    clear: both
}

.uppercase {
    text-transform: uppercase;
}

@media only screen and (max-width: 1024px) {
    .alignwide {
        width: 100%;
        max-width: 100%
    }
}

.alignfull {
    position: relative;
    left: -1rem;
    width: calc(100% + 2rem);
    max-width: calc(100% + 2rem);
    clear: both
}

@media only screen and (max-width: 1024px) {
    .alignfull {
        left: calc(-12.5% - 75px);
        width: calc(125% + 150px);
        max-width: calc(125% + 150px);
        margin-top: 2rem;
        margin-bottom: 2rem
    }
}

.text-align-right {
    text-align: right
}

.text-align-left {
    text-align: left
}

.text-align-center {
    text-align: center
}

/* FLEX GRID */
.grid__container {
    margin: 0 auto;
    max-width: 100%;
    min-width: 320px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    text-align: center;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 1;

    margin: 10px;
    padding: 10px;
}

.col-1 {
    max-width: calc(100% / 12);
}

.col-2 {
    max-width: calc(100% / 12 * 2);
}

.col-3 {
    max-width: calc(100% / 12 * 3);
}

.col-4 {
    max-width: calc(100% / 12 * 4);
}

.col-5 {
    max-width: calc(100% / 12 * 5);
}

.col-6 {
    max-width: calc(100% / 2);
}



@media screen and (max-width: 768px) {
    .container {
        overflow: auto;
    }

    .column {
        min-width: 100%;
        width: 100%;
        margin: 10px 0;
    }
}



/* ==========================
 * Slider
 * ======================= */

/* COMPONENTS */
.c-slider-wrap {
    position: relative;
}

.c-slider {
    position: relative;
    overflow: hidden;
}

.c-slider__container {
    touch-action: pan-y;
    transform: translate3d(0, 0, 0);
}

.c-slider__container--mouse-drag-enabled>.c-slider__slide {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.c-slider__container--is-dragging>.c-slider__slide * {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.c-slider__slide {
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}

.c-slider__banner {
    height: 100vh;
    position: relative;
    padding: 0;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider-bg-01 {
    background-image: url(../img/sl-01.jpg);
}

.slider-bg-02 {
    background-image: url(../img/sl-02.jpg);
}

.slider-bg-03 {
    background-image: url(../img/sl-03.jpg);
}

.slider-bg-04 {
    background-image: url(../img/sl-04.jpg);
}

.c-slider__content {
    height: 100vh;
}

.slider__body {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.slider__body.justify-left {
    justify-content: flex-start;
}

/*
.slider__body.justify-left .slide__title {
    margin-left: 23vw;
    margin-top: -15vh;
}
*/

.slide__title.fixed {
    position: absolute;
    z-index: 1;
    text-align: center;
    top: 24vh;
    left: 23vw;
}

.slide__title h1 {
    color: #FFF;
    font-size: 120px;
    color: #fff;
    text-shadow: 2px 5px 30px rgb(0 0 0 / 70%);
}

.slide__title h1 .amp {
    font-size: 70px;
    line-height: 1em;
    display: block;
    margin: 0;
    padding: 0;
    margin-left: -20px;
    margin-bottom: -30px;
}

.slide__title .wedding-date {
    display: inline-block;
    color: #FFF;
    font-family: var(--font-serif);
    font-size: 26px;
    position: relative;
    margin-top: 8px;
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 2px 3px 5px 3px;
}

.slide__title .wedding-date::before {
    position: absolute;
    content: '';
    width: 44px;
    height: 2px;
    background-color: #FFF;
    left: -56px;
    top: 14px;
}

.slide__title .wedding-date::after {
    position: absolute;
    content: '';
    width: 44px;
    height: 2px;
    background-color: #FFF;
    right: -56px;
    top: 14px;
}

.c-slider__dots {
    text-align: center;
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0.5em;
    left: 0;
}

.c-slider__dot {
    transform: translateZ(0);
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    height: 5px;
    width: 25px;
    background: #FFF;
    opacity: 0.4;
}

.c-slider__dot:not(:last-child) {
    margin-right: 0.5em;
}

.c-slider__dot--is-active {
    opacity: 0.9;
}

.c-slider__btn {
    position: absolute;
    background: transparent;
    border: 0;
    cursor: pointer;
    touch-action: none;
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    opacity: 0.4;
    transform: translateZ(0);
}

.c-slider__btn::before {
    position: absolute;
    content: "";
    display: block;
    height: 32px;
    width: 32px;
    top: 50%;
    margin-top: -16px;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #FFF;
    transform: rotate(-45deg);
}

.c-slider__btn:focus {
    outline: 0;
}

.c-slider__btn:hover {
    opacity: 0.95;
}

.c-slider__btn--left {
    left: 30px;
}

.c-slider__btn--left::before {
    left: 8px;
    transform: rotate(-135deg);
}

.c-slider__btn--right {
    right: 30px;
}

.c-slider__btn--right::before {
    left: 8px;
    transform: rotate(45deg);
}

/* UTILITIES */
.u-bg-brand {
    background: #F7F3F1 !important;
}

.u-bg-alpha {
    background: #e2e0df !important;
}

.u-bg-beta {
    background: #f7f3f1 !important;
}

.u-text-center {
    text-align: center !important;
}

.u-text-brand {
    color: #F7F3F1 !important;
}

.u-text-gamma {
    color: #C7BDB6 !important;
}

.u-text-bold {
    font-weight: 700 !important;
}

.u-text-xxxl {
    font-size: 5em !important;
}

.u-flush--ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* ==========================
 * Header
 * ======================= */

header {
    position: relative;
}

.page-header {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    z-index: 110;
    box-sizing: border-box;
}

.page-header .menu-area {
    position: relative;
    height: auto;
    background-color: #fff;
    box-sizing: border-box;
    position: absolute;
    width: 100vw;
    padding: 0 28px;
}

.page-header .menu-area.is-fixed {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: unset;
    background: #000;
}

.page-header .menu-area {
    background-color: rgba(255, 255, 255, 1);
}

.menu-area-border-disable .page-header .menu-area {
    border: none;
}

.page-header .menu-area {
    background-color: rgba(255, 255, 255, 0);
}

.vertical-align-containers {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-header .vertical-align-containers {
    padding: 35px 35px 40px;
    height: auto;
}

.page-header .menu-area.is-fixed .vertical-align-containers {
    padding: 30px 40px 40px;
}

.vertical-align-containers .position-center {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    text-align: center;
    z-index: 1;
}

.light-header .page-header>div:not(.fixed):not(.sticky-header).menu-area {
    color: #fff !important;
}

.vertical-align-containers .position-center {
    height: auto;
    width: 100%;
    position: absolute;
    left: 0;
    text-align: center;
    z-index: 1;
}

.vertical-align-containers .position-center:before,
.vertical-align-containers .position-left:before,
.vertical-align-containers .position-right:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-right: 0;
}

.vertical-align-containers .position-center-inner,
.vertical-align-containers .position-left-inner,
.vertical-align-containers .position-right-inner {
    vertical-align: middle;
    display: inline-block;
}

.header-standard .menu-area.menu-center .vertical-align-containers .position-center-inner {
    height: 100%;
}

/* ==========================
 * Main
 * ======================= */

main {
    padding-bottom: 110px;
}

.main-menu {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
    width: auto;
}

.main-menu ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.main-menu>ul {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}

.main-menu ul li {
    position: relative;
    float: left;
    padding: 0;
    margin: 0;
}

.main-menu>ul>li {
    float: left;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.main-menu ul li a {
    font-size: 15px;
    line-height: 24px;
    color: #979797;
}

.main-menu>ul>li>a {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    height: 100%;
    padding: 0 22px;
    color: #fff;
    font-family: var(--font-default), sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .25em;
    line-height: 23px;
    box-sizing: border-box;
}

.main-menu ul li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    background-color: #FFF;
    position: absolute;
    right: 2px;
    height: 26px;
    top: -9px;
}

.main-menu>ul>li.active>a,
.main-menu>ul>li:hover>a {
    color: #FFF;
}

.light-header .page-header>div:not(.sticky-header):not(.fixed) .main-menu>ul>li>a {
    color: #fff;
}

.main-menu>ul>li>a>span.item_outer .item_text:after {
    content: '';
    width: 18px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    bottom: -3px;
    left: calc(50% - 9px);
    opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
}

.main-menu>ul>li.active>a>span.item_outer .item_text:after,
.main-menu>ul>li:hover>a>span.item_outer .item_text:after {
    opacity: 1;
}

.main-menu>ul>li>a>span.item_outer {
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-menu>ul>li>a>span.item_outer .item_text {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.vertical-align-containers .position-right {
    position: relative;
    float: right;
    z-index: 2;
    height: 100%;
    text-align: right;
}

.header-standard .menu-area.menu-center .vertical-align-containers .position-right-inner {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    height: 100%;
}


/* MAIN */
.main__container {
    max-width: var(--width);
    margin-left: auto;
    margin-right: auto;
    padding-left: calc((var(--p)*2) + env(safe-area-inset-left));
    padding-right: calc((var(--p)*2) + env(safe-area-inset-right));
}

h1 {
    font-family: var(--font-serif);
}

.section__title {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: #747474;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.section__subtitle {
    margin-top: 0;
    font-size: 45px;
    font-weight: 300;
    font-family: var(--font-serif);
}

.mt1 {
    margin-top: 10px;
}

.mt1-5 {
    margin-top: 15px;
}

.mt2 {
    margin-top: 20px;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

blockquote {
    margin: 30px 0 45px;
    max-width: 640px;
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4em;
    color: #747474;
    text-align: center;
}

.section__body {
    align-items: center;
    max-width: 60%;
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.4em;
    color: #747474;
}

.section__body.highlight {
    color: #000;
    font-size: 22px;
    line-height: 1.6em;
    font-family: var(--font-serif);
}

p {
    padding-top: var(--p);
}

.contentgroup:not(.hero) {
    width: 100vw;
    min-height: 100vh;
    max-width: var(--width);
    margin-left: auto;
    margin-right: auto;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-top: 100px;
}

.contentgroup[data-section-id="invite"] {
    min-height: 0;
    padding-bottom: 115px;
}

.contentgroup[data-section-id="location"] {
    padding-top: 100px !important;
}

.full-width {
    max-width: none;
    min-height: auto;
}

.full-width .contentgroup {
    padding-top: 130px;
    padding-bottom: 120px;
    min-height: 0;
}

.full-width h2 {}

.full-width .button-wr {
    padding-top: 30px;
}

button,
.button {
    font-family: var(--font-default);
    cursor: pointer;
    background: transparent;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    padding: 15px 40px;
    display: inline-block;
}

.button.secondary {
    background: #000;
    color: #fff;
    min-width: 160px;
    border: none;
}

.content__form p,
.content__form span,
.content__form label {
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.4em;
    text-align: left;
    color: #747474;
    margin-bottom: 0;
}

.content__form .label {
    font-weight: 500;
    color: #160808;
}

.content__form p {
    margin-bottom: 20px;
}

.mr,
p.mr {
    margin: 0;
}

.pr,
p.pr {
    padding: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1,
p.mb-1 {
    margin-bottom: 15px;
}

.mb-2,
p.mb-2 {
    margin-bottom: 30px;
}

.content__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section__title {}

.content__info-subtitle {}

.content__image {}

.content__image img {}


.white-bg {
    background-color: #FFF;
}

.cream-bg {
    background: #F7F3F1;
}

.contentgroup.h-auto {
    min-height: auto;
    padding: 80px 0 30px;
}

.content__map {
    margin-top: 40px;
    width: 100%;
    height: 60vh;
}

.content__map #map-canvas {
    width: 100%;
    height: 100%;
}

footer {
    width: 100vw;
    background: #000;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.4em;
    color: #fefefe;
}

.footergroup {
    width: 100vw;
    max-width: var(--width);
    margin-left: auto;
    margin-right: auto;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding: 20px 0;
}

.footer__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* img placeholder */
.content__image img {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: 300;
    line-height: 2;
    text-align: center;
    min-width: 420px;
    min-height: 500px;
    position: relative;
}

.content__image img::before {
    content: '';
    width: 100%;
    height: calc(100% + 10px);
    background-color: #F7F3F1;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
}

.content__image img::after {
    content: "\2639" " " attr(alt);
    font-size: 18px;
    color: #978c87;
    display: block;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

/* form elements */
.content__form {
    max-width: 50%;
    width: 50%;
}

.content__form form {
    max-width: 420px;
    text-align: left;
    height: 100%;
}

.content__form form .options {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

.content__form form .options li {
    margin-right: 30px;
}

.content__form form .options li:last-child {
    margin-right: 0;
}

.content__image.mw-100,
.content__info.mw-100 {
    max-width: 100%;
}

.form {
    width: 100%;
    height: auto;
    margin-top: 0;
}

.content__form form .form-control {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.content__form form .form-control-legal {
    text-align: left;
    width: 100%;
    font-size: 90%;
    margin-bottom: 20px;
}

.content__form form .form-control-legal label {
    font-size: 18px;
}

.content__form form .form-control.mt2 {
    margin-top: 20px;
}

.content__form form .form-control.column.col-2 {
    max-width: 50%;
    padding-right: 5px;
    margin-left: -10px;
    margin-bottom: -10px;
}

.content__form form .form-control.column.col-2:last-of-type {
    padding-right: 0;
    margin-right: 0px;
}

.content__form form .form-label {
    position: absolute;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.4em;
    line-height: 1.5;
    left: 20px;
    top: 20px;
    padding: 0 0.35rem;
    transition: all 0.35s ease;
    background: #fff;
}

.content__form form .form-control-submit {
    margin: 20px 0;
}

.content__form form .form-control-submit button {
    width: 100%;
}

.form-input {
    width: 100%;
    height: auto;
    padding: 0.75rem 1rem;
    z-index: 1;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.4em;
    font-size: 18px;
    outline: none;
    border-radius: 0.25rem;
    border-width: 1.75px;
    border-style: solid;
    background-color: transparent;
    transition: all 0.35s ease-in-out;
}

.select-control select {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.4em;
    font-size: 20px;
    outline: none;
    border-radius: 0.25rem;
    border-width: 1.75px;
    border-style: solid;
    background-color: transparent;
    height: 50px;
    width: 100%;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
    color: #505050;
}

.form-control-textarea textarea {
    width: 100%;
    height: 110px;
    min-height: 110px;
    padding: 0.75rem 1rem;
    z-index: 1;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.4em;
    font-size: 20px;
    outline: none;
    border-radius: 0.25rem;
    border-width: 1.75px;
    border-style: solid;
}

.form-input::-moz-placeholder {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.form-input:-ms-input-placeholder {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.form-input::placeholder {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.form-input:focus+.form-label {
    top: -0.65rem;
    left: 20px;
    z-index: 5;
}

.form-input:not(:-moz-placeholder-shown).form-input:not(:focus)+.form-label {
    top: -0.65rem;
    left: 20px;
    z-index: 5;
}

.form-input:not(:-ms-input-placeholder).form-input:not(:focus)+.form-label {
    top: -0.65rem;
    left: 20px;
    z-index: 5;
}

.form-input:not(:placeholder-shown).form-input:not(:focus)+.form-label {
    top: -0.65rem;
    left: 20px;
    z-index: 5;
}

.options [type="radio"]:checked,
.options [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.options [type="radio"]:checked+label,
.options [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.options [type="radio"]:checked+label:before,
.options [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.options [type="radio"]:checked+label:after,
.options [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #1a1a1a;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    transition: all 0.2s ease;
}

.options [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.options [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Timeline */
.tl__enhanced {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

.tl__enhanced::after {
    /* clearfix */
    content: "";
    display: table;
    clear: both;
}

#timeline__container {
    position: relative;
    padding: 0;
}

#timeline__container::before {
    /* this is the vertical line */
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 2px;
    background: #303e49;
}

@media only screen and (min-width: 1170px) {
    #timeline__container {
        margin-top: 3em;
        margin-bottom: 3em;
    }

    #timeline__container::before {
        left: 50%;
        margin-left: -2px;
    }
}

.tl__item {
    position: relative;
    margin: 2em 0;
}

.tl__item::after {
    clear: both;
    content: "";
    display: table;
}

.tl__item:first-child {
    margin-top: 0;
}

.tl__item:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 1170px) {
    .tl__item {
        margin: 4em 0;
    }

    .tl__item:first-child {
        margin-top: 0;
    }

    .tl__item:last-child {
        margin-bottom: 0;
    }
}

.tl__node {
    position: absolute;
    top: 15px;
    left: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #303e49;
    background-color: #198fd1;
    box-shadow: 0 0 0 3px rgba(25, 143, 209, .2);
    /* box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05); */
}

@media only screen and (min-width: 1170px) {
    .tl__node {
        width: 12px;
        height: 12px;
        left: 50%;
        top: 35px;
        margin-left: -7px;
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }

    .cssanimations .tl__node.is-hidden {
        visibility: hidden;
    }

    .cssanimations .tl__node.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 0.6s;
        -moz-animation: cd-bounce-1 0.6s;
        animation: cd-bounce-1 0.6s;
    }
}

@-webkit-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -moz-transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.tl__item__content {
    position: relative;
    margin-left: 60px;
    background: #ffffff;
    border-radius: 0.25em;
    padding: 1em;
    /* box-shadow: 0 3px 0 #d7e4ed;  */
}

.tl__item__content::after {
    clear: both;
    content: "";
    display: table;
}

.tl__item__content h2 {
    color: #303e49;
}

.tl__item__content p,
.tl__item__content .cd-read-more,
.tl__item__content .tl__pic {
    font-size: 13px;
    font-size: 0.8125rem;
}

.tl__item__content .cd-read-more,
.tl__item__content .tl__pic {
    display: inline-block;
}

.tl__item__content .cd-read-more,
.tl__item__content .tl__pic img {
    max-width: 100%;
    max-height: 234px;
}

.tl__item__content .lyric {
    font-size: 19px;
    font-weight: 300;
    font-family: var(--font-serif);
    font-style: italic;
    margin: 0;
    padding: 0;
    line-height: 1.4em;
    display: block;
    margin: 12px 0 5px;
    color: #160808;
}

.tl__item__content p {
    color: #747474;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin: 0;
    line-height: 1.4em;
}

.tl__item .tl__item__content h2 {
    font-size: 30px;
    font-weight: 300;
    font-family: var(--font-serif);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.tl__item:nth-child(odd) .tl__item__content h2,
.tl__item:nth-child(odd) .tl__item__content p,
.tl__item:nth-child(odd) .tl__item__content .lyric {
    text-align: left;
}

.tl__item:nth-child(even) .tl__item__content h2,
.tl__item:nth-child(even) .tl__item__content p,
.tl__item:nth-child(even) .tl__item__content .lyric {
    text-align: right;
}

.tl__item__content .tl__pic {
    float: left;
}

.tl__item__content::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid #ffffff;
}

@media only screen and (min-width: 1170px) {
    .tl__item__content {
        margin-left: 0;
        padding: 1.6em;
        width: 45%;
    }

    .tl__item__content::before {
        top: 24px;
        left: 100%;
        border-color: transparent;
        border-left-color: #ffffff;
    }

    .tl__item__content .cd-read-more {
        float: left;
    }

    .tl__item__content .tl__pic {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 6px;
        font-size: 16px;
        font-size: 1rem;
    }

    .tl__item:nth-child(odd) .tl__item__content {
        float: right;
    }

    .tl__item:nth-child(odd) .tl__item__content::before {
        top: 24px;
        left: auto;
        right: 100%;
        border-color: transparent;
        border-right-color: #ffffff;
    }

    .tl__item:nth-child(odd) .tl__item__content .cd-read-more {
        float: right;
    }

    .tl__item:nth-child(odd) .tl__item__content .tl__pic {
        left: auto;
        right: 122%;
        text-align: right;
        padding: 20px 30px;
    }

    .cssanimations .tl__item__content.is-hidden {
        visibility: hidden;
    }

    .cssanimations .tl__item__content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2 0.6s;
        -moz-animation: cd-bounce-2 0.6s;
        animation: cd-bounce-2 0.6s;
    }
}

@media only screen and (min-width: 1170px) {

    /* inverse bounce effect on odd content blocks */
    .cssanimations .tl__item:nth-child(odd) .tl__item__content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse 0.6s;
        -moz-animation: cd-bounce-2-inverse 0.6s;
        animation: cd-bounce-2-inverse 0.6s;
    }
}

@-webkit-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

/* Countdown */
#countdown {
    padding: 10px 0;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

#countdown ul {
    margin: 0;
}

#countdown li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 15px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Lato', sans-serif;
}

#countdown li span {
    font-family: var(--font-serif);
    display: block;
    font-size: 32px;
    line-height: 40px;
    color: #160808;
}


.tl__item {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* RSVP Steps */
#rsvp__form .hidden {
    display: none;
}

#rsvp__form .bus-schedule {
    display: block;
    font-size: 16px;
    margin-top: 4px;
}

#rsvp__form .button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

#rsvp__form .button.disabled:hover {}

#rsvp__form .progress-bar {
    width: 100%;
    list-style-type: none;
    display: flex;
    padding: 0;
    justify-content: center;
    margin-bottom: 3.5em;
}

#rsvp__form .progress-bar.hide {
    display: none;
}

#rsvp__form .progress-bar li.progress-bar__dot {
    display: block;
    width: 0.6em;
    border-radius: 1000em;
    height: 0.6em;
    border: 0.2em solid #ff8552;
    background-color: white;
    cursor: pointer;
    transition: all 0.5s ease;
}

#rsvp__form .progress-bar li.progress-bar__dot.full {
    background-color: #ff8552;
}

#rsvp__form .progress-bar li.progress-bar__connector {
    display: block;
    width: 5em;
    border-radius: 1000em;
    height: 0.1em;
    background-color: #ff8552;
    margin-top: 0.45em;
}

#rsvp__form .button-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    margin: 20px 0px;
}

#rsvp__form .steps__container {
    height: 100%;
}

#rsvp__form .step.step1 {
    margin-bottom: 30px;
}

#rsvp__form .step.step2,
#rsvp__form .step.step3 {
    margin-bottom: 40px;
}

#rsvp__form .button-group:not(.form-control-submit) button {
    margin: 0;
    padding: 0 0 10px;
    border: none;
}

#rsvp__form div[data-contact-block] p:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

#rsvp__form .form-control-submit button.hide {
    display: none;
}

#rsvp__form .form-control-submit button.hide {
    display: none;
}

#rsvp__form button.step {
    padding: 0 0 10px;
    /* color: #00CED1; */
    color: #000;
    text-decoration: none;
    position: relative;
}

#rsvp__form button:enabled.step:before {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 0%;
    /* border-bottom: 2px solid #00CED1; */
    border-bottom: 2px solid #000;
    transition: 0.3s;
}

#rsvp__form button.step.next-step:enabled:before {
    left: 0;
}

#rsvp__form button.step.prev-step:enabled:before {
    right: 0;
}

#rsvp__form button.step:hover:before {
    width: calc(100% - 30px);
}

#rsvp__form button.hide {
    display: none;
}