html,
body {
  height: 100%;
  position: relative;
}

html {
  overflow-x: hidden;
}

a {
  color: #000;
}

.point01 {
  color: #89bb33;
}

@media (min-width: 1430px) {
  .container {
    width: 1430px;
  }
}

@media (max-width: 1429px) {
  .container {
    width: auto;
  }
}

/* layout */

/* #header 상단 시작 */
/* #header {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 97px;
    transition: .5s height, .2s background;
    border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
 

} */
/*header*/
header.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
  z-index: 10;
}

header .nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 30px;
  padding-right: 30px;
  height: 100px;
}

header .nav h1 {
  width: 15%;
  padding-left: 15px;
  position: relative;
  z-index: 1;
}

header .nav .gnb {
  width: 70%;
}

header .nav .side {
  width: 15%;
  margin-left: auto;
  
  
}

header .nav .side .wrap {
  width: 220px;
  margin-left: auto;
  margin-right: 30px;
  display: flex;
}

header .nav .side .wrap a {
  border: 1px rgba(255, 255, 255, 0.5) solid;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-family: "Poppins", "NotoSans", sans-serif;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;
  margin-right: 6px;
  text-transform: uppercase;

}

header .nav .side .wrap a i {
  margin-right: 4px;
}

header .nav h1 a {
  background: url("../../img/common/logo.png") 0 0% no-repeat;
  overflow: hidden;
  display: block;
  height: 74px;
  width: 190px;
  text-indent: -9999px;
  /* background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    display: block;
    width: 135px;
    height: 19px;
    text-indent: -9999px; */
}

header .nav .depth01 {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

header .nav .depth01>li {
  height: 100%;
  position: relative;
}

header .nav .depth01>li:last-of-type {
  margin-right: 0;
}

header .nav .depth01>li>a {
  padding: 0 60px;
  color: #fff;
  opacity: 1;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s;
  font-family: "Poppins", "NotoSans", sans-serif;
  font-size: 19px;
}

header .nav .depth01>li>a::after,
header .nav .depth01>li>a::after {
  content: "";
  width: 100%;
  display: block;
  left: 0;
  bottom: -38px;
  height: 2px;
  position: absolute;
  transition: 0.3s;
  background: transparent;
}

header .nav .depth01>li>a:hover::after,
header .nav .depth01>li>a:hover::after {
  background: #fff;
}

header .nav .depth01>li:hover>a {
  opacity: 1;
  text-decoration: none;
}

header .nav .depth02 {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: 0.4s;
  padding-top: 55px;
}

header .nav .depth02>li {}

header .nav .depth02>li a {
  color: #7a7a7a;
  display: block;
  padding: 5px 0;
  transition: 0.4s;
  font-size: 16px;
  font-family: "Poppins", "NotoSans", sans-serif;
}

header .nav .depth02>li a span {
  border-bottom: 1px solid transparent;
}

header .nav .depth02>li a:hover span {
  border-bottom: 1px solid #fff;
}

header .nav .depth02>li a:hover {
  text-decoration: none;
  color: #fff;
}

.gnb-bg {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 100%);
  height: 0;
  /* background: rgba(255, 255, 255, 1); */
  background: #080808;
  transition: 0.3s;
}

/*main header*/
/*header 마우스오버 후*/
@media (min-width: 992px) {
  .header.down {
    /* background: rgba(255, 255, 255, 1); */
    background: #080808;
  }

  .header.down .nav {
    border-bottom: 1px #151515 solid;
  }

  .header.down .depth01>li>a {
    color: #fff;
    opacity: 1 !important;
  }

  .header.down .depth02>li a {}

  .header.down .depth01>li:hover>a::after {
    background: #A0DD36;
  }

  .header.down .gnb-bg {
    height: 220px;
  }

  .header.down .depth02 {
    opacity: 1;
  }

  .header.down .depth01 {
    overflow: visible;
  }

  .header.down .nav h1 a {
    background: url("../../img/common/logo.png") 100% 100% no-repeat;
  }
}

/* head 마감 */

/* sticky */

.header.sticky {
  position: fixed !important;
  top: 0;
  /* background-color: rgba(255, 255, 255, 1); */
  background: #080808;
  /* border-bottom: 1px #eee solid !important; */
  z-index: 8;
  transition: 0.4s;
}

