@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'yg-jalnan';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	list-style-type: none;
	text-decoration: auto;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	color:#222;
}



body {
font-family: "Noto Sans";
line-height:1.3;
letter-spacing: -1.5px;
word-break: keep-all;
}

#gnbM {
	display:none;
}
/* 공용 CSS */




/* 햄버거 버튼 스타일 */
header .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
			width: 25px;
        height: 25px;
        }

header  .hamburger div {
width: 25px;
    height: 3px;
    background: #1e2f59;
    margin: 2.5px 0;
	transition: all 0.3s ease-in-out;
            position: absolute;
        }

        /* 네비게이션 메뉴 스타일 */
header  .nav-menu {
            list-style: none;
            display: flex;
        }

header  .nav-menu li {
            margin: 0 15px;
        }

header .nav-menu a {
            text-decoration: none;
            color: #222;;
            font-size: 16px;
    padding: 15px 0;
    display: block;
        }
header .nav-menu a.on {
			border-bottom:1px solid #1e2f59;
			color :#1e2f59;
		}






 /* 햄버거 버튼 애니메이션 */
header .hamburger div:nth-child(1) { top: 5px; }
header .hamburger div:nth-child(2) { top: 14px; }
header .hamburger div:nth-child(3) { top: 23px; }

        /* X 모양으로 변경 */
header  .hamburger.active div:nth-child(1) {
            transform: rotate(45deg);
            top: 14px;
        }

header  .hamburger.active div:nth-child(2) {
            opacity: 0;
        }

header .hamburger.active div:nth-child(3) {
            transform: rotate(-45deg);
            top: 14px;
        }
/* 서브 메뉴 스타일 */
header .sub-menu {
            display: none;
            position: absolute;
            left: 0;
            top: 100%;
            width: 180px;
            list-style: none;
        }

header  .sub-menu li {
            padding: 5px;
			 border-bottom: 1px solid #ffffff;
        }
header .sub-menu li:last-child {
			border-bottom:none;
		 }
header .sub-menu a {
            color: #222;
            font-size: 14px;
        }


header .mobi_gnb .lang {
    padding: 30px 0;
    margin-top: 30px;
}








.container {
	max-width:1280px;
	margin: 0 auto;
}
button {
	border:none;
	background:none;
}

/* header CSS */
header  {
	position:fixed;
	top:0;
	width:100%;
	z-index:9999;
}
header .top_header {
	background:#1e2f59;
	color:white;
}
header .top_header .container {
    display: flex;
    height: 30px;
    gap: 25px;
    align-items: center;
    justify-content: end;
	font-size:14px;
}
header .top_header li {
	display:flex;
	gap:10px;
}
header .main_header {
	background:white;
	box-shadow: 0 0 10px #00000017;
}
header .main_header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .main_header .gnb {
	display:grid;
text-align: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr min-content;
    align-items: center;
    gap: 35px;
    font-weight: 500;
    height: 70px;
}
header .main_header .logo {
	width:170px;
}
header .main_header .lang_btn {
background: #4a90e2;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	position:relative;
}
header .container_wrap {
    max-width: 1280px;
	margin:0 auto;
	display: flex;
    justify-content: end;
}
header .main_header .lang_btn img {
	width:20px;
	height:20px;
}
header .main_header .lang_btn .lang_wrap img {
    width: 25px;
    height: 17px;
}
header .main_header .lang_btn:hover .lang_wrap {
	display:block;
}
header  .lang_wrap {
    position:absolute;
    top: 40px;        /* lang_btn 높이와 동일 → 버튼 바로 아래부터 시작 */
    left: -15px;
    background:white;
    border-radius:15px;
    box-shadow: 0 0 10px #00000017;
    padding:14px;
    display:none;
    z-index:99999;
}
header  .lang_wrap button {
	height:32px;
	margin:0;
	width:120px;
	text-align:left;
	cursor:pointer;
	border-radius:10px;
	padding-left:10px;
	font-family: "Noto Sans";
	    display: flex;
    align-items: center;
    gap: 8px;
}
header  .lang_wrap button:hover {
	background:#4a90e2;
	color:white;
}

