@charset "UTF-8";

/* common */
#main {
    position: relative;
    font-family: 'myriad-pro', 'NotoSans','돋움', Dotum,'굴림', Gulim, Helvetica, sans-serif;
}
#footer {
    position: relative;
    z-index: 10;
}

.section {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    z-index: 20;
    background: #fff;
}

.section_title {
    margin-bottom: 32px;
    padding-bottom: 0;
    text-align: left;
}

.section_title::before {
    display: none;
}

.section_title strong {
    display: inline-block;
    color: #FA7723;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.section_title h2 {
    color: #111;
    font-size: 28px;
    font-weight: 600;
    line-height: 150%;
    opacity: 0;
    transform: translateY(30px);
}

.section_title.active strong,
.section_title.active h2 {
    animation: fadeUpMedium 1s forwards;
}

.section_title.active h2 {
    animation-delay: .3s;
}

.arrow_btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    padding: 10px 0;
}

.arrow_btn.white {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.arrow_btn.black {
    border-bottom: 1px solid rgba(17, 17, 17, .3);
}

.arrow_btn span {
    font-size: 14px;
    font-weight: 500;
}

.arrow_btn.white span {
    color: #fff;
}

.arrow_btn.black span {
    color: #111;
}

.arrow_btn img {
    width: 16px;
    height: 16px;
    object-fit: cover;
}

/* vision section */
.vision_section {
    position: relative;
    height: 100vh;
}

.vision_section .section_container,
.vision_section .section_content {
    width: 100%;
    height: 100%;
}

.vision_section .section_content,
.vision_section .vision_area {
    position: relative;
}

.vision_section .video_area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.vision_section .video_area::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
}

.vision_section .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision_section .vision_area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 48px 16px 0;
    z-index: 20;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.vision_section .vision span {
    display: block;
    font-size: 38px;
    font-weight: 600;
    line-height: 130%;
    opacity: 0;
}

.vision_section .vision span,
.vision_section .introduction {
    animation: fadeUpLarge 1s forwards;
}

.vision_section .vision span:nth-of-type(2) {
    animation-delay: .5s;
}

.vision_section .introduction {
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    opacity: 0;
    animation-delay: 1s;
}


/* slogan section */
.slogan_section .section_container {
    margin: 120px 0;
}

.slogan_section .slogan_item {
    text-align: center;
}

.slogan_section .slogan_item:not(:last-of-type) {
    margin-bottom: 80px;
}

.slogan_section .slogan_title {
    margin-bottom: 18px;
    padding: 0 16.7%;
    text-align: left;
}

.slogan_section .slogan_title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    opacity: 0;
    transform: translateY(30px);
}

.slogan_section .slogan_title .description {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #666;
    opacity: 0;
    transform: translateY(30px);
}

.slogan_section .slogan_img {
    width: calc(100% - 16.7%);
    height: calc(100vw * 0.556);
    border-radius: 0 16px 16px 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.slogan_section .slogan_item:nth-child(even) .slogan_img {
    margin: 0 0 0 auto;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

.slogan_section .slogan_img figure {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
}

.slogan_section .slogan_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slogan_section .slogan_title h2.active{
    animation: fadeUpMedium 0.5s forwards;
}

.slogan_section .slogan_title .description.active{
    animation: fadeUpMedium 0.5s 0.2s forwards;
}

.slogan_section .slogan_img.active{
    animation: fadeUpMedium 0.5s 0.3s forwards;
}

/* business section */
.business_section .section_container {
    padding: 0 16px;
}

.business_section .business_card_list {
    margin-bottom: 32px;
}

.business_section .business_card_item:not(:last-of-type) {
    margin-bottom: 16px;
}

.business_section .business_card {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
}

.business_section .business_card.active {
    animation: fadeUpMedium 1s forwards;
}

.business_section .business_card > * {
    border-radius: 16px;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .6s;
    backface-visibility: hidden;
}

.business_section .card_front {
    position: absolute;
    transform: rotateY(0);
}

.business_section .card_back {
    position: relative;
    transform: rotateY(-180deg);
}

.business_section .business_card.reverse .card_front {
    transform: rotateY(-180deg);
}

.business_section .business_card.reverse .card_back {
    transform: rotateY(0);
}

.business_section .bg_area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.business_section .bg_area img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    transform: scale(1.3);
    transition: all .7s;
}

.business_section .business_card.active .bg_area img {
    transform: scale(1);
}

.business_section .bg_area::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.business_section .card_front .bg_area::after {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.00) 41.56%,
            rgba(0, 0, 0, 0.30) 89.06%),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.20) 100%);
}

