@charset "utf-8";

/* font */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    list-style: none;
    text-decoration: none;
    border-collapse: collapse;
    line-height: 1.5;
}

:root {
    /* --bgColor: #ebebeb; */
    --main-color: #e499b3;
    --bgColor: #1c1a1a;
    --textColor: white;
    --fh: 100vh;

    --text-color: #f0a9c3;
    --text-color-strong: #ffc1d6;
    --point-color: #7fd1cc;

    --padding: 1.5rem;
}

.r_menu .bookmarkBtn {
    width: 110px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: var(--bgColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
}

.r_menu .IconContainer {
    width: 30px;
    height: 30px;
    background: linear-gradient(to top, #67b3ae, var(--point-color));
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    transition-duration: 0.3s;
}

.r_menu .icon {
    border-radius: 1px;
}

.r_menu .text {
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
    transition-duration: 0.3s;
    font-size: 13px;
}

.r_menu .bookmarkBtn:hover .IconContainer {
    width: 90px;
    transition-duration: 0.3s;
}

.r_menu .bookmarkBtn:hover .text {
    transform: translate(10px);
    width: 0;
    font-size: 0;
    transition-duration: 0.3s;
}

.r_menu .bookmarkBtn:active {
    transform: scale(0.95);
    transition-duration: 0.3s;
}

/* common */
/* .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    z-index: 9999;
    transition: 0.1s;
    background-color: transparent;
    mix-blend-mode: difference;
} */

a {
    display: inline-flex;
    max-width: 100%;
}

video {
    display: block;
    width: 100%;
    object-fit: cover;
}

img {
    max-width: 100%;
    display: block;
}

body {
    background-color: var(--bgColor);
}

body,
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.noscroll {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    cursor: auto;
    top: 0;
}

section,
article {
    font-family: "Pretendard Variable", Pretendard, -apple-system,
        BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
        "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    min-width: 100%;
    width: 100%;
}

.pin-spacer {
    min-width: 100%;
    width: 100%;
}

.hidden {
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    z-index: -99999;
}

/* common end*/

/* header */

header {
    position: fixed;
    z-index: 999;
    padding: 1rem;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    transition: 0.8s;
}

.header.hide {
    transform: translateY(-100%);
}

.header-wrap {
    /* border: 1px dashed currentColor; */
    /* border-radius: 0.9vw; */
    /* border-bottom: 1px solid white; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--padding);
    width: 100%;
    height: 8vh;
}

.header .header-wrap .logo {
    width: 5.625rem;
    position: relative;
}

.header .header-wrap .logo img {
    filter: invert(1);
}

.header .header-wrap nav .r_menu {
    display: flex;
    align-items: center;
    gap: 2vw;
    justify-content: flex-end;
}

.ham {
    cursor: pointer;
    border: 1px dashed white;
    border-radius: 3vw;
    justify-content: center;
    align-items: center;
    width: 3.8rem;
    height: 2.4rem;
    display: flex;
}

.ham-line {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.ham-line .line {
    display: block;
    background-color: white;
    border-radius: 5rem;
    width: 1.7rem;
    height: 1px;
}

#ham-toggle:checked+.ham-line {
    gap: 0;
}

/* header end */

/* main */
main {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.spacer {
    height: 100vh;
    width: 100%;
    background: transparent;
}

section {
    height: 100vh;
    width: 100%;
    background: var(--bgColor);
}

/* load */
.banner_section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    z-index: 5;
    margin: 0 auto;
    z-index: 99;
    font-size: 5em;
}

.banner_title {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner_title .copy {
    position: absolute;
    width: 100%;
    overflow: hidden;
    text-align: center;
    bottom: 22%;
}

.banner_title .copy span {
    color: #f5f5f5;
    display: block;
    font-size: 14px;
    opacity: 0;
    animation: show 3s 4s forwards;
}

@keyframes show {
    100% {
        opacity: 1;
    }
}

.banner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #111;
}

.banner::before {
    display: none;
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../1x/valentin-petrov-m-mal-01.jpg");
    background-size: cover;
    background-position: center;
    animation: bgZoomIn 4s ease-in-out 1 forwards;
    z-index: -1;
    pointer-events: none;
}

.banner::after {
    display: none;
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../1x/after.png");
    background-size: cover;
    background-position: top;
    transform: scale(2);
    animation: bgZoomOut 4s ease-in-out 1 forwards;
    z-index: -1;
    pointer-events: none;
}

@keyframes bgZoomIn {
    from {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

@keyframes bgZoomOut {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(2);
    }
}

#hero svg path {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1;
    stroke-dasharray: 570;
    stroke-dashoffset: 570;
    animation: textAnimation 4s ease-in-out 1 forwards;
}

@keyframes textAnimation {
    0% {
        stroke-dashoffset: 570;
    }

    80% {
        fill: transparent;
    }

    100% {
        fill: #fff;
        stroke-dashoffset: 0;
    }
}

/* load end */

/* overlay title */
.overlay_title {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    padding-inline: var(--padding);
    display: flex;
    background: transparent;
    align-items: center;
}

.overlay_title h2 {
    font-size: 10vw;
    font-family: "Playfair Display", serif;
    /* color: rgb(248, 183, 206); */
    /* color: #382d2d; */
    color: white;
    line-height: 1;
    /* border-top: 1px solid #fff; */
}

.overlay_title #unique {
    font-size: 9.7vw;
    letter-spacing: -0.2vw;
}

.main_title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .arrow-down {
    display: block;
    align-content: center;
    width: max(2.2rem, 2.2917vw);
    animation: arrow-up-down 3.4s infinite;
    will-change: transform;
    opacity: 0.8;
    transition: 1s;
    padding-top: 2rem;
    padding-right: 2rem;
} */
.arrow-down {
    position: absolute;
    top: 75vh;
    opacity: 0.8;
    /* width: 100%; */
    right: 0;
    z-index: 9999;
    /* background: blue; */
    display: block;
    align-content: center;
    /* width: max(2.2rem, 2.2917vw); */
    /* height: 100%; */
    /* animation: arrow-up-down 3.6s infinite; */
    will-change: transform;
    transition: 1s;
    /* padding-top: 2rem; */
    padding-right: 2rem;
    mix-blend-mode: overlay;
}

.remove {
    opacity: 0;
}

@keyframes arrow-up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15%);
    }

    90%,
    100% {
        transform: translateY(0);
    }
}

