.hero {
    height: 500px;
}
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 {
    color: #818589;
}

/** 
* rsvp button
*/
button {
    position: relative;
    padding: 10px 45px;
    font-family: "beloved-script", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  }
  
  /* button:hover {
    border: 1px solid #fff;
    background: linear-gradient(
      85deg,
      #fff,
      #fff,
      #fff,
      #fff,
      #fff
    );
    color: #000;
    animation: wind 2s ease-in-out infinite;
  } */
  
  @keyframes wind {
    0% {
      background-position: 0% 50%;
    }
  
    0% {
      background-position: 50% 100%;
    }
  
    0% {
      background-position: 0% 50%;
    }
  }
  
  .icon-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    transform-origin: 0 0;
    transform: rotate(10deg);
    transition: all 0.5s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    fill: #e00058 !important;
  }
  
  button:hover .icon-1 {
    animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
    transform: rotate(10deg);
  }
  
  @keyframes slay-1 {
    0% {
      transform: rotate(10deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(10deg);
    }
  }
  
  .icon-2 {
    position: absolute;
    top: 0;
    left: 25px;
    width: 12px;
    transform-origin: 50% 0;
    transform: rotate(10deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
    fill: #e00058 !important;
  }
  
  button:hover .icon-2 {
    animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
  }
  
  @keyframes slay-2 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(15deg);
    }
  
    100% {
      transform: rotate(0);
    }
  }
  
  .icon-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    transform-origin: 50% 0;
    transform: rotate(-5deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
    fill: #e00058 !important;
  }
  
  button:hover .icon-3 {
    animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
  }
  
  @keyframes slay-3 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(0);
    }
  }
/**
   Gift list
*/
.gift-header {
  background-color: #f294bf;
}

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

/** Schedule */
.schedule {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.schedule-date-group {
    margin-bottom: 20px;
}
.schedule-event {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
    justify-content: flex-start;
}
.schedule-event.left {
    justify-content: flex-start;
}
.schedule-event.right {
    justify-content: flex-end;
}
.schedule-event-content {
    width: 350px;
    background-color: #f294bf;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.time {
    font-weight: bold;
}
/**
* Wedding party
*/
.wedding-party-section {
    background-color: #f294bf;
}
.wedding-party-section .card {
    background-color: #f294bf;
}
@media screen and (min-width: 768px) {
    section h1 {
        font-size: 4em;
    }
    .n-container h1 {
        font-size: 4em;
    }
    section p {
        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);
    }
    section h1 {
        font-size: calc(2.35rem + 1.2vw);
    }
    .floral {
        display: none;
    }
    .schedule-event-content {
        width: 100%;
    }
    .schedule-event.right,
    .schedule-event.left {
        justify-content: center !important;
    }
}
@media screen and (max-width: 1200px) {
    .n-container h1 {
        font-size: 9vw;
    }
}