
/* CSS Document */

/* @font-face {
    font-family: "Roboto";
    src: url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
} */

@font-face {
    font-family: "NotoSansKR";
    src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500&display=swap');
}

/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500&display=swap');


/*  */

.swiper-container {
    padding-bottom: 0;
    margin-bottom: 0;
}


body, h1, h2, h3, h4, h5, h6, p, ul, ol, table, dl, dd {
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 1em;
}
a {
	text-decoration: none;
	color: #000;
}
ul, ol {
	list-style: none;
}
img {
	max-width: 100%;
	vertical-align: top;
	border: none;
}
input::placeholder {
	color: #ccc;
}

body {
	overflow-y: auto;
	font-family: "Noto Sans KR", sans-serif;
}
/* header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding-left: 60px;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
    z-index: 999;
    transition: background-color 0.3s, box-shadow 0.3s;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo img {
    height: 50px;
}
header .logo h1 a {
    display: flex;
    gap: 10px;
    font-size: 1.5em;
    font-weight: 500;
    color: #3C4E8C;
    line-height: 49px;
    white-space: nowrap;
}
.gnb  {
    padding-right: 60px;
}
.gnb > ul {
    width: 100%;
    display: flex;
    position: relative;
    z-index: 1000;
}
/*  */

.gnb ul li {
    position: relative;
}

.gnb ul li ul {
    position: absolute; 
    top: 100%;
    left: 0;
    display: none; 
    z-index: 999; 
    background-color: #1a1f31d5; /* 이미지의 배경색과 일치 */
}

.gnb ul li.active ul {
    top: 90px;
    display: block; 
}

.gnb ul li ul li {
    padding: 15px 20px; 
    /* white-space: nowrap;  */
    text-align: center;
    color: #fff; /* 이미지에서 본 것처럼 흰색 텍스트 */
    font-size: 1.125em;
}

.gnb ul li ul li a {
    color: #fff; 
}
/* 

.gnb.active .gnb_bg {
    display: block; 
} */


/*  */
.gnb > ul > li > a {
    display: inline-block;
    line-height: 90px;
    font-size: 1.25em;
    padding: 0 60px;
    font-weight: 500;
    white-space: nowrap;
}

.gnb > ul > li:hover > a {
    font-weight: 600;
    box-sizing: border-box;
}
.gnb ul li ul li:hover a {
    font-weight: bold;
}
.gnb li ul {
    display: none;
    width: 100%;
    /* padding-right: 50px; */
    
}

/* .gnb.active > ul > li:hover a {
    border-bottom: 1px solid #000;
} */
.gnb li.active ul {
    position: absolute;
    left: -11%;
    /* height: 63px; */
}

.gnb li ul a {
    white-space: nowrap;
    font-weight: 500;
}
.gnb.active > ul > li > a,
.gnb > ul > li.active > a {
    color: #999;

}
.mobile {
    display: none;
    position: fixed;
    left: 0;
    top: 80px;
    background-color: #fff;
    width: 100%;
	height: calc(100vh - 90px);
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;;
}
.mobile.active {
	display: block;
}
.mobile > ul {
    margin-top: 20px;
    height: 90%;
    overflow-y: auto;
}
.mobile > ul ::-webkit-scrollbar {
    width: 8px;
    background-color: #eaeaea;
}
.mobile > ul ::-webkit-scrollbar track {
    border-radius: 8px;
}
.mobile > ul ::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #999
}
.mobile > ul > li > a {
    display: inline-block;
    position: relative;
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    line-height: 50px;
    border-bottom: solid 1px #000;
}
.mobile > ul > li > a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 45%;
    width: 2px;
    height: 12px;
    background-color: #000;
    transition: 0.3s;
}
.mobile > ul > li.active > a::before {
    transform: rotate(90deg);
}
.mobile > ul > li > a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 45%;
    width: 2px;
    height: 12px;
    background-color: #000;
    transition: 0.3s;
    transform: rotate(90deg);
}
.mobile li ul {
    display: none;
}
.mobile li ul a {
    display: block;
    width: 100%;
    font-size: 1em;
    line-height: 40px;
}
header .m_tab {
    display: none;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 25px;
    cursor: pointer;
}
header .m_tab span {
    width: 100%;
    height: 3px;
    background-color: #000;
}
header .m_tab.active span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
header .m_tab.active span:nth-child(1) {
transform: rotate(45deg);
}
header .m_tab.active span:nth-child(2) {
display: none;
}
header .m_tab.active span:nth-child(3) {
transform: rotate(-45deg);
}


@media only screen and (max-width: 1530px) {
	header {
		padding-left: 30px;
	}
}

@media only screen and (max-width: 1250px) {
    header .logo h1 a {
        font-size: 1em;
    }
    .gnb > ul > li > a {
        font-size: 1em;
        padding: 0 45px;
    }
}
@media only screen and (max-width: 940px) {
    header {
        height: 80px;
    }
    .gnb {
        display: none;
    }
    header .m_tab {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .mobile {
        height: calc(100vh - 80px);
    }
}
@media only screen and (max-width: 750px){
    header {
        padding-left: 20px;
    }
    header .logo img {
        height: 40px;
    }
    header .logo h1 a {
        font-size: 0.65em;
    }
}
@media only screen and (max-width: 380px) {

    header .logo h1 a {
        font-size: 0.875em;
    }
}
/* main slider */
.main_content {
    overflow: hidden;
    margin-top: 90px;
}
.main_slider {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}
.main_content .main_slider .keyvisual {
	position: relative;
	width: 100%;
    overflow: hidden;
    height: calc(100vh - 90px); 
}
.main_content .main_slider .keyvisual li {
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.main_content .main_slider .keyvisual li.active {
	z-index: 5;
}
.main_content .main_slider .keyvisual li .key_img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height:100%;
	background-color: #000;
	opacity: 0;
	transform: scale(1);
	transition: transform 1.5s ease;
}
.main_content .main_slider .keyvisual li.active .key_img {
	opacity: 1;
	transform: scale(1.1);
}
.main_content .main_slider .keyvisual li.active .key_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    will-change: opacity, transform;  /* 성능 개선 */
}

.mainslide_txt {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 90px;
    color: #fff;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    text-align: center;
    z-index: 2;
    font-family: 'NotoSansKR';
    word-spacing: 5px;
}
.mainslide_txt span {
    font-size: 1.5em;
    font-weight: 400;
}
.mainslide_txt span strong {
    font-size: 1.875em;
    color: rgb(91, 155, 213);
}
.mainslide_txt p {
    font-weight: 400;
    display: block;
    /* margin-top: 7px; */
    font-size: 1.5em;
}


.mainslide_sub_txt {
    position: absolute;
    /* width: 100%; */
    left: 10%;
    top: 30%;
    color: #fff;
    text-align: left;
    z-index: 2;
    font-family: 'NotoSansKR';
    text-align: left;
    display: flex;
    flex-direction: column;
    text-shadow: 3px 4px 5px #000;
}
.mainslide_sub_txt strong {
    font-size: 6em;
}
.mainslide_sub_txt span {
    display: block;
    margin-top: 10px;
    font-size: 2.3em;
    font-weight: normal;
}
.main_content .main_slider .keyvisual .m_txt h2 {
	position: relative;
    display: block;
    margin-bottom: 15px;
	line-height: 1.125em;
	font-size: 3em;
	font-weight: 600;
	opacity: 0;
	transform: translateY(50px);
	/* transition: opacity 1.5s, transform 1.5s; */
	transition-delay: 1s;
}
.main_content .main_slider .keyvisual li.active .m_txt h2 {
	opacity: 1;
	transform: translateY(0);
}
/*  */
.main_content .main_slider .keyvisual .m_txt_inner {
	position: relative;
    width: 100%;
    height: 150px;
    background-color: #fff;
}
.main_content .main_slider .keyvisual .m_txt {
	position: absolute;
	left: 0;
	bottom: 150px;
	color: #000;
    z-index: 1;
}
.main_content .main_slider .keyvisual .m_txt h2 {
	position: relative;
    display: block;
    margin-bottom: 15px;
	line-height: 1.125em;
	font-size: 3em;
	font-weight: 600;
	opacity: 0;
	transform: translateY(50px);
	/* transition: opacity 1.5s, transform 1.5s; */
	transition-delay: 1s;
}
.main_content .main_slider .keyvisual li.active .m_txt h2 {
	opacity: 1;
	transform: translateY(0);
}
.main_content .main_slider .keyvisual .m_txt span {
	display: block;
	margin-bottom: -6px;
	font-size: 0.741em;
	font-weight: 300;
}
.main_content .main_slider .keyvisual .m_txt p {
	position: relative;
	top: 18px;
	line-height: 1.625em;
	font-size: 1.125em;
	font-weight: 300;
	opacity: 0;
	transform: translateY(50px);
	/* transition: opacity 1.5s, transform 1.5s; */
	transition-delay: 1.5s;
}
.main_content .main_slider .keyvisual li.active .m_txt p {
	opacity: 1;
	transform: translateY(0);
}
/*  */
.main_content .main_slider .controller_inner {
	position: relative;
	margin-left: 180px;
}
.main_content .main_slider .controller {
	position: absolute;
	left: 0;
	bottom: 90px;
	z-index: 10;
	/* width: 154px; */
	height: 8px;
}
.main_content .main_slider .controller li {
	display: inline-block;
	margin-left: 10px;
}
.main_content .main_slider .controller li:first-child{
	margin-left: 0;
}
.main_content .main_slider .controller li a {
	display: block;
	width: 42px;
	height: 12px;
	background-color: #fff;
}
.main_content .main_slider .controller li.on a{
	background-color: #f8ab03;
}
.main_content .main_slider .main_scroll {
	position: absolute;
	left: 49%;
	bottom: 25px;
	z-index: 10;
	animation: ico_move 3s infinite;
	animation-timing-function: ease;
	cursor: pointer;
}


@keyframes ico_move {
	0% {
		bottom: 0px;
	}
	50% {
		bottom: 35px;
	}
	100% {
		bottom: 15px;
	}
}

.main_content .main_slider .main_scroll img {
	max-width: 100%;
}


@media only screen and (max-width: 1380px) {

} 
@media only screen and (max-width: 1280px) {

} 
@media only screen and (max-width: 1180px) {

} 

@media only screen and (max-width: 1200px) {
	.main_content .main_slider .keyvisual .m_txt_inner {
		margin-left: 130px;
	}
	.main_content .main_slider .controller_inner {
		margin-left: 130px;
	}
}

@media only screen and (max-width: 1080px) {

	.main_content .main_slider .keyvisual .m_txt_inner {
		margin-left: 100px;
	}
	.main_content .main_slider .controller_inner {
		margin-left: 100px;
	}
}
@media only screen and (max-width: 940px) {
    .main_content {
        margin-top: 80px;
    }
    .mainslide_txt {
        top: 80px;
    }
	.gnb {
		display: none;
	}
	/* header .m_tab {
        display: block;  /* 탭이 보이도록 설정 *
    } */
	.main_content .main_slider .keyvisual .m_txt_inner {
        margin-left: 50px;
    }
}
@media only screen and (max-width: 800px) {
	.main_slider {
		font-size: 0.75em;
	}
	header .menu_zone .logo {
		left: 15px;
	}
	header .menu_zone .logo a {
		width: 80px;
	}
	header .menu_zone .menu {
		right: 27px;
	}
	.main_content .main_slider .keyvisual .m_txt_inner {
		margin: 0 27px;
	}
	.main_content .main_slider .controller_inner {
		margin-left: 27px;
	}
	.main_content .main_slider .main_scroll {
		display: none;
	}
}
@media only screen and (max-width: 600px) {
	header .m_tab {
		right: 30px;
		top: 50%;
        z-index: 1000 !important;
    }
    .main_content .main_slider .keyvisual .m_txt h2 {
        font-size: 2.5em;
    }
    .main_content .main_slider .controller li a {
        width: 30px;
        height: 8px;
    }
}
@media only screen and (max-width: 380px) {
	.main_slider {
		font-size: 0.625em;
	}
    .mainslide_sub_txt {
        width: 100%;
        left: 17px;
    }
    .vision_card ul li .txt {
        position: absolute;
        left: 0;
    }
    .mainslide_sub_txt strong {
        font-size: 2em;
    }
    .mainslide_sub_txt span  {
        width: 90%;
        font-size: 1.5em
    }
}


/* sec1 */
.vision_section {
	margin: 0 auto;
    text-align: center;
	width: auto;
	overflow: hidden;
	margin-top: 130px;
	font-size: 1em;
}
.vision_section .title {
    text-align: center; /* 텍스트를 가로로 가운데 정렬 */
    padding: 0 50px;
}
.vision_section .title h2 {
	/* margin-bottom: 30px; */
	font-size: 3em;
    color: #0070c0;
}
.line {
    width: 150px; /* 선의 너비를 설정 */
    height: 5px; /* 선의 높이 */
    background-color: #0070c0; /* 파란색 선 */
    margin: 10px auto; /* 상하 간격 설정 및 가운데 정렬 */
}
.vision_section .title  span {
    font-size: 1.85em;
    font-weight: 600;
}
.vision_section .title  span strong {
    font-size: 1.875em;
    font-weight: 600;
    color: #0070c0; 
}
.vision_card {
	margin-top: 30px;
}

/* .vision_card ul {
    display: flex;
    justify-content: center;
} */
.vision_card ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4개씩 배치 */
    justify-items: center;
}
.vision_card ul li {
    width: 100%; /* 각 아이템의 너비를 부모 컨테이너에 맞춤 */
    height: 600px;
}
/* .vision_card ul li {
	flex: 1;
	width: calc((100% - 105px)/4);
} */
.vision_card ul li .img {
	width: 100%;
    height: 600px;
	overflow: hidden;
}
.vision_card ul li .img img {
    transition: transform 1s;
    will-change: transform;
    height: 600px;
    width: 100%;
}
.vision_card ul li .txt {
	position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
	text-align: left;
	color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    height: 100%;
    font-size: 1.125em;
}
.vision_card ul li .txt .txt_con {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50% ,50%);
    text-align: center;
    padding: 0 10px;
    color: #fff;
}
.vision_card ul li .txt .txt_con h3 {
    font-size: 1.75em;
    color: #79c8ff;
    display: block;
    line-height: 1.4em;
    margin-bottom: 30px;
    transition: all 0.6s;
    font-weight: 700;
}
.vision_card ul li .txt .txt_con span {
    font-size: 2.625em;
    color: #ffffff;
    line-height: 1.2em;
    margin-bottom: 50px;
    font-family: 'Roboto';
}
.vision_card ul li .txt .txt_con .txt_on {
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s;
}
.vision_card ul li .txt .txt_con .txt_on p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5em;
    padding: 0 15px;
}
.vision_card ul li .txt .txt_con .viewmore a {
    display: inline-block;
    width: 230px;
    line-height: 68px;
    font-size: 20px;
    margin-top: 40px;
    font-family: 'Montserrat';
    border: 1px solid #fff;
    border-radius: 35px;
    color: #fff;
    transition: all 0.6s;
}
.vision_card ul li .txt .txt_con .viewmore:hover a {
    border: 1px solid #fff;
    border-radius: 35px;
    transition: all 0.6s;
    background-color: #fff;
}
.vision_card ul li .txt .txt_con .viewmore:hover a {
    color: #3C4E8C !important;
    transition: all 0.4s;
}

