:root {
    --safe-top: env(safe-area-inset-top);
    --safe-left: env(safe-area-inset-left);
    --safe-bottom: env(safe-area-inset-bottom);
    --safe-right: env(safe-area-inset-right);
    --width-max: 1024px;
    --bgcolor: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 0;
    border: none;
    outline: none;
    background-color: transparent;
    color: #000;
    word-wrap: break-word;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: manipulation;
    -webkit-touch-callout: inherit;
    -webkit-user-select: inherit;
    -khtml-user-select: inherit;
    -moz-user-select: inherit;
    -ms-user-select: inherit;
    user-select: inherit;
}

*::-webkit-scrollbar {
    display: none;
}

* [user-select=false],
* [user-select="0"] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* [user-select=true],
* [user-select="1"] {
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

img {
    object-fit: cover;
}

img[data-src] {
    content: url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
    background: linear-gradient(to right, #EEF0F3, #E0E2E8, #EEF0F3);
}

a[href]:not([href=""]),
button {
    cursor: pointer;
}

textarea {
    resize: none;
}

html {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--bgcolor);
    overflow: hidden scroll;
}

body>nav {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    background-color: #fff;
}

body>nav section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    height: 4rem;
    max-width: var(--width-max);
}

body>nav section strong {
    font-size: 1.75rem;
}

body>nav section ul {
    display: flex;
    gap: 1rem;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: 1s;
}

@media screen and (min-width: 800px) {
    body>nav section ul {
        max-width: 100%;
        opacity: 1;
    }
}

body>nav section button {
    position: absolute;
    right: 1rem;
    max-width: 100%;
    opacity: 1;
    transition: 1s;
    overflow: hidden;
}

@media screen and (min-width: 800px) {
    body>nav section button {
        right: -2rem;
        max-width: 0;
        opacity: 0;
    }
}

body>nav section button i {
    font-size: 1.5rem;
}

body>header {
    position: relative;
    background-size: cover;
    background-position: top center;
    width: 100%;
}

body>header::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

body>header section {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 0 auto;
    padding: 5rem 1rem;
    width: 100%;
    max-width: var(--width-max);
    transition: 0.5s;
}

@media screen and (min-width: 480px) {
    body>header section {
        padding: 15rem 1rem;
    }
}

body>header section article {
    width: 100%;
    max-width: 800px;
}

body>header section article.delay h1 {
    left: -100%;
    opacity: 0;
}

body>header section article.delay b {
    right: -100%;
    opacity: 0;
}

body>header section article.delay a,
body>header section article.delay button {
    top: 8rem;
    opacity: 0.5;
}

body>header section article h1 {
    position: relative;
    left: 0;
    line-height: 3rem;
    font-size: 3rem;
    font-weight: 900;
    opacity: 1;
    filter: drop-shadow(0.125rem 0.125rem 0.5rem rgba(255, 255, 255, 0.8));
    -webkit-filter: drop-shadow(0.125rem 0.125rem 0.5rem rgba(255, 255, 255, 0.8));
    transition: 1s ease-out;
}

body>header section article b {
    position: relative;
    right: 0;
    display: inline-block;
    margin-top: 2rem;
    padding: 1.5rem;
    line-height: 2rem;
    background-color: #f1c50e;
    max-width: 720px;
    font-size: 1.125rem;
    border-radius: 1rem;
    transition: 1.25s ease-out;
}

body>header section article a,
body>header section article button {
    position: relative;
    top: 0;
    display: inline-block;
    margin: 2rem 30% 0 0;
    padding: 0 2rem;
    line-height: 3.5rem;
    font-size: 1.125rem;
    letter-spacing: 2px;
    background-color: #000;
    color: #fff;
    border-radius: 1.75rem;
    opacity: 1;
    transition: 1.5s ease-out;
}

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

    body>header section article a,
    body>header section article button {
        margin-right: 1rem;
    }
}

body>header section article a:nth-last-child(1),
body>header section article button:nth-last-child(1) {
    margin-right: 0;
}

