:root {
    --web-width: 1180px;
    --nav-height: 80px;
}

* {
    font-family: sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    background-color: #FCFBF9;
}

.container-fluid {
    padding: 0;
}

.show-web {
    display: flex !important;
}

.show-mobile {
    display: none !important;
}

/* region Navbar */
.navbar_container {
    width: 100%;
    height: var(--nav-height);
    position: fixed;
    background-color: #FFFFFF;
    z-index: 9999;
    padding: 0 50px;
}

.navbar {
    width: 100%;
    max-width: var(--web-width);
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.navbar .navbar-brand img {
    width: 100px;
    height: 28px;
}

.nav-link,
.nav-link:hover {
    width: 80px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    color: #000000;
    font-size: 18px;
}

.nav-link.current {
    color: #0082F3;
}

/* endregion */

/* region Main */
.main-container {
    width: 100%;
    height: 720px;
    padding-top: var(--nav-height);
    background-color: #ffe139;
    background-image: url(/static/images/web/Frame-4653.png);
    background-position: 80% 80%;
    background-size: 697px;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.main-wrapper {
    width: var(--web-width);
    height: 100%;
    margin: 142px auto 35px;
}

.main-title {
    color: #000000;
    font-size: 48px;
    line-height: 62px;
    font-weight: 700;
    text-align: left;
    text-transform: none;
    margin: 0 0 27px;
}

.main-desc {
    margin: 0 0 110px;
    color: #000000;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
}

.main-btn,
.main-btn:hover {
    min-width: 224px;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-items: center;
    margin: 0 11px 0 0;
    padding: 0;
    border-radius: 12px;
    background-color: #fff;
    background-position: 37px 50%;
    background-size: 23.08px;
    background-repeat: no-repeat;
    color: #000;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
}

.main-btn strong {
    padding: 0 0 0 75px;
}

.main-btn.button_googleplay {
    background-image: url(/static/images/web/Frame-4659.png);
}

.main-btn.button_appstore {
    background-image: url(/static/images/web/Frame-4660.png);
}

/* endregion */

/* region Story */

.story-container {
    width: 100%;
    background-color: #fcfbf9;
    margin: 0;
    padding: 120px 0;
}

.story-wrapper {
    width: var(--web-width);
    height: 100%;
    margin: 0 auto 0;
}

.story .heading {
    margin: 0 auto 102px;
    padding: 0;
    text-align: center;
    font-weight: 400;
    font-size: 44px;
    line-height: 62px;
}

.story .story-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    margin-bottom: 63px;
}

.story .story-content .story-title {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.3px;
    margin-bottom: 0px;
}

.story .story-content .paragraph {
    font-size: 18px;
    letter-spacing: -0.2px;
    margin-bottom: 0;
    line-height: 28px;
}

.story .story-content .story-content-list .story-sub-title {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 28px;
    font-weight: 400;
}

.story .story-content .story-content-list ul {
    list-style-type: disc;;
    margin: 0 0 40px 0;
    padding: 0;
}

.story .story-content .story-content-list li {
    margin-bottom: 4px;
    padding-left: 8px;
    background-image: url(/static/images/web/Oval.svg);
    background-position: 0% 50%;
    background-size: 3px;
    background-repeat: no-repeat;
    opacity: 0.64;
    color: #000;
    font-size: 18px;
    list-style-type: none;
    line-height: 28px;
}

.story .story-content .story-content-list ul:last-child {
    margin: 0;

}

/* endregion*/

/* region Service */
.service-container {
    width: 100%;
    background-color: #f6f3f0;
}

.service .service_section_1 {
    width: 100%;
}

.service .service_section_1 {
    width: var(--web-width);
    min-height: 720px;
    max-height: none;
    display: flex;
    align-items: center;
    margin: 0 auto 0;
}

.service .heading {
    display: block;
    height: auto;
    margin-top: 0px;
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    -o-object-fit: fill;
    object-fit: fill;
}

.service .paragraph {
    max-width: 550px;
    margin-bottom: 0px;
    border-style: none;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.64);
    line-height: 28px;
}

