
@charset "utf-8";

/*
 * File : layout.css
 * SUMMARY:
 * 1) Reset
 * 2) Root
 * 3) Animate

 * 4) Page Layout
 * 5) Contents Title - .contents_title
 * 6) Contents Box - .contents_box

 * 7) Header - #header
 * 8) Fixed Banner - .fixed_banner
 * 9) Category - .category
 * 10) Tab Menu - .tabMenu
 * 11) Footer - #footer
*/


/* ---- Reset ---- */

html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,img {margin:0; padding:0;}
html {width:100%; height:100%; overflow-y:scroll;overflow-x:hidden;
    word-break: keep-all; color: var(--jg-navy); font-size: 16px;}

    
    @font-face {
        font-family: 'Pretendard-Regular';
        src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
        font-weight: 400 500 600 700;
        font-style: normal;
    }

	@font-face {
    font-family: 'LINESeedKR-Bd';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/LINESeedKR-Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
          

    /* font-family: 'Montserrat', "Noto Sans KR", "sans-serif"; */
a {text-decoration: none !important;}
a:link { color: inherit; } /*기본 상태*/
a:visited { color: inherit; } /*사용자가 이미 링크 방문한 상태*/
a:active { color: inherit; } /*마우스로 클릭할때*/
ul {list-style: none; padding: 0; margin: 0;}
p {margin: 0;
color: var(--txt)
line-height: 1.4;
}


/* ---- Root ---- */

:root {
    --jg-blue: #006eeb;
    --jg-navy: #05002d;
    --jg-black: #292929;
    --jg-skyblue: #f4faff;
    
    --lightgray: #ececec;
    --yellow: #ffe623;
    --line-color: #d4d4d4;
    
    --txt: #767676;
}

::selection {
    background: var(--jg-blue);
    color: #fff;
}




/* ---- Animate ---- */

.animate__animated.animate__delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.3);
  animation-delay: calc(var(--animate-delay) * 0.3);
}
.animate__animated.animate__delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.5);
  animation-delay: calc(var(--animate-delay) * 0.5);
}

/* ----service view---- */
.font {
font-family: 'Pretendard-Regular';
}


/* ---- Page Layout ---- */

#wrap {position:relative; width:100%; margin:0 auto 0;}
#container {position:relative; width:92%; width:1440px; margin:0px auto;}
/* 92%, 1440px */
.contents {width:100%; margin:0 auto; padding: 100px 0 30px;}


/* ---- Contents Title ---- */

.contents_title {
    margin: 0 0 40px;
}
.contents_title h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--jg-blue);
    margin-bottom: 50px;
    font-family:  'Pretendard-Regular';
}



.contents_title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--jg-navy);
    line-height: 1.5em;
    font-family: 'LINESeedKR-Bd';

    /* letter-spacing: -0.05em; */

}

.contents_title h3 {
    font-size: 92px;
    font-weight: 600;
    color: #e8f1ff;
    /* margin-bottom: 50px; */
    font-family:  'Pretendard-Regular';
}

.contents_title p {
    font-size: 16px;
    line-height:1.6em;
    color: var(--txt);
    font-weight: 500;
    margin-top: 90px;
    margin-bottom: 0;
    font-family:  'Pretendard-Regular';

    /* letter-spacing: -0.05em; */

}

/* ---- Contents Box ---- */

.contents_box {
    display: block;
}
.contents_flex {display:flex; justify-content:space-between; align-items: flex-start;}

/* ---- Hedaer ---- */

#header {
    color: var(--jg-black);
    background: #fff;
    top: 0;
    position: fixed;
    margin:0;
    width: 100%;
    z-index: 999;
	/* overflow: hidden; */
    border-bottom: 1px solid var(--line-color);
	box-shadow: 0 20px 20px rgb(17 20 39 / 3%);
    /*box-shadow : x축 y축 blur 색상(R G B / 투명도) */

}

#header #container {
    position:relative;
    width: 100%; max-width:1440px; height: 90px;
    margin:0 auto;
    padding:0;
    box-sizing:border-box;
    align-items: center;
}

