@import url(../fonts/font_notosans_kr.css);
@font-face {
    font-family: 'xeicon';
    src: url('../fonts/xeicon/xeicon.woff2') format('woff2'),
         url('../fonts/xeicon/xeicon.woff') format('woff'),
         url('../fonts/xeicon/xeicon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html,body{
	font-family:'nsk3','Dotum','arial','sans-serif';
	margin:0;
	padding:0;
	border:0;
	vertical-align:top;
	background:transparent;
	word-break:break-all;
}
body {
    margin: 0;
    padding: 0;
}
a:link, a:visited, a:active{
    color:#fff;
    text-decoration: none;
}
.container {
    max-width: 1780px;
    width: 100%;
    height: 660px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.slice{
    width:1px; 
    height: 225px; 
    background:rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slice_m{
    width:40%; 
    height: 1px; 
    background:rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.section {
    width: calc(100% - 40px);
    height: 320px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: 
        url(../images/buliding_01.png),
        url(../images/buliding_02.png),
        url(../images/sky_bg.png);
    background-position: 
        center left -400px,
        center right -400px,
        center center;
    background-size:
        40%,
        40%,
        cover;
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.section > .con{
    box-sizing: border-box;
    flex:1;
    position:relative;
}
.section > .con > .logo{
    position:absolute;
    top:-150px;
    left:50%;
    transform:translate(-50%, 0);
}
.section > .con > .txt{
    text-align: center;
    position: relative;
    top: -15px;
}
.section > .con > .txt dt{
    font-size:40px;
    color:#fff;
    text-shadow: 5px 5px 10px #3e566f;
    position: relative;
    top: -20px;
    font-family: 'onemt';
}
.section > .con > .txt dd{
    margin:0;
}
.section > .con > .txt dd .copy{
    font-size:18px;
    color:#fff;
    opacity: 0.9;
    line-height: 30px;
    font-family: 'nsk2';
}
.section > .con > .txt dd a{
    display: block;
    position: relative;
    top: 40px;
}
.section > .con > .txt .go_link > span{
    position: relative;
    z-index: 10;
}
.section > .con > .txt .go_link{
    width:162px;
    height: 46px;
    border:1px solid #fff;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
    position: relative;
    padding:9px 30px 9px 10px;
    box-sizing: border-box;
    transition: all .3s ease; 
}
.section > .con > .txt .go_link::before{
    width:36px;
    height:36px;
    content: '';
    display: block;
    background: #fff;
    border-radius: 100px;
    position: absolute;
    right:6px;
    top:50%;
    transform: translate(0, -50%);
    transition: all .3s ease; 
}
.section > .con > .txt .go_link::after{
    font-family: 'xeicon';  
    font-size: 20px;
    content: "\e90b";       
    display: inline-block;
    color: #000;
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translate(-50%, -50%);
    transition: all .3s ease; 
}

/* Hover 시 모션 */
.section > .con > .txt .go_link.hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.section > .con > .txt .go_link.hover::before {
    width: 100%;               /* 동그라미 확장 */
    right: 0;
    background: #fff;
    border-radius: 30px;
}

.section > .con > .txt .go_link.hover::after {
    right: 15px;               /* 아이콘 살짝 이동 */
    transform: translate(0, -50%);
    color: #000;
}

.section > .con > .info{
    width:100%;
    position:absolute;
    top:310px;
    left:50%;
    transform:translate(-50%, 0);
    font-size:24px;
    text-align: center;
    box-sizing: border-box;
    padding:0 20px;
}
.section > .con > .info > .url{
    font-size: 18px;
    font-family:'nsk2';
    white-space: nowrap;
    display: block;
    margin-top:20px;
    color:#4d4d4d;
}
.rch{display:none;}

@media (max-width: 1024px) {
    .container{
        height:calc(100vh - 40px);
        min-height: 800px;
    }
    .slice{
        display: none;
    }
    .slice_m{
        display: block;
    }
    .section{
        height: 100%;
        flex-direction: column;
        background-position: center left -140px, center right -140px, center 
    }
    .section > .con{
        width:100%;
    }
    .section > .con > .logo{
        top: calc(50% - 180px);
        transform: translate(-50%, 0);
    }
    .section > .con > .logo > img{
        width:140px;
    }
    .section > .con > .txt{
        top: calc(50% - 40px);
        transform: translate(0, -50%);
    }
    .section > .con > .info{
        font-size: 1rem;
        top: calc(50% + 100px);
        transform: translate(-50%, 0);
    }
    .section > .con > .info > .url{
        color: #202021;
        margin-top: 10px;
        font-size:15px;
    }
    .section > .con > .txt dd a{
        top: 20px;
    }
}

@media (max-width: 767px) {
    .container{
        height:calc(95vh - 40px);
        min-height: auto;
    }
    .section{
        width:100%;
    }
    .section > .con > .txt{
        top: calc(50% - 0px);
        padding: 0 20px;
        box-sizing: border-box;
    }
    .section > .con > .txt dt {
        font-size: 30px;
    }
    .section > .con > .txt dd .copy {
        font-size: 16px;
        line-height: 28px;
    }
    .section > .con > .logo {
        top: calc(50% - 130px);
    }
    .section > .con > .logo > img{
        width:120px;
    }
    .section > .con > .txt .go_link {
        top: 25px;
    }
    .section > .con > .info {
        display: none;
        font-size: .9rem;
        top: calc(50% + 110px);
    }
    .section > .con > .info > .url {
        font-size: 14px;
        margin-top: 10px;
    }
    .section{
        background-position: center left -60px, center right -60px, center;
        border-radius: 0;
    }
    .rch{display:inline}
}