@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	color: white;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #1b1b1b;
}
.wrapper {
	position: relative;
	height: 100vh;
	color: #fff;
    overflow: auto;
    scroll-snap-type: y mandatory;
	-ms-scroll-snap-type: mandatory;
}

.wrapper .header {
	z-index: 10;
	background: #1b1b1b;
	position: fixed;
	width: 100%;  /*이게 머선 의미가 있노..*/
	height: 60px;
	display: flex;
	top: 0;
}
.wrapper .header .header-menu {
	width: 100%; 
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}
.wrapper .header .header-menu .trust {
	font-size: 13px;
}
.wrapper .header .header-menu .header-left {
	display: flex;
}
.wrapper .header .header-menu .header-left .title {  /*헤더 글자 코딩뭐시 적혀있*/
	color: #fff;
	margin-top: 5px;
	margin-left: 25px;
	font-size: 27px;
	text-transform: uppercase; /*대문자로 만드는 태그*/
	font-weight: 1000;
}

.title span {
	color: white;
	transition: 0.3s;
	transition-property: color;
}
.title span:hover {
	color: darkorange;
}
.header-menu .sidebar-btn { /*bars 아이콘*/
	color: #fff;
	margin-right: 10px;
	font-size: 35px;
	font-weight: 900;
	cursor: pointer;
}
.header-menu .sidebar-btn i {
	color: rgba(255,235,132,1.00);
	transition: 0.3s;
	transition-property: color;   /*색깔 변할때 시간을 간섭하겠다는 태그*/
}
.header-menu .sidebar-btn i:hover {
	color: #F17520;
}
.wrapper .sidebar {
	z-index: 5;
	background: #1b1b1b;
	opacity: 0.8;
	position: fixed;
	top: 60px;
	width: 230px;
	height: 100vh;
	transition: 0.4s;
	transition-property: width;
	overflow-y: auto; /*초과한 영역은 잘라서 보여주는 역할 */
}
.wrapper .sidebar .sidebar-menu {
	overflow: hidden;
}
.wrapper .sidebar .sidebar-menu .feat-show.show {  /* j쿼리 적용한 지역 */
	display: block;
}
.wrapper .sidebar .sidebar-menu .serv-show.show1 {  /* j쿼리 적용한 지역 */
	display: block;
}
.wrapper .sidebar .sidebar-menu .item {
	width: 230px;
	overflow: hidden;
}
.wrapper .sidebar .sidebar-menu .item .menu-btn {
	display: block;
	color: #fff;
	font-size: 19px;
	position: relative;
	padding: 25px 20px;
	transition: 0.3s;
	transition-property: color;
}
.wrapper .sidebar .sidebar-menu .item .menu-btn:hover {
	color: darkorange;
}
.wrapper .sidebar .sidebar-menu .item .menu-btn i {
	margin-right: 20px;
}
.wrapper .sidebar .sidebar-menu .item .menu-btn .drop-down {
	float: right;
	font-size: 12px;
	margin-top: 3px;
}
.wrapper .sidebar .sidebar-menu .item .sub-menu {
	background: #3A3A3A;
	overflow: hidden;
	max-height: 0;
	transition: 0.3s;
	transition-property: background, max-height;
}
.wrapper .sidebar .sidebar-menu .item .sub-menu a {
	display: block;
	position: relative;
	color: #fff;
	white-space: nowrap;
	font-size: 15px;
	margin-left: 20px;
	padding: 20px;
	border-bottom: 1px solid #000000;
	transition: 0.3s;
	transition-property: background;
}
.wrapper .sidebar .sidebar-menu .item .sub-menu a:hover {
	background: #B35503;
}
.wrapper .sidebar .sidebar-menu .item .sub-menu i {
	padding-right: 20px;
	font-size: 15px;
}
.wrapper .sidebar .sidebar-menu .item:target .sub-menu {   /*  타겟 타겟 타겟 타겟 타겟  */
	max-height: 500px;
}