header .sub_header {
	background:#ffffffeb;
	border-top:1px solid #e1e1e1;
	border-bottom:1px solid #e1e1e1;
	position: absolute;
    top: 98px;
    width: 100%;
    left: 0;
	visibility: hidden;
	opacity: 0;
	transition:all 0.3s;
}
header .sub_header.on {
visibility: visible;
opacity:1;
}
header .main_header .gnb li{
	width:140px;
}
header .sub_header .container {
	display:flex;
	padding: 25px 0 40px;
	align-items: start;
    margin: 0;
	gap:35px;
	    margin-right: 75px;
}
header .sub_header .menu_wrap {
	flex:1;
	width:140px;
}
header .sub_header .menu_wrap .menu_title {
	font-size: 13px;
    color: white;
    background: #1e2f59;
    border-radius: 100px;
    display: inline-block;
    padding: 5px 13px;
	margin-bottom: 15px;
}
header .sub_header .menu_wrap ul {
	display:grid;
	gap:14px;
	font-size:16px;
}
header .sub_header .menu_wrap ul  a:hover {
	background:#f5f5f5;
}

.fs14 {
	font-size:14px;
}

.isd_main_wrap {
	margin-top: 100px;
}

.isd_main_wrap .section1 .container {
    display: grid;
    grid-template-columns: 980px 1fr;
    gap: 20px;
}
.isd_main_wrap .section1 .box1   {
grid-row: 1 / span 2;
	background:#f1f1f1;
}
.isd_main_wrap .section1 .box2{
	background:#1e2f59;
	color:white;
}
.isd_main_wrap .section1 .box3 {
	background:#4a90e2;
	color:white;
}
.isd_main_wrap .section1 .box2 .box_wrap,
.isd_main_wrap .section1 .box3 .box_wrap{
display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 27px 30px;
    gap: 24px 16px;
}
.isd_main_wrap .section_box {
	border-radius:30px;
}

.isd_main_wrap .icon_wrap {
	background:white;
	border-radius:100px;
	width:50px;
	height:50px;
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 auto;
    margin-bottom: 10px;
	transition:all 0.3s;
}
.isd_main_wrap .section1 .box_menu {
	cursor:pointer;
}
.isd_main_wrap .section1 .box_menu:hover .icon_wrap{
	transform: translate(0px, -7px);
}



.isd_main_wrap .icon_wrap img{
	width:50px;
	height:50px;
}

.isd_main_wrap .slick-slider .slick-track,
.isd_main_wrap .slick-slider .slick-list {
	height:100%;
	border-radius:30px;
}

.isd_main_wrap .section1 .box1 .swiper-slide1 {
	background:url('../../images/main_slider1.jpg') no-repeat;
	background-position:center;
	background-size:cover;
}
.isd_main_wrap .section1 .box1 .swiper-slide2 {
	background:url('../../images/main_slider2.jpg') no-repeat;
	background-position:center;
	background-size:cover;
}
.isd_main_wrap .section1 .box1 .swiper-slide3 {
	background:url('../../images/main_slider3.jpg') no-repeat;
	background-position:center;
	background-size:cover;
}


.isd_main_wrap .section1 .title_wrap {
	color:white;
	text-align:center;
	margin-top:150px;
}
.isd_main_wrap .section1 .title_wrap .sub_title {
	font-size:24px;
}
.isd_main_wrap .section1 .title_wrap .main_title {
	font-family: 'yg-jalnan';
	font-size:40px;
	margin-top:8px;
}
.isd_main_wrap .section1 .slick-dotted.slick-slider {
	height:100%;
}

.isd_main_wrap .slick-dots {
position: absolute;
    bottom: 15px;
    right: 30px;
    width: auto;
}
.isd_main_wrap .slick-dots li {
	margin: 0 2px;
}
.isd_main_wrap .slick-dots li button:before {
	font-size:16px;
	color: white;
	opacity:0.8;
}
.isd_main_wrap .slick-dots li.slick-active button:before {
	color:#1e2f59;
	opacity:1;
}