.header.sticky h1 a {
  overflow: hidden;
  display: block;
  height: 38px;
  background: url(../../img/common/logo.png) 0 0% no-repeat;
  background-size: 70%;
  text-indent: -9999px;
}

.header.sticky .nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 30px;
  padding-right: 30px;
  height: 70px;
}

.header.sticky .nav .depth01>li>a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.header.sticky .nav .depth01>li>a::after,
.header.sticky .nav .depth01>li>a::after {
  bottom: -23px;
  height: 1px;
}

.header.sticky .nav .depth02 {
  padding-top: 30px;
}

.header.down .nav .side .wrap a,
.header.sticky .nav .side .wrap a {
  border: 0;
  background: transparent;
  /*box-shadow: 2px 2px 2px 2px rgb(238, 238, 238, 0.5);
  */
  font-size: 12px;
  font-family: "Poppins", "NotoSans", sans-serif;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;

}

/* header_hover */

/* sticky end */

/* 모바일 메뉴 */
.nav-bar {
  position: absolute;
  top: 6px;
  right: 0;
  z-index: 9999999999999999999999999999999999999999999;
  padding-right: 15px;
  display: none;
}

.nav-bar .nav_wrap {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 99999999999999999999999999;
  position: relative;
}

.nav-bar.off .nav_wrap span {
  background: #c0c0c0;
}

.nav-bar .nav_wrap span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 7px;
  background: #fff;
  transition: 0.2s;
}

.nav-btn-active span:nth-of-type(1) {
  transform: translateY(9px) rotate(45deg);
  background: #000;
}

.nav-btn-active span:nth-of-type(2) {
  opacity: 0;
  background: #000;
}

.nav-btn-active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #000;
}

.mobile-gnb {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  display: none;
  padding-top: 30px;
  top: 0;
  left: 0;
  z-index: 9999999;
  background: #fff;
  background: rgb(255, 255, 255, 1);

}

.mobile-gnb h1 {
  overflow: hidden;
  display: block;
  background: url(../../img/common/logo.png) 0% 100% no-repeat;
  text-indent: -9999px;
  position: absolute;
  top: 12px;
  left: 17px;
  background-size: cover;
  overflow: hidden;
  display: block;
  height: 38px;
  width: 100px;
}

.mobile-gnb .line {
  width: 100%;
  height: 1px;
  background: #f2f2f2;
  position: absolute;
  top: 60px;
  left: 0;
}

.gnb-menu {
  padding-top: 47px;
}

/* 추가 */
.gnb-menu .sidebar-menu {
  padding: 0;
  margin: 0;
}

.gnb-menu .sidebar-menu>li {
  position: relative;
  margin: 0;
  padding: 0;
}

.gnb-menu .sidebar-menu>li>i {
  display: none;
}

.gnb-menu .sidebar-menu>li>a {
  padding: 20px 35px 20px 35px;
  display: block;
  border-left: 0;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Noto Sans KR", "Roboto", sans-serif;
  border: 0;
  border-bottom: 1px #eeeeee solid;
  /* border-color: rgba(255, 255, 255, 0.1); */
  transition: 0.6;
  /* border-bottom: 1px #f2f2f2 solid; */
}

.gnb-menu .sidebar-menu>li>a>.fa {
  width: 20px;
  /*    display: none;*/
  font-weight: 900;
}

.gnb-menu .sidebar-menu>li:hover>a,
.gnb-menu .sidebar-menu>li.active>a {
  color: #000;
  background-color: transparent;
}

.gnb-menu .sidebar-menu>li .label,
.gnb-menu .sidebar-menu>li .badge {
  margin-top: 3px;
  margin-right: 5px;
}

.gnb-menu .sidebar-menu li>a>.fa-angle-right {
  width: auto;
  height: auto;
  padding: 0;
  margin-right: 10px;
  margin-top: 3px;
  transition: 0.3s;
  color: #000;
  font-weight: 900;
  font-size: 13px;
}

.gnb-menu .sidebar-menu li>a:hover .fa-angle-right,
.gnb-menu .sidebar-menu li.active>a>.fa-angle-right {
  transform: rotate(90deg);
  color: #000;
}

.gnb-menu .sidebar-menu li.active>.sidebar-submenu {
  display: block;
}