.service .service_section_1 .left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-items: center;
}

.service .service_section_1 .right-content {
    margin-left: auto;
}

.service .service_section_1 .service-img {
    width: 524px;
}

.service .service_section_2_wrapper {
    width: 100%;
    max-height: none;
    margin: 0 auto 0;
    background-color: #fcfbf9;
}

.service .service_section_2 {
    width: var(--web-width);
    min-height: 720px;
    max-height: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 0;
    background-color: #fcfbf9;
}

.service .service_section_2 .service-img {
    width: 351px;
    margin-top: 62px;
}

.service .service_section_2 .right-content {
    display: block;
    margin-top: auto;
    margin-right: 222px;
    margin-bottom: auto;
}

.service .service_section_3_wrapper {
    width: 100%;
    min-height: 720px;
    max-height: 760px;
    margin: 0 auto 0;
    background-color: #d9b8a4;
}

.service .service_section_3 {
    width: var(--web-width);
    height: 639px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 0;
}

.service .service_section_3 img {
    width: 571px;
    height: 639px;
    position: relative;
    top: 64px;
    right: 20px;
}

/* endregion*/

/* region Recruit */
.recruit-container {
    width: 100%;
    background-color: #FCFBF9;
}

.recruit-wrapper {
    width: var(--web-width);
    margin: 0 auto;
    padding-top: 120px;
}

.recruit .heading {
    margin: 0 0 102px;
    text-align: center;
    font-size: 44px;
    line-height: 62px;
    font-weight: 400;
    padding: 0;
}

.recruit .recruit-contents {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
    padding: 0;
}

.recruit .recruit-item {
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 24px;
    flex: 1;
}

.recruit .recruit-item .recruit-icon {
    margin-bottom: 40px;
    width: 48px;
    height: 48px;
}

