@font-face {
  font-family: "NL";
  src: url("font/NanumSquareNeo-aLt.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "NR";
  src: url("font/NanumSquareNeo-bRg.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "NB";
  src: url("font/NanumSquareNeo-dEb.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "NH";
  src: url("font/NanumSquareNeo-eHv.ttf") format("truetype");
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
li,
ol {
  list-style: none;
}

body {
  overflow-x: hidden;
}

#header {
  width: 100%;
  height: 100px;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#header .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#header .wrap .pc_menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .wrap .pc_menu p {
  font-family: "NB";
  font-size: 18px;
  font-weight: bold;
  margin-right: 50px;
  cursor: pointer;
}

#header .wrap .pc_menu p:last-of-type {
  margin-right: 0;
}

#header .wrap .pc_menu img {
  width: auto;
  height: auto;
  cursor: pointer;
  margin-right: 50px;
}

#header .wrap .tel_box {
  width: 203px;
  height: 38px;
  border-radius: 20px;
  background: #00a028;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#header .wrap .tel_box h2 {
  font-family: "NR";
  font-weight: normal;
  font-size: 18px;
  color: #fff;
  transform: translateY(2px);
}

#header .wrap .tel_box h2 span {
  font-family: "NB";
  font-weight: bold;
}

/* Trigger Button */
.list_btn {
  display: none;
}

input[id="trigger"] {
  display: none;
}
label[for="trigger"] {
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 999999;
  display: none;
}
label[for="trigger"] span {
  position: absolute;
  height: 2px;
  background-color: #000;
  width: 100%;
  left: 0;
  transition: 0.3s;
}
label[for="trigger"] span:nth-child(1) {
  top: 0%;
}
label[for="trigger"] span:nth-child(2) {
  top: 50%;
  right: 0;
  left: unset;
}
label[for="trigger"] span:nth-child(3) {
  top: 100%;
}

input[id="trigger"]:checked + label span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
input[id="trigger"]:checked + label span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
input[id="trigger"]:checked + label span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

.mb_list {
  width: 50%;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0 39px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  right: -2000px;
  transition: 0.5s;
}

.mb_nav {
  display: block;
}

.mb_list .mb_nav p {
  margin-bottom: 65px;
}

.mb_list .mb_nav p a {
  font-family: "NB";
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

#footer {
  width: 100%;
  height: auto;
  padding: 40px 0;
  background: #00a028;
  text-align: center;
}

#footer img {
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

#footer h2 {
  font-family: "NR";
  font-weight: normal;
  font-size: 18px;
  color: #fff;
  line-height: 27px;
}

#sec_2 {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff611e;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 8;
}

#sec_2 .close {
  width: auto;
  height: auto;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

#sec_2 .close span {
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}

#sec_2 .close span:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

#sec_2 .close span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#sec_2 .wrap {
  max-width: 1400px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_2 .wrap h2 {
  font-family: "NR";
  font-weight: normal;
  color: #fff;
  font-size: 37px;
  line-height: 20px;
}

#sec_2 .wrap h2 span {
  font-family: "NL";
  font-size: 20px;
}

#sec_2 .wrap h3 {
  font-family: "NB";
  font-size: 57px;
  font-weight: bold;
  color: #fff;
}

#sec_2 .wrap form input {
  background: none;
  border: none;
}

#sec_2 .wrap form .fm_wrap {
  display: flex;
  margin-bottom: 4px;
}

#sec_2 .wrap form .fm_wrap input {
  width: 203px;
  height: 41px;
  border-radius: 10px;
  background: #fff;
  padding: 0 5px;
  margin-right: 24px;
  font-family: "NR";
  font-size: 15px;
  font-weight: normal;
  color: #a0a0a0;
}

#sec_2 .wrap form .fm_wrap input:last-of-type {
  margin-right: 0;
}

#sec_2 .wrap form .fm_wrap input[type="submit"] {
  background: #00a028;
  color: #fff;
  font-size: 20px;
}

#sec_2 .wrap form .agree {
  display: flex;
  align-items: center;
}

#sec_2 .wrap form .agree input {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

#sec_2 .wrap form .agree label {
  font-family: "NL";
  font-weight: 100;
  font-size: 12px;
  color: #fff;
}

#sec_2 .wrap form .agree label a {
  font-family: "NL";
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1400px) {
  #header .wrap .pc_menu img {
    width: 80px;
    margin-right: 30px;
  }

  #header .wrap .pc_menu p {
    margin-right: 30px;
  }

  #header .wrap .tel_box h2 {
    font-size: 16px;
    transform: translateY(1px);
  }

  #header .wrap .tel_box {
    width: 185px;
    height: 30px;
  }

  #header .wrap {
    max-width: 1200px;
  }

  #sec_2 .wrap {
    max-width: 95%;
  }

  #sec_2 .wrap h2 {
    font-size: 30px;
  }

  #sec_2 .wrap h2 span {
    font-size: 16px;
  }

  #sec_2 .wrap h3 {
    font-size: 42px;
  }

  #sec_2 .wrap form .fm_wrap input {
    width: 180px;
    height: 35px;
    margin-right: 10px;
    font-size: 14px;
  }

  #sec_2 .wrap form .fm_wrap input[type="submit"] {
    font-size: 18px;
  }

  #sec_2 {
    height: 120px;
  }
}

@media (max-width: 1200px) {
  #header .wrap .tel_box {
    display: none;
  }

  #header .wrap .pc_menu p {
    display: none;
  }

  #header .wrap .pc_menu img {
    margin-right: 0;
  }

  .list_btn {
    display: block;
  }

  label[for="trigger"] {
    display: block;
  }

  #header .wrap {
    justify-content: space-between;
    max-width: 95%;
  }

  #header .wrap .pc_menu img {
    width: 70px;
  }

  #header {
    height: 80px;
  }

  #sec_2 {
    height: auto;
    padding: 30px 0;
  }

  #sec_2 .wrap {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  #sec_2 .wrap h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  #sec_2 .wrap h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  #sec_2 .wrap form .fm_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #sec_2 .wrap form .fm_wrap input {
    width: 100%;
    margin-right: 0;
    max-width: 95%;
  }

  #sec_2 .wrap form .fm_wrap input {
    margin-bottom: 10px;
  }

  #sec_2 .wrap form .fm_wrap input:last-of-type {
    margin-bottom: 0;
  }

  #sec_2 .wrap form .agree {
    width: 100%;
    max-width: 95%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  #footer img {
    width: 80px;
  }

  #footer h2 {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 500px) {
  #header .wrap .pc_menu img {
    width: 50px;
  }

  label[for="trigger"] {
    width: 25px;
    height: 15px;
  }

  #header {
    height: 60px;
  }

  .mb_list {
    width: 80%;
  }

  .mb_list .mb_nav p {
    margin-bottom: 50px;
  }

  .mb_list .mb_nav p a {
    font-size: 20px;
  }

  #footer h2 br {
    display: none;
  }

  #footer h2 {
    word-break: keep-all;
  }

  #sec_2 .wrap h2 {
    font-size: 24px;
    margin-bottom: 0;
  }

  #sec_2 .wrap h3 {
    font-size: 32px;
  }
}

@media (max-width: 400px) {
  #sec_2 .wrap h2 {
    font-size: 20px;
  }

  #sec_2 .wrap h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

/* 팝업 */
.hd_pops {
  position: fixed;
}

#hd_pop {
  width: 100%;
  z-index: 99999999;
}

#hd_pops_1 {
}

#hd_pops_2 {
  left: 510px !important;
}

#hd_pops_3 {
  left: 1010px !important;
}

@media (max-width: 1600px) {
  .hd_pops_con {
    width: 400px !important;
    height: auto !important;
  }

  #hd_pops_2 {
    left: 410px !important;
  }

  #hd_pops_3 {
    left: 810px !important;
  }
}

@media (max-width: 1400px) {
  .hd_pops_con {
    width: 300px !important;
    height: auto !important;
  }

  #hd_pops_2 {
    left: 310px !important;
  }

  #hd_pops_3 {
    left: 610px !important;
  }
}

@media (max-width: 900px) {
  #hd_pops_2 {
    left: 10px !important;
  }

  #hd_pops_3 {
    left: 10px !important;
  }
}

@media (max-width: 400px) {
  .hd_pops_con {
    width: 280px !important;
    height: auto !important;
  }
}
