/************************** common **************************/
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Pretendard', sans-serif;
    color: var(--black-color);
}

body {
    padding-top: 80px;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.2s;
    z-index: 999;
    background-color: #fff;

    h1 {
        padding: 19px 0 19px 40px;
    }

    ul {
        position: absolute;
        top: 33px;
        right: 71px;

        @media only screen and (max-width: 640px) {
            display: none;
        }

        li {
            display: inline;
            margin: 0 70px 0 0;
            font-size: 17px;

            a {
                padding: 0 0 10px 0;
                color: #333333;
                text-decoration: none;
            }

            a.active {
                border-bottom: 3px solid #3a70ef;
            }
        }

        li:last-child {
            margin-right: 0;
        }
    }
}

.sticky {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
}

footer {
    position: relative;
    max-width: 1220px;
    padding: 0 0 98px 0;
    margin: 0 auto;

    .logo {
        position: absolute;
        top: 25px;
        left: 0;

        @media only screen and (max-width: 1200px) {
            left: 60px;
        }

        @media only screen and (max-width: 640px) {
            position: static;
            text-align: center;
            margin-bottom: 24px;
        }
    }

    .links {
        padding: 32px 0 0 0;
        margin: 0 0 36px 233px;
        a {
            margin: 0 30px 0 0;
            text-decoration: none;
            color: #122746;
            font-size: 15px;
        }

        a:last-child {
            margin-right: 0;
        }

        @media only screen and (max-width: 640px) {
            margin-left: 0;
            text-align: center;
        }
    }

    p {
        margin: 0 0 10px 233px;
        font-size: 13px;
        color: #89909d;

        @media only screen and (max-width: 640px) {
            padding: 0 30px 0 30px;
            margin-left: 0;
            text-align: center;
        }

        span {
            @media only screen and (max-width: 640px) {
                display: block;
            }
        }

        .delimeter {
            @media only screen and (max-width: 640px) {
                display: none;
            }
        }
    }
}

:root {
    --white-color: #fff;
    --black-color: #282828;
    --text-color: #555555;
    --gray-color: #ccc;
    --primary-color: #113694;
    --secondary-color: #20c4a0;
    --tertiary-color: #3a70ef;
    --float-btn-color: #0097d9;

    --font-large: 48px;
    --font-medium: 24px;
    --font-regular: 20px;
    --font-basic: 16px;
    --font-small: 14px;

    --padding-top: 136px;
}
.flex {
    display: flex;
}

section {
    overflow: hidden;
}
.sec-in {
    width: 1440px;
    margin: auto;
}
.sec-tit {
    display: block;
    margin-bottom: 24px;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.005em;
}
.sec-tit span {
    display: block;
}
.sec-txt {
    font-size: var(--font-regular);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-color);
    letter-spacing: -0.003em;
}
.sec-txt strong {
    font-weight: 600;
}
.sec-txt > div:not(:last-child) {
    margin-bottom: 10px;
}
.sub-tit {
    margin-bottom: 15px;
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--secondary-color);
}
.sub-tit span {
    display: inline-block;
    padding: 8px 14px;
    font-size: var(--font-regular);
    font-weight: 600;
    text-align: center;
    color: var(--white-color);
    border-radius: 5px;
    background: var(--secondary-color);
}
.sub-tit.blue {
    color: var(--tertiary-color);
}
.sub-tit.blue span {
    background: var(--tertiary-color);
}
/************************** common **************************/

/************************** main visual **************************/
#sec-1 {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}
#sec-1 .background {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}
#sec-1 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/mv-img.jpg') no-repeat center / cover;
}
#sec-1 .background video {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#sec-1 .text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    margin: auto;
    transform: translate(-50%, -50%);
    z-index: 3;
}
#sec-1 .text h1 {
    font-size: 70px;
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s 0.2s;
}
#sec-1 .text p {
    margin: 20px 0 30px;
    font-size: var(--font-medium);
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    word-break: keep-all;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s 0.4s;
}
#sec-1 .app-down-wrap {
    justify-content: center;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s 0.6s;
    z-index: 2;
}
#sec-1 .app-down-wrap a {
    display: block;
    width: 160px;
    height: 100%;
}
#sec-1 .dim {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000, #000000);
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: 2;
}

#sec-1 .text.on h1 {
    transform: translateY(0px);
    opacity: 1;
}
#sec-1 .text.on p {
    transform: translateY(0px);
    opacity: 1;
}
#sec-1 .text.on .app-down-wrap {
    transform: translateY(0px);
    opacity: 1;
}
/************************** main visual **************************/