body>header section article a i,
body>header section article button i {
    margin-right: 0.5rem;
    color: #fff;
}

body>section:nth-child(3) {
    width: 100%;
    background: linear-gradient(to bottom, #fff 0% 50%, #F6F1EB 50% 100%);
}

body>section:nth-child(3)>section {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin: 0 auto;
    padding: 5rem 1rem 0;
    width: 100%;
    max-width: var(--width-max);
    overflow: hidden;
}

body>section:nth-child(3)>section header.delay h6 {
    top: 5rem;
    opacity: 0;
}

body>section:nth-child(3)>section header h6 {
    position: relative;
    top: 0;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    opacity: 1;
    transition: 1s ease-out;
}

body>section:nth-child(3)>section>section {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 4rem;
}

body>section:nth-child(3)>section>section.delay article {
    top: 10rem;
}

body>section:nth-child(3)>section>section.delay article i {
    top: 10rem;
    transform: rotate(320deg);
}

body>section:nth-child(3)>section>section.delay article h6 {
    top: 14rem;
    opacity: 0.5;
}

body>section:nth-child(3)>section>section.delay article p {
    top: 18rem;
    opacity: 0.5;
}

body>section:nth-child(3)>section>section article {
    position: relative;
    top: 0;
    margin-top: 4rem;
    padding: 0 2rem 3rem;
    width: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    transition: 1s ease-out;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(3)>section>section article {
        width: calc((100% - 2rem) / 2);
    }
}

@media screen and (min-width: 1024px) {
    body>section:nth-child(3)>section>section article {
        width: calc((100% - 4rem) / 3);
    }
}

body>section:nth-child(3)>section>section article i {
    position: relative;
    top: 0;
    margin-top: -50%;
    width: 8rem;
    line-height: 8rem;
    height: 8rem;
    text-align: center;
    font-size: 3rem;
    border-radius: 50%;
    background-color: var(--col-brand-5);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    transform: 0;
    transition: 1s ease-out;
}

body>section:nth-child(3)>section>section article h6 {
    position: relative;
    top: 0;
    margin-top: 2rem;
    font-size: 1.5rem;
    transition: 1.25s ease-out;
    opacity: 1;
}

body>section:nth-child(3)>section>section article p {
    position: relative;
    top: 0;
    margin-top: 2rem;
    transition: 1.5s ease-out;
    opacity: 1;
}

body>section:nth-child(3)>section div {
    position: relative;
    top: 0;
    margin: 4rem auto 0;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16/10;
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: 1s ease-out;
}

body>section:nth-child(3)>section div.delay {
    top: 10rem;
    opacity: 0;
}

body>section:nth-child(4) {
    width: 100%;
    background-color: #332E29;
}

body>section:nth-child(4)>section {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin: 0 auto;
    padding: 5rem 1rem 10rem;
    width: 100%;
    max-width: var(--width-max);
    transition: 0.5s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(4)>section {
        gap: 6rem;
    }
}

body>section:nth-child(4)>section figure {
    position: relative;
    transition: 0.5s;
}

body>section:nth-child(4)>section figure.delay:nth-child(2)>img {
    left: -100%;
    opacity: 0;
}

body>section:nth-child(4)>section figure.delay:nth-child(3)>img {
    left: 200%;
    opacity: 0;
}

body>section:nth-child(4)>section figure.delay:nth-child(4)>img {
    left: -100%;
    opacity: 0;
}

body>section:nth-child(4)>section figure.delay:nth-child(5)>img {
    left: 200%;
    opacity: 0;
}

body>section:nth-child(4)>section figure:nth-child(2),
body>section:nth-child(4)>section figure:nth-child(3),
body>section:nth-child(4)>section figure:nth-child(4),
body>section:nth-child(4)>section figure:nth-child(5) {
    width: calc((100% - 1rem) / 2);
}

@media screen and (min-width: 640px) {
    body>section:nth-child(4)>section figure:nth-child(2) {
        margin-top: 2rem;
        width: calc(45% - 3rem);
        aspect-ratio: 1/1;
    }

    body>section:nth-child(4)>section figure:nth-child(3) {
        width: calc(55% - 3rem);
        aspect-ratio: 5/4;
    }

    body>section:nth-child(4)>section figure:nth-child(4) {
        margin-top: 2rem;
        width: calc(55% - 3rem);
        aspect-ratio: 5/4;
    }

    body>section:nth-child(4)>section figure:nth-child(5) {
        width: calc(45% - 3rem);
        aspect-ratio: 1/1;
    }
}

body>section:nth-child(4)>section figure img {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    opacity: 1;
    transition: 1s ease-out;
}

body>section:nth-child(4)>section>section {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    background-color: var(--col-brand-5);
    border-radius: 2rem;
    transition: 0.5s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(4)>section>section {
        position: absolute;
        top: 50%;
        left: 50%;
        aspect-ratio: 1/1;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }
}

body>section:nth-child(4)>section>section section {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 1rem;
    text-align: center;
    transition: 1s;
}

body>section:nth-child(4)>section>section section.delay {
    transform: scale(50%);
    opacity: 0.5;
}

body>section:nth-child(4)>section>section section h6 {
    margin-top: 2.25rem;
    line-height: 2.25rem;
    width: 100%;
    font-size: 2rem;
}

body>section:nth-child(4)>section>section section a,
body>section:nth-child(4)>section>section section button {
    position: relative;
    top: 0;
    display: inline-block;
    margin-top: 2rem;
    padding: 0 2rem;
    line-height: 3.5rem;
    font-size: 1.125rem;
    letter-spacing: 2px;
    background-color: #000;
    color: #fff;
    border-radius: 1.75rem;
    opacity: 1;
    transition: 1.5s ease-out;
}

body>section:nth-child(4)>section>section section a i,
body>section:nth-child(4)>section>section section button i {
    margin-right: 0.5rem;
    color: #fff;
}

body>section:nth-child(5) {
    width: 100%;
    background: linear-gradient(to bottom, #332E29 0% 30%, #E5E5E5 30% 100%);
}

body>section:nth-child(5)>section {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6rem;
    margin: 0 auto;
    padding: 5rem 1rem;
    width: 100%;
    max-width: var(--width-max);
}

body>section:nth-child(5)>section.delay::before {
    right: -20%;
    opacity: 0;
}

body>section:nth-child(5)>section::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 2rem;
    right: 1rem;
    width: 34%;
    aspect-ratio: 10/16;
    background-color: var(--col-brand-5);
    border-radius: 2rem;
    transition: 1s ease-out;
    transition-delay: 0.5s;
}

body>section:nth-child(5)>section>section {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    gap: 1.5rem;
    left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 480px;
    transition: 1.5s ease-out;
    transition: 0.5s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(5)>section>section {
        margin-top: 7rem;
    }
}

body>section:nth-child(5)>section>section.delay {
    left: -20%;
    opacity: 0;
}

body>section:nth-child(5)>section>section article {
    display: flex;
    padding: 2rem;
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

body>section:nth-child(5)>section>section article i {
    margin-right: 2rem;
    font-size: 4rem;
    color: var(--col-brand-5);
}

body>section:nth-child(5)>section>section article p {
    line-height: 1.75rem;
    letter-spacing: 1px;
}

body>section:nth-child(5)>section figure {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16/10;
    transition: 1s ease-out;
    opacity: 1;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(5)>section figure {
        position: absolute;
        top: 5rem;
        left: 20%;
        width: 70%;
    }
}

body>section:nth-child(5)>section figure.delay {
    left: -15rem;
    opacity: 0;
}

body>section:nth-child(5)>section figure img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
}

body>section:nth-child(6) {
    width: 100%;
    background-color: var(--col-brand-5);
}

body>section:nth-child(6)>section {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 6rem;
    margin: 0 auto;
    padding: 5rem 1rem;
    width: 100%;
    max-width: var(--width-max);
}

body>section:nth-child(6)>section header h6 {
    position: relative;
    top: 0;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    opacity: 1;
    transition: 1s ease-out;
}

body>section:nth-child(6)>section section {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

body>section:nth-child(6)>section section.delay article {
    opacity: 0.5;
}

body>section:nth-child(6)>section section.delay article:nth-child(1) {
    left: -100%;
}

body>section:nth-child(6)>section section.delay article:nth-child(2) {
    top: 100%;
}

body>section:nth-child(6)>section section.delay article:nth-child(3) {
    left: 200%;
}

body>section:nth-child(6)>section section article {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: 1s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(6)>section section article {
        width: calc((100% - 2rem) / 2);
    }
}

@media screen and (min-width: 1024px) {
    body>section:nth-child(6)>section section article {
        width: calc((100% - 4rem) / 3);
    }
}

body>section:nth-child(6)>section section article:hover {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.5);
}

body>section:nth-child(6)>section section article figure {
    position: relative;
}

body>section:nth-child(6)>section section article figure img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1rem 1rem 0 0;
}