/* overlay_title end */

.m1 {
    position: fixed;
    top: 0;
    left: 0;
    height: 200vh;
    z-index: -1;
    overflow: hidden;
}

article {
    background: transparent;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent, transparent); */
    /* backdrop-filter: blur(4px); */
    position: relative;
}

.m1 img {
    max-width: 100%;
    display: block;
    width: 100%;
}

.sec-title {
    display: flex;
    padding-top: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
    line-height: 1;
    align-items: center;
}

.sec-title h2 {
    font-size: max(9vw, 2rem);
    font-weight: 500;
    /* letter-spacing: 0.05em; */
    text-transform: uppercase;
    /* color: #f7f7f7; */
    color: var(--main-color);
    /* color: #1e1e1e; */
    font-family: "Playfair Display", serif;
}

.arrow {
    position: absolute;
    width: 4rem;
}

.btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-block: 3.5rem 4.5rem;
}

.btn {
    text-align: center;
    display: inline-flex;
    color: #f5f5f5;
    padding-inline: 2rem;
    font-size: clamp(14px, 0.833vw, 1rem);
    min-height: 50px;
    background-color: var(--text-color);
    border-radius: 50rem;
    justify-content: center;
    align-items: center;
    background: #242020;
    border: 1px solid #343030;
}

.btn:hover {
    background: #353131;
}

.go-down-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    aspect-ratio: 1;
    width: 200px;

    path {
        fill-rule: evenodd;
        stroke: black;
        stroke-width: 1px;
        /* stroke-width: 1.5px; */
        stroke-linecap: butt;
        stroke-linejoin: miter;
        fill: none;
    }

    svg {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: -1;
        display: block;
    }

    text {
        font-size: 11px;
        transform-origin: center;
    }
}

@keyframes rotate-btn {
    to {
        transform: rotate(360deg);
    }
}

.go-down-btn text {
    animation: rotate-btn 10s linear infinite;
    /* fill: #fff; */
}

.intro {
    border-radius: 2vw 2vw 0 0;
    padding-inline: var(--padding);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding-block: 10rem 0;
}