/* 20250825 메인페이지 레이아웃 수정*/


.isd_main_wrap .section3 .ims_video {
	position: relative;
}
.isd_main_wrap .section3 .ims_video_list {
    position: absolute;
    height: 705px;
    bottom: 0;
    right: 0;
    width: 320px;
}













.isd_main_wrap .section2 {
	margin-top:50px;
	margin-bottom:50px;
}
.isd_main_wrap .section2 .flex_wrap {
	display: grid;
    gap: 20px;
    grid-template-columns: 1fr 380px;
}

.isd_main_wrap .section2 .grid_wrap {
	display:grid;
	gap:20px;
	height:340px;
	grid-template-columns: 1fr 1fr 1fr;
}

.isd_main_wrap .section2 .grid_wrap .box1 {
	background:#dde9f2;
	width:430px;
    gap: 10px;
}
.isd_main_wrap .section2 .grid_wrap .box1 img {
	width:50px;
	height:50px;
}

.isd_main_wrap .section2 .flex_box1 .grid_wrap .section_box {
		display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.isd_main_wrap .section2 .flex_box1 .grid_wrap .section_box.box1 {
	text-align: left;
}
.isd_main_wrap .section2 .grid_wrap .box2 {
	background:#dde8f4;
	width:205px;
	grid-row: span 2;
}
.isd_main_wrap .section2 .grid_wrap .box3 {
    background: #f5f5f5;
    grid-row: span 2;
    width: 205px;
    background-image: url(../../images/leaf.png);
    background-repeat: no-repeat;
    background-position: 78px 120px;
}
.isd_main_wrap .section2 .grid_wrap .box3  .fs18 {
	font-weight:bold;
	font-size:18px;
}
.isd_main_wrap .section2 .grid_wrap .box4 {
	background:#deecfd;
	width: 238px;
}
.isd_main_wrap .section2 .grid_wrap .box5 {
	background:#ededed;
width: 172px;
}
.isd_main_wrap .section2 .grid_wrap .flex {
	display:flex;
	gap:20px;
}
.isd_main_wrap .section_title {
	margin-bottom:10px;
	font-weight:bold;
	font-size: 18px;
}
.isd_main_wrap .section2 .flex_box2 .section_box {
	background:#ecf0f5;
	height:340px;
display: flex;
    align-items: center;
    justify-content: center;
	cursor:auto;
    box-sizing: border-box;
}
.isd_main_wrap .section2 .section_box  {
	cursor:pointer;
	transition:all 0.3s;
}
.isd_main_wrap .section2 .section_box:hover .icon_wrap{
	transform: translate(0px, -7px);
}
.isd_main_wrap .section2 .grid_wrap .box1 {
	cursor:auto;
}
.isd_main_wrap .section2 .box2:hover {
	background:#c9d9e9;
}
.isd_main_wrap .section2 .grid_wrap .box3:hover {
	background-color:#e1e1e1;
}
.isd_main_wrap .section2 .grid_wrap .box4:hover {
	background-color:#c3d4e7;
}
.isd_main_wrap .section2 .grid_wrap .box5:hover {
	background-color:#dddddd;
}
.isd_main_wrap .section2 .flex_box table {
	width:100%;
}
.isd_main_wrap .section2 .flex_box table .pay_0301 {
}
.isd_main_wrap .section2 .flex_box table tbody {
display: grid;
    gap: 20px;
}
.isd_main_wrap .section2 .flex_box table .pay_0300 {
	display:flex;
align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.isd_main_wrap .section2 .flex_box table input,
.isd_main_wrap .section2 .flex_box table select {
    border: none;
    width: 250px;
    background: white;
    border-radius: 10px;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}
.isd_main_wrap .section2 .flex_box table .btn_tr td {
	width:100%;
}
.isd_main_wrap .section2 .flex_box table .pay_0303 {
    width: 315px;
cursor:pointer;
background:#222;
color:white;
margin-top:10px;
}

.isd_main_wrap .section3 .ims_video {
	display:flex;
	gap:20px;
	height:340px;
}
.isd_main_wrap .section3 .ims_video .ims_video_view iframe {
    width: 880px;
    height: 340px;
    border-radius: 30px;
}
.isd_main_wrap .section3 .ims_video_list {
background: #f5f5f5;
    border-radius: 30px;
	/*border-top-right-radius:0;
	border-bottom-right-radius:0;*/
    padding: 30px;
    overflow-y: auto;
}
.isd_main_wrap .section3 .ims_video_list ul {
	display:grid;
	gap:12px;
}
.isd_main_wrap .section3 .ims_video_list li {
	display:flex;
	align-items: center;
    gap: 12px;
	background: white;
    border-radius: 12px;
    padding: 10px;
}
.isd_main_wrap .section3 .ims_video_text {
	font-size:14px;
}
.isd_main_wrap .section3 .ims_video_thum img {
	border-radius:12px;
	width:120px;
	height:90px;
}
.isd_main_wrap .section3 .flex_wrap {
	display:grid;
	gap:20px;
}

.isd_main_wrap .more_btn {
color: #4a90e2;
    font-size: 14px;
    cursor: pointer;
	margin-left:10px;
}


.isd_main_wrap .section3 .ims_gallery {
	position:relative;
}
.isd_main_wrap .section3 .ims_gallery .ims_gallery_arrow {
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
	left: -50px;
}

.isd_main_wrap .section3 .ims_gallery .ims_gallery_arrow.next {
	left:auto;
    right: -50px;
    transform: rotate(180deg) translate(0px, 50%);
}

.isd_main_wrap .section3 .ims_gallery .bx-wrapper img {
width: 306px;
    height: 180px;
    border-radius: 30px;
    object-fit: cover;
}



.ims_video_list::-webkit-scrollbar{
    width: 8px;
}
.ims_video_list::-webkit-scrollbar:vertical {
  width: 8px;
}
.ims_video_list::-webkit-scrollbar:horizontal {
  height: 10px;
}
/* 스크롤바 막대 설정*/
.ims_video_list::-webkit-scrollbar-thumb{
  background-color: #1e2f59;
}
/* 스크롤바 뒷 배경 설정*/
.ims_video_list::-webkit-scrollbar-track{
  background-color: #ffffff00;
}


.isd_main_wrap .section4 {
	margin-top:50px;
	margin-bottom:100px;
}
.isd_main_wrap .section4  .ims_board {
	display:flex;
	gap:20px;
}
.isd_main_wrap .section4  .ims_board .flex_box {
	flex:1;
}

.isd_main_wrap .section4	 .section_box {
background: #f5f5f5;
    padding: 30px;
    width: 413.3px;
    box-sizing: border-box;
}
.isd_main_wrap .section4	 .section_box table {
	width:100%;
}

.isd_main_wrap .section4	 .section_box tbody {
	display:grid;
	gap:12px;
}
.isd_main_wrap .section4	 .section_box tr {
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 10px;
    height: 20px;
	font-size:14px;
}
.isd_main_wrap .section4	 .board_text {
overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




#footer {
	background:#222;
	color:white;
}
#footer .footDiv {
	max-width:1280px;
	margin:0 auto;
}
#footer .footDiv .copyRight {
	text-align:center;
	padding: 70px 0;
}
#footer .footDiv .copyRight button {
	display:none;
}
.mobi_gnb {
	display: none;
}
