.sidebar-menu .item a span div {
	position: absolute; /*위치의 절대값 / relative도 있는데 부모요소에 주로사용 */
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 22px;
	transition: transform 0.4s; /*전에랑 차이가 뭔지 확인해보면 좋을듯*/
}
.sidebar-menu .item a span div.rotate {   /* 화살표 고정시키는 j쿼리 적용*/
	transform: translateY(-50%) rotate(-180deg); /*여기서 왜 후버값을 중간에 줘야하는지 모르겠긴 한데..*/
}
.wrapper.collapse .sidebar {
	width: 60px;
}
.wrapper.collapse .sidebar img,
.wrapper.collapse .sidebar p,
.wrapper.collapse .sidebar a span {
	display: none;
}
.wrapper.collapse .sidebar .sidebar-menu .item .menu-btn {
	font-size: 23px;
}
.wrapper.collapse .sidebar .sidebar-menu .item .sub-menu i {
	font-size: 18px;
	margin-left: 23px;
	padding-left: 3px;
}
.wrapper.collapse .sidebar .sidebar-menu .item .sub-menu a {
	margin-left: -25px;
}

.wrapper.collapse .container {
	width: calc(100% - 60px);
	margin-left: 60px;
}

/* -- 컨테이너 -- */
.wrapper .container {
	width: calc(100% - 230px);
	margin-top: 60px;
	margin-left: 230px;
	background: rgba(54,54,54,1.00);
	background-size: cover;
	height: 100vh;
	transform: 0.2s;
}
.wrapper .container .contents {
  display: flex;
  height: 100%;
  width: 100%;
  font-size: 5vw;
  border-bottom: 3px solid rgba(23,23,23,1.00);
  color: white;
  background: black;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
  -ms-scroll-snap-coordinate:0 0;
  overflow: hidden;
}
  #con0 ul{position:relative;height:100%; width: 100%;}
  #con0 li{position:absolute;left:0;right:0;top:0;bottom:0;opacity:0;animation:fade 15s infinite;}
  #con0 li {bacground: cover; }
  #con0 li:nth-child(1){background: url("../images/m1.jpg")no-repeat; animation-delay:0s}
  #con0 li:nth-child(2){background: url("../images/m2.jpg")no-repeat; animation-delay:5s}
  #con0 li:nth-child(3){background: url("../images/m3.jpg")no-repeat; animation-delay:10s}

  @keyframes fade { 
      0% {opacity:0;}
      5% {opacity:1;}
      30% {opacity:1;}
      35% {opacity:0;}
      100% {opacity:0;}
  }
.wrapper .container #con1 {
	width: 100%;
	height: 100%;
	text-align: center;
	justify-content: center;
	overflow: hidden;
	display: flex;
	flex-flow: column wrap;
}
.boxes {
	width: 65%;
	height: 22%;
	margin: 4px;
}
.box1 {
	margin-top: 40px;
	background: pink;
}
.boxes .b {
	width: 100%;
	height: 100%;
}
.wrapper .container #con2 {
	background: url("../images/back22.jpg") no-repeat;
	background-size: cover;
}
.wrapper .container #con3 {
    background: url("../images/back33.jpg") no-repeat;
	background-size: cover;
}
.wrapper .container #con3 .vid_1 {
	width: 100vw;
	height: auto;
}

/*  사진슬라이드  */

	#slider {
	margin: 0 auto;
	width: 1000px; /* 내가 임의 조 */
	max-width: 100%;
	text-align: center;
	}
	#slider input[type=radio] {
	display: none;	
	}
	#slider label {
	cursor: pointer;
	text-decoration: none;
	}
	#slides {
	padding: 10px; /*  이미지랑 테두리랑 여백 */ 
	border: 2px solid #ccc;
	background: #fff;
	position: relative;
	z-index: 1;
	}
	#overflow {
	width: 100%;
	overflow: hidden;
	}
	#slide1:checked ~ #slides .inner {
		margin-left: 0;
	}
	#slide2:checked ~ #slides .inner {
		margin-left: -100%;
	}
	#slide3:checked ~ #slides .inner {
		margin-left: -200%;
	}
	#slide4:checked ~ #slides .inner {
		margin-left: -300%;
	}
	#slide5:checked ~ #slides .inner {
		margin-left: -400%;
	}
	#slides .inner {
	transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	width: 500%; /* 내가 임의조정 원래값은 300% */
	line-height: 0;
	height: 600px;
	}
	#slides .slide {
	width: 20%; /* 내가 임의조정 원래값은 25% */
	float: left;
	display: flex;	
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	background-color: #e2e2e2;
	}
	#slides .slide_1 {
		background: #e2e2e2;
		background-size: contain;
		align-items: center;
		justify-content: center;
	}
