:root {
    --color-background: #f5f5f5;

    --color-main-blue: #7a7cf7;
    --color-middle-blue: #aaabfa;
    --color-light-blue: #f4f4fe;
    --color-main-gray: #38414b;
    --color-black: #02070b;
    --color-red: #e13e21;
    --color-point: #ee853b;
    --color-gray: #ebeced;

    --color-title: #02070b;
    --color-sub-title: #a4adb7;
    --color-line: #f0f2f4;
    --color-nav: #dbdee1;
    --color-text: #616a72;

    --color-self-growth: #787af6;
    --color-relationship: #dd9eea;
    --color-life-style: #65bc7a;
    --color-happiness: #f6cc47;

    --header-height: 72px;
    --footer-height: 170px;
}

* {
    box-sizing: border-box;
    font-family: SFCompactText, AppleSDGothicNeo, sans-serif;;
}

html {
    font-size: 14px;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.page-content {
    min-height: calc(100vh - var(--footer-height)) !important;
}

video {
    mask-image: radial-gradient(white, black) !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
}

/* region term_page */
.page-content-inner.term_page {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1160px;
}

.page-content-inner.term_page .term_nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.page-content-inner.term_page .term_nav a {
    font-size: 12px;
    color: #000000;
}

.page-content-inner.term_page .term_nav a.active {
    font-weight: bold;
}


.page-content-inner.term_page .page_title {
    font-size: 1.5em;
    font-weight: bold;
    height: auto;
}

.page-content-inner.term_page .term_title {
    margin-top: 1.4em;
    font-size: 1.1em;
    font-weight: bold;
    white-space: pre-wrap;
    word-break: keep-all;
}

.page-content-inner.term_page .term_sub_title {
    margin-top: 0.8em;
    font-size: 1.05em;
    font-weight: bold;
    white-space: pre-wrap;
    word-break: keep-all;
}

.page-content-inner.term_page .white_space_normal {
    white-space: normal !important;
}

.page-content-inner.term_page .term {
    margin-top: 0.3em;
    font-size: 0.95em;
    white-space: initial;
    word-break: initial;
}


.page-content-inner.term_page ul.term {
    white-space: normal;
}

.page-content-inner.term_page ul.term > li {
    margin-top: 0.3em;
}

.page-content-inner.term_page .term_2 {
    padding-left: 1em;
    font-size: 0.95em;
    white-space: initial;
    word-break: initial;
}

.page-content-inner.term_page .term_2.term_flex {
    display: flex;
    gap: 10px;
}

.page-content-inner.term_page .term_3 {
    padding-left: 2em;
    font-size: 0.95em;
    white-space: initial;
    word-break: initial;
}

.page-content-inner.term_page .term_date {
    font-size: 0.95em;
    white-space: pre-wrap;
    word-break: keep-all;
    text-align: right;
}

.page-content-inner.term_page .scroll-body {
    width: 100%;
    overflow: auto;
}

.page-content-inner.term_page table {
    min-width: 100%;
}

.page-content-inner.term_page table * {
    font-size: 0.9rem;
}

.page-content-inner.term_page table th,
.page-content-inner.term_page table td {
    padding: 5px;
    border: solid 1px #a0a0a0;
    vertical-align: middle;
}

.page-content-inner.term_page table th {
    background-color: #ededed;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
}

/* endregion term_page */

.container-fluid {
    padding: 0;
}

.content {
    width: 1280px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto;
}

/* 체크박스 */
.check-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.check-group .check-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
}

.check-input {
    display: none;
}

.check-input + .check-icon {
    background: url("/static/images/radio-btn-off/radio-btn-off.png") no-repeat;
    height: 20px;
    width: 20px;
    display: inline-block;
    padding: 0 0 0 0;
}

.check-input:checked + .check-icon {
    background: url('/static/images/routineCircleOn.png') no-repeat;
    background-position: center;
    height: 20px;
    width: 20px;
    display: inline-block;
    padding: 0 0 0 0;
}

.check-group .check-name {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.35px;
    color: #30304c;
    margin-left: 8px;
}

/* region Navbar*/
.header {
    width: 100vw;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: 9999;
    border-bottom: 2px solid var(--color-line);
    background-color: #ffffff;
    background-image: url("/static/images/web/navbar-background.png");
    background-repeat: no-repeat;
    background-size: 0 0;
}

.header.background_blue {
    background-color: var(--color-main-blue);
    border-bottom: none;
}

.header.background_middle_blue {
    background-color: var(--color-main-blue) !important;
    border-bottom: none;
}

.header .navbar {
    width: 100%;
    max-width: 1280px;
    height: var(--header-height);
    margin: 0 auto;
    padding: 0;
    border: none;
}