.gnb-menu .sidebar-menu a {
  color: #b8c7ce;
  text-decoration: none;
}

.gnb-menu .sidebar-menu .sidebar-submenu {
  display: none;
  list-style: none;
  padding-left: 8px;
  margin: 0 1px;
  background-color: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  background: #f4f4f4;
}

.gnb-menu .sidebar-menu .sidebar-submenu>li>a {
  padding: 18px 35px 18px 35px;
  display: block;
  font-size: 15px;
  font-weight: 400;
  /*    color: hsla(240,6%,97%,.5); */
  color: #000;
  border-bottom: 1px #e2e2e2 solid;
}

.gnb-menu .sidebar-menu .sidebar-submenu>li:last-child>a {
  border: 0;
}

.gnb-menu .sidebar-menu .sidebar-submenu>li>a>.fa {
  width: 20px;
  display: none;
}

.gnb-menu .sidebar-menu .sidebar-submenu>li.active>a,
.gnb-menu .sidebar-menu .sidebar-submenu>li>a:hover {
  color: #000;
}

.bottom_wrap {
  margin-top: 30px;
  background: transparent;
}

.bottom_wrap li a {
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  padding-top: 6px;
  padding-bottom: 6px;
  color: #000;
  padding-left: 0;
}

.m-copy {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 19px;
  color: rgb(145, 145, 145);
  text-align: center;
}

@media (max-width: 991px) {
  .nav-bar {
    display: block !important;
  }
}

/* 모바일 메뉴 마감 */

/* 모바일 메뉴 */
.row-offcanvas {
  height: 100%;
}

.sidebar-offcanvas {
  display: none;
}

.js-offcanvas-btn {
  position: absolute;
  right: 0;
  margin-right: 15px;
  top: 20px;
  background-color: transparent;
  border: 0;
}

/* 모바일 메뉴 마감 */

/* #header 상단 마감 */

/* 인덱스 */
.hidden-text {
  position: absolute;
  z-index: 200;
}

/* 인덱스 마감 */
#index-wrap {}

#index-wrap section.sec01 {
  padding-top: 120px;
  padding-bottom: 120px;
  background: url('../../img/main/sec01_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 857px;

}

#index-wrap section.sec01 .title {
  text-align: center;
  padding-bottom: 80px;
  font-weight:600;
  font-family: 'Poppins', 'NotoSans', sans-serif;
  font-size:21px;
  color: #353535;

}
#index-wrap section.sec01 .title h1 {
  font-family: 'Poppins', 'NotoSans', sans-serif !important ;
  text-transform:uppercase;
  font-size: 72px;
}
/* #index-wrap section.sec01 .business_slick {
  display: flex;
}
#index-wrap section.sec01 .business_slick .box {
  width: 25%;
  padding-bottom: 50px;
}
.business_slick {
  padding-left: 15px;
  padding-right: 15px;
}
.business_slick .box {
  padding-bottom: 50px;
} */
.business_slick .box .wrap {
  margin-left: 15px;
  margin-right: 15px;
  height: 355px;
  background: #eee;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  box-shadow: 0 10px 12px rgba(0, 0, 0, .4);
}
.business_slick .box .wrap h2,
.business_slick .box .wrap p {
  position: absolute;
  color: #fff;
  z-index: 2;
  width: 100%;
  transition: opacity 0.2s, transform 0.3s;
}

.business_slick .box .wrap:hover {
  transition: all 0.3s ease-in-out;
}

.business_slick .box .wrap:hover:before {
  transition: all 0.3s ease-in-out;
}

.business_slick .box .wrap h2 {
  top: 64%;
  transform: translate3d(0, 60px, 0);
  font-family: 'Titillium Web', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transform: translate3d(0, 60px, 0);
  -moz-transform: translate3d(0, 60px, 0);
  -ms-transform: translate3d(0, 60px, 0);
  -o-transform: translate3d(0, 60px, 0);
}

.business_slick .box .wrap p {
  opacity: 0;
  bottom: 0;
  transform: translate3d(0, -10px, 0);
  font-size: 16px;
  color: rgba(255, 255, 255, .9);
}

.business_slick .box .wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  bottom: -100%;
  left: 0;
}

