.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: 20%;
    transform: translate(-20%, -50%);
    color: #818589;
}
.floral img,
.floral-2 {
    width: 200px;
    opacity: 0.5;
}
.floral {
    rotate: 180deg;
}
.floral-2 {
    right: 0;
    bottom: 0;
}

/** 
* rsvp button
*/
.rsvp-btn {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black !important;
  border-radius: 0 !important;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.rsvp-btn:after {
  content: "";
  background-color: #ffe54c;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}
.rsvp-btn:hover {
    color: #000 !important;
}
.rsvp-btn:hover:after {
  top: 0px;
  left: 0px;
}

/** 
* 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;
}

.description {
    margin-left: 30px;
}

/**
   Gift list
*/
.gift-header {
    background-color: #ffe54c;
}
@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;
    }
    .rsvp-btn {
        padding: 13px 50px 13px;
    }
}
@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);
    }
    section h1 {
        font-size: calc(2.35rem + 1.2vw);
    }
    .floral {
        display: none;
    }
}
@media screen and (max-width: 1200px) {
    .n-container h1 {
        font-size: 9vw;
    }
}