.intro .introduce {
    color: white;
    padding-bottom: 1rem;
}

.intro .flex_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intro .introduce h2 {
    font-size: clamp(2.1rem, 8.2vw, 10rem);
    color: inherit;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    width: 100%;
    letter-spacing: -0.01vw;
    text-align: center;

    &span {
        color: var(--text-color);
    }
}

.intro .introduce p {
    text-align: center;
    font-size: clamp(1rem, 1.15vw, 1.375rem);
    color: #f9f9f9;
    margin-top: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1px;
}

.intro .introduce span {
    color: var(--main-color);
    font-weight: 500;
}

.vidbox {
    position: relative;
    width: 100%;
    height: 380px;
    background: var(--bgColor);
}

.vidbox_inner {
    height: 100%;
    display: flex;
    justify-content: center;
}

.vidbox video {
    width: auto;
    height: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 94%, 0 94%);
    overflow: hidden;
    border-radius: 50% 50% 0 0;
    filter: brightness(0.45);
}

.m2 {
    padding-top: 10rem;
    min-height: 100vh;
    height: 100%;
    background: var(--bgColor);
    padding-inline: var(--padding);
    padding-bottom: 3rem;
}

.m2 .sec-title {
    padding-top: 1rem;
}

.m2 .sec-title a {
    font-size: 4rem;
    font-weight: 300;
    line-height: 2.5;
}

.m2 .center_line {
    width: 10vw;
    background: rgba(255, 255, 255, 0.9);
    height: 1px;
}

.card ul {
    display: grid;
    /* gap: 10px; */
    gap: 60px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-content: center;
}

.card ul li {
    width: 100%;
    min-width: 400px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.2vw;
}

.card ul li a {
    background: #e3e3e3;
    width: 100%;
    height: 100%;
    align-content: center;
}

.card ul li a img {
    display: block;
    scale: 0.8;
}

.recent {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 1rem;
}

.recent a {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
    width: 100%;
    overflow: hidden;
    background-attachment: fixed;
    position: relative;
}

/* 
.recent a:hover::after {
    opacity: 1;
}

.recent a:hover {
    transition: 0.7s;
} */

/* .recent a::after {
    transition: 0.5s;
    opacity: 0;
    inset: 0;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    content: attr(data-text);
    padding: 1rem 2rem;
    color: white;
    text-shadow: 2px 2px 10px #00000020;
    background: rgba(0, 0, 0, 0.15);
    font-size: clamp(1rem, 2.4vw, 3rem);
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
} */

.txt2 {
    display: none;
}

.m3 {
    padding-top: 3rem;
    min-height: 100vh;
    height: 100%;
    overflow: hidden;
    margin-inline: 0 !important;
    /* background: white; */
    background: var(--bgColor);
}

.m3 .sec-title {
    justify-content: center;
}

/* .gallery */
.gallery {
    padding-top: 0.5rem;
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-grid {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 0.25rem;
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item {
    background-position: 50% 50%;
    background-size: cover;
    flex: none;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    filter: brightness(1);
    height: 33vh;
    width: 33vw;
    padding: 0.5vw;
}

.gallery-item.target {
    z-index: 5;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: min(24vw, 220px);
    background-repeat: no-repeat;
}

article {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
}

.gallery .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #111;
    z-index: 6;
    text-align: center;
    width: 100%;
    padding-inline: 2rem;
    overflow: hidden;
}

.gallery .caption h3 {
    font-size: clamp(2.75rem, 4.167vw, 5rem);
    letter-spacing: 0.022vw;
    opacity: 0;
    transform: translateY(200%);
    overflow: hidden;
    scale: 0.8;
}

.gallery .caption p {
    font-size: clamp(14px, 1.042vw, 1.25rem);
    opacity: 0;
    transform: translateY(200%);
    overflow: hidden;
}

article h3 {
    text-align: center;
    font-size: clamp(3rem, 4.25vw, 8rem);
    overflow: hidden;
    color: white;
    /* color: var(--textColor); */
    /* white-space: pre-line; */
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10rem;
    padding: 1.5rem 5.5rem;
    /* border: 1px solid white; */
    box-shadow: 1px 1px 16px rgba(255, 255, 255, 0.4);
}

article h3 p {
    border: 2px dotted white;
    /* padding-block: 0.5vw; */
    /* transform: rotateX(10deg) skewX(9deg); */
    border-radius: 23rem;
    perspective: 1200px;
    transform-style: preserve-3d;
    transform-origin: center;
    overflow: hidden;
    text-align: center;
    display: inline-flex !important;
    flex-direction: column;
    color: currentColor;
}

/* article h3 p::before {
    content: '';
    outline: 2rem solid rgba(255, 255, 255, 0.7);
    position: absolute;
    transform: rotateX(82deg) skewX(0deg);
    border-radius: 40rem;
    perspective: 1200px;
    transform-style: preserve-3d;
    z-index: -1;
    inset: -55% 2rem 2rem 2rem;
    padding: 12rem;
    transform-origin: center;
    overflow: hidden;
    color: currentColor;
} */

article h3 span {
    position: relative;
    text-align: center;
    display: inline-block;
    transition: 0.3s;
    min-width: 8ch;
    color: currentColor;
}

article h3 span::after {
    top: 100%;
    width: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    content: "Special";
}

article h3 span::before {
    top: 200%;
    width: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    content: "Unique";
}

/* gallery end */

/* marquee start */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: max-content;
    background: var(--bgColor);
}