body>section:nth-child(6)>section section article h6 {
    padding: 0 1rem;
    text-align: center;
    font-size: 1.5rem;
}

body>section:nth-child(6)>section section article p {
    padding: 0 1rem;
    line-height: 1.75rem;
    text-align: center;
}

body>section:nth-child(6)>section section article a,
body>section:nth-child(6)>section section article button {
    border-bottom: 0.125rem solid #ddd;
    transition: 0.5s;
}

body>section:nth-child(6)>section section article a:hover,
body>section:nth-child(6)>section section article button:hover {
    border-bottom: 0.125rem solid var(--col-brand-5);
}

body>section:nth-child(7) {
    width: 100%;
}

body>section:nth-child(7)>section {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin: 0 auto;
    padding: 10rem 1rem 5rem;
    gap: 2rem;
    width: 100%;
    max-width: var(--width-max);
}

body>section:nth-child(7)>section::before {
    content: "";
    position: absolute;
    top: 4rem;
    right: -10rem;
    width: 10rem;
    aspect-ratio: 1/1;
    background-color: var(--col-brand-5);
    border-radius: 50%;
    transition: 0.5s;
}

@media screen and (min-width: 1024px) {
    body>section:nth-child(7)>section::before {
        right: 1rem;
    }
}

body>section:nth-child(7)>section figure {
    position: relative;
    margin-bottom: 4rem;
    width: 85%;
    max-width: 800px;
    aspect-ratio: 16/10;
    box-shadow: 4rem 4rem 0 var(--col-brand-5);
    border-radius: 2rem;
    transform: scale(100%);
    opacity: 1;
    transition: 1s;
}