.business_slick .box .wrap:hover:before {
  bottom: 0;
}

.business_slick .box .wrap:hover h2 {
  bottom: 40px;
  transform: translate3d(0, -80px, 0);
}

.business_slick .box .wrap:hover p {
  opacity: 1;
  transform: translate3d(0, -100px, 0);
}
.business_slick .box .wrap p::before {
  position: absolute;
  width: 80px;
  height: 1px;
  background: #fff;
  content: ''; 
  margin-top: -20px;
  margin-left: 80px;
} 
/*slick */
/* .business_slick {
  padding-left: 15px;
  padding-right: 15px;
}
.business_slick .box {
  padding-bottom: 50px;
}
.business_slick .box .wrap {
  margin-left: 15px;
  margin-right: 15px;
  height: 355px;
  background: #eee;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  box-shadow: 0 10px 12px rgba(0, 0, 0, .4);
}
.business_slick .box .wrap h2,
.business_slick .box .wrap p {
  position: absolute;
  color: #fff;
  z-index: 2;
  width: 100%;
  transition: opacity 0.2s, transform 0.3s;
}

.business_slick .box .wrap:hover {
  transition: all 0.3s ease-in-out;
}

.business_slick .box .wrap:hover:before {
  transition: all 0.3s ease-in-out;
}

.business_slick .box .wrap h2 {
  top: 64%;
  transform: translate3d(0, 60px, 0);
  font-family: 'Titillium Web', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transform: translate3d(0, 60px, 0);
  -moz-transform: translate3d(0, 60px, 0);
  -ms-transform: translate3d(0, 60px, 0);
  -o-transform: translate3d(0, 60px, 0);
}

.business_slick .box .wrap p {
  opacity: 0;
  bottom: 0;
  transform: translate3d(0, -10px, 0);
  font-size: 16px;
  color: rgba(255, 255, 255, .9);
}

.business_slick .box .wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  bottom: -100%;
  left: 0;
}

.business_slick .box .wrap:hover:before {
  bottom: 0;
}

.business_slick .box .wrap:hover h2 {
  bottom: 40px;
  transform: translate3d(0, -80px, 0);
}

.business_slick .box .wrap:hover p {
  opacity: 1;
  transform: translate3d(0, -100px, 0);
}
.business_slick .box .wrap p::before {
  position: absolute;
  width: 80px;
  height: 1px;
  background: #fff;
  content: ''; 
  margin-top: -20px;
  margin-left: 80px;
} */
/* slick end */




#index-wrap section.sec02 {
  /* background: url("../../img/main/section03_bg.jpg"); */
  /* min-height: 1100px; */
  /* background-repeat: no-repeat;
  background-size: cover; */
  background: #15171a;
  padding-top: 120px;
  padding-bottom: 120px;
}

#index-wrap section.sec02 .title {
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: 21px;
}

#index-wrap section.sec02 .title h1 {
  color: #fff;
  font-family: "Poppins", "NotoSans", sans-serif !important;
  font-weight: 700;
  font-size: 87px;
}

#index-wrap section.sec02 .slider-wrap {
  margin-top: 100px;
}

#index-wrap section.sec02 .slider-wrap .slider-index-portfolio .box img {
  width: 100%;
  box-shadow: 0 23px 25px rgba(0, 0, 0, .6);

}

#index-wrap section.sec02 .slider-wrap .slider-index-portfolio .box {
  position: relative;

}

#index-wrap section.sec02 .slider-wrap .slider-index-portfolio .box:nth-child(even) {
  margin-top: 60px;
}

#index-wrap section.sec02 .slider-wrap .slider-index-portfolio .box .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* right: 0; */
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

#index-wrap section.sec02 .slider-wrap .slider-index-portfolio .box:hover .overlay {
  background-color: rgba(0, 0, 0, .3);
}

#index-wrap section.sec02 .slider-wrap .slider-index-portfolio .slick-list {
  margin: 0 -25px;
}

#index-wrap section.sec02 .slider-wrap .slider-index-portfolio .slick-slide {
  margin: 0 25px;
}