/************************** i-awards korea **************************/
#sec-2 {
    justify-content: space-between;
}
#sec-2 .sec-in {
    align-items: center;
    padding: 152px 0;
}
#sec-2 .left,
#sec-2 .right,
#sec-6 .left {
    width: 50%;
}
#sec-2 .aa-wrap {
    gap: 15px;
}
#sec-2 .aa-wrap.mobile {
    display: none;
}
#sec-2 .aa-wrap img {
    width: 54px;
}
#sec-2 .i-logo {
    display: block;
    margin: 20px 0 14px;
    width: 200px;
}
#sec-2 .right {
    position: relative;
}
#sec-2 .news {
    width: 680px;
    filter: blur(10px);
    opacity: 0;
    transition: all 0.8s 0.5s;
}
#sec-2 .bubble-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#sec-2 .bubble-wrap li {
    padding: 14px 20px;
    font-size: var(--font-small);
    line-height: 18px;
    color: var(--white-color);
}
#sec-2 .bubble-wrap li span {
    display: block;
}
#sec-2 .bubble-wrap li:nth-child(1) {
    position: absolute;
    top: 100px;
    right: 0;
    border-radius: 15px 15px 15px 0;
    background: #3d4250;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s 0.9s;
}
#sec-2 .bubble-wrap li:nth-child(2) {
    position: absolute;
    top: 230px;
    left: 0;
    border-radius: 15px 15px 0 15px;
    background: #3a70ef;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s 1.3s;
}
#sec-2 .bubble-wrap li:nth-child(3) {
    position: absolute;
    top: 360px;
    left: 100px;
    border-radius: 15px 15px 0 15px;
    background: #20c4a0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s 1.6s;
}

#sec-2 .top,
#sec-4 .top,
#sec-5 .top,
#sec-6 .top,
#sec-7 .top,
#sec-8 .top,
#sec-9 .top,
#sec-10 .top,
#sec-11 .top,
#sec-12 .top,
#sec-13 .sec-tit,
#sec-14 .sec-tit {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s 0.2s;
}
#sec-2 .sec-txt,
#sec-4 .sec-txt,
#sec-5 .sec-txt,
#sec-6 .sec-txt,
#sec-7 .sec-txt,
#sec-8 .sec-txt,
#sec-9 .sec-txt,
#sec-10 .sec-txt,
#sec-11 .sec-txt,
#sec-12 .sec-txt,
#sec-14 .sec-txt {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s 0.4s;
}
#sec-2 .left.on .top,
#sec-4 .left.on .top,
#sec-5 .on .top,
#sec-6 .on .top,
#sec-7 .on .top,
#sec-8 .on .top,
#sec-9 .on .top,
#sec-10 .on .top,
#sec-11 .on .top,
#sec-12 .on .top,
#sec-13 .on .sec-tit,
#sec-14 .on .sec-tit {
    transform: translateY(0px);
    opacity: 1;
}
#sec-2 .left.on .sec-txt,
#sec-4 .left.on .sec-txt,
#sec-5 .on .sec-txt,
#sec-6 .on .sec-txt,
#sec-7 .on .sec-txt,
#sec-8 .on .sec-txt,
#sec-9 .on .sec-txt,
#sec-10 .on .sec-txt,
#sec-11 .on .sec-txt,
#sec-12 .on .sec-txt,
#sec-14 .on .sec-txt {
    transform: translateY(0px);
    opacity: 1;
}
#sec-2 .right.on .news {
    filter: blur(0px);
    opacity: 1;
}
#sec-2 .right.on .bubble-wrap li:nth-child(1),
#sec-2 .right.on .bubble-wrap li:nth-child(2),
#sec-2 .right.on .bubble-wrap li:nth-child(3) {
    transform: translateY(0px);
    opacity: 1;
}
/************************** i-awards korea **************************/

/************************** sec-3 rolling-txt **************************/
#sec-3 {
    width: 100%;
    height: 100vh;
    background: #f4f7fc;
}
#sec-3 .sec-in {
    position: relative;
    height: 100%;
    overflow: hidden;
}
#sec-3 .roll-txt-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
#sec-3 .roll-txt.mobile {
    display: none;
}
#sec-3 .roll-txt {
    font-size: 66px;
    font-weight: 700;
    letter-spacing: -0.03em;
    word-break: keep-all;
}
#sec-3 .roll-txt img {
    filter: blur(10px);
    transform: scale(0);
    opacity: 0;
    transition: all 0.8s 1s;
}
#sec-3 .swiper-slide-active img {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
}
#sec-3 .roll-txt img,
#sec-3 .wellcheck img {
    display: inline-block;
    margin-left: 6px;
    width: 86px;
}
#sec-3 .wellcheck {
    margin-top: 14px;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--primary-color);
}
/************************** sec-3 rolling-txt **************************/

/************************** sec-4 **************************/
#sec-4 .sec-in {
    align-items: center;
    padding: 90px 0;
}
#sec-4 .left {
    width: 55%;
    padding: 80px 0;
}
#sec-4 .right {
    width: 45%;
}
#sec-4 .benefits {
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
#sec-4 .benefits li {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(50% - 10px);
    background: #f6fbf8;
    border: 1px solid #daebf0;
}
#sec-4 .benefits li > img {
    display: block;
    margin-bottom: 18px;
    width: 40px;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}