#header .brand { position: absolute; z-index: 10; top: 50%; left: 0; transform: translate(0,-50%);}
#header .brand a {https://getbootstrap.com/docs/5.3/examples/breadcrumbs/
    width: 62px;
}
#header .brand a img {
    width: 100%;
    max-width: 62px;
}



#header .gnb {}
#header .gnb .mainMenu {
    margin: 0;
    padding: 0;
}
#header .gnb .mainMenu li {
    width: 150px;
    height: 34px;
    line-height: 34px;
    float: left;
    text-align: center;
    color: var(--jg-black);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s;
    margin-right: 20px;
	font-family: 'Pretendard-Regular';
}
#header .gnb .mainMenu li:last-child {
    margin-right: 0;
}
#header .gnb .mainMenu li:hover {
    color: var(--jg-blue);
}

#header .gnb .subMenu {
    width: 150px;
    padding: 15px 0;
    z-index: 9999;
    background: var(--jg-blue);
    display: none;
    margin: 26.5px 0 0;
	font-family: 'Pretendard-Regular';
}

#header .gnb .subMenu li {
    width: 150px;
    height: 40px;
    line-height: 40px;
    background: var(--jg-blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    /*transition: all 0.0s;*/
}
#header .gnb .subMenu li:hover {
    color: #fff;
    background: #4d9af2;
}

#header .side { position: absolute; z-index: 10; top: 50%; right: 0; transform: translate(0,-50%); width: 24px; height: 24px; padding:0;}
#header .side .sidebtn {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    padding: 0;
    color: var(--jg-black);
    border: 0;
}
#header .side .sidebtn span {
    display: block;
    position: absolute;
    height: 2px;
    background: var(--jg-black);
    margin: 0 0 0 3px;
    opacity: 1;
    left: 0;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out; transition: .25s ease-in-out;
}
#header .side .sidebtn span:nth-child(1) { top: 4px; width: 18px; }
#header .side .sidebtn span:nth-child(2) { top: 11px; width: 18px; }
#header .side .sidebtn span:nth-child(3) { top: 18px; width: 18px; }

.offcanvas.offcanvas-start {
    height: 100vh !important;
    width: 100% !important;
    background-color: var(--jg-blue);
}
.offcanvas.offcanvas-start::before {
    content: "";
    height: 100vh;
    width: 70%;
    background: var(--jg-navy);
    position: relative;
    border-radius: 0 230px 0 0;
}
.offcanvas.slideMenu {
    height: 100vh !important;
    width: 100%;
    color: var(--jg-navy);
    visibility: hidden;
    
}
.offcanvas.slideMenu #container {
    width: 1720px;
    padding: 12px;
    position: absolute;
    color: #fff;
    left: 0;
    right: 0;
}
.offcanvas.slideMenu #container .canvasClose {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.offcanvas.slideMenu #container .canvasClose .btnClose {
    text-align: center;
    color: #fff;
    display: flex;
    font-size: 20px;
    line-height: 24px;
    font-family:  'Pretendard-Regular';

}
.offcanvas.slideMenu #container .canvasClose i {
    margin: 0 0 0 10px;
    height: 20px;
}


.offcanvas.slideMenu #container .canvasBody {
    display: flex;
    justify-content: space-between;
}
.canvasBody .canvasMenu {
    margin-top: 100px;
}
.canvasBody .canvas-menu {
    margin: 0 0 60px;
}
.canvasBody .canvas-menu:last-child {
    margin: 0;
}
.canvasBody .canvas-menu a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.canvasBody .canvas-menu p {
    width: 25px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    transition: all 0.25s;
    margin: 0 65px 0 0;
    font-family:  'Pretendard-Regular';

}
.canvasBody .canvas-menu h1 {
    font-size: 60px;
    color: #fff;
    font-family:  'Pretendard-Regular';

}
.canvasBody .canvas-menu i {
    color: var(--jg-blue);
    font-size: 18px;
    margin: 0 0 0 40px;
    opacity: 0;
    transition: all 0.25s;
    font-family:  'Font Awesome 6 Free';

}
.canvasBody .canvas-menu:hover .canvasMenuNum {
    color: var(--jg-blue);
}
.canvasBody .canvas-menu:hover .dot {
    opacity: 1;
}