.marquee__inner {
    display: flex;
    gap: 2.5vw;
    align-items: center;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    white-space: nowrap;
    will-change: transform;
}

.marquee__inner h3 {
    color: rgb(235, 235, 235);
    font-size: 10vw;
}

/* marquee end */

/* pallax section */

.parallax-section {
    display: none;
    background: white;
    position: relative;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding-block: 5rem 10rem;
}

.image-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0%;
    width: 80%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(45% 35%, 86% 35%, 86% 86%, 45% 86%);
    z-index: 1;
}

.background-image {
    width: 100%;
    cursor: pointer;
    height: 100%;
    background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1950&q=80");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.title {
    position: relative;
    z-index: 2;
    padding: 3rem;
    top: 7%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    will-change: transform;
}

.description {
    position: relative;
    top: 30%;
    z-index: 2;
    padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 2rem;
    will-change: transform;
    text-shadow: 0px 7px 12px rgba(0, 0, 0, 0.08);
}

em {
    color: #ffc107;
    font-style: normal;
}

.spacer.v2 h2 {
    color: white;
    font-size: 10rem;
    margin-left: 2.5rem;
}

/* pallax section end */

footer {
    position: relative;
    height: var(--fh);
    /* overflow: clip; */
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 100%);
    background: var(--bgColors);
}

footer .footer_inner {
    position: relative;
    background-color: var(--bgColor);
    top: -100vh;
    height: calc(100vh + var(--fh));
    width: 100%;
    /* padding-inline: var(--padding); */
}

footer .footer_cont {
    height: var(--fh);
    position: sticky;
    top: calc(100vh - var(--fh));
    display: flex;
    background: url(../1x/bg.png) no-repeat center / 100%;
    filter: grayscale(0.92);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 1.5s, filter 1s;
}

.contact_wrap {
    max-width: 30%;
    position: relative;
    isolation: isolate;
    z-index: 2;
    margin-bottom: 0.5rem;
    padding-block: 2.5rem;
}

.contact {
    position: relative;
    background: white;
    color: rgb(0, 0, 0);
    transition: 1s;
    border-radius: 50rem;
    padding: 1.5rem;
    aspect-ratio: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: clamp(1.25rem, 1.667vw, 2rem);
    transform: rotate(352deg);
    cursor: pointer;
    border: none;
    transition: transform 0.15s scale 1s ease-out;
    will-change: transform;
    box-shadow: 0px 0px 18px rgb(0 0 0 / 12%);
}

@keyframes border-angle-rotate {
    from {
        --border-angle: 0%;
    }

    to {
        --border-angle: 100%;
    }
}

@property --border-angle {
    syntax: "<percentage>";
    initial-value: 0%;
    inherits: true;
}

.contact::after {
    display: block;
    content: "";
    overflow: hidden;
    inset: 0;
    border-radius: 5rem;
    position: absolute;
    z-index: -1;
    background: white;
}