#sec-4 .benefits li > span {
    display: block;
    margin-bottom: 10px;
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--secondary-color);
}
#sec-4 .benefits li > div {
    font-size: var(--font-basic);
    text-align: center;
    line-height: 1.4;
}
#sec-4 .benefits li > div span {
    display: block;
    text-align: center;
}
#sec-4 .left .go-btn {
    display: block;
    margin-top: 14px;
    font-size: var(--font-small);
    font-weight: 600;
    text-align: right;
    color: #7e7e7e;
    cursor: pointer;
    transition: all 0.3s;
}
#sec-4 .left .go-btn:hover {
    text-decoration: underline;
}
#sec-4 .left .go-btn img,
#sec-4 .right .go-btn img {
    margin-left: 5px;
}
#sec-4 .right {
    position: relative;
    text-align: center;
}
#sec-4 .right .go-btn {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 214px;
    padding: 16px 20px;
    font-size: var(--font-basic);
    font-weight: 600;
    color: var(--tertiary-color);
    background: var(--white-color);
    border: 1px solid var(--tertiary-color);
    border-radius: 50px;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}
#sec-4 .right .go-btn:hover {
    box-shadow: none;
}
#sec-4 .left .bottom {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s 0.6s;
}
#sec-4 .left.on .bottom {
    transform: translateY(0px);
    opacity: 1;
}
/************************** sec-4 **************************/

/************************** sec-5 **************************/
#sec-5 {
    width: 100%;
    height: 100vh;
    background: #eef5f3 url('../images/sec5-bg.png') no-repeat 100px center / cover;
    transition: all 1.2s 0.5s;
}
#sec-5.on {
    background: #eef5f3 url('../images/sec5-bg.png') no-repeat center center / cover;
}
/************************** sec-5 **************************/

/************************** sec-6 **************************/
#sec-6 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #f8f8f8;
}
#sec-6 .right {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
}
#sec-6 .right img:nth-child(1) {
    width: 920px;
    position: absolute;
    top: 50%;
    right: 0px;
    z-index: 1;
    transform: translate(300px, -50%);
    opacity: 0;
    transition: all 0.8s 1s;
}
#sec-6 .right img:nth-child(2) {
    position: absolute;
    bottom: 50px;
    left: -110px;
    z-index: 2;
    transform: scale(0);
    opacity: 0;
    transition: all 1.2s 1.5s;
}
#sec-6 .right .circle {
    position: absolute;
    bottom: 150px;
    left: -80px;
    width: 258px;
    height: 258px;
    border-radius: 300px;
    background: rgba(32, 196, 160, 0.5);
    z-index: 0;
    transform: scale(0);
    opacity: 0;
    transition: all 1.2s 2.5s;
}
#sec-6 .right.on img:nth-child(1) {
    transform: translate(0px, -50%);
    opacity: 1;
}
#sec-6 .right.on img:nth-child(2) {
    transform: scale(1);
    opacity: 1;
}
#sec-6 .right.on img:nth-child(1) {
    transform: translate(0px, -50%);
    opacity: 1;
}
#sec-6 .right.on .circle {
    transform: scale(0.9);
    opacity: 1;
    animation: scale 2s infinite;
}
@keyframes scale {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.9);
    }
}
/************************** sec-6 **************************/

/************************** sec-7 **************************/
#sec-7 {
    width: 100%;
    height: 100vh;
    background: url('../images/sec7-bg.png') no-repeat center;
    background-size: 200%;
    transition: all 2s 0.5s;
    align-items: center;
}
#sec-7.on {
    background: url('../images/sec7-bg.png') no-repeat center center;
    background-size: 110%;
}
#sec-7 .sec-tit,
#sec-7 .sec-txt {
    color: var(--white-color);
}
/************************** sec-7 **************************/

/************************** sec-8 **************************/
#sec-8,
#sec-10,
#sec-11,
#sec-12 {
    padding-top: var(--padding-top);
}
#sec-8 .top {
    position: relative;
}
#sec-8 .bottom {
    position: relative;
    margin-top: 72px;
    min-height: 560px;
}
#sec-8 .img-01 {
    position: absolute;
    right: 0;
    z-index: 1;
    transform: translateY(600px);
    opacity: 0;
    transition: all 1s 0.6s;
}
#sec-8 .img-02 {
    position: absolute;
    top: 100px;
    left: 200px;
    z-index: 2;
    transform: scale(0);
    opacity: 0;
    transition: all 1.2s 1s;
}
#sec-8 .bounce-wrap {
    width: 100%;
    position: absolute;
    top: 60%;
    left: 15%;
    opacity: 0;
    transition: all 2s 1.5s;
}
#sec-8 .bounce-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#sec-8 .bounce-wrap img:nth-child(1) {
    animation: scale2 5s infinite;
}
#sec-8 .bounce-wrap img:nth-child(2) {
    animation: scale2 5s infinite;
}
#sec-8 .bounce-wrap img:nth-child(3) {
    animation: scale2 5s infinite;
}
@keyframes scale2 {
    0% {
        transform: scale(0.9) translate(-50%, -50%);
    }

    50% {
        transform: scale(1) translate(-50%, -50%);
    }

    100% {
        transform: scale(0.9) translate(-50%, -50%);
    }
}
#sec-8 .on .img-01 {
    transform: translateY(0px);
    opacity: 1;
}
#sec-8 .on .img-02 {
    transform: scale(1);
    opacity: 1;
}
#sec-8 .on .bounce-wrap {
    opacity: 1;
}
/************************** sec-8 **************************/