.flow-text {
    display: flex;
    flex: 0 0 auto;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    font-family:  'Montserrat';

}
.flow-text.flow1 {
    width: 290px;
}
.flow-text.flow2 {
    width: 250px;
}
.flow-text.flow3 {
    width: 250px;
}
.flow-text.flow4 {
    width: 250px;
}
.flow-text.flow5 {
    width: 275px;
}
.flow-text:hover .flow-wrap {
    animation: textLoop 0.7s linear infinite;
    animation-play-state: running;
    animation-fill-mode: none;
    cursor: pointer;
}
.flow-wrap {
    padding-right: 3vw;
}
  
@keyframes textLoop {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }




.canvasBody .canvasLink {
    margin-top: 420px;
}
.canvasBody .canvas-link {
    margin: 10px 0 0;
    color: #fff;
}
.canvasBody .canvas-link a {
    display: flex;
    width: 200px;
    height: 45px;
    justify-content: space-between;
    align-items: center;
}
.canvasBody .canvas-link .linkHr {
    border: 1px solid #fff;
    opacity: 0;
    margin: 0;
    width: 0;
    transition: ease-in 0.25s;
}
.canvasBody .canvas-link a p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-family:  'Pretendard-Regular';

}
.canvasBody .canvas-link a .linkGo {
    padding-right: 70px;
    margin-bottom: 0.1rem;
    transition: ease-in 0.25s;
}
.canvasBody .canvas-link a img {
    height: 18px;
}
.canvasBody .canvas-link:hover .linkHr {
    opacity: 1;
    width: 200px;
}
.canvasBody .canvas-link:hover .linkGo {
    padding: 0;
}

.canvasSns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}
.canvasSns ul {
    margin: 0;
    padding: 0;
}
.canvas-sns {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    float: left;
    display: flex;
    text-align: center;
    align-items: center;
    margin-right: 12px;
    justify-content: center;
}
.canvas-sns:first-child {
    background: none;
    color: var(--jg-blue);
    margin-right: 7px;
}
.canvas-sns:last-child {
    margin: 0;
}
.canvas-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.canvas-sns i {
    color: #fff;
    width: 23px;
}
.canvas-sns img {
    width: 20px;
    margin: 0 auto;
}




/* ---- Fixed Banner ---- */

.fixed-banner {
    z-index: 1000;
}

