@font-face {
    font-family: "New York";
    src: url("../../plugin/fonts/NewYork.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: "Playfair Display";
    src: url("../../plugin/fonts/PlayfairDisplay-Regular.ttf")
        format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Playfair Display Medium";
    src: url("../../plugin/fonts/PlayfairDisplay-Medium.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Playfair Display Bold";
    src: url("../../plugin/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
    font-display: swap;
}

body.ashilla {
    --newyork: "New York", sans-serif;
    --playfair: "Playfair Display", sans-serif;
    --playfair-m: "Playfair Display Medium", sans-serif;
    --playfair-b: "Playfair Display Bold", sans-serif;

    --font-clr: #303030;
    --body-height: 100vh;

    --fs-title: 35px;
    font-size: 15px;
}

@media only screen and (min-width: 426px) {
    body.ashilla {
        --fs-title: 37.5px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 1024px) {
    body.ashilla {
        --fs-title: 40px;
        font-size: 17px;
    }
}

@media only screen and (min-width: 1440px) {
    body.ashilla {
        --fs-title: 45px;
        font-size: 18px;
    }
}

*::-webkit-scrollbar-thumb {
    background-color: var(--font-clr); /* color of the scroll thumb */
}

body.ashilla p {
    font-size: 1em;
    line-height: 1.3;
    color: var(--font-01);
    font-family: var(--playfair);
}

body.ashilla sup {
    font-family: inherit;
    color: inherit;
    font-size: 0.7em;
}

body.ashilla.original {
    /* Hex */
    --primary-clr: #f6f5f5;
    --secondary-clr: #ffffff;
    --tertiary-clr: #232323;
    --font-clr: #303030;
    --btn-clr: #909090;
    --orn-clr: #2f2f2f;

    /* RGB */
    --rgb-primary-clr: 246, 245, 245;
    --rgb-secondary-clr: 255, 255, 255;
    --rgb-tertiary-clr: 35, 35, 35;
    --rgb-font-clr: 48, 48, 48;
    --rgb-btn-clr: 144, 144, 144;

    /* ORNAMENTS */
    --orn-01: url("../../media/template/exclusive-08/01/orn-01.png");
    --orn-02: url("../../media/template/exclusive-08/01/orn-02.png");
    --orn-03: url("../../media/template/exclusive-08/01/orn-03.png");
    --orn-04: url("../../media/template/exclusive-08/01/orn-04.png");
    --orn-05: url("../../media/template/exclusive-08/01/orn-05.png");
    --orn-06: url("../../media/template/exclusive-08/01/orn-06.png");

    /* Background */
    --bg-main: url("../../media/template/exclusive-08/01/bg-main.jpg");

    /* Frame */
    --frame-01: url("../../media/template/exclusive-08/01/savedate-frame.png");
    --frame-02: url("../../media/template/exclusive-08/01/story-frame.png");
}

body {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

body font {
    font-family: inherit;
}

/* ======================
    TOP COVER
====================== */
section.top-cover {
    background-color: var(--primary-clr);
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: var(--body-height);
    z-index: 999999;
    top: 0;
    /* top: -120%; */
    left: 0;
    padding: 0;

    transition: all 1.8s;
    transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
    -moz-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
    -o-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);

    display: flex;
    flex-direction: column;
}
section.top-cover.hide {
    top: -120%;
    bottom: 120%;
    pointer-events: none;
}
section.top-cover .inner {
    padding: 1em 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
section.top-cover .inner::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
section.top-cover .inner .details {
    text-align: center;
    padding: 0.75em;
    margin-top: auto;
    margin-bottom: 10vh;
    position: relative;
    z-index: 2;
}
section.top-cover .inner .details h1 {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 0.2em;
    font-size: 40px;
    font-size: calc(var(--fs-title) + 5px);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--secondary-clr);
}
section.top-cover .inner .details p {
    font-size: calc(1em + 2px);
    color: var(--secondary-clr);
    margin-bottom: 0.25em;
}

/* Cover free text */
section.top-cover .cover-free-text {
    font-size: calc(1em + 2px);
    color: var(--secondary-clr);
    line-height: 1.3;
    font-family: var(--playfair);
}

section.top-cover .inner .details a.link {
    background-color: var(--secondary-clr);
    font-size: 1em;
    font-family: var(--playfair);
    text-decoration: none;
    margin: 0.9em auto 0.5em;
    display: inline-block;
    color: var(--font-clr);
    padding: 0.3em 1.25em;
    border-radius: 0.4em;
    transition: all 0.25s ease-in-out;
}
section.top-cover .inner .details a.link:hover {
    background-color: var(--tertiary-clr);
    color: var(--secondary-clr);
}

@media only screen and (min-width: 1024px) {
    section.top-cover .inner .details h1 {
        font-size: calc(var(--fs-title) + 25px);
    }
}

/* Highlight */
section.top-cover .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}
section.top-cover .inner .highlight .preview-container {
    width: 100%;
    height: 100%;
    display: block;
}
section.top-cover .inner .highlight .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}
section.top-cover .inner .highlight .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}
section.top-cover .inner .highlight .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
}
section.top-cover .inner .highlight .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ======================
    COVER
====================== */
section.cover {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    min-height: var(--body-height);
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}
section.cover .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 0.75em 0;
    padding-bottom: 80px;
    position: relative;
}
section.cover .inner .head {
    text-align: center;
    padding: 0.75em;
    margin-top: auto;
    margin-bottom: 0.5em;
}
section.cover .inner .head .cover-orn {
    width: 40%;
    max-width: 175px;
    margin-bottom: 0.5em;
}
section.cover .inner .head .cover-orn .cls-1 {
    fill: var(--orn-clr);
}
section.cover .inner .head .logo {
    width: 100%;
    height: 50px;
    position: relative;
    margin-bottom: 0.5em;
}
section.cover .inner .head .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}
section.cover .inner .head p {
    font-size: calc(1em + 2px);
}

section.cover .inner .body {
    width: 100%;
    padding: 0.75em 0.5em;
    margin: 0.5em auto;
    margin: auto;
}
section.cover .inner .body .preview-container {
    width: 80vw;
    height: 110vw;
    max-width: 340px;
    max-height: 467.5px;

    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    background: #fff;
}
section.cover .inner .body .preview-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border-radius: inherit;
    background-color: transparent;
    border: 2px solid var(--orn-clr);
}