#slides .slide .slide-content .img {
		width: 100%;
		object-fit: contain;
	}
	.slide-content {
		padding: 0;
	}
	#controls {
	margin: -50px 0 0 0;
	width: 100%;
	height: 20px;
	z-index: 3;
	position: relative;
	}
	#controls label {
		width: 50px;
		height: 50px;
}
	#slide1:checked ~ #controls label:nth-child(2),
	#slide2:checked ~ #controls label:nth-child(3),
	#slide3:checked ~ #controls label:nth-child(4),
	#slide4:checked ~ #controls label:nth-child(5),
	#slide5:checked ~ #controls label:nth-child(1) {
		background: url("../images/r-a.png");
		float: right;
		margin: -280px -60Px 0 0;
		display: block;
	}
	#slide1:checked ~ #controls label:nth-child(5),
	#slide2:checked ~ #controls label:nth-child(1),
	#slide3:checked ~ #controls label:nth-child(2),
	#slide4:checked ~ #controls label:nth-child(3),
	#slide5:checked ~ #controls label:nth-child(4) {
		background-size: contain;
		background: url("../images/l-a.png");
		float: left;
		margin: -280px 0 0 -60px;
		display: block;
	}
	#bullets {
	margin: 10px 0 0;  /* 슬라이드 이미지와 밑 버튼 간격 */
	text-align: center;
	}
	#bullets label {
		display: inline-block;
		width: 10px;
		height: 10px;
		background: #D3D3D3;
		margin: 0 10px;
		border-radius: 100%;
	}
	#slide1:checked ~ #bullets label:nth-child(1),
	#slide2:checked ~ #bullets label:nth-child(2),
	#slide3:checked ~ #bullets label:nth-child(3),
	#slide4:checked ~ #bullets label:nth-child(4),
	#slide5:checked ~ #bullets label:nth-child(5) {
		background: darkorange;
	}


/* -- 푸터 -- */
.wrapper .container #con4 {
	width: 100%;
	height: 90%;
	background: #1b1b1b;
	display: block;
}
.blank {
	display: flex;
	background: #1b1b1b;
	width: 100%;
	height: 40px;
}
.wrapper .container #con4 .blg {
	font-size: 22px;
	justify-content: center;
	text-align: center;
	background: #ddffd0;
	height: 80px;
	text-decoration: none;
	color: white;
}
.wrapper .container #con4 .insta {
	font-size: 22px;
	justify-content: center;
	text-align: center;
	background: #ffd9de;
	height: 80px;
	text-decoration: none;
	color: white;
	margin-top: 10px;
}
.wrapper .container #con4 .footer {
	font-size: 16px;
}


