.hero {
    height: 100vh;
    background-color: #fad7d5;
}
.hero-txt-content {
    top: 50%;
    transform: translate(0%, -50%);
}
p {
    word-spacing: 2px;
}
.primary-font {
    font-family: "beloved-script", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.secondary-font {
    font-family: "dolly-new", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.n-container {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #818589;
}
.floral img,
.floral-2 img {
    width: 400px;
    opacity: 0.5;
}
.floral img {
    rotate: 180deg;
}
.floral-2 {
    right: -10px;
    bottom: 0;
}

/** 
* rsvp button
*/
.rsvp-btn {
    border: none;
    display: block;
    position: relative;
    padding: 0.7em 2.4em;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: #fff;
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
  }
  
  .rsvp-btn span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: 4px solid #fff;
  }
  
  .rsvp-btn span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: #fad7d5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: all 0.3s;
  }
  
  .rsvp-btn:hover span::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #fff;
  }
  
  .rsvp-btn:hover {
    color: #fad7d5;
  }
  
  .rsvp-btn:active span::before {
    background: #fff;
  }

/** 
* glide js slides
*/
.theme_carousel_slide {
    height:450px;
    background-size: cover;
    background-position: center top;
}

/** Schedule */
.event {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background-color: #f2dedd;
}

.event:nth-child(even)::before {
    background-color: #fad7d5;
}

.time {
    font-weight: bold;
}

/**
   Gift list
*/
.gift-header {
    background-color: #f2dedd;
}

.description {
    margin-left: 30px;
}
@media screen and (min-width: 768px) {
    section h1 {
        font-size: 4em;
    }
    .n-container h1 {
        font-size: 8em;
    }
    section p,
    .time, .description {
        font-size: 1.4em;
    }
}
@media screen and (max-width:768px) {
    .n-container {
        top: 30%;
        transform: translate(-50%, -30%);
        width: 100%;
        padding: 0px 50px;
        text-align: center;
    }
    .n-container h1 {
        font-size: calc(3.35rem + 1.2vw);
    }
    .hero h1 {
        font-size: 5em !important;
        line-height: 1em !important;
    }
    .hero-btn {
        font-size: 2em !important;
    }
    section h1 {
        font-size: calc(2.35rem + 1.2vw);
    }
    .floral {
        display: none;
    }
    .floral-2 img {
        width: 200px;
    }
}
@media screen and (max-width: 1200px) {
    .n-container h1 {
        font-size: 9vw;
    }
}