#container {
    background-color: #000;
}


/* first-section */
.first-section {
    height: 100vh;
    min-height: 1000px;
}

.visual-area {
    height: calc(100% - 90px);
    background-image: url(/images/payment/visual-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-area .content-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0 110px;
}

.visual-area .title-group {
    margin-top: 140px;
    gap: 25px 0;
}

.visual-area .title{
    font-family: 'GMarketSans', sans-serif;
    font-weight: var(--fontWeightBold);
}

.visual-area .title .txt-white {
    background: linear-gradient(95deg, #F2F2F2 -2.59%, #B2B2B2 91.45%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visual-area .title-group .desc {
    color: #E9E9E9;
    font-family: 'GMarketSans', sans-serif;
    font-size: var(--fontSize2Xl);
    line-height: var(--lineHeightBase);
    font-weight: var(--fontWeightLight);
}

.visual-area .content-inner>img {
    animation: floating 2s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}

.fix-group {
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.10);
    padding: 21px 0;
    box-sizing: border-box;
}

.fix-group .content-inner {
    max-width: 1050px;
    height: 100%;
}

.fix-group ul {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.fix-group ul li {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    font-size: var(--fontSizeXl);
    font-weight: var(--fontWeightSemibold);
    line-height: var(--lineHeightXl);
    color: var(--colorGray600);
}

.fix-group ul li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.20);
}

/* first-section */


/* fifth-section */
.fifth-section {
    padding: 140px 0;
    background-image: none;
    overflow: hidden;
}

.fifth-section .content-inner {
    position: relative;
}

.fifth-section .bg-blur {
    opacity: .8;
    position: absolute;
    left: -700px;
    bottom: -300px;
}

.fifth-section .title-group {
    align-items: center;
}

.ip-ticket-group {
    width: 1050px;
    margin-top: -10px;
    padding: 62px 40px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: linear-gradient(149deg, rgba(255, 255, 255, 0.10) -5.19%, rgba(255, 255, 255, 0.00) 99.1%);
    box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(15px);
    display: grid;
    align-items: flex-end;
    grid-template-columns: 1fr 280px;
    gap: 0 30px;
}

.ip-ticket-group .btn {
    border: 1px solid var(--colorWhite);
    width: 100%;
    height: 70px;
    color: var(--colorWhite);
    font-size: var(--fontSizeLg);
    font-weight: var(--fontWeightBold);
    line-height: var(--lineHeightLg);
    transition: background-color .5s;
}

/* fifth-section */


/* second-section */
.second-section {
    padding: 0 0 140px;
    overflow: hidden;
}

.second-section .content-inner {
    max-width: 1050px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 80px 0;
    position: relative;
}

.second-section .bg-blur {
    opacity: .85;
    position: absolute;
    right: -700px;
    bottom: -450px;
}

.second-section .title-group {
    align-items: center;
}

.download-box {
    width: 100%;
}

.download-box ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0 60px;
}

.download-box ul li {
    width: auto;
    opacity: .5;
    transition: opacity .3s;
}

.download-box ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
}

.platform-group {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 28px 0;
}

.platform-group p {
    color: var(--colorWhite);
    font-size: var(--fontSizeXl);
    font-weight: var(--fontWeightSemibold);
    line-height: var(--lineHeightXl);
}

.download-box ul li .btn {
    width: 100%;
    border: 1px solid var(--colorWhite);
    color: var(--colorWhite);
}
/* second-section */





@media (hover: hover) and (pointer: fine) {
    .ip-ticket-group .btn:hover {
        background-color: rgba(255, 255, 255, 0.20);
    }

    .download-box ul li:hover {
        opacity: 1;
    }

    .download-box ul li:hover .btn {
        background-color: rgba(255, 255, 255, 0.20) !important;
    }

}





