@charset "UTF-8";
/* 공통 */
.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  /* min-width: 1200px; */
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.header .header_logo {
  background-image: url(/image/common/main_logo_ko.png);
  background-repeat: no-repeat;
  width: 277px;
  height: 53px;
  display: block;
}

.header.en .header_logo {
  background-image: url(/image/common/main_logo_en.png);
}

.header.ch .header_logo {
  background-image: url(/image/common/main_logo_ch.png);
}


.header .header_lang {
  background-image: url(/image/common/main_lang.png);
  background-repeat: no-repeat;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.header .header_lang.open {
  background-image: url(/image/common/main_lang_open.png) !important;
}

.header .header_lang-list {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70px;
  background-color: #fff;
  padding: 10px 0;
  border-radius: .5em;
  -webkit-box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.1);
  display: none;
}

.header .header_lang-list > a {
  display: block;
  text-align: center;
  margin: 8px;
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.header .header_lang-list > a.active, .header .header_lang-list > a:hover {
  color: #9bc44c;
}

.header.active {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #fff;
}

.header.active .header_logo {
  background-image: url(/image/common/main_logo_ko_b.png);
}

.header.en.active .header_logo {
  background-image: url(/image/common/main_logo_en_b.png);
}

.header.ch.active .header_logo {
  background-image: url(/image/common/main_logo_ch_b.png);
}

.header.active .header_lang {
  background-image: url(/image/common/main_lang_b.png);
}

.header.active .header_inner .header_nav a {
  color: #000;
}

.header.on {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #fff;
}

.header.on .header_logo {
  background-image: url(/image/common/main_logo_ko_b.png);
}


.header.en.on .header_logo {
  background-image: url(/image/common/main_logo_en_b.png);
}

.header.ch.on .header_logo {
  background-image: url(/image/common/main_logo_ch_b.png);
}


.header.on .header_lang {
  background-image: url(/image/common/main_lang_b.png);
}

.header.on .header_inner .header_nav a {
  color: #000;
}

.header.active .side_btn {
  background-image: url(/image/common/gnb_ham_on.png);
}

.header .header_inner {
  max-width: 1780px;
  margin: 0 auto;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header .header_inner .header_nav {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0;
}

.header .header_inner .header_nav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 175px;
  height: 90px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  position: relative;
}

.header .header_inner .header_nav a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 2px;
  opacity: 0;
  background-color: #9bc44c;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.header .header_inner .header_nav a.active::before {
  opacity: 1;
}

.header .header_gsnb {
  background-color: #fff;
  width: 100%;
  padding: 30px 0 35px;
  border-top: 1px solid #f2f2f2;
  display: none;
}

.header .header_gsnb .gsnb_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .header_gsnb .gsnb_nav li {
  width: 175px;
}

.header .header_gsnb .gsnb_nav li a {
  text-align: center;
  display: block;
  color: #444;
  font-size: 16px;
}

.header .header_gsnb .gsnb_nav li a:not(:last-child) {
  margin-bottom: 20px;
}

.header .header_gsnb .gsnb_nav li a:hover {
  color: #9bc44c;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}


.side_btn {
  width: 30px;
  height: 26.75px;
  background-image: url(/image/common/gnb_ham.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.side_menu {
  background-color: #fff;
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  display: none;
}
.side_menu.active {
  display: block;
}

.side_menu .side_lang {
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  line-height: 65px;
}
.side_menu .side_lang-list a {
  font-size: 25px;
  margin-right: 15px;
  color: #666666;
  font-weight: 500;
}
.side_menu .side_lang-list a.active {
  border-bottom: 2px solid #9bc44c;
  color: #88c53e;
}
.side_menu .side_close img {
  width: 30px;
}

.side_menu .side_gnb {
  padding: 35px 20px;
}
.side_menu .side_gnb > li {
  margin-bottom: 35px;
}
.side_menu .side_gnb > li > p {
  color: #000;
  font-size: 20px;
  position: relative;
}
.side_menu .side_gnb > li > p::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/image/common/side_gsnb_arrow_b.png);
  background-size: cover;
  width: 16px;
  height: 9px;
}
.side_menu .side_gnb > li > p.active {
  color: #9bc44c;
}
.side_menu .side_gnb > li > p.active::before  {
  background-image: url(/image/common/side_gsnb_arrow_g.png);
}

.side_menu .side_gsnb {
  padding: 30px 10px 0;
  display: none;
}
.side_menu .side_gsnb > a {
  color: #666;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}


.footer {
  height: 350px;
  background-color: #262626;
}

.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 85px 0;
}

.footer .inner .footer_left div:not(:last-child) {
  margin-bottom: 25px;
}

.footer .inner .footer_left div .eng {
  color: #fff;
  font-size: 13px;
  font-family: 'Poppins';
  margin-bottom: 10px;
}

.footer .inner .footer_left div .kor {
  color: #9a9a9a;
}

.footer .inner .footer_left div .kor span {
  position: relative;
  padding-right: 12px;
  margin-right: 9px;
}

.footer .inner .footer_left div .kor span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #515151;
}