#index-wrap section.sec02 .slider-wrap .btn-wrap {
  margin-top: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#index-wrap section.sec02 .slider-wrap .btn-wrap a.btn {
  background: #0A0A0A;
  color: #cfcfcf;
  font-size: 18px;
  font-weight: 500;
  width: 240px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: .4em;
  -webkit-border-radius: .4em;
  -moz-border-radius: .4em;
  -ms-border-radius: .4em;
  -o-border-radius: .4em;
  font-family: 'Poppins', 'NotoSans', sans-serif;
}

#index-wrap section.sec02 .slider-wrap .btn-wrap a.btn span {
  margin-left: 20px;
  color: #a0dd36;
}

/* #index-wrap section.sec02 .pager_wrap {
  position: absolute;
  z-index: 1;
  width: 100%;
 margin-top: 220px;
}
#index-wrap section.sec02 .pager_wrap .prev {
  left: 0;
  position: absolute;
}
#index-wrap section.sec02 .pager_wrap .next {
  right: 0;
   position: absolute;
}
#index-wrap section.sec02 .pager_wrap .arr {
  font-size:32px;
  width: 62px;
  height: 92px;
  background: rgba(0, 0, 0, 0.5);
  display:flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
} */


#index-wrap section.sec03 {
  background-image: url("../../img/main/section04_bg.png");
  background-repeat: no-repeat;
  background-position: 5% 100%;
  background-color: #fff;
  padding-top: 140px;
  padding-bottom: 120px;
}

#index-wrap section.sec03 h1 {
  font-size: 70px;
  font-family: 'Poppins', 'NotoSans', sans-serif !important;
  color: #1d1d1d;
  text-transform: uppercase;
  font-weight:700;
}

#index-wrap section.sec03 .content_flex {
  display: flex;
  padding-top: 30px;
}

#index-wrap section.sec03 .content_flex .left {
  width: 50%;
}

#index-wrap section.sec03 .content_flex .right {
  width: 50%;
}

#index-wrap section.sec03 .content_flex .left .box.flex {
  display: flex;
}

#index-wrap section.sec03 .content_flex .left .box.flex h2 {
  color: #000;
  font-family: "Poppins", "NotoSans", sans-serif !important;
  font-weight: 600;
  font-size: 20px;
  padding-right: 70px;
}

#index-wrap section.sec03 .content_flex .left .box.flex p {
  color: #000;
  font-family: 'Poppins', 'NotoSans', sans-serif;
  font-size: 20px;
  font-weight:500;
}

#index-wrap section.sec03 .content_flex .left .box.flex p span {
  font-family: 'Poppins', 'NotoSans', sans-serif;
  font-weight: 600;
}

#index-wrap section.sec03 .content_flex .left .btn-wrap {
  margin-top: 60px;
}

#index-wrap section.sec03 .content_flex .left .btn-wrap a.btn {
  color: #fff;
  font-family: 'Poppins', 'NotoSans', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  display: block;
  width: 264px;
  height: 70px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #7ec10b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    border-radius: .4em;

}

#index-wrap section.sec03 .content_flex .left .btn-wrap a.btn i {
  padding-left: 30px;
  color: #fff;
  font-size: 17px;
  transition: .4s;
}
#index-wrap section.sec03 .content_flex .left .btn-wrap a.btn:hover i {
  padding-left: 42px;
}
/* form */
#index-wrap section.sec03 .message {
  padding-right: 100px;
}

#index-wrap section.sec03 .message .form_write .flex {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}

#index-wrap section.sec03 .message .form_write .flex input {
  width: 100%;
  height: 68px;
  border: 0;
  border-radius: 0em;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 16px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  /* background: #08090a; */
  background: #f0f0f0;
  border-radius: 0.4em;
  /* border-bottom: 1px #5c6075 solid; */
  color: #000;
  font-family: "Poppins", "NotoSans", sans-serif;
}

#index-wrap section.sec03 .message .form_write .flex .wiz-nice-select {
  /* background: rgba(8, 9, 10, 0.8);
  border: 0;
  color: #85899b; */
  width: 100%; 
  height: 68px;
  border: 0;
  border-radius: 0em;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 16px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  /* background: #08090a; */
  background: #f0f0f0;
  border-radius: 0.4em;
  /* border-bottom: 1px #5c6075 solid; */
  color: #85899b;
  font-family: "Poppins", "NotoSans", sans-serif;
  line-height: 68px;
}