/* responsive css */
@media screen and (min-width: 768px) and (max-width: 1279px) {

    /* first-section */
    .first-section {
        min-height: 1024px;
    }

    .visual-area {
        height: calc(100% - 72px);
        align-items: flex-start;
    }

    .visual-area .content-inner {
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
        gap: 40px 0;
    }

    .visual-area .title-group {
        margin-top: 160px;
    }

    .visual-area .title {
        font-size: var(--fontSize9Xl);
        line-height: var(--lineHeight9Xl);
    }

    .visual-area .content-inner>img {
        width: 310px;
        align-self: flex-end;
    }

    .fix-group {
        height: 72px;
        padding: 17px 0;
    }

    .fix-group ul li {
        gap: 0 8px;
        font-size: var(--fontSizeMd);
        line-height: var(--lineHeightMd);
    }

    .fix-group ul li img {
        width: 38px;
    }

    /* first-section */


    /* fifth-section */
    .fifth-section {
        padding: 90px 0 120px;
    }

    .fifth-section .bg-blur {
        display: none;
    }

    .ip-ticket-group {
        width: 660px;
        margin-top: -20px;
        padding: 30px 25px;
        grid-template-columns: 1fr;
        gap: 30px 0;
    }

    .ip-ticket-group .btn {
        height: 54px;
        font-size: var(--fontSizeBase);
        line-height: normal;
    }

    /* fifth-section */


    /* second-section */
    .second-section {
        padding: 0 0 100px;
    }

    .second-section .content-inner {
        max-width: 100%;
        gap: 40px 0;
    }

    .second-section .bg-blur {
        display: none;
    }

    .download-box {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .download-box ul {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .platform-group {
        gap: 20px 0;
    }

    .platform-group p {
        font-size: var(--fontSizeMd);
        line-height: var(--lineHeightMd);
    }

    .download-box ul li .btn {
        width: 100%;
        border: 1px solid var(--colorWhite);
        color: var(--colorWhite);
    }
    /* second-section */
}

@media screen and (max-width: 767px) {

    /* first-section */
    .first-section {
        min-height: 706px;
    }

    .visual-area {
        height: calc(100% - 52px);
        align-items: flex-start;
    }

    .visual-area .content-inner {
        height: 100%;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px 0;
    }

    .visual-area .title-group {
        margin-top: 100px;
        gap: 20px 0;
    }

    .visual-area .title {
        font-size: 44px;
        line-height: 52px;
    }

    .visual-area .title-group .desc {
        font-size: var(--fontSizeBase);
        line-height: normal;
    }

    .visual-area .content-inner>img {
        content: url(/images/payment/mo-visual-img.png);
        align-self: flex-end;
    }

    @keyframes floating {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(20px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .fix-group {
        height: 52px;
        padding: 17px 0;
    }

    .fix-group .content-inner {
        width: 100%;
    }

    .fix-group ul li {
        font-size: var(--fontSizeBase);
        line-height: normal;
    }

    .fix-group ul li img {
        display: none;
    }

    /* first-section */


    /* fifth-section */
    .fifth-section {
        padding: 83px 0 80px;
    }

    .fifth-section .bg-blur {
        display: none;
    }

    .fifth-section .title-group .desc {
        text-align: center;
    }

    .ip-ticket-group {
        width: 100%;
        margin-top: -20px;
        padding: 32px 25px;
        grid-template-columns: 1fr;
        gap: 30px 0;
    }

    .ip-ticket-group .btn {
        height: 54px;
        font-size: var(--fontSizeBase);
        line-height: var(--lineHeightSm);
    }

    /* fifth-section */


    /* second-section */
    .second-section {
        padding: 0 0 30px;
    }

    .second-section .content-inner {
        max-width: 100%;
        gap: 40px 0;
    }

    .second-section .bg-blur {
        display: none;
    }

    .second-section .section-title {
        text-align: center;
    }

    .download-box {
        width: 100%;
    }

    .download-box ul {
        grid-template-columns: 1fr 1fr;
        gap: 40px 10px;
    }

    .download-box ul li a {
        gap: 30px 0;
    }

    .platform-group {
        width: 100%;
        gap: 20px 0;
    }

    .platform-group img{
        width: 70px;
    }

    .platform-group p {
        font-size: var(--fontSizeBase);
        line-height: var(--lineHeightSm);
    }
    /* second-section */
}