@media screen and (max-width: 1420px) {

    .vision_section h2 { 
		font-size: 2.7em; 
	}
}
@media screen and (max-width: 1199px) {

    .vision_section h2 { 
		font-size: 2em; 
		margin-bottom: 45px; 
	}

}

@media screen and (max-width: 940px) {
    
    /* .vision_section ul {
		display: flex;
		flex-direction: column;
		gap: 0;
	} */
    .vision_section ul { 
        grid-template-columns: repeat(2, 1fr); /* 2단 배치 */
	}
    .vision_section ul li { 
		width: 100%; 
    }
    /* .vision_section ul li .img  {
        margin-bottom: 30px;
    } */
	/* .vision_section {
		padding: 0 50px;
    } */
    /* .vision_card ul li .txt {
        padding: 35px 5px;
    }
    .idc_cards ul li .txt p {
        font-size: 0.875em;
    }
    .vision_card h3, .vision_card p{
        margin: 0 12px;
    } */
}

@media screen and (max-width: 767px) {

    .vision_section { 
		padding:0 0 0; 
	}
    /* .vision_section .inner { 
		padding: 0 15px; 
	} */

    .vision_section h2 { 
		font-size: 1.875em; 
		margin-bottom: 35px; 
	}

    /* .vision_section ul {
		padding: 0 15px;
	} */
}

@media screen and (max-width: 640px) {
    .vision_section ul { 
        grid-template-columns: 1fr; /* 2단 배치 */
	}
}
@media screen and (max-width: 480px) {
    .vision_section .title {
        text-align: center;
        padding: 0 20px;
    }
    .vision_section .title span {
        font-size: 1em;
        font-weight: 600;
    }
    .vision_section .title h2 {
		font-size: 2.5em;
	}
    .vision_section ul li { 
		flex: 1;
        width: 100%;
        height: auto; 
	}
	.vision_section ul li .img {
		width: 100%;
		/* height: 150px; */
		overflow: hidden;
	}
	.vision_card ul li .img img {
        object-fit: cover;
        width: 100%;
        /* object-position: 50% -60px; */
	}
    .vision_card h3, .vision_card p {
        font-size: 0.875em;
    }
    .vision_section .title h2 {
        margin-bottom: 30px;
        font-size: 2.5em;
        color: #0070c0;
    }
    .vision_card ul li .txt .txt_con .txt_on p {
        font-size: 0.75em;
    }
}
@media screen and (max-width: 310px) {
	.vision_card ul li .img img {
        object-fit: cover;
        width: 100%;
        /* object-position: 50% -33px; */
	}
    .vision_card h3, .vision_card p {
        font-size: 0.75em;
    }
}

/* sec2 */



.idc_section {	
	overflow: hidden;
    position: relative;
    padding: 150px 0 0;
    z-index: 2;
	margin-top: 120px;
}
/* .idc_section::before {
	content: '';
    display: block;
    /* width: calc(100% - 310px); *
	width: 100%;
    height: 510px;
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: -1; *
	background: url(../img/main/bg.jpg) no-repeat center / cover;
    /* background-attachment: fixed; *
} */
.idc_section_bg {
    display: block;
	width: 100%;
    height: 510px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
	background: url(../img/main/bg.jpg) no-repeat center / cover;
}
.idc_section h2 {
	color: #fff;
	margin-bottom: 50px;
	font-size: 2.5em;
	margin-left: 120px;
	max-width: 1445px
}
.idc_cards {
    padding: 0 120px;
    margin: 0 auto;
    position: relative;
}

.idc_cards ul {
	display: flex;
	height: 350px;
}

.idc_cards ul li:nth-child(1) {
	background: url(../img/main/banner_bg_01.jpg) no-repeat;
}
.idc_cards ul li:nth-child(2) {
	background: url(../img/main/banner_bg_02.png) no-repeat;
}
.idc_cards ul li:nth-child(3) {
	background: url(../img/main/banner_bg_01.jpg) no-repeat;
}
.idc_cards ul li {
	width: 50%;
    position: relative;
    background: 50% / cover no-repeat;
    padding: 0px 50px 60px 58px;
}
.idc_cards ul li .icon {
	display: flex;
	justify-content: space-between;
	transition: 0.5s;
    margin-top: 15px;
}
.idc_cards ul li .icon i {
	display: block;
	transition: .5s;
}
.idc_cards ul li .icon i:hover {
	transform: rotateY(180deg);
}
.idc_cards ul li:hover .icon i {
    transform: rotateY(180deg); /* li hover 시 아이콘 회전 */
}
.idc_cards ul li .icon img {
	width: 80px;
	height: 80px;
}
.idc_cards ul li .txt {
	position: absolute;
    top: 15%;
} 
.idc_cards ul li .txt h3 {
	font-size: 1.875em;
    font-weight: 700;
    color: #fff;
    line-height: 1;
	margin-bottom: 15px;
}
.idc_cards ul li .txt h3::before {
	content: '';
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 12px;
    background-color: #fff;
}
.idc_cards ul li .txt p {
	font-size: 1.125em;
    font-weight: 400;
    color: #fff;
}
.op_icon {
	position: absolute;
	right: 0;
	bottom: 0;
}

@media screen and (max-width: 1200px) {
	.idc_cards ul li {
		padding: 46px 28px 60px 15px;
	}
	.idc_cards ul li .txt p {
		font-size: 0.875em;
	}
}

@media screen and (max-width: 940px) {
	.idc_cards {
		padding: 0 50px;
	}
	.idc_section h2 {
		margin: 0 50px;
        margin-bottom: 30px;
	}
	.idc_cards ul  {
		display: flex;
		flex-direction: column;
		height: auto;
        /* gap: 30px; */
	}
	.idc_cards ul li {
		width: auto;
		background: 100% / cover no-repeat;
		padding: 25px 15px 30px 15px;
        height: 220px;
	}
	.idc_cards ul li:nth-child(1),
	.idc_cards ul li:nth-child(2),
	.idc_cards ul li:nth-child(3) {
		background-size: 100%;
	}
	.op_icon {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.idc_section {
		padding: 0 30px ;
	}
	.idc_section h2 {
		font-size: 1.75em;
		margin: 90px 0 20px 0;
	}
	.idc_cards {
		padding: 0 0;
	}
	.idc_cards ul  {
		display: flex;
		flex-direction: column;
		height: auto;
	}
	.op_icon {
		display: none;
	}
	.idc_cards ul li:nth-child(1),
	.idc_cards ul li:nth-child(2),
	.idc_cards ul li:nth-child(3) {
		background-size: unset;
	}
	.idc_cards ul li .icon img {
		width: 60px;
		height: 60px;
	}
}
@media screen and (max-width: 540px) {
    .idc_section h2 {
		font-size: 1.5em;
		margin: 90px 0 20px 0;
	}
    .idc_cards ul li .txt h3 {
        font-size: 1.125em;
    }
}

@media screen and (max-width: 380px) {
    .idc_section h2 {
		font-size: 1.25em;
		margin: 90px 0 20px 0;
	}
}

/* sec3 */

.notice_section {
    margin: 0 auto;
    padding: 50px 120px;
    text-align: center;
    width: auto;
    overflow: hidden;
    font-size: 1em;
    margin-top: 180px;
    padding-bottom: 200px;
}

.notice_item ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.notice_item ul li {
    display: flex;
    flex-direction: column;
    width: calc(100% / 3 - 20px); /* 세 칸 레이아웃 */
    margin-right: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.notice_item ul li:last-child {
	margin-right: 0;
}
.notice_item ul li .img {
    position: relative;
    width: 100%;
    padding-top: 56%; /* 16:9 비율로 설정 (100% * 9 / 16) */
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.notice_item ul li .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지가 부모 컨테이너에 맞게 잘리도록 설정 */
}

.notice_item ul li .txt {
    padding: 20px;
    text-align: center;
    height: auto;
}


.notice_item ul li .txt h3 {
    margin: 10px 0;
    font-size: 1.25em;
    font-weight: 600;

}

.notice_item ul li .txt p {
    margin: 10px 0;
    font-size: 1em;
    color: #555;
}
@media screen and (max-width: 940px) {
	.notice_section {
		padding: 50px 50px;
        padding-bottom: 120px;
	}
}
/* 840px 이하에서 세로로 쌓이게 설정 */
@media screen and (max-width: 840px) {
	.notice_section {
		padding: 50px 50px;
	}
    .notice_item ul {
        display: block; /* 세로 정렬을 위해 block으로 변경 */
    }

    .notice_item ul li {
        width: 100%; /* 각 항목이 100% 너비를 차지하도록 설정 */
        margin-bottom: 20px; /* 항목 간격 추가 */
    }
}
@media screen and (max-width: 767px) {
	.notice_section {
		padding: 50px 30px;
	}
    
}
@media screen and (max-width: 420px) {
    .notice_item ul li .txt h3 {
        font-size: 1em;
    }
    .notice_item ul li .txt p {
        font-size: 0.875em;
    }
}
/* 푸터 */

footer {
	margin: 0 auto;
	overflow: hidden;
    margin-top: 80px;
    padding: 20px 60px;
	font-size: 1.125em;
    background-color: #333;
    color: white;
    
}

footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 40px;
}
footer .bottom .txt {
	font-size: 0.875em;
}
footer .bottom .txt {
    text-align: left;
}
footer .bottom .txt strong {
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}
footer .bottom .txt p {
	display: flex;
	flex-direction: column;
	text-align: left;
	word-break: keep-all;
	color: #ccc;
}
footer .bottom .copyright {
	font-size: 0.75em;
	text-align: left;
	margin-top: 15px;
	opacity: 0.7;
}
footer .bottom .img {
	width: 100px;
}
footer .bottom .img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.9;

    max-width: 100px; /* 최대 크기를 고정 */
    min-width: 100px; /* 최소 크기를 고정 */
}
footer .bottom .right img {
    height: 80px;
}

@media screen and (max-width:940px) {
    footer .bottom {
        margin-top: 10px;
        display: flex;
        gap: 20px;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    footer .bottom .img {
        width: 80px;
        max-width: 80px; 
        min-width: 80px;
    }
    footer .bottom .img img {
        max-width: 80px; 
        min-width: 80px;
    }
    footer .bottom .txt p {
        font-size: 0.875em;
    }
}
@media screen and (max-width:940px) {
    footer {
        padding: 20px 50px;
    }
}
@media screen and (max-width:767px) {
    footer {
        padding: 20px 30px;
    }
	footer .footer_inner {
		padding: 50px 15px;
	}
}
@media screen and (max-width:580px) {
	footer {
		margin-top: 50px;
	}
	footer .footer_inner {
		padding: 25px 15px;
	}
	footer .top strong {
		display: none;
	}
	footer .top ul {
		margin-left: 0px;
		font-size: 0.875em;
	}
	footer .top ul li  {
		padding: 0 15px;
	}
}


/* 회사소개 */
#comment {
    padding-top: 100px;
}

.ceo_comment_title {
    padding: 0 24px;
    margin-top: 150px;
}
.comment1_title,
.comment1_txt,
.comment2_title,
.map_wrapper .map_title,
.cont02, .cont03, .cont04 {
    padding: 0 24px;
}
.org_chart_wrapper {
    padding: 0 24px;
}
.qualific_wrapper {
    padding: 50px 24px 0;
}
.cont .inBoxMap {
    /* width: 700px; */
    max-width: none;
    border: 1px solid #000;
}
.root_daum_roughmap  {
    width: 100%;
    height: 400px;
}
.top_img {
    margin-top: 90px;
    width: 100%;
    /* height: 440px; */
}

.top_img img {
    width: 100%;
    height: 100%;
}
.sub_tab {
	height: 70px; 
	background-color: #65b3d4; 
	display: flex; 
    justify-content: center;
	margin: 0 auto;
    padding: 0 50px;
}
.sub_tab_item.active {
    background-color: #3c4e8c;  
    color: #fff; 
}

.sub_tab_item {
    width: 23%;
	text-align: center;
	font-weight: 400; 
	font-style: normal; 
	font-size: 18px; 
	line-height: 70px;
	color: #ffffff;
	
}
.sub_tab_item:hover {
	cursor: pointer;
	background-color: #3c4e8c;
}

.page_title {
    max-width: 1200px; 
    height: 120px; 
    font-weight: 700; 
    font-style: normal; 
    padding: 0 24px;
    font-size: 2.875em; 
    line-height: 57.92px; 
    margin:auto; 
    margin-top: 80px; 
    text-align: center; 
    font-family: 'NotoSansKR';
}
.ceo_comment {
    max-width: 1200px; 
    margin:auto; 
    margin-top: 50px; 
    margin-bottom:220px;
}
.comment1 {
    padding: 0 24px;
    text-align: center;
	font-weight: 400;
	font-style: normal;
	font-size: 28px;
	line-height: 40.54px;
	font-family: 'NotoSansKR';
}
.comment1_txt {
    /* text-align: center; */
	font-weight: 400;
	font-style: normal;
	font-size: 28px;
	line-height: 40.54px;
	font-family: 'NotoSansKR';
}
.ceo_comment_title {
    max-width: 1200px; 
    padding-top: 100px;
    height: 58px; 
    font-weight: 700; 
    font-style: normal; 
    font-size: 40px; 
    line-height: 57.92px; 
    margin: 0 auto; 
    font-family: 'NotoSansKR';
    margin-bottom: 30px;
}

.ceo_comment {
    max-width: 1200px; 
    margin:auto; 
    margin-top: 30px;
}