/************************** sec-9 **************************/
#sec-9 {
    height: 100vh;
    background: #f8f8f8;
}
#sec-9 .left {
    width: 55%;
}
#sec-9 .right {
    position: relative;
    width: 45%;
}
#sec-9 .right img {
    position: absolute;
}
#sec-9 .img-01 {
    width: 290px;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1.5s 0.6s;
}
#sec-9 .img-02 {
    right: -130px;
    bottom: -190px;
    animation: scale3 2s infinite;
    opacity: 0;
    transition: all 1.5s 1.6s;
}
#sec-9 .img-03 {
    width: 360px;
    top: 50%;
    left: 50px;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 1.5s 1.1s;
}
#sec-9 .img-04 {
    width: 200px;
    right: 0px;
    bottom: -220px;
    transform: scale(0);
    opacity: 0;
    transition: all 1.5s 1.4s;
}
@keyframes scale3 {
    0% {
        height: 500px;
    }

    50% {
        height: 540px;
    }

    100% {
        height: 500px;
    }
}
#sec-9 .on .img-01 {
    transform: translate(-50%, -50%);
    opacity: 1;
}
#sec-9 .on .img-02 {
    opacity: 1;
}
#sec-9 .on .img-03 {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}
#sec-9 .on .img-04 {
    transform: scale(1);
    opacity: 1;
}
/************************** sec-9 **************************/

/************************** sec-10 **************************/
#sec-10 .sub-tit,
#sec-10 .sec-tit,
#sec-10 .sec-txt {
    text-align: center;
}
#sec-10 .img-wrap {
    margin-top: 50px;
    transform: translate3d(0, 100px, 0) scale(0.6);
    opacity: 0;
    transition: all 1.5s 0.6s;
}
#sec-10 .on .img-wrap {
    transform: translateZ(0) scale(1);
    opacity: 1;
}
/************************** sec-10 **************************/

/************************** sec-11 **************************/
#sec-11 .bottom {
    position: relative;
    width: 90%;
    min-height: 620px;
    margin: 50px auto 0;
}
#sec-11 .img-01 {
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 1.5s 0.6s;
}
#sec-11 .img-02 {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate3d(0, 100px, 0) scale(0.6);
    opacity: 0;
    transition: all 1.5s 0.9s;
}
#sec-11 .img-03 {
    position: absolute;
    top: 40px;
    left: 50%;
    animation: scale4 5s infinite;
    opacity: 0;
    transition: all 1.2s 1.5s;
}
#sec-11 .img-04 {
    position: absolute;
    left: 34%;
    bottom: 50px;
    transform: translate3d(100px, 0, 0) scale(0.6);
    opacity: 0;
    transition: all 1s 2s;
}
#sec-11 .on .img-01,
#sec-11 .on .img-03 {
    opacity: 1;
}
#sec-11 .on .img-02,
#sec-11 .on .img-04 {
    transform: translateZ(0) scale(1);
    opacity: 1;
}
@keyframes scale4 {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}
/************************** sec-11 **************************/

/************************** sec-12 **************************/
#sec-12 {
    padding-bottom: var(--padding-top);
}
#sec-12 .sec-in {
    position: relative;
    z-index: 2;
}
#sec-12 .info {
    margin: 30px 0 50px;
    padding: 18px 24px;
    font-size: var(--font-basic);
    line-height: 1.6;
    border-radius: 10px;
    background: #f5f8fe;
    color: #303031;
}
#sec-12 .info li {
    position: relative;
    padding-left: 14px;
}
#sec-12 .info li:before {
    content: '*';
    position: absolute;
    top: 3px;
    left: 0;
    font-size: var(--font-basic);
    color: #303031;
}
#sec-12 .bottom {
    position: relative;
    width: 90%;
    min-height: 650px;
    margin-left: auto;
}
#sec-12 .bottom img {
    position: absolute;
}
#sec-12 .bottom .img-01 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}
#sec-12 .bottom .img-02 {
    left: 38%;
    z-index: 1;
}
#sec-12 .bottom .img-03 {
    top: 50%;
    left: 150px;
    transform: translateY(-50%);
    animation: rotate 10s infinite;
}
#sec-12 .bottom .img-04 {
    top: 50%;
    left: 400px;
    transform: translateY(-50%);
}
@keyframes rotate {
    0% {
        transform: translateY(-50%) rotate(0);
    }

    100% {
        transform: translateY(-50%) rotate(-360deg);
    }
}
/************************** sec-12 **************************/

