/* 구글폰트 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap");
/* font-family: 'Noto Sans KR', sans-serif; */

/* 눈누 폰트 */
@font-face {
  font-family: "Daehan-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Daehan-Bold.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
  outline: 0;
}
a:active,
a:hover {
  text-decoration: none;
}
ol,
ul,
li {
  list-style: none;
}
button,
img {
  cursor: pointer;
  background: inherit;
  border: none;
  padding: 0;
  margin: 0;
}
img{
  cursor: default;
}
table,
th,
td {
  border-spacing: 0;
  border-collapse: collapse;
}
html,
body {
  font-family: "Noto Sans KR", sans-serif;
}



/* ===================== 메인페이지 컨테이너 ================== */

.w1600{
  width: 100%;
  max-width: 1600px;
  padding: 0 16px;
  box-sizing: border-box;
  margin: 0 auto;
}

.w1440{
  width: 100%;
  max-width: 1440px;
  padding: 0 16px;
  box-sizing: border-box;
  margin: 0 auto;
}

.in {
  max-width: 1440px;
  margin: 0 auto;
}

.in2{
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1440px) {
  .in {
    padding: 0 20px;
  }
}

/* ===================== 서브페이지 컨테이너 ================== */
#sub-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 20px;
}

/* ===================== 메인페이지 타이틀 ================== */
.tit-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  _font-family: "Daehan-Bold";
}
.tit-box h2 {
  font-size: 50px;
  margin-bottom: 10px;
}
.tit-box h3 {
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;

  letter-spacing: -1px;
}

@media screen and (max-width: 1440px) {
  .tit-box h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 960px) {
  .tit-box h2 {
    font-size: 20px;
  }
  .tit-box h3 {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .tit-box h2 {
    font-size: 18px;
  }
  .tit-box h3 {
    font-size: 13px;
  }
}


/* in max-width */
@media screen and (max-width:1440px){
  .in{
    max-width: 1200px;
  }
}

@media screen and (max-width:1024px){
  .in{
    max-width: 900px;
  }
}


/* ===================== 서브 페이지 타이틀 ================== */

.pageTitle {
  margin-bottom: 80px;
  font-size: 3rem;
  color: #000;
}

/* ===================== 오른쪽 퀵메뉴 ================== */
.fix_btn_box {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9999;
  transition: all 0.3s;
}
.fix_btn_box.show {
  opacity: 1;
  visibility: visible;
}
.fix_btn_box .menu_btn_box {
  background-color: #fff;
  width: 70px;
  min-height: 70px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 8px;
  box-shadow: 2px 16px 20px rgb(0 0 0 / 10%);
  color: #00573f;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  text-align: center;
}
.fix_btn_box .menu_btn_box > i {
  display: block;
  font-size: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.fix_btn_box .menu_btn_box ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms, opacity 0.3s;
  opacity: 0;
}

.fix_btn_box .menu_btn_box ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.fix_btn_box .menu_btn_box ul li + li {
  margin-top: 35px;
}
.fix_btn_box .menu_btn_box ul li .icon {
  width: 100%;
  margin-bottom: 15px;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: all 0.3s;
}

.fix_btn_box .menu_btn_box ul li .icon img {
  width: 35px;
}
.fix_btn_box .menu_btn_box ul li .icon + span {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 500;
}

/* .fix_btn_box .menu_btn_box ul li .icon02 {color: #F7E600 !important;} */
.fix_btn_box .menu_btn_box ul li a:hover .icon02 {
  color: #fff396;
}

.fix_btn_box .menu_btn_box:hover {
  background: #00573f;
}
.fix_btn_box .menu_btn_box:hover ul {
  max-height: 542px;
  opacity: 1;
}
.fix_btn_box .menu_btn_box:hover > i {
  opacity: 0;
  visibility: hidden;
}

.fix_btn_box .menu_btn_box ul li a:hover .icon {
  opacity: 1;
}
.fix_btn_box .top_btn_box {
  margin-top: 14px;
}
.fix_btn_box .top_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 200;
  background: #00573f;
  background-size: 200% auto;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  width: 70px;
  min-height: 70px;
  border-radius: 50%;
  transition: all 0.3s;
}
.fix_btn_box .top_btn:hover {
  box-shadow: none;
  background: #00573f;
  color: #fff;
}






/********************** 디딤 창업 비법서 팝업 ***********************/
#popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
 
}
#popup .background{
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
#popup .background.on{
 display: block;
}
#popup .pop-wrap{
  position: relative;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  /* background-color: #00573f; */
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup .pop-box{
  position: absolute;
  top: 150%;
  transform: translateY(-50%);
  padding: 50px 30px;
  width: 60%;
  /* height: 80%; */
  border-radius: 20px;
  background-color: #cda96a;
  /* box-shadow: 10px 20px 25px 5px rgba(0, 51, 32, 0.4); */
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
  row-gap: 28px;
  /* transition: all 1s; */
  animation: popani 1s ;
  animation-fill-mode: forwards;
  /* animation-delay: .3s; */

}

@keyframes popani{
  0%{
    top: 150%;
  }
  100%{
    top: 50%;
  }
}

#popup .pop-box .close{
  padding: 10px 20px;
  background-color:rgba(0, 88, 58, 0.76);
  font-size: 18px;
  border-radius: 20px;
  color: #fff;
}

 
/* @keyframes popani{
  0%{
    top: 150%;
  }
  100%{
    top: 50%;
  }
} */
#popup .title-box{
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-right: 40px; */
;
}
#popup .title-box .text-a{
  font-size: 28px;
  font-weight: bold;
  /* text-align: center; */
}
#popup .pop-box .icon{
  width: 35px;
  margin-top: 8px;
  padding-right: 8px;
  display:inline-block;

}
#popup .pop-box .icon img{
  width: 100%;
}
#popup .pop-box .pop-txt-box01{
  text-align: center;
  line-height: 1.7;
  border-bottom: 2px solid #e2e2e2;
  padding-bottom: 20px;
}