.recruit .recruit-item .paragraph {
    max-width: 332px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.recruit .recruit-link,
.recruit .recruit-link:hover {
    position: static;
    bottom: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-height: 64px;
    max-width: 300px;
    min-height: 64px;
    min-width: 300px;
    margin-right: auto;
    margin-bottom: 160px;
    margin-left: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 12px;
    background-color: #f0f0f0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

/* endregion */

/* region Contact */

/* endregion */

/* region Footer */
.footer-container {
    width: 100%;
    background-color: #F8F6F4;
}

.footer-wrapper {
    width: var(--web-width);
    height: 123px;
    margin: 0 auto;
    padding-top: 34px;
    display: flex;
    align-items: flex-start;
}

.footer .heading {
    margin-right: 97px;
    color: rgba(0, 0, 0, 0.64);
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
}

.footer .info-contents {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
}

.footer .info-item {
    margin-right: 15px;
    color: rgba(0, 0, 0, 0.64);
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    gap: 17px;
}

.footer .vertical-bar {
    margin-right: 10px;
    color: rgba(0, 0, 0, 0.12);
    font-size: 14px;
    line-height: 17px;
}

.footer .copyright {
    margin-right: 15px;
    color: rgba(0, 0, 0, 0.64);
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
}

/* endregion */

/* region Modal */
.modal {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;
}

.modal-wrapper {
    width: 400px;
    height: 150px;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px 24px 0;
    position: fixed;
    top: 37%;
    bottom: 0%;
}

.modal-header {
    display: flex;
    padding: 0;
    border: none !important;
    margin-bottom: 20px;
}

.modal-title {
    flex: 1;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
}

.modal-close {
    cursor: pointer;
}

.modal-body {
    font-size: 18px;
    padding: 0;
}

/* endregion */

/* region 햄버거 메뉴 애니메이션 */
.navbar-toggler {
    padding: 0;
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 22px;
    height: 15px;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 6px;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

/* type-07 */
/* 라인이 하나로 합쳐졌다가 엑스자 만들기 */
.menu-trigger.type7 span:nth-of-type(1) {
    -webkit-animation: menu-bar07-01 .75s forwards;
    animation: menu-bar07-01 .75s forwards;
}

@-webkit-keyframes menu-bar07-01 {
    0% {
        -webkit-transform: translateY(6px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar07-01 {
    0% {
        transform: translateY(6.5px) rotate(45deg);
    }
    50% {
        transform: translateY(6.5px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.type7 span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger.type7 span:nth-of-type(3) {
    -webkit-animation: menu-bar07-02 .75s forwards;
    animation: menu-bar07-02 .75s forwards;
}

@-webkit-keyframes menu-bar07-02 {
    0% {
        -webkit-transform: translateY(-6px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar07-02 {
    0% {
        transform: translateY(-6px) rotate(-45deg);
    }
    50% {
        transform: translateY(-6px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.active-7 span:nth-of-type(1) {
    -webkit-animation: active-menu-bar07-01 .75s forwards;
    animation: active-menu-bar07-01 .75s forwards;
}

@-webkit-keyframes active-menu-bar07-01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(6px) rotate(45deg);
    }
}

@keyframes active-menu-bar07-01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(6px) rotate(0);
    }
    100% {
        transform: translateY(6px) rotate(45deg);
    }
}

.menu-trigger.active-7 span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active-7 span:nth-of-type(3) {
    -webkit-animation: active-menu-bar07-02 .75s forwards;
    animation: active-menu-bar07-02 .75s forwards;
}

@-webkit-keyframes active-menu-bar07-02 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-6px) rotate(-45deg);
    }
}

@keyframes active-menu-bar07-02 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-6px) rotate(0);
    }
    100% {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* endregion */


@media (max-width: 479px) {

    :root {
        --web-width: 100vw;
        --nav-height: 56px;
    }

    .show-web {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }

    /* region Navbar */
    .navbar_container {
        width: 100vw;
        height: 58px;
        padding: 0 24px;
    }

    .navbar-collapse {
        width: 100%;
        position: fixed;
        top: 56px;
        left: 0;
        background-color: #FFFFFF;
        padding-left: 27px;
    }

    .nav-link,
    .nav-link:hover {
        width: 100%;
        height: 48px;
        line-height: 40px;
    }

    /*  endregion*/
    /* region Main */
    .main-container {
        height: 691px;
        position: relative;
        background-position: 46px 215px;
        background-size: 560px;
        background-repeat: no-repeat;
        padding: 0 24px 44px;
    }

    .main-wrapper {
        width: 100%;
        margin: 0;
        padding: 93px 0 15px;
    }

    .main-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .main-desc {
        font-size: 16px;
        margin-bottom: 0px;
        line-height: 29px;
    }

    .main-btn-group {
        display: none;
    }

    .main-mobile-btn-group {
        display: block;
        width: calc(100vw - 48px);
        box-shadow: 0 6px 8px -1px rgb(0 0 0 / 14%);
        position: absolute;
        bottom: 44px;
    }

    .main-mobile-btn-group .main-btn,
    .main-mobile-btn-group .main-btn:hover {
        width: 100%;
        justify-content: center;
        font-weight: bold;
        text-decoration: none;
    }

    /* endregion */
    /* region Story */
    .story-container {
        padding: 52px 0;
    }

    .story .heading {
        font-size: 16px;
        line-height: 19px;
        text-align: left;
        margin-bottom: 39px;
        padding: 0 24px;
    }

    .story .story-content {
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        margin-bottom: 64px;
        gap: 20px;
    }

    .story .story-content .story-title {
        font-weight: 700;
        line-height: 36px;
    }

    .story .story-content .paragraph {
        font-size: 16px;
        line-height: 24px;
        align-self: stretch;
        letter-spacing: initial;
    }

    .story .story-content .story-content-list .story-sub-title {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 19px;
    }

    .story .story-content .story-content-list li {
        background-position: 0% 12px;
        font-size: 14px;
        line-height: 20px;
    }

    .story .story-content .story-content-list ul:last-child {
        margin-bottom: 0px;
    }

    /* endregion */
    /* region Service */
    .service .service_section_1 {
        display: flex;
        flex-direction: column;
        min-height: 782px;
        padding: 52px 24px;
    }

    .service .heading {
        font-size: 28px;
        line-height: 36px;
    }

    .service .service_section_3 .heading {
        font-size: 27px;
    }

    .service .paragraph {
        margin-bottom: 64px;
        line-height: 22px;
        color: rgba(0, 0, 0, 0.64);
    }

    .service .service_section_1 .service-img {
        width: 100%;
    }

    .service .service_section_2 {
        display: flex;
        flex-direction: column-reverse;
        min-height: 782px;
        padding: 52px 24px;
    }

    .service .service_section_2 .right-content {
        margin: 0;
    }

    .service .service_section_2 .service-img {
        margin-top: 0;
        width: 100%;
    }

    .service .service_section_3 {
        display: flex;
        flex-direction: column;
        min-height: 782px;
        padding: 52px 24px;
    }

    .service .service_section_3 .service-img {
        width: 100%;
        height: initial;
        position: static;

    }

    /* endregion */
    /* region Recruit */
    .recruit-container {
        padding-top: 40px;
    }

    .recruit .recruit-wrapper {
        padding-top: 0;
    }

    .recruit .heading {
        text-align: left;
        font-size: 16px;
        line-height: 19px;
        margin: 0 auto 39px 24px
    }

    .recruit .recruit-contents {
        padding: 0 24px;
        flex-direction: column;
        margin-bottom: 0;
    }

    .recruit .recruit-item {
        padding: 0;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .recruit .recruit-item .recruit-icon {
        margin-bottom: 40px;
    }

    .recruit .recruit-item .recruit-title {
        margin: 0 0 16px 0;
        font-size: 24px;
        line-height: 32px;
        font-weight: 700;
    }

    .recruit .recruit-item .paragraph {
        font-size: 16px;
        line-height: 24px;
        margin: 0;
        padding: 0;
    }

    .recruit .recruit-link, .recruit .recruit-link:hover {
        margin-bottom: 80px;
    }

    .recruit .recruit-link,
    .recruit .recruit-link:hover {
        max-width: calc(100vw - 48px);
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        margin: 0 auto 80px;
        height: 52px;
        max-height: 52px;
        min-height: 52px;
        font-size: 18px;
        line-height: 22px;
    }

    /* endregion */
    /* region Contact */
    .contact-wrapper {
        padding: 0 24px;
        margin-bottom: 64px;
    }

    .contact .heading {
        font-size: 24px;
        line-height: 32px;
        font-weight: 700;
        margin: 0 0 16px;
    }

    .contact .paragraph,
    .contact .paragraph:hover,
    .contact .paragraph:visited,
    .contact .paragraph:active {
        font-size: 16px;
        line-height: 19px;
        font-weight: bold;
        text-decoration: none;
        color: #000000;
    }

    /* endregion */
    /* region Footer */
    .footer .footer-wrapper {
        flex-direction: column;
        padding-top: 24px;
        align-items: center;
    }

    .footer .heading {
        font-size: 14px;
        line-height: 17px;
        text-align: center;
        color: #000000;
        margin: 0 auto 8px;
    }

    .footer .info-contents {
        display: none;
    }

    .footer .copyright {
        color: rgba(0, 0, 0, 0.48);
        text-align: center;
    }

    /* endregion */
    /* region Modal */
    .modal-wrapper {
        width: calc(100vw - 30px);
        height: 130px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body {
        font-size: 15px;
        line-height: 22px;
    }

    /* endregion */
}