.header .navbar-brand {
    width: 32px;
    height: 32px;
    background-image: url("/static/images/web/navbar_logo_blue.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.header.background_blue .navbar-brand {
    background-image: url("/static/images/web/navbar_logo_white.png");
}

.header.background_middle_blue .navbar-brand {
    background-image: url("/static/images/web/navbar_logo_white.png");
}

.header.icon_middle_blue .navbar-brand {
    background-image: url("/static/images/web/navbar_logo_middle_blue.png");
}

.header .navbar-menu {
    width: 36px;
    height: 36px;
    border: none;
    background-color: transparent;
    background-image: url("/static/images/web/navbar_menu_blue.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
}

.header.background_blue .navbar-menu {
    background-image: url("/static/images/web/navbar_menu_white.png");
    background-color: transparent;
    border: none;
}

.header.background_middle_blue .navbar-menu {
    background-image: url("/static/images/web/navbar_menu_white.png");
}

.header.icon_middle_blue .navbar-menu {

    background-image: url("/static/images/web/navbar_menu_middle_blue.png");
}

.navbar-menus {
    width: 100vw;
    height: 0;
}

.navbar-menus .navbar-nav {
    width: 100%;
    height: calc(972px / 100 * 972px);
    /*padding-top: 110px;*/
    display: none;
}

.navbar-menus .nav-item {
    width: 100%;
    max-width: 1280px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
}

.navbar-menus .nav-link {
    display: inline-block;
    position: relative;
    font-size: 70px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.08px;
    text-align: left;
    color: #fff;
    padding: 0;
}

.navbar-menus .nav-link:after {
    content: '';
    width: 0;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ffffff;
    transition: all 400ms cubic-bezier(.215, .61, .355, 1);
}

.navbar-menus .nav-link:hover:after {
    width: 100%;
}

.header .navbar_img {
    display: none;
    width: 488px;
    height: 378px;
    background-image: url("/static/images/web/navbar_background_image.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: 25%;
    left: 55%;
}

@keyframes header_active_anim {
    0% {
        height: 0;
        background-size: 0 0;
    }
    40% {
        height: 100vh;
        background-size: 100% 0;
    }
    100% {
        height: 100vh;
        background-size: 100% 100%;
    }
}

.header.active {
    height: 100vh;
    display: block;
    background-color: #ffffff !important;
    background-size: 100% 100%;
    opacity: 1;
    animation: header_active_anim 800ms ease-in-out;
    background-position: top;
}

.header.active .navbar-brand {
    display: none;
}

.header.active #navbar_menu {
    background-image: url("/static/images/web/navbar_menu_cancel.png") !important;
}

@keyframes header_menus_anim {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    75% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes header_img_anim {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.header.active .navbar-menus {
    animation: header_menus_anim 1100ms ease-in-out;
}

.header.active .navbar-nav {
    display: flex;
}

.header.active .navbar_img {
    display: block;
    animation: header_img_anim 1100ms ease-in-out;
}

/* endregion */

/* region Footer */
#footer {
    width: 100vw;
    height: 100%;
    background-color: #f0f2f4;
}

#footer .footer_inner {
    width: 100%;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

#footer .footer_header {
    width: 100%;
    height: 60px;
    position: relative;
}

#footer .sns {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#footer .sns > li:first-child {
    flex: 1;
}

#footer .footer_title_wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#footer .footer_title {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--color-main-gray);
}

#footer .footer_title_wrapper .footer_corp_collapse {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url("/static/images/web/ic-footer-down.png");
    background-repeat: no-repeat;
    background-size: contain;
}

#footer .footer_title_wrapper.active .footer_corp_collapse {
    background-image: url("/static/images/web/ic-footer-up.png");
}

#footer .sns_link {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: 36px 36px;
    margin-right: 10px;
}

#footer .sns_link.kakao {
    background-image: url("/static/images/web/ic-sns-kakao.png");
}

#footer .sns_link.instagram {
    background-image: url("/static/images/web/ic-sns-instagram.png");
}

#footer .sns_download {
    width: 100px;
    height: 36px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("/static/images/web/footer-download-btn.png");
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
}

#footer .footer_corp {
    height: 40px;
}

#footer .footer_corp_col {
    width: 400px;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: var(--color-text) !important;
}

#footer .footer_terms {
    margin: 15px 0 3px 0;
}

#footer .footer_terms li {
    display: inline-block;
    margin-right: 6px;
}

#footer .footer_terms .footer_term_link {
    height: 16px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--color-main-gray);
}

#footer .footer_terms .footer_term_link::after {
    width: 16px;
    height: 16px;
    display: inline-block;
    content: '';
    background-image: url("/static/images/web/footer_more.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: none;
    outline: none;
}

#footer .footer_copyright > p {
    margin-bottom: 0;
    padding: 0 0 15px 0;
    color: #a4adb7;
}

#footer .footer_copyright > span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    color: var(--color-sub-title);
}


/* endregion */

/* region Home */
@keyframes fade_in_anim {
    0% {
        opacity: 0.2;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }

}

@keyframes badge_fade_in_anim {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@keyframes badge_fade_in_anim2 {
    0% {
        opacity: 0.0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#home .sub_title {
    opacity: 0;
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 45px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--color-black);
}

#home .sub_title.anim {
    opacity: 1;
    animation: fade_in_anim 1s ease-in-out;
}

#home .sub_description {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 22px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.55;
    letter-spacing: normal;
    color: var(--color-main-gray);
    margin: 27px 0 0 0;
}

#home .sub_description.anim {
    animation: fade_in_anim 1s ease-in-out;
}

#home #main_container {
    width: 100vw;
    height: 900px;
    background-image: url("/static/images/web/home_main_background.png");
    background-repeat: no-repeat;
    background-size: 100% 900px;
}

#home #main_container .content {
    flex-direction: column;
    animation: fade_in_anim 1s ease-in-out;
}

#home .main_title {
    display: flex;
    flex-direction: column;
    font-size: 70px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: -0.31px;
    color: #ffffff;
    margin: calc(110px + var(--header-height)) 0 0 0;
}

#home .main_title > strong {
    font-weight: 800;
}

#home .main_description {
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
    margin-top: 30px;
}

#home .main_download {
    width: 160px;
    height: 52px;
    border-radius: 26px !important;
    background-color: #ffffff;
    outline: none;
    border: none;
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 52px;
    letter-spacing: normal;
    text-align: center;
    color: var(--color-main-blue);
    margin-top: 65px;
    z-index: 1100;
}

#home .main_download:hover {
    text-decoration: none;
}

#home .main_side_img {
    width: 364px;
    position: absolute;
    bottom: 96px;
    right: 0;
}

#home #level_container {
    margin: 160px 0 75px 0;
}

#home #level_container .content {
    width: 100vw;
    max-width: 1980px;
    flex-direction: column;
    align-items: center;
}

#home #level_container .level_content_wrapper {
    width: 100%;
    margin: 55px 0 0 0;
    overflow-y: hidden;
}

#home #level_container .level_video_web {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transform: translateY(2px);
    border: none;
    outline: none;
}

#home #level_container .level_video_mobile {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: none;
    border: none;
    outline: none;
    margin: 0 auto;
    border-radius: 20px !important;
}

#home #tip_container {
    padding: 85px 0 81px 0;
    border: solid var(--color-line);
    border-width: 20px 0;
}

#home #tip_container .content {
    flex-direction: column;
    align-items: center;
}