body>section:nth-child(7)>section figure.delay {
    transform: scale(50%);
    opacity: 0.5;
}

body>section:nth-child(7)>section figure img {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.25);
}

body>section:nth-child(7)>section h6 {
    padding-left: 0;
    width: 100%;
    max-width: 1024px;
    line-height: 3rem;
    font-size: 3rem;
    transform: rotateY(0);
    opacity: 1;
    transition: 1s;
}

body>section:nth-child(7)>section h6.delay {
    transform: rotateY(180deg);
    opacity: 0.5;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(7)>section h6 {
        padding-left: 4rem;
    }
}

body>section:nth-child(7)>section b {
    position: relative;
    top: 0;
    padding-left: 0;
    width: 100%;
    max-width: 1024px;
    font-size: 1.25rem;
    opacity: 1;
    transition: 1s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(7)>section b {
        padding-left: 4rem;
    }
}

body>section:nth-child(7)>section b.delay {
    top: 6rem;
    opacity: 0.5;
}

body>section:nth-child(7)>section p {
    position: relative;
    top: 0;
    padding-left: 0;
    width: 100%;
    max-width: 1024px;
    font-size: 1.25rem;
    opacity: 1;
    transition: 1s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(7)>section p {
        padding-left: 4rem;
    }
}

body>section:nth-child(7)>section p.delay {
    top: 10rem;
    opacity: 0.5;
}