.contact::before {
    background-image: conic-gradient(var(--point-color) var(--border-angle),
            transparent var(--border-angle));
    animation: border-angle-rotate 3s infinite linear both;
    z-index: -2;
    inset: -3px;
    overflow: hidden;
    border-radius: 5rem;
    position: absolute;
    display: block;
    content: "";
}

.contact:hover {
    color: white;
    scale: 1.02;
    transition: scale 1s;
    animation: none;
}

.contact:hover::after,
.contact:hover::before {
    animation: unset;
    background: var(--point-color);
    border: 1px solid white;
}

.adam {
    position: absolute;
    display: block;
    width: 40%;
    left: 10%;
    animation: move 5s ease forwards;
    pointer-events: none;
    transition: 1s;
}

.adam img {
    transform: translateY(30%);
}

.god {
    width: 45%;
    position: absolute;
    display: block;
    right: 0;
    animation: move2 5s ease forwards;
    pointer-events: none;
    transition: 1s;
}

.adam img,
.god img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.copyright p {
    color: white;
    text-align: right;
    opacity: 0.5;
    font-size: 12px;
    padding: 4px var(--padding);
    padding-right: 2px;
}

/* text hovering */
.title__hover {
    position: relative;
    cursor: pointer;
}

.title__img {
    position: absolute;
    aspect-ratio: 3 /4;
    width: 230px;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: 30% 50%;
    will-change: transform;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.title__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* contact modal dialog */
dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: auto;
}

.colorful-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    font-family: "Pretendard Variable", Pretendard, -apple-system,
        BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
        "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    font-family: inherit;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    font-family: inherit;
}

textarea.form-input {
    height: 100px;
}

.form-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--point-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: #79dbd5;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    aspect-ratio: 1;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--point-color);
}

.rapid {
    display: flex;
    gap: 4px;
    width: 100%;
    align-items: center;
    padding-top: 0.655rem;
}

.rapid li {
    flex: 1;
}

.rapid li a {
    gap: 4px;
    font-size: 14px;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #a5a7a7;
    font-weight: 300;
    border: 1px solid #cde2e2;
    border-radius: 8px;
    height: 40px;
    transition: 0.3s;
}

.rapid li a:hover {
    color: white;
    font-weight: 400;
    background: var(--point-color);
}

.rapid li a .icon_wrap {
    display: flex;
}

@media (max-aspect-ratio: 12 / 10) {
    :root {
        --padding: 1rem;
    }

    #load_svg {
        width: 230px;
        height: 230px;
    }

    header {
        padding-inline: 0;
    }

    .spacer {
        display: none;
    }

    .banner_title {
        margin-bottom: 12dvh;
    }

    .banner_title .copy {
        bottom: 18%;
    }

    .overlay_title {
        padding-bottom: 10vh;
    }

    .overlay_title h2 {
        border: none;
    }

    .intro {
        padding-block: 5.75rem 0;
    }

    .intro .introduce {
        padding-bottom: 0;
    }

    .intro .introduce h2 {
        text-align: left;
    }

    .intro .introduce p {
        text-align: left;
        padding-right: 1.25rem;
        font-size: 14px;
    }

    .vidbox {
        margin-top: -1px;
        padding-bottom: 0;
        height: auto;
        border-bottom: 1px solid rgb(48 41 43);
    }

    .vidbox video {
        /* border-radius: 0; */
        padding: 2rem;
        padding-top: 0;
    }

    .m2 {
        /* border-top: 1px solid rgb(48 41 43); */
        padding-top: 5rem;
    }

    .m3 {
        padding-top: 4rem;
    }

    .m3 .sec-title {
        padding-block: 0;
    }

    .gallery {
        padding-top: 0;
    }

    .sec-title {
        padding-bottom: 2rem;
    }

    .copy span {
        font-size: 12px;
        text-align: center;
        top: 40%;
        padding: 4px;
    }

    #scroll_down {
        display: none;
    }

    .recent {
        margin-top: 1rem;
    }

    .recent a {
        background-attachment: unset;
        aspect-ratio: 2 / 1;
        height: auto;
    }

    .marquee {
        border-bottom: 1px solid #fff;
        padding-block: 0.25rem;
    }

    .contact {
        padding: 1rem;
    }
}