/* font 크로스브라우징 */
/* @font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 100;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.otf) format('opentype');}
@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 300;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.otf) format('opentype');}
@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 400;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format('opentype');}
@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 500;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf) format('opentype');}
@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 700;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) format('opentype');}
@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 900;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.otf) format('opentype');} */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
::-moz-selection {
    background: #fa5dbc;
}
::selection {
    background: #fa5dbc;
}
.bg-white {background:#FFF}
.bg-deepbluegray {background:#444757}
.z-idx0 {z-index:0}
.z-idx1 {z-index:1}
.z-idx2 {z-index:2}
.color-sky {color:#0082EF}
.color-blue {color:#0062F1}
.color-orange {color:#FF6F00}
.color-purple {color:#823FE4}
.color-gray {color:#3A3A3A}
.color-brown {color:#8E5406}
.color-red {color:#E94343}

/* animation keyframe */
.rotate_30 {
    animation: rotate_30 1s linear infinite alternate;
}
.rotate_360 {
    animation: rotate_360 4s linear infinite;
}
.rotatey_360 {
    animation: rotateY_360 2s linear infinite;
}
.right_30 {
    animation: right_30 2s linear infinite alternate;
}
.scale_1 {
    animation: scale_1 1s linear infinite alternate;
}
.opct1 {
    animation: opct1 1s linear infinite alternate;
}
.opct2 {
    animation: opct1 0.8s linear infinite alternate;
}
.opct3 {
    animation: opct1 1.8s linear infinite alternate;
}
.scale1_right15 {
    animation: scale1_right15 1.8s linear infinite alternate;
}
.shake {
    animation: .8s shake infinite alternate;
}
.active.ani-slider {
    background-position-x: 0 !important;
    transition: 0.3s;
}
.active.ani-slider .mask.ani-slider {
    background-position-x: 0 !important;
    transition: 1s;
}

@keyframes rotate_30 {
    0% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(15deg);
    }
}
@keyframes rotate_360 {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotateY_360 {
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes right_30 {
    from {
        margin-left:0;
    }
    to {
        margin-left:30px;
    }
}
@keyframes scale_1 {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}
@keyframes scale1_right15 {
    from {
        transform: scale(0.9);
        margin-left: -10px;
    }
    to {
        transform: scale(1);
        margin-left: 10px;
    }
}
@keyframes opct1 {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}
@keyframes shake {
    0% { transform: skewX(-5deg); }
    5% { transform: skewX(5deg); }
    10% { transform: skewX(-5deg); }
    15% { transform: skewX(5deg); }
    20% { transform: skewX(0deg); }
    100% { transform: skewX(0deg); }  
}
@-webkit-keyframes scroll-down-line {
    0% {
        transform-origin: 50% 100%;
        transform: scaleY(1);
    }
    50% {
        transform-origin: 50% 100%;
        transform: scaleY(0);
    }
    50.0001% {
        transform-origin: 50% 0;
        transform: scaleY(0);
    }
    to {
        transform-origin: 50% 0;
        transform: scaleY(1);
    }
}
@keyframes scroll-down-line {
    0% {
        transform-origin: 50% 100%;
        transform: scaleY(1);
    }
    50% {
        transform-origin: 50% 100%;
        transform: scaleY(0);
    }
    50.0001% {
        transform-origin: 50% 0;
        transform: scaleY(0);
    }
    to {
        transform-origin: 50% 0;
        transform: scaleY(1);
    }
}

html, body {
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    font-size: 14px;
    font-weight: 300;
    word-break: keep-all;
    /* cursor: url("../assets/img/icons/icon-passion.png"), auto; */
}

ol li,
ul li,
p {
    /* font-family: 'Noto Sans KR', sans-serif; */
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif; 
}
ol,
ul,
p {
    margin:0;
    padding:0;
}
p,
span,
em {
    word-break: keep-all;
} 

.ir-img {
    text-indent: -9999px;
    font-size: 0;
}
.fsz-14 {
    font-size: 14px;
}
.fsz-16 {
    font-size: 16px;
}
.fsz-18 {
    font-size: 18px;
}
.fsz-20 {
    font-size: 20px;
}
.fsz-24 {
    font-size: 24px;
}
.fsz-30 {
    font-size: 30px;
}
.fsz-36 {
    font-size: 36px;
}
.fsz-54 {
    font-size: 54px;
}
.fsz-60 {
    font-size: 60px;
}
.fsz-70 {
    font-size: 70px;
}
.fwt-500 {
    font-weight: 500;
}
.fwt-600 {
    font-weight: 600;
}
.fwt-700 {
    font-weight: 700;
}
.lh-1 {
    line-height: 1;
}
.lh-13 {
    line-height: 1.3;
}
.lh-15 {
    line-height: 1.5;
}
.lh-18 {
    line-height: 1.8;
}
.lh-20 {
    line-height: 2;
}
.txt-shadow {
    text-shadow: 0 0 10px #000;
}
.m-br {
    display: none;
}
.rounded20 {
    border-radius: 20px;
}
.modal-content {
    border:0;
    box-shadow: none;
}
.modal-body {
    max-height: 50vh;
}
.select-st1 {
    border:2px solid #B3B7D1;
    border-radius: 10px;
    background: url(../assets/img/icons/icon-select1.png) no-repeat right 20px center;
    color: #B3B7D1;
    padding: 7px 24px;
    -webkit-appearance: none; /* 네이티브 외형 감추기 */ 
    -moz-appearance: none; 
    appearance: none;
    position: relative;
}
.select-st1:focus {
    outline:none;
}
.btn, .btn:hover {
    color: #FFF;
}
.btn:not(:disabled):not(.disabled).active:focus, .btn:not(:disabled):not(.disabled):active:focus {
    box-shadow:unset;
}
.btn-deepbluegray {
    border-radius: 10px;
    border:0;
    background:linear-gradient(#4E5265, #444757);
    box-shadow: -3px -3px 6px rgba(255,255,255,0.1);
    box-shadow: 3px 3px 6px rgba(0,0,0,0.5),-3px -3px 6px rgba(255,255,255,0.1);
}
.btn-deepbluegray:hover {
    background:linear-gradient(#444757, #4E5265);
}
.btn-deepbluegray:not(:disabled):not(.disabled).active:focus, .btn-deepbluegray:not(:disabled):not(.disabled):active:focus {
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5), inset -3px -3px 7px rgba(255,255,255,0.1);
}
.btn-top {
    position: fixed;
    right: 3vw;
    bottom: 5vh;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-center-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.align-start-between {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.align-center-end {
    display: flex;
    align-items: center;
    justify-content: end;
}
.align-center-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.align-top-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ani-to-l {
    left: -100% !important;
    transition: 15s;
    transition-timing-function: linear;
}
.ani-to-r {
    left: 100% !important;
    transition: 15s;
    transition-timing-function: linear;
}
.border-light {
    border-color:#eff0f5 !important;
}
.fa-dot-circle:before {
    font-size: 5px;
    line-height: 1.7;
    vertical-align: top;
    margin-right: 8px;
}
.navbar-brand img {
    height: 35px;
}
.header-global {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
/* nav */
.select_lang .dropdown-menu {
    min-width: 120px;
    right: 1rem;
}
.select_lang .dropdown-item {
    position:relative;
    padding-left:46px;
}
.select_lang .dropdown-item::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 1rem;
}
.lang-ko .dropdown-item::before {
    background: url('../assets/img/global/icon-ko.png') no-repeat left;
    background-size:contain;
}
.lang-en .dropdown-item::before {
    background: url('../assets/img/global/icon-en.png') no-repeat left;
    background-size:contain;
}
section.scroll {
    /* min-height: 100vh; */
}
section .tit-box {
}
section .tit-box h2 {
    margin-bottom: 24px;
}

.slider .carousel-item {
    height: 100vh;
}

.navbar-transparent {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    position: fixed;
}
.navbar .navbar-nav .nav-link {
    position: relative;
    font-size: 16px;
    color: rgba(0,0,0,0.6);
}
.navbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 5px;
    background:linear-gradient(to right, #0059FF, #E517C5);
    left: 0;
    bottom: 0;
    transition: 0.3s;
}
.navbar .navbar-nav .nav-link:hover {
    color:#000;
}
.navbar .navbar-nav .nav-link:hover::before {
    width: 100%;
    transition: 0.3s;
}
.navbar .navbar-nav .nav-link.active {
    position: relative;
    color: #000;
}
.navbar .navbar-nav .nav-link.active::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background:#076CFA;
    left: 0;
    bottom: 0;
}
.navbar .navbar-nav .nav-link .nav-link-inner-text {
    margin: 0;
}

/* main section carousel */
.carousel-item {
    max-height: 100vh;
}
.carousel-caption {
    bottom:80px;
}

.main.scroll {min-height:100vh}
footer.scroll {min-height:auto}
.blue-bar::before {
    content: "";
    width: 94px;
    height: 16px;
    background: #076CFA;
    display: block;
    margin-bottom: 20px;
    /* position: absolute;
    top: -27px;
    left: 0; */
}
.mask {
    width:736px;
    height:775px;
    background-size:cover;
    background-attachment:fixed;
    clip-path: url(#maskLogo);
    margin:auto;
    }
.mask2 {
    clip-path: url(#maskLogo2);
    }
.mask3 {
    clip-path: url(#maskLogo3);
    }
.mask4 {
    clip-path: url(#maskLogo4);
    }
.mask5 {
    clip-path: url(#maskLogo5);
    }
.mask6 {
    clip-path: url(#maskLogo6);
    }
.mask-box {position:relative}
.mobile-mask {
    display:none;
}
.col-lg-12 {margin:auto}
.max-width-980 {
    max-width: 980px;
    margin: auto;
}
.m-img {display: none;}
.section.last {
    padding-bottom: 13rem;
}
.txt-list li {
    padding-left: 18px;
    position: relative;
}
.txt-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    left: 0;
    top:14px;
}
.txt-list-right li {
    padding-right: 18px;
    position: relative;
}
.txt-list-right li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    right: 0;
    top:14px;
}

.txt-list-right li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3B3B3B;
    position: absolute;
    right: 0;
    top:14px;
}

/* main section banner */
.main-banner .container {
    height: 100%;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.main-banner .txt-box {
    color:#FFF;
    padding-top: 18vh;
}
.sec-banner .carousel-item {
    height: 100vh;
}
.sec-banner .carousel-item:first-child {
    background: url(/assets/img/carousel/bg-banner-1.jpg) no-repeat center;
    background-size: cover;
}
.sec-banner .carousel-item:nth-child(2) {
    background: url(/assets/img/carousel/bg-banner-2.jpg) no-repeat center;
    background-size: cover;
}
.sec-banner .carousel-item:nth-child(3){
    background: url(/assets/img/carousel/bg-banner-3.jpg) no-repeat center;
    background-size: cover;
}
.overlay-primary:before {
    display: none;
}
.sec-banner .carousel-control-next,
.sec-banner .carousel-control-prev {
    opacity: 0;
    transition: 0.5s;
}
.sec-banner .carousel-control-next:focus,
.sec-banner .carousel-control-next:hover,
.sec-banner .carousel-control-prev:focus,
.sec-banner .carousel-control-prev:hover {
    opacity: 1;
    transition: 0.5s;
}
.sec-banner .carousel-control-prev-icon::before,
.sec-banner .carousel-control-next-icon:before {
    color: #FFF;
}

/* main section about us */
.sec-abote-us .cont-box {
    max-width: 920px;
    margin: auto;
}
.sec-abote-us .txt-wrap-mobile {
    display: none;
}
.sec-abote-us .col-lg-4 {
    border-bottom:1px solid #E4E4EC;
    border-left:1px solid #E4E4EC;
    position: relative;
}
.sec-abote-us .col-lg-4:nth-child(3n+1) {
    border-left:0;
}
.sec-abote-us .col-lg-4:nth-last-child(-n+4) {
    border-bottom:0;
}
.sec-abote-us .col-lg-4 a {
    padding:30px 15px 50px;
    display:block; 
}
.sec-abote-us .col-lg-4 .tit {
    font-size:20px;
    font-weight:600;
}
.sec-abote-us .col-lg-4 .img-box {
    position:relative;
    margin-left:7px;
}
.sec-abote-us .col-lg-4 .img-box img {
    position:absolute;
}

.sec-abote-us .plan .img-box {
    width:94px;
    height:84px;
}
.sec-abote-us .plan .img-box .img-top {
    right:-10px;
    bottom:-12px;
}

.sec-abote-us .design .img-box {
    width:108px;
    height:100px;
}
.sec-abote-us .design .img-box .img-under{
    top:6px;
    left:9px;
}
.sec-abote-us .design .img-box .img-under:first-child {
    bottom:0;
    left:0;
    top:auto;
}
.sec-abote-us .design .img-box .img-top{
    top:0;
    right:0;
}
.sec-abote-us .develop .img-box {
    width:97px;
    height:94px;
}
.sec-abote-us .develop .img-box .img-under:first-child {
    right: 24px;
    bottom: 3px;
}
.sec-abote-us .develop .img-box .img-top {
    right:0;
    bottom:0;
}

.sec-abote-us .service .img-box {
    width:87px;
    height:83px;
}
.sec-abote-us .service .img-box .img-top {
    right:-8px;
    bottom:-10px;
}

.sec-abote-us .resource .img-box {
    width:94px;
    height:63px;
    margin-left:13px;
}

.sec-abote-us .resource .img-box .img-top{
    bottom:-15px;
}

.sec-abote-us .security .img-box {
    width:74px;
    height:85px;
    margin-left:13px;
}
.sec-abote-us .security .img-box .img-top {
    right:-12px;
    bottom:-12px;
}

.sec-abote-us .col-lg-4 a .txt-box {
    position: absolute;
    top: 0;
    right:0;
    bottom:0;
    left:0;
    padding: 8% 10%;
    opacity: 0;
    transition: 0.5s;
    color: #FFF;
    z-index: 4;
}
.sec-abote-us .col-lg-4 a:hover .img-box .img-top {
    display: none;
}
.sec-abote-us .col-lg-4 a:hover .txt-box {
    opacity: 1;
    transition: 0.5s;

}
.plan .txt-box {
    background:url(../assets/img/bg/bg-aboutus-1.jpg) no-repeat center;
    background-size: cover;
}
.design .txt-box {
    background:url(../assets/img/bg/bg-aboutus-2.jpg) no-repeat center;
    background-size: cover;
}
.develop .txt-box {
    background:url(../assets/img/bg/bg-aboutus-3.jpg) no-repeat center;
    background-size: cover;
}
.service .txt-box {
    background:url(../assets/img/bg/bg-aboutus-4.jpg) no-repeat center;
    background-size: cover;
}
.resource .txt-box {
    background:url(../assets/img/bg/bg-aboutus-5.jpg) no-repeat center;
    background-size: cover;
}
.security .txt-box {
    background:url(../assets/img/bg/bg-aboutus-6.jpg) no-repeat center;
    background-size: cover;
}


/* main section game ingtroduction */
.sec-game-intro {
    position: relative;
    background: url(../assets/img/bg/bg-game.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.sec-game-intro .tit-box { 
    width: 100%;
}
.section_pin {
    height: 100vh;
    overflow: hidden;
    display: flex;
    left: 0;
    }
.section_pin::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom:0;
    background: url(../assets/img/bg/bg-logo.svg) no-repeat center;
    mix-blend-mode: hard-light;
}

.pin-wrap {
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background: url(../assets/img/bg/waves.png) no-repeat center;
    background-size: cover;
    backdrop-filter: blur(10px);
}
.pin-wrap > * {
    min-width: 100vw;
}
.pin-wrap .img-box {
    position: relative;
    height: 100%;
}
.pin-wrap .img-box img {
    position: absolute;
    bottom: 0;
}
.pin-wrap .img-box .imgs {
    position: relative;
    height: 100%;
}
.pin-wrap .img-box .imgs-1 {
    max-width: 50%;
} 
.pin-wrap .img-box .imgs-1 .img-2 {
    right: -48px;
	top: 46%;
}
.pin-wrap .img-box .imgs-1 .img-3 {
    right: -90px;
    bottom: 20%;
}
.pin-wrap .img-box .imgs-2 {
    position: absolute;
    right: 0;
    left: 20%;
    top: 0;
    bottom: 0;
}
.pin-wrap .img-box .imgs-2 .img-2 {
    left: 26%;
    top: 18%;
}
.pin-wrap .img-box .imgs-2 .img-3 {
    left:21%;
    top: 14%;
    transform: rotate(10deg);
}
.pin-wrap .img-box-2 .imgs-1 {
    max-width: 70%;
}
.pin-wrap .img-box-2 .imgs-1 .img-1 {
    bottom:-19%;
    left: -22%;
}
.pin-wrap .img-box-2 .imgs-2 .img-1 {
    left: 0;
    bottom: 32%;
}
.pin-wrap .img-box-2 .imgs-2 .img-2 {
    left: 50%;
    bottom: 32%;
}
.pin-wrap .img-box-2 .imgs-2 .img-3 {
    left: auto;
	right:-20%;
    top:40%;
}
.pin-wrap .img-box-3 .imgs-1 {
    max-width: 38%;
}
.pin-wrap .img-box-3 .imgs-1 .img-1 {
    left: 15%;
    bottom: 5%;
	max-width: initial;
}
.pin-wrap .img-box-3 .imgs-1 .img-2 {
    right: -92%;
    bottom: -1%;
	top:auto;
}
.pin-wrap .img-box-3 .imgs-1 .img-3 {
	bottom: -6%;
    right: -93%;
}
.pin-wrap .img-box-3 .imgs-2 {
    left:52%;
}
.pin-wrap .img-box-3 .imgs-2 .img-1 {
    right: 0;
    bottom: 4%;
	transform: scaleX(-1);
}
.pin-wrap .img-box-3 .imgs-2 .img-2 {
	right: -33%;
    left: auto;
    top: 60%;
}
.pin-wrap .img-box-3 .imgs-2 .img-3 {
    left: auto;
	right:-42%;
    top: 63%;
}
.pin-wrap .img-box-4 {
    display: none;
}

/* main section global global */
.sec-global-company .country-list {
    width: 100%;
    padding-top:30px;
}
.sec-global-company .country-list li {
    padding-left:12px;
    font-weight: 500;
    color: #5A5A5A;
    position: relative;
}
.sec-global-company .country-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #315AA2;
    position: absolute;
    left: 0;
    top: 45%;
}

.sec-partner .cont-box {
    max-width: 728px;
    margin: auto;
}

.sec-partner .cont-box > div {
    padding-top:14px;
    padding-bottom:14px; 
}
.sec-partner .cont-box > div a {
    height: 124px;
}
.creit a {
    background: url(../assets/img/partners/ptn-creit.png) no-repeat center;
}
.aws a {
    background: url(../assets/img/partners/ptn-aws.png) no-repeat center;
}
.aerospace a {
    background: url(../assets/img/partners/ptn-aerospace.png) no-repeat center;
}
.harbor-holdings a {
    background: url(../assets/img/partners/ptn-harbor-holings.png) no-repeat center;
}
.eicrousa a {
    background: url(../assets/img/partners/ptn-EICroUSA.png) no-repeat center;
}
.bitverse a {
    background: url(../assets/img/partners/ptn-bitverse.png) no-repeat center;
}
.tint-block a {
    background: url(../assets/img/partners/ptn-tintblock.png) no-repeat center;
}
.neptunicus a {
    background: url(../assets/img/partners/ptn-neptunicus.png) no-repeat center;
}

/* section with pbcmedia */
.sec-with-pbcmedia {
    padding-bottom: 12rem;
}
.sec-with-pbcmedia .hire a {
    background: url(../assets/img/bg/bg-hire.jpg) no-repeat center;
    background-size: cover;
    margin-bottom: 40px;
}
.sec-with-pbcmedia .partnership a {
    background: url(../assets/img/bg/bg-partnership.jpg) no-repeat center;
    background-size: cover;
}

.sec-with-pbcmedia .cont-box > div a {
    display: block;
    height: 100%;
    padding:35px 40px;
    height: 290px;
    border-radius: 20px;
    /* filter: brightness(0.5); */
    transition: 0.5s;
}
.sec-with-pbcmedia .cont-box > div a:hover {
    filter: brightness(0.9);
    transition: 0.5s;
}

/* footer */
.footer {
    color: #E6E7EE;
    padding-top:60px;
    padding-bottom: 30px;
}
.footer .depth1 {
    margin-bottom: 70px;
}
.footer .terms-box li {
    margin-left:30px;
}
.footer .terms-box li:first-child {
    margin-left: 0;
}
.footer .sns-box li {
    width: 30px;
    height: 30px;
    margin-left:30px;
}
.footer .sns-box li:first-child {
    margin-left:0;
}
.footer .sns-box a {
    display: block;
    height: 100%;
}
.footer .sns-box .instargram a {
    background: url(../assets/img/icons/icon-sns-instargram.png) no-repeat center;
}
.footer .sns-box .facebook a {
    background: url(../assets/img/icons/icon-sns-facebook.png) no-repeat center;
}
.footer .sns-box .youtube a {
    background: url(../assets/img/icons/icon-sns-youtube.png) no-repeat center;
}
.footer .family-site-box .select-st1 {
    width: 240px;
}
.footer .company-info-box ul {
    overflow:hidden;
    margin-bottom:5px;
}
.footer .company-info-box li {
    padding:0 10px;
    position: relative;
    float:left;
}
.footer .company-info-box li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    top:5px;
    left: -1px;
    background:#C4C6D4;
}
.footer .company-info-box li:first-child {
    padding-left:0;
}
.footer .company-info-box li:first-child::after {
    display: none;
}
.footer .btn-logo {
    padding: 19px 52px;
}

/*     SUB PAGE      */
.sub-banner {
    height: 100vh;
}
.sub-banner .container {
    height: 100%;
}
.sub-banner .txt-box {
    color:#FFF;
    padding-top: 18vh;
}

/* about_us.asp */
.sub-aboutus section {
    overflow: hidden;
}
.sub-aboutus .txt-img-box {
    position: absolute;
    top: 0;
    right:0;
    left: 0;
}
.sub-aboutus .sub-banner {
    background: url(../assets/img/bg/bg-aboutus-banner.jpg) no-repeat center;
    background-size: cover;
}
.aboutus-section-2 .container {
    background: url(../assets/img/bg/bg-aboutus-8.png) no-repeat left 55px;
    padding-bottom: 150px;
}
.aboutus-section-4 {
    background: linear-gradient(rgba(191, 193, 211, 0.3), rgba(220,222,230, 0.3));
}
.aboutus-section-4 .timeline .txt-list-right li::before,
.aboutus-section-4 .timeline .txt-list li::before  {
    width: 5px;
    height: 5px;
    background: #3B3B3B;
    top: 12px;
}
.aboutus-section-4 .timeline {
    position: relative;
    width: 100%;
}
.aboutus-section-4 .timeline::before {
    content: "";
    width: 14px;
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: 100px;
    bottom: 100px;
    background: url(../assets/img/bg/bg-time-line20.png) no-repeat center;
    background-size: contain;
}
.aboutus-section-4 .timeline .card-body {
    padding:30px 25px 25px;
}
.aboutus-section-5 .col-lg-6 img{
    max-width: 270px;
}
.aboutus-section-5 .logo-box .card {
    border-radius: 20px;
    border: 1px solid #8289B9 !important;
    height: 200px;
    float: left;
    width: 48%;
}
.aboutus-section-5 .logo-box .card:last-child {
    margin-left: 4%;
}
.aboutus-section-5 .logo-box .card:first-child img {
    width: 70%;
}
.aboutus-section-5 .ci-box.card {
    flex-direction: inherit;
    background: url(../assets/img/bg/bg-grid.png) no-repeat center;
    background-size: cover;
}
.aboutus-section-5 .pink-box {
    width: 42%;
    margin-right: 4%;
}
.aboutus-section-5 .sky-box {
    width: 25%;
    margin-right: 4%;
}
.aboutus-section-5 .gray-box {
    width: 25%;
}
.aboutus-section-5 .color-box .bar {
    height: 15px;
    width: 100%;
}
.aboutus-section-5 .color-box .pink-bar {
    background: #DC49A2;
}
.aboutus-section-5 .color-box .sky-bar {
    background: #5C88DA;
}
.aboutus-section-5 .color-box .gray-bar{
    background: #8D9093;
}
.aboutus-section-5 .color-system ul li span {
    color: #6E6E6E;
}
.aboutus-section-5 .color-system ul li span:first-child {
    display: inline-block;
    width: 80px;
}

/* careers.asp */
.careers .sub-banner {
    background: url(../assets/img/bg/bg-careers-banner.jpg) no-repeat center;
    background-size: cover;
}
.careers-section-1 .txt-box {
    max-width: 350px;
    min-height: 350px;
    margin: auto;
    padding: 10%;
}
.passion .txt-box {
    background: url(../assets/img/icons/icon-passion.png) no-repeat center;
}
.best .txt-box {
    background: url(../assets/img/icons/icon-trophy.png) no-repeat center;
}
.creative .txt-box {
    background: url(../assets/img/icons/icon-creativity.png) no-repeat center;
}
.careers-section-1 .txt-box .tit {
    margin-bottom: 50%;
}

.careers-section-2 .txt-box {
    height: 245px;
}
.careers-section-2 .txt-box img {
    margin-bottom: 30px;
}
.careers-section-2 .row:first-child {
    border-bottom: 1px solid #D7D9E4;
}
.careers-section-2 .col-lg-3 {
    border-left: 1px solid #D7D9E4;
}
.careers-section-2 .col-lg-3:first-child,
.careers-section-2 .col-lg-3:nth-last-child(4){
    border-left: 0;
}
.careers-section-3 .txt-box {
    height: 217px;
}
.careers-section-3 .saramin img {
    margin-bottom:44px;
}
.gamejob img {
    margin-bottom:30px;
}

/* what_we_do.asp */
.wwd-section-1 .carousel-inner {background: #000;}
.wwd-section-1 .mask-box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
}
.wwd-section-1 .carousel-item:first-child {
    background: url(../assets/img/carousel/bg-wwd-slider-1.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .carousel-item:first-child .mask {
    background:url(../assets/img/carousel/bg-wwd-slider-1-1.jpg) no-repeat 1000px center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .carousel-item:nth-child(2) {
    background: url(../assets/img/carousel/bg-wwd-slider-2.jpg) no-repeat 500px center;
    background-size: cover;
    background-attachment: fixed;
    transition: 0.5s;
}
.wwd-section-1 .carousel-item:nth-child(2) .mask {
    background:url(../assets/img/carousel/bg-wwd-slider-2-1.jpg) no-repeat 1000px center;
    background-size: cover;
    background-attachment: fixed;
}
/*.wwd-section-1 .carousel-item:nth-child(3) {*/
/*    background: url(../assets/img/carousel/bg-wwd-slider-3.jpg) no-repeat 500px center;*/
/*    background-size: cover;*/
/*    background-attachment: fixed;*/
/*}*/
/*.wwd-section-1 .carousel-item:nth-child(3) .mask {*/
/*    background:url(../assets/img/carousel/bg-wwd-slider-3-1.jpg) no-repeat 1000px center;*/
/*    background-size: cover;*/
/*    background-attachment: fixed;*/
/*}*/
.wwd-section-1 .carousel-item:nth-child(3) {
    background: url(../assets/img/carousel/bg-wwd-slider-4.jpg) no-repeat 500px center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .carousel-item:nth-child(3) .mask {
    background:url(../assets/img/carousel/bg-wwd-slider-4-1.jpg) no-repeat 1000px center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .carousel-item:nth-child(4) {
    background: url(../assets/img/carousel/bg-wwd-slider-5.jpg) no-repeat 500px center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .carousel-item:nth-child(4) .mask {
    background:url(../assets/img/carousel/bg-wwd-slider-5-1.jpg) no-repeat 1000px center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .carousel-item:nth-child(5) {
    background: url(../assets/img/carousel/bg-wwd-slider-6.jpg) no-repeat 500px center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .carousel-item:nth-child(5) .mask {
    background:url(../assets/img/carousel/bg-wwd-slider-6-1.jpg) no-repeat 1000px center;
    background-size: cover;
    background-attachment: fixed;
}
.wwd-section-1 .next-tit-box {
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: 1s;
}
.wwd-section-1 .next-tit-box li {
    width: 15%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 60vh;
}
.wwd-section-1 .next-tit-box li p {
    color: rgba(255,255,255,0.8);
}
.wwd-section-1 .carousel-item.active .next-tit-box {
    opacity: 1;
    transition: 1s;
}
.wwd-section-1 .carousel-btn {
    z-index: 9;
}
.wwd-section-1 .carousel-btn .carousel-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: rgba(0,0,0,0.9);
    position: relative;
}
.wwd-section-1 .carousel-control-prev .carousel-icon {
    /* background: url(../assets/img/icons/icon-carousel.png) no-repeat center; */
}
.wwd-section-1 .carousel-control-next .carousel-icon {
    /* background: url(../assets/img/icons/icon-carousel.png) no-repeat center; */
}
.wwd-section-1 .carousel-btn .carousel-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: url(../assets/img/icons/icon-carousel.png) no-repeat center;
}
.wwd-section-1 .carousel-control-next  .carousel-icon::before {
    transform: rotate(180deg);
}
.wwd-section-1 .txt-box {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    
}
.wwd-section-1 .txt-box * {
    color: #FFF;
    transition: 1s;
}
.wwd-section-1 .txt-box div {
}
.wwd-section-1 .scroll_line {
    /* display: block; */
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -4px;
    transform: translateX(-50%);
    overflow: hidden;
    opacity: 0;
    background: url(../assets/img/common/line-scroll.png) no-repeat left;
    background-size: cover;
    width: 8px;
    height: 129px;
    display: none;
}
.wwd-section-1 .scroll_line:before {
    height: 100%;
    background: #fff;
    opacity: .2;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    position: absolute;
    width: 1px;
}
.wwd-section-1 .scroll_line:after {
    background: #fff;
    right: 0;
    top: 0;
    content: '';
    position: absolute;
    width: 1px;
    height: 99%;
    animation-name: scroll-down-line;
    animation-duration: 2.6s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.77,0,.175,1);
}
.scroll_line {
    opacity: 1;
}
.how-we-work .sub-banner {
    background: url(../assets/img/bg/bg-hww-banner.jpg) no-repeat center;
    background-size: cover;
}
.hww-section-1 .timeline .col-1 {
    display: none !important;
}
.hww-section-1 .timeline .col-sm {
    max-width: 20%;
}
.hww-section-1 .no-gutters {
    margin-bottom: 60px;
}
.hww-section-1 .card-body {
    padding: 2rem 1.8rem;
}

/* contact_us.asp */
.contact-us .sub-banner {
    background: url(../assets/img/bg/bg-ctus-banner.jpg) no-repeat center;
    background-size: cover;
}
.ct-us-section-1 .txt-box span {
    display: inline-block;
}
.ct-us-section-1 .txt-box ul li {
    margin-bottom:5px;
}
.ct-us-section-1 .txt-box .txt-h {
    width: 87px;
}
.ct-us-section-2 .map {
    min-height: 842px;
}

@media (max-width: 1024px) {
    .pin-wrap .img-box .img-3 {
        max-width: 60%;
    }
    .pin-wrap .img-box-1 .imgs-1 {
        max-width: 100%;
    }
    .pin-wrap .img-box-1 .imgs-1 .img-1 {
        bottom: 32%;
        left: 5%;
        max-width: 70%;
    }
    .pin-wrap .img-box-1 .imgs-1 .img-2 {
        right: 12%;
        bottom: 24%;
        max-width: 50%;
    }
    .pin-wrap .img-box-1 .imgs-1 .img-3 {
        right: 8%;
        bottom:21%;
    }
    .pin-wrap .img-box-1 .imgs-2 {
        right: -100%;
        left: 100%;
    }
    
    .pin-wrap .img-box-1 .imgs-2 .img-1 {
        right: auto;
        bottom: 0 !important;
		left: -50% !important;
    }
    .pin-wrap .img-box-1 .imgs-2 .img-2 {
        left: auto;
        bottom: 42%;
        max-width: 40%;
		right: 15%;
    }
    .pin-wrap .img-box-1 .imgs-2 .img-3 {
        left: auto;
		right: 7%;
        bottom: 37%;
    }
	.pin-wrap .img-box-1 .imgs-2 .img-4 {
		bottom:0 !important;
	}
    .pin-wrap .img-box-2 .imgs-1 {
        max-width: 100%;
    }
    .pin-wrap .img-box-2 .imgs-1 .img-1 {
        bottom: 0;
        left: 10%;
    }
    .pin-wrap .img-box-2 .imgs-2 {
        left: 100%;
        right: -100%;
    }
	.pin-wrap .img-box-2 .imgs-2 .img-1 {
		left: 81%;
		bottom: 41%;
	}
    .pin-wrap .img-box-2 .imgs-2 .img-2 {
        left: 0;
        bottom: 50%;
    }
	.pin-wrap .img-box-2 .imgs-2 .img-3 {
		right: 4%;
		top: 6%;
	}

    .pin-wrap .img-box-3 .imgs-1 {
        max-width: 100%;
    }
    .pin-wrap .img-box-3 .imgs-1 .img-1 {
        bottom: 22%;
		left: 5%;
    }
    .pin-wrap .img-box-3 .imgs-1 .img-2 {
        right: -28%;
        bottom: 32%;
        max-width: 28%;
    }
    .pin-wrap .img-box-3 .imgs-1 .img-3 {
        right: -33%;
        bottom: 27%;
    }
    .pin-wrap .img-box-3 .imgs-2 {
        left: 100%;
        right: -100%;
    }
	.pin-wrap .img-box-3 .imgs-2 .img-1 {
        left: auto;
        right: 8%;
        bottom: 17%;
    }
    .pin-wrap .img-box-3 .imgs-2 .img-2 {
        left: 36%;
        bottom: 30%;
        max-width: 50%;
    }
    .pin-wrap .img-box-3 .imgs-2 .img-3 {
        left: 28%;
        bottom: 26%;
    }
    .pin-wrap .img-box-4 {
        display: block;
    }

    /*     SUB PAGE      */
    /* what_we_do.asp */
    .wwd-section-1 .txt-box .txt {
        max-width: 70%;
        margin: auto;
    }
    .wwd-section-1 .d-br {
        display: none;
    }
    .wwd-section-1 .m-br {
        display: block;
    }
    .wwd-section-1 .next-tit-box li {
        padding-top: 56vh;
    }
    .wwd-section-1 .next-tit-box .fsz-30 {
        font-size: 20px;
    }
    .wwd-section-1 .carousel-btn .carousel-icon {
        width: 100px;
        height: 100px;
    }
    .wwd-section-1 .carousel-btn .carousel-icon::before {
        background-size: 30%;
    }
    /* careers.asp */
    .careers-section-1 .txt-box {
        min-height: 289px;
    }
    .careers-section-1 .tit {
        color:#59595E;
    }
    
}
@media (max-width: 920px) {
    .navbar .navbar-nav .nav-link {
        display: inline-block;
    }
    .select_lang .nav-link {
        padding-left:0;
        height: 33px;
        line-height: 33px;
        padding:0;
    }
    .select_lang .dropdown-menu {
        right: 0;
    }

    /*     SUB PAGE      */
    /* careers.asp */
    .careers-section-1 .txt-box {
        min-height: 210px;
        background-size: 25%;
    }
    .careers-section-1 .txt-box .tit {
        margin-bottom: 45%;
    }
    .careers-section-1 .txt-box .txt {
        font-size: 12px;
    }

    .creative .txt-box {
        background-position: center 40%;
    }

    .careers-section-2 .txt-box {
        height: 180px;
    }
    .careers-section-2 .txt-box img {
        margin-bottom: 20px;
    }
    .aboutus-section-5 .ci-box.card {
        background: url(../assets/img/bg/bg-grid-y.png) no-repeat center;
        background-size: cover;
    }
    .aboutus-section-5 .ci-box .col-lg-6:first-child {
        margin-bottom: 60px;
    }
    .aboutus-section-5 .ci-box .col-lg-6:first-child img {
        width: 68%;
    }
    .aboutus-section-5 .ci-box .col-lg-6:last-child img {
        width: 100%;
    }
    .aboutus-section-5 .logo-box {
        margin-bottom: 30px;
    }
    .aboutus-section-5 .logo-box .card {
        float: none;
        width: 100%;
    }
    .aboutus-section-5 .logo-box .card:first-child {
        margin-bottom: 30px;
    }
    .aboutus-section-5 .logo-box .card:last-child {
        margin-left: 0;
    }
    .aboutus-section-5 .color-system .color-box {
        display: block;
    }
    .aboutus-section-5 .color-system .color-box > div {
        width: 100%;
        margin-bottom: 30px;
    }
    .aboutus-section-5 .color-system .color-box > div:last-child {
        margin-bottom: 0;
    }

    /* footer */
    .footer .depth1 {
        margin-bottom:40px;
    }
    .footer .depth1 .col-lg-6:first-child {
        justify-content: center;

    }
    .footer .terms-box {
        justify-content: center;
        margin-bottom: 40px;
    }
    .footer .link-box {
        justify-content: center;
    }
    .footer .sns-box li {
        margin-left:10px
    }
    .footer .family-site-box .select-st1 {
        max-width: 160px;
    }
    
    .footer .depth2 .col-lg-12 {
        display: block;
        text-align: center;
    }
    .footer .company-info-box {
        margin-bottom: 30px;
    }
    .footer .company-info-box ul {
        display: inline-block;
        width: 100%;
    }
    .footer .company-info-box ul li {
        display: inline-block;
        float: none;
    }

    

}

@media (max-width: 768px) {
    html,
    body {
        font-size: 12px;
    }
    .fsz-20 {
        font-size: 18px;
    }
    .fsz-60 {
        font-size: 30px;
    }

    .sec-abote-us .develop {
        border-left: 0;
    }
    .sec-abote-us .service {
        border-left: 1px solid #E4E4EC !important;
        border-bottom: 1px solid #E4E4EC !important;
    }
    .sec-abote-us .resource {
        border-left: 0;
    }
}

@media (max-width: 420px) {
    .m-img {
        display:block;
    }
    .d-img {
        display: none;
    }
    .m-br{
        display: block;
    }
    .d-br {
        display: none;
    }
    .section-lg {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    section .tit-box h2 {
        margin-bottom:10px;
    }
    section .tit-box br {
        display: none;
    }
    .fsz-20 {
        font-size: 16px;
    }
    .fsz-24 {
        font-size: 20px;
    }
    .fsz-30 {
        font-size: 24px;
    }
    .fsz-54 {
        font-size: 38px;
    }
    .fsz-70 {
        font-size: 30px;
    }
    
    .sec-abote-us .cont-box {
        position: relative;
    }
    .sec-abote-us .col-lg-4 a {
        padding: 30px 0 50px;
    }
    .sec-abote-us .col-lg-4 a .txt-box {
        display: none;
    }
    .sec-abote-us .col-lg-4 a:hover .txt-box {
        display: none;
    }
    .sec-abote-us .col-lg-4 a:hover .img-box .img-top {
        display: block;
    }
    .txt-wrap-mobile {
        position: fixed;
        top: 0;
        left:0;
        right:0;
        bottom: 0;
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(20px);
        padding: 30vh 10px 0;
        transition: 0.5s;
        z-index: 1000;
        touch-action: none; 
    }
    .txt-wrap-mobile.on {
        display: block;
        transition: 0.5s;
    }
    .txt-wrap-mobile .txt-box {
        padding:25px;
        border-radius: 20px;
        position: relative;
        color: #FFF;
        min-height: 236px;
        min-width: 306px;
        margin: auto;
    }
    .txt-wrap-mobile .txt-box .tit {
        margin-bottom: 15px;
    }
    .txt-wrap-mobile .btn-close {
        position: absolute;
        left: 50%;
        margin-left:-24.5px;
        bottom:-70px;
    }

    .pop_design {
        background: url();
    }

    .section_pin::before {
        background-size: 50%;
    } 

    .pin-wrap .img-box-1 .imgs-1 .img-1 {
        bottom: 48%;
    }
    .pin-wrap .img-box-1 .imgs-1 .img-2 {
        bottom: 36%;
    }
    .pin-wrap .img-box-1 .imgs-1 .img-3 {
        bottom: 34%;
    }

    .sec-global-company .tit-box .fsz-30 {
        font-size: 20px;
    }
    .sec-global-company .country-list {
        display: block;
        text-align: center;
        line-height: 2.4;
    }
    .sec-global-company .country-list li {
        display: inline-block;
        margin-right:16px;
    }

    .sec-partner .cont-box > div a {
        background-size: 65%;
    }
    .sec-with-pbcmedia .tit-box h2 {
        margin-bottom:0;
    }
    .sec-with-pbcmedia .cont-box > div a {
        height: 120px;
        padding:22px 24px;
        filter: brightness(1);
        color:#FFF;
    }
    .sec-with-pbcmedia .hire a {
        margin-bottom: 20px;
    }

    /*     SUB PAGE      */
    .sub-banner .container {
        display: flex;
        align-items: center;
    }
    .sub-banner .txt-box {
        padding-top: 0;
    }
    /* careers.asp */
    .careers-section-1 .col-lg-4 {
        margin-bottom: 20px;
    }
    .careers-section-1 .txt-box {
        min-height: 345px;
    }
    .careers-section-1 .txt-box .tit {
        font-size: 20px;
    }
    .careers-section-1 .txt-box .txt {
        font-size: 16px;
    }
    .creative .txt-box {
        background-position: center 46%;
    }

    .careers-section-2 .row:first-child {
        border:0
    }
    .careers-section-2 .col-lg-3 {
        border: 0;
        border-bottom: 1px solid #D7D9E4;
    }
    .careers-section-2 .col-lg-3:nth-child(even) {
        border-left: 1px solid #D7D9E4;
    }
    .careers-section-2 .row:nth-child(2) .col-lg-3:nth-last-child(-n+2) {
        border-bottom:0;
    }

    .careers-section-3 .col-lg-4:first-child {
        margin-bottom: 20px;
    }

    .sub-aboutus section .img-1 {margin-top:0 !important}
    .aboutus-section-1 .tit {
        margin-bottom: 13px;
    }
    .aboutus-section-1 .tit,
    .aboutus-section-1 .tit *,
    .aboutus-section-2 .tit,
    .aboutus-section-2 .tit *{
        font-size: 24px;
    }
    .aboutus-section-1 .col-lg-6:nth-child(2) {
        margin-bottom: 30px;
    }
    .aboutus-section-1 .col-lg-6:nth-child(2) .m-img {
        margin-bottom: 20px;
    }

    .aboutus-section-2 .container {
        background: url(../assets/img/bg/bg-aboutus-8-m.png) no-repeat -92px 29px;
    }

    .aboutus-section-4 .timeline::before {
        display: none;
    }
    .aboutus-section-4 .col-left {
        text-align: left !important;
    }

    .aboutus-section-4 .col-left .txt-list-right li::before {
        left:0;
    }
    .aboutus-section-4 .col-left .txt-list-right li {
        padding-left:17px;
        padding-right:0;
    }
    .aboutus-section-4 .row {
        margin-bottom: 30px;
    }
    .wwd-section-1 .carousel-btn {
        align-items: flex-end;
        margin: 0 20px 30px
    }
    .wwd-section-1 .next-tit-box {
        display: none;
    }
    .wwd-section-1 .carousel-btn .carousel-icon {
        width: 60px;
        height: 60px;
    }
    .wwd-section-1 .carousel-btn .carousel-icon::before {
        width: 60px;
        height: 60px;
        background-size: 30%;
    }
    .pc-mask {
        display:none;
    }
    .mobile-mask {
        display:block;
    }

    .wwd-section-1 .mask {
        width: 300px;
        height: 320px;
        clip-path: url(#maskLogoM);
    }
    .wwd-section-1 .mask2 {
        clip-path: url(#maskLogoM2);
        }
    .wwd-section-1 .mask3 {
        clip-path: url(#maskLogoM3);
        }
    .wwd-section-1 .mask4 {
        clip-path: url(#maskLogoM4);
        }
    .wwd-section-1 .mask5 {
        clip-path: url(#maskLogoM5);
        }
    .wwd-section-1 .mask6 {
        clip-path: url(#maskLogoM6);
        }
    .wwd-section-1 .col-lg-12 {
        transition: 1s;
    }  
    .wwd-section-1 .col-lg-12 h3 {
        margin-bottom: 0 !important;
    }
    .wwd-section-1 .col-lg-12.on {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        text-align: left;
        background: linear-gradient(rgba(0,0,0,0), #000);
    }
    .wwd-section-1 .col-lg-12.on > div {
        position: relative;
        margin-top: -30%;

    }
    .wwd-section-1 .txt-box .txt {
        position: absolute;
        top: 100vh;
        left: 15px;
        right: 15px;
        transition: 2s;
        max-width: 100%;
        left: 0;
        right: 0;
        text-align: left;
    }
    .wwd-section-1 .txt-box .txt.on {
        top:46px;
        transition: 1s;
    }
    .wwd-section-1 .metabus .col-lg-12.on > div {
        margin-top: -70%;
    }
    .wwd-section-1 .metabus .col-lg-12.on .m-br {
        display: none;
    }
    .wwd-section-1 .txt-box div {
        width: 100%;
    }
    .wwd-section-1 .txt-box.on {
        background: linear-gradient(rgba(0,0,0,0), #000);
    }
    .wwd-section-1 .txt-box.on .txt {
        height: auto;
        bottom:auto;
        top: auto;
        transition: 2s;
    }
    .scroll_line {
        display:block;
    }
    .hww-section-1 .col-2 img {
        position: fixed;
        top: 10%;
        left: 6%;
        width: 11%;
        z-index: -1;
    }
    .hww-section-1 .fsz-16 {
        font-size: 12px;
    }
    .hww-section-1 .no-gutters {
        margin-bottom: 30px;
    }
    .ct-us-section-1 .txt-box span {
        max-width: 75%;
    }

	.pin-wrap .img-box-3 .imgs-1 .img-1 {
		bottom: 0;
		left: 0;
		max-height: 70%;
	}
	.pin-wrap .img-box-3 .imgs-2 .img-1 {
		right: -112%;
		bottom: 0;
		max-height: 38%;
	}
	.pin-wrap .img-box-3 .imgs-1 .img-2 {
		right: -108%;
		max-width: 50%;
		bottom: 5%;
	}
	.pin-wrap .img-box-3 .imgs-2 .img-2 {
		max-width: 25%;
		top: auto;
		left: 50%;
	}
	.pin-wrap .img-box-3 .imgs-1 .img-3 {
		right: -112%;
		bottom: 0;
	}
	.pin-wrap .img-box-3 .imgs-2 .img-3 {
		left: 38%;
		bottom:auto;
		top: 48%;
		max-width: 50%;
	}
	.pin-wrap .img-box-2 .imgs-2 .img-2 {
		max-height: 46%;
		top: 26%;
		bottom: auto;
	}
	.pin-wrap .img-box-2 .imgs-2 .img-3 {
		display:none;
	}
	.pin-wrap .img-box-1 .imgs-2 .img-1 {
		display:none;
	}
}