.comment1_title {
    margin-top: 20px;
    margin-bottom: 43px;
	font-weight: 700;
	font-style: normal;
	font-size: 2em;
	line-height: 30px;
	font-family: 'NotoSansKR';
}
.comment2_title {
    max-width: 1200px; 
    height: 58px; 
    font-weight: 700; 
    font-style: normal; 
    font-size: 40px; 
    line-height: 57.92px; 
    margin:auto; 
    margin-top: 100px; 
    font-family: 'NotoSansKR';
}
.ceo_comment2 {
    max-width: 1200px; 
    margin:auto; 
    margin-top: 30px;
}
.ceo_comment2 .comment1_txt strong {
    font-size: 1.125em;
}
.ceo_comment2 .comment1_txt p {
    font-size: 1em;
}
.org_chart_wrapper {
    margin: 0 auto;
    max-width: 1200px;
    margin-top: 100px;
    padding: 0 24px;
    margin-bottom: 50px;
}
.org_chart_title {
    max-width: 1200px;
    height: 58px;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 57.92px;
    margin: auto;
    margin-top: 100px;
    font-family: 'NotoSansKR';

}
.org_chart_img {
    /* max-width: 1200px; 
    height: 700px;  */
    margin: 0 auto; 
    margin-top: 50px;
}
.org_chart_img img {
    width: 100%;
    height: 100%;
}
.map_wrapper {
    margin: 0 auto;
    /* padding: 70px 0 0;  */
    width: 100%;
    /* margin-top: 50px; */
    max-width: 1200px;

}
.map_wrapper .map_title {
    /* height: 90px;  */
    font-weight: 700; 
    font-style: normal; 
    font-size: 40px; 
    line-height: 57.92px; 
    margin:auto; 
    font-family: 'NotoSansKR';
}
.box1, .box2, .box3, .box4 {
    display: inline-block;
    font-family: 'NotoSansKR';
    font-size: 1em;
    padding: 5px;
    text-align: center;
    width: 15%;
    line-height: 1.8em;
    font-weight: 700;
    background: #fff;
    color: #000000;
    border: 1px solid #3C4E8C;
    border-width: 1px 1px 0;
    letter-spacing: 0;
	position: relative;
	bottom: -5px;
	/* font-family: 'Roboto'; */
	font-family: 'NotoSansKR';
    cursor: pointer;
}

.box1:hover, .box2:hover, .box3:hover, .box4:hover {
	color: #000000;
	cursor: pointer;
	border: 5px solid #3C4E8C;;
	position: relative;
	bottom: 0px
}  
.tab_check {
	border: 5px solid #3C4E8C;
	color: #000000;
	position: relative;
	bottom: 0;
}
.tab2_content, .tab3_content, .tab4_content {
	display: none;
}
.inBoxMap dl dd {
    font-weight: 400;
    font-style: normal;
    font-size: 1.5em;
    line-height: 50px;
    white-space: nowrap;
    margin-left: 0 !important;
}
.cont {
    /* width: 1200px;  */
    margin: auto;
    padding: 60px 0;
}
.cont .cont02 .inBoxMap .tab {
    border-bottom: 1px solid black; 
    /* margin-bottom: 10px; */
}

.cont .inBoxMap {
    width: 100%;
    /* max-width: 1200px; */
    height: 700px;
    overflow: hidden;
}
.root_daum_roughmap {
    width: 100%; 
    height: 100%;  
    padding-bottom: 30px; 
    /* position: relative; */
}

.root_daum_roughmap .map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.qualific_wrapper {
    margin: 0 auto;
    max-width: 1200px;  
    /* margin-top: 100px; */
    padding-top: 50px ;
    z-index: 10;

}
.qualific_title {
    font-weight: 700; 
    font-style: normal; 
    font-size: 40px; 
    /* line-height: 57.92px;  */
    margin:auto; 
    margin-bottom: 46px; 
    font-family: 'NotoSansKR';
}
.qualific_img {
    /* height: 75px;  */
    margin: 0 auto; 
    /* margin-bottom: 236px; */
}
.qualific_img img {
    width: 100%;
    /* height: 100%; */
}