/************************** sec-13 **************************/
#sec-13 {
    padding: var(--padding-top) 0;
    background: #f8f8f8 url('../images/sec13-bg.png') no-repeat center / cover;
}
#sec-13 .sec-tit {
    color: var(--tertiary-color);
    text-align: center;
}
#sec-13 .sec-tit span {
    color: var(--black-color);
}
#sec-13 .review-list {
    margin-top: 50px;
    gap: 36px;
}
#sec-13 .review-list > li {
    width: 50%;
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in;
}
#sec-13 .review-list > li a {
    display: block;
    width: 100%;
    height: 100%;
}
#sec-13 .review-list > li .img-wrap {
    overflow: hidden;
}
#sec-13 .review-list > li .img-wrap div {
    transform: scale(1);
    transition: all 0.3s ease-in;
}
#sec-13 .review-list > li:hover .img-wrap div {
    transform: scale(1.1);
}
#sec-13 .review-list > li .txt-wrap {
    padding: 40px 46px;
}
#sec-13 .review-list > li .txt-wrap ul {
    gap: 10px;
    margin-bottom: 16px;
}
#sec-13 .review-list > li .txt-wrap li {
    padding: 8px 10px;
    border-radius: 5px;
    background: #f4f7fc;
    font-size: var(--font-basic);
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}
#sec-13 .review-list > li .txt-wrap div {
    font-size: var(--font-medium);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.05em;
}
#sec-13 .review-list > li .txt-wrap div span {
    display: block;
}
#sec-13 .review-list > li:hover {
    box-shadow: 0px 6px 20px 0 rgba(0, 0, 0, 0.1);
}
#sec-13 .review-list > li:nth-child(1) {
    transform: translate3d(100px, 0, 0) scale(0.6);
    opacity: 0;
    transition: all 1s 0.6s;
}
#sec-13 .review-list > li:nth-child(2) {
    transform: translate3d(100px, 0, 0) scale(0.6);
    opacity: 0;
    transition: all 1s 0.9s;
}
#sec-13 .on .review-list > li {
    transform: translateZ(0) scale(1);
    opacity: 1;
}
/************************** sec-13 **************************/

/************************** sec-14 **************************/
#sec-14 {
    width: 100%;
    height: 100vh;
    background: url('../images/sec14-bg.png') no-repeat center;
    background-size: 150%;
    transition: all 2s 0.5s;
    align-items: center;
}
#sec-14.on {
    background: url('../images/sec14-bg.png') no-repeat center center;
    background-size: 130%;
}
#sec-14 .sec-tit,
#sec-14 .sec-txt {
    color: var(--white-color);
}
#sec-14 .go-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 18px;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: var(--font-basic);
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s 0.6s;
}
#sec-14 .go-btn img {
    margin-left: 5px;
}
#sec-14 .go-btn:hover {
    box-shadow: none;
}
#sec-14 .on .go-btn {
    transform: translateY(0px);
    opacity: 1;
}
/************************** sec-14 **************************/

.floating-btn1 {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 90px;
    height: 90px;
    border-radius: 150px;
    background: var(--primary-color);
    font-size: var(--font-small);
    color: var(--white-color);
    text-align: center;
    z-index: 9;
    right: 96px;
    bottom: 170px;
    background-color: var(--float-btn-color);
    word-break: break-all;
    padding: 16px;
}

.floating-btn2 {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 90px;
    height: 90px;
    border-radius: 150px;
    background: var(--primary-color);
    font-size: var(--font-small);
    color: var(--white-color);
    text-align: center;
    z-index: 9;
    right: 96px;
    bottom: 70px;
}

@media all and (max-width: 1501px) {
    .sec-in {
        width: 90%;
    }

    #sec-7.on,
    #sec-14.on {
        background-size: 160%;
    }
    #sec-8 .img-02 {
        left: 0px;
    }
    #sec-12 .bottom {
        width: 95%;
    }
    #sec-12 .bottom .img-01 {
        width: 200px;
    }
    #sec-12 .bottom .img-03 {
        left: 100px;
    }
    #sec-12 .bottom .img-04 {
        left: 24%;
    }
}

@media all and (max-width: 1401px) {
    #sec-3 .roll-txt {
        font-size: 60px;
    }
    #sec-3 .wellcheck {
        font-size: 62px;
    }
}

