@font-face {
    font-family: "NanumGothic";
    font-weight: 500;
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothic.eot);
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothic.eot?#iefix) format("embedded-opentype"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothic.woff) format("woff"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothic.ttf) format("truetype");
}

@font-face {
    font-family: "NanumGothic";
    font-weight: 600;
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicBold.otf) format("embedded-opentype"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicBold.ttf) format("truetype"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicBold.woff) format("woff");
}

@font-face {
    font-family: "NanumGothic";
    font-weight: 700;
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicExtraBold.otf) format("embedded-opentype"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicExtraBold.ttf) format("truetype"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicExtraBold.woff) format("woff");
}

@font-face {
    font-family: "NanumGothic";
    font-weight: 400;
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicLight.otf) format("embedded-opentype"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicLight.ttf) format("truetype"),
        url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumGothic/NanumGothicLight.woff) format("woff");
}
body {
    width: 100%;
    height: auto;
    margin: 0;
    font-family: "NanumGothic";
    font-weight: 500;
}
.logo_img {
    width: 332px;
}
.section_1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}
.section_1 .top_text {
    font-size: 24px;
    color: #858585;
    margin-top: 100px;
}
.logo_highlight {
    font-weight: 600;
    color: #000;
}
.logo_accent {
    color: #138ba1;
}
.section_1 .under_text {
    font-size: 16px;
    line-height: 26px;
    color: black;
    text-align: center;
}
.btn {
    width: 280px;
    line-height: 32px;
    border-radius: 24px;
    border: none;
    background-color: #e73262;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 8px;
    margin: 24px 0 50px 0;
    cursor: pointer;
}
.footer {
    height: 120px;
    background-color: #2a2b29;
    color: #fff;
    padding: 8px;
}
.footer_box {
    display: flex;
    justify-content: center;
}
.footer_top {
    margin-right: 12px;
}
.footer_bot {
    text-align: center;
}
@media (max-width: 1024px) {
    .section_1 .under_text {
        text-align: center;
        padding: 0 68px 0;
    }
}
@media (max-width: 768px) {
    .section_1 .under_text {
        text-align: center;
        padding: 0 68px 0;
    }
    .section_1 .top_text {
        text-align: center;
        padding: 0 24px 0;
    }
}
@media (max-width: 480px) {
    .section_1 .top_text {
        text-align: center;
        padding: 0 12px 0;
    }
    .section_1 .under_text {
        text-align: center;
        padding: 0 32px 0;
    }
    .footer {
        height: auto;
    }
    .footer_top span {
        display: block;
    }
    .footer_box {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    p.footer_top {
        display: flex;
        margin: 0;
    }
    p.footer_top:first-of-type {
        margin-bottom: 5px;
    }
    p.footer_bot {
        margin: 0;
    }
    img.logo_img {
        width: 300px;
    }
    .section_1 .top_text {
        font-size: 19px;
        margin-top: 60px;
    }
}

#section_2 {
    gap: var(--gap);
    min-height: calc(50vh - 120px);
}
:root {
    --width: 160px;
    --height: 96px;
    --size: var(--width, height);
    --gap: calc(var(--size) / 5);
    --duration: 48s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

* {
    box-sizing: border-box;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
.marquee__group {
    animation-play-state: paused;
}
}

.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }
    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }
    to {
        transform: translateY(var(--scroll-end));
    }
}

/* Element styles */
.marquee img {
    width: var(--size);
    aspect-ratio: 5/3;
    padding: calc(var(--size) / 10);
}

.marquee--vertical img {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
}

.wrapper--vertical {
    flex-direction: row;
    height: 100vh;
}