.contact_wrapper {
    margin: 0 auto;
    max-width: 1200px;
    margin-top: 100px;
    padding: 50px 24px;
    margin-bottom: 50px;
}
.contact_wrapper .sub_txt p {
    display: block;
    margin-top: 30px;
    font-size: 1.25rem !important;
    font-weight: 400;
}
.contact_title {
    font-weight: 700; 
    font-style: normal; 
    font-size: 40px; 
    /* line-height: 57.92px;  */
    margin:auto; 
    margin-bottom: 80px; 
    font-family: 'NotoSansKR';
}
.contact_con {
    margin-top: 50px;
}
.contact_con .contact_adress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}
.contact_con .contact_icon {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact_con .contact_icon img {
    width: 20%;
}
.contact_con .contact_adress .button {
    width: 150px;
    height: auto;
}

/* 모바일 반응형 */
@media screen and (max-width: 940px) {
	.top_img img {
		width: 100%;
		/* height: 400px;
		object-fit: cover;
		object-position: 24% 50%; */
	}

}
@media screen and (max-width: 860px) {
    .sub_tab {
        padding: 0 25px;
    }
    .sub_tab_item {
        font-size: 1em !important;
        /* line-height: 0px; */
    }
    .page_title,
    .ceo_comment_title,
    .comment2_title,
    .org_chart_title,
    .map_wrapper .map_title,
    .qualific_title   {
        font-size: 2rem;
    }
    .comment1_title {
        font-size: 1.875em;
    }
    .comment1,
    .comment1_txt   {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 700px) {
    .sub_tab_item {
        font-size: 1em !important;
        /* line-height: 0px; */
    }
    .contact_wrapper {
        margin: 0 auto;
        max-width: none;
        /* margin-top: 100px; */
        padding: 50px 24px;
        margin-bottom: 50px;
    }
    .contact_title {
        font-weight: 700; 
        font-style: normal; 
        font-size: 2.15em; 
        /* line-height: 57.92px;  */
        margin:auto; 
        margin-bottom: 80px; 
        font-family: 'NotoSansKR';
    }
    .contact_con {
        margin-top: 50px;
    }
    .contact_con .contact_adress {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        font-size: 1.125rem;
    }
    .contact_con .contact_icon {
        display: flex;
        align-items: center;
    }
    .contact_con .contact_adress .button {
        width: 150px;
        height: auto;
    }
    
}

@media screen and (max-width: 600px) {
    .sub_tab {
        padding: 0 ;
    }
    .sub_tab_item {
        font-size: 0.875em !important;
        /* line-height: 0px; */
    }
    .contact_con .contact_adress {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        font-size: 0.875em;
    }
    .contact_con .contact_adress .button {
        width: 70px;
        height: 30px;
    }
    .contact_con .contact_adress .button img {
        width: 100%;
        height: 100%;
    }
    
    .contact_wrapper .sub_txt p {
        font-size: 0.875rem !important;
    }
}
@media screen and (max-width: 560px) {
    /* .top_img img {
        object-fit: cover;
        object-position: 22% 50%;
    } */
    .sub_tab ul {
        padding: 0 12px;
    }
    .sub_tab_item {
        padding: 0 2px;
    }
    .page_title,
    .ceo_comment_title,
    .comment2_title,
    .map_wrapper .map_title,
    .qualific_title   {
        font-size: 1.75rem;
    }
    .comment1_title {
        font-size: 1.5em;
    }
    .comment1,
    .comment1_txt   {
        font-size: 1.125em;
    }
    
.contact_con .contact_icon {
    gap: 5px;
}
}
@media screen and (max-width: 460px) {
    .sub_tab ul {
        padding: 0;
    }
    .sub_tab_item {
        font-size: 0.5rem !important;
        /* line-height: 0px; */
    }
    .page_title,
    .ceo_comment_title,
    .comment2_title,
    .org_chart_title,
    .map_wrapper .map_title,
    .qualific_title   {
        font-size: 1.25rem;
    }
    .comment1_title {
        font-size: 1.25em;
    }
    .comment1,
    .comment1_txt   {
        font-size: 1em;
    }
   
}

@media screen and (max-width: 400px) {
    .contact_con .contact_adress {
        font-size: 0.5em;
        white-space: nowrap;
    }
    .contact_con .contact_adress .button {
        width: 50px;
        height: 25px;
        margin-left: 10px;
    }
    header .logo h1 {
        font-size: 1.5rem; /* 로고 크기 조정 */
    }

    nav.gnb ul {
        flex-direction: column; /* 네비게이션을 세로 배열로 변경 */
        align-items: center;
    }

    /* .top_img img {
        height: 300px;
        object-fit: cover;
        object-position: 24% 50%; 
    } */


    .sub_tab_item {
        font-size: 0.4125rem !important;
        line-height: 96px;
    }

    .page_title {
        font-size: 1.5rem; /* 페이지 제목 크기 조정 */
        line-height: 2rem;
    }

    .ceo_comment {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .ceo_comment_title {
        font-size: 1.8rem; /* CEO 인사말 제목 크기 조정 */
        margin-top: 30px;
    }

    .comment2_title, .org_chart_wrapper .org_chart_title {
        font-size: 1.2rem;
    }

    .org_chart_img img {
        width: 100%;
        height: auto;
    }

    .contact_wrapper .contact_title {
        font-size: 1.2rem;
    }
}


@media screen and (max-width: 380px) {
    .page_title,
    .ceo_comment_title,
    .comment2_title,
    .org_chart_title,
    .map_wrapper .map_title,
    .qualific_title   {
        font-size: 1.125rem;
    }
    .comment1_title {
        font-size: 1em;
    }
    .comment1,
    .comment1_txt   {
        font-size: 0.875em;
    }

    /* .top_img img {
        height: 300px;
        object-fit: cover; 
        object-position: 24% 50%;
    } */


    .page_title {
        font-size: 1.125rem; /* 페이지 제목 크기 줄이기 */
        line-height: 1.8rem;
    }

    .ceo_comment {
        font-size: 0.9rem;
        line-height: 1.4rem;
        margin: 0 auto; /* 가운데 정렬 */
    }

    .ceo_comment_title {
        font-size: 1.5rem; /* CEO 인사말 제목 크기 줄이기 */
        margin-top: 20px;
    }

    .comment2_title, .org_chart_wrapper .org_chart_title {
        font-size: 1rem;
    }

    .org_chart_img img {
        width: 100%;
        height: auto;
        max-width: 100%; 
    }
    .contact_wrapper .contact_title {
        font-size: 1rem;
    }
    .org_chart_wrapper {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        overflow-x: hidden; 
    }

    .org_chart_img {
        width: 100%;
        overflow-x: hidden; /* 이미지의 가로 스크롤 방지 */
    }

    .org_chart_img img {
        width: 100%; /* 이미지가 화면 크기에 맞게 축소 */
        height: auto;
        max-width: 100%; /* 이미지를 100%로 제한 */
    }
    .top_img {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden; /* 수평 스크롤 방지 */
    }

    .top_img img {
        width: 100%; 
        /* object-fit: cover; 
        object-position: center; 
        max-width: 100%;  */
    }
}





/* 서버호스팅 */


.top_img {
    width: 100%;
    /* height: 440px; */
}

.top_img img {
    width: 100%;
    height: 100%;
}

.kind {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 80px;
    margin-bottom: 180px;
    padding: 0 24px;
}
.sub_title {
    /* max-width: 1200px;  */
    font-weight: 700; 
    font-style: normal; 
    font-size: 40px; 
    font-family: 'NotoSansKR';

    /*  */
    /* width: 90% !important;
    height: auto !important;
    font-size: 1.875rem !important; 
    font-style: normal !important; 
    font-weight: 700 !important; 
    line-height: 2rem !important; 
    margin: 2rem !important; 
    margin-bottom: 4rem;
    padding: 15px 0;
    font-family: 'NotoSansKR'!important;  */
}
.kind_title {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: normal;
    font-family: 'NotoSansKR';
}
.kind_content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kind_sub_title {
    height: 82px;
    font-size: 2.125em;
    font-weight: 500;
    font-style: normal;
    font-family: 'NotoSansKR';
}
.kind_txt {
    height: 92px;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    font-family: 'NotoSansKR';
}
.kind_sub_txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.kind_content_img {
    margin-right: 25px;

}
.kind_content_img img {
    width: 100%;
    height: 100%;
}
.kind_sub_txt ul li {
    list-style-type: disc;
    font-size: 20px;
    font-style: normal;
    line-height: 28.96px;
    font-family: 'NotoSansKR';
}

.hosting_use {
    /* display: flex;  */
    /* width: 100%; */
    max-width: 1200px; 
    margin: auto; 
    /* margin-bottom: 236px; */
    padding: 0 24px;
    margin-top: 50px;
}
.use_img {
    width: 100%;
    max-width: 1200px; 
    height: 82px; 
    margin: 0 auto;
    margin-top: 50px;
}

.hosting_use ul {
    width: 100%;
    max-width: 1200px; 
    padding-top: 80px; 
    margin: 0 auto; 
    /* margin-bottom: 236px; */
}
.hosting_use ul li {
    margin-bottom: 20px;
}
.use_title{
	font-size: 1.25rem; 
	line-height: 2.2rem; 
	font-style: normal; 
	color: #000000; 
	font-family: 'NotoSansKR';
}
.use_comment{
	font-size: 1rem; 
	line-height: 2.2rem;
	font-style: normal; 
	color: #898989; 
	padding-left: 30px; 
	font-family: 'NotoSansKR';
}

.server_host_point {
    /* display: flex;  */
    /* width: 100%; */
    max-width: 1200px; 
    margin: auto; 
    /* margin-bottom: 236px; */
    padding: 50px 24px 0;
}

.sh_point_item {
    padding-top: 50px;
	width: 100%;
	margin: 0 auto;
	display: flex;
    align-items: center;
	margin-bottom: 2rem;
}
.sh_point_item ul  {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}
.sh_point_item ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    width: 45%;
}
/*  */
.column_point {
    /* display: flex;  */
    /* width: 100%; */
    max-width: 1200px; 
    margin: auto; 
    /* margin-bottom: 236px; */
    padding: 50px 24px 0;
}
.column_item {
    padding-top: 50px;
	width: 100%;
	margin: 0 auto;
	display: flex;
    align-items: center;
	margin-bottom: 2rem;
}
.column_item ul  {
    width: 100%;
}
.column_item ul li {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.point_img {
	margin-right: 10px;
	float: left;
}
.point_img img {
    width: 100%;
    height: 100%;
}
.point_text {
	width: 70%;
	float: right;
}
.column_text {
	width: 70%;
	float: right;
}
.point_title {
	font-size: 1.5rem; 
	line-height: 2.5rem; 
	font-style: normal; 
    font-weight: bold;
	color: #000000; 
	font-family: 'NotoSansKR';
}
.point_comment {
	font-size: 1rem;
	line-height: 2.2rem; 
	font-style: normal; 
	color: #777777; 
	font-family: 'NotoSansKR';
}

.server_content {
    /* width: 100%; */
    max-width: 1200px; 
    margin-top: 50px;
    margin: auto; 
    margin-bottom: 80px;
    padding: 30px 24px;
}

.tab {
    margin-top: 50px;
    border-bottom: 1px solid black;
    margin-bottom: 30px;
}

.box1, .box2, .box3, .box4 {
    display: inline-block;
    font-size: 1rem;
    padding: 5px;
    text-align: center;
    width: 23%;
    line-height: 1.8em;
    font-weight: 700;
    background: #fff;
    color: #000000;
    border: 1px solid #3C4E8C;
    border-width: 1px 1px 0;
    letter-spacing: 0;
	position: relative;
	bottom: -5px;
	/* font-family: 'Roboto'; */
	font-family: 'NotoSansKR';
} 
.tab_check {
	border: 5px solid #3C4E8C;
	position: relative;
	bottom: 0px
}
.tab1_content, .tab2_content, .tab3_content, .tab4_content {
	width: 100%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
    /* flex-direction: column; */
	/* margin-bottom: 5rem; */
    gap: 42px;
}
.tab2_content, .tab3_content, .tab4_content {
	display: none;
}
.server_item {
    width: 31%;
    margin: 0 auto;
    /* margin-bottom: 2rem; */
    /* border-radius: 10px; */
    border: 4px solid #c8c8c8;
    box-sizing: border-box;
    min-height: 32rem;
    margin: 0;
}
.server_item:hover {
    border: 4px solid #3C4E8C;
}
.server_img {
    width: 100%;  
    /* margin: auto;  */
    margin-top: 1.6rem; 
    /* margin-bottom: 39px;  */
    border-radius: 10px; 
    text-align: right;
}
.server_title {
    width: 90%;  
    font-size: 1rem; 
    font-style: normal; 
    font-weight: 400; 
    line-height: 2rem; 
    margin: auto; 
    /* font-family: 'Roboto';  */
    font-family: 'NotoSansKR'; 
    border-bottom: 2px solid #c8c8c8;
}
.server_comment {
    width: 90%; 
    height: 236px;
    margin: auto; 
    margin-top: .6rem; 
    margin-bottom: 1.4rem; 
    /* font-family: 'Roboto';  */
    font-family: 'NotoSansKR'; 
    font-size: 1rem; 
    font-weight: 400; 
    font-style: normal; 
    line-height: 55px; 
    color: #747474;
}
.server_select {
    width: 90%; 
    margin: auto; 
    margin-bottom: 2rem; 
    border: .5px solid #747474;
}
.server_select select {
    width: 100%; 
    font-family: 'NotoSansKR'; 
    font-weight: 400; 
    font-size: 1rem; 
    line-height: 1rem; 
    font-style: normal;
    color: #747474;
}


.banner {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    background: #fff;
    z-index: 100;
}
.banner .close {
    text-align: right;
    padding-right: 10px;
    padding-top: 10px;
    cursor: pointer;
}
@media (max-width: 940px) {
    .point_title {
        font-size: 1.125em !important;
    }
    .point_comment {
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
}
@media (max-width: 760px) {
    .sh_point_item ul  {
        width: 100%;
        display: block;
    }
    .sh_point_item ul li {
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        width: 100%;
    }
    .point_img {
        margin-right: 10px;
        float: left;
    }
    .point_img img {
        width: 100%;
        height: 100%;
    }
    .point_text {
        width: 100%;
        float: right;
    }
    .server_comment  {
        line-height: 30px;
    }
    .point_comment {
        line-height: normal;
        font-style: normal;
        color: #777777;
        font-family: 'NotoSansKR';
    }
    .banner {
        right: 1rem;
        bottom: 1rem;
        width: 150px;
    }
    .banner img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1120px) {
    .top_img {
		width: 100%;
		/* height: 400px; */
	}
	.top_img img {
		width: 100%;
		/* height: 400px;
		object-fit: cover;
		object-position: 24% 50%; */
	}
    .kind_sub_txt ul li {
        font-size: 1em;
        font-weight: normal;
    }
    .server_item {
        width: 47%;
        margin-bottom: 20px;
    }
}
/* 940px 이하 */
@media (max-width: 940px) {
    .top_img {
        margin-top: 80px;
    }
    .kind_content {
        flex-direction: column;
    }
    .kind_content_l, .kind_content_r {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* 860px 이하 */
@media (max-width: 860px) {
    .kind {
        margin-bottom: 100px;
    }
    .kind_content {
        flex-direction: column;
        gap: 50px;
    }
    .kind_content_l, .kind_content_r {
        width: 100%;
    }
    .server_item {
        width: 46%;
        margin-bottom: 20px;
    }
    .kind_sub_title {
        font-size: 1.5em;
        font-weight: 500;
    }
    .kind_txt {
        font-weight: 400;
        font-size: 1.25em;
    }
    .kind_sub_txt ul li {
        font-size: 1.15em;
        font-weight: 400;
    }
    .hosting_use ul {
        padding-top: 50px;
    }
}

/* 720px 이하 */
@media (max-width: 720px) {
    .sub_title {
        font-size: 1.5rem;
    }
    .server_item {
        width: 46%;
        margin-bottom: 20px;
    }
    .kind_content_img img {
        width: 90%;
    }

    .point_title{
        font-size: 1.25em;
    }
    .point_comment {
        font-size: 0.875em;
    }
}

/* 640px 이하 */
@media (max-width: 640px) {
    .server_item {
        width: 45%;
        margin-bottom: 15px;
    }
    .use_comment, .use_title {
        font-size: 1rem;
    }
    /* .kind_content_img img {
        width: 70%;
    } */
}

/* 500px 이하 */
@media (max-width: 500px) {
    .top_img {
        margin-top: 80px;
		width: 100%;
		/* height: 400px; */
	}
	.top_img img {
		width: 100%;
		/* height: 400px;
		object-fit: cover;
		object-position: 22% 50%; */
	}
    .kind_sub_txt ul li {
        font-size: 0.875em;
        font-weight: 400;
        line-height: normal;
    }
    .kind_content_img {
        margin-right: 0;
    }
    .server_item {
        width: 45%;
        margin-bottom: 15px;
    }
    .sub_title {
        font-size: 1.25rem;
    }
    .server_img {
        text-align: center;
    }
    .kind_txt {
        font-weight: 400;
        font-size: 1em;
    }
    /* .kind_content_img img {
        width: 60%;
    } */

    /* .point_img img {
        width: 100%;
        height: 80px;
    } */
}

/* 480px 이하 */
@media (max-width: 480px) {
    /* .kind_content_img img {
        width: 60%;
    } */
    .server_comment {
        font-size: 0.875em;
        line-height: 35px;
    }
    .tab {
    margin-top: 25px;
    }
    .use_title, .use_comment {
        font-size: 0.875rem;
    }
    .use_comment {
        line-height: normal;
    }
    .point_comment {
        font-size: 0.75em;
        
    line-height: 1rem;
    }
    .server_item {
        width: 100%;
        margin-bottom: 15px;
    }

    .point_title {
        font-size: 0.875em !important;
        line-height: normal;
        margin-bottom: 15px;
    }
    .point_comment {
        font-size: 0.75em;
    }
    .point_img {
        margin-right: 10px;
    }
    .box1, .box2, .box3, .box4 {
        font-size: 0.875em;
    }
    
}

/* 320px 이하 */
@media (max-width: 320px) {
    .sub_title {
        font-size: 1.25rem;
    }
    /* .kind_content_img img {
        width: 50%;
    } */
    .use_title, .use_comment {
        font-size: 0.75rem;
    }
    
}



/* 코로케이션 */

.cPosition {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 100px;
    padding: 0 24px;
	font-family: 'NotoSansKR';
	font-weight: 500;
	font-style: normal;
	font-size: 24px;
	line-height: 34.75px;
	margin-bottom: 50px;
}

.colocation_situation {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    flex-wrap: wrap; 
    margin-bottom: 236px;
}
.colo_situation_item {
    /* width: 500px;  */
    /* height: 120px;  */
    display: flex;
}
.situation_img {
    width: 120px;
    height: 120px; 
    margin-right: 25px; 
    float: left;
}
.situation_text {
    width: 355px;
    height: 120px; 
    margin-right: 25px;	
    float: right;
}
.situation_title {
    font-size: 24px; 
    line-height: 28.96px; 
    font-style: normal; 
    color: #000000; 
    font-family: 'NotoSansKR';
}
.situation_comment {
    font-size: 18px; 
    line-height: 28.96px; 
    font-style: normal; 
    color: #777777; 
    font-family: 'NotoSansKR';
}



.colo_wrapper {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 50px;
    margin-bottom: 180px;
    padding: 0 24px;
}

.colo_item {
	width: 30%;
	margin: auto;
	/* display: flex; */
	/* margin-bottom: 2rem; */
    margin: 0 auto;
    /* margin-bottom: 2rem; */
    /* border-radius: 10px; */
    border: 4px solid #c8c8c8;
    box-sizing: border-box;
    margin: 0;
    min-height: 32rem;
    padding: 5px 0 0;
}

.colo_item:hover {
    border: 4px solid #3C4E8C;
}
.colo_title {
    width: 80%;  
    font-size: 1.5rem; 
    font-style: normal; 
    font-weight: 500; 
    line-height: 2rem; 
    margin: auto; 
    /* font-family: 'Roboto';  */
    font-family: 'NotoSansKR'; 
    border-bottom: 2px solid #c8c8c8;
    padding: 15px 20px;
}
.colo_comment {
    width: 90%; 
    margin: auto; 
    margin-top: .6rem; 
    margin-bottom: 1.4rem; 
    /* font-family: 'Roboto';  */
    font-family: 'NotoSansKR'; 
    font-size: 1rem; 
    font-weight: 400; 
    font-style: normal; 
    line-height: 40px; 
    color: #747474;
}

.dtPrice{
    float: left; 
    width: 30%;
    font-weight: 500;
}
.ddPrice{
    float: left; 
    /* width: 90%; */
}
@media (max-width: 1000px) {
    .colo_item {
        width: 47%;
        height: 556px;
        border: 4px solid #C8C8C8;
        box-sizing: border-box;
    }
}
@media (max-width: 870px) {
    .colo_item {
        width: 47%;
        height: 556px;
        border: 4px solid #C8C8C8;
        box-sizing: border-box;
    }
    .colo_comment {
        font-size: 1em;
    }
}
@media (max-width: 765px) {
    .colo_item {
        width: 100%;
    }
    .colo_comment {
        font-size: 1.125em;
    }
}
@media (max-width: 360px) {
    .colo_comment {
        line-height: 30px; 
        font-size: 0.875em;
    }
}


/* 보안 */


.diffrent {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 150px;
    margin-bottom: 180px;
    padding: 0 24px;
}

.diffrent_txt {
    /* text-align: center; */
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 40.54px;
    font-family: 'NotoSansKR'
}
.diffrent {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 150px;
    margin-bottom: 180px;
    padding: 0 24px;
}
.diffrent_txt {
    font-weight: 400;
	font-style: normal;
	font-size: 28px;
	line-height: 40.54px;
    margin-top: 50px;
	font-family: 'NotoSansKR';
}
.diffrent_img {
    display: flex;
    /* width: 1200px; */
    gap: 50px;
    /* height: 790px; */
    margin-top: 50px;
}

.diffrent_bottom_txt {
    font-family: 'NotoSansKR'; 
    font-weight: 500; 
    font-size: 24px; 
    font-style: normal; 
    padding-top: 70px; 
}
.material-icons {
    position: relative; 
    top: 3.69px;
}


.service_item {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 50px;
    margin-bottom: 180px;
    padding: 0 24px;
}
.safe_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
}
.safe_item {
	width: 47%;
	height: 556px;
	border: 4px solid #C8C8C8;
	box-sizing: border-box;
}
.safe_item:hover{
    border: 4px solid #3C4E8C; 
    box-sizing: border-box;
}
.safe_logo{
    width:104.64px; 
    height:26px; 
    margin-top:25px;
}
.safe_title{
    width: 90%; 
    height: 90px; 
    font-size: 24px; 
    font-style: normal; 
    font-weight: 500; 
    line-height: 66.75px; 
    margin: auto; 
    font-family: 'NotoSansKR'; 
    border-bottom: 2px solid #c8c8c8;
}
.safe_sub_title {
    font-size: 1em;
    float: right; 
    line-height: 90px; 
    color: #747474;
}
.safe_comment{
    width: 90%;
    margin: auto; 
    margin-top: 7.46px; 
    font-family: 'NotoSansKR'; 
    font-size: 22px; 
    font-weight: 400; 
    font-style: normal; 
    line-height: 50px; 
    color: #747474;
}

@media (max-width: 890px) {
    .safe_sub_title {
        font-size: 0.875em;
    }
    .diffrent_txt {
        font-size: 1.2em;
    }
    .diffrent_img {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .diffrent_img  img {
        width: 100%;
        height: 100%;
    }
    .diffrent_bottom_txt {
        font-size: 1.2em;
    }
    .safe_item {
        width: 47%;
        height: 556px;
        border: 4px solid #C8C8C8;
        box-sizing: border-box;
    }
    .safe_comment {
        font-size: 1em;
    }
}
@media (max-width: 765px) {
    .diffrent_txt {
        font-size: 1em;
    }
    .diffrent_bottom_txt {
        font-size: 1em;
    }
    .safe_item {
        width: 100%;
    }
    .safe_comment {
        font-size: 1.125em;
    }
}
@media (max-width: 400px) {
    .safe_sub_title {
        font-size: 0.5em !important;
    }
        .diffrent_img  img {
        width: 100%;
        height: 100%;
    }
    .diffrent_txt {
        font-size: 0.875em;
    }
    .diffrent_bottom_txt {
        font-size: 0.875em;
    }
    .safe_comment {
        font-size: 1em;
    }
}
@media (max-width: 360px) {
    .safe_comment {
        line-height: 40px; 
        font-size: 0.875em;
    }
}

/* 백업 */

.top_txt {
    font-weight: 400;
    font-style: normal;
    font-size: 1.25em;
    line-height: 40.54px;
    margin-top: 50px;
    font-family: 'NotoSansKR';
}

.backup_title {
    width: 90%; 
    font-size: 24px; 
    font-style: normal; 
    font-weight: 500; 
    line-height: 40px; 
    margin: auto; 
    padding-top: 20px; 
    padding-bottom: 20px; 
    font-family: 'NotoSansKR'; 
    border-bottom: 2px solid #c8c8c8;
    line-height: 40px; 
}


.backup_comment {
    width: 90%; 
    margin: auto; 
    margin-top: 20px; 
    font-family: 'NotoSansKR'; 
    font-size: 18px; 
    font-weight: 400; 
    font-style: normal; 
    line-height: 36px; 
    color: #747474;
}

@media (max-width: 940px) {
    .backup_comment {
        font-size: 1em;
        font-weight: 400;
        font-style: normal;
        color: #747474;
    }
}
@media (max-width: 840px) {
    .backup_comment {
        font-size: 0.875em;
        font-weight: 400;
        font-style: normal;
        color: #747474;
    }
}
@media (max-width: 720px) {
    .top_txt {
        font-size: 1.125rem;
    }
}
@media (max-width: 500px) {
    .top_txt {
        font-size: 1rem;
    }
}
@media (max-width: 420px) {
    .top_txt {
        font-size: 0.875rem;
        margin-top: 30px;
        line-height: 30px;
    }
    .backup_title {
        font-size: 1.25em;
    }
    .backup_comment {
        font-size: 0.875em;
        color: #747474;
        line-height: 23px; 
    }
}
@media (max-width: 360px) {
    .backup_comment {
        font-size: 0.75em;
        color: #747474;
        line-height: 23px; 
    }

}

/* lms */

.effect {
    max-width: 1200px; 
    margin: 0 auto; 
    /* margin-top: 150px; */
    margin-bottom: 100px;
    padding: 0 24px;
}
.effect_txt {
    font-weight: 400;
    font-style: normal;
    font-size: 1.25em;
    line-height: 40.54px;
    margin-top: 50px;
    font-family: 'NotoSansKR';
}

@media (max-width: 720px) {
    .effect_txt {
        font-size: 1.125rem;
    }
}
@media (max-width: 500px) {
    .effect_txt {
        font-size: 1rem;
    }
}
@media (max-width: 420px) {
    .effect_txt {
        font-size: 0.875rem;
    }
}

/* 이용약관 */
.term_wrapper {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 0 24px;
}

.term_wrapper .text02 {
    display: block;
    margin-top: 50px;
    font-weight: bold;
}
.term_wrapper .termDt {
    margin-bottom: 15px;
}
/* 작은 화면에서 term_wrapper 조정 */
@media only screen and (max-width: 768px) {
    .term_wrapper {
        padding: 15px; 
        font-size: 14px; 
        line-height: 1.6;
    }

    .term_wrapper .sub_title {
        font-size: 18px;
    }

    .termDl, .termDd {
        padding-left: 10px;
    }
}

/* 더 작은 화면 (예: 480px 이하)에서 추가 조정 */
@media only screen and (max-width: 480px) {
    .term_wrapper {
        font-size: 0.7em;
    }

    .term_wrapper .sub_title {
        font-size: 16px;
    }
}

/* vpn */
.service_kind {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 50px;
    padding: 0 24px;
}
.service_kind_con {
    margin-top: 50px;
}
.service_kind_con .service_kind_subtitle {
    font-size: 1.5rem;
    font-weight: 500;
}
.service_kind_img {
    margin-top: 30px;
}
.service_kind_txt {
    font-size: 1.25rem;
    margin-top: 20px;
}
.service_kind_con .con_2 {
    margin-top: 50px;
}
.service_kind_bottom_txt {
    margin-top: 30px;
}
.service_kind_bottom_txt_title {
    font-size: 1.25em;
    margin-bottom: 15px;
}
.service_kind_bottom__comment {
    margin-top: 50px;
}
.service_kind_bottom__comment p {
    line-height: 40px;
}
.table_wrapper {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 24px;
}
table {
	width: 100%;
	margin: 0 auto;
    margin-top: 50px;
	border: 4px solid #c8c8c8 ;
	border-collapse: collapse; 
	margin-bottom: 80px;
}
td, th {
    padding: 50px 10px;
	border: 2px solid #c8c8c8 !important;
	font-size: 1.25em;
}
th {
	background: #ededed;
	color: #898989;
	font-family: 'NotoSansKR';
	font-weight: 500;
	font-style: normal;
}
tr {
	height: 111px;
	border: 1px solid black !important;
}
table, td,th,tr {
	vertical-align: middle !important; 
}
td,td {
	color: #898989;
	font-family: 'NotoSansKR';
	font-weight: 500;
	font-style: normal;
	font-size: 1.25em;
}
@media only screen and (max-width: 870px) {
    table {
        border: 1px solid #c8c8c8;
    }
    .service_kind_txt {
        font-size: 1.2em;
    }
    td,td {
        font-size: 1em;
    }
}
@media only screen and (max-width: 760px) {
    .service_kind_txt {
        font-size: 1em;
    }
}
@media only screen and (max-width: 640px) {
    td,td ,td, th {
        font-size: 0.875em;
    }
}
@media only screen and (max-width: 560px) {
    td,td ,td, th {
        font-size: 0.75em;
    }
    .service_kind_comment {
        font-size: 0.875em;
    }
}
@media only screen and (max-width: 420px) {
    td, th {
        padding: 50px 3px;
    }
    td,td ,td, th {
        font-size: 0.5em;
    }
    .service_kind_txt {
        font-size: 0.875em;
    }
    .service_kind_bottom_txt_title{
        font-size: 1em;
    }
    .service_kind_bottom__comment p {
        line-height: 25px;
        font-size: 0.875em;
    }
}
/* ddos */
.aware {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 150px;
    margin-bottom: 80px;
    padding: 0 24px;
}

.aware_txt {
    margin-top: 50px;
    font-family: 'NotoSansKR'; 
    font-weight: 500; 
    font-size: 1.15em; 
    font-style: normal; 
    margin-bottom: 50px;
    line-height: 40px;
    color: #898989;
}


@media only screen and (max-width: 870px) {
    .aware_txt {
        font-size: 1.2em;
    }
}
@media only screen and (max-width: 760px) {
    .aware_txt {
        font-size: 1em;
    }
}
@media only screen and (max-width: 540px) {
    .aware_txt {
        font-size: 0.875em;
    }
}
@media only screen and (max-width: 420px) {
    .aware_txt {
        font-size: 0.875em;
    }
}
@media only screen and (max-width: 380px) {
    .aware_txt {
        font-size: 0.75em;
        line-height: 30px;
    }
}


/* games */
.game_content {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
    margin-top: 90px;
}
.game_sub {
    width: 100%; 
    height: 100%;
    margin: 0;
    padding: 0;
}
.game_sub_img {
    width: 100%;
    height: 100%;
}
.game_sub_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.game_sub_bg {
    /*opacity: 0;*/
    height: 100%;
    transform: scale(1);
}
.game_sub_img_cont1 {
    position: absolute;
    top: 30px;
    left: 50px;
    width: 60%;
}
.game_txt {
    position: absolute;
    top: 50%;
    right: 0%;
    width: 100%;
    transform:  translate(24%, -50%);
    color: #fff;
    text-shadow: 3px 4px 5px #000;
    z-index: 10;
}
.game_txt .txt_title {
    font-size: 6em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.game_txt .txt_conten  {
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    /* line-height: 6px; */
}
.view_more {
    position: absolute;
    width: 250px;
    height: 90px;
    right: 5%;
    bottom: 7%;
    text-align: center;
    margin-top: 30px;
    z-index: 100;
}
.view_more .arrow_button {
    line-height: 17px;
}
@media only screen and (max-width: 1000px) {
    .game_txt {
        top: 50%;
        right: 22%;
        transform: translate(0 -50%);
        width: 90%;
    }
    .game_sub_img_cont1 {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 90%;
    }
}

@media only screen and (max-width: 940px) {
    .game_content{
        margin-top: 80px;
        height: calc(100vh - 80px)
    }
}
@media only screen and (max-width: 840px) {
    .game_txt {
        top: 50%;
        right: 22%;
        transform: translate(0 -50%);
        width: 90%;
    }
    .game_sub_img_cont1 {
        left: 0;
        top: 100px;
        width: 100%;
        height: 80%;
    }
    .game_txt .txt_title {
        font-size: 1.875em;
    }
    .game_txt .txt_conten {
        font-size: 0.875em;
        /* line-height: 40px; */
    }
}
@media only screen and (max-width: 420px) {
    .game_top_img {
        padding-top: 80px;
    }
    .game_txt {
        position: absolute;
        width: 90%;
        top: 50%;
        right: 50%;
        transform:  translate(50%, -50%);
        color: #fff;
        font-weight: 500;
    }
    .game_txt .txt_title {
        font-size: 2em;
    }
    .game_txt .txt_conten {
        font-size: 0.875em;
        font-weight: 500;
        /* line-height: 40px; */
    }
    .game_sub_img img {
        width: 100%;
        height: 100%;
    }
}

@media only screen and (max-width: 420px) {
    .game_txt .txt_conten {
        font-size: 0.875em;
        line-height: 30px;
    }
}


/* vr/xr */

.start {
    margin-top: 90px !important;
    width: 100%;
    height: 100%;
}
.start .vr_con3 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.start ,
.section2,
.section3 {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px); 
    /* height: 100vh; */
}
/* .section2 {
    position: relative;
    width: 100%;
    height: 100%;
/* } */
.section3 {
    position: relative;
    width: 100%;
    height: 100%;
}
.section3 .slide_img_con, .section3 .slide_txt {
    margin: 0; /* 내부 요소의 마진 제거 */
    padding: 0; /* 내부 요소의 패딩 제거 */
    max-width: 100%; /* 이미지가 너무 크게 설정된 경우 조정 */
}

.section3 .vr_con1 {
    position: absolute;
    width: 80%;
    right: 10%;
    bottom: 0%;
}
.img_bg {
    width: 100%;
    height: calc(100vh - 90px);
}
.img_bg img {
    width: 100%;
    height: 100%;
}
.section2 .vr_con2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 100%;
}
.section2 .vr_con2_01 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section2 .vr_con2_02 {
    position: absolute;
    top: 50%;
    left: -35%;
}
.slide_over {
    overflow: hidden;
}
/* .swiper-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; *
} */
.slide_txt {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 15%;
    color: #fff;
    text-shadow: 3px 4px 5px #000;
    text-align: left;
    z-index: 2;
    /* width: 100%; */
    z-index: 1;
}
.slide_txt .txt_title {
    font-size: 3.5em;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1.5px;
    line-height: 1.2;
}
.slide_txt  p {
    /* font-size: 1.875em; */
    font-size: 1.375em;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1.59;
    margin-top: 40px;
}
.slide_txt_1 {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 10%;
    color: #fff;
    text-shadow: 3px 4px 5px #000;
    text-align: left;
    z-index: 2;
    /* width: 100%; */
    z-index: 1;
}
.slide_txt_1 .txt_title {
    font-size: 3.5em;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1.5px;
    line-height: 1.2;
}
.slide_txt_1  p {
    /* font-size: 1.875em; */
    font-size: 1.375em;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1.59;
    margin-top: 40px;
}
.slide_txt_r {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 40%;
    color: #fff;
    text-shadow: 3px 4px 5px #000;
    text-align: right;
    z-index: 2;
    /* width: 100%; */
    z-index: 1;
}
.slide_txt_r .txt_title {
    font-size: 4em;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1.5px;
    line-height: 1.2;
}
.slide_txt_r  p {
    /* font-size: 1.875em; */
    font-size: 1.375em;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1.59;
    margin-top: 40px;
}
.slide_txt_iot {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 40%;
    color: #fff;
    text-shadow: 3px 4px 5px #000;
    text-align: left;
    z-index: 2;
    /* width: 100%; */
    z-index: 1;
}
/* .slide_txt_iot .txt_title {
    font-size: 1.375em;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1.5px;
    line-height: 1.2;
} */
.slide_txt_iot  p {
    font-size: 2.25em;
    /* font-size: 1.5em; */
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    margin-top: 40px;
}
.slide_txt_iot_r {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 40%;
    color: #fff;
    text-shadow: 3px 4px 5px #000;
    text-align: right;
    z-index: 2;
    /* width: 100%; */
    z-index: 1;
}
.slide_txt_iot_r .txt_title {
    font-size: 4em;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1.5px;
    line-height: 1.2;
}
.slide_txt_iot_r  p {
    /* font-size: 1.875em; */
    font-size: 1.375em;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1.59;
    margin-top: 40px;
}

@media only screen and (max-width: 1000px) {
    .slide_txt .txt_title {
        font-size: 3.7125em;
    }
    .slide_txt_1 .txt_title {
        font-size: 3.7125em;
    }
    .game_sub_img_cont2 {
        position: absolute;
        bottom: 0;
        left: 0px;
        width: 60%;
        z-index: 1;
    }
}

@media only screen and (max-width: 940px) {
    .start, .section2, .section3 {
        position: relative;
        width: 100%;
        height: calc(100vh - 80px);
        /* height: 100vh; */
    }
    .start {
        margin-top: 80px !important;
        width: 100%;
        height: 100%;
    }
    .slide_txt .txt_title  {
        font-size: 3.125em;
    }
    .slide_txt_1 .txt_title  {
        font-size: 3.125em;
    }
}
@media only screen and (max-width: 870px) {
    .slide_txt .txt_title  {
        font-size: 3em;
    }
    .slide_txt_1 .txt_title  {
        font-size: 3em;
    }
}
@media only screen and (max-width: 760px) {
    .slide_txt .txt_title {
        font-size: 2.5em;
    }
    .slide_txt_1 .txt_title {
        font-size: 2.5em;
    }
}
@media only screen and (max-width: 570px) {
    .slide_txt .txt_title {
        font-size: 2em;
    }
    .slide_txt_1 .txt_title {
        font-size: 2em;
    }
    
    .section3 .vr_con1 {
        width: 95%;
        height: 500px;
        bottom: 0%;
    }
    .vr_con1 img {
        width: 100%;
        height: 100%;
        /* object-fit: contain; */
    }
    .slide_txt  p {
        /* font-size: 1.875em; */ 
        font-size: 1.125rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 1);
        /* line-height: 1.59; */
        margin-top: 40px;
    }
    .slide_txt_1  p {
        /* font-size: 1.875em; */ 
        font-size: 1.125rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 1);
        /* line-height: 1.59; */
        margin-top: 40px;
    }
    .slide_txt_iot_r {
        position: absolute;
        width: 90%;
        left: 5%;
        top: 27%;
    }
    .section2 .vr_con2_01 {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .section2 .vr_con2_02 {
        position: absolute;
        top: 63%;
        left: -35%;
    }
}

@media only screen and (max-width: 420px) {
    .slide_txt_iot_r  {
        top: 27%;
    }
    .slide_txt_iot_r .txt_title {
        font-size: 2em;
    }
    /* .img_bg {
        width: 100%;
        height: 90vh !important;
    } */
    .start, 
    .section2,
    .section3 {
        height: 90vh;
    }
    .start .slide_img_con , 
    .section2 .slide_img_con ,
    .section3 .slide_img_con  {
        width: 100%;
        height: 80vh !important;
        /* margin-top: 115px; */
    }
    .section3 .vr_con1 {
        position: absolute;
        width: 90%;
        right: 7%;
        bottom: 20%;
    }
    .vr_con2 {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .vr_con2_01 {
        position: absolute;
        right: 0;
        top: 0%;
        width: 100%;
        height: 100%;
    }
    .vr_con2_02 {
        position: absolute;
        top: 50%;
        left: 0;
        width: 60%;
    }
    .vr_con3 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 50%;
    }
    .vr_con3 img {
        width: 100%;
        height: 100%;
    }
    .slide_txt .txt_title {
        font-size: 2em;
    }
    .slide_txt_1 .txt_title {
        font-size: 2em;
    }
}

@media only screen and (max-width: 380px) {
    .slide_txt p {
        font-size: 0.9em;
        /* line-height: 30px; */
    }
    .slide_txt_1 p {
        font-size: 0.9em;
        /* line-height: 30px; */
    }
    .slide_txt_iot  {
        top: 24%;
    }
    .slide_txt_1 .txt_title {
        font-size: 1.3em;
    }
}


/* iot */

/* .slide123 {
    overflow-y: hidden;
} */
.section_1 {
    margin-top: 90px !important;
}
.iot_con1 {
    position: absolute;
    width: 70%;
    right: 0;
    top: 60px;
}
.iot_con2 {
    position: absolute;
    left: 50px;
    bottom: -10%;
    width: 50%;
    height: 100%;
}
.iot_con2_01 {
    width: 90%;
    height: 90%;
    /* object-fit: cover; */
}
.swiper-container {
    width: 100%;
    /* margin: 0 auto; */
    height: 100vh;
}
.swiper-slide {
    width: 100%; 
    height: 100%;
    position: relative;
}



/*  */
.iot_top_img {
    margin-top: 100px;
    width: 100%;
    height: 100%;
}
.iot_top_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.iot_wrapper {
    margin: 0 auto; 
    /* margin-top: 150px; */
}
.iot_sub {
    width: 100%; 
    position: relative;
}
.iot_sub_img {
    width: 100%;
}
.iot_sub_img img {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 570px) {
    .iot_con1 {
        position: absolute;
        right: 0;
        bottom: 25%;
        width: 100%;
    }
    .iot_con1 img {
        width: 100%;
        height: 100%;
        /* object-fit: contain; */
    }
    .slide_txt_iot  p {
        /* font-size: 1.875em; */
        font-size: 1.5rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 1);
        /* line-height: 1.59; */
        margin-top: 40px;
    }
    .slide_txt_iot_r  p {
        /* font-size: 1.875em; */
        font-size: 1em;
        font-weight: 300;
        color: rgba(255, 255, 255, 1);
        /* line-height: 1.59; */
        margin-top: 40px;
    }
}


@media only screen and (max-width: 420px) {
    .iot_con2  .iot_con2_01 {
        width: 50%;
        height: 50%;
    }
    .iot_top_img {
        margin-top: 80px;
        height: 300px;

    }
    .iot_top_img img {
        object-position: 92% 50%;
    }
    .iot_sub_img {
        height: 300px;
    }
    .iot_sub_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 6% 50%;
    }
    .iot_sub_img .sub_img2 {
        object-position: 1% 50%;
    }
}

@media only screen and (max-width: 420px) {
    .iot_con2  .iot_con2_01 {
        width: 100%;
        height: 100%;
    }
}


/* moaboa */

.game_sub_img_cont2 {
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 40%;
    z-index: 1;
}

.game_sub_img_cont3 {
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 50%;
    height: 100%;
}
.game_sub_dim {
    /* display: none; */
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.moa_top_img {
    margin-top: 100px;
    width: 100%;
    height: 440px;
    background-color: #222542;
    position: relative;
}
.moa_top_img .moa_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.moa_top_img .moa_logo img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.moa_wrapper  {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 50px;
    margin-bottom: 80px;
    padding: 0 24px;
}
.moa_sub {
    margin-top: 50px;
    width: 100%;
}
.moa_sub ul {
    display: flex;
    flex-wrap: wrap; /* 여러 줄로 항목이 자동으로 배치되도록 설정 */
    justify-content: center; /* 각 항목 사이에 공간을 균등하게 배치 */
    padding: 0;
    list-style: none; /* 리스트 스타일 제거 */
}

.moa_sub ul li {
    width: 33%; /* 한 칸의 너비를 3등분, 좌우 여백을 고려 */
    margin-bottom: 30px; /* 각 항목 사이에 여백 추가 */
}

.moa_sub ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
}

.moa_sub ul li .icon {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
}

.moa_sub ul li img {
    max-width: 100%; /* 이미지가 부모 요소의 크기를 넘어가지 않도록 설정 */
    height: auto;
    display: block;
}

.moa_sub ul li .name-container {
    margin-top: 10px;
}

.moa_sub ul li .name {
    font-size: 1.2em;
    font-weight: bold;
}

@media screen and (max-width: 980px) {
    .game_sub_img_cont2 {
        position: absolute;
        bottom: 0;
        left: 30px;
        width: 60%;
        z-index: 1;
    }
    .game_sub_img_cont3  {
        width: 80%;
    }
}
@media screen and (max-width: 768px) {
    .moa_sub ul li {
        width: calc(50% - 16px); /* 작은 화면에서는 2개의 칸으로 배치 */
    }
    .game_sub_img_cont2 {
        position: absolute;
        bottom: 0;
        left: 30px;
        width: 70%;
        z-index: 1;
    }

}

@media screen and (max-width: 480px) {
    .moa_sub ul li {
        width: 100%; /* 모바일 화면에서는 1개의 칸으로 배치 */
    }
    .moa_top_img .moa_logo {
        width: 300px;
        height: 100px;
    }
    .game_sub_img_cont3  {
        width: 90%;
    }
    .game_sub_img_cont2 {
        position: absolute;
        bottom: 10%;
        left: -7px;
        width: 100%;
        z-index: 1;
    }
}

/* 웹 방화벽 */

.websafe_bottom_txt {
    margin-top: 30px;
}
.websafe_bottom_txt_title {
    font-size: 1.75em;
    margin-bottom: 15px;
    font-weight: 500;
}
.websafe_bottom_txt_comment{
    font-size: 1.5em;
}

.websafe_content {
    /* width: 100%; */
    max-width: 1200px; 
    margin: auto; 
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 24px;
}
.websafe_item {
    width: 31%;
	border: 4px solid #C8C8C8;
	box-sizing: border-box;
}
.websafe_item:hover {
    border: 4px solid #3C4E8C; 
    box-sizing: border-box;
}
.websafe_title{
    width: 90%;  
    font-size: 1rem; 
    font-style: normal; 
    font-weight: 600; 
    line-height: 30px; 
    margin: auto; 
    padding-top: 20px; 
    padding-bottom: 20px; 
    font-family: 'NotoSansKR'; 
    border-bottom: 2px solid #c8c8c8;
}
.websafe_comment {
    width: 90%; 
    margin: auto; 
    margin-top: 9px; 
    font-family: 'NotoSansKR'; 
    font-size: 1rem; 
    font-weight: 500; 
    font-style: normal; 
    line-height: 28.96px; 
    color: #747474;
}
.websafe_select{
    width: 100%; 
    margin: auto;
}
.websafe_select select{
    width: 100%; 
    height: 32px; 
    font-family: 'NotoSansKR'; 
    font-weight: 400; 
    font-size: 1rem; 
    line-height: 20.27px; 
    font-style: normal; 
    font-family: 'NotoSansKR';
    color: #747474;
    margin-top: 84px;
}
@media only screen and (max-width: 760px) {
    .service_kind_txt {
        font-size: 1em;
    }
    .websafe_bottom_txt_comment {
        font-size: 1.125em;
    }
}
@media only screen and (max-width: 540px) {
    .service_kind_comment {
        font-size: 0.875em;
    }
    .websafe_content .tab1_content,
    .websafe_content .tab2_content {
        display: flex;
        flex-direction: column;
    }
    .websafe_item {
        width: 100%;
    }
    .websafe_bottom_txt_comment {
        font-size: 1em;
    }
}
@media only screen and (max-width: 420px) {
    .websafe_bottom_txt_title{
        font-size: 1em;
    }
    .websafe_bottom_txt_comment {
        font-size: 0.875em;
    }
    .websafe_comment {
        font-size: 0.875em;
    }
}


.serv_price {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 150px;
    margin-bottom: 180px;
    padding: 0 24px;
}
.price_txt {
    font-weight: 500; 
    font-style: normal; 
    font-size: 24px; 
    line-height: 34.75px; 
    margin-top: 30px;
    /* margin-bottom:236px;  */
    font-family: 'NotoSansKR'; 
    color: #898989;
}

@media only screen and (max-width: 420px) {
    .price_txt{
        font-size: 1em;
    }
}


/* ssl */

.ssl_item {
	width: 31%;
	border: 4px solid #C8C8C8;
	box-sizing: border-box;
}
/* .tab3_content .ssl_item {
    width: 28%;
} */
.ssl_item:hover {
    border: 4px solid #3C4E8C; 
    box-sizing: border-box;
}
.ssl_title {
    width: 90%;  
    font-size: 24px; 
    font-style: normal; 
    font-weight: 500; 
    line-height: 40px; 
    margin: auto; 
    padding-top: 22px; 
    padding-bottom: 10px; 
    font-family: 'NotoSansKR'; 
    border-bottom: 2px solid #c8c8c8;
}
.ssl_title img {
    width: 195px;
    height: 54px;
}
.ssl_comment {
    width: 90%;  
    margin: auto; 
    margin-top: 7.46px; 
    font-family: 'NotoSansKR'; 
    font-size: 18px; 
    font-weight: 400; 
    font-style: normal; 
    line-height: 50px; 
    color: #747474;
}
.ssl_select {
    width: 100%;  
    margin: auto;
    text-align: center;
}
.ssl_select select {
    width: 100%;  
    font-family: 'NotoSansKR'; 
    font-weight: 400; 
    font-size: 18px; 
    line-height: 20.27px; 
    font-style: normal; 
    font-family: 'NotoSansKR';
    color: #747474; 
    margin-top: 24px;
}



@media (max-width: 1270px) {
    .ssl_item {
        width: 48%;
        border: 4px solid #C8C8C8;
        box-sizing: border-box;
    }
}
@media (max-width: 1115px) {
    .ssl_item {
        width: 47%;
        border: 4px solid #C8C8C8;
        box-sizing: border-box;
    }
}
@media (max-width: 770px) {
    .ssl_item {
        width: 45%;
        border: 4px solid #C8C8C8;
        box-sizing: border-box;
    }
}

@media (max-width: 640px) {
    .ssl_item {
        width: 100%;
        border: 4px solid #C8C8C8;
        box-sizing: border-box;
    }
}
@media (max-width: 400px) {
}
@media (max-width: 370px) {
    .ssl_comment {
        font-size: 0.875em;
    }
    .ssl_select  {
        width: 100%;
    }
    .ssl_select select {
        font-size: 0.875em;
    }
    .box1, .box2, .box3, .box4 {
        font-size: 0.6em;
    }
    
}


/* app */

.app_txt {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 150px;
    margin-bottom: 180px;
    padding: 0 24px;
}
.app_txt ul {
    margin-top: 50px;
}
.app_txt ul li .app_sub_title {
    margin-top: 15px;
    font-size: 1.5em;
    font-weight: 500;
} 
.app_txt ul li .txt  {
    margin-top: 10px;
    font-size: 1.25em;
    color: #747474
}
@media (max-width: 840px) {
    
    .app_txt ul li .app_sub_title {
        margin-top: 15px;
        font-size: 1.25em;
        font-weight: 500;
    } 
    .app_txt ul li .txt  {
        margin-top: 10px;
        font-size: 1.125em;
        color: #747474
    }
}
@media (max-width: 500px) {
    .app_txt ul li .txt {
        font-size: 1em;
    }
    .cPosition {
        font-size: 1.125em !important;
        margin-bottom: 0;
    }
}
@media (max-width: 360px) {
    .cPosition {
        font-size: 1em !important;
        margin-bottom: 0;
    }
    .app_txt ul {
        margin-top: 30px;
    }
    .app_txt ul li .app_sub_title {
        margin-top: 15px;
        font-size: 1em;
        font-weight: 500;
    } 
    .app_txt ul li .txt  {
        margin-top: 10px;
        font-size: 0.875em;
        color: #747474
    }
    
}

/* weblog */
.weblog_comment {
    width: 90%; 
    margin: auto; 
    margin-bottom: 1.4rem; 
    /* font-family: 'Roboto';  */
    font-family: 'NotoSansKR'; 
    font-size: 1.25rem; 
    font-weight: 500; 
    font-style: normal; 
    line-height: 55px; 
    color: #747474;

}
.weblog_item {
	width: 50%;
    padding: 50px 0;
	border: 4px solid #C8C8C8;
	box-sizing: border-box;
}
.weblog_item:hover{
    border: 4px solid #3C4E8C; 
    box-sizing: border-box;
}

@media (max-width: 940px) {
    .weblog_item {
        width: 100%;
    }
}
@media (max-width: 360px) {
    .weblog_item {
        width: 100%;
    }
    .weblog_comment {
        font-size: 1em;
    }
}

/* license */

.license_txt {
    max-width: 1200px; 
    margin: 0 auto; 
    margin-top: 150px;
    margin-bottom: 180px;
    padding: 0 24px;
}

.license_txt ul {
    margin-top: 50px;
}

.license_txt ul li {
    display: block;
    color: #747373;
    line-height: 45px;
    font-size: 1.25em;
}

@media (max-width: 500px) {
    .license_txt ul li {
        font-size: 1rem;
    }
}
@media (max-width: 360px) {
    .license_txt ul li {
        font-size: 0.875em;
    }
}
.table_vat {
    float: right;
    text-align: right;
    font-size: 1.25em;
    /* line-height: 40.54px; */
    color: #898989;
}




.cPosition span.current {
    color: #4682d8;
}












































/*sub Frame*/
#subFrame{ width:100%; min-width:1122px;  margin:0 auto; display:block;font-family: "nanumgothic", ngothic, NanumGothic, 나눔고딕, sans-serif; letter-spacing:-1px;}



/*컨텐츠랩*/
#contWrap{width:1122px; min-height:1150px; height:auto; margin:0 auto;}
#contWrap:after{display:block; clear:both;content:'';}

#lnbWrap{width:176px; height:auto; color:#3f4c6b; text-align:center; font-size:13px; float:left; margin:0; padding:0; border:none; margin-bottom:60px;}
.lnb_grow{width:153px; height:25px; top:1px; text-align:left; padding:0 0 0 19px; font-size:10px; line-height: 23px; color:#fff;}
.lnb_current{float:left; width:153px; height:65px; padding:15px 0 0 19px; display:block; text-align:left; box-sizing: border-box; border-top:3px solid #333; }
.lnb_current dl dt{width:136px; color:#3f4c6b; font-size:15px; font-weight:500; display:block;}
.lnb_current dl dd{width:136px; color:#4682d8;/*#E9873B /*#c0a661*/; font-size:10px; font-weight:500; display:block;}
.lnb_list{float:left; width:153px; height:auto; padding:0px 0px 30px 0px; border-bottom: 1px solid #e4e5e7; border-top:none; background:#fff;}

.lnb_list ul li{float:none; font-size:13px; text-align:left; color:#fff; }
.lnb_list > ul > li > a{color:#fff; /*background:#45627b;*/ background: #4682d8; border-top: 1px solid #e4e5e7; border-bottom: 1px solid #e4e5e7;}/*가을 bg_lnb_on.jpg*/
.lnb_list ul li a{width:136px; display:inline-block; padding-left:19px;height:40px; line-height:40px;font-weight:500;  text-decoration:none;}
.lnb_list ul li a:hover, .lnb_list ul li.current a {color:#fff; background: #4682d8; text-decoration:none;}/*가을 bg_lnb_on.jpg*/
.lnb_list ul li ul {width:133px; margin:0 auto;}
.lnb_list ul li ul li{float:none; font-size:12px; text-align:left; border-bottom:1px #e4e5e7 dotted;}
.lnb_list ul li ul li:last-child{ border-bottom:none;}
.lnb_list ul li ul li a {font-weight:normal; color:#3f4c6b;  margin-left:-10px;}
.lnb_list ul li ul li a:hover{color:#216fe1; background:url(/imgs/front/sub/lnb_bg.gif) 135px 0 no-repeat;}
.lnb_list ul li ul li a.current {color:#216fe1; background: url(/imgs/front/sub/lnb_bg.gif) 135px 0 no-repeat;}

.lnb_customer{float:left; width:155px; height:380px; margin-top:20px; background:url(/imgs/front/bg_lnb_cs_blue.png) no-repeat 0 0; box-sizing:border-box; border: 1px solid #e4e5e7;} /*가을 /imgs/front/bg_lnb_cs_blue.jpg)*/
.lnb_customer .title01{height:70px; font-size:18px; font-weight:500; }
.lnb_customer .title01 .blue {color:#216fe1;}
.lnb_customer .title01 .green{color:#9ecf76;}
.lnb_customer .title01 .purple {color:#ab7bf2;}
.lnb_customer .blank{width:36px; height:30px; text-indent:-9999px;}
.lnb_customer .info01{width:100%; height:25px; font-size:12px; letter-spacing: 0px; background:#e6e9f0;}
.lnb_customer .text01{height:45px; width:105px; padding-top:30px; padding-right:50px; font-size:11px; color:#524a55;/*#216fe1;*/}

.lnb_img{float:left; width:155px; height:173px; margin:20px 0;}


/*current position*/
/* .cPosition{
    height:32px; 
    line-height:32px; 
    float:left; 
    text-align:left;  
    margin-top:25px;
    color:#3f4c6b;
} */
.cPosition a x								{color:#3f4c6b; text-decoration:none;}
.cPosition a:hover, .cPosition .current  	{color:#4682d8;/*#E9873B;*/ text-decoration:none;}

.gotoTop{position:fixed; display:block; top:106px; width:21px;text-align:center; right:50%; margin-right:-471px;}

/*cont*/
/*cont01 : 서비스 정의, cont02 서버 호스팅 종류 cont03: 서버 호스팅 이용절차
cont04 : 서비스 주요 특징*/

.cont{
    /* width:1200px; */
    height:700px; 
    float:left; 
    margin-bottom:30px;
}
.cont01 {
    margin-top:45px; 
    margin-bottom:30px; 
    font-size:15px; 
    height:auto; 
    clear:both;
}
.cont02, .cont03, .cont04	{
    margin-top:35px; 
    margin-bottom:30px; 
    font-size:0.875em; 
    float:left; 
    height:auto; 
    clear:both; 
    width:100%; 
}
.serverBack{background:url(/imgs/front/sub/sub0101_cont01.png) 400px 50px no-repeat;}
.coloBack{background:url(/imgs/front/sub/sub0201_cont01.png) right no-repeat;}
.cloudBack{background:url(/imgs/front/sub/sub0301_cont01.png) right 30px no-repeat;}
.utmBack{background:url(/imgs/front/sub/sub0401_cont01.png) right 0 no-repeat;}
.vpnBack{background:url(/imgs/front/sub/sub0402_cont01.png) right 0 no-repeat;}
.vrarBack{background:url(/imgs/front/sub/fw_sub_vr_01.png) right 0px no-repeat;}
.vrarBack2{background:url(/imgs/front/sub/fw_sub_vr_02.png) right no-repeat;}
.ddosBack{background:url(/imgs/front/sub/sub0403_cont01.png) right 0 no-repeat;}
.fireBack{background:url(/imgs/front/sub/sub0404_cont01.png) right 60px no-repeat;}
.webBack{background:url(/imgs/front/sub/sub0405_cont01.png) right 0 no-repeat;}
.ipsBack{background:url(/imgs/front/sub/sub0406_cont01.png) right 45px no-repeat;}
.hackingBack{background:url(/imgs/front/sub/sub0407_cont01.png) right 45px no-repeat;}
.backupBack{background:url(/imgs/front/sub/sub0501_cont01.png) right 0 no-repeat;}
.msBack{background:url(/imgs/front/sub/sub0502_cont01.png) right 0 no-repeat;}
.sslBack{background:url(/imgs/front/sub/sub0503_cont01.png) right 0 no-repeat;}
.appliBack{background:url(/imgs/front/sub/sub0504_cont01.png) right 5px no-repeat;}
.swBack{background:url(/imgs/front/sub/sub0505_cont01.png) right 0 no-repeat;}
.weblogBack{background:url(/imgs/front/sub/sub0506_cont01.png) right 5px no-repeat;}
.vmonBg{background:url(/imgs/front/sub/sub0507_cont01.png) right 5px no-repeat;}
.programImg{background:url(/imgs/front/sub/sub0504_program.jpg) right 0 no-repeat;}
.priceBack{background:url(/imgs/front/sub/price_cont01.png) right 0 no-repeat;}
.lmsBack{background:url(/imgs/front/sub/sub0601_cont01.png) right 35px no-repeat;}
.pushBack{background:url(/imgs/front/sub/sub0602_cont01.png) right 155px no-repeat;}
/*inBox Full */
.inBox{float:left; width:746px; font-size:13px;}
.cont03 .process{height:147px; margin-bottom:30px;}
.inBox ul{margin-top:7px;}
.inBox > ul > li{width:120px; padding:0 10px 0 20px;}
.inBox > ul > li:last-child{width:120px; padding:0 0 0 20px;}
.inBox ul li ul li{float:none; height:25px;}
.inBox ul il ul li:last-child{text-align:right;}
.inBox .processImg{float:right; margin-right:15px;}

.cont03 > ul.margin-top10{margin-top:10px;}
.cont03 > ul.margin-top10 li{float:none;}
.cont03 > ul.margin-top10 li:last-child{margin-top:5px; margin-bottom:30px;}
.cont03 > ul.margin-top10 li.limargin-top15{margin-top:15px; font-size:13px; padding-left:15px; }

ul.margin-top45{margin-top:45px;}
img.imgborder{border:1px solid #e4e5e7;}
li.limargin-bottom15{margin-bottom:15px;}

ul.ulFloatNone{margin-top:15px;}
ul.ulFloatNone li.blue{margin-bottom:5px;}
ul.ulFloatNone li.blue, ul.ulFloatNone li.grey{float:none;}
/*2row : 서비스 종류*/
.inLeft{float:left; margin-top:15px; width:330px; height:auto; padding:20px 15px;  border:1px solid #e4e5e7; margin-bottom:5px;}
.inRight{float:right; margin-top:15px; width:330px; height:auto; padding:20px 15px; border:1px solid #e4e5e7; margin-bottom:5px;}
.inLeftType02{float:left; margin-top:30px;}
.inRightType02{float:right; margin-top:30px; margin-left:25px;}

.inHr{border:#e4e5e7 1px solid; margin:18px 0; }
.inHrDarkGrey{border:#a5acb4 1px solid; margin:18px 0; }
.priceHr{border:#e4e5e7 1px solid; margin:10px 0; }
.fwHr{border:#5d76af 1px solid; margin:15px 0 10px 0; }
.inTable{border-collapse:collapse; width:300px; height:180px;margin-left:15px;}
.inTitle{color:#fff; font-size:18px; font-weight:700; text-align:center; height: 39px; line-height:39px; }
.inBlue{background:url(/imgs/front/sub/buy.png) no-repeat 0 0;}
.inSky{background:url(/imgs/front/sub/rent.png) no-repeat 0 0;}
.inUl{margin-left:20px;}
.inUl li{list-style-type:disc; list-style-img:url(/imgs/front/sub/blitIn.gif); height:20px; font-size:11px;}


/*3row : 서비스 종류 */
.in3-1, .in3-2, .in3-3	{float:left; width:210px; padding:20px 15px 5px 15px; border:1px solid #e4e5e7;
background: -webkit-linear-gradient(#fff, #fafafa); /* For Safari 5.1 to 6.0 d1e4fb f1f7fe fafafa 70a6e7*/
background: -o-linear-gradient(#fff, #fafafa); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#fff, #fafafa); /* For Firefox 3.6 to 15 */
background: linear-gradient(#fff, #fafafa); /* Standard syntax */}
.in3-2{margin-left:10px;}
.in3-3{margin-left:9px;}
.in3Table{border-collapse:collapse; width:195px; margin-left:15px;}
.in3Table tr td{font-size:12px; height:20px;}
.in3Table tr td ul li{margin-left:10px; list-style:disc;}



/*inbox 3row: 가로 이미지 및 타이틀, 설명*/
.inBox3{float:left; width:746px; height:auto;}
.inBox3 ul{margin-top:7px;}
.inBox3 > ul > li{width:240px; margin-right:0;}
.inBox3 > ul > li:last-child{ margin-right:0;}
.inBox3 ul li ul li{float:none; height:20px;}
.inBox3 ul li ul li:first-child{height:139px; text-align:left;}

.productImg{height:139px;}
.productTitle{font-weight:600; font-size:15px; margin-top:12px;}
.productText{font-weight:normal; font-size:13px;}

/*inBox 2row : 아이콘, 설명*/
.inBox ul.inUlIcon{width:360px; float:left; list-style:none; margin-bottom:27px;}
.inBox ul.inUlIcon:nth-child(2n+1){margin-left:-20px; list-style-type:none;}
.inBox ul.inUlIcon:nth-child(2n){margin-left:26px; list-style-type:none;}
.inBox ul.inUlIcon li{float:left; list-style:none; }
.inBox ul.inUlIcon li:first-child{width:87px; margin-left:0;}
.inBox ul.inUlIcon li:last-child{float:right; width:212px;}
.iconImg{height:87px; width:87px;}
.inBoxdiv dl.dlIcon{width:215px; list-style-type:none; margin:0; padding:0; margin-left:-15px;}
.inBoxdiv dt.dtIcon{font-size:15px; font-weight:600; list-style-type:none;}
.inBoxdiv dd.ddIcon{font-size:12px; line-height:1.5em; margin-top:10px; word-wrap:break-word;list-style-type:none;}


/*inBox 무료혜택*/
.title03Div{width:746px;}
.inBox .title03Div ul.inUlIcon{width:360px; float:left; list-style:none;}
.inBox .title03Div ul.inUlIcon:nth-child(n+1){margin-left:0; list-style-type:none;}
.inBox .title03Div ul.inUlIcon:nth-child(2n){margin-left:14px; list-style-type:none;}
.inBox .title03Div ul.inUlIcon li{float:left; list-style:none;  }
.inBox .title03Div ul.inUlIcon li:first-child{width:87px; }
.inBox .title03Div ul.inUlIcon li:last-child{float:left; width:243px; margin-left:30px;}
.iconImg{height:87px; width:87px;}
.title03Div .inBoxdiv dl.dlIcon{width:243px; list-style-type:none; margin:0; padding:0; margin-left:-15px;}
.title03Div .inBoxdiv dt.dtIcon{font-size:15px; font-weight:700; list-style-type:none;}
.title03Div .inBoxdiv dd.ddIcon{font-size:12px; line-height:1.5em; margin-top:10px; word-wrap:break-word;list-style-type:none;}

/*inBox wide*/
.dlIconWide{width:540px;margin-left:78px;}
.dlbox	{float:left; width:500px; padding:20px 15px 20px 15px; border:1px solid #e4e5e7;
background: -webkit-linear-gradient(#fff, #fafafa); /* For Safari 5.1 to 6.0 d1e4fb f1f7fe fafafa 70a6e7*/
background: -o-linear-gradient(#fff, #fafafa); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#fff, #fafafa); /* For Firefox 3.6 to 15 */
background: linear-gradient(#fff, #fafafa); /* Standard syntax */}


/*inBox 가격*/
/**** 탭 스타일 ****/
#css_tabs {font-family:'nanumgothic',  sans-serif;}

#css_tabs input:nth-of-type(1), #css_tabs input:nth-of-type(1) ~ div:nth-of-type(1), #css_tabs input:nth-of-type(2), #css_tabs input:nth-of-type(2) ~ div:nth-of-type(2),
#css_tabs input:nth-of-type(3), #css_tabs input:nth-of-type(3) ~ div:nth-of-type(3), #css_tabs input:nth-of-type(4), #css_tabs input:nth-of-type(4) ~ div:nth-of-type(4),
#css_tabs input:nth-of-type(5), #css_tabs input:nth-of-type(5) ~ div:nth-of-type(5), #css_tabs input:nth-of-type(6), #css_tabs input:nth-of-type(6) ~ div:nth-of-type(6) {display:none; width:746px;}
#css_tabs input:nth-of-type(1):checked ~ div:nth-of-type(1), #css_tabs input:nth-of-type(2):checked ~ div:nth-of-type(2),
#css_tabs input:nth-of-type(3):checked ~ div:nth-of-type(3), #css_tabs input:nth-of-type(4):checked ~ div:nth-of-type(4),
#css_tabs input:nth-of-type(5):checked ~ div:nth-of-type(5), #css_tabs input:nth-of-type(6):checked ~ div:nth-of-type(6) {display:block;}

#css_tabs > label {display:inline-block; /*font-variant:small-caps;*/ font-size:.9em; padding:5px; text-align:center; width:12%; line-height:1.8em; font-weight:700; /*border-radius:3px 3px 0 0;*/ background:#fff; color:#5d76af; border:1px solid #556894; box-shadow:#c2c2c2 1px 1px ; border-width:1px 1px 0; letter-spacing:0;}
#css_tabs > label:hover {cursor:pointer;}
#css_tabs label[for=tab1] {}

#css_tabs input:nth-of-type(1):checked ~ label:nth-of-type(1), #css_tabs > label[for=tab1]:hover {background:#5d76af; color:#fff;}
#css_tabs input:nth-of-type(2):checked ~ label:nth-of-type(2), #css_tabs > label[for=tab2]:hover {background:#5d76af; color:#fff;}
#css_tabs input:nth-of-type(3):checked ~ label:nth-of-type(3), #css_tabs > label[for=tab3]:hover {background:#5d76af; color:#fff;}
#css_tabs input:nth-of-type(4):checked ~ label:nth-of-type(4), #css_tabs > label[for=tab4]:hover {background:#5d76af; color:#fff;}
#css_tabs input:nth-of-type(5):checked ~ label:nth-of-type(5), #css_tabs > label[for=tab5]:hover {background:#5d76af; color:#fff;}
#css_tabs input:nth-of-type(6):checked ~ label:nth-of-type(6), #css_tabs > label[for=tab6]:hover {background:#5d76af; color:#fff;}

#css_tabs .tab1_content, #css_tabs .tab2_content, #css_tabs .tab3_content, #css_tabs .tab4_content, #css_tabs .tab5_content, #css_tabs .tab6_content{padding:20px 0;  border-top:3px solid #5d76af;  width:746px;  height:100%;}
/**** 탭 스타일 끝 ****/

/**** 탭 내용 :2row 탭****/

.inBox ul.inUlPrice {width:337px; height:auto; border:3px solid #e4e5e7; float:left; float:left; list-style:none; padding:19px 13px;}
/*.inBox ul.inUlPrice {width:354px; height:347px; border:3px solid #5d76af; float:left; float:left; list-style:none;}*/
.inBox ul.inUlPrice:nth-child(2n+1){margin-left:0px; list-style-type:none;}
.inBox ul.inUlPrice:nth-child(2n){margin-left:6px; list-style-type:none;}
.inBox ul.inUlPrice li{float:none; list-style:none;}
.dlPrice {float:none; margin:5px 0; height:35px;}
/* .dtPrice{float:left; width:56px; font-size:13px; font-weight:500;} */
/* .ddPrice{float:left; width:281px; font-size:13px;} */
/* .selectDiv{width:337px;} */
.selectDiv select{width:337px;}
/**** 탭 내용 끝 ****/


/**** 탭 내용 : 4row 탭 ****/
ul.inUlPriceType04 {width:148px;/*180-13-13-3-3*/ height:350px; border:3px solid #e4e5e7; float:left; float:left; list-style:none; padding:19px 13px;}
/*.inBox ul.inUlPrice {width:354px; height:347px; border:3px solid #5d76af; float:left; float:left; list-style:none;}*/
ul.inUlPriceType04:nth-child(4n+1){margin-left:0px; list-style-type:none;}
ul.inUlPriceType04:nth-child(4n+2){margin-left:8px; list-style-type:none;}
ul.inUlPriceType04:nth-child(4n+3){margin-left:9px; list-style-type:none;}
ul.inUlPriceType04:nth-child(4n){margin-left:9px; list-style-type:none;}
ul.inUlPriceType04 li{float:none; list-style:none;}
.dlPriceType04 {float:none; margin:5px 0; height:35px;}
/*.dtPriceType04{float:left; width:56px; font-size:13px; font-weight:500;}*/
/*.ddPriceType04{float:left; width:138px; font-size:13px;}*/
.ddPriceType04{float:left; width:100%; font-size:13px;}
/*.selectDivType04{width:138px;/*148-5-5*/
.selectDivType04 select{width:138px;}*/
.selectDivType04{width:100%;/*148-5-5*/}
.selectDivType04 select{width:100%}
/**** 탭 내용 끝 ****/

/**** 탭 내용 : 3row 탭 ****/
ul.inUlPriceType03 {width:210px;/*242-13-13-3-3*/height:auto; border:3px solid #e4e5e7; float:left; float:left; list-style:none; padding:19px 13px;}
ul.inUlPriceType03:nth-child(3n+1){margin-left:0px; list-style-type:none;}
ul.inUlPriceType03:nth-child(3n+2){margin-left:10px; list-style-type:none;}
ul.inUlPriceType03:nth-child(3n){margin-left:10px; list-style-type:none;}
ul.inUlPriceType03 li{float:none; list-style:none;}
.dlPriceType03 {float:none; margin:5px 0; height:35px;}
.dlPriceType03:first-child{margin-top:10px;}
.dtPriceType03{float:left; width:200px;/*218-5-5*/ font-size:13px; height:20px; line-height:20px;}
.ddPriceType03{float:left; width:200px;/*218-5-5*/ font-size:13px; height:15px; margin-bottom:10px;}
.selectDivType03{width:200px;/*218-5-5*/}
.selectDivType03 select{width:200px;}
/* 탭 내용 끝 */



/* 서비스 선택 도움말 */
.inBoxQuestion{float:left; width:746px; }
.inBoxQuestion ul.qUI{width:746px;  
    background-color:#666; clear:both;}
.inBoxQuestion ul.qUI li:first-chlid{float:left; padding:0;}
.inBoxQuestion ul.qUI li:last-child{float:right; width:630px; heigth:280px;}
.q1{background:url(/imgs/front/sub/q1.gif) 0 25px no-repeat; height:280px; width:77px; margin: 0 39px 0 0;}
.q2{background:url(/imgs/front/sub/q2.gif) 0 25px no-repeat; height:280px; width:77px; margin: 0 39px 0 0;}
.q3{background:url(/imgs/front/sub/q3.gif) 0 25px no-repeat; height:280px; width:77px; margin: 0 39px 0 0;}
.q4{background:url(/imgs/front/sub/q4.gif) 0 25px no-repeat; height:280px; width:77px; margin: 0 39px 0 0;}
.qDl{width: 630px;margin-top:30px; }
.qDt{margin-bottom:15px; font-size:15px;}
.qDd{line-height:20px; font-size:13px;}
.blit_q{background:url(/imgs/front/sub/blit_q.gif) 0 0 no-repeat; width:4px; height:20px; margin-right:7px; float:left;}
.blit_map{background:url(/imgs/front/sub/blit_q.gif) 0 0 no-repeat; height:12px; padding-left:10px;}
.fullDl{width: 746px;margin-top:30px; }
.fullDl:first-child{margin-top:10px}
.fullDt{margin-bottom:5px; font-size:15px;}
.fullDd{line-height:20px; font-size:13px; word-break:break-all;}
.help{width:746px; text-align:right; font-size:11px; letter-spacing:-0.5px;}
.help a{color:#3f4c6b; text-decoration:none;}
.help a:hover{color:#216fe1; text-decoration:none;}
.termWrap{width:694px;margin-top:10px;padding:20px 30px 20px 20px;resize: none; wrap:hard;font-family: ngothic, NanumGothic, 나눔고딕;font-size:12px;color:#777f88; overflow-y:auto;
scrollbar-face-color: #d3d3d3;/*스크롤 단추 면 컬러*/
scrollbar-highlight-color: #d3d3d3;/*스크롤 단추 면 컬러*/
scrollbar-shadow-color: #e4e5e7;/*스크롤 단추 보더 컬러*/
scrollbar-3dlight-color: #e4e5e7;/*스크롤 단추 보더 컬러*/
scrollbar-arrow-color: #777f88;
scrollbar-track-color: #F7F7F7;
scrollbar-darkshadow-color: #F7F7F7;
scrollbar-base-color: #f1f1f1;	/*스크롤 영역 컬러*/
border-bottom:#e4e5e7 1px solid;
}

.term{height:1200px; /*630px;*//*스크롤 영역 컬러*/}
.termDl{max-width:1200px;}
.termDt{margin-bottom:10px;font-weight:700;}
.termDd{padding-left:15px; margin-bottom:10px;}

.mail{height:130px;}
/*서비스 선택 도움말 테이블*/
.qTableWrap{width:630px;}

.qTable{width:630px;  border:none; 
    cell-spacing:0; cell-padding:0; border-collapse:collapse;  margin-top:5px; }
.qTable th{border:1px solid #ccc; height:35px; line-height:35px; background:#e4e5e7; font-size:12px; text-align:center;}
.qTable td{border-bottom:1px solid #e4e5e7; border-left:1px solid #e4e5e7; border-right:1px solid #e4e5e7; height:30px; line-height:30px; text-align:center;  font-size:12px;}
.wTableWrap{width:746px;}
.wTable{width:746px;  border:none; cell-spacing:0; cell-padding:0; border-collapse:collapse;  margin-top:5px; }
.wTable th{border:1px solid #ccc; height:35px; line-height:35px; background:#e4e5e7; font-size:12px; text-align:center;}
.wTable td{border-bottom:1px solid #e4e5e7; border-left:1px solid #e4e5e7; border-right:1px solid #e4e5e7; height:30px; line-height:30px; text-align:center;  font-size:12px;}
/*세로 보더 없음*/
.wTable_noborder{width:746px;  border:none; cell-spacing:0; cell-padding:0; border-collapse:collapse;  margin-top:5px; }
.wTable_noborder th{border-top:1px solid #c2b6a8;/*#5d76af*/; border-bottom:1px solid #ccc; height:35px; line-height:35px; background:#f8f8f8; font-size:12px; text-align:center;}
.wTable_noborder td{border-bottom:1px solid #ccc; height:30px; line-height:30px; text-align:center;  font-size:12px;}
.wTable_noborder td a:link{color:#777f88; background:none; text-decoration:none;}
.wTable_noborder td a:visited{color:#777f88; text-decoration:none;}
.wTable_noborder td a:active{color:#777f88; text-decoration:none;}
.wTable_noborder td a:hover{color:#216fe1; text-decoration:none;}
.faqtdBack{background:#f8f8f8;}
.faqtrBorder{border-top:1px solid #5d76af;}
.wTable_noborder .faqtdLeft{text-align:left; padding-left:10px;}
/*서비스 장점*/
.strengTable{width:746px; border:none; cell-spacing:0; cell-padding:0; border-collapse:collapse; margin-top:5px; }
.strengTable th{border:1px solid #ccc; height:35px; line-height:35px; background:#e4e5e7; font-size:12px; text-align:center;;}
.strengTable td{border-bottom:1px solid #e4e5e7; border-left:1px solid #e4e5e7; border-right:1px solid #e4e5e7; height:30px; line-height:30px; text-align:center;  font-size:12px;}
.tdBack{background:#fafafa;}
/*부가서비스 SW고정IP*/
.tdBack02{background:#6CF; color:#fff;}
.tdBack03{background:#69F; color:#fff;}
/*부가서비스 가격표*/
.wTable .borderBottom{border-bottom:1px solid #5d76af;}

/*inBoxMap*/
/* .inBoxMap {z
    float:left; 
    width:100%; 
    margin-bottom:20px;
    overflow: hidden;
}
.inBoxMap dl {
    width:746px; 
    list-style-type:none; 
    margin:0 0 10px 0; 
    padding:0; 
    font-size:13px; 
    letter-spacing:-0.5px;
}
.inBoxMap dl dt {
    width:70px; 
    float:left; 
    color:#3f3f3f;
}

.inBoxMap dl dd {
    width:676px; 
    float:none; 
    margin-top:3px; 
    margin-left:20px;
} */


/*allPrice*/
.allPriceA{cursor:pointer;}

.allPriceA a{text-decoration:none; color:#777f88;}
/*.allPriceA a:hover, .allPriceA a.current{color:#216fe1; text-decoration:none;}*/
.allPriceA a:visited {color:#777f88; text-decoration:none;display:block;position:relative;padding-bottom:16px;}
.allPriceA a:active {color:#216fe1; text-decoration:none;}


/*view*/
.news-view {width:746px;border-top:1px solid #c2b6a8;/*#5d76af;*/ border-bottom:1px solid #dedede;font-size:12px;}
.news-view .subject {padding:8px 8px 8px 9px;border-bottom:1px solid #dedede;background:#f8f8f8;}
.news-view .subject .date {float:right;}
.news-view .regist-views {padding:8px 0 8px 9px;border-bottom:1px solid #dedede;background:#f8f8f8;}
.news-view .regist-views .views {margin-right:8px; float:right;}
.news-view .write-view {min-height:196px;padding:40px 9px;line-height:20px;}

/*버튼*/
.btn-right {margin-top:35px; margin-bottom:15px; width:86px; float:right; text-align:right; margin-right:95px; }
.btn-style 				{display:inline-block; width:86px; height:24px; line-height:13px; padding:6px 31px 6px 31px; font-size:12px; font-weight:500;  color:#fff; right:0;}
.btn-style span 		{display:inline-block; width:86px; height:24px; line-height:13px; padding:6px 31px 6px 31px; background:url(/imgs/front/btn/btn_style_off.png) no-repeat right top; font-size:12px;font-weight:500; color:#fff;}
.btn-style:hover span  	{display:inline-block; width:86px; height:24px; line-height:13px; padding:6px 31px 6px 31px; background:url(/imgs/front/btn/btn_style_on.png) no-repeat right top; font-size:12px;font-weight:500; color:#fff;}
.next-prev-list {width:746px; margin-top:35px;border-top:1px solid #c2b6a8;/*#5d76af;*/ font-size:12px;}
.next-prev-list tbody th {padding:7px;border-bottom:1px solid #dedede; background:#f8f8f8;}
.next-prev-list tbody td {padding:7px;border-bottom:1px solid #dedede;}
.next-prev-list tbody td a:link, .next-prev-list tbody td a:visited, .next-prev-list tbody td a:active {color:#777f88; text-decoration:none;}
.next-prev-list tbody td a:hover {color:#216fe1; text-decoration:none;}
.next-prev-list tbody tr:first-child th {background:#f8f8f8 url(/imgs/front/sub/prev_list.gif) no-repeat 10px 10px;}
.next-prev-list tbody tr:last-child th {background:#f8f8f8 url(/imgs/front/sub/next_list.gif) no-repeat 10px 10px;}

.btn-center {width:86px; text-align:center; height:36px; margin-top:10px;}
.btn-center a.btn-style 			{display:inline-block; width:86px; height:24px; line-height:13px; font-size:12px; font-weight:500;  color:#fff;}
.btn-center a.btn-style span 		{display:inline-block; width:86px; height:24px; line-height:13px; background:url(/imgs/front/btn/btn_style_off.png) no-repeat 31px 0px ; font-size:12px;font-weight:500; color:#fff; text-align:center;}
.btn-center a.btn-style:hover span  {display:inline-block; width:86px; height:24px; line-height:13px; background:url(/imgs/front/btn/btn_style_on.png) no-repeat 31px 0px; font-size:12px;font-weight:500; color:#fff; text-align:center;}


/*sub lnb*/
.sub_subtitle{font-size:8px; color:#c0a661;}






.family-site {position:relative;float:right; margin-top:60px; border:2px solid #415684;/*3f4c6b;*/}
.family-site .site {display:block;width:138px;height:23px;line-height:25px; padding:0 0 0 10px;background:#667490 url(/imgs/front/btn/btn_family_close1.gif) no-repeat right top;color:#fff;cursor:pointer; text-decoration:none;}
.family-site .site.current {background:#667490 url(/imgs/front/btn/btn_family_open1.gif)  no-repeat right top;color:#fff; /* #216fe1; #534b56;*/}
.family-site .family-view {display:none; position:absolute; top:27px; left:-1px; width:147px; height:36px;/*height:46px;*/ border:2px solid #415684; background:#667490;}
.family-site .family-view li {margin-top:1px;width:146px;}
.family-site .family-view li a {display:block;padding:3px 0 7px 30px; border-left:6px solid #3f4c6b;/*#3f6a74;*/ color:#fff; text-decoration:none;}
.family-site .family-view li a:hover {border-color: #3f4c6b; background:#fff;/*#e9ecef;*/ text-decoration:none; color:#667490;}


#fLogo{position:absolute; margin-top:65px; margin-left:-562px; left:50%;}
#address-area {height:50px; width:580px; margin:0; padding:65px 0 0 80px;}
#address-area ul{width:580px;}
#address-area ul li{float:none; line-height:18px; color:#b3c5d4;}
#address-area a, #address-area a:active, #address-area a:visited{text-decoration:none; color:#fff; font-weight:500; font-size:inherit; }
#address-area a:hover	{text-decoration:underline; color:inherit;}
