@charset "utf-8";

*{box-sizing: border-box; word-break: keep-all;}
.mb-0{margin-bottom: 0 !important;}

.page-section{
  width: 100%;
  margin-bottom: 60px;
}
.page-section.border-b{
  padding-bottom: 60px;
  border-bottom: 1px solid #E2EBE2;
}

.page-bg{
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(0deg, #F7F9F7 0%, #F7F9F7 100%), #FFF;
}
.page-con{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 기업소개 */
.about-tit{
  width: 100%;
  margin-bottom: 50px;
}
.about-tit > h3{
  font-size: 36px;
  color: #222;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-tit > h3 > span{
  color: #3A9B3F;
}
.about-tit > p{
  color: #4B5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6 ;
}
.about-img-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.about-img-box{
  width: calc((100% - 52px) / 3);
}
.about-img{
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.about-img img{
  width: 100%;
  display: block;
  transition: .3s;
}
.about-img-caption{
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(27,63,30,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: .3s;
  position: absolute;
  top: 0;
  left: 0;
}
.about-img-caption > h5{
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.about-img:hover img{
  transform: scale(1.04);
}
.about-img:hover .about-img-caption{
  opacity: 1;
}

.page-tit{
  width: 100%;
  margin-bottom: 30px;
}
.page-tit > h5{
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #222;
  font-weight: 800;
  gap: 10px;
}
.page-tit > h5 > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #EDF7EE;
  font-size: 15px;
  color: #3A9B3F;
}
.page-tit > h5.red > span{
  background: #FDF0ED;
  color: #E8735A;
}
.page-tit > p{
  font-size: 14px;
  color: #9CA3AF;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
}

.icon-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.icon-box{
  width: calc((100% - 2rem) / 3);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #E2EBE2;
  background: #FFF;
  transition: .3s;
}
.icon-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.icon-wrap.center .icon-box{
  width: calc((100% - 3rem) / 4);
  padding: 30px;
  text-align: center;
}
.icon-box > span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EDF7EE;
  font-size: 20px;
  color: #3A9B3F;
  margin-bottom: 1rem;
}
.icon-wrap.center .icon-box > span{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #EDF7EE;
  font-size: 22px;
}
.icon-box > h5{
  font-size: 16px;
  color: #222;
  font-weight: 700;
}
.icon-wrap.center .icon-box > h5{
  font-size: 18px;
}
.icon-box > p{
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
}

.warning-caption{
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #F4C4B8;
  background: #FDF0ED;
  margin-bottom: 30px;
}
.warning-wrap{
  width: 100%;
  display: flex;
  gap: 20px;
}
.warning-wrap > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #E8735A;
  color: #fff;
  font-size: 22px;
}
.warning-tit > h5{
  font-size: 17px;
  color: #7A3020;
  font-weight: 800;
  margin-bottom: 10px;
}
.warning-tit > p{
  font-size: 13px;
  color: #A04030;
  font-weight: 400;
  line-height: 1.8;
}

.contact-bg{
  width: 100%;
  height: 345px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 50px 0;
  background-color: #276B2B;
}
.contact-bg::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.contact-tit{
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}
.contact-tit > h5{
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
}
.contact-tit > h3{
  color: #FFF;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.contact-tit > h3 > span{
  color: #F9B8A8;
}
.contact-tit > p{
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}
.contact-btn{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 3;
}
.contact-btn > a{
  display: inline-flex;
  padding: 18px 30px;
  border-radius: 8px;
  gap: 8px;
  align-items: center;
  transition: .2s;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.contact-btn > a:first-child{
  border: 1px solid #E8735A;
  background: #E8735A;
  box-shadow: 0 4px 20px 0 rgba(232, 115, 90, 0.40);
}
.contact-btn > a:first-child:hover{
  background: #d4604a;
  transform: translateY(-2px);
}
.contact-btn > a:last-child{
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.12);
  padding: 18px 24px;
}
.contact-btn > a:last-child:hover{
  background: rgba(255, 255, 255, 0.2);
}

/* 공통 */
.tp-tit{
  width: 100%;
  margin-bottom: 50px;
}
.tp-tit > ul{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.tp-tit > ul > li{
  padding-right: 12px;
  margin-right: 12px;
  position: relative;
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 400;
}
.tp-tit > ul > li::after{
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #9CA3AF;
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
}
.tp-tit > ul > li:last-child{
  margin-right: 0;
  padding-right: 0;
}
.tp-tit > ul > li:last-child::after{
  display: none;
}
.tp-tit > ul > li > p{
  display: inline-flex;
  align-items: center;
  padding: 8px 1rem;
  gap: 6px;
  border-radius: 30px;
  background: #EDF7EE;
  font-size: 12px;
  color: #3A9B3F;
  font-weight: 700;
}
.tp-tit > ul > li > span{
  color: #3A9B3F;
  font-weight: 600;
}
.tp-tit > h3{
  font-size: 40px;
  color: #222;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.tp-tit > h3 > span{
  color: #3A9B3F;
}
.tp-tit > p{
  padding-left: 20px;
  border-left: 3px solid #3A9B3F;
  font-size: 17px;
  color: #4B5563;
  font-weight: 400;
  line-height: 1.8;
}
.tp-img{
  width: 100%;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 50px;
}
.tp-img img{
  width: 100%;
}
.tp-caption{
  width: 100%;
}
.tp-caption > ul > li{
  font-size: 16px;
  color: #4B5563;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 10px;
}
.tp-caption > ul > li:last-child{
  margin-bottom: 0;
}

.wb-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wb-box{
  width: calc((100% - 12px) / 2);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #E2EBE2;
  background: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wb-box > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #FDF0ED;
  font-size: 12px;
  color: #E8735A;
}
.wb-box > p{
  font-size: 14px;
  color: #4B5563;
  font-weight: 400;
  line-height: 1.6;
}
.wb-caption{
  width: 100%;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #F4C4B8;
  background: #FDF0ED;
  margin-top: 20px;
}
.wb-caption > span{
  font-size: 18px;
  color: #E8735A;
}
.wb-caption > p{
  font-size: 14px;
  color: #7A3020;
  font-weight: 400;
  line-height: 1.6;
}

.process-wrap{
  width: 100%;
  display: flex;
  gap: 14px;
}
.process-box{
  width: calc((100% - 56px) / 5);
  transition: .3s;
  border-radius: 12px;
  border: 1px solid #E2EBE2;
  background: #FFF;
  overflow: hidden;
}
.process-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}
.process-img{
  width: 100%;
  display: flex;
  position: relative;
}
.process-img img{
  width: 100%;
}
.process-img > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #3A9B3F;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
}
.process-caption{
  width: 100%;
  padding: 1rem;
}
.process-caption > h5{
  font-size: 14px;
  color: #222;
  font-weight: 800;
  margin-bottom: 10px;
}
.process-caption > p{
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 400;
  line-height: 1.6;
}

.check-list{
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.check-list > li{
  width: calc((100% - 10px) / 2);
  padding: 14px;
  border-radius: 8px;
  background: #EDF7EE;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #276B2B;
  font-weight: 600;
}
.check-list > li > span{
  font-size: 14px;
  color: #3A9B3F;
}

.check-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.check-box{
  width: calc((100% - 14px) / 2);
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid #C2DFC4;
  background: #EDF7EE;
}
.check-box.red{
  border: 1px solid #FDD;
  background: #FFF5F5;
}
.check-box > h5{
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #276B2B;
  font-weight: 800;
  gap: 10px;
  margin-bottom: 1rem;
}
.check-box > ul > li{
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #276B2B;
  font-weight: 400;
  margin-bottom: 10px;
}
.check-box > ul > li:last-child{
  margin-bottom: 0;
}
.check-box.red > h5{
  color: #C0392B;
}
.check-box.red > ul > li{
  color: #7A2020;
}

/* media-query */

@media(min-width:1200px){
  .d-lg-block{display: block;}
  .d-lg-none{display: none;}

  .ani.up.delay {
      transition: 1s opacity 0.2s, 1s transform 0.2s;
  }

  .ani.up.delay2 {
      transition: 1s opacity 0.5s, 1s transform 0.5s;
  }

  .ani.up.delay3 {
      transition: 1s opacity 0.8s, 1s transform 0.8s;
  }

  .ani.up.delay4 {
      transition: 1s opacity 1.1s, 1s transform 1.1s;
  }
}

@media(max-width:1199px){
  .d-block{display: block;}
  .d-none{display: none;}
  
}
@media(max-width:600px){
  
}

/* animation */

.ani.up {
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.ani.up.act {
    transform: translateY(0);
    opacity: 1;
}