#index-wrap section.sec03 .message .form_write .flex .wiz-nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 36px;
  list-style: none;
  min-height: 36px;
  font-size: 16px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-family: 'NotoSans', 'Poppins', 'Ubuntu', dotum, sans-serif;
  font-weight: 600;
  color: #4d4d4d:


}

#index-wrap section.sec03 .message .form_write .flex input::placeholder {
  color: #85899b;
}

#index-wrap section.sec03 .message .form_write textarea::placeholder {
  color: #85899b;
}

#index-wrap section.sec03 .message .form_write textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 20px 12px;
  font-size: 16px;
  background: #f0f0f0;
  border-radius: 0.4em;
  font-family: "Poppins", "NotoSans", sans-serif;
  color: #000;
}

#index-wrap section.sec03 .message .form_write .btn_wrap {
  /* display: flex; */
  margin-top: 10px;
}

#index-wrap section.sec03 .message .form_write .btn_wrap label {
  color: #85899b;
  font-size: 14px;
}

#index-wrap section.sec03 .message .form_write .btn_wrap .check {
  /* vertical-align: middle;
    background: #000; */
  margin-top: 12px;
}

#index-wrap section.sec03 .message .form_write .btn_wrap .check input[type="checkbox"] {
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

/* Create a Box */
#index-wrap section.sec03 .message .form_write .btn_wrap .check input[type="checkbox"]+span::before {
  display: inline-block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  /* border: 2px solid #ccc; */
  background: #3b415f;
  /* border-radius: 5px; */
  margin-right: 0.5rem;
}

/* Checked Style */
#index-wrap section.sec03 .message .form_write .btn_wrap .check input[type="checkbox"]:checked+span::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline fill='none' stroke='%230bd' stroke-width='3' points='2,7.3 7.3,12.7 18,2 '/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 2px;
}

/* Focused Style */
#index-wrap section.sec03 .message .form_write .btn_wrap .check input[type="checkbox"]:focus+span::before {
  border-color: #0bd;
}

#index-wrap section.sec03 .message .form_write .btn_wrap .send {
  /* margin-left: auto; */
}

#index-wrap section.sec03 .message .form_write .btn_wrap .send input {
  background: #0f0f0f;
  color: #fff;
  border-radius: 0.3em;
  height: 73px;
  width: 100% !important;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Poppins', 'NotoSans', sans-serif;
  letter-spacing: 1px;

}

/* form end */

/*  sub layout */
/* 서브비주얼 */

@keyframes zoom {
  0% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod='auto expand')";
    filter: progid: DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod='auto expand');
  }

  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
    filter: progid: DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand');
  }
}

.s_visual_wrap {
  position: relative;
  /*            min-width: 1100px;*/
  /* overflow: hidden; */
  /* z-index: 2; */
  height: 610px;
}

.s_visual_wrap .slide {
  position: relative;
  height: 610px;
  overflow: hidden;
  top: 0;
  /*            min-width: 1100px;*/
}

.s_visual_wrap .slide ul.visuals {
  padding: 0;
  margin: 0;
  margin-top: -100px;
  padding-top: -100px;
  top: -100px;
}

.s_visual_wrap .slide ul.visuals li {
  height: 610px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-repeat: no-repeat;
  text-align: center;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  -moz-transform-origin: center center;
  transform-origin: center center;
  /*
-webkit-animation: zoom 20s ease-in-out infinite alternate;
-moz-animation: zoom 20s ease-in-out infinite alternate;
-o-animation: zoom 20s ease-in-out infinite alternate;
-ms-animation: zoom 20s ease-in-out infinite alternate;
*/

  animation: zoom 3s ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;

  padding: 0;
  margin: 0;
  top: 0;
}

.s_visual_wrap .slide .content {
  top: 43%;
  position: relative;
  z-index: 1;
  text-align: center;
  /*
    animation: zoom 3s ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    */
}

.s_visual_wrap .slide .content h1 {
  font-size: 84px;
  line-height: 92px;
  letter-spacing: 10px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  font-family: "Poppins", "Noto Sans KR", sans-serif !important;
  text-transform: uppercase;
}

.s_visual_wrap .slide .content h1 span {
  font-weight: 100;
}