/* -- 아래네비 -- */
.wrapper .bottom_nav {
	z-index: 50;
	background: #1b1b1b;
	position: fixed;
	right: 35px;
	bottom: 15px;
	width: 60px;
	height: 170px;
	border-radius: 35px;
	overflow: hidden;
}
.wrapper .bottom_nav .bottom_nav-menu {
	overflow: hidden;
	margin: 2px;
	width: 100%;
	height: 100%;
}
.wrapper .bottom_nav .bottom_nav-menu ul li {
	font-color: #FFFFFF;
	display: block;
	text-align: center;
	cursor: pointer;
	font-size: 22px;
	padding: 1px;
	margin: 11px 8px 8px 8px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
}
.black_overlay {
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index: 1001;
	-moz-opacity: 0.8;
	opacity: .80;
	filter: alpha(opacity=80);
}
.white_content {
	color: black;
	display: none;
	position: absolute;
	top: 40%;
	right: 7%;
	width: 205px;
	height: 410px;
	padding: 15px;
	border: 10px solid orange;
	background-color: white;
	z-index: 1002;
	overflow: hidden;
	justify-content: center;
	align-content: center;
	text-align: center;
}
.white_content_1 {
	color: black;
	display: none;
	position: absolute;
	top: 40%;
	right: 7%;
	width: 205px;
	height: 410px;
	padding: 20px 15px 15px 15px;
	border: 10px solid orange;
	background-color: white;
	z-index: 1002;
	overflow: hidden;
	justify-content: center;
	align-content: center;
	text-align: center;
}
.white_content a {
	color: black;
	transition: color;
	transition-property: 0.3s;
}
.white_content a:hover {
	color: darkorange;
}
.white_content_1 a {
	color: black;
	transition: color;
	transition-property: 0.3s;
}
.white_content_1 a:hover {
	color: darkorange;
}
/*-------------------------------------------------------------------------------------------------*/
/*---------------------------세부 항목 페이지 설---------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.wrapper .container .ot_con {
	display: flex;
	height: 100%;
	width: 100%;
	font-size: 15px;
	color: white;
	background: rgba(54,54,54,1.00);
	justify-content: center;
	align-items: center;
}
/*  */
.ot_con .hello {
	width: 100%;
	height: 100%;
	color: white;
	font-size: 20px;
}
.hello .hello-txt {
	margin-left: 10px;
	width: 90%;
}
.hello .hello-txt h2 {
	color: darkorange;
}
.hello .hello-txt h3 {
	color: darkorange;
}
.wrapper .container .ot_con .pdt-whole{
	display: block;
	height: 100%;
	width: 100%;
	font-size: 15px;
	color: white;
	justify-content: center;
	align-items: center;
}
/*-------pdt 시작------------*/
.pdt-wrap {
	width: 99%;
	height: 98%;
	margin: 0.5%;
	display:block;
}
.pdt-wrap .pdt-title {
	width: 98%;
	height: 11%;
	margin: 1%;
	color: white;
}
.pdt-wrap .pdt-title > h1 {
	padding: 2%;
}
.pdt-wrap .pdt-con {
	margin: 1%;
	width: 98%;
	height: 81%;
	display: flex;
	color: white;
}
.pdt-wrap .pdt-con .pdt-1 {
	margin: 0.5%;
	width: 60%;
	height: 98%;
}
.pdt-wrap .pdt-con .pdt-2 {
	margin: 0.5%;
	display: block;
	width: 40%;
	height: 98%;
}
.pdt-wrap .pdt-con .pdt-2 .pdt-2_1 {
	width: 90%;
	height: 50%;
}
.pdt-wrap .pdt-con .pdt-img {
	width: 100%;
	height: 100%;
}
/*---------fa 시작--------*/
.ot_con .fa-wrap {
	margin: 1% 0 0 1%;
	width: 98%;
	height: 100%;
	display: block;
}
.ot_con .fa-wrap .fa-wide {
	margin: 1%;
	width: 98%;
	height: 35%;
}	
.ot_con .fa-wrap .fa-m {
	display: flex;
	width: 100%;
	height: 50%;
}
.ot_con .fa-wrap .fa-mm {
	margin: 0.5%;
	width: 49%;
	height: 97%;
}
.ot_con .fa-wrap .fa-ph {
	display: flex;
	margin: 0.5% 0 0.5% 0;
	width: 100%;
	height: 40%;
}
.ot_con .fa-wrap .fa {
	width: 32%;
	height: 97%;
	margin: 0.5%;
}
.fa-img {
	width: 100%;
	height: 100%;
}
.map {
	margin: 5%;
	display: block;
	width: 90%;
	height: 90%;
	background-color: rgba(50,50,50,1.00);
	background: opacity(0.5);
}
.map > h3 {
	font-size: 30px;
}
.map .map-info {
	font-size: 20px;
}
.map iframe {
	width: 100%;
	height: 70%;
}
/*-------------------------------------------------------------------------------------------------*/
/*----------------------------------------------*/
/*-----------       미 디 어 쿼 리       ---------*/
/*----------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
@media (max-width:1600px) {
	.pdt-wrap .pdt-title {
		width: 98%;
		height: 11%;
		margin: 1%;
		color: white;
	}
	.pdt-wrap .pdt-title > h1 {
		padding: 2%;
	}
	.pdt-wrap .pdt-con {
		margin: 1%;
		width: 98%;
		height: 81%;
		display: flex;
		color: white;
	}
	.pdt-wrap .pdt-con .pdt-1 {
		margin: 0.5%;
		width: 80%;
		height: 98%;
	}
	.pdt-wrap .pdt-con .pdt-2 {
		margin: 0.5%;
		display: block;
		width: 40%;
		height: 98%;
	}
	.pdt-wrap .pdt-con .pdt-2 .pdt-2_1 {
		width: 100%;
		height: 50%;
	}
}
/*-----놋북-----*/
@media (max-width:1360px) {
	#con0 ul {
		position:relative;height:100%; width: 100%;}
  	#con0 li {
		position:absolute;left:0;right:0;top:0;bottom:0;opacity:0;animation:fade 15s infinite;}
  	#con0 li {
		bacground: cover; }
  	#con0 li:nth-child(1) {
		background: url("../images/m1-2.jpg")no-repeat; animation-delay:0s}
  	#con0 li:nth-child(2) {
		background: url("../images/m2-2.jpg")no-repeat; animation-delay:5s}
 	 #con0 li:nth-child(3) {
		 background: url("../images/m3-2.jpg")no-repeat; animation-delay:10s}

	.wrapper .container #con1 {
		width: 100%;
		height: 100%;
	}
	.wrapper .container #con2 {
		height: 100%;
		width: 100%;
		background: url("../images/back22.jpg") no-repeat;
		background-size: cover;
	}
	.wrapper .container #con3 {
		height: 100%;
		width: 100%;
		background: url("../images/back33.jpg") no-repeat;
		background-size: cover;
	}
	/*  사진슬라이드  */
	#slider {
		margin: 0 auto;
		width: 1000px; 
		max-width: 80%;
		text-align: center;
	}
	#slides {
		padding: 0px;
		border: 2px solid #ccc;
		background: #fff;
		position: relative;
		z-index: 1;
	}
	.boxes {
	width: 70%;
	height: 20%;
	margin: 5px;
	}
	.pdt-wrap {
		width: 99%;
		height: 82%;
		margin: 0.5%;
		display:block;
	}
	.pdt-wrap .pdt-title > h1 {
		padding: 1.8%;
	}
	.pdt-wrap .pdt-con {
		margin: 1%;
		width: 98%;
		height: 80%;
		display: flex;
		color: white;
	}
	.pdt-wrap .pdt-con .pdt-1 {
		margin: 0.5%;
		width: 80%;
		height: 93%;
	}
	.pdt-wrap .pdt-con .pdt-2 {
		margin: 0.5%;
		display: block;
		width: 40%;
		height: 93%;
	}
	.pdt-wrap .pdt-con .pdt-2 .pdt-2_1 {
		width: 100%;
		height: 50%;
	}
}
@media (max-width:1250px) {
	#con0 ul {
		position:relative;height:100%; width: 100%;}
  	#con0 li {
		position:absolute;left:0;right:0;top:0;bottom:0;opacity:0;animation:fade 15s infinite;}
  	#con0 li {
		bacground: cover; }
  	#con0 li:nth-child(1) {
		background: url("../images/m1-3.jpg")no-repeat; animation-delay:0s}
  	#con0 li:nth-child(2) {
		background: url("../images/m2-3.jpg")no-repeat; animation-delay:5s}
 	 #con0 li:nth-child(3) {
		 background: url("../images/m3-3.jpg")no-repeat; animation-delay:10s}
		/*-------세부--------*/
	.ot_con .fa-wrap {
		margin: 1% 0 0 1%;
		width: 98%;
		height: 100%;
		display: block;
	}
	.ot_con .fa-wrap .fa-wide {
		margin: 1%;
		width: 98%;
		height: 25%;
	}	
	.ot_con .fa-wrap .fa-m {
		display: flex;
		width: 100%;
		height: 33%;
	}
	.ot_con .fa-wrap .fa-mm {
		margin: 0.5%;
		width: 49%;
		height: 97%;
	}
	.ot_con .fa-wrap .fa-ph {
		display: flex;
		margin: 0.5%;
		width: 100%;
		height: 30%;
	}
	.ot_con .fa-wrap .fa {
		width: 32%;
		height: 97%;
		margin: 0.5%;
	}
}
@media (max-width:986px) {
	.wrapper .container #con1 {
		background: url("../images/main1-3.jpg");
		background-size: cover;
	}
	.boxes {
		width: 90%;
		height: 20%;
		margin: 5px;
	}
	.pdt-wrap {
		width: 99%;
		height: 60%;
		margin: 0.5%;
		display:block;
	}
}
/*-----태블릿-----*/
@media (max-width:767px) {
	.wrapper .container .contents {
		display: flex;
		height: 100%;
		width: 100%;
		font-size: 5vw;
		border-bottom: 1px solid rgba(23,23,23,1.00);
		color: white;
		background: black;
		justify-content: center;
		align-items: center;
		scroll-snap-align: center;
		-ms-scroll-snap-coordinate:0 0;
		overflow: hidden;
	}
	#con0 ul {
		position:relative;height:100%; width: 100%;}
  	#con0 li {
		position:absolute;left:0;right:0;top:0;bottom:0;opacity:0;animation:fade 15s infinite;}
  	#con0 li {
		bacground: cover; }
  	#con0 li:nth-child(1) {
		background: url("../images/m1-3.jpg")no-repeat; animation-delay:0s}
  	#con0 li:nth-child(2) {
		background: url("../images/m2-3.jpg")no-repeat; animation-delay:5s}
 	 #con0 li:nth-child(3) {
		 background: url("../images/m3-3.jpg")no-repeat; animation-delay:10s}
	.wrapper .container #con2 {
		background: url("../images/back22.jpg") no-repeat;
		background-size: cover;
	}
	.wrapper .container #con3 {
		background: url("../images/back33.jpg") no-repeat;
		background-size: cover;
	}
	
	/*  사진슬라이드  */

	#slider {
		margin: 0 auto;
		width: 1000px; 
		max-width: 80%;
		text-align: center;
	}
	#slider input[type=radio] {
		display: none;	
	}
	#slider label {
		cursor: pointer;
		text-decoration: none;
	}
	#slides {
		padding: 0px;
		border: 2px solid #ccc;
		background: #fff;
		position: relative;
		z-index: 1;
	}
	#overflow {
		width: 100%;
		overflow: hidden;
	}
	#slides .inner {
		transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
		width: 500%; 
		line-height: 0;
		height: 400px;
	}
	#controls {
		margin: -40px 0 0 0;
		width: 100%;
		height: 20px;
		z-index: 3;
		position: relative;
	}
	#controls label {
		width: 50px;
		height: 50px;
}
	#slide1:checked ~ #controls label:nth-child(2),
	#slide2:checked ~ #controls label:nth-child(3),
	#slide3:checked ~ #controls label:nth-child(4),
	#slide4:checked ~ #controls label:nth-child(5),
	#slide5:checked ~ #controls label:nth-child(1) {
		background: url("../images/r-a.png");
		float: right;
		margin: -210px -60Px 0 0;
		display: block;
	}
	#slide1:checked ~ #controls label:nth-child(5),
	#slide2:checked ~ #controls label:nth-child(1),
	#slide3:checked ~ #controls label:nth-child(2),
	#slide4:checked ~ #controls label:nth-child(3),
	#slide5:checked ~ #controls label:nth-child(4) {
		background-size: contain;
		background: url("../images/l-a.png");
		float: left;
		margin: -210px 0 0 -60px;
		display: block;
	}
	#bullets {
	margin: 30px 0 0;  /* 슬라이드 이미지와 밑 버튼 간격 */
	text-align: center;
	}
	.boxes {
	width: 95%;
	height: 16%;
	margin: 8px;
	}
	
	/*-------세부--------*/
	.ot_con .fa-wrap {
		margin: 1% 0 0 1%;
		width: 98%;
		height: 100%;
		display: block;
	}
	.ot_con .fa-wrap .fa-wide {
		margin: 1%;
		width: 98%;
		height: 18%;
	}	
	.ot_con .fa-wrap .fa-m {
		display: flex;
		width: 100%;
		height: 24%;
	}
	.ot_con .fa-wrap .fa-mm {
		margin: 0.5%;
		width: 49%;
		height: 97%;
	}
	.ot_con .fa-wrap .fa-ph {
		display: flex;
		margin: 0.5%;
		width: 100%;
		height: 15%;
	}
	.ot_con .fa-wrap .fa {
		width: 32%;
		height: 97%;
		margin: 0.5%;
	}
	.pdt-wrap {
		width: 99%;
		height: 53%;
		margin: 0.5%;
		display:block;
	}
}