#home #tip_container .tip_content_wrapper {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 0 0;
}

#home #tip_container .tip_content_wrapper.anim {
    animation: fade_in_anim 1s ease-in-out;
}

#home #tip_container .tip_li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home #tip_container .tip_li > img {
    width: 240px;
    height: 240px;
    object-fit: contain;
}

#home #tip_container .tip_li > h3 {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 26px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin: 34px 0 18px 0;
}

#home #tip_container .tip_li > p {
    width: 320px;
    height: auto;
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: 0.2px;
    text-align: center;
    color: #000;
}

#home #mentoring_container {
    padding: 80px 0 120px 0;
}

#home #mentoring_container .content {
    flex-direction: column;
    align-items: center;
}

#home #mentoring_container .mentoring_content_wrapper {
    display: flex;
    margin: 56px 0 0 0;
}

#home #mentoring_container .audio_player_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 150px 0 0;
}

#home #mentoring_container .audio_player_controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 45px 0 0 0;
}

#home #mentoring_container .audio_player_prev {
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url("/static/images/web/ic-player-skip-forward.png");
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    outline: none;
}

#home #mentoring_container .audio_player_progress {
    display: flex;
    justify-content: center;
    align-items: center;
}

#home #mentoring_container .audio_time {
    width: 36px;
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--color-main-gray);
}

#home #mentoring_container .audio_player_next {
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url("/static/images/web/ic-player-skip-back.png");
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    outline: none;
}

#home #mentoring_container .audio_player_play {
    width: 80px;
    height: 80px;
    background-color: transparent;
    background-image: url("/static/images/web/oval-play.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 24px;
    border: none;
    outline: none;
}

#home #mentoring_container .audio_player_play.active {
    background-image: url("/static/images/web/oval-pause.png");
}

#home #mentoring_container .audio_play_list > li:first-child {
    border-top: 1px solid var(--color-nav);
}

#home #mentoring_container .audio_play_list > li {
    width: 580px;
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--color-nav);
}

#home #mentoring_container .audio_play_list > li.active {
    background-color: #f4f4fe;
}

#home #mentoring_container .audio_thumbnail {
    width: 62px;
    height: 62px;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    line-height: 62px;
    margin: 0 14px;
}

#home #mentoring_container .audio_thumbnail > img {
    width: 24px;
    height: 24px;
}

#home #mentoring_container .audio_thumbnail.thumbnail_1 {
    background-image: url("/static/images/web/mentoring_audio_player.png");
}

#home #mentoring_container .audio_thumbnail.thumbnail_2 {
    background-image: url("/static/images/web/mentoring_audio_player2.png");
}

#home #mentoring_container .audio_thumbnail.thumbnail_3 {
    background-image: url("/static/images/web/mentoring_audio_player3.png");
}

#home #mentoring_container .audio_thumbnail.thumbnail_4 {
    background-image: url("/static/images/web/mentoring_audio_player4.png");
}

#home #mentoring_container .audio_text > h4 {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: -0.29px;
    color: var(--color-main-gray);
}

#home #mentoring_container .audio_text > span {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.19px;
    color: var(--color-sub-title);
}

#home #mentoring_container .audio_player_img > img {
    width: 245px;
    height: 245px;
    object-fit: contain;
    border-radius: 50% !important;
    box-shadow: 0 0 19px 18px rgba(67, 121, 238, 0.29);
}

#home #record_container {
    border: solid var(--color-line);
    border-width: 20px 0;
    padding: 80px 0 135px 0;
}

#home #record_container .content {
    flex-direction: column;
    align-items: center;
}

#home #record_container .record_content_wrapper {
    width: 100%;
    height: auto;
    margin: 110px 0 0 0;
}

#home #record_container .record_video_web {
    display: block;
    width: 1280px;
    object-fit: contain;
    border: none;
    outline: none;
}

#home #record_container .record_video_mobile {
    display: none;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border: 1px solid var(--white);
    object-fit: contain;
}

#home #report_container {
    margin: 80px 0 206px 0;
}

#home #report_container .content {
    flex-direction: column;
    align-items: center;
}

#home #report_container .third_title {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin: 88px 0 0 0;
}

#home #report_container .report_content_wrapper {
    width: 100%;
    margin: 143px 0 0 0;
    display: flex;
}

#home #report_container .report_graph {
    width: 432px;
    height: 406px;
}

#home #report_container .report_descriptions {
    flex: 1;
    margin: 0 0 0 143px;
    position: relative;
}

#home #report_container .report_description {
    width: 310px;
    position: absolute;
    border: 1px solid var(--color-gray);
    border-radius: 10px !important;
    padding: 20px 8px 17px 20px;
    word-break: keep-all;
}

#home #report_container .report_description > h4 {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.24px;
    color: var(--color-main-gray);
}

.progressbar {
    width: 200px;
    height: 6px;
    position: relative;
    border-radius: 29px !important;;
    background-color: rgba(122, 124, 247, 0.3);
    margin-bottom: 14px;
}

.progressbar_value {
    width: 70px;
    height: 6px;
    border-radius: 26px !important;;
    background-color: var(--color-main-blue);

}

.progressbar_value.left {
    margin-right: auto;
}

.progressbar_value.middle {
    margin: 0 auto;
}

.progressbar_value.right {
    margin-left: auto;
}

#home #report_container .report_description > p {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: -0.01px;
    color: var(--color-main-gray);
}

#home #report_container .report_description strong {
    color: var(--color-main-blue);
}

#home #report_container .report_description:first-child {
    top: 0;
    left: 0;
}

#home #report_container .report_description:nth-child(2) {
    top: 113px;
    left: 361px;
}

#home #report_container .report_description:nth-child(3) {
    top: 298px;
    left: 31px;
}

#home #badge_container {
    overflow: hidden;
    margin: 0 0 200px 0;
}

#home #badge_container .content {
    flex-direction: column;
    align-items: center;
}

#home #badge_container .sub_title {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.38;
}

#home #badge_container .badge_content_wrapper {
    width: 1920px;
    text-align: center;
    position: relative;
    margin: 133px 0 0 0;
}