body>section:nth-child(7)>section>a,
body>section:nth-child(7)>section>button {
    position: relative;
    left: 0;
    display: inline-block;
    margin-left: 0;
    padding: 0 2rem;
    line-height: 3.5rem;
    font-size: 1.125rem;
    letter-spacing: 2px;
    background-color: #000;
    color: #fff;
    border-radius: 1.75rem;
    opacity: 1;
    transition: 1s ease-out;
    transition-delay: 0.5s;
}

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

    body>section:nth-child(7)>section>a,
    body>section:nth-child(7)>section>button {
        margin-left: 4rem;
    }
}

body>section:nth-child(7)>section>a.delay,
body>section:nth-child(7)>section>button.delay {
    left: -15rem;
    opacity: 0;
}

body>section:nth-child(7)>section>a i,
body>section:nth-child(7)>section>button i {
    margin-right: 0.5rem;
    color: #fff;
}

body>section:nth-child(8) {
    width: 100%;
    background-color: #FFF;
}

body>section:nth-child(8)>section {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin: 0 auto;
    padding: 10rem 1rem 5rem;
    gap: 2rem;
    width: 100%;
    max-width: var(--width-max);
}

body>section:nth-child(8)>section::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 20rem;
    right: 3rem;
    bottom: 2rem;
    aspect-ratio: 10/16;
    background-color: var(--col-brand-5);
    border-radius: 2rem;
}

@media screen and (min-width: 1024px) {
    body>section:nth-child(8)>section::before {
        right: 1rem;
    }
}

body>section:nth-child(8)>section header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 720PX;
}

body>section:nth-child(8)>section header h6 {
    position: relative;
    top: 0;
    line-height: 3rem;
    font-size: 3rem;
    font-weight: 900;
    opacity: 1;
    transition: 1s ease-out;
}

body>section:nth-child(8)>section header p {
    line-height: 1.75rem;
}

body>section:nth-child(8)>section section {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 1024px;
    transition: 0.5s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(8)>section section {
        gap: 2rem;
    }
}

body>section:nth-child(8)>section section figure {
    position: relative;
    width: calc((100% - 1rem) / 2);
    aspect-ratio: 1/1;
    transition: 0.5s;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(8)>section section figure {
        width: calc((100% - 2rem) / 2);
    }
}

@media screen and (min-width: 800px) {
    body>section:nth-child(8)>section section figure {
        width: calc((100% - 4rem) / 3);
    }

    body>section:nth-child(8)>section section figure.delay:nth-child(1)>img,
    body>section:nth-child(8)>section section figure.delay:nth-child(2)>img,
    body>section:nth-child(8)>section section figure.delay:nth-child(3)>img {
        left: 100%;
        transform: rotate(320deg);
        opacity: 0;
    }

    body>section:nth-child(8)>section section figure.delay:nth-child(4)>img,
    body>section:nth-child(8)>section section figure.delay:nth-child(6)>img {
        left: -15rem;
        opacity: 0;
    }

    body>section:nth-child(8)>section section figure.delay:nth-child(5)>img {
        left: 100%;
        opacity: 0;
    }

    body>section:nth-child(8)>section section figure:nth-child(5) {
        width: calc((100% - 4rem) / 3 * 2 + 2rem);
    }

    body>section:nth-child(8)>section section figure:nth-child(6) {
        margin-top: calc((-100% - 2rem) / 3);
    }
}

body>section:nth-child(8)>section section figure img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    transform: rotate(0);
    opacity: 1;
    transition: 1s ease-out;
}

@media screen and (min-width: 640px) {
    body>section:nth-child(8)>section section figure img {
        border-radius: 2rem;
    }
}

body>section:nth-child(9) {
    width: 100%;
}