.business_section .business_card_item:nth-child(2) .card_front .bg_area::after {
    background: rgba(0, 0, 0, 0.2);
}

.business_section .card_back .bg_area::after {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.00) 41.56%,
            rgba(0, 0, 0, 0.30) 89.06%),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.70) 100%);
}

.business_section .txt_area {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 405px;
    padding: 32px 24px 28px;
    color: #fff;
    z-index: 20;
    box-sizing: border-box;
}

.business_section .card_title {
    font-weight: 500;
    margin-bottom: 24px;
}

.business_section .card_title span {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 150%;
    opacity: 0;
    transform: translateY(16px);
}

.business_section .business_card.active .card_title span {
    animation: fadeUpSmall .5s forwards;
    animation-delay: .3s;
}

.business_section .card_title h3 {
    font-size: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.business_section .business_card.active .card_title h3 {
    animation: fadeUpSmall .5s forwards;
    animation-delay: .6s;
}

.business_section .description_wrap {
    margin-bottom: 16px;
}

.business_section .card_description {
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
}

.business_section .btn_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.business_section .btn_area {
    text-align: center;
}

.business_section .btn_area .arrow_btn {
    opacity: 0;
    transform: translateX(-30%);
    transition: all .5s;
}

.business_section .btn_area.active .arrow_btn {
    opacity: 1;
    transform: translateX(0);
}

/* job interview section */
.job_interview_section {
    contain: paint;
    overflow: visible;
}

.job_interview_section .section_container {
    position: relative;
}

.job_interview_section .section_title {
    text-align: center;
}

.job_interview_section .sticky_area {
    position: sticky;
    top: 0;
    /*padding-top: 215px;*/
    padding-top: calc(var(--viewportHeight, 1vh) * 27.5);
    z-index: 10;
    height: calc(var(--viewportHeight, 1vh) * 100);
    box-sizing: border-box;
}

.job_interview_section .section_bg {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 659px;
    z-index: 10;
}

.job_interview_section .section_bg img {
    position: relative;
    z-index: 10;
}

.job_interview_section .dot_group {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}

.job_interview_section .dot {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FA7723;
    animation: move calc(var(--dur) * 1s) infinite linear;
}

.job_interview_section .dot1,
.job_interview_section .dot2 {
    offset-path: path("M329.401 252.484C380.154 252.484 421.298 216.762 421.298 172.696C421.298 128.631 380.154 92.9082 329.401 92.9082C278.647 92.9082 237.503 128.631 237.503 172.696C237.503 216.762 278.647 252.484 329.401 252.484Z");
}

.job_interview_section .dot3,
.job_interview_section .dot4,
.job_interview_section .dot5 {
    offset-path: path("M329.401 345.608C427.045 345.608 506.201 276.71 506.201 191.72C506.201 106.73 427.045 37.8319 329.401 37.8319C231.757 37.8319 152.601 106.73 152.601 191.72C152.601 276.71 231.757 345.608 329.401 345.608Z");
}

.job_interview_section .dot6 {
    offset-path: path("M329.401 437.761C465.865 437.761 576.49 341.59 576.49 222.957C576.49 104.324 465.865 8.15234 329.401 8.15234C192.937 8.15234 82.3114 104.324 82.3114 222.957C82.3114 341.59 192.937 437.761 329.401 437.761Z");
}

.job_interview_section .dot7 {
    offset-path: path("M629.773 262.439C629.773 213.7 614.755 168.05 588.57 128.858C528.452 51.0385 434.76 1 329.5 1C224.24 1 129.031 51.8478 68.9751 130.748C43.5638 169.512 29.0259 214.483 29.0259 262.439C29.0259 408.299 163.508 526.543 329.401 526.543C495.294 526.543 629.776 408.299 629.776 262.439H629.773Z");
}

.job_interview_section .section_title {
    position: absolute;
    /*top: 294px;*/
    top: calc((var(--viewportHeight, 1vh) * 27.5) + 79px);
    z-index: 20;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.job_interview_section .scroll_area {
    position: relative;
    padding: 0 16px;
    top: calc(var(--viewportHeight, 1vh) * -7.7);
    margin-bottom: calc((var(--viewportHeight, 1vh) * -7.7) + 80px);
    z-index: 20;
}

.job_interview_section .job_interview_card_item:not(:last-of-type) {
    margin-bottom: 32px;
}

.job_interview_section .job_interview_card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(30%);
    transition: all .7s;
}

.job_interview_section .job_interview_card.active {
    transform: translateY(0);
}

.job_interview_section .job_interview_card_item:nth-of-type(odd) .job_interview_card {
    max-width: 280px;
    aspect-ratio: 1 / 1;
}

.job_interview_section .job_interview_card_item:nth-of-type(even) .job_interview_card {
    max-width: 216px;
    aspect-ratio: 1 / 1.52;
}

.job_interview_section .card_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateY(100%);
    transition: all .7s;
}

.job_interview_section .job_interview_card.active .card_img {
    transform: translateY(0);
}

.job_interview_section .card_img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 144px;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 6.48%, rgba(0, 0, 0, 0.80) 100%);
    z-index: 20;
}

.job_interview_section .card_img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    border-radius: 8px;
}

.job_interview_section .card_txt {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 28px 24px;
    color: #fff;
    z-index: 20;
    gap: 6px;
    box-sizing: border-box;
}

.job_interview_section .card_info {
    font-size: 14px;
    opacity: 0;
    transform: translateY(16px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4;
}

.job_interview_section .job_interview_card.active .card_info {
    animation: fadeUpSmall .5s forwards;
    animation-delay: .5s;
}

.job_interview_section .card_info strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}

.job_interview_section .card_info span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    font-weight: 300;
}

.job_interview_section .card_title {
    line-height: 140%;
    font-weight: 500;
    font-size: 20px;
    opacity: 0;
    transform: translateY(16px);
    overflow: hidden;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.job_interview_section .job_interview_card.active .card_title {
    animation: fadeUpSmall .5s forwards;
    animation-delay: .8s;
}

/* esg section */
.esg_section {
    z-index: 10;
}

.esg_section.visible::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/resources/mobile/kr/images/index/bg_esg.jpg) no-repeat center center/cover;
    z-index: -1;
}

.esg_section .section_container {
    padding: 80px 16px;
}

.esg_section .section_title h2 {
    max-width: 180px;
}

.esg_section .section_title strong,
.esg_section .section_title h2 {
    color: #fff;
}

.esg_section .swiper {
    width: 100%;
    height: 100%;
    margin-bottom: 34px;
    opacity: 0;
    transform: translateX(30vw);
    transition: all .7s;
}

.esg_section .swiper.active {
    opacity: 1;
    transform: translateX(0);
}

.esg_section .swiper-slide {
    width: 85%;
}

.esg_section .esg_card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.esg_section .card_img {
    position: relative;
    z-index: 10;
}

.esg_section .card_img img {
    width: 100%;
}

.esg_section .card_txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: 12px;
    text-align: center;
    z-index: 20;
    padding: 10px;
    font-weight: 500;
    box-sizing: border-box;
}

.esg_section .card_txt h3 {
    font-size: 14px;
}

.esg_section .card_txt strong {
    font-size: 24px;
}

.esg_section .arrow_btn {
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
}

.esg_section .btn_area.active .arrow_btn {
    animation: fadeUpSmall .5s forwards;
}

.esg_section .btn_area.active .arrow_btn:nth-of-type(2) {
    animation-delay: .3s;
}

.esg_section .arrow_btn:not(:last-of-type) {
    margin-bottom: 16px;
}

@media all and (max-width: 520px) {
    .vision_section .vision {
        max-width: 300px;
    }
}

/* animation */
@keyframes fadeUpLarge {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUpMedium {
    from {
        transform: translateY(28px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUpSmall {
    from {
        transform: translateY(16px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveRTL {
    from {
        transform: translate3d(100%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes moveLTR {
    from {
        transform: translate3d(-100%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes textFill {
    from {
        fill: #fff;
    }
    to {
        fill: #111;
    }
}

@keyframes move {
    0% {
        offset-distance: calc(var(--start) * 1%);
    }
    100% {
        offset-distance: calc((var(--start) + 100) * 1%);
    }
}
@keyframes sloganImgMoveUp {
    from {
        transform: translateY(5px) scale(1.3);
    }
    to {
        transform: translateY(0) scale(1.3);
    }
}