#home #badge_container .badge_item {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1000;
}

#home #badge_container .badge_item.anim {
    animation: badge_fade_in_anim 1s ease-in-out;
}

#home #badge_container .badge_item.anim2 {
    animation: badge_fade_in_anim2 2s ease-in-out;
}

#home #badge_container .badge_sm {
    width: 80px;
    height: 80px;
}

#home #badge_container .badge_md {
    width: 120px;
    height: 120px;
}

#home #badge_container .badge_lg {
    width: 142px;
    height: 142px;
}

#home #badge_container .badge_left_1 {
    background-image: url("/static/images/web/badge_left_1.png");
    top: 6px;
    left: 550px;
}

#home #badge_container .badge_left_2 {
    background-image: url("/static/images/web/badge_left_2.png");
    top: 255px;
    left: 458px;
}

#home #badge_container .badge_left_3 {
    background-image: url("/static/images/web/badge_left_3.png");
    top: 34px;
    left: 320px;
}

#home #badge_container .badge_left_4 {
    background-image: url("/static/images/web/badge_left_4.png");
    top: 156px;
    left: 120px;
}

#home #badge_container .badge_right_1 {
    background-image: url("/static/images/web/badge_right_1.png");
    top: 63px;
    right: 560px;
}

#home #badge_container .badge_right_2 {
    background-image: url("/static/images/web/badge_right_2.png");
    top: 209px;
    right: 390px;
}

#home #badge_container .badge_right_3 {
    background-image: url("/static/images/web/badge_right_3.png");
    top: 24px;
    right: 201px;
}

#home #badge_container .badge_right_4 {
    background-image: url("/static/images/web/badge_right_4.png");
    top: 236px;
    right: 181px;
}

#home #badge_container .badge_video_wrapper {
    width: 400px;
    height: 400px;
    margin: auto;
}

#home #badge_container .badge_video_wrapper > video {
    z-index: 990;
}

#home #check_container {
    padding: 75px 0 80px 0;
    border: solid var(--color-line);
    border-width: 20px 0;
}

#home #check_container .content {
    flex-direction: column;
    align-items: center;
}

#home #check_container .check_list_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 108px 0 50px 0;
}

#home #check_container .check_list {
    width: 600px;
}

#home #check_container .check_list > li {
    width: 100%;
    height: 60px;
    border-top: 1px solid var(--color-nav);
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--color-main-gray);
    padding-left: 8px;
    white-space: normal;
    word-break: normal;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#home #check_container .check_list > li:last-child {
    border-bottom: 1px solid var(--color-nav);
}

#home #check_container .check_list > li > span {
    font-family: inherit;
    font-weight: inherit;
}

#home #check_container .check_list > li strong {
    font-family: inherit;
    font-weight: 800 !important;
}

#home #check_container .check {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url("/static/images/web/ic-web-checkbox.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 0 8px 0 0;
}

#home #review_container {
    width: 100%;
    margin: 80px 0 109px 0;
}

#home #review_container .content {
    flex-direction: column;
    align-items: center;
}

#home #review_container .sub_title {
}

#home #review_container .sub_title.anim {
    animation: fade_in_anim 1s ease-in-out;
}

#home #review_container .sub_description {
}

#home #review_container .sub_description.anim {
    animation: fade_in_anim 1s ease-in-out;
}

#home #review_container .review_content_wrapper {
    width: 100%;
    height: auto;
    margin: 60px 0 0 0;
}

#home #review_container .review_content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

#home #review_container .review_content > li {
    width: 624px;
    height: 300px;
    position: relative;
    padding: 36px 33px 18px;
    border-radius: 20px !important;
    background-color: #e9e9fe;
    margin: 0 16px 29px 0;
}

#home #review_container .review_content > li.right {
    margin: 0 0 29px 16px;
}

#home #review_container .review_content h3 {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 24px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

#home #review_container .review_content h3 > div {
    display: inline-block;
}

#home #review_container .review_content p {
    width: 100%;
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: 0.2px;
    margin: 17px 0 0 0;
    color: var(--color-black);
}

#home #review_container .review_content .by_user {
    position: absolute;
    bottom: 16px;
    left: 33px;
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.2px;
    color: var(--color-text);
}

/* endregion */

/* region About */
#about {
    width: 100vw;
    height: 100%;
}

#about #main_container {
    width: 100vw;
    height: 950px;
    background-image: url("/static/images/web/about_main_background.png");
    background-repeat: no-repeat;
    background-size: 100% 950px;
    padding-top: var(--header-height) !important;
}

#about #main_container .intro {
    flex: 3;
}

#about #main_container .intro_side {
    flex: 1;
}

#about #main_container .intro .intro_logo {
    width: 180px;
    margin-top: 77px;
}

#about #main_container .intro .intro_title {
    font-size: 40px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    margin: 43px 0 0 0;
}

#about #main_container .intro .intro_description {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    color: var(--white);
    white-space: normal;
    word-break: break-word;
    padding-right: 126px;
    margin: 56px 0 0 0;
}

#about #main_container .intro_background_img {
    width: 255px;
    height: 502px;
    position: absolute;
    bottom: 95px;
    right: 0;
}

#about #card_container {
    width: 100vw;
    height: 100%;
    margin: 176px 0 211px;
}

#about #card_container .content {
    justify-content: space-between;
    align-items: flex-start;
}

#about #card_container .card {
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: none;
}

#about #card_container .card_img {
    width: 320px;
    height: 320px;
}

#about #card_container .card_title {
    font-size: 30px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    color: #000;
    margin: 50px 11px 0;
}

#about #card_container .card_desc_eng {
    width: auto;
    height: 160px;
    color: var(--color-black);
    font-family: SFCompactText, sans-serif;
    font-size: 21px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: normal;
    margin: 43px 11px 26px;
}

#about #card_container .card_desc_kr {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: normal;
    color: var(--color-black);
    margin-left: 11px;
    margin-right: 11px;
    word-break: break-all;
}

#about #magazine_container {
    width: 100vw;
    height: 100%;
    max-height: 960px;
}