body>section:nth-child(9)>section {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 auto;
    padding: 10rem 1rem 5rem;
    gap: 4rem;
    width: 100%;
    max-width: var(--width-max);
}

body>section:nth-child(9)>section>section {
    position: relative;
    left: 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    transition: 1s;
}

@media screen and (min-width: 800px) {
    body>section:nth-child(9)>section>section {
        width: calc((100% - 4rem) / 2);
    }
}

body>section:nth-child(9)>section>section.delay:nth-child(1) {
    left: -15rem;
}

body>section:nth-child(9)>section>section.delay:nth-child(2) {
    left: 30%;
}

body>section:nth-child(9)>section>section figure img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 800px) {
    body>section:nth-child(9)>section>section figure img {
        aspect-ratio: 1/1;
    }
}

body>section:nth-child(9)>section>section h6 {
    position: relative;
    top: 0;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    opacity: 1;
    transition: 1s ease-out;
}

body>section:nth-child(9)>section>section label {
    width: 100%;
}

body>section:nth-child(9)>section>section label input {
    padding: 1rem;
    width: 100%;
    line-height: 2rem;
    border-bottom: 0.125rem solid #000;
}

body>section:nth-child(9)>section>section label textarea {
    padding: 1rem;
    width: 100%;
    line-height: 2rem;
    height: 12rem;
    border-bottom: 0.125rem solid #000;
}

body>section:nth-child(9)>section>section>a,
body>section:nth-child(9)>section>section>button {
    position: relative;
    top: 0;
    display: inline-block;
    padding: 0 2rem;
    line-height: 3.5rem;
    font-size: 1.125rem;
    letter-spacing: 2px;
    background-color: #000;
    color: #fff;
    border-radius: 1.75rem;
    opacity: 1;
    transition: 1.5s ease-out;
}

body>section:nth-child(9)>section>section>a i,
body>section:nth-child(9)>section>section>button i {
    margin-right: 0.5rem;
    color: #fff;
}

body>section:nth-child(9)>section ul {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
    width: 100%;
}

body>section:nth-child(9)>section ul li {
    position: relative;
    left: 0;
    display: flex;
    flex-flow: column;
    gap: 1rem;
    padding: 2rem;
    width: 100%;
    background-color: var(--col-brand-5);
    border-radius: 1rem;
    opacity: 1;
    transition: 1s;
}

@media screen and (min-width: 800px) {
    body>section:nth-child(9)>section ul li {
        width: calc((100% - 2rem) / 2);
    }
}

@media screen and (min-width: 800px) {
    body>section:nth-child(9)>section ul li {
        width: calc((100% - 4rem) / 3);
    }
}

body>section:nth-child(9)>section ul li.delay:nth-child(1) {
    left: 6rem;
    opacity: 0;
}

body>section:nth-child(9)>section ul li.delay:nth-child(2) {
    left: 10rem;
    opacity: 0;
}

body>section:nth-child(9)>section ul li.delay:nth-child(3) {
    left: 14rem;
    opacity: 0;
}

body>section:nth-child(9)>section ul li section {
    display: flex;
    gap: 0.5rem;
}

body>section:nth-child(9)>section ul li section i,
body>section:nth-child(9)>section ul li section h6 {
    line-height: 2rem;
    font-size: 1.25rem;
}

body>footer {
    width: 100%;
    background-color: #332E29;
}

body>footer section {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    padding: 5rem 1rem;
    width: 100%;
    max-width: var(--width-max);
}

body>footer section p {
    text-align: center;
    color: #fff;
}

body>footer section ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

body>footer section ul li i {
    font-size: 1.25rem;
    color: #fff;
}

a.hint {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    padding: 0.25rem 1rem;
    letter-spacing: 1px;
    color: #fff;
    font-size: 2rem;
    border-radius: 0.5rem 0 0 0;
    opacity: 0.5;
}

#copy {
    position: absolute;
    top: -100vh;
    left: -100vw;
    opacity: 0;
}