section.cover .inner .body .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}
section.cover .inner .body .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}
section.cover .inner .body .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    top: 0;
    left: 0;
    position: absolute !important;
}
section.cover .inner .body .preview-container .picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    object-position: center;
}

section.cover .inner .foot {
    text-align: center;
    padding: 0.75em;
    margin-top: 0.5em;
    margin-bottom: auto;
}
section.cover .inner .foot h1 {
    padding: 0;
    margin: 0.15em auto;
    font-size: 40px;
    font-size: calc(var(--fs-title) + 5px);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.cover .inner .foot p {
    font-size: calc(1em + 2px);
}

@media only screen and (min-width: 1024px) {
    section.cover .inner .foot h1 {
        font-size: calc(var(--fs-title) + 20px);
    }
}

/* Ornament */
section.cover .inner .mount-left-01 {
    width: 130px;
    height: 130px;
    position: absolute;
    z-index: 2;
    left: 32.5px;
    bottom: -35px;
    transform: rotate(-10deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
section.cover .inner .mount-left-02 {
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 1;
    left: -90px;
    bottom: -50px;
    transform: rotate(-12deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
section.cover .inner .mount-right-01 {
    width: 130px;
    height: 130px;
    position: absolute;
    z-index: 2;
    right: 32.5px;
    bottom: -35px;
    transform: rotate(10deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
section.cover .inner .mount-right-02 {
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 1;
    right: -90px;
    bottom: -50px;
    transform: rotate(12deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

@media only screen and (max-width: 375px) {
    section.cover .inner .mount-left-01 {
        width: 110px;
        height: 110px;
        left: 37.5px;
        bottom: -25px;
    }
    section.cover .inner .mount-left-02 {
        width: 180px;
        height: 180px;
        left: -75px;
        bottom: -40px;
    }
    section.cover .inner .mount-right-01 {
        width: 110px;
        height: 110px;
        right: 37.5px;
        bottom: -25px;
    }
    section.cover .inner .mount-right-02 {
        width: 180px;
        height: 180px;
        right: -75px;
        bottom: -40px;
    }
}

@media only screen and (min-width: 768px) {
    section.cover .inner .mount-left-01 {
        width: 150px;
        height: 150px;
        left: 37.5px;
        bottom: -37.5px;
    }
    section.cover .inner .mount-left-02 {
        width: 220px;
        height: 220px;
        left: -95px;
        bottom: -50px;
    }
    section.cover .inner .mount-right-01 {
        width: 150px;
        height: 150px;
        right: 37.5px;
        bottom: -37.5px;
    }
    section.cover .inner .mount-right-02 {
        width: 220px;
        height: 220px;
        right: -95px;
        bottom: -50px;
    }
}

@media only screen and (min-width: 1024px) {
    section.cover .inner .body .preview-container {
        width: 80vw;
        height: 48vw;
        max-width: 828.8px;
        max-height: 557.27px;
    }

    section.cover .inner .head .cover-orn {
        max-width: 200px;
    }

    section.cover .inner .mount-left-01 {
        width: 170px;
        height: 170px;
        left: 97.5px;
        bottom: -45px;
    }
    section.cover .inner .mount-left-02 {
        width: 240px;
        height: 240px;
        left: -50px;
        bottom: -60px;
    }
    section.cover .inner .mount-right-01 {
        width: 170px;
        height: 170px;
        right: 97.5px;
        bottom: -45px;
    }
    section.cover .inner .mount-right-02 {
        width: 240px;
        height: 240px;
        right: -50px;
        bottom: -60px;
    }
}

@media only screen and (min-width: 1440px) {
    section.cover .inner .head .cover-orn {
        max-width: 220px;
    }

    section.cover .inner .mount-left-01 {
        width: 190px;
        height: 190px;
        left: 102.5px;
        bottom: -50px;
    }
    section.cover .inner .mount-left-02 {
        width: 260px;
        height: 260px;
        left: -55px;
        bottom: -60px;
    }
    section.cover .inner .mount-right-01 {
        width: 190px;
        height: 190px;
        right: 102.5px;
        bottom: -50px;
    }
    section.cover .inner .mount-right-02 {
        width: 260px;
        height: 260px;
        right: -55px;
        bottom: -60px;
    }
}

/* ======================
    GUEST
====================== */
section.guest {
    background-color: var(--secondary-clr);
    position: relative;
    height: 100px;
    display: flex;
    overflow: hidden;
    padding: 0;
}

section.guest svg.guest-orn {
    width: 30px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}
section.guest svg.guest-orn .cls-1 {
    fill: var(--orn-clr);
}

@media only screen and (min-width: 1024px) {
    section.guest {
        height: 120px;
    }

    section.guest svg.guest-orn {
        width: 40px;
    }
}

/* ======================
    COUPLE
====================== */
section.couple {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 0.75em 0 1.25em 0;
    overflow: hidden;
}
section.couple .inner {
    padding: 0.75em 0 1.25em 0;
}
section.couple .inner .head {
    padding: 0.75em;
    text-align: center;
}
section.couple .inner .head h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.couple .inner .head p {
    font-size: calc(1em + 2px);
    font-style: italic;
    color: var(--font-clr);
    margin-top: 0.25em;
}
section.couple .inner .body {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1.25em 0 1.75em 0;
}
section.couple .inner .body.bride-first {
    flex-direction: column-reverse;
}
section.couple .inner .body .groom,
section.couple .inner .body .bride {
    padding: 0.5em 0;
    margin: 0 auto;
    width: 100%;
    max-width: 720px;
}
section.couple .inner .body .preview {
    text-align: center;
    padding: 0.5em;
}
section.couple .inner .body .preview .picture {
    width: 190px;
    height: 190px;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;
}
section.couple .inner .body .preview .picture::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: inherit;
    transform: translate(-50%, -50%);
    border: 2px solid var(--orn-clr);
    background-color: transparent;
}
section.couple .inner .body .preview .picture a {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
}
section.couple .inner .body .preview .picture img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
    background: var(--secondary-clr);
}
section.couple .inner .body .details {
    text-align: center;
    padding: 0.5em;
    padding-top: 0.25em;
}
section.couple .inner .body .details h2 {
    font-weight: normal;
    font-size: 30px;
    font-size: calc(var(--fs-title) - 5px);
    font-family: var(--playfair-m);
    margin-bottom: 0.25em;
    color: var(--tertiary-clr);
}
section.couple .inner .body .details p {
    margin-bottom: 0.75em;
    color: var(--font-clr);
}
section.couple .inner .body .details p.bio {
    font-style: italic;
}
section.couple .inner .body .details p:last-of-type {
    margin-bottom: 0;
}
section.couple .inner .body .details a.link {
    display: inline-block;
    margin-top: 0.75em;
    margin-bottom: 0.25em;
    text-decoration: none;
    font-family: var(--playfair);
    font-size: 1em;
    color: var(--font-clr);
}
section.couple .inner .body .details a.link:hover {
    text-decoration: underline;
}
section.couple .inner .body .separator {
    padding: 0.75em;
    padding-bottom: 1.5em;
    text-align: center;
}
section.couple .inner .body .separator p {
    font-size: calc(1em + 70px);
    color: var(--font-clr);
    font-family: var(--newyork);
    line-height: 1;
}

@media only screen and (min-width: 920px) {
    section.couple .inner .body .preview .picture {
        width: 225px;
        height: 225px;
    }
    section.couple .inner .body {
        flex-direction: row;
    }
    section.couple .inner .body.bride-first {
        flex-direction: row-reverse;
    }
    section.couple .inner .body .groom,
    section.couple .inner .body .bride {
        margin: 0 2em;
    }
    section.couple .inner .body .separator {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    section.couple .inner .body.show-picture .separator {
        top: 100px;
        transform: translateX(-50%) translateY(0);
    }
}

/* ======================
    GALLERY
====================== */
section.gallery {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 1.75em 0.75em 1em 0.75em;
    position: relative;
    overflow: hidden;
}
section.gallery::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background-color: var(--secondary-clr);
}
section.gallery .title {
    margin: 0;
    text-align: center;
    padding: 0.75em;
    margin-bottom: 0.5em;
}
section.gallery .title h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.gallery .title p {
    font-size: calc(1em + 2px);
    font-style: italic;
    color: var(--font-clr);
    margin-top: 0.25em;
}
section.gallery .flexbin {
    margin: 0;
}

/* ======================
    VIDEO
====================== */
section.video-gallery {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 1em 0 0.75em 0;
    position: relative;
    overflow: hidden;
}
section.video-gallery::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background-color: var(--secondary-clr);
}
section.video-gallery .inner {
    padding: 0.5em 0 0.75em 0;
}
section.video-gallery .inner > .title {
    margin: 0;
    text-align: center;
    padding: 0.75em;
}
section.video-gallery .inner > .title h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.video-gallery .inner > .title p {
    font-size: calc(1em + 2px);
    font-style: italic;
    color: var(--font-clr);
    margin-top: 0.25em;
}
section.video-gallery .inner .video-outer {
    padding: 0.25em;
}
section.video-gallery .inner .video-outer .video {
    margin-bottom: 1em;
    padding: 0.75em;
}
section.video-gallery .inner .video-outer .video:last-of-type {
    margin-bottom: 0;
}
section.video-gallery .inner .video-outer .video > .title {
    padding: 0.5em 0;
}
section.video-gallery .inner .video-outer .video > .title h2 {
    font-size: 20px;
    font-size: calc(var(--fs-title) - 15px);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--playfair);
    color: var(--font-clr);
}

/* ======================
    STORY
====================== */
section.love-story {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 0.75em 0 1.25em 0;
    overflow: hidden;
}
section.love-story .inner {
    padding: 0.75em 0 1.25em 0;
}
section.love-story .inner .head {
    padding: 0.75em;
    text-align: center;
}
section.love-story .inner .head h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.love-story .inner .body {
    padding: 0;
}
section.love-story .inner .body .stories {
    display: flex;
    flex-direction: column;
}
section.love-story .inner .body .stories .story {
    width: 100%;
    max-width: 600px;
    padding: 0.75em 1.25em;
    margin: 0 auto;
    margin-bottom: 1em;
}
section.love-story .inner .body .stories .story:last-of-type {
    margin-bottom: 0;
}
section.love-story .inner .body .stories .story .preview {
    width: 100%;
    text-align: center;
    padding: 0.75em 0 0.25em 0;
    position: relative;
}
section.love-story .inner .body .stories .story .preview .picture {
    position: relative;
    z-index: 1;
    background-color: var(--primary-clr);
    width: 100%;
    height: 200px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.love-story .inner .body .stories .story .preview .picture::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 2px solid var(--orn-clr);
    border-radius: inherit;
    pointer-events: none;
}
section.love-story .inner .body .stories .story .preview .picture > a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
section.love-story .inner .body .stories .story .preview .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}
section.love-story .inner .body .stories .story .preview svg.story-orn {
    width: 42.5%;
    max-width: 230px;
    pointer-events: none;
}
section.love-story .inner .body .stories .story .preview svg.story-orn .cls-1 {
    fill: var(--orn-clr);
}
section.love-story .inner .body .stories .story .details {
    background-color: var(--secondary-clr);
    padding: 0.75em 0.75em 1.25em 0.75em;
    text-align: center;
    border-radius: 22px;
}
section.love-story .inner .body .stories .story .details h2 {
    font-family: var(--playfair);
    font-weight: normal;
    font-size: 20px;
    font-size: calc(var(--fs-title) - 15px);
    line-height: 1.2;
    color: var(--font-clr);
    margin-bottom: 0.25em;
}

@media only screen and (min-width: 426px) {
    section.love-story .inner .body .stories .story .preview .picture {
        height: 275px;
    }
}

@media only screen and (min-width: 1024px) {
    section.love-story .inner .head {
        margin-bottom: 1.25em;
    }
    section.love-story .inner .body .stories {
        padding-bottom: 3.75em;
    }
    section.love-story .inner .body .stories .story {
        max-width: 1300px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        margin-bottom: 3.25em;
    }
    section.love-story .inner .body .stories .story:nth-child(even) {
        flex-direction: row-reverse;
    }
    section.love-story .inner .body .stories .story .preview {
        margin-right: auto;
        margin-left: 0;
        margin-bottom: auto;
        padding: 0;
        width: 45%;
    }
    section.love-story .inner .body .stories .story .preview .picture {
        height: 350px;
    }
    section.love-story .inner .body .stories .story .preview .picture::before {
        width: calc(100% + 3px);
        height: calc(100% + 3px);
        border-width: 3px;
    }
    section.love-story .inner .body .stories .story:nth-child(even) .preview {
        margin-left: auto;
        margin-right: 0;
    }
    section.love-story .inner .body .stories .story .preview svg.story-orn {
        width: 50%;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    section.love-story .inner .body .stories .story .details {
        width: 52.5%;
        text-align: left;
        padding: 1.25em;
        padding-bottom: 1.75em;
    }
    section.love-story .inner .body .stories .story:nth-child(even) .details {
        text-align: right;
    }
}

/* ======================
    SAVE THE DATE
====================== */
section.save-date {
    background-color: var(--secondary-clr);
    padding: 0.75em 0 1em 0;
    overflow: hidden;
}
section.save-date .inner {
    padding: 0.75em 0 1em 0;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
section.save-date .inner .head {
    text-align: center;
    padding: 0.75em;
    position: relative;
    z-index: 3;
}
section.save-date .inner .head h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.save-date .inner .head p {
    font-size: calc(1em + 3px);
    margin-top: 0.25em;
}

section.save-date .inner .body {
    padding: 0.75em;
    display: block;
    text-align: center;
    position: relative;
    z-index: 3;
}

section.save-date .inner .body .save-orn-01 {
    width: 45%;
    max-width: 200px;
    margin: 0 auto;
    margin-top: -20px;
    position: relative;
    z-index: 1;
}
section.save-date .inner .body .save-orn-01 path {
    fill: var(--orn-clr);
}

@media only screen and (min-width: 600px) {
    section.save-date .inner .body .save-orn-01 {
        margin-top: -27.5px;
    }
}

section.save-date .inner .body .countdown {
    display: flex;
    justify-content: center;
    border-radius: 30px;
    border: 2.5px solid var(--orn-clr);
    padding: 0.25em 0 0.4em 0;
    width: 90%;
    margin: 0 auto;
}

section.save-date .inner .body .countdown > div {
    width: 22.5%;
    margin: 0 0.15em;
    padding: 0.5em 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
section.save-date .inner .body .countdown > div::after {
    content: ":";
    position: absolute;
    top: 50%;
    right: -0.23em;
    transform: translateY(-50%);
    margin-top: -0.2em;
    font-size: 25px;
    font-family: var(--playfair);
}
section.save-date .inner .body .countdown > div:last-of-type:after {
    content: none;
}

section.save-date .inner .body .countdown > div h2 {
    font-family: var(--playfair-m);
    font-weight: normal;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 0.9;
    margin-bottom: 0.2em;
    color: var(--font-clr);
}
section.save-date .inner .body .countdown > div small {
    font-family: var(--playfair);
    font-size: 0.7em;
    color: var(--font-clr);
}

section.save-date .inner .foot {
    text-align: center;
    padding: 0.75em;
    position: relative;
    z-index: 3;
}
section.save-date .inner .foot #addToCalendar {
    background-color: var(--font-clr);
    color: var(--secondary-clr);
    display: inline-block;
    font-weight: normal;
    font-family: var(--playfair);
    font-size: 1em;
    padding: 0.4em 1.25em;
    border-radius: 0.5em;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}
section.save-date .inner .foot #addToCalendar:hover {
    background-color: var(--tertiary-clr);
}

/* Ornament */
section.save-date .inner .mount-left {
    width: 250px;
    height: 250px;
    position: absolute;
    z-index: 1;
    left: -115px;
    bottom: -55px;
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

section.save-date .inner .mount-center {
    width: 400px;
    height: 400px;
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

section.save-date .inner .mount-right {
    width: 250px;
    height: 250px;
    position: absolute;
    z-index: 1;
    right: -115px;
    bottom: -55px;
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

@media only screen and (max-width: 375px) {
    section.save-date .inner .mount-left {
        width: 225px;
        height: 225px;
        left: -95px;
        bottom: -45px;
    }
    section.save-date .inner .mount-center {
        width: 375px;
        height: 375px;
        bottom: -70px;
    }
    section.save-date .inner .mount-right {
        width: 225px;
        height: 225px;
        right: -95px;
        bottom: -45px;
    }
}

@media only screen and (min-width: 768px) {
    section.save-date .inner .mount-left {
        width: 300px;
        height: 300px;
        left: -140px;
        bottom: -60px;
    }
    section.save-date .inner .mount-center {
        width: 450px;
        height: 450px;
        bottom: -85px;
    }
    section.save-date .inner .mount-right {
        width: 300px;
        height: 300px;
        right: -140px;
        bottom: -60px;
    }
}

/* ======================
    EVENT
====================== */
section.event-outer {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 0.75em 0;
}
section.event-outer .inner {
    padding: 0.75em 0;
    text-align: center;
}

section.event-outer .inner svg.event-orn {
    width: 60%;
    max-width: 275px;
    margin: 1.5em auto 0.75em auto;
}
section.event-outer .inner svg.event-orn path {
    fill: var(--orn-clr);
}

section.event-outer .inner .event-line {
    position: relative;
    height: 2px;
    width: 45%;
    max-width: 200px;
    margin: 0 auto;
    margin-top: 0.75em;
    margin-bottom: 1.75em;
    background-color: var(--orn-clr);
}

section.event-outer .inner .head {
    padding: 0.75em;
    margin-bottom: 0.5em;
}
section.event-outer .inner .head h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.event-outer .inner .head p {
    font-style: italic;
    font-size: calc(1em + 2px);
    color: var(--font-clr);
    margin-top: 0.25em;
}
section.event-outer .inner .body {
    padding: 0.5em 0;
}
section.event-outer .inner .body .event {
    margin-bottom: 1.25em;
}
section.event-outer .inner .body .event:last-of-type {
    margin-bottom: 0;
}
section.event-outer .inner .body .event > .title {
    width: 100%;
    max-width: 600px;
    padding: 0.75em;
    margin: 0 auto;
    margin-bottom: 0.5em;
    position: relative;
}
section.event-outer .inner .body .event > .title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    pointer-events: none;
    background-color: transparent;
    border-top: 1px solid var(--orn-clr);
    border-bottom: 1px solid var(--orn-clr);
}
section.event-outer .inner .body .event > .title h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.event-outer .inner .body .event > .title p {
    font-style: italic;
    font-size: calc(1em + 2px);
    color: var(--font-clr);
    margin-top: 0.25em;
}
section.event-outer .inner .body .event .activities {
    padding: 0.75em 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
section.event-outer .inner .body .event .activities .activity {
    width: 100%;
    max-width: 400px;
    margin: 0 0.75em;
    margin-bottom: 0.75em;
}
section.event-outer .inner .body .event .activities .activity:last-of-type {
    margin-bottom: 0;
}
section.event-outer .inner .body .event .activities .activity > .title {
    padding: 0.75em;
    text-align: center;
}
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .title
    img.party {
    width: 65px;
    height: 65px;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    margin-bottom: 0.75em;
}
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .title
    img.party.hide {
    display: none;
}
section.event-outer .inner .body .event .activities .activity > .title h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.event-outer .inner .body .event .activities .activity > .title p.desc {
    font-size: calc(1em + 2px);
    font-style: italic;
}
section.event-outer .inner .body .event .activities .activity > .title p {
    margin-bottom: 1.25em;
}
/* ------ */
section.event-outer .inner .body .event .activities .activity > .title h2 {
    padding: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .title
    h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    pointer-events: none;
    background-color: transparent;
    border-top: 1px solid var(--orn-clr);
}
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .title
    p:first-of-type {
    margin-top: 0.15em;
}
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .title
    p:last-of-type {
    margin-bottom: 0;
}
section.event-outer .inner .body .event > .details {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
section.event-outer .inner .body .event > .details,
section.event-outer .inner .body .event .activities .activity > .details {
    padding: 0.75em;
    text-align: center;
}
section.event-outer .inner .body .event > .details p.hall,
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .details
    p.hall {
    font-family: var(--playfair-b);
}
section.event-outer .inner .body .event > .details p,
section.event-outer .inner .body .event .activities .activity > .details p {
    margin-bottom: 0.5em;
}
section.event-outer .inner .body .event > .details a.link,
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .details
    a.link {
    display: inline-block;
    font-family: var(--playfair);
    font-size: 1em;
    padding: 0.3em 1.25em;
    background-color: transparent;
    border: 1px solid var(--tertiary-clr);
    color: var(--tertiary-clr);
    text-decoration: none;
    border-radius: 0.2em;
    margin: 0.25em auto;
    margin-top: 0.5em;
    transition: all 0.25s ease-in-out;
}
section.event-outer .inner .body .event > .details a.link:hover,
section.event-outer
    .inner
    .body
    .event
    .activities
    .activity
    > .details
    a.link:hover {
    background-color: var(--tertiary-clr);
    color: var(--secondary-clr);
}

/* ======================
    PROTOCOL
====================== */
section.protocol {
    background-color: #ffffff;
    overflow: hidden;
}
section.protocol.protocol-01 .inner .head,
section.protocol.protocol-03 .inner .head {
    padding: 1.5em 0.75em;
    background-color: var(--tertiary-clr);
}
section.protocol.protocol-02 .inner .head .step-outer {
    background-color: var(--tertiary-clr);
}
section.protocol.protocol-01 .inner .head p,
section.protocol.protocol-03 .inner .head p {
    font-size: calc(1em + 2px);
}
section.protocol.protocol-01 .inner .head h1,
section.protocol.protocol-03 .inner .head h1 {
    font-family: var(--playfair-m);
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.3;
    font-weight: normal;
}
section.protocol-04 .inner .head .title {
    font-family: var(--newyork);
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    color: var(--font-clr);
}

section.protocol.protocol-03 .inner .body .text-01 {
    font-family: var(--playfair-m);
    font-weight: normal;
    font-size: 25px;
    color: var(--font-clr);
    text-transform: capitalize;
}

.protocol.protocol-03 .inner .body .slider_dots::before {
    border-color: var(--tertiary-clr) !important;
}
.protocol.protocol-03 .inner .body .slider_dots .slider_navigator {
    background-color: var(--btn-clr) !important;
}
.protocol.protocol-03
    .inner
    .body
    .slider_dots
    .slider_navigator.slick-current.slick-center {
    background-color: var(--font-clr) !important;
}

/* ======================
    RSVP
====================== */
.torsvp__btn-wrap {
    margin-top: 15px;
}
.torsvp__btn {
    color: var(--font-clr);
    font-family: var(--playfair);
    font-weight: normal;
    font-size: calc(1em + 2px);
    border: 1px solid var(--font-clr);
}
.torsvp__btn:hover {
    color: var(--primary-clr);
    background: var(--font-clr);
}

/* Wrap */
.rsvp-wrap {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 1.25em 0 1.5em;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.rsvp-inner {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 1.25em 0 1.5em;
    position: relative;
}

/* Head */
.rsvp-head {
    padding: 10px 35px;
    margin: 0;
    text-align: center;
}
.rsvp-head .rsvp-title {
    padding: 0px;
    margin-bottom: 0px;
    font-size: var(--fs-title);
    font-weight: normal;
    line-height: 1.2;
    display: inline-block;
    letter-spacing: 0;
    font-family: var(--newyork);
    color: var(--font-clr);
    position: relative;
}

/* Body */
.rsvp-body {
}

.rsvp-confirm-step {
    display: none;
}

/* RSVP Status */
.rsvp-status-wrap {
    padding: 10px 15px;
}
.rsvp-status-head {
    padding: 0px;
    text-align: center;
}
.rsvp-status-head .rsvp-status-caption {
    font-family: var(--playfair);
    font-size: 1em;
    color: var(--font-clr);
}

.rsvp-status-body .rsvp-confirm-wrap {
    padding: 0px;
}

.rsvp-status-wrap input[name="rsvp_status"] {
    display: none;
}

/* RSVP Amount */
.rsvp-amount-wrap {
    padding: 10px 15px;
}

.rsvp-amount-head {
    text-align: center;
    padding: 0px;
}
.rsvp-amount-head .rsvp-amount-caption {
    margin-bottom: 10px;
    font-family: var(--playfair);
    font-size: 1em;
    color: var(--font-clr);
}

.rsvp-amount-body {
}

/* Amount Controller */
.rsvp-amount-controller-wrap {
    padding: 0px;
}
.rsvp-amount-controller {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.rsvp-amount-controller .toggle-btn {
    background-color: var(--btn-clr);
    color: var(--secondary-clr);
    border: none;
    outline: none;
    height: 36px;
    width: 36px;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.rsvp-amount-controller .toggle-icon {
    width: 13px;
    height: 13px;
    display: block;
}
.rsvp-amount-controller .toggle-icon path {
    stroke: var(--secondary-clr);
    stroke-width: 13 !important;
}

.rsvp-amount-controller .toggle-btn.plus:hover {
    background-color: var(--tertiary-clr);
}
.rsvp-amount-controller .toggle-btn.minus:hover {
    background-color: var(--tertiary-clr);
}

.rsvp-amount-controller .input-wrap {
    width: 100%;
}
.rsvp-amount-controller .input-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    width: 100%;
    height: 36px;
    margin: 0px auto;
    border-radius: 4px;
    background-color: var(--light-clr);
    text-align: center;
    font-family: var(--playfair);
    font-size: 1em;
    font-weight: 300;
    color: var(--dark-clr);
    border: 1px solid var(--btn-clr);
    pointer-events: none;
}

/* RSVP Confirm */
.rsvp-confirm-wrap {
    text-align: center;
    padding: 10px 15px;
}

.rsvp-confirm-wrap label {
    display: block;
    margin-top: 10px;
}
.rsvp-confirm-btn {
    width: 100%;
    display: block;
    padding: 10px 25px;
    margin: 0px auto;
    border-radius: 4px;
    font-weight: 300;
    font-family: var(--playfair);
    font-size: 1em;
    line-height: normal;
    background-color: var(--btn-clr);
    border: none;
    color: var(--secondary-clr);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.rsvp-session-btn {
    border-radius: 4px;
    font-weight: 300;
    font-size: var(--fs-content);
    line-height: normal;
    background-color: var(--btn-clr);
    color: var(--light-clr);
}

.rsvp-confirm-btn.going {
    background-color: var(--btn-clr);
}
.rsvp-status-wrap input[name="rsvp_status"]:checked + .rsvp-confirm-btn.going,
.rsvp-confirm-btn.going:hover {
    background-color: var(--success-clr);
    color: var(--secondary-clr);
}

.session-btn-wrap input[name="selected_event[]"]:checked + .rsvp-session-btn,
.session-btn-wrap input[name="selected_event_all"]:checked + .rsvp-session-btn {
    background-color: var(--success-clr);
    color: var(--light-clr);
}

.rsvp-confirm-btn.not-going {
    background-color: var(--btn-clr);
}
.rsvp-status-wrap
    input[name="rsvp_status"]:checked
    + .rsvp-confirm-btn.not-going,
.rsvp-confirm-btn.not-going:hover {
    background-color: var(--error-clr);
    color: var(--secondary-clr);
}

.rsvp-confirm-btn.confirm {
}
.rsvp-confirm-btn.confirm:hover {
    background-color: var(--tertiary-clr);
}

.rsvp-confirm-btn.download {
    width: auto;
    display: inline-block;
    vertical-align: top;
}
.rsvp-confirm-btn.download:hover {
    background-color: var(--tertiary-clr);
}

.rsvp-confirm-btn > i {
    font-size: 0.8em;
    margin-left: 5px;
}

/* QR Card */
.rsvp-qrcard-wrap {
    padding: 10px 0px;
    /* margin-bottom: 40px; */
    margin: 20px 0px;
}
.rsvp-qrcard-img-wrap {
    margin-bottom: 20px;
}
.rsvp-qrcard-img {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* RSVP Message */
.rsvp-message-wrap {
}
.rsvp-message-content {
    background-color: transparent;
    padding: 10px 15px;
    text-align: center;
}
.rsvp-message-icon {
    width: 30px;
    height: auto;
    display: none;
    margin: 0 auto 20px;
}
.rsvp-message-wrap .rsvp-message-title {
    font-family: var(--playfair);
    font-size: calc(1em + 2px);
    color: var(--font-clr);
    font-weight: normal;

    display: inline-block;
    border: 1px solid var(--dark-clr);
    border-radius: 4px;
    padding: 8px 25px;
    margin-bottom: 20px;
}
.rsvp-message-wrap .rsvp-message-caption {
    font-family: var(--playfair);
    font-size: 1em;
    color: var(--font-clr);
}

.rsvp-message-wrap.going .rsvp-message-title {
    color: var(--success-clr);
    border-color: var(--success-clr);
}
.rsvp-message-wrap.not_going .rsvp-message-title {
    color: var(--error-clr);
    border-color: var(--error-clr);
}

/* RSVP Change */
.rsvp-change-wrap {
}

/* ======================
    LIVE STREAMING
====================== */
section.live-streaming {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 0.75em 0;
    overflow: hidden;
    position: relative;
}
section.live-streaming::after {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background-color: var(--secondary-clr);
}
section.live-streaming .inner {
    padding: 0.75em 0;
    position: relative;
    z-index: 1;
}
section.live-streaming .inner .head {
    padding: 0.75em;
}
section.live-streaming .inner .head h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.live-streaming .inner .head p {
    font-style: italic;
    font-size: calc(1em + 2px);
    margin-top: 0.25em;
    color: var(--font-clr);
}
.live-streaming .inner .body > .streaming-info > div.link > a {
    border-radius: 4px;
    font-family: var(--playfair);
    font-size: calc(1em + 2px);
    background-color: var(--btn-clr);
    color: var(--secondary-clr);
}
.live-streaming .inner .body > .streaming-info > div.link > a:hover {
    background-color: var(--tertiary-clr);
}

/* ======================
    INSTAGRAM FILTER
====================== */
section.live-streaming + .ig-filter-wrap {
    background-color: transparent;
    background-image: none;
    padding: 0;
}
.ig-filter-wrap {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 15px 0 0;
}
.ig-filter-wrap::after {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background-color: var(--secondary-clr);
}
.ig-filter {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
}
.ig-filter-title {
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
.ig-filter-caption {
    font-style: italic;
    font-size: calc(1em + 2px);
    color: var(--font-clr);
}
.ig-filter-link {
    background-color: var(--btn-clr);
    color: var(--secondary-clr);
    font-family: var(--playfair);
    font-weight: normal;
    font-size: calc(1em + 2px);
}
.ig-filter-link:hover {
    background-color: var(--tertiary-clr);
}

/* ======================
    GIFT
====================== */
section.gift {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 0.75em 0;
    overflow: hidden;
}
section.gift .gift-inner {
    padding: 0.75em 1em;
}
section.gift .gift-inner .gift-title {
    padding: 0.75em 0;
    margin-bottom: 0.75em;
}
section.gift .gift-inner .gift-title h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.gift .gift-inner .gift-title p {
    font-style: italic;
    font-size: calc(1em + 2px);
    margin-top: 0.25em;
    color: var(--font-clr);
}
section.gift .gift-inner .gift-form {
    margin-bottom: 0.75em;
}
.gift .gift-inner .nominal-outer .nominal {
    color: var(--font-clr);
    border-color: var(--font-clr);
}
.gift .gift-inner .gift-form [name="nominal"]:hover + .nominal,
.gift .gift-inner .gift-form [name="nominal"]:checked + .nominal {
    background-color: var(--tertiary-clr);
    border-color: var(--tertiary-clr);
    color: var(--secondary-clr);
}
section.gift label,
section.gift input,
section.gift textarea,
section.gift button,
section.gift div,
section.gift p,
section.gift span {
    font-family: var(--playfair);
    font-size: 1em;
    color: var(--font-clr);
}
.gift label.form-label.center {
    font-size: calc(1em + 2px);
    font-family: var(--playfair-m);
}
.gift .gift-inner .gift-form .gift-picture .picture-detail .head h2 {
    font-size: calc(1em + 3px);
    color: var(--font-clr);
}
.gift .gift-inner .gift-form .gift-picture .picture-detail .gift-back,
.gift .gift-inner .gift-form .gift-picture .picture-detail .head p {
    font-size: 1em;
}

.gift .gift-inner .gift-form .selectize-control.single .selectize-input {
    border-color: rgba(0, 0, 0, 0.2);
}
.gift .gift-inner .gift-form .selectize-control .item {
    padding: 0.75em !important;
}
.gift .gift-inner .gift-form .selectize-control .item p,
.gift .gift-inner .gift-form .selectize-control .item p strong {
    font-family: var(--playfair) !important;
    color: var(--font-clr) !important;
    font-weight: normal !important;
}
.gift .gift-inner .gift-form .selectize-control .item:hover {
    background-color: var(--tertiary-clr) !important;
}
.gift .gift-inner .gift-form .selectize-control .item:hover p,
.gift .gift-inner .gift-form .selectize-control .item:hover p strong {
    color: var(--secondary-clr) !important;
}
.gift
    .gift-inner
    .gift-form
    .gift-details
    .bank-detail
    .saving-books
    .copy-account {
    border-color: var(--tertiary-clr);
    color: var(--tertiary-clr);
}
.gift
    .gift-inner
    .gift-form
    .gift-details
    .bank-detail
    .saving-books
    .copy-account:hover {
    background: var(--tertiary-clr);
    color: var(--primary-clr);
}
.gift
    .gift-inner
    .gift-form
    .gift-picture
    .picture-detail
    .body
    div[data-upload="gift-picture"]::before {
    border-color: var(--font-clr);
}
.gift
    .gift-inner
    .gift-form
    .gift-picture
    .picture-detail
    .body
    div[data-upload="gift-picture"]
    > i {
    color: var(--font-clr);
}
.gift .gift-inner .gift-form .gift-submit,
.gift .gift-inner .gift-form .gift-next {
    background-color: var(--btn-clr);
    color: var(--primary-clr);
    font-family: var(--playfair);
    font-weight: normal;
    font-size: calc(1em + 2px);
}
.gift .gift-inner .gift-form .gift-submit:hover,
.gift .gift-inner .gift-form .gift-next:hover {
    background-color: var(--tertiary-clr);
}

/* Tanpa Nominal Konfigurasi */
section.gift .gift-inner .gift-form .gift-details .bank-detail {
    padding-bottom: 0.5em;
}
section.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books {
    margin-bottom: 0;
}
section.gift .gift-inner .gift-form .bio-detail {
    padding-top: 0.5em;
}

/* No Form */
section.gift.no-form {
    overflow: visible;
    position: relative;
    z-index: 1;
}
section.gift.no-form .gift-inner .gift-form {
    overflow: visible;
}

/* ======================
    COMMENT
====================== */
section.comment-outer {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 0.75em 0;
    overflow: hidden;
}
section.comment-outer .comment-inner {
    padding: 0.75em 0;
}
section.comment-outer .comment-inner .head {
    padding: 0.75em;
    text-align: center;
    margin-bottom: 0;
}
section.comment-outer .comment-inner .head h1 {
    padding: 0;
    margin-bottom: 0;
    font-size: 35px;
    font-size: var(--fs-title);
    line-height: 1.2;
    font-weight: normal;
    font-family: var(--newyork);
    color: var(--font-clr);
}
section.comment-outer .comment-inner .head p {
    font-style: italic;
    font-size: calc(1em + 2px);
    margin-top: 0.25em;
}
section.comment-outer .comment-inner .comment-form {
    padding: 0.75em;
    margin-bottom: 0;
}
section.comment-outer .comment-inner .comments {
    padding: 0;
}
section.comment-outer .comment-inner .comments .comment {
    padding: 0.75em;
}
section.comment-outer .comment-inner .foot {
    padding: 0.75em;
}
section.comment-outer p,
section.comment-outer button,
section.comment-outer textarea,
section.comment-outer input,
section.comment-outer small,
section.comment-outer a,
section.comment-outer strong,
section.comment-outer .comment-body p {
    font-family: var(--playfair);
    color: var(--font-clr);
    font-weight: normal;
}
section.comment-outer strong {
    font-family: var(--playfair-m);
    color: var(--font-clr);
}
section.comment-outer .comment .comment-head p {
    color: var(--font-clr);
}

section.comment-outer .comment-inner button.more-comment,
section.comment-outer .comment-form button.send-comment,
section.comment-outer input,
section.comment-outer textarea {
    border-radius: 4px;
}
section.comment-outer .comment-inner button.more-comment,
section.comment-outer .comment-form button.send-comment {
    background-color: var(--btn-clr);
    color: var(--secondary-clr);
}
section.comment-outer .comment-inner button.more-comment:hover,
section.comment-outer .comment-form button.send-comment:hover {
    background-color: var(--tertiary-clr);
}

/* ======================
    FOOTNOTE
====================== */
section.footnote {
    background-color: var(--primary-clr);
    background-image: var(--bg-main);
    background-position: center;
    background-size: 360px;
    background-repeat: repeat;
    padding: 0.75em 0;
    overflow: hidden;
}
section.footnote .inner {
    padding: 0.75em 0;
    position: relative;
    padding-bottom: 4.75em;
}
section.footnote .inner .quote {
    padding: 0.75em;
    text-align: center;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}
section.footnote .inner .details {
    padding: 0.75em;
    margin-top: 2em;
    text-align: center;
}
section.footnote .inner .details h1 {
    font-family: var(--newyork);
    line-height: 1.2;
    font-size: 40px;
    font-size: calc(var(--fs-title) + 5px);
    font-weight: normal;
    margin: 0.25em auto;
}
section.footnote .inner .details p {
    font-size: calc(1em + 2px);
}
section.footnote .inner .details p.date {
    text-transform: uppercase;
}

section.footnote .inner .details svg.foot-orn-01 {
    position: relative;
    width: 35%;
    max-width: 180px;
    margin: 0 auto;
    margin-top: 1.25em;
}
section.footnote .inner .details svg.foot-orn-01 .cls-1 {
    fill: var(--orn-clr);
}

/* Ornament */
section.footnote .inner .mount-left-01 {
    width: 130px;
    height: 130px;
    position: absolute;
    z-index: 2;
    left: 32.5px;
    bottom: calc(-35px + -0.5em);
    transform: rotate(-10deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
section.footnote .inner .mount-left-02 {
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 1;
    left: -90px;
    bottom: calc(-50px + -0.5em);
    transform: rotate(-12deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
section.footnote .inner .mount-right-01 {
    width: 130px;
    height: 130px;
    position: absolute;
    z-index: 2;
    right: 32.5px;
    bottom: calc(-35px + -0.5em);
    transform: rotate(10deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
section.footnote .inner .mount-right-02 {
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 1;
    right: -90px;
    bottom: calc(-50px + -0.5em);
    transform: rotate(12deg);
    background-image: var(--orn-06);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

@media only screen and (max-width: 375px) {
    section.footnote .inner .mount-left-01 {
        width: 110px;
        height: 110px;
        left: 37.5px;
        bottom: calc(-25px + -0.5em);
    }
    section.footnote .inner .mount-left-02 {
        width: 180px;
        height: 180px;
        left: -75px;
        bottom: calc(-40px + -0.5em);
    }
    section.footnote .inner .mount-right-01 {
        width: 110px;
        height: 110px;
        right: 37.5px;
        bottom: calc(-25px + -0.5em);
    }
    section.footnote .inner .mount-right-02 {
        width: 180px;
        height: 180px;
        right: -75px;
        bottom: calc(-40px + -0.5em);
    }
}

@media only screen and (min-width: 426px) {
    section.footnote .inner {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) {
    section.footnote .inner .mount-left-01 {
        width: 150px;
        height: 150px;
        left: 37.5px;
        bottom: calc(-37.5px + -0.5em);
    }
    section.footnote .inner .mount-left-02 {
        width: 220px;
        height: 220px;
        left: -95px;
        bottom: calc(-50px + -0.5em);
    }
    section.footnote .inner .mount-right-01 {
        width: 150px;
        height: 150px;
        right: 37.5px;
        bottom: calc(-37.5px + -0.5em);
    }
    section.footnote .inner .mount-right-02 {
        width: 220px;
        height: 220px;
        right: -95px;
        bottom: calc(-50px + -0.5em);
    }
}

@media only screen and (min-width: 1024px) {
    section.footnote .inner .details h1 {
        font-size: calc(var(--fs-title) + 20px);
    }

    section.footnote .inner .mount-left-01 {
        width: 170px;
        height: 170px;
        left: 97.5px;
        bottom: calc(-45px + -0.5em);
    }
    section.footnote .inner .mount-left-02 {
        width: 240px;
        height: 240px;
        left: -50px;
        bottom: calc(-60px + -0.5em);
    }
    section.footnote .inner .mount-right-01 {
        width: 170px;
        height: 170px;
        right: 97.5px;
        bottom: calc(-45px + -0.5em);
    }
    section.footnote .inner .mount-right-02 {
        width: 240px;
        height: 240px;
        right: -50px;
        bottom: calc(-60px + -0.5em);
    }
}

@media only screen and (min-width: 1440px) {
    section.footnote .inner .mount-left-01 {
        width: 190px;
        height: 190px;
        left: 102.5px;
        bottom: calc(-50px + -0.5em);
    }
    section.footnote .inner .mount-left-02 {
        width: 260px;
        height: 260px;
        left: -55px;
        bottom: calc(-60px + -0.5em);
    }
    section.footnote .inner .mount-right-01 {
        width: 190px;
        height: 190px;
        right: 102.5px;
        bottom: calc(-50px + -0.5em);
    }
    section.footnote .inner .mount-right-02 {
        width: 260px;
        height: 260px;
        right: -55px;
        bottom: calc(-60px + -0.5em);
    }
}

/* ======================
    FOOTER
====================== */
section.footer {
    background-color: var(--tertiary-clr);
    padding: 0;
    overflow: hidden;
}
section.footer .footer-inner {
    padding: 0.5em;
}
section.footer .footer-inner p {
    font-weight: normal;
}
section.footer .footer-inner .footer-logo {
    width: 55px;
}
section.footer .footer-inner .footer-logo path {
    fill: var(--light-clr);
}

@media only screen and (max-width: 960px) {
    section.footer .footer-inner.flex-column {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 150px;
    }
    section.footer .footer-inner.flex-column p {
        margin-right: 0;
        font-size: calc(var(--fs-content) + 2px);
    }
    section.footer .footer-inner.flex-column .footer-logo {
        margin-top: 10px;
        width: 150px;
    }
}

/* =============================
        GENERAL QR CODE
============================= */
.general-qrcode {
    padding: 20px 20px 60px;
}