@media screen and (max-width: 1280px) {
	.isd_main_wrap .section3 .ims_video_list {
	    position: inherit;
    height: auto;
	}
	.container {
		width: 770px;
		padding: 0 16px;
	}
	.isd_main_wrap .section1 .container {
		grid-template-columns: 550px 1fr;
        justify-content: center;
        gap: 10px;
	}
	.fs16 {
		font-size:14px;
	}
	.isd_main_wrap .section1 .title_wrap .sub_title {
		font-size:18px;
	}
	.isd_main_wrap .section1 .title_wrap .main_title {
		font-size:32px;
	}
	.isd_main_wrap .section2 {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.isd_main_wrap .section2 .grid_wrap {
		gap:10px;
	}
	.isd_main_wrap .section2 .flex_wrap {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.isd_main_wrap .section2 .grid_wrap .box2 {
		width:187px;
	}
	.isd_main_wrap .section2 .grid_wrap .box3 {
		width:187px;
	}
	.isd_main_wrap .section2 .grid_wrap .flex {
		gap:10px;
	}
	.isd_main_wrap .section2 .grid_wrap .box1 {
		width:375px;
	}
	.isd_main_wrap .section2 .grid_wrap .box5 {
		width:140px;
	}
	.isd_main_wrap .section2 .grid_wrap .box4 {
		width:225px;
	}

	.isd_main_wrap .section3 .flex_wrap {
		gap:10px;
	}
	.isd_main_wrap .section3 .ims_video {
		gap:10px;
	}
	.isd_main_wrap .section3 .ims_video .ims_video_view iframe {
		width:550px;
	}
	.isd_main_wrap .section3 .ims_video_list {
        width: 210px;
		 box-sizing: border-box;
        padding: 10px
	}
	.isd_main_wrap .section3 .ims_video_list li {
		display:grid;
		        justify-content: center;
        text-align: center;
        gap: 3px;
	}
	.ims_video_list::-webkit-scrollbar-track {
    background-color: white;
}
.isd_main_wrap .section4 .ims_board {
	    gap: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
}
.isd_main_wrap .section4 .section_box {
	width:auto;
}
.isd_main_wrap .section4 .ims_board .flex_box3 {
grid-column: span 2;
}

.isd_main_wrap .section3 .bx-viewport li {
	margin-right:10px !important;
	width:250px !important;
}
.isd_main_wrap .section3 .ims_gallery .bx-wrapper img {
	width:250px;
	height: 155px;
}

header .main_header .gnb {
	display:none;
}
header .main_header .container {
	position:relative;
}
header .mobi_gnb {
	display: block;
}
header .hamburger {
                display: flex;
            }

header .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                position: absolute;
				top: 50px;
			right: 0;
                text-align: center;
			border-bottom:1px solid #1e2f59;
			z-index:9999;
            }
header  .nav-menu.active {
                display: flex;
            }
header .sub-menu {
                position: static;
                width: 100%;
                background: #f5f5f5;
                display: none;
            }
header .main_header .logo {
    width: 140px;
}
header .main_header {
    padding: 10px 0;
}
header .mobi_gnb .lang button {
		background: #f5f5f5;
        border-radius: 100px;
	width:60px;
	height:60px;
	font-size: 12px;
}
header .mobi_gnb .lang button.on {
	background:#1e2f59;
	color:white;
}
header .mobi_gnb .lang {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
header .mobi_gnb .lang img {
	width:16px;
}


}









@media screen and (max-width: 800px) {
.container {
	width:auto;
}
.isd_main_wrap {
    margin-top: 66px;
}
.isd_main_wrap .section1 .container {
display: grid;
grid-template-columns: 2fr 1fr;
}
.isd_main_wrap .section_box {
border-radius: 16px
}
.isd_main_wrap .section1 .slick-dotted.slick-slider {
	margin-bottom:0px;
	height: 200px;
}

.isd_main_wrap .section1 .title_wrap {
display: grid;
        margin-top: 70px;
        justify-content: center;
        align-items: center;
}
.isd_main_wrap .section1 .title_wrap .sub_title {
	font-size:14px;
}
.isd_main_wrap .section1 .title_wrap .main_title {
	font-size:20px;
	margin-top: 5px;
}

.isd_main_wrap .slick-slider .slick-track, .isd_main_wrap .slick-slider .slick-list {
	border-radius:16px;
}
.isd_main_wrap .slick-dots {
	right: 50%;
    transform: translate(50%);
}
.isd_main_wrap .slick-dots li button:before {
	font-size:10px;
	width:10px;
	height:10px;
}
.isd_main_wrap .slick-dots li{
	width:15px;
}
.isd_main_wrap .icon_wrap {
	width:40px;
	height:40px;
}
.isd_main_wrap .icon_wrap img {
	width:40px;
	height:40px;
}
.isd_main_wrap .section1 .box2 .box_wrap, 
.isd_main_wrap .section1 .box3 .box_wrap {
    padding: 16px 16px;
	gap: 15px 0px;
}

.isd_main_wrap .section1 .box3 {
}

.isd_main_wrap .section1 .box1 {
    grid-row: auto;
	grid-column:1 / span 2;
}
.isd_main_wrap .section1 .box3 .box_wrap {
grid-template-columns: 1fr;
}




.isd_main_wrap .section2 .grid_wrap {
    grid-template-columns: 1fr 1fr;
	height: 290px;
}
.isd_main_wrap .section2 .grid_wrap .box1 {
	width:auto;
}
.isd_main_wrap .section2 .grid_wrap .box2 {
	width:auto;
}

.isd_main_wrap .section2 .grid_wrap .box3 {
	width:auto;
        background-position: 125px 50px;
        background-size: 100px;
}
.isd_main_wrap .section2 .grid_wrap .box4 {
	width:auto;
        flex: 1;
}

.isd_main_wrap .section2 .grid_wrap .box5 {
	width:auto;
        flex: 1;
}
.isd_main_wrap .section2 .flex_box1 .grid_wrap .section_box.box1 {
    padding-left: 10px;
}
.isd_main_wrap .section2 .grid_wrap .box1 img {
width: 40px;
    height: 40px;
}

.isd_main_wrap .section_title {
	font-size:16px;
}
.isd_main_wrap .section2 .flex_box2 .section_box {
height: auto;
        justify-content: start;
        padding: 16px;
		        display: block;
}
.isd_main_wrap .section2 .flex_box table tbody {
	gap:10px;
}
.isd_main_wrap .section2 .flex_box table input, .isd_main_wrap .section2 .flex_box table select {
	width:100%;
}
.isd_main_wrap .section2 .flex_box table .pay_0300 td {
	flex:1;
}

.isd_main_wrap .section2 .flex_box table .pay_0300 .pay_0301 {
        flex: none;
	font-size: 14px;
}
.isd_main_wrap .section2 .flex_box table .pay_0303 {
width: 100%;
}
.isd_main_wrap .section2 .flex_box table .btn_tr {
    display: flex;
}

.isd_main_wrap .section3 .ims_video {
	display:grid;
	height:auto;
}
.isd_main_wrap .section3 .ims_video .ims_video_view iframe {
        width: 100%;
        height: 200px;
	border-radius:16px;
}
.isd_main_wrap .section3 .ims_video_list {
	width:100%;
	height:200px;
	padding:20px;
}
.isd_main_wrap .section3 .ims_video_list li {
	display:flex;
}
.isd_main_wrap .section3 .ims_video_thum img {
width: 170px;
    height: 115px;
    object-fit: cover;
}


.isd_main_wrap .section3 .ims_gallery .bx-wrapper img {
	border-radius:16px;
}
.isd_main_wrap .section4 .section_box {
	padding:16px;
}
.isd_main_wrap .section4 .ims_board {
	display:block;
}
.isd_main_wrap .section4 {
	margin-top:20px;
	margin-bottom:70px;
}
.isd_main_wrap .more_btn {
	margin-left:6px;
}
.isd_main_wrap .section4 .board_text {
	font-size:12px;
}
.isd_main_wrap .section4 .ims_board .flex_box2 {
	margin:10px 0;
}
.isd_main_wrap .section3 .ims_gallery .ims_gallery_arrow {
	display:none;
}

}