@keyframes scrollPhotos {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.belita [class*="sec"] {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.belita .sec1 .text-page {
    width: 100%;
    height: 100%;
    padding: 0 6.25rem;
    position: relative;
    z-index: 2;
}
.belita .sec1 .text-page > div { width: 100%; }
.belita .sec1 .text-page p,
.belita .sec1 .text-page span {
    font-family: 'Minguk-Bold', sans-serif;
    font-size: 4.375rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: -3.5px;
}
.belita .sec1 img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    object-position: center
}

.belita .sec2 { display: grid; grid-template-rows: 1fr 1fr; }
.belita .sec2 h3,
.belita .sec2 p,
.belita .sec2 span {
    word-break: keep-all;
}
.belita .sec2 .photo-section {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.belita .sec2 .photo-line {
    background-color: #000;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%);
}
.belita .sec2 .photo-point {
    background-color: #000;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 100px;
    z-index: 1;
    transform: translateY(-50%);
}
.belita .sec2 .photo-box {
    width: max-content;
    height: 100%;
    gap: 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    animation: scrollPhotos 30s linear infinite
}
.belita .sec2 .content-box {
    width: 100%;
    max-width: 1460px;
    padding: 0 30px;
    margin: 0 auto;
}
.belita .sec2 .content-box a {
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.9px;
    line-height: 1;
    background-color: #fff;
    width: max-content;
    padding: 0.5rem 1.25rem;
    border: 1px solid #000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.belita .sec2 .content-box a:hover { color: #fff; background-color: #333; border-color: #333; }
.belita .sec2 .content-sec1 h3 {
    font-family: "Minguk-Bold", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.belita .sec2 .content-sec1 p {
    color: #000;
    font-size: 1.375rem;
    line-height: 1.6;
    letter-spacing: -0.66px;
    margin-bottom: 1.5rem;
}
.belita .sec2 .content-sec2 {
    width: 100%;
    height: max-content;
    display: grid;
    grid-template-columns: 13fr 10fr;
    align-items: end;
    gap: 7.75rem;
}
.belita .sec2 .content-sec2 h3 {
    font-family: "Minguk-Bold", sans-serif;
    font-size: 2.5rem;
    letter-spacing: -2px;
    margin-bottom: 2.375rem;
}
.belita .sec2 .content-sec2 h3 > span { font-size: 3.125rem; }
.belita .sec2 .content-sec2 h3 > span > span { font-family: "Minguk-Regular", sans-serif; }
.belita .sec2 .content-sec2 > div:first-child p {
    font-size: 1.375rem;
    line-height: 1.6;
    letter-spacing: -0.66px;
    margin-bottom: 1.875rem;
}
.belita .sec2 .content-sec2 > div:first-child p span { width: max-content; background-color: #ebeaea; }
.belita .sec2 .content-sec2 > div:first-child p span strong { font-weight: 600; }
.belita .sec2 .content-sec2 > div:last-child { gap: 3rem; }
.belita .sec2 .content-sec2 > div:last-child h6 {
    font-size: 1.125rem;
    font-style: normal;
    line-height: 166%;
    letter-spacing: -0.54px;
    max-width: max-content;
    padding: 0 0.625rem;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 0.625rem;
}
.belita .sec2 .content-sec2 > div:last-child p { color: #666; line-height: 156.25%;  letter-spacing: -0.48px; }

@media screen and (max-width: 1400px) {
    .belita .sec1 .text-page { padding: 0 3.5rem; }
}

@media screen and (max-width: 1200px) {
    .belita .sec1 .text-page {
        height: 100%;
        display: block;
        padding: 8rem 3.5rem 15%;
    }
    .belita .sec1 .text-page > div {
        height: 100%;
        flex-direction: column;
        align-items: start;
    }
    .belita .sec1 .text-page p,
    .belita .sec1 .text-page span {
        font-size: 3.5rem;
    }
    .belita .sec1 .text-page p:first-child {
        height: calc(100% - 95px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .belita .sec2 .photo-box { gap: 1.5rem;}
    .belita .sec2 .photo-box img {
        max-width: 286px;
        max-height: 300px;
        object-fit: contain;
    }
    .belita .sec2 .content-sec1 h3 { font-size: 2.25rem; }
    .belita .sec2 .content-sec1 p { font-size: 1.125rem; }
    .belita .sec2 .content-sec2 { gap: 2rem; }
    .belita .sec2 .content-sec2 h3 { font-size: 2rem; }
    .belita .sec2 .content-sec2 h3 > span { font-size: 2.5rem; margin-bottom: 1.5rem; }
    .belita .sec2 .content-sec2 > div:first-child p { font-size: 1.125rem; }
}

@media screen and (max-width: 768px) {
    .belita .sec1 .text-page { padding: 90px 40px 100px; }
    .belita .sec1 .text-page p,
    .belita .sec1 .text-page span {
        font-size: 2.5rem;
    }

    .belita .sec2 { grid-template-rows: 2fr 3fr; }
    .belita .sec2 .photo-box { padding-top: 20px; }
    .belita .sec2 .photo-box img {
        max-width: 250px;
        max-height: 250px;
        object-fit: contain;
    }
    .belita .sec2 .content-sec1 h3 { font-size: 2rem; line-height: 1.5; }
    .belita .sec2 .content-sec1 p, .belita .sec2 .content-box a { font-size: 1.125rem; }
    .belita .sec2 .content-sec2 { grid-template-columns: 1fr; }
    .belita .sec2 .content-sec2 > div:last-child { display: none; }
    .belita .sec2 .content-sec2 h3 { margin-bottom: 1.5rem; }
}

@media screen and (max-width: 480px) {
    .belita .sec1 .text-page { padding: 80px 20px 100px; }
    .belita .sec1 .text-page p,
    .belita .sec1 .text-page span { font-size: 2.5rem; }
    .belita .sec1 .text-page p:first-child { height: calc(100% - 68px); }

    .belita .sec2 { grid-template-rows: 3fr 5fr; }
    .belita .sec2 .photo-box img { max-width: 200px; max-height: 200px; }
    .belita .sec2 .content-box { padding: 0 20px; }
    .belita .sec2 .content-sec1 h3 { font-size: 1.5rem; line-height: 1.5; margin-bottom: 1.25rem; }
    .belita .sec2 .content-sec1 p, .belita .sec2 .content-box a { font-size: 1rem; }
    .belita .sec2 .content-sec2 { grid-template-columns: 1fr; }
    .belita .sec2 .content-sec2 > div:last-child { display: none; }
    .belita .sec2 .content-sec2 h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
    .belita .sec2 .content-sec2 h3 > span { font-size: 1.875rem; }
    .belita .sec2 .content-sec2 > div:first-child p { font-size: 1rem; }
}