@import url('./../common/_variable.css');

.container h1 {
    display: inline-block;
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    mix-blend-mode: exclusion;
    transition: var(--fitText-animation);
}
.container h2 {
    margin-top: 160px;
    font-size: 60px;
    font-weight: 900;
    color: #444444;
    transition: var(--fitText-animation);
    text-transform: uppercase;
}

/** -------------------- [PC] HERO SECTION -------------------- */
#container-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    min-height: calc(100vh - var(--headerHeight_PC));
    /* height: 100vh; */
}
#container-hero .content {
    max-width: 630px;
}
#container-hero .content > p {
    margin-top: 38px;
    font-size: 30px;
    color: #999999;
    transition: var(--fitText-animation);
}
#container-hero .content > .btn-row {
    margin-top: 78px;
    display: flex;
    column-gap: 40px;
    row-gap: 10px;
    transition: var(--fitText-animation);
}
#container-hero .content > .btn-row > a {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: 300px;
    height: 70px;
    border-radius: 70px;
    background-color: #000;
    font-size: 26px;
    color: #fff;
    mix-blend-mode: exclusion;
    background-color: #fff;
    color: #000;
    transition: var(--fitText-animation);
}
#container-hero .content > .btn-row > a > img {
    width: 30px;
    height: 30px;
    transition: var(--fitText-animation);
}
#container-hero .image {
    max-width: 748px;
}
#container-hero .image > img {
    width: 100%;
    height: 100%;
    transition: var(--fitText-animation);
}
/** -------------------- //[PC] HERO SECTION -------------------- */

/** -------------------- [PC] INTRO SECTION -------------------- */
#container-intro {
    display: flex;
    /* background-color: #1a1a1a; */
    color: #999999;
    min-height: 100vh;
    transition: var(--fitText-animation);
}
#container-intro .content {
    flex: 1;
    transition: var(--fitText-animation);
}
#container-intro .content > p {
    margin-top: 106px;
    padding-bottom: 100px;
    max-width: 597px;
    font-size: 28px;
    font-weight: 400;
    transition: var(--fitText-animation);
}
#container-intro .image {
    position: relative;
    flex: 1;
    max-width: 934px;
    height: 100%;
    transition: var(--fitText-animation);
}
#container-intro .image > img {
    position: absolute;
    bottom: -35vh;
    width: 100%;
    transition: var(--fitText-animation);
}
/** -------------------- //[PC] INTRO SECTION -------------------- */

/** -------------------- [PC] PROCESS SECTION -------------------- */
#container-process ol {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    row-gap: 85px;
    transition: var(--fitText-animation);
}
#container-process ol > li {
    display: flex;
    column-gap: 80px;
    transition: var(--fitText-animation);
}
#container-process ol > li:nth-child(2),
#container-process ol > li:nth-child(4),
#container-process ol > li:nth-child(6) {
    flex-direction: row-reverse;
    transition: var(--fitText-animation);
}
#container-process ol > li > .content,
#container-process ol > li > .image {
    flex: 1;
    width: 50%;
    transition: var(--fitText-animation);
}
#container-process ol > li > .content > .step {
    margin-top: 56px;
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary-color);
    transition: var(--fitText-animation);
}
#container-process ol > li > .content > h3 {
    font-size: 45px;
    font-weight: 700;
    color: #11224e;
    transition: var(--fitText-animation);
}
#container-process ol > li > .content > p {
    margin-top: 50px;
    max-width: 420px;
    font-size: 24px;
    color: #999999;
    transition: var(--fitText-animation);
}
#container-process ol > li > .image > img {
    width: 100%;
    transition: var(--fitText-animation);
}
/** -------------------- //[PC] PROCESS SECTION -------------------- */

/** -------------------- 스크롤 애니메이션 -------------------- */
#container-intro img {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}
/** -------------------- //스크롤 애니메이션 -------------------- */