/*추가보완*/
@media (max-width:682px) {
	.header-menu .trust {
		display: none;
	}
	
/*--------------세부쓰---------------*/
	
	.ot_con .fa-wrap {
		margin: 1% 0 0 1%;
		width: 99%;
		height: 100%;
		display: block;
	}
	.ot_con .fa-wrap .fa-wide {
		margin: 1%;
		width: 98%;
		height: 15%;
	}	
	.ot_con .fa-wrap .fa-m {
		display: block;
		width: 100%;
		height: 70%;
	}
	.ot_con .fa-wrap .fa-mm {
		margin: 1%;
		width: 98%;
		height: 46%;
	}
	.ot_con .fa-wrap .fa-ph {
		display: block;
		margin-top: 2%;
		margin-bottom: 2%;
		width: 100%;
		height: 84%;
	}
	.ot_con .fa-wrap .fa {
		width: 98%;
		height: 33.1%;
		margin: 0.1%;
	}
	.pdt-wrap {
		width: 99%;
		height: 43%;
		margin: 0.5%;
		display:block;
	}
}
@media (max-width:500px) {
	.wrapper .sidebar {
		z-index: 50;
		background: #1b1b1b;
		position: fixed;
		top: 60px;
		width: 160px;
		height: 100vh;
		transition: 0.4s;
		transition-property: width;
		overflow-y: auto; /*초과한 영역은 잘라서 보여주는 역할 */
	}
	.wrapper .sidebar .sidebar-menu .item a span {
		font-size: 17px;
	}
	.wrapper .sidebar .sidebar-menu .item .sub-menu i {
		padding-right: 10px;
		font-size:13px;
	}
	.wrapper .sidebar .sidebar-menu .item .sub-menu span {
		font-size: 14px;
	}
	.wrapper.collapse .sidebar {
		width: 0;
	}
	.wrapper.collapse .sidebar .sidebar-menu .item .sub-menu a {
		margin-left: -25px;
	}

	.wrapper.collapse .container {
		width: 100%;
		margin-left: 0px;
	}
	/* -- 컨테이너 -- */
	.wrapper .container {
		width: 100%;
		margin-top: 60px;
		margin-left: 0px;
		background: black;
		background-size: cover;
		height: 100vh;
		transform: 0.2s;
	}
	.mo_blg {
		width: 500px;
		padding-top: 10px;
		padding-left: 60px;
	}
	.mo_ist {
		width: 500px;
		padding-top: 10px;
		padding-left: 40px;
	}
	.pdt-wrap {
		width: 99%;
		height: 30%;
		margin: 0.5%;
		display:block;
	}
	.pdt-wrap .pdt-title {
		width: 98%;
		height: 18%;
		margin: 1%;
		color: white;
	}
}
/*------모바------*/
@media (max-width:479px) {
	.wrapper .container .contents {
		display: flex;
		height: 100%;
		width: 100%;
		font-size: 5vw;
		border-bottom: 1px solid rgba(23,23,23,1.00);
		color: white;
		background: black;
		justify-content: center;
		align-items: center;
		scroll-snap-align: center;
		-ms-scroll-snap-coordinate:0 0;
		overflow: hidden;
	}
	#con0 ul {
		position:relative;height:100%; width: 100%;}
  	#con0 li {
		position:absolute;left:0;right:0;top:0;bottom:0;opacity:0;animation:fade 15s infinite;}
  	#con0 li {
		bacground: cover; }
  	#con0 li:nth-child(1) {
		background: url("../images/m1-4.jpg")no-repeat; animation-delay:0s}
  	#con0 li:nth-child(2) {
		background: url("../images/m2-4.jpg")no-repeat; animation-delay:5s}
 	 #con0 li:nth-child(3) {
		 background: url("../images/m3-4.jpg")no-repeat; animation-delay:10s}
	.wrapper .container #con2 {
		background: url("../images/back22.jpg") no-repeat;
		background-size: cover;
	}
	.wrapper .container #con3 {
		background: url("../images/back33.jpg") no-repeat;
		background-size: cover;
	}
	#slider {
		margin: 0 auto;
		width: 1000px; 
		max-width: 70%;
		text-align: center;
	}
	#slider input[type=radio] {
		display: none;	
	}
	#slides .inner {
		transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
		width: 500%; 
		line-height: 0;
		height: 300px;
	}
	#slide1:checked ~ #controls label:nth-child(2),
	#slide2:checked ~ #controls label:nth-child(3),
	#slide3:checked ~ #controls label:nth-child(4),
	#slide4:checked ~ #controls label:nth-child(5),
	#slide5:checked ~ #controls label:nth-child(1) {
		background: url("../images/r-a.png");
		float: right;
		margin: -140px -60Px 0 0;
		display: block;
	}
	#slide1:checked ~ #controls label:nth-child(5),
	#slide2:checked ~ #controls label:nth-child(1),
	#slide3:checked ~ #controls label:nth-child(2),
	#slide4:checked ~ #controls label:nth-child(3),
	#slide5:checked ~ #controls label:nth-child(4) {
		background-size: contain;
		background: url("../images/l-a.png");
		float: left;
		margin: -140px 0 0 -60px;
		display: block;
	}
	.wrapper .container #con4 .blg img {
		margin-left: -80px;
	}
	.wrapper .container #con4 .insta img {
		margin-left: -86px;
	}
	.wrapper .container #con4 .footer {
		font-size: 0.7em;
	}
	.wrapper .bottom_nav {
		z-index: 50;
		background: #1b1b1b;
		position: fixed;
		right: 15px;
		bottom: 13px;
		width: 60px;
		height: 170px;
		border-radius: 35px;
		overflow: hidden;
	}
	.boxes {
		width: 95%;
		height: 16%;
		margin: 5px;
	}
}
@media (max-width:400px) {
	.boxes {
		width: 95%;
		height: 15%;
		margin: 10px;
	}
	.pdt-wrap {
		width: 99%;
		height: 70%;
		margin: 3% 0.5% 5% 0.5%;
		display:block;
	}
	.pdt-wrap .pdt-title {
		width: 98%;
		height: 9%;
		margin: 1%;
		color: white;
	}
	.pdt-wrap .pdt-con {
		margin: 1%;
		width: 98%;
		height: 81%;
		display: block;
		color: white;
	}
	.pdt-wrap .pdt-con .pdt-1 {
		margin: 0.5%;
		width: 98%;
		height: 70%;
	}
	.pdt-wrap .pdt-con .pdt-2 {
		margin: 3% 0.5% 0.5% 0.5%;
		display: flex;
		width: 98%;
		height: 36%;
	}
	.pdt-wrap .pdt-con .pdt-2 .pdt-2_1 {
		width: 90%;
		height: 93%;
	}
	.pdt-wrap .pdt-con .pdt-img {
		width: 100%;
		height: 100%;
	}
	.ot_con .hello {
		width: 100%;
		height: 100%;
		color: white;
		font-size: 15px;
	}
	.hello .hello-txt {
		margin-top: -30px;
		margin-left: 20px;
		width: 90%;
	}
	.hello .hello-txt h2 {
		color: darkorange;
	}
	.hello .hello-txt h3 {
		color: darkorange;
	}
}
