@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&display=swap');


* {
    font-family: 'SUIT', 'Noto Sans KR', 'Apple Gothic', 'Apple SD Gothic Neo', '돋움', 'Dotum', '바탕', 'Batang', 'sans-serif';
    color: #121212;
}

.serif {
    font-family: 'Noto Serif Display', serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden !important;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

body.stop-scroll {
    height: 100%;
    overflow: hidden;
    position: fixed;
}

html.fp-enabled {
    overflow: visible;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera*/
}

.notice p {
    color: white;
    margin-top: 30px;
    font-size: 18px;
}


.sound-only {
    position: absolute;
    left: -999px;
    width: 0;
    height: 0;
    text-indent: -999px;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

section {
    height: 100vh;
    background: white;
    position: relative;
}

button {
    border: none;
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
}

/*layer popup*/
.layerpop {
    margin: auto;
    width: auto !important;
    max-width: 660px !important;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    display: none;
}

.layerpop .cont {
    text-align: center;
}

.layerpop .cont img {
    width: 100% !important;
    display: block;
    height: auto !important;
}

.layerpop input[type="checkbox"] {
    appearance: checkbox;
    display: inline;
}

.layerpop input[type="checkbox"]::after,
.layerpop input[type="checkbox"]:checked::after {
    display: none;
}

.layerpop .bottom-popup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.layerpop .bottom-popup label {
    margin-left: 5px;
    margin-right: auto;
}

.layerpop .layer-popup-close {
    color: white;
    background-color: #121212;
    padding: 4px 6px;
    border-radius: 5px;
}

.popup {
    padding: 20px 20px 0 20px;
    overflow-y: scroll;
}

.popup .popup-bottom {
    border-top: 1px solid #eee;
    position: fixed;
    background-color: white;
    width: 100%;
    bottom: 0px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    left: 0;
    box-sizing: border-box;
    align-items: center;
}

.popup .popup-btn-close {
    color: white;
    background-color: #121212;
    padding: 8px 12px;
    border-radius: 5px;
}

.popup .popup-btn-not-open {
    border-bottom: 1px solid #121212;
}



.loading-bg {
    background-image: url(../img/loading-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    animation: loading-bg-ani 12s infinite alternate linear;
}

@keyframes loading-bg-ani {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.3);
    }
}

.on .splitting .char {
    animation: slide-in 1.6s cubic-bezier(0.2, 0, 0.1, 1) both;
    animation-delay: calc(30ms * var(--char-index));
    will-change: transform;
    transform-origin: top left;
}

.splitting .white .char:first-of-type,
.splitting .white .char:nth-of-type(2),
.splitting .white .char:nth-of-type(3),
.splitting .white .char:nth-of-type(4) {
    color: white;
}

@keyframes slide-in {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
}

/* 언어 선택 버튼 */

.lang-select-box {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: absolute;
    top: calc(35% + 150px);
    left: 50%;
    transform: translate(-50%, calc(-35% + 150px));
}

.lang-select-box a{
    line-height: 1;
    vertical-align: middle;
    padding: 25px 55px;
    border-radius: 999px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.2s;
    overflow: hidden;
}

.lang-select-box a.eng {
    background-color: #1E1E1E;
}

.lang-select-box a span {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.lang-select-box a.eng span{
    color: #fff;
}

.lang-select-box a span::before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../img/ico_lang.svg) no-repeat center;
    background-size: contain;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    margin-right: 15px;
}

.lang-select-box a.eng span::before {
    background-image: url(../img/ico_lang_white.svg);
}

.lang-select-box a:hover ::before,
.lang-select-box a:focus ::before,
.lang-select-box a:active ::before{
    background-image: url(../img/ico_lang_white.svg);
}

.lang-select-box a:after {
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    transition: all 0.4s;
    background: #004DD8;
}

.lang-select-box a:hover:after,
.lang-select-box a:focus:after,
.lang-select-box a:active:after {
    width: 100%;
    z-index: -1;
}

.lang-select-box a:hover span,
.lang-select-box a:focus span,
.lang-select-box a:active span{
    color: #fff;
    transition: all 0.4s;
}

/* 언어 선택 버튼 */

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-down .scroll-txt {
    font-size: 500;
    font-size: 18px;
}

.scroll-down.white .scroll-txt {
    color: white;
    font-size: 500;
    font-size: 18px;
}

.scroll-down img {
    margin-top: 12px;
    width: 17px;
    animation: scroll-arrow-ani .6s infinite linear alternate;
}

@keyframes scroll-arrow-ani {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(8px);
    }
}

/*header*/
header.hide {
    display: none;
}

header.fix {
    width: 100%;
    position: fixed;
    z-index: 12;
}

header.active::after {
    content: '';
    top: 0;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0))
}

header::after {
    content: '';
    top: 0;
    width: 100%;
    height: 0;
    position: absolute;
    z-index: -1;
    background: white;
    transition: 0s;
}

header.mobile-active::after {
    content: '';
    top: 0;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background: white;
    transition: .5s;
}

header.loading #logo-airbox path {
    fill: none;
}

header.black #logo-airbox path,
header.active #logo-airbox path {
    /* fill: #000; */
    fill: #52B6D2;
}

header .logo {
    margin-top: -16px;
}

header .inner {
    width: 1600px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 100px;
    align-items: center;
}

header .gnb-menu .depth01 {
    display: flex;
}

header .gnb-menu .depth01>li {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.eng header .gnb-menu .depth01>li:nth-of-type(2) {
    width: 194px;
}

.eng header.active .gnb-menu .depth01>li:nth-of-type(2) {
    width: 194px;
}

.eng header .gnb-menu .depth01>li:last-of-type {
    width: auto;
}

header .gnb-menu .depth01>li.language {
    justify-content: center;
}

header .gnb-menu .depth01>li:last-of-type {
    width: auto;
    padding-left: 40px;
}

header .gnb-menu .depth01>li>a {
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 38px 20px;
    color: white;
}

header.loading .gnb-menu .depth01>li>a,
header.loading .gnb-menu .depth01>li button {
    display: none;
}

header.black .gnb-menu .depth01>li>a,
header.active .gnb-menu .depth01>li>a {
    color: #121212;
}

header .gnb-menu .depth01>li:hover>a {
    font-weight: bold;
}

header .gnb-menu .depth01>li.active>a {
    font-weight: bold;
    position: relative;
}

header .gnb-menu .depth01>li.active>a::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #004DD8;
}