#popup .pop-box .pop-txt-box01 .head{
  font-size: 20px;
  font-weight: bold;
}
#popup .pop-box .pop-txt-box01 .sub{
  font-size: 24px;
  font-weight: 400;
}

#popup .pop-box .pop-txt-box02 p{
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
/* #popup .pop-box .pop-txt-box02 .text-a{
  font-size: 28px;
  font-weight: bold;
  
} */
#popup .pop-box .pop-txt-box02 .text-b{
  font-size: 17px;
  font-weight: 500;
}
#popup .pop-box .pop-txt-box02 .text-b:nth-child(3){
  padding-top: 20px;
}
#popup .pop-box .pop-txt-box02 .text-c{
  padding-top: 20px;
  font-size: 14px;
  word-break: keep-all;
}
#popup .pop-box .pop-txt-box03{
  text-align: center;
  color: #fff;
}
#popup .pop-box .pop-txt-box03 .head{
  font-size: 24px;
  font-weight: bold;
}
#popup .pop-box .pop-txt-box03 .sub{
  font-size: 18px;
}
#popup .pop-box .under{
  text-decoration: underline;
}

#popup form label {
display: none;
}

/* 다운로드 폼 */
#popup .form-box{
  padding: 30px;
  width: 100%;
  background: #00573f;
  /* background: #b6904f; */
  border-radius: 20px;
}
#popup form .name{
  padding: 12px 0;
}
#popup form input{
padding: 12px; 
width: 100%;
font-size: 14px;
font-weight: 400;
color: #00424c;
border: solid 1.5px #ffffff;
  border-radius: 5px;
}

#popup form .down-btn button{
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px 0 ;
  background-color: #007eff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/********************** 디딤 창업 비법서 팝업 반응형 ***********************/
@media screen and (max-width:980px){
  /* #popup .pop-box{width: 70%;} */
  #popup .pop-box{
    padding: 30px 16px;
  }
  #popup .pop-box .pop-txt-box01 .head{
    font-size: 16px;
  }
  #popup .pop-box .pop-txt-box01 .sub{
    font-size: 20px;
  }
  #popup .title-box .text-a{
    font-size: 22px;
  }
  #popup .pop-box .icon {
    width: 28px;
  }
  #popup .pop-box .pop-txt-box02 .text-b {
    font-size: 14px;
  }
  #popup .pop-box .pop-txt-box02 .text-c{
    font-size: 12px;
  }
  #popup .pop-box .pop-txt-box03 .head {
    font-size: 20px;
  }
  #popup .pop-box .pop-txt-box03 .sub {
    font-size: 15px;
}
#popup form .down-btn button{
  font-size: 15px;
}
#popup .pop-box .close{font-size: 15px;}
#popup .form-box {
  padding: 20px;
}
}

@media screen and (max-width:980px){
  #popup .pop-box{
    width: 90%;
  }
}

@media screen and (max-width:500px){
  #popup .pop-box {
    row-gap: 15px;
  }
  .pop-txt-box02{word-break: keep-all;}
  #popup .pop-box .pop-txt-box01 .sub {
    font-size: 16px;
}
#popup .title-box .text-a {
  font-size: 16px;
}
#popup .pop-box .icon {
  width: 22px;
}
#popup .pop-box .pop-txt-box02 .text-b {
  font-size: 11px;
}
#popup .pop-box .pop-txt-box02 .text-c {
  font-size: 11px;
}
#popup .pop-box .pop-txt-box03 .head {
  font-size: 16px;
}
#popup .pop-box .pop-txt-box03 .sub {
  font-size: 13px;
}
#popup form .down-btn button {
  font-size: 12px;
}
#popup .form-box {
  padding: 12px;
}
#popup .pop-box .close {
  font-size: 11px;
}
.br-none{
  display: none;
}
}



@media screen and (max-width:400px){
  #popup .pop-box .pop-txt-box03 .head {
    font-size: 14px;
}
  #popup .pop-box .pop-txt-box03 .sub {
    font-size: 10px;
}

}



 /******************************************
개인정보처리방침 사용방법 
********************************************/


.layerWrap {
  width: 100%;
  position: fixed;
  bottom:  0;
  left: 0;
  height: 100vh;
  z-index: 9999;
  display: none;
}
.layerWrap .bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.layerWrap .popWrap {
  position: relative;
  width: 90%;
  max-width: 900px;
  background-color: #fff;
  padding: 35px;
  box-sizing: border-box;
  line-height: 1.2;
  height: 70vh;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
}
.layerWrap .popWrap .popClose {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  bottom: 100%;
  right: 0;
  color: #fff;
  background-color: #000;
  cursor: pointer;
}
.layerWrap .popWrap .pop {
  overflow-y: auto;
  height: 100%;
}
.layerWrap .popWrap .pop dl dt {
  font-size: 18px;
}
.layerWrap .popWrap .pop dl dd {
  font-size: 14px;
  margin-top: 10px;
}
.layerWrap .popWrap .pop p {
  margin-top: 20px;
  font-size: 14px;
}
.layerWrap strong {
  font-weight: bold;
}
.privacy_g{color: #fff;}
@media screen and (max-width: 820px) {
  .layerWrap .popWrap {
    padding: 15px;
    height: 50vh;
  }
}

  /****
  **************************************
개인정보처리방침 사용방법 
********************************************/