.fixed-bnr_wu {
	top: 620px;
	position: fixed;
	height: 50px;
	border-radius: 25px;
	right: 25px;
	bottom: 170px;
    color: #333;
	box-shadow: 0 20px 40px rgb(17 20 39 / 15%);
    z-index: 1000;
}
.fixed-bnr_wu a {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixed-bnr_wu a img {
    height: inherit;
}

.fixed-bnr_kko {
	
	position: fixed;
	height: 50px;
	border-radius: 25px;
	right: 25px;
	top: 560px;
	bottom: 100px;
    color: #333;
	box-shadow: 0 20px 40px rgb(17 20 39 / 10%);
    z-index: 1000;
}
.fixed-bnr_kko a {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixed-bnr_kko a img {
    height: inherit;
}

.fixed-bnr_company {
	
	position: fixed;
	height: 50px;
	border-radius: 25px;
	right: 25px;
	top: 740px;
	bottom: 100px;
    color: #333;
	box-shadow: 0 20px 40px rgb(17 20 39 / 10%);
    z-index: 1000;
}
.fixed-bnr_company a {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixed-bnr_company a img {
    height: inherit;
}

.gototop {
	position: fixed;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	right: 25px;
	top: 850px;
	bottom: 30px;
    color: #333;
	background: #fff;
	box-shadow: 0 20px 40px rgb(17 20 39 / 15%);
    z-index: 1000;
}
.gototop a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gototop a:hover {
    color: var(--jg-blue);
}


/* ---- Category ---- */

.category {
    width: 100%;
    padding: 130px 0 0;
}
.category ul {
    display: flex;
    justify-content: flex-start;
    color: #616161;
    font-weight: 600;
	font-size: 15px;
    padding: 0;
    margin: 0;
    font-family: 'Pretendard-Regular';
}
.category ul .home {}
.category ul .fa-angle-right {
    margin: 0 20px;
}




/* ---- Tab Menu ---- */

.tabMenu {
    width: 100%;
    padding: 45px 0 0;
}
.tabMenu div {
    display: flex;
    justify-content: center;
    color: #777;
    font-weight: 700;
    padding: 0;
    margin: 0;
}
.tabMenu div a {
    width: 216px;
    height: 45px;
    text-align: center;
    border: 1px solid #d4d4d4;
    font-size: 13px;
    line-height: 45px;
    background: #fff;
    font-family:  'Pretendard-Regular';

}
.tabMenu div a.on {
    border: 1px solid var(--jg-blue);
    color: var(--jg-blue);
    background: var(--jg-skyblue);
}







/* ---- Footer ---- */

#footer {
    margin:0;
    padding: 60px 0 40px;
	color: #a4a4a4;
	background: #252525;
}
#footer #container {
    display:flex;
    justify-content:space-between;
    position:relative;
    width:100%;
    max-width:1720px;
    margin:0 auto;
    padding:24px 0;
    box-sizing:border-box;
}


#footer #container.info {
    color: #fff;
    display: flex;
    align-items:flex-end;
    justify-content: space-between;
}
#footer #container.info .ft_left {}
#footer #container.info .ft_right {
    flex-direction: row-reverse;
}

#footer #container.info .ft_left .ft_tit {
    font-size: 18px;
    /* letter-spacing: -0.05em; */
    margin-bottom: 55px;
    color: #fff;
    font-family:  'Pretendard-Regular';

}


#footer #container.info .ft_left .ft_cs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 35px;
}
#footer #container.info .ft_left .ft_cs a {
    font-weight: 600;
    font-size: 22px;
    margin-right: 45px;
    display: flex;
    font-family:  'Pretendard-Regular';

}
#footer #container.info .ft_left .ft_cs a>img {
    width: 10%;
    height: 80%;
    margin-right: 20px;
}


#footer #container.info .ft_left .txt {
    font-size: 13px;
    font-family:  'Pretendard-Regular';

}
#footer #container.info .ft_left .txt p {
    display: flex;
    justify-content: flex-start;
}
#footer #container.info .ft_left .txt span {
    margin-right: 20px;
}


#footer #container.info .ft_right .logoW {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 25px;
}
#footer #container.info .ft_right .logoW img {
    width: 130px;
}


#footer #container.info .ft_right .snsWrap {
    display: flex;
    justify-content: flex-start;
	padding-right: 110px;
	padding-bottom: 7px;
	margin-left: 0px;
}
#footer #container.info .ft_right .snsWrap .item {
    width:45px;
    height: 45px;
    margin-left: 8px;
    border-radius:50%;
    overflow:hidden;
    background: #43464b;
}
#footer #container.info .ft_right .snsWrap .item img {
    width: 100%;
}


#footer .copy {
    border-top: 1px solid #494949;
}
#footer .copy .copyright {
    font-size: 13px;
    font-family:  'Pretendard-Regular';

}
#footer .copy .footModal {
    display: flex;
	
}
#footer .copy .footModal .footBtn {
    font-size: 13px;
	margin-left: 20px;
    border: 0;
    color: #fff;
	background: #252525;
    /* letter-spacing: -0.05em; */
    font-weight: 400;
    padding: 0;
    font-family:  'Pretendard-Regular';

}
#footer .copy .footModal .footBar {
    color: #fff;
    padding: 0 10px;
}
#footer .copy .footModal .modal {
    color: #000;
}
#footer .copy .footModal .modal-dialog {max-width: 1000px;}
#footer .copy .footModal .modal-body {text-align: left;}