#about #magazine_container .content {
    width: 100%;
    max-width: 1920px;
}

#about #magazine_container .magazine_img {
    width: 50%;
}

#about #magazine_container .magazine_info {
    width: 530px;
    margin: auto;
}

#about #magazine_container .magazine_title {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 40px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--color-black);
    margin: 0;
}

#about #magazine_container .magazine_desc {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    color: var(--color-black);
    margin: 23px 0 0 0;
    word-break: keep-all;
    white-space: pre-line;
}


#about #application_container {
    width: 100vw;
    height: 100%;
    max-height: 960px;
}

#about #application_container .content {
    width: 100%;
    max-width: 1920px;
}

#about #application_container .application_img {
    width: 50%;
}

#about #application_container .application_info {
    width: 530px;
    margin: auto;
}

#about #application_container .application_title {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 40px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--color-black);
    margin: 0;
}

#about #application_container .application_desc {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    color: var(--color-black);
    margin: 23px 0 0 0;
    word-break: keep-all;
    white-space: pre-line;
}

/* endregion */

/* region FAQ */
#faq {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: var(--header-height);
    margin: 0 auto;
    padding-bottom: 60px;
}

#faq .faq_navbar_wrapper {
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--color-line);
    margin: 53px 0 0 0;
}

#faq .faq_navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#faq .faq_nav_item {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--color-sub-title);
    margin-right: 50px;
    padding: 0 4px 10px;
    cursor: pointer;
}

#faq .faq_nav_item.active {
    color: var(--color-main-gray);
    border-bottom: 1.5px solid var(--color-main-gray);
}

#faq .faq_search_wrapper {
    position: absolute;
    top: -2px;
    right: 0;
}

#faq .faq_search_wrapper > label {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    border-radius: 23px !important;
}

#faq .faq_search_wrapper .faq_search_input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    outline: none;
    background-color: transparent;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.23px;
    color: var(--color-main-gray);
}

#faq .faq_search_btn {
    width: 36px;
    height: 36px;
    background-image: url("/static/images/web/faq_search.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    outline: none;
    background-color: transparent;
}

#faq .faq_search_wrapper.input_mode > label {
    width: 360px;
    background-color: var(--color-line);
    margin-bottom: 0;
}

#faq .faq_search_wrapper.input_mode .faq_search_input {
    display: inline-block;
}

#faq .content {
    flex-direction: column;
}

#faq .faq_title {
    text-align: left;
    margin-top: 50px;
}

#faq .faq_title > h1 {
    font-size: 50px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.05px;
    color: var(--color-main-gray);
    margin: 0;
}

#faq .faq_list_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#faq .faq_list_wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 48px;
}

#faq .faq_list_container.search .faq_list_wrapper {
    max-width: 100%;
}

#faq .faq_list_wrapper.max_width_100 {
    max-width: 100%;
}

#faq .faq_list_wrapper #faq_error_list {
    margin-top: 48px;
}

#faq .faq_list_wrapper.max_width_100 #faq_error_list {
    margin-top: 0;
}

#faq .faq_list_title > h2 {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.02px;
    color: var(--color-black);
    margin: 0 0 42px 0;
}

#faq .faq_list {
    width: 100%;
    border-bottom: 1px solid var(--color-sub-title);
}

#faq .faq_item {
    border-top: 1px solid var(--color-sub-title);
    border-bottom: none;
    border-left: none;
    border-right: none;
}

#faq .faq_item:first-child {
    border-top: 1px solid var(--color-sub-title);
}

#faq .faq_item_title {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}

#faq .faq_item_title > h3 {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: -0.29px;
    color: var(--color-main-gray);
}

#faq .faq_item_description {
    font-size: 13px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    color: var(--color-text);
    white-space: pre-line;
    word-break: keep-all;
    padding: 0;
}

#faq .faq_item_title.collapsed .faq_item_arrow {
    background-image: url("/static/images/web/ic-downarrow.png");
}

#faq .faq_item_title .faq_item_arrow {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("/static/images/web/ic-uparrow.png");
    background-position: center;
    background-size: 45px;
    background-repeat: no-repeat;
}

#faq .faq_search_fail_wrapper {
    width: 100%;
    text-align: center;
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.22px;
    color: var(--color-main-gray);
    margin-top: 20vh;
}

#faq .faq_fail_contact {
    display: block;
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--color-sub-title);
    margin-top: 13px;
}

#faq .faq_refund_page {
    font-family: AppleSDGothicNeo, sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--color-sub-title);
}

#faq .faq_link,
#faq .faq_link:link,
#faq .faq_link:visited {
    color: var(--color-text);
}

/* endregion */

/* region Contact */
#contact {
    width: 100%;
    height: 100%;
    padding-top: var(--header-height) !important;
    padding-bottom: 60px;
}

#contact #contact_container {
    margin-top: 50px !important;
}

#contact #contact_container .contact_title {
    font-size: 50px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.05px;
    color: var(--color-main-gray);
    margin-right: 128px;
}

#contact #contact_container .contact_form {
    width: 100%;
    height: 100%;
    margin-top: 100px;
}

#contact #contact_container .input_wrapper {
    width: calc(49% - 40px);
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 21px;
}

#contact #contact_container .input_wrapper.full {
    width: 100%;
}

#contact #contact_container .input_wrapper.ml-80 {
    margin-left: 80px;
}

#contact #contact_container .label {
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: normal;
    color: #616a72;
    padding: 0;
}

#contact #contact_container select {
    -webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    background-image: url("/static/images/web/ic-web-downarrow.png");
    background-repeat: no-repeat;
    background-size: 38px 38px;
    background-position: right;
}

#contact #contact_container .input {
    width: 100%;
    height: 38px;
    font-size: 17px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    color: #38414b;
    background-color: #ffffff;
    border: none;
    border-bottom: 2px solid var(--color-nav);
    outline: none;
}

#contact #contact_container .contact_file_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
}

#contact #contact_container .contact_file_name {
    flex: 1;
    white-space: nowrap;
    overflow-x: hidden;
    padding: 0 10px 0 0;
    text-overflow: ellipsis;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    color: var(--color-main-gray);
}

