:root {
	--sub-border-radius20: 20px; 
}
@media (max-width:768px){
    :root {
        --sub-border-radius20: 10px;
    }
}

/* background */
.bg-gray {
    background-color: #fafafa;
}
.bg-mint {
    background-color: #f2f7f9;
}
/* subtop */
#subtop {
    height: 650px;
    position: relative;
    overflow: hidden;
    transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    -webkit-transition: all 2s;
}
#subtop.smHeight {
    height: 550px;
}
#subtop .subtopBg {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;

    -webkit-animation: zoomOutInBg 1.8s ease-out 1;
    -moz-animation: zoomOutInBg 1.8s ease-in 1;
    -ms-animation: zoomOutInBg 1.8s ease-in 1;
    -o-animation: zoomOutInBg 1.8s ease-in 1;
    animation: zoomOutInBg 1.8s ease-in 1;
}
@keyframes zoomOutInBg {
    0% {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }  
}
#subtop .subtopTxt {
    position: relative;
    z-index: 8;
    padding-bottom: 7.5%;
}
#subtop .subTxt {
    opacity: .85;
}
@media (min-width:992px){
    #subtop .mainTxt {
        font-size: 8.5em;
    }
}
@media (max-width:768px){
    #subtop.smHeight,
    #subtop {
        height: 40vh;
        min-height: 350px;
    }
}

/* subTabs */
#subTabs {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    z-index: 15;
}
#subTabs .con {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 100px;
    text-align: center;

    transition: background-color 0.4s, transform 0.4s 0.2s;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
#subTabs .con > a {
    display: block;
    flex-grow: 1;
    flex-basis: 33.3333%;
    color: rgba(255,255,255,.5);
    font-size: 20px;
    padding: 18px 10px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
/* #subTabs .con > a:not(:first-child)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 35%;
    height: 30%;
    width: 2px;
    background-color: rgba(255,255,255,.3);
} */
#subTabs .con > a.act {
    color: rgba(255,255,255,1);
    background-color: rgba(44, 107, 255, 0.6);
    border-radius: 100px;
}
@media (max-width:992px){
    #subTabs .con > a {
        font-size: 18px;
        padding: 15px 10px;
    }
}
@media (max-width:500px){
    #subTabs .con > a {
        font-size: calc(100vw * (16 / 500));
        padding: 8px 5px;
    }
}

/* site_config */
#site_config {
    position: relative;
    z-index: 30;
    display: inline-block;
}
#site_config .site {
    display: flex;
    align-items: center;
}
#site_config .site .home {
    display: inline-block;
    line-height: 50px;
    position: relative;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.02em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .slashed {
    color: #fff;
    display: inline-block;
    margin: 0 1px;
}
#site_config .site .home.home2,
#site_config .site .home.home3 {
    position: relative;
}
#site_config .site .home.home2:after,
#site_config .site .home.home3:after {
    
}
#site_config .site .home.act:before {
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-bottom: 0px;
}
#site_config .site .home .site_toggle i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home.act .site_toggle i {
    transform: rotate(180deg);
}
#site_config .site .home.home1 {
    text-align: center;
}
#site_config .site .home > span {
    padding: 0px 5px;
    position: relative;
    z-index: 3;
    color: #fff;
}
#site_config .site .home i,
#site_config .site .home span {
    display: inline-block;
    vertical-align: middle;
}
#site_config .site .home > ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    border-top: 0px;
    padding: 12px 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}
#site_config .site .home > ul li a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    line-height: 1em;
    padding: 10px;
    color: #666;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home > ul li a.act {
    color: #333;
}
#site_config .site .home > ul li a:hover{
    color: #111;
    text-decoration: underline;
    font-weight: 700;
}
#site_config .site .home > ul li:hover a:after {
    width: 100%;
    left: 0%;
}
@media (max-width:992px) {
    #site_config .site .home {
        line-height: 50px;
        font-size: 15px;
    }
}
@media (max-width:768px) {
    #site_config .site .home {
        line-height: 40px;
        font-size: 12px;
    }
    #site_config .site .home.home2:after,
    #site_config .site .home.home3:after {
        right: 10px;
        width: 10px;
        background-size: 100%;
    }
    #site_config .site .home > span {
        padding: 0px 5px;
    }
}



/* company2 */
#company2 .sec1 {
    background: url(../img/com2_bg.jpg) center bottom no-repeat;
}
#company2 .sec1 .sign {
    gap: 20px;
}
/* company3 */
#company3 .sec1 {
    background: url(../img/com3_bg.jpg) center bottom no-repeat;
    background-size: cover;
}

