@charset "UTF-8";

/*******************************************************************************************************************************
 *** 헤더
*******************************************************************************************************************************/
.header {
  position: relative;
  z-index: 30;
  width: 100%;
  border-top: 5px solid #93d448;;
  border-bottom: 1px solid #ddd;
}


.logo {
  padding: 20px 0;
  text-align: center;
}

.logo img {
  height: 60px;
}

.menu {
  border-top: 1px solid #ddd;
}

.menu .container {
  display: flex;
  justify-content: center;
}

.menu .container div:last-child {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.menu .container div:last-child span {
  display: inline-block;
  margin-left: 10px;
  background: #42a4c3;
  padding: 5px 15px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
}

.gnb_nav {
  width: 100%;

}

#gnb {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 0px;
}

.gnb_li_1 {
  position: relative;
  color: #555;
  padding: 1.3rem 0;
  font-family: 'GmarketSansMedium';
}

.gnb_li_1:last-child a {
  border: none;
}

.gnb_li_1.on {
  color: #7ec042;
}

.gnb_li_1::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  transform: translateX(-50%);
  background: #7ec042;
  transition: 0.4s;
}

.gnb_li_1>a {
  display: block;
  font-weight: 400;
  font-size: 18px;
  padding: 0 40px;
  border-right: 1px solid #ddd;
}

.gnb_li_1:hover {
color: #7ec042;
}

.gnb_li_1:hover::before {
  width: 100%;
}

.gnb_li_1:hover .gnb_dropmenu {
  opacity: 1;
  visibility: visible;
}

.gnb_dropmenu {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #7ec042;
  transform: translateY(5px);
}

.gnb_dropmenu li {
  color: #fff;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 15px;
}

.hamburger {
  display: none;
}

/*quick 시작*/
.quick {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}

.quick a.call {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  display: block;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.quick a.call i {
  font-size: 24px;
  line-height: 50px;
}

.quick button {
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333;
  margin-top: 6px;
  color: #fff;
}

/*quick 끝//*/





/**PC 모바일 이미지 사이즈 조정 시작**/
.d-block {
  display: inline-block;
}

.m-block {
  display: none;
}

/**PC 모바일 이미지 사이즈 조정 끝**/


/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
@media (max-width: 1000px) {
  .header .container {
    width: 100%;
    padding: 0;
  }

  .header .head3 .logo {
    grid-column: 1/3;
    text-align: left;
  }


  .hamburger {
    display: block;
  }

  #gnb {
    background-color: #ffffff;
  }

  .header.type_1 .logo,
  .header.type_1 .gnb_nav {
    float: none;
    background: #fff;
  }

  .header.type_1 .logo {
    text-align: center;
    /* border-bottom: 1px solid #333; */
    padding: 10px 0 20px 0;
  }

  .header.type_1 .logo img {
    /* height: 20px; */

  }

  .header.type_1 .gnb_li_1 {
    width: 25%;
    padding: 0;
  }

  .header.type_1 .gnb_li_1>a {
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    color: #4e4e4e;
  }

  .header.type_1 .gnb_dropmenu {
    display: none;
  }

  /* 모바일메뉴 타입-2 */
  .menu .container div:last-child {
    display: none;
  }


  .header.type_2 {
    /* position: fixed; */
    left: 0;
    top: 0;
    width: 100%;
    height: 69px;
  }

  .header.type_2 .container {
    position: relative;
  }

  .header.type_2 .logo,
  .header.type_2 .gnb_nav {
    text-align: left;
    float: none;
  }

  .header.type_2 .logo img {
    height: 48px;
  }

  .header.type_2 .logo {
    /* text-align: center; */
    border-bottom: 0;
    padding: 10px 0 10px 22px;
    background: #fff;
  }

  .header.type_2 .gnb_nav {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.25s;
    z-index: 5;
    width: 250px;
  }

  .header.type_2 .gnb_nav.is-active {
    right: 0;
  }

  .header.type_2 #gnb {
    display: block;
    padding-top: 50px;
  }

  .header.type_2 .gnb_li_1 {
    width: auto;
    padding: 0;
  }

  .header.type_2 .gnb_li_1>a {
    text-align: left;
    padding-left: 25px;
    color: #4d4d4d;
    line-height: 45px;
    border-bottom: 1px solid #ddd;
  }

  .gnb_li_1:hover::before {
    width: 0%;
  }
  .header.type_2 .toggle_li.active .gnb_dropmenu {
    display: block;
  }

  .header.type_2 .toggle_li.active>a:after {
    transform: rotate(180deg);
  }

  .header.type_2 .toggle_li>a {
    position: relative;
  }

  .header.type_2 .toggle_li>a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f107";
    position: absolute;
    right: 15px;
    top: 13px;
    color: #464646;
    font-size: 20px;
    transform: rotate(0deg);
    transition: all 0.15s;
  }

  .header.type_2 .gnb_dropmenu {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 10px;
    margin-top: -5px;
    margin-bottom: 11px;
  }

  .header.type_2 .gnb_dropmenu li {
    text-align: left;
  }

  .header.type_2 .hamburger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    margin-top: 2px;
  }

  .header.type_2 .hamburger-inner,
  .header.type_2 .hamburger-inner::before,
  .header.type_2 .hamburger-inner::after {
    background-color: #666;
  }

  .header.type_2 .hamburger-box {
    width: 25px;
  }

  .header.type_2 .hamburger-inner,
  .header.type_2 .hamburger-inner::before,
  .header.type_2 .hamburger-inner::after {
    height: 2px;
    width: 25px;
  }

  .header.type_2 #mobileClose {
    right: 0;
    top: 0;
    transform: translateY(0);
  }

  .header.type_2 #mobileClose .hamburger-inner,
  .header.type_2 #mobileClose .hamburger-inner::before,
  .header.type_2 #mobileClose .hamburger-inner::after {
    background-color: rgb(216, 134, 134)d6d;
  }
}

/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/



/*******************************************************************************************************************************
 *** 푸터
*******************************************************************************************************************************/
footer {
  width: 100%;
  padding: 60px 0;
  background-color: #4d4d4d;
  color: #cfcfcf;
}

.foot_con {
  font-size: 14px;
  line-height: 1.9;
}

footer .copy {
  padding: 3rem 0 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer img {
  filter: grayscale(1) brightness(5);
  opacity: 0.33;
  max-width: 210px;
}

footer span {
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid #686868;
}



/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/
@media (max-width:768px) {
  footer {
    padding: 20px 0;
  }

  .foot_con {
    font-size: 13px;
  }

  /**PC 모바일 이미지 사이즈 조정 시작**/
  .d-block {
    display: none;
  }

  .m-block {
    display: block;
  }

  /**PC 모바일 이미지 사이즈 조정 끝**/
}

@media (max-width:480px) {
  .header.type_2 .logo {
    padding: 13px 0 10px 20px;
    text-align: left;
  }

  .header.type_2 .logo img {
    height: 43px;

  }
}