#contact #contact_container .btn__light-blue {
    width: 64px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    border-radius: 18px !important;
    border: none;
    outline: none;
    padding: 0;
    color: var(--color-main-blue);
    background-color: var(--color-light-blue);
    z-index: 900
}

#contact #contact_container .textarea {
    width: 100%;
    height: auto;
    min-height: 160px;
    font-size: 17px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    color: #38414b;
    border: none;
    border-bottom: 2px solid var(--color-nav);
    outline: none;
    resize: none;
}

#contact #contact_container .submit_btn {
    width: 320px;
    height: 58px;
    border-radius: 29px !important;
    background-color: var(--color-main-blue);
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    margin-top: 63px;
    outline: none;
    border: none;
}

/* endregion*/

/* 태블릿 */
@media screen and (max-width: 1023px) {

}

/* 모바일*/
@media screen and (max-width: 767px) {
    :root {
        --header-height: 47px;
    }

    .content {
        width: 100%;
        padding: 0 25px;
    }

    .mobile_white_space_normal {
        white-space: normal !important;
    }

    /* region Navbar */
    .header .navbar-brand {
        background-image: url("/static/images/web/navbar_logo_blue_mobile.png");
    }

    .header.background_blue .navbar-brand {
        background-image: url("/static/images/web/navbar_logo_white_mobile.png");
    }

    .header.background_middle_blue .navbar-brand {
        background-image: url("/static/images/web/navbar_logo_white_mobile.png");
    }

    .header.icon_middle_blue .navbar-brand {
        background-image: url("/static/images/web/navbar_logo_middle_blue_mobile.png");
    }

    .header .navbar-menu {
        background-image: url("/static/images/web/navbar_menu_blue_mobile.png");
    }

    .header.background_blue .navbar-menu {
        background-image: url("/static/images/web/navbar_menu_white_mobile.png");
    }

    .header.background_middle_blue .navbar-menu {
        background-image: url("/static/images/web/navbar_menu_white_mobile.png");
    }

    .header.icon_middle_blue .navbar-menu {
        background-image: url("/static/images/web/navbar_menu_middle_blue_mobile.png");
    }

    .header.active {
        background-image: url("/static/images/web/mobile-navbar-background.png");
    }

    .header .navbar {
        width: 100%;
        max-width: 100%;
        min-height: var(--header-height);
        padding: 0 25px;
    }

    .header .navbar .navbar-brand,
    .header .navbar .navbar-menu {
        width: 24px;
        height: 24px;
    }

    header.active .navbar-menus {
        height: calc(100vh - var(--header-height));
    }

    .navbar-menus .navbar-nav {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 25px;
    }

    .navbar-menus .nav-item {
        max-width: 100%;
    }

    .navbar-menus .nav-link {
        font-size: 50px;
    }

    .header .navbar_img {
        width: 225px;
        height: 175px;
        bottom: 15%;
        right: 0;
        left: initial;
    }

    /* endregion */
    /* region Footer */
    #footer {
        height: 100%;
    }

    #footer .footer_inner {
        max-width: 100%;
        padding: 0 25px;
    }

    #footer .footer_corp {
        height: 100%;
    }

    #footer .footer_corp ul:not(:first-child) li {
        display: block;
    }

    #footer .footer_corp ul:not(:first-child) li + li {
        margin-left: 0;
    }

    #footer .footer_terms > ul {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    #footer .footer_terms li {
        margin-right: 10px;
    }

    #footer .footer_terms .footer_term_link {
        font-size: 12px;
    }

    /* endregion */
    /* region Home*/
    #home .mobile_no_bold {
        font-weight: normal;
    }

    #home .sub_title {
        font-size: 25px;
    }

    #home .sub_description {
        font-size: 16px;
        line-height: 1.5;
        margin: 16px 0 0 0;
        text-align: center;
    }

    #home #main_container {
        width: 100%;
        height: 700px;
        background-image: url("/static/images/web/home_main_background_mobile.png");
        background-size: 100% 700px;
    }

    #home .main_title {
        font-size: 40px;
        font-weight: 300;
        line-height: 1.25;
        letter-spacing: -0.18px;
        margin: calc(71px + var(--header-height)) 0 0 0;
    }

    #home .main_description {
        font-size: 16px;
        line-height: 1.63;
    }

    #home .main_description > span {
        display: block;
    }

    #home .main_download {
        width: 116px;
        height: 44px;
        line-height: 44px !important;
        margin: 31px 0 0 0;
    }

    #home .main_side_img {
        width: 145px;
        height: 186px;
        bottom: 62px;
        right: 25px;
    }

    #home #level_container {
        margin: 100px 0 70px 0;
    }

    #home #level_container .sub_title > span {
        display: block;
    }

    #home #level_container .sub_description > span {
        display: block;
    }

    #home #level_container .content {
        width: 100%;
        max-width: 100%;
    }

    #home #level_container .level_content_wrapper {
        width: 100%;
        height: 415px;
        margin: 38px 0 0 0;
        background-position: center;
        background-size: initial;
        overflow: hidden;
    }

    #home #level_container .level_video_web {
        display: none;
    }

    #home #level_container .level_video_mobile {
        display: block;
        transform: translateY(1px);
    }

    #home #tip_container {
        margin: 61px 0 0px 0;
        border-width: 10px 0;
    }

    #home #tip_container .sub_title {
        font-size: 30px;
    }

    #home #tip_container .sub_title > span {
        display: block;
    }

    #home #tip_container .tip_content_wrapper {
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 53px 0 0 0;
    }

    #home #tip_container .tip_li:not(:first-child) {
        margin: 42px 0 0 0;
    }

    #home #tip_container .tip_li > img {
        width: 160px;
        height: 160px;
    }

    #home #tip_container .tip_li > h3 {
        font-size: 20px;
        margin: 41px 0 14px;
    }

    #home #tip_container .tip_li > p {
        width: 100%;
        height: auto;
        font-size: 14px;
        margin-bottom: 0;
    }

    #home #mentoring_container {
        padding: 60px 0 73px 0;
    }

    #home #mentoring_container .sub_title > span {
        display: block;
    }

    #home #mentoring_container .mentoring_content_wrapper {
        flex-direction: column;
        width: 100%;
    }

    #home #mentoring_container .audio_player_wrapper {
        margin: 0;
    }

    #home #mentoring_container .audio_player_img > img {
        width: 195px;
        height: 195px;
    }

    #home #mentoring_container .audio_player_controls {
        margin: 38px 0 24px 0;
    }

    #home #mentoring_container .audio_player_progress {
        width: 100%;
    }

    #home #mentoring_container .audio_player_progress .progressbar {
        flex: 1;
        margin: 0 10px;
    }

    #home #mentoring_container .audio_play_list {
        margin: 50px 0 0 0;
    }

    #home #mentoring_container .audio_play_list > li {
        width: 100%;
        height: 70px;
    }

    #home #mentoring_container .audio_thumbnail {
        width: 48px;
        height: 48px;
        margin: 0 15px;
        line-height: 48px;
    }

    #home #mentoring_container .audio_text > h4 {
        margin-bottom: 0px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: -0.22px;
    }

    #home #mentoring_container .audio_text > span {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: -0.12px;
    }

    #home #record_container {
        border-width: 10px 0;
        padding: 61px 0 75px 0;
    }

    #home #record_container .sub_description {
        text-align: center;
    }

    #home #record_container .sub_description > span {
        display: block;
    }

    #home #record_container .record_content_wrapper {
        margin: 33px 0 0 0;
        border-radius: 20px !important;
        -webkit-box-shadow: 0px 2px 10px 0px rgba(122, 124, 247, 0.55);
        box-shadow: 0px 2px 10px 0px rgba(122, 124, 247, 0.55);
    }

    #home #record_container .record_video_web {
        display: none;
    }

    #home #record_container .record_video_mobile {
        display: block;
        border-radius: 20px !important;
    }

    #home #report_container {
        margin: 61px 0 80px 0;
    }

    #home #report_container .sub_title > span {
        display: block;
    }

    #home #report_container .sub_description {
        text-align: center;
    }

    #home #report_container .sub_description > span {
        display: block;
    }

    #home #report_container .third_title {
        font-size: 18px;
        line-height: 1.44;
        margin: 54px 0 0 0;
    }

    #home #report_container .report_content_wrapper {
        margin: 39px 0 0 0;
        flex-direction: column;
        align-items: center;
    }

    #home #report_container .report_graph {
        width: 325px;
        height: 305px;
    }

    #home #report_container .report_descriptions {
        margin: 0;
    }

    #home #report_container .report_description {
        width: 100%;
        position: static;
        margin: 21px 0 0 0;
    }

    #home #report_container .report_description:first-child {
        margin: 37px 0 0 0;
    }

    #home #badge_container {
        margin: 0 0 55px 0;
    }

    #home #badge_container .sub_title {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.44;
    }

    #home #badge_container .badge_content_wrapper {
        width: 375px;
        margin: 46px 0 30px 0;
    }

    #home #badge_container .badge_sm {
        width: 40px;
        height: 40px;
    }

    #home #badge_container .badge_md {
        width: 60px;
        height: 60px;
    }

    #home #badge_container .badge_lg {
        width: 60px;
        height: 60px;
    }

    #home #badge_container .badge_left_1 {
        display: none;
    }

    #home #badge_container .badge_left_2 {
        top: 190px;
        left: 56px;
    }

    #home #badge_container .badge_left_3 {
        top: 26px;
        left: 16px;
    }

    #home #badge_container .badge_left_4 {
        top: 110px;
        left: -10px;
    }

    #home #badge_container .badge_right_1 {
        top: 22px;
        right: 17px;
    }

    #home #badge_container .badge_right_2 {
        top: 110px;
        right: -4px;
    }

    #home #badge_container .badge_right_3 {
        display: none;
    }

    #home #badge_container .badge_right_4 {
        top: 196px;
        right: 33px;
    }

    #home #badge_container .badge_video_wrapper {
        width: 210px;
        height: 210px;
    }

    #home #badge_container .badge_video_wrapper > video {
        width: 210px;
        height: 210px;
    }

    #home #check_container {
        padding: 61px 0 75px;
        border-width: 10px 0;
    }

    #home #check_container .check_list_wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 38px 0 0 0;
    }

    #home #check_container .check_list {
        width: 100%;
    }

    #home #check_container .check_list:first-child > li:last-child {
        border-bottom: none;
    }

    #home #check_container .check_list > li {
        padding-left: 3px;
        padding-right: 3px;
        font-size: 14px;
    }

    #home #check_container .check_list > li > span {
        word-break: break-word;
        color: var(--color-main-gray);
    }

    #home #check_container .check {
        width: 28px;
        height: 28px;
        background-size: cover;
    }

    #home #review_container {
        margin: 60px 0 98px 0;
    }

    #home #review_container .sub_title {
    }

    #home #review_container .sub_title > span {
        display: block;
        font-family: inherit;
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
    }

    #home #review_container .sub_description {
    }

    #home #review_container .review_content_wrapper {
        margin: 45px 0 0 0;
    }

    #home #review_container .review_content {
        flex-direction: column;
    }

    #home #review_container .review_content > li {
        width: 100%;
        padding: 27px 25px 17px;
        border-radius: 12px;
        margin: 0 0 22px 0;
    }

    #home #review_container .review_content > li.right {
        margin: 0 0 22px 0;
    }

    #home #review_container .review_content h3 {
        font-size: 17px;
        font-weight: 800;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.35;
        letter-spacing: normal;
    }

    #home #review_container .review_content h3 > div {
        display: block;
    }

    #home #review_container .review_content h3 span {
        display: block;
    }

    #home #review_container .review_content p {
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        margin: 14px 0 0 0;
    }

    #home #review_container .review_content .by_user {
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.13px;
        bottom: 17px;
        left: 25px;
    }

    /* endregion */
    /* region ABOUT  */
    #about {
        margin-bottom: 0px;
    }

    #about #main_container {
        height: 650px;
        background-image: url("/static/images/web/combined-shape-mobile.png");
        background-size: 100% 650px;
    }

    #about #main_container .intro {
        flex-grow: 1;
        margin: 35px 0 0 0;
    }

    #about #main_container .intro_side {
        display: none;
    }

    #about #main_container .intro .intro_logo {
        width: 128px;
        height: 25px;
        margin: 0;
    }

    #about #main_container .intro .intro_title {
        width: 220px;
        font-size: 28px;
        line-height: 1.36;
        margin-top: 27px;
        margin-bottom: 0;
    }

    #about #main_container .intro .intro_title > span {
        display: block;
    }

    #about #main_container .intro .intro_description {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.93;
        white-space: initial;
        word-break: keep-all;
        margin: 31px 0 0 0;
        padding-right: 2px;
    }

    #about #card_container {
        height: auto;
        margin: 50px 0 0 0;
    }

    #about #card_container .content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 50px 25px 60px;
    }

    #about #card_container .card {
        width: 100%;
        height: auto;
        padding-right: 24px;
        padding-bottom: 25px;
    }

    #about #card_container .card + .card {
        margin-top: 80px;
    }

    #about #card_container .card_img {
        width: 225px;
        height: 225px;
    }

    #about #card_container .card_title {
        font-size: 30px;
        font-weight: 900;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.17px;
        margin: 31px 0 0 0;
    }

    #about #card_container .card_desc_eng {
        width: 100%;
        height: auto;
        margin: 28px 0 0 0;
        font-size: 16px;
        line-height: 1.63;
    }

    #about #card_container .card_desc_kr {
        width: 100%;
        height: auto;
        margin: 28px 0 0 0;
        font-family: AppleSDGothicNeo, sans-serif;
        font-size: 16px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.63;
        letter-spacing: normal;
    }

    #about #magazine_container {
        width: 100%;
        height: 100%;
        padding: 40px 0 0 0 !important;
    }

    #about #magazine_container .content {
        flex-direction: column;
        padding: 0 13px 25px;
    }

    #about #magazine_container .magazine_img {
        width: 100%;
        margin-bottom: 29px;
    }

    #about #magazine_container .magazine_info {
        width: 100%;
        height: 100%;
        z-index: 999;
    }

    #about #magazine_container .magazine_title {
        font-size: 28px;
        line-height: 0.93;
    }

    #about #magazine_container .magazine_desc {
        font-size: 14px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.71;
        letter-spacing: normal;
        color: var(--color-black);
        margin: 17px 0 0 0;
        white-space: initial;
    }

    #about #magazine_container .magazine_desc > span {
        display: block;
    }

    #about #application_container {
        max-height: 100%;
        margin-top: 60px !important;
    }

    #about #application_container .content {
        max-width: 100%;
        flex-direction: column-reverse;
        align-items: flex-end;
        padding: 0 13px 25px;
    }

    #about #application_container .application_info {
        width: 100%;
        z-index: 999;
        margin-left: auto;
        margin-right: 0;
    }

    #about #application_container .application_title {
        font-size: 28px;
    }

    #about #application_container .application_desc {
        font-size: 14px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.71;
        letter-spacing: normal;
        color: var(--color-black);
        margin: 17px 0 0 0;
        white-space: initial;
    }

    #about #application_container .application_img {
        width: 100%;
        margin-bottom: 29px;
    }

    /* endregion */
    /* region FAQ */
    #faq .faq_title {
        margin: 35px 0 0 0;
    }

    #faq .faq_title > h1 {
        font-size: 26px;
    }

    #faq .faq_search_wrapper {
        top: -56px;
    }

    #faq .faq_search_wrapper.input_mode > label {
        width: 100%;
        height: 30px;
        max-width: 200px;
    }

    #faq .faq_search_btn {
        width: 30px;
        height: 30px;
    }

    #faq .faq_search_wrapper.input_mode .faq_search_btn {
        margin-right: 8px;
    }

    #faq .faq_navbar_wrapper {
        margin: 25px 0 0 0;
    }

    #faq .faq_nav_item {
        font-size: 14px;
        margin: 0;
        padding: 8px 11px;
    }

    #faq .faq_list {
        padding: 0;
        margin-top: 12px;
    }

    #faq .faq_list_title > h2 {
        font-size: 14px;
        margin: 0;
    }

    #faq .faq_item_title {
        min-height: 44px;
        height: auto;
        padding: 12px 58px 12px 0;
    }

    #faq .faq_item_title > h3 {
        font-size: 14px;
        word-break: break-word;
        line-height: 1;
    }

    #faq .faq_item_description {
        font-size: 13px;
        padding: 0;
    }

    #faq .faq_item_title .faq_item_arrow {
        width: 44px;
        height: 44px;
        background-size: contain;
    }

    #faq .faq_search_fail_wrapper {

    }

    /* endregion */
    /* region Contact */
    #contact {
        height: 100%;
        min-height: calc(100vh - var(--footer-height));
        padding-bottom: 0;
    }

    #contact .content {
        flex-direction: column;
        padding: 35px 25px 48px;
    }

    #contact #contact_container {
        margin-top: 0 !important;
    }

    #contact #contact_container .contact_title {
        font-size: 26px;
        margin: 0;
    }

    #contact #contact_container .contact_form {
        margin-top: 0;
    }

    #contact #contact_container .input_wrapper {
        width: 100%;
        margin-top: 28px;
    }

    #contact #contact_container .input_wrapper.ml-80 {
        margin-left: 0;
    }

    #contact #contact_container .label {
        height: auto;
        font-size: 14px;
        padding: 0;
        line-height: 1;
        margin-bottom: 0;
    }

    #contact #contact_container .input {
        height: 38px;
        font-size: 16px;
        margin: 0;
        padding: 0;
    }

    #contact #contact_container .textarea {
        font-size: 16px;
        padding: 20px 0;
        margin-top: 12px;
    }

    #contact #contact_container .submit_btn {
        width: 100%;
        height: 52px;
        margin-top: 32px;
    }

    /* endregion */
}