@media all and (max-width: 1281px) {
    :root {
        --font-large: 40px;
        --font-medium: 22px;
        --font-regular: 19px;
        --font-basic: 15px;
        --font-small: 13px;

        --padding-top: 120px;
    }

    .sec-txt p {
        display: inline;
        word-break: keep-all;
    }
    #sec-2 .i-logo {
        width: 190px;
    }
    #sec-2 .sec-in {
        padding: 120px 0;
    }
    #sec-1 .text h1 {
        font-size: 64px;
    }
    #sec-2 .left {
        padding-right: 20px;
    }
    #sec-2 .news {
        width: 100%;
    }
    #sec-2 .bubble-wrap li:nth-child(2) {
        left: 50px;
    }
    #sec-2 .bubble-wrap li:nth-child(3) {
        left: 150px;
    }
    #sec-3 .roll-txt {
        font-size: 50px;
    }
    #sec-3 .wellcheck {
        font-size: 54px;
    }
    #sec-3 .roll-txt img,
    #sec-3 .wellcheck img {
        width: 74px;
    }
    #sec-3 .wellcheck {
        margin-top: 10px;
    }
    #sec-6 .right {
        width: 45%;
    }
    #sec-7,
    #sec-14 {
        height: 620px;
    }
    #sec-7.on,
    #sec-14.on {
        background-size: 160%;
    }
    #sec-8 .bottom {
        min-height: 490px;
    }
    #sec-8 .img-01 {
        width: 900px;
    }
    #sec-8 .img-02 {
        width: 400px;
        left: -5%;
    }
    #sec-9 .img-01 {
        width: 280px;
    }
    #sec-9 .img-03 {
        width: 300px;
    }
    #sec-9 .img-04 {
        width: 180px;
    }
    #sec-12 .bottom {
        min-height: 506px;
    }
    #sec-12 .bottom .img-01 {
        width: 160px;
    }
    #sec-12 .bottom .img-02 {
        height: 500px;
    }
    #sec-12 .bottom .img-03 {
        width: 500px;
    }
    #sec-12 .bottom .img-04 {
        left: 22%;
    }

    .floating-btn1 {
        right: 30px;
    }
    .floating-btn2 {
        right: 30px;
    }
}

@media all and (max-width: 1061px) {
    :root {
        --font-large: 30px;
        --font-medium: 20px;
        --font-regular: 18px;
        --font-basic: 14px;
        --font-small: 13px;

        --padding-top: 110px;
    }

    #sec-2 .i-logo {
        width: 180px;
        margin-bottom: 10px;
    }
    #sec-2 .sec-in {
        padding: 110px 0;
    }
    #sec-3 .roll-txt.pc {
        display: none;
    }
    #sec-3 .roll-txt.mobile {
        display: block;
        font-size: 40px;
        line-height: 1.2;
    }
    #sec-3 .roll-txt img {
        margin-top: -5px;
    }
    #sec-3 .wellcheck {
        font-size: 44px;
    }
    #sec-3 .roll-txt img,
    #sec-3 .wellcheck img {
        width: 64px;
    }
    #sec-4 .benefits li > div {
        width: 90%;
    }
    #sec-4 .left,
    #sec-9 .left {
        width: 55%;
    }
    #sec-4 .right,
    #sec-9 .right {
        width: 45%;
    }
    #sec-4 .right > img {
        width: 90%;
        float: right;
    }
    #sec-4 .right .go-btn {
        left: 62%;
    }
    #sec-4 .right:after {
        content: '';
        display: block;
        clear: both;
    }
    #sec-6 .right img:nth-child(1) {
        min-width: 500px;
        left: 0;
        right: inherit;
    }
    #sec-6 .right img:nth-child(2) {
        width: 250px;
        left: -50px;
        bottom: 200px;
    }
    #sec-6 .right .circle {
        width: 230px;
        height: 230px;
    }
    #sec-7,
    #sec-14 {
        height: 540px;
    }
    #sec-8 .bottom {
        min-height: 450px;
    }
    #sec-8 .img-01 {
        width: auto;
        height: 450px;
    }
    #sec-8 .img-02 {
        width: 300px;
    }
    #sec-9 .img-01 {
        width: 220px;
    }
    #sec-9 .img-03 {
        width: 300px;
    }
    #sec-9 .img-04 {
        width: 140px;
        right: -50px;
        bottom: -120px;
    }
    #sec-11 .img-01 {
        width: 580px;
    }
    #sec-11 .img-02 {
        width: 640px;
        right: -50px;
    }
    #sec-11 .img-03 {
        left: inherit;
        right: 0;
    }
    #sec-11 .img-04 {
        left: 0;
    }
    #sec-12 .bottom .img-04 {
        left: 22%;
        width: 94px;
    }
    #sec-13 .review-list {
        gap: 30px;
    }
    #sec-13 .review-list > li .txt-wrap {
        padding: 30px 26px;
    }
    #sec-13 .review-list > li .txt-wrap div span {
        display: inline;
    }
}

@media all and (max-width: 877px) {
    :root {
        --font-large: 30px;
        --font-medium: 19px;
        --font-regular: 17px;

        --padding-top: 100px;
    }

    #header ul {
        display: none;
    }

    #sec-1 .text h1 {
        font-size: 56px;
    }
    #sec-1 .text p {
        margin: 15px 0 30px;
    }
    .sec-tit {
        margin-bottom: 15px;
    }
    #sec-2 .left,
    #sec-4 .left,
    #sec-6 .left,
    #sec-9 .left,
    #sec-9 .right {
        width: 100%;
    }
    #sec-2 .sec-in,
    #sec-4 .sec-in,
    #sec-6 .sec-in,
    #sec-9 .sec-in {
        display: block;
    }
    #sec-2 .right {
        width: 80%;
        margin: 30px auto 0;
    }
    #sec-3 .roll-txt.mobile {
        font-size: 38px;
    }
    #sec-3 .wellcheck {
        font-size: 40px;
    }
    #sec-3 .roll-txt img,
    #sec-3 .wellcheck img {
        width: 58px;
    }
    #sec-4 .right {
        width: 100%;
        max-width: 440px;
        margin: auto;
    }
    #sec-4 .right > img {
        float: none;
    }
    #sec-4 .right .go-btn {
        left: 55%;
    }
    #sec-6 {
        height: 850px;
    }
    #sec-6,
    #sec-9 {
        display: block;
        padding-top: 100px;
    }
    #sec-6 .right {
        width: 80%;
        max-height: 360px;
        bottom: 100px;
    }
    #sec-6 .right img:nth-child(1) {
        width: 100%;
        max-width: 900px;
    }
    #sec-6 .right.on img:nth-child(1) {
        bottom: 0;
    }
    #sec-6 .right img:nth-child(2) {
        bottom: -100px;
    }
    #sec-6 .right .circle {
        bottom: 0;
    }
    #sec-7.on,
    #sec-14.on {
        background-size: cover;
    }
    #sec-8 .bottom {
        margin-top: 50px;
        min-height: 400px;
    }
    #sec-8 .img-01 {
        height: 330px;
        bottom: 0;
    }
    #sec-8 .img-02 {
        width: 250px;
        left: 0;
    }
    #sec-9 {
        position: relative;
        height: 850px;
    }
    #sec-9 .right {
        position: absolute;
        width: 480px;
        height: 100%;
        max-height: 360px;
        left: 50%;
        bottom: 100px;
        transform: translateX(-50%);
    }
    #sec-9 .img-02 {
        right: -110px;
    }
    #sec-9 .img-03 {
        width: 250px;
        left: -20px;
    }
    #sec-9 .img-04 {
        bottom: -80px;
        right: 0;
    }
    #sec-10 .img-wrap,
    #sec-14 .go-btn {
        margin-top: 30px;
    }
    #sec-11 .bottom {
        min-height: 500px;
    }
    #sec-11 .img-01 {
        width: 400px;
    }
    #sec-11 .on .img-03 {
        width: 140px;
    }
    #sec-12 .bottom {
        min-height: 380px;
    }
    #sec-12 .bottom .img-01 {
        width: 100px;
    }
    #sec-12 .bottom .img-02 {
        height: 380px;
    }
    #sec-12 .bottom .img-03 {
        width: 350px;
        left: 5%;
    }
    #sec-12 .bottom .img-04 {
        left: 19%;
        width: 90px;
    }
    #sec-13 .review-list {
        gap: 20px;
        margin-top: 30px;
    }
    .floating-btn1 {
        width: 76px;
        height: 76px;
        right: 20px;
        bottom: 120px;
        gap: 5px;
        font-size: 12px;
    }
    .floating-btn2 {
        width: 76px;
        height: 76px;
        right: 20px;
        bottom: 30px;
        gap: 5px;
        font-size: 12px;
    }
}