/** -------------------- RESPONSIVE -------------------- */
/** MOBILE */
@media screen and (max-width: 379px) {
    .container h1 {
        font-size: 28px;
    }
    .container h2 {
        margin-top: 70px;
        font-size: 35px;
    }

    /** -------------------- [Mobile] HERO SECTION -------------------- */
    #container-hero {
        height: auto;
    }
    #container-hero > .inner {
        flex-direction: column-reverse;
    }
    #container-hero .content {
        width: 100%;
        max-width: none;
    }
    #container-hero .content > p {
        margin-top: 10px;
        font-size: 15px;
    }
    #container-hero .content > .btn-row {
        margin-top: 30px;
        column-gap: 7px;
        flex-wrap: wrap;
    }
    #container-hero .content > .btn-row > a {
        flex: none;
        width: 100%;
        height: 45px;
        border-radius: 45px;
        font-size: 14px;
    }
    /** -------------------- //[Mobile] HERO SECTION -------------------- */

    /** -------------------- [Mobile] INTRO SECTION -------------------- */
    #container-intro .inner {
        display: block;
    }
    #container-intro .content {
        flex: 1;
    }
    #container-intro .content > p {
        margin-top: 20px;
        width: 100%;
        max-width: none;
        font-size: 15px;
        padding-bottom: 0;
    }
    #container-intro .image {
        margin: 0 auto;
        margin-top: -30vw;
        flex: none;
        width: 100%;
        max-width: 600px;
        height: auto;
    }
    #container-intro .image > img {
        position: relative;
        width: 100%;
        bottom: -30vw;
    }
    /** -------------------- //[Mobile] INTRO SECTION -------------------- */

    /** -------------------- [Mobile] PROCESS SECTION -------------------- */
    #container-process ol {
        margin-top: 50px;
        row-gap: 40px;
    }
    #container-process ol > li {
        flex-direction: column;
    }
    #container-process ol > li:nth-child(2),
    #container-process ol > li:nth-child(4),
    #container-process ol > li:nth-child(6) {
        flex-direction: column;
    }
    #container-process ol > li > .content,
    #container-process ol > li > .image {
        width: 100%;
    }
    #container-process ol > li > .content > .step {
        margin-top: 0;
        font-size: 16px;
        color: var(--secondary-color);
    }
    #container-process ol > li > .content > h3 {
        font-size: 20px;
    }
    #container-process ol > li > .content > p {
        margin-top: 10px;
        max-width: none;
        font-size: 12px;
    }
    #container-process ol > li > .image > img {
        margin-top: 20px;
    }
    /** -------------------- //[Mobile] PROCESS SECTION -------------------- */
}
/** TABLET */
@media screen and (min-width: 380px) and (max-width: 1023px) {
    .container h1 {
        font-size: calc((60px + 28px) / 2);
    }
    .container h2 {
        margin-top: calc((160px + 70px) / 2);
        font-size: calc((60px + 35px) / 2);
    }

    /** -------------------- [Tablet] HERO SECTION -------------------- */
    #container-hero {
        height: auto;
    }
    #container-hero > .inner {
        flex-direction: column-reverse;
    }
    #container-hero .content {
        width: 100%;
        max-width: none;
    }
    #container-hero .content > p {
        margin-top: calc((38px + 10px) / 2);
        font-size: calc((30px + 15px) / 2);
    }
    #container-hero .content > .btn-row {
        margin-top: calc((78px + 30px) / 2);
        column-gap: calc((40px + 7px) / 2);
        flex-wrap: wrap;
    }
    #container-hero .content > .btn-row > a {
        flex: 1;
        min-width: 200px;
        height: calc((70px + 45px) / 2);
        border-radius: calc((70px + 45px) / 2);
        font-size: calc((26px + 14px) / 2);
    }
    #container-hero .image {
        position: relative;
        display: flex;
    }
    /* [ TEST ] 메인섹션 반투명처리 */
    /* #container-hero .image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        pointer-events: none;
    } */
    /** -------------------- //[Tablet] HERO SECTION -------------------- */

    /** -------------------- [Tablet] INTRO SECTION -------------------- */
    #container-intro .inner {
        display: block;
    }
    #container-intro .content {
        flex: 1;
    }
    #container-intro .content > p {
        margin-top: calc((106px + 20px) / 2);
        width: 100%;
        max-width: none;
        font-size: calc((28px + 15px) / 2);
        padding-bottom: 0;
    }
    #container-intro .image {
        margin: 0 auto;
        margin-top: -30vw;
        flex: none;
        width: 100%;
        max-width: 600px;
        height: auto;
    }
    #container-intro .image > img {
        position: relative;
        width: 100%;
        bottom: -30vw;
    }
    /** -------------------- //[Tablet] INTRO SECTION -------------------- */

    /** -------------------- [Tablet] PROCESS SECTION -------------------- */
    #container-process ol {
        margin-top: calc((100px + 50px) / 2);
        row-gap: calc((85px + 40px) / 2);
    }
    #container-process ol > li {
        flex-direction: column;
    }
    #container-process ol > li:nth-child(2),
    #container-process ol > li:nth-child(4),
    #container-process ol > li:nth-child(6) {
        flex-direction: column;
    }
    #container-process ol > li > .content,
    #container-process ol > li > .image {
        width: 100%;
    }
    #container-process ol > li > .content > .step {
        margin-top: 0;
        font-size: calc((30px + 16px) / 2);
        color: var(--secondary-color);
    }
    #container-process ol > li > .content > h3 {
        font-size: calc((45px + 20px) / 2);
    }
    #container-process ol > li > .content > p {
        margin-top: calc((50px + 10px) / 2);
        max-width: none;
        font-size: calc((24px + 12px) / 2);
    }
    #container-process ol > li > .image > img {
        margin-top: 20px;
    }
    /** -------------------- //[Tablet] PROCESS SECTION -------------------- */
}
/** -------------------- //RESPONSIVE -------------------- */