.footer .inner .footer_right {
  text-align: right;
}

.footer .inner .footer_right .f_logo {
  margin-bottom: 55px;
}

.footer .inner .footer_right .f_logo img {
  margin-left: auto;
}

.footer .inner .footer_right .f_btns {
  margin-bottom: 20px;
  display: flex;
}

.footer .inner .footer_right .f_btns a {
  color: #a9a9a9;
  background-color: #525252;
  padding: 10px 15px;
  font-size: 13px;
  display: block;
}

.footer .inner .footer_right .f_btns a:not(:last-child) {
  margin-right: 5px;
}

.footer .inner .footer_right .f_btns a:hover {
  color: #fff;
}

.footer .inner .footer_right .copy {
  color: #888;
  font-size: 13px;
  font-family: 'Exo';
}


.show-1780 {	displaY: none; }
.show-1500 {	displaY: none; }
.show-1024 {	displaY: none; }
.show-768 {	displaY: none; }
.show-640 {	displaY: none; }
.show-568 {	displaY: none; }

@media all and (max-width: 1780px) {
  .show-1780 {
    display: block !important;
  }
  .hide-1780 {
    display: none !important;
  }

  .header .header_inner {
    margin: 0 3%;
  }
}

@media all and (max-width: 1500px) {
  .show-1500 {
    display: block !important;
  }
  .hide-1500 {
    display: none !important;
  }

  .header .header_inner .header_nav a {
    width: 120px;
  }
  .header .header_gsnb .gsnb_nav li {
    width: 120px;
  }
}

@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }

  .header .header_lang{display: none;}

}

@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }
  .hide-768 {
    display: none !important;
  }


  .footer {
    height: auto;
  }
  .footer .inner {
    flex-direction: column;
    align-items: inherit;
    padding: 40px 0;
  }
  .footer .inner .footer_right {
    text-align: left;
  }
  .footer .inner .footer_right .f_logo {
    margin-bottom: 25px;
    margin-top: 35px;
  }
  .footer .inner .footer_right .f_logo img {
    margin-left: 0;
    width: 140px;
  }

  .footer .inner .footer_left div .eng{
    margin-bottom: 5px;
  }

  .footer .inner .footer_left div:not(:last-child){
    margin-bottom: 15px;
  }
  
  .footer .inner .footer_right .f_btns a{
    padding: 4px 8px;
    font-size: 12px;
  }

  .footer .inner .footer_right .f_btns{
    margin-bottom: 15px;
  }
}

@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }
  .hide-640 {
    display: none !important;
  }


  .header .header_inner {
    margin: 0 20px;
    height: 70px;
  }
  .header .header_logo {
    background-size: cover;
    width: 130px;
    height: 33px;
  }
  .header .header_lang {
    background-size: cover;
    width: 22px;
    height: 22px;
  }
  .side_btn {
    width: 24px;
    height: 20px;
  }
}

@media all and (max-width: 568px) {
  .show-568 {
    display: block !important;
  }
  .hide-568 {
    display: none !important;
  }
}