header .gnb-menu .depth02 {
    width: 100%;
    top: 100px;
    position: absolute;
    display: none;
}

header .gnb-menu .depth02 li a {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    margin-left: 58px;
}

.eng header .gnb-menu .depth02 li a {
    margin-left: 50px;
}

.eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
    margin-left: 52px;
}

header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
    margin-left: 64px;
}

.eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
    margin-left: 70px;
}

.eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
    margin-left: 60px;
}

header .gnb-menu .depth02 li a:hover {
    color: #004DD8;
}

header.loading .gnb-menu .depth01>li.shop>a {
    display: block;
}

header.black .gnb-menu .depth01>li.shop>a,
header.active .gnb-menu .depth01>li.shop>a {
    border: 1px solid black;
    color: #121212;
}

header .gnb-menu .depth01>li.shop>a {
    border: 1px solid white;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 28px 0;
    font-weight: bold;
    color: white;
}

header .gnb-menu .depth01>li.shop>a:hover {
    color: white;
    background-color: #004DD8;
    border: 1px solid white;
}

header .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 14px;
    justify-content: space-between;
    margin-top: -15px;
    display: none;
    z-index: 20;
    cursor: pointer;
}

header .mobile-menu-btn div {
    width: 20px;
    height: 2px;
    background-color: #fff;
}

header.black .mobile-menu-btn div,
header.mobile-active .mobile-menu-btn div {
    background-color: #121212;
}

header .mobile-menu-btn div:nth-of-type(2) {
    width: 16px;
}

header .language .current {
    width: 100%;
    height: 100px;
    position: relative;
    padding-right: 20px;
    color: white;
}

header .language .current a {
    color: white;
}

header.active .language .current a,
header.black .language .current a {
    color: #121212;
}

header .language .current svg {
    position: absolute;
    right: -6px;
    width: 22px;
    left: auto;
    top: 50%;
    transform: translate(0, -50%);
}

header .language .current svg rect {
    fill: white;
}

header.active .language .current svg rect,
header.black .language .current svg rect {
    fill: #121212;
}

header .language .lang-option {
    display: none;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 63%;
    transform: translateX(-50%);
    text-align: center;
}

header .language .lang-option.active {
    display: block;
    width: 80px;
    text-align: center;
}

header.active .language .lang-option a,
header.black .language .lang-option a {
    font-size: 18px;
    font-weight: 600;
    color: #121212;
}