@media all and (max-width: 641px) {
    :root {
        --font-large: 26px;
        --font-medium: 18px;
        --font-regular: 16px;

        --padding-top: 90px;
    }

    body {
        padding-top: 50px;
    }

    #header ul {
        display: none;
    }

    #header h1 {
        padding: 0px;
    }
    #header {
        padding: 10px;
    }

    .sec-tit {
        line-height: 1.2;
        word-break: keep-all;
    }
    #sec-1 .text p {
        line-height: 24px;
    }
    #sec-1,
    #sec-3,
    #sec-5 {
        height: 650px;
    }
    #sec-1 .text h1 {
        font-size: 42px;
        line-height: 50px;
        word-break: keep-all;
    }
    #sec-1 .text.on .app-down-wrap a {
        width: 140px;
    }
    #sec-2 .aa-wrap.pc {
        display: none;
    }
    #sec-2 .aa-wrap.mobile {
        display: flex;
    }
    #sec-2 .right {
        width: 100%;
    }
    #sec-2 .bubble-wrap li {
        padding: 10px 16px;
    }
    #sec-2 .bubble-wrap li:nth-child(1) {
        top: 30px;
    }
    #sec-2 .bubble-wrap li:nth-child(2) {
        top: 120px;
        left: 0;
    }
    #sec-2 .bubble-wrap li:nth-child(3) {
        top: 220px;
        left: 50px;
    }
    #sec-3 .roll-txt.mobile {
        font-size: 28px;
    }
    #sec-3 .wellcheck {
        font-size: 30px;
    }
    #sec-4 .sec-tit span,
    #sec-4 .benefits li > div span {
        display: inline;
    }
    #sec-4 .benefits {
        gap: 10px;
    }
    #sec-4 .benefits li {
        width: calc(50% - 5px);
    }
    #sec-6 {
        height: 790px;
    }
    #sec-8 .bottom {
        min-height: 250px;
    }
    #sec-8 .img-01 {
        height: 250px;
        bottom: 0;
        right: -50px;
    }
    #sec-8 .img-02 {
        width: 200px;
        top: 40px;
        left: -5%;
    }
    #sec-8 .bounce-wrap img {
        width: 450px;
    }
    #sec-9 {
        height: 770px;
    }
    #sec-9 .right {
        bottom: 50px;
    }
    #sec-9 .img-01 {
        width: 170px;
        left: 50%;
    }
    #sec-9 .img-02 {
        right: -30px;
        bottom: -80px;
    }
    #sec-9 .img-03 {
        width: 200px;
        left: 50px;
    }
    #sec-9 .img-04 {
        width: 120px;
        bottom: -20px;
        right: 80px;
    }
    footer {
        margin-top: 100px;
    }
    footer .links {
        margin-left: 0;
        text-align: center;
        color: #89909d;
        margin-bottom: 30px;
        font-size: 12px;
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    footer p {
        padding: 0 30px 0 30px;
        margin-left: 0;
        text-align: center;
        color: #89909d;
        font-size: 12px;
    }
    footer span {
        display: block;
    }
    footer .delimeter {
        display: none;
    }
    footer .logo {
        position: static;
        text-align: center;
        margin-bottom: 24px;
    }

    @keyframes scale3 {
        0% {
            height: 400px;
        }

        50% {
            height: 440px;
        }

        100% {
            height: 400px;
        }
    }
    #sec-11 .bottom {
        min-height: 350px;
    }
    #sec-11 .on .img-03 {
        width: 110px;
        right: -5px;
    }
    #sec-11 .img-04 {
        width: 130px;
    }
    #sec-12 .bottom {
        min-height: 280px;
    }
    #sec-12 .bottom .img-01 {
        width: 80px;
    }
    #sec-12 .bottom .img-02 {
        height: 280px;
    }
    #sec-12 .bottom .img-04 {
        width: 50px;
        left: 22%;
    }
    #sec-13 .sec-tit span,
    #sec-7 .sec-tit span {
        display: inline;
    }
    #sec-13 .review-list {
        display: block;
    }
    #sec-13 .review-list > li {
        width: 100%;
    }
    #sec-13 .review-list > li:first-child {
        margin-bottom: 15px;
    }
}

@media all and (max-width: 481px) {
    .sub-tit,
    .sub-tit span {
        font-size: 16px;
    }

    #sec-1 .app-down-wrap {
        gap: 10px;
    }
    #sec-10 .img-wrap,
    #sec-14 .go-btn {
        margin-top: 20px;
    }
    #sec-11 .bottom {
        width: 100%;
    }
    #sec-11 .img-01 {
        width: 300px;
    }
    #sec-11 .img-02 {
        width: 340px;
        right: -20px;
    }
    #sec-12 .bottom {
        min-height: 260px;
    }
    #sec-12 .bottom .img-01 {
        width: 60px;
    }
    #sec-12 .bottom .img-02 {
        height: 260px;
    }
    #sec-12 .bottom .img-04 {
        width: 50px;
        left: 21%;
    }
    #sec-13 .review-list > li .txt-wrap {
        padding: 25px 20px;
    }
    #sec-13 .review-list > li .txt-wrap ul {
        margin-bottom: 10px;
    }
}

#contactus {
    padding: 215px 30px 100px 30px;
    max-width: 1230px;
    margin: 0 auto;

    .header {
        min-height: 300px;
        margin: 0 0 41px 0px;

        background: url('../img/img-contact.png') no-repeat bottom right/300px 300px;

        @media only screen and (-webkit-device-pixel-ratio: 2) {
            background: url('../img/img-contact@2x.png') no-repeat bottom right/300px 300px;
        }

        @media only screen and (-webkit-device-pixel-ratio: 3) {
            background: url('../img/img-contact@3x.png') no-repeat bottom right/300px 300px;
        }

        .title {
            padding: 30px 0 0 0;
            margin: 0 0 39px 0;
            color: #20bbff;
            font-size: 42px;
            font-weight: 800;
        }

        .txt {
            font-size: 16px;
            color: #6a6d72;
        }
    }

    .cs-center {
        margin: 0 0 39px 0;
        text-align: center;

        .title {
            margin: 0 0 10px 0;
            font-weight: 00;
        }
    }

    .box-container {
        display: flex;
        gap: 30px;

        .box {
            flex: 1 0;
            display: flex;
            padding: 48px 80px 48px 80px;
            align-items: center;
            border-radius: 10px;
            border: solid 1px #e1e5ea;

            .img {
                margin-right: 27px;
            }

            .label {
                flex-basis: 160px;
                font-size: 22px;
            }

            .btn {
                padding: 19px 34px 19px 35px;
                border-radius: 4px;
                background-color: #37c4ff;
                color: #fff;
                font-size: 16px;
            }
        }
    }
}

.info * {
    font-family: 'Poppins', sans-serif;
}