.s_visual_wrap .slide .content ul.map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.s_visual_wrap .slide .content ul.map li {
  color: rgba(255, 255, 255, .6);
  font-size: 17px;
  margin-left: 4px;
  margin-right: 4px;
}

.s_visual_wrap .slide .content ul.map li:first-child {
  font-size: 20px;
}

/* .s_visual_wrap .slide .content p {
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  margin-top: 4px;
} */

.s_visual_wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 서브비주얼 마감 */

/*  서브 레이아웃 */
/* 컬러 */
.bg_color01,
#sub_content.bbs {
  background: #171717;
}

#sub_content.bg_color01 .page-header h1 {
  color: #fff;
}

#sub_content.bbs .page-header h1 {
  color: #fff;
}

/* 컬러마감  */
#sub_content {
  padding-top: 120px;
  position: relative;
}

#sub_content .page-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  text-align: center;
  /* margin-top: 0;
  padding-top: 0; */
}

#sub_content .container .page-header {
  padding-left: 0;
  text-align: center;
}

#sub_content .page-header h1 {
  font-size: 48px;
  font-weight: 900;
  color: #000;
  font-family: "Poppins", "NotoSans", sans-serif;
  /* margin-bottom: 30px; */
  padding: 0;
  position: relative;
  /* display: inline-block; */
  display: inline-flex;
  justify-content: center;

}

#sub_content .page-header h1::before {
  position: absolute;
  width: 80%;
  height: 5px;
  background: #a0dd36;
  content: "";
  margin-top: 86px;
}

#sub_content .page-header p {
  color: #909090;
  animation: slide-up2 1s ease-out;
  font-size: 19px;
  margin-top: 48px;
  -webkit-animation: slide-up2 1s ease-out;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
}

@keyframes slide-up2 {
  from {
    transform: translateY(100%);
    animation-delay: 10s;

  }
}

.page-header h1 {
  animation: slide-up 0.75s ease-out;
  -webkit-animation: slide-up 0.75s ease-out;
}

/*  서브 레이아웃 마감 */

/* footer */

footer {
  /*    margin-top: 30px;*/
  background-color: #050606;
  padding: 0;
  padding-bottom: 60px;
  padding-top: 70px;
  clear: both;
  width: 100%;
}

footer.sub {
  padding-top: 80px;
}

footer .flex {
  display: flex;
}

footer .flex h1 {
  width: 12%;
}

footer .flex address {
  width: 88%;
  color:#8b8b8b;
  font-size: 15px;
}

footer .flex address p {
  font-size: 15px;
  color: #8b8b8b;

}


footer .footer-menu h1 {
  padding: 0;
  padding-bottom: 30px;
}



footer .btn-default {
  background-color: #fff;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  border: 1px #dddddd solid;
  padding: 4px 11px;
  border-radius: 0;
}

footer .footer-menu {
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #1c1c1c;
  border-bottom: 1px #1c1c1c solid;
}

footer .footer-menu ul {
  padding-top: 8px;
  padding-bottom: 12px;
  padding-left: 0;
  margin-left: 0;
}

footer .footer-menu ul li:before {
  color: #464646;
  content: "|";
  font-size: 12px;
}

footer .footer-menu ul li:first-child,
footer .footer-menu ul li:first-child a {
  padding-left: 0;
  margin-left: 0;
}

footer .footer-menu ul li:first-child::before {
  content: "";
  padding-left: 0;
  margin-left: 0;
}

footer .footer-menu ul li a {
  font-size: 16px;
  color: #fff;
  font-weight: 900;
  padding-left: 16px;
  padding-right: 16px;
}

footer .footer-menu ul li a.blue {
  color: #fff;
}

footer .breadcrumb {
  margin-bottom: 4px;
  background-color: transparent;
}

footer p.logo {
  float: right;
  margin-top: 23px;
  display: none;
}

footer p.logo img {
  width: 80%;
}

footer address {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: #909090;
  font-style: normal;
  font-family: "Poppins", "NotoSans", sans-serif;
}

footer p {
  margin-top: 0;
  font-family: "Poppins", "NotoSans", sans-serif;
  padding-top: 6px;
  color: #757575 !important;
  font-size: 16px;
  font-weight: 600;
}

footer address a span {
  color: #979ba3;
  margin-left: 6px;
}

footer address a {
  color: #979ba3;
  font-size: 14px;
}