/* coreValuesWrp */
.coreValuesWrp .topLogo {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px;
    border-radius: 100px;
    background-color: #0c103e;
    text-align: center;
}
.coreValuesWrp .topLogo img {
    width: 200px;
}
.coreValuesWrp .coreValues .row {
    margin: 0 -20px;
}
.coreValuesWrp .coreValues .row > div {
    padding: 0 20px;
}
.coreValuesWrp .coreValues .item {
    position: relative;
    margin-top: 35px;
    padding: 70px 40px;
    border-radius: var(--sub-border-radius20);
    border: 1px solid rgba(255, 255, 255, .2);
    background: linear-gradient(45deg, rgba(255,255,255,.02), rgba(255,255,255,.001));

    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
.coreValuesWrp .coreValues .item::before {
    content: "";
    position: absolute;
    bottom: 100%;
    height: 35px;
    border-left: 1px dashed rgba(255,255,255,.2);
    left: 50%;
    width: 0px;
}
@media (min-width:768px){
    .coreValuesWrp .ctLined {
        height: 35px;
        border-left: 1px dashed rgba(255,255,255,.2);
        margin: 0 auto;
        width: 0px;
    }
    .coreValuesWrp .coreValues .item.item1:after {
        content: "";
        position: absolute;
        top: -35px;
        height: 1px;
        border-bottom: 1px dashed rgba(255,255,255,.2);
        left: 50%;
        width: 50%;
    }
    .coreValuesWrp .coreValues .item.item2:after {
        content: "";
        position: absolute;
        top: -35px;
        height: 1px;
        border-bottom: 1px dashed rgba(255,255,255,.2);
        left: -40px;
        width: calc(100% + 80px);
    }
    .coreValuesWrp .coreValues .item.item3:after {
        content: "";
        position: absolute;
        top: -35px;
        height: 1px;
        border-bottom: 1px dashed rgba(255,255,255,.2);
        right: 50%;
        width: 50%;
    }
}
@media (max-width:768px){
    .coreValuesWrp .coreValues .item {
        padding: 30px 20px;
    }
    .coreValuesWrp .coreValues .item .icon img {
        width: 50px;
    }
}

/* ptnLogo */
.ptnLogo {
    border: 1px solid #eee;
}

/* funcTit */
.funcTit {
    position: relative;
    padding-left: 20px;
}
.funcTit::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #2c6bff;
    border-radius: 50%;
}

/* funcList */
.funcList .dft {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.funcList .dft i {
    color: #fff !important;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    background-color: #1c5be3;
    border-radius: 50%;
    font-size: .8em;
}


/* techItem */
.techItem {
    padding: 30px 30px 50px;
    border-radius: var(--sub-border-radius20);
    background-color: rgba(238, 241, 247, 0.7);
}
@media (max-width:768px) {
    .techItem {
        padding: 20px 20px 35px;
    }
}


/* contBoxs */
.contBoxs .item {
    background-color: rgba(225, 228, 235, 0.4);
    display: flex;
    align-items: center;
    padding: 30px;
}
.contBoxs .item.kakao {
    background-color: rgba(225, 228, 235, 0.2);
}
.contBoxs .item .icon {
    font-weight: 100;
    width: 80px;
}
.contBoxs .item .txt {
    width: calc(100% - 80px);
    padding-left: 20px;
}
@media (max-width:768px) {
    .contBoxs .item {
        padding: 20px;
    }
    .contBoxs .item .icon {
        font-size: 40px;
        width: 40px;
    }
    .contBoxs .item .txt {
        width: calc(100% - 40px);
    }
}



/* mapbox */
.mapbox .cont {
    display: none !important;
}
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 500px !important;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}



/* btnWrp */
.tabsWrp .tabItem {
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    color: #787e8b;
    padding: 12px 55px;
    letter-spacing: -0.01em;
    background: rgba(255,255,255,.05);
    color: #fff;
    /* border: 2px solid #787e8b; */
    border-radius: 100px;
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.tabsWrp .tabItem:hover {
    box-shadow: 10px 23px 40px rgba(44, 107, 255, 0.2);
    border-image: linear-gradient(to right, #8ed1ff 0%, #2c6bff 100%);
    background: linear-gradient(to right, #8ed1ff, #2c6bff);
    color: #fff;
}

.tabsWrp .tabItem strong,
.tabsWrp .tabItem i {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}
@media (max-width:767px){
    .tabsWrp .tabItem {
        font-size: 15px;
        padding: 0 15px;
        min-width: 120px;
        line-height: 40px;
    }
}

/* rndItems */
.rndItems a {
    text-decoration: none;
    display: block;
}
.rndItems a .img {
    padding: 8px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.rndItems a .img span:not(.ext) {
    display: block;
    position: relative;
}
.rndItems a .img span:not(.ext):after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.02);
    mix-blend-mode: multiply;
    border-radius: 15px;
}

/* moreImg */
.moreImg {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    display: block;
    text-decoration: none;
}
.moreImg .ext {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 41px;
    height: 41px;
    display: flex;
    font-size: 18px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #fff;
    padding-left: 1px;
    padding-bottom: 1px;
    z-index: 3;
}
@media (max-width:768px){
    .moreImg {
        border-radius: 10px;
    }
    .moreImg .ext {
        right: 7px;
        bottom: 7px;
        width: 31px;
        height: 31px;
    }
}