header .language .lang-option a {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* loading */
.loading {
    background: transparent;
}

.loading-scroll {
    background: transparent;
}

@keyframes loading-ani-1 {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.loading svg {
    display: block;
    width: 1006px;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
}

.loading .loading-title {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

@keyframes logo-ani-1 {
    from {
        opacity: 0.5;
        stroke-dashoffset: 160;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes logo-ani-2 {
    from {
        opacity: 0.5;
        stroke-dashoffset: 55;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes logo-ani-3 {
    from {
        opacity: 0.5;
        stroke-dashoffset: 59;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes logo-ani-4 {
    from {
        opacity: 0.5;
        stroke-dashoffset: 210;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes logo-ani-5 {
    from {
        opacity: 0.5;
        stroke-dashoffset: 175;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

.ready .cls-1 {
    fill: #fff;
}

.ready .cls-2,
.ready .cls-3,
.ready .cls-4,
.ready .cls-5,
.ready .cls-6 {
    fill: none;
    stroke-linecap: round;
    stroke-miterlimit: 10;
}

.ready .cls-2 {
    stroke: #ffffff;
    stroke-dasharray: 160;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: logo-ani-1 1s;
}

.ready .cls-2,
.ready .cls-5 {
    stroke-width: 25px;
}

.cls-3,
.cls-4,
.cls-5,
.cls-6 {
    stroke: #ffffff;
}

.ready .cls-3 {
    stroke-width: 22px;
    stroke: #ffffff;
    stroke-dasharray: 55;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: logo-ani-2 1s;
}

.ready .cls-4 {
    stroke-width: 23px;
    stroke-dasharray: 59;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: logo-ani-3 1s;
}

.ready .cls-5 {
    stroke-dasharray: 210;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: logo-ani-4 1s;
}

.ready .cls-6 {
    stroke-width: 24px;
    stroke-dasharray: 175;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: logo-ani-5 1s;
}

.loading-scroll {
    position: relative;
}

.loading-scroll .loading-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-scroll .loading-title p {
    font-size: 100px;
    font-weight: bold;
    line-height: 125px;
    letter-spacing: 5px;
    text-align: center;
    opacity: 0;
}

.loading-scroll.on .loading-title p {
    opacity: 1;
}

.loading-scroll .loading-title p .white {
    color: white;
}

/* visual */
.visual {
    overflow: hidden;
}

.visual .inner {
    width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.visual .bg-title.top {
    opacity: .04;
    font-size: 300px;
    font-weight: 900;
    position: absolute;
    top: 0px;
}

.visual .bg-title.bottom {
    opacity: .04;
    font-size: 300px;
    font-weight: 900;
    position: absolute;
    bottom: -100px;
    right: 0;
}

.visual .visual-title {
    color: #004DD8;
    font-weight: 900;
    font-size: 60px;
}

.eng .visual .visual-title {
    font-size: 46px;
}

.visual .main-swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.visual .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.visual .swiper-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.visual .swiper-slide .inner {
    width: 1600px;
    margin: 0 auto;
    position: relative;
}

.visual .swiper-slide .right-title {
    position: absolute;
    right: 0;
}

.visual .sub_swiper .swiper-slide .current {
    font-size: 46px;
    font-weight: 900;
    opacity: .07;
    color: #000;
    margin-bottom: 20px;
}

.eng .visual .sub_swiper .swiper-slide .current {
    font-size: 38px;
    text-align: left;
}

.visual .sub_swiper .swiper-slide-active .current {
    opacity: 1;
    color: #121212;
}

.visual .swiper-slide .right-title li:last-of-type {
    margin-bottom: 0;
}

.visual .sub_swiper {
    position: absolute;
    right: 0;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 10;
    width: 50%;
    height: 370px;
    display: flex;
    align-items: center;
}

.eng .visual .sub_swiper {
    right: 20px;
}

.visual .sub_swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.visual .sub_swiper .swiper-slide .current {
    text-align: right;
    cursor: grab;
}

.visual .sub_swiper .swiper-container {
    height: 380px;
    margin-left: 470px;
}

.visual .sub_swiper .swiper-slide .current {
    text-align: right;
}

.visual .visual_nav {
    width: 1600px;
    margin: 0 auto;
}

.visual .visual_nav .button-wrap {
    width: 322px;
    position: absolute;
    z-index: 10;
    bottom: 200px;
}

.visual .visual_nav .button-wrap {
    font-size: 20px;
    font-weight: 500;
}

.visual .visual_nav .button-wrap .swiper-pagination {
    position: absolute;
    left: 0;
    text-align: left;
}

.visual .visual_nav .button-wrap .bold,
.visual .visual_nav .button-wrap .swiper-pagination-current {
    font-weight: 800;
    font-size: 22px;
}

.visual .swiper-button-prev {
    width: 16px;
    height: 16px;
    background-size: contain;
    background-image: url(../img/prev-btn.svg);
    left: auto;
    right: 40px;
    z-index: 20;
    top: -8px;
}

.visual .swiper-button-next {
    width: 16px;
    height: 16px;
    z-index: 20;
    top: -8px;
    background-size: contain;
    background-image: url(../img/next-btn.svg);
}

.progresss-bar {
    position: relative;
    width: 150px;
    height: 3px;
    background: #999;
    margin-left: 95px;
    margin-top: -23px;
}

.progress-bar-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 150px;
    height: 3px;
    background: #ccc;
    z-index: 9;
}

.swiper-hero-progress {
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0px;
    width: 0;
    height: 3px;
    background: black;
    z-index: 10;
}

.visual_nav .controll-btn {
    position: absolute;
    right: -20px;
    top: -34px;
    cursor: pointer;
    z-index: 20;
}

.visual_nav .controll-btn div {
    display: none;
}

.visual_nav .controll-btn div.active {
    display: block;
}

#fullpage > section {
    min-height: 100vh;
}
.mfp-wrap {
    position: fixed !important;
}

/* text-slide */
@keyframes text-slide-ani {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-1500px);
    }
}

.text-slide {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: linear-gradient(120deg, #007CF2, #33008B);
}

.text-slide div {
    position: absolute;
    width: 6224px;
    animation: text-slide-ani 26s infinite linear;
}

.text-slide .passion {
    top: 26%;
    animation: text-slide-ani 16s infinite linear;
}

.text-slide .innovation {
    top: 44%;
}

.text-slide .airlifestyle {
    top: 62%;
    animation: text-slide-ani 16s infinite linear;
}

.text-slide svg:hover #line path,
.text-slide svg:hover #line-2 path {
    fill: white;
}

.text-slide svg:hover #bgcolor path,
.text-slide svg:hover #bgcolor-2 path {
    fill: transparent;
    stroke: white;
}

.text-slide .innovation svg {
    transform: translateX(-400px);
}

.text-slide .airlifestyle svg {
    margin-bottom: 0;
    transform: translateX(-800px);
}

.text-slide div img {
    max-width: 6224px;
}


/* typification */

.typification {
    background-color: #000;
}

.typification .inner {
    width: 1600px;
    position: relative;
    margin: 0 auto;
}

.typification .img-box {
    transition: 1s;
    opacity: 0;
    transform: translateX(-200px);
}

.typification.on .img-box {
    opacity: 1;
    transform: translateX(0px);
}

.typification .text-box {
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(30%, -45%);
    z-index: 10;
}

.typification .text-box .small-title {
    color: white;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    transition: 1s .5s;
    opacity: 0;
    transform: translateY(40px);
}

.typification.on .text-box .small-title {
    opacity: 1;
    transform: translateY(0);
}

.typification .text-box .section-title {
    color: white;
    font-size: 60px;
    font-weight: 500px;
    transition: 1s .5s;
    opacity: 0;
    transform: translateY(40px);
}

.eng .typification .text-box .section-title {
    font-size: 46px;
}

.typification.on .text-box .section-title {
    opacity: 1;
    transform: translateY(0);
}

.typification .btn {
    transition: 1s .5s;
    opacity: 0;
    transform: translateY(20px);
}

.typification.on .btn {
    opacity: 1;
    transform: translateY(0px);
}

.typification .explore-btn {
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-weight: bold;
    transition: .5s;
}

.typification .explore-btn:hover {
    color: black;
    background-color: white;
}

.typification .bg-text {
    font-size: 280px;
    position: absolute;
    font-weight: bold;
    opacity: .7;
    bottom: -85px;
    right: -1.2%;
    transition: 1s .5s;
    opacity: 0;
    transform: translateX(200px);
}

.typification.on .bg-text {
    opacity: 1;
    transform: translateX(0);
}

/* protect */
.protect {
    background-color: #004DD8;
}

.protect .inner {
    width: 1600px;
    position: relative;
    margin: 0 auto;
}

.protect .img-box {
    transition: 1s;
    opacity: 0;
    transform: translateX(-200px);
}

.protect.on .img-box {
    opacity: 1;
    transform: translateX(0px);
}

.protect .text-box {
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(30%, -45%);
    z-index: 10;
}

.protect .text-box .small-title {
    color: white;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    transition: 1s .5s;
    opacity: 0;
    transform: translateY(40px);
}

.protect.on .text-box .small-title {
    opacity: 1;
    transform: translateY(0);
}

.protect .text-box .section-title {
    color: white;
    font-size: 60px;
    font-weight: 500px;
    transition: 1s .5s;
    opacity: 0;
    transform: translateY(40px);
}

.eng .protect .text-box .section-title {
    font-size: 46px;
}

.protect.on .text-box .section-title {
    opacity: 1;
    transform: translateY(0);
}

.protect .btn {
    transition: 1s .5s;
    opacity: 0;
    transform: translateY(20px);
}

.protect.on .btn {
    opacity: 1;
    transform: translateY(0px);
}

.protect .explore-btn {
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-weight: bold;
    transition: .5s;
}

.protect .explore-btn:hover {
    color: #004DD8;
    background-color: white;
}

.protect .bg-text {
    font-size: 280px;
    color: white;
    position: absolute;
    font-weight: bold;
    bottom: -85px;
    right: -0.5%;
    transition: 1s .5s;
    opacity: 0;
    transform: translateX(200px);
}

.protect.on .bg-text {
    opacity: .2;
    transform: translateX(0);
}

/* welcome */

.welcome {
    background-color: #F6F6F6;
    position: relative;
}

.welcome .fp-tableCell {
    opacity: 0;
}

.welcome.on .fp-tableCell {
    opacity: 1;
}

.welcome .inner {
    width: 1920px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.welcome .splitting .char {
    color: #004DD8;
}

.welcome .splitting .serif-title .char {
    color: #004DD8;
    font-family: 'Noto Serif Display', serif;
}



.welcome .sans-title {
    font-size: 140px;
    font-weight: 400;
    color: #004DD8;
    position: absolute;
    z-index: 10;
    line-height: 1.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1350px;
    opacity: 1;
    transition: 1s;
}

.welcome .sans-title .right-title {
    font-weight: 500;
    color: #004DD8;
    text-align: right;
    display: block;
}

@keyframes welcome-ani {
    from {
        transform: translate3d(0%, 50%, -50em) scale(.6);
        opacity: 0;
    }

    to {
        transform: translate3d(0%, 0%, 0em) scale(1);
        opacity: 1;
    }
}

.welcome .welcome-img.w-01.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 30;
}

.welcome .welcome-img.w-02.active {
    top: 50%;
    right: 30%;
    transform: translate(-50%, -50%) scale(2);
    z-index: 30;

}

.welcome .welcome-img.w-03.active {
    top: 50%;
    right: 30%;
    transform: translate(-50%, -50%) scale(2);
    z-index: 30;
}

.welcome .welcome-img.w-04.active {
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    z-index: 30;
}

.welcome .welcome-img.w-05.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    z-index: 30;
}

.welcome .welcome-img.w-06.active {
    bottom: 30%;
    right: 30%;
    transform: translate(-50%, -50%) scale(2);
    z-index: 30;
}

.welcome .welcome-img.w-01 {
    width: 317px;
    height: 317px;
    position: absolute;
    top: 10%;
    left: 6%;
    z-index: 1;
    transition: 1s;
}

.welcome.on .welcome-img img {
    width: 100%;
    height: auto;
    animation: welcome-ani 2s;
    transition: 1s;
}

.welcome .welcome-img img:hover {
    transform: scale(1.1);
}

.welcome .welcome-img.w-02 {
    width: 269px;
    height: 171px;
    position: absolute;
    top: 20%;
    right: 22%;
    z-index: 11;
    transition: 1s;
}

.welcome .welcome-img.w-03 {
    width: 248px;
    height: 211px;
    position: absolute;
    top: 9%;
    right: 0%;
    z-index: 1;
    transition: 1s;
}

.welcome .welcome-img.w-04 {
    width: 244px;
    height: 119px;
    position: absolute;
    bottom: 2%;
    left: 0%;
    z-index: 1;
    transition: 1s;
}

.welcome .welcome-img.w-05 {
    width: 265px;
    height: 196px;
    position: absolute;
    top: 73%;
    left: 22%;
    z-index: 1;
    transition: 1s;
}

.welcome .welcome-img.w-06 {
    width: 299px;
    height: 196px;
    position: absolute;
    bottom: 10%;
    right: 8%;
    z-index: 1;
    transition: 1s;
}


/* contact */
.contact .fp-tableCell {
    display: flex;

}

.contact .get-in-touch {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}

.contact.on .get-in-touch {
    opacity: 1;
    transform: translateY(0);
}

.contact .get-in-touch .small-sans {
    font-size: 40px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: 520px;
}

.contact .get-in-touch .small-sans .serif {
    font-style: italic;
}

.contact .get-in-touch form {
    width: 580px;
    margin-left: auto;
    margin-right: 190px;
    position: relative;
}

.contact .get-in-touch form label {
    font-size: 18px;
    position: absolute;
    left: 0;
    font-weight: 500;
    color: #666666;
    width: 100%;

}


.contact .get-in-touch form label span {
    transition: .3s;
}

form div {
    position: relative;
    width: 100%;
    margin: 0 auto 50px;
}

form .message {
    margin: 0 auto;
}

form div input {
    box-sizing: border-box;
    padding: 20px 0;
    width: 100%;
    height: 100%;
    border: 0 none;
    color: #595f63;
    outline: none;
    transition: .3s;
}


.contact .get-in-touch form input,
.contact .get-in-touch form textarea {
    width: 100%;
    padding-top: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact .get-in-touch form textarea {
    margin-bottom: 20px;
}

.contact .get-in-touch form input:focus,
.contact .get-in-touch form textarea:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid #004DD8;
}

form textarea:focus+label span,
form textarea:valid+label span,
form input:focus+label span,
form input:valid+label span {
    transform: translateY(-150%);
    position: absolute;
    font-size: 14px;
    color: #004DD8;
}

.contact form .blue {
    color: #004DD8;
    font-weight: 600;
    border-bottom: 1px solid #004DD8;
}

input#agree {
    margin-bottom: 0;
    display: inline-block;
    border-bottom: none;
    width: 58px;
}

input[type="checkbox"] {
    display: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

}

input[type="checkbox"]::after {
    background-image: url(../img/toggle-check.png);
    top: 0px;
    content: '';
    font-size: 25px;
    width: 54px;
    height: 26px;
    text-align: center;
    position: absolute;
    cursor: pointer;
}

input[type="checkbox"]:checked::after {

    background-image: url(../img/click.png);
    content: '';
    font-size: 25px;
    width: 54px;
    height: 26px;
    text-align: center;
    position: absolute;
    top: 0px;
    cursor: pointer;
}

.contact form button {
    display: block;
    width: 134px;
    height: 56px;
    background-color: white;
    border: 1px solid #000;
    font-weight: 800;
    font-size: 24px;
    margin: 10px 0px 0px auto;
    transition: .5s;
    cursor: pointer;
}

.contact form button:hover {
    color: white;
    background-color: #000;
}

.contact-us {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #616465;
}

.contact .contact-us .small-sans {
    font-size: 40px;
    color: white;
    margin-bottom: 90px;
    margin-left: 190px;
    margin-right: auto;
    opacity: 0;
    transition: 1s;
    transform: translateY(20px);
}

.contact.on .contact-us .small-sans {
    opacity: 1;
    transform: translateY(0);
}

.contact .contact-us .small-sans .serif {
    font-style: italic;
    color: white;
}

.contact .contact-us .contact-list {
    width: 580px;
    margin-left: 190px;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}

.contact.on .contact-us .contact-list {
    opacity: 1;
    transform: translateY(0px);
}

.contact-us .contact-list li {
    padding: 32px 0;
    border-top: 1px solid white;
}

.contact-us .contact-list li .list-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    margin-bottom: 16px;
}

.contact-us .contact-list li .list-title img {
    margin-right: 10px;
}

.contact-us .contact-list li:last-of-type {
    border-bottom: 1px solid white;
}

.contact-us .contact-list li .list-text {
    color: white;
    font-size: 22px;
    padding-left: 26px;
}


/*footer*/
footer {
    background-color: #000;
}

footer .inner {
    width: 1600px;
    padding: 60px 0 86px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

footer .footer-left {
    width: 384px;
}

footer .link-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin: 20px 0px 10%;
}

footer .link-list li {
    width: 50%;
    margin-bottom: 18px;
}

footer .link-list li a {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

footer .link-list li a:hover img {
    transform: translate(3px, -3px);
}

footer .link-list li a img {
    transition: .5s;
    margin-left: 8px;
    width: 18px;
    height: 18px;
}

footer .footer-right {
    width: 735px;
}

footer .footer-right address strong {
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

footer .footer-right address p {
    color: #666;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 6px;
    margin-right: 41px;
    position: relative;
}

footer .footer-right address p::after {
    content: '';
    display: block;
    position: absolute;
    right: -21px;
    background-color: #333;
    width: 1px;
    height: 13px;
    top: 4px;
}

footer .footer-right address p:last-of-type::after {
    display: none;
}

footer .footer-right address p:nth-of-type(3) {
    margin-right: 0;
}

footer .footer-right address p:nth-of-type(3)::after,
footer .footer-right address p:nth-of-type(5)::after {
    display: none;
}

.eng footer .footer-right address p:nth-of-type(2)::after,
.eng footer .footer-right address p:nth-of-type(4)::after {
    display: none;
}

footer .footer-right .info-list {
    margin: 20px 0;
    display: flex;
}

footer .footer-right .info-list li a {
    font-size: 18px;
    color: #666;
    margin-right: 41px;
    position: relative;
}

footer .footer-right .info-list li a:hover {
    color: #999;
}

footer .footer-right .info-list li a::after {
    content: '';
    display: block;
    position: absolute;
    right: -21px;
    background-color: #333;
    width: 1px;
    height: 13px;
    top: 4px;
}

footer address a {
    color: #999;
}

footer .footer-right .info-list li:last-of-type a::after {
    display: none;
}

footer .footer-right .info-list .bold a {
    font-weight: 600px;
    color: white;
}

footer .footer-right .info-list .bold a:hover {
    color: white;
    font-weight: bold;
}

footer .footer-right .copyright {
    color: #666;
    font-size: 18px;
    margin-bottom: 48px;
}

footer .footer-right .sns {
    display: flex;
}

footer .footer-right .sns li {
    margin-right: 10px;
}

/*fixed-btn*/
.fixed-top-btn {
    position: fixed;
    right: 50px;
    bottom: 60px;
    z-index: 5;
    cursor: pointer;
    display: none;
}





.layer-pop-contact {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.layer-pop-contact.open {
    display: block;
}

.layer-pop-contact .pop-cont {
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 580px;
    transform: translate(-50%, -50%);
    height: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
}

.layer-pop-contact .pop-cont .tit {
    padding: 0 0 10px;
    border-bottom: 2px solid #000;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.layer-pop-contact .pop-cont .close-pop {
    margin-top: 40px;
    display: inline-block;
    color: white;
    background-color: #000;
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: bold;
}

.layer-pop-contact .pop-cont .grey-box {
    background: #f6f6f6;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
}

.layer-pop-contact .pop-cont .box {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layer-pop-contact .pop-cont .box p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 27px;
    color: #000;
}

.layer-pop-contact .pop-cont .box ul {
    margin-top: 10px;
}

.layer-pop-contact .pop-cont .box ul li {
    padding-left: 20px;
    text-indent: -20px;
    font-size: 18px;
    line-height: 24px;
}

.layer-pop-contact .pop-cont .box ul li~li {
    margin-top: 10px;
}


.layer-pop-contact .btn-wrap {
    margin-top: 20px;
}

.layer-pop-contact .btn-wrap a,
.layer-pop-contact .btn-wrap button {
    height: 56px;
    padding: 14px 25px 12px;
}


/* 애니메이션 */
@-webkit-keyframes ani_fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animated {
    visibility: hidden;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
}

.animated.delay-1s {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.animated.delay-2s {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.animated.delay-3s {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.animated.delay-4s {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.animated.delay-5s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.fadeInUp {
    visibility: visible;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}


/* 반응형 */
@media screen and (max-width: 1920px) {
    .welcome .inner {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1790px) {
    .eng .visual .sub_swiper .swiper-slide .current {
        font-size: 30px;
        text-align: left;
    }
}

@media screen and (max-width: 1600px) {
    header .inner {
        width: 100%;
        padding: 0 20px;
    }

    header .gnb-menu .depth01>li {
        width: 160px;
    }

    header .language .lang-option {
        left: 54%;
    }

    header .gnb-menu .depth02 li a {
        margin-left: 46px;
    }

    header .gnb-menu .depth01>li:last-of-type {
        padding-left: 20px;
    }

    .eng header .gnb-menu .depth02 li a {
        margin-left: 40px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
        margin-left: 42px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 60px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 50px;
    }

    .visual .inner {
        width: 100%;
        padding: 0 5%;
    }

    .eng .visual .inner {
        padding: 0 3%;
    }

    .visual .swiper-slide img {
        width: 40%;
    }

    .visual .sub_swiper {
        width: 57%;
    }

    .visual .visual_nav {
        width: 100%;
        padding: 0 5%;
    }

    .eng .visual .visual_nav {
        padding: 0 3%;
    }

    .eng .visual .sub_swiper .swiper-slide .current {
        font-size: 28px;
    }

    .typification .inner {
        width: 100%;
        padding: 0 20px;
    }

    .protect .inner {
        width: 100%;
        padding: 0 20px;
    }

    .welcome .sans-title {
        font-size: 100px;
        width: 70%;
    }

    .contact .get-in-touch .small-sans {
        margin-right: 400px;
        margin-left: auto;
    }

    .contact .get-in-touch form {
        margin-right: 10%;
    }

    .contact .contact-us .small-sans {
        margin-left: 10%;
    }

    .contact .contact-us .contact-list {
        margin-left: 10%;
    }

    footer .inner {
        width: 100%;
        padding: 60px 20px 86px;
    }
}

@media screen and (max-width: 1400px) {
    header .gnb-menu .depth01>li {
        width: 145px;
    }

    header .gnb-menu .depth02 li a {
        margin-left: 43px;
    }

    header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 48px;
    }

    .eng header .gnb-menu .depth02 li a {
        margin-left: 30px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 53px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 40px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
        margin-left: 34px;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 44px;
    }

    .visual .visual-title {
        font-size: 46px;
    }
    .eng .visual .visual-title {
        font-size: 42px;
    }

    .visual .sub_swiper .swiper-slide .current {
        font-size: 32px;
    }

    .visual .sub_swiper {
        width: 23%;
    }

    .visual .sub_swiper .swiper-container {
        margin-left: 0;
    }

    .loading svg {
        width: 80%;
    }

    .loading-scroll .loading-title p {
        font-size: 6vw;
        line-height: 1.3;
    }



    .typification .img-box img {
        width: 60%;
    }

    .typification .text-box {
        left: 32%;
    }

    .typification .text-box .small-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .typification .text-box .section-title {
        font-size: 46px;
    }

    .typification .explore-btn {
        width: 80px;
        height: 80px;
        font-size: 16px;
    }

    .typification .bg-text {
        font-size: 200px;
        bottom: -50px;
        right: auto;
        left: 0;
    }

    .protect .img-box img {
        width: 60%;
    }

    .protect .text-box {
        left: 32%;
    }

    .protect .text-box .small-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .protect .text-box .section-title {
        font-size: 46px;
    }

    .protect .explore-btn {
        width: 80px;
        height: 80px;
        font-size: 16px;
    }

    .protect .bg-text {
        font-size: 200px;
        bottom: -50px;
    }

    .contact .get-in-touch .small-sans {
        margin-left: 4%;
        margin-right: auto;

    }

    .contact .get-in-touch form {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact .contact-us .contact-list {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact form button {
        margin: 60px 0 0 auto;
    }

    .contact .contact-us .small-sans {
        margin-left: 4%;
    }

    footer .f-logo {
        width: 160px;
    }
}

@media screen and (max-width: 1300px) {

    .eng .typification .text-box .section-title,
    .eng .protect .text-box .section-title {
        font-size: 38px;
    }
}

@media screen and (max-width: 1200px) {

    .lang-select-box a{
        padding: 15px 30px;
    }

    .lang-select-box a span::before {
        width: 26px;
        height: 26px;
        margin-right: 10px;
    }
    
    .lang-select-box a span {
        font-size: 20px;
    }

    .eng header .gnb-menu .depth02 li a {
        margin-left: 0;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a,
    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 0;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(3) .depth02 li a {
        margin-left: 0;
    }

    header .gnb-menu {
        width: calc(100% - 40px);
        position: absolute;
        top: 80px;
    }

    header .logo {
        margin-top: 0;
    }

    header .logo svg {
        width: 130px;
    }

    header .inner {
        height: 80px;
    }

    header.active::after {
        background: white;
    }

    header .mobile-menu-btn {
        display: flex;
        margin-top: 6px;
    }

    header .language .current {
        height: 80px;
    }

    header .gnb-menu .depth01 {
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        position: relative;
        display: none;
    }

    header.mobile-active .gnb-menu .depth01 {
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        position: relative;
        display: flex;
    }

    .eng header.active .gnb-menu .depth01>li:nth-of-type(2),
    .eng header.active .gnb-menu .depth01>li,
    header .gnb-menu .depth01>li {
        width: 100%;
    }

    .eng header.active .gnb-menu .depth01>li:nth-of-type(6),
    header .gnb-menu .depth01 li:nth-of-type(6) {
        border-bottom: 0;
    }

    .eng header.active .gnb-menu .depth01>li:last-of-type,
    header .gnb-menu .depth01>li:last-of-type {
        padding-left: 0;
        position: absolute;
        width: auto;
        top: -76px;
        right: 44px;
        border-bottom: 0;
    }

    header .gnb-menu .depth01>li>a {
        position: relative;
        padding: 20px 0;
    }

    header .gnb-menu .depth01>li>a::after {
        position: absolute;
        content: "+";
        clear: both;
        width: 20px;
        height: 20px;
        font-size: 18px;
        right: -24px;
    }

    header .gnb-menu .depth01>li:nth-of-type(2)>a::after,
    header .gnb-menu .depth01>li:nth-of-type(6)>a::after {
        display: none;
    }

    header .language .lang-option {
        left: 6px;
        transform: translateX(0);
    }

    header .gnb-menu .depth01>li>a {
        padding: 20px 0;
    }

    header .gnb-menu .depth02>li a {
        padding-bottom: 20px;
    }

    header .gnb-menu .depth02>li:first-of-type a {
        padding-top: 20px;
    }

    header .gnb-menu .depth02 {
        position: relative;
        top: 0;
        height: auto !important;
    }

    header .gnb-menu .depth02 li a {
        margin-left: 0;
        margin-bottom: 0;
        text-align: center;
        background-color: #f6f6f6;
    }

    header .gnb-menu .depth01 li:nth-of-type(4) .depth02 li a {
        margin-left: 0;
    }
    .visual .visual-title,
    .eng .visual .visual-title {
        font-size: 36px;
    }

    .eng .visual .swiper-slide img {
        width: 36%;
    }

    .eng .visual .sub_swiper {
        width: 26%;
    }

    footer .inner {
        flex-wrap: wrap;
    }

    footer .footer-left,
    footer .footer-right {
        width: 100%;
    }

    footer .link-list {
        margin: 40px 0;
    }

    footer .link-list li {
        width: 300px;
    }
}

@media screen and (max-width: 980px) {

    .visual .inner {
        justify-content: center;
        align-items: flex-start;
        padding: 0 20px;
        padding-top: 10%;

    }
    
    .eng .visual .inner {
        padding: 15% 3%;
    }

    .visual .visual_nav {
        padding: 0 20px;
    }

    .visual .visual-title {
        font-size: 46px;
        text-align: center;
    }

    .eng .visual .swiper-slide img,
    .visual .swiper-slide img {
        top: 44%;
        width: 58%;
    }

    .eng .visual .sub_swiper,
    .visual .sub_swiper {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        bottom: 40px;
        height: 280px;
    }

    .visual .sub_swiper .swiper-container {
        margin-left: auto;
        height: 280px;
    }

    .visual .sub_swiper .swiper-slide .current {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .eng .visual .sub_swiper .swiper-slide .current {
        text-align: center;
    }

    .visual .scroll-down {
        display: none;
    }

    .visual .visual_nav .button-wrap {
        bottom: 20px;
    }

    .eng .typification .text-box .small-title,
    .eng .protect .text-box .small-title {
        font-size: 16px;
    }

    .eng .typification .text-box .section-title,
    .eng .protect .text-box .section-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 980px) {
    .loading-scroll .loading-title {
        width: 70%;
    }

    .loading-scroll .loading-title p {
        font-size: 7vw;
    }

    .visual .visual_nav .button-wrap .swiper-pagination {
        font-size: 18px;
    }

    .visual .visual_nav .button-wrap .bold,
    .visual .visual_nav .button-wrap .swiper-pagination-current {
        font-size: 18px;
    }

    .progresss-bar {
        margin-left: 80px;
    }

    .visual .swiper-button-prev {
        right: 55px;
    }

    .visual .swiper-button-next {
        right: 25px;
    }

    .visual .controll-btn {
        right: -5px;
    }

    .visual .sub_swiper .swiper-slide .current {
        font-size: 28px;
        margin-bottom: 0px;
    }

    .visual .sub_swiper {
        height: 250px;
        bottom: 80px;
    }

    .visual .sub_swiper .swiper-container {
        height: 250px;
    }

    .eng .visual .visual-title,
    .visual .visual-title {
        font-size: 38px;
    }

    .typification.on .img-box {
        transform: translate(0px, -120px);
    }

    .typification .img-box {
        transform: translate(0px, -40px);
    }

    .typification .img-box img {
        display: block;
        margin-left: auto;
        width: 70%;
    }

    .typification .text-box {
        left: 20px;
        transform: translate(0, -50px);
    }

    .protect.on .img-box {
        transform: translate(0px, -120px);
    }

    .protect .img-box {
        transform: translate(0px, -40px);
    }

    .protect .img-box img {
        display: block;
        margin-left: auto;
        width: 70%;
    }

    .protect .text-box {
        left: 20px;
        transform: translate(0, -50px);
    }

    .welcome .inner {
        overflow: hidden;
    }

    .welcome .welcome-img.w-01,
    .welcome .welcome-img.w-02,
    .welcome .welcome-img.w-03,
    .welcome .welcome-img.w-04,
    .welcome .welcome-img.w-05,
    .welcome .welcome-img.w-06 {
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        bottom: auto;
        right: auto;
        transition: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .welcome .welcome-img.w-02 {
        z-index: 1;
    }

    .welcome.on .welcome-img img {
        width: auto;
        height: 300px;
        animation: none;
    }

    .welcome .welcome-img {
        opacity: 0;
    }

    .welcome.on .welcome-img.w-01 {
        transition: 1s .2s;
        opacity: 1;
        background-color: #f6f6f6;
    }

    .welcome.on .welcome-img.w-02 {
        transition: 1s 2.2s;
        opacity: 1;
        background-color: #f6f6f6;
    }

    .welcome.on .welcome-img.w-03 {
        transition: 1s 4.2s;
        opacity: 1;
        background-color: #f6f6f6;
    }

    .welcome.on .welcome-img.w-04 {
        transition: 1s 6.2s;
        opacity: 1;
        background-color: #f6f6f6;
    }

    .welcome.on .welcome-img.w-05 {
        transition: 1s 8.2s;
        opacity: 1;
        background-color: #f6f6f6;
    }

    .welcome.on .welcome-img.w-06 {
        transition: 1s 10.2s;
        opacity: 1;
        background-color: #f6f6f6;
    }

    .welcome .welcome-img img:hover {
        transform: scale(1);
    }

    .welcome .sans-title {
        font-size: 10vw;
        width: 90%;
        top: 32%;
    }
}

@media screen and (max-width: 860px) {
    input#agree {
        display: block;
        margin-bottom: 20px;
    }

    .contact form button {
        margin: 80px 0 0 auto;
    }

    .eng .visual .sub_swiper{
        bottom: 90px;
    }
    .eng .visual .swiper-slide img {
        width: 70%;
    }
    .visual .swiper-slide img {
        width: 80%;
        top: 43%;
    }
    
}



@media screen and (max-height: 900px) and (min-width: 1000px) {
    header .inner {
        height: 85px;
    }

    .visual .visual_nav .button-wrap {
        bottom: 150px;
    }

    .welcome .sans-title {
        width: 70%;
        font-size: 88px;
    }

    .welcome .welcome-img.w-02 {
        top: 17%;
    }


    .contact .contact-us .small-sans {
        margin-bottom: 30px;
    }

    .contact .get-in-touch .small-sans {
        margin-bottom: 30px;
    }

    .contact .get-in-touch form textarea {
        height: 120px;
    }

    .contact-us .contact-list li {
        padding: 20px 0;
    }

    form div input {
        padding: 15px 0;
    }

    form div {
        margin: 0 auto 20px;
    }

    form textarea:focus+label span,
    form textarea:valid+label span,
    form input:focus+label span,
    form input:valid+label span {
        transform: translateY(-80%);
    }

    .loading svg {
        width: 70%;
    }

    .fixed-top-btn {
        bottom: 40px;
    }

    .text-slide .passion {
        top: 20%;
    }

    .text-slide .innovation {
        top: 44%;
    }

    .text-slide .airlifestyle {
        top: 68%;
    }

    .welcome .welcome-img.w-03 {
        top: 12%;
    }

    .welcome .welcome-img.w-01 {
        top: 12%;
    }

    .welcome .welcome-img.w-06 {
        bottom: 10%;
    }
}



@media screen and (min-height: 1170px) and (max-width: 1200px) {

    .visual .swiper-slide img {
        width: 80%;
    }

    .visual .inner {
        padding-top: 160px;
    }

    .visual .sub_swiper {
        bottom: 127px;
    }
}

@media screen and (max-width: 768px) {

    .loading svg {
        top: 40%;
    }

    .lang-select-box {
        flex-direction: column;
        gap: 15px;
        top: calc(40% + 70px);
        transform: translate(-50%, calc(-40% + 70px));
        margin-top: 2em;
    }

    .lang-select-box a span::before {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .lang-select-box a span {
        font-size: 18px;
    }

    header .inner{
        height: 60px;
    }
    header .language .current{
        height: 60px;
    }
    .visual .sub_swiper{
        bottom: 90px;
    }
    .notice p {
        display: none;
    }

    .eng header .gnb-menu .depth02 li a {
        margin-left: 0;
    }

    .eng header .gnb-menu .depth01 li:nth-of-type(5) .depth02 li a {
        margin-left: 0;
    }

    .visual .inner {
        padding-top: 0px;
    }

    .eng .visual .inner {
        padding: 0% 0%;
        padding-top: 0px;
    }
    .visual .visual-title {
        margin-top: 90px;
    }

    .eng .visual .visual-title {
        margin-top: 90px;
        font-size: 36px;
    }
    .visual .swiper-slide img {
        width: 80%;
        top: 44%;
    }

    .visual .bg-title.top {
        font-size: 200px;
        top: -50px;
        left: 0;
    }

    .visual .bg-title.bottom {
        font-size: 200px;
        right: auto;
        left: 0;
    }

    .text-slide div {
        width: auto;
    }

    .text-slide .passion {
        top: 28%;
    }

    .text-slide .airlifestyle {
        top: 60%;
    }

    .text-slide .passion svg {
        transform: translateX(-600px) scale(.7);
    }

    .text-slide .innovation svg {
        transform: translateX(-800px) scale(.7);
    }

    .typification .text-box .small-title,
    .protect .text-box .small-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .typification .text-box .section-title,
    .protect .text-box .section-title {
        font-size: 30px;
    }

    .text-slide .airlifestyle svg {
        transform: translateX(-1800px) scale(.7);
    }

    .contact .fp-tableCell {
        flex-wrap: wrap;
        height: auto !important;
    }

    .contact .get-in-touch {
        width: 100%;
        padding: 100px 0;
    }

    .contact-us {
        width: 100%;
        padding: 100px 0;
    }

    .contact-us .contact-list li .list-text {
        font-size: 18px;
    }

    footer .footer-right address p {
        margin-right: 0;
        display: block;
    }

    footer .footer-right address p::after {
        display: none;
    }

    footer address a {
        display: block;
    }

    footer .footer-right .info-list {
        margin: 30px 0;
    }

    footer .footer-right .info-list li a {
        margin-right: 21px;
    }

    footer .footer-right .info-list li a::after {
        display: none;
    }

    .fixed-top-btn {
        right: 20px;
        bottom: 20px;
    }

    .fixed-top-btn svg {
        width: 50px;
    }

    .contact form button {
        width: 100%;
    }

    .layer-pop-contact {
        position: absolute;
        touch-action: none;
        z-index: 50;
    }

    .layer-pop-contact .pop-cont {
        top: 100px;
        left: 0;
        transform: translate(0, 0);
        z-index: 100;
    }
}

@media screen and (max-height: 900px) and (max-width: 480px) {
    .welcome .welcome-img.w-03 {
        top: 65%;
    }

    .welcome .welcome-img.w-02 {
        top: 65%;
    }

}

@media screen and (max-width: 480px) {

    .lang-select-box {
        margin-top: .5em;
        gap: 20px;
    }

    header .logo svg {
        width: 110px;
    }
    header .mobile-menu-btn{
        margin-top: 0;
    }
    .visual .sub_swiper{
        bottom: 75px;
    }
    

    .eng .visual .sub_swiper .swiper-slide .current {
        font-size: 24px;
    }

    .eng .visual .sub_swiper {
        height: 220px;
        bottom: 70px;
    }

    .eng .visual .sub_swiper .swiper-container {
        height: 220px;
    }

    section {
        height: 760px !important;
    }

    .fp-tableCell {
        height: 760px !important;
    }

    section.loading {
        height: calc(var(--vh, 1vh) * 100) !important;
    }

    section.loading .fp-tableCell {
        height: calc(var(--vh, 1vh) * 100) !important;
    }

    .loading-scroll .loading-title {
        width: 90%;
    }

    .loading-scroll .loading-title p {
        font-size: 40px;
    }

    .progresss-bar {
        width: 100px;
    }

    .visual .visual_nav .button-wrap {
        left: 50%;
        transform: translateX(-50%);
    }

    .eng .visual .swiper-slide img{
        width: 80%;
        top: 43%;
    }
    
    .visual .swiper-slide img{
        width: 80%;
        top: 40.5%;
    }

    .typification .text-box,
    .protect .text-box {
        z-index: 10;
    }

    .typification .bg-text,
    .protect .bg-text {
        z-index: 0;
        right: auto;
    }

    footer .footer-right .info-list {
        flex-wrap: wrap;
    }

    footer .footer-right .info-list li {
        width: 100%;
        margin-bottom: 10px;
    }

    footer .footer-right .info-list li:last-of-type {
        margin-bottom: 0;
    }

    footer .footer-right .info-list li a {
        display: block;
    }
}