@charset "utf-8";

/******************** contents ********************/
h3.title {
    width: fit-content;
    margin: 0 auto 30px;
    padding: 15px 55px;
    background: #efefef;
    border-radius: 50px;
    text-align: center;
}
p.title {
    position: relative;
    padding-left:14px;
}
p.title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 15px;
    background-color: #0e8136;
    border-radius: 4px;
}
.pic {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    line-height: 0;
}
.pic img {
    width: 100%;
}
.pic .description {
    position: absolute;
    left:0;
    bottom:20px;
    width: 100%;
    line-height: 1;
    display: flex;
}
.pic .description li {
    flex:1;
    text-align: center;
}
.pic .description li span {
    padding: 5px 20px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 6px;
    color: #fff;
}

.pic_list {
    display: flex;
    gap: 16px;
}
.pic_list.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.pic_list li {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    line-height: 0;
}
.pic_list img {
    width: 100%;
}
.pic_list span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6.5px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 6px;
    line-height: 1;
}


/**** 인사말 ****/
/* 인사말 */
.greeting {
    display: flex;
    flex-direction: column;
    gap:48px;
    align-items: center;
}
.greeting .tit {
    position: relative;
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -1px;
    color: #000;
}
.greeting .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height:400px;
    background-color: #f1f1f1;
    border-radius: 16px;
}
.greeting .pic span {
    position: absolute;
    right: 6px;
    bottom: 6px;
    padding: 4px 15px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 8px;
    font-size: 14px;
    text-align: justify;
    color: #fff;
    box-sizing: border-box;
}
.greeting .greeting_txt > div {
    display:flex; 
    gap:50px;
    padding-top: 36px;
    border-top: 1px solid #ddd;
}
.greeting p {
    flex:1;
    margin:0;
    text-align: justify;
    line-height: 1.7;
}
.greeting p.sign {
    margin-top: 50px;;
    text-align: right;
}
.greeting p.sign strong {
    color: #000;
}
/* CEO 프로필 */
.ceo_profile {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ceo_profile > div {
    padding:40px;
    border-radius: 16px;
    background-color: #f9f9f9;
}

/**** 회사개요 ****/
.company_overview {
    padding:40px;
    border-radius: 16px;
    background-color: #f9f9f9;
    display: grid;
    grid-template-columns: 100px auto;
    gap: 24px 24px;
}
.company_overview dt {
    font-weight: 600;
    color:#000;
}

/**** 조직도 ****/
.organization {
    position: relative;
    width: 100%;
}
.organization div.leader {
    position: relative;
    width: 35%;
    margin: 0 auto;
}
.organization div > span {
    display: block;
    background-color: #338d52;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    font-weight: bold;
    text-align: center;
    color:#fff;
}
.organization .lstyle01 {
    padding:20px;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 16px 16px;
    font-size: 15px;
}
.org_group {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 100px;
    position: relative;
}
.org_group div > span {
    background-color: #70a436;
}
.org_group li {
    flex:1;
    position: relative;
}
/* line */
.organization div.leader::after, .org_group::before, .org_group div::before {
    content: '';
    position: absolute;
    left: 50%;
    transform:translateX(-50%);
    background-color: #ccc;
}
.organization div.leader::after {
    width: 1px;
    height: 50px;
}
.org_group::before {
    top: -50px;
    width: 614px;
    height: 1px;
}
.org_group div::before {
    top: -50px;
    width: 1px;
    height: 50px;
}


/**** 오시는길 ****/
.map {
    display: flex;
    gap:12px;
}
.map_info {
    padding:32px;
    border:1px solid #ddd;
    border-radius: 16px;
    display: flex;
    align-items: center;
}
.map_info ul {
    display: flex;
    flex-direction: column;
    gap:32px;

}
.map_info ul strong {
    display: flex;
    gap:8px;
    align-items: center;
    font-weight: bold;
    color: #000;
}
.map_info ul i {
    font-size: 13px;
}
.root_daum_roughmap {
    border:1px solid #ddd;
    flex-shrink: 0;
    border-radius: 16px;
}
.root_daum_roughmap .wrap_controllers, .root_daum_roughmap .border1, .root_daum_roughmap .border2, .root_daum_roughmap .border3, .root_daum_roughmap .border4, .root_daum_roughmap .cont {
    display:none;
}


/**** 주요사업 ****/
/* 주요사업 */
.technologies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.technologies li a {
  display: block;
}
.technologies li .pic {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  line-height: 0;
}
.technologies li .pic span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 60px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  text-align: center;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 6px;
}
.technologies li .pic img {
  width: 100%;
}
.technologies p {
  margin-top: 12px;
  text-align: center;
}
.technologies p strong {
  color: #000;
}
/* 사업추진 로드맵 */
.roadmap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.roadmap > li {
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;
    height: auto;
    padding: 25px 0;
    border-radius: 50px;
    font-weight: bold;
    font-size: 19px;
    color: #fff;
    mix-blend-mode: multiply;
}
.roadmap > li:nth-child(n+2) {
    margin-left: -25px;
}
.roadmap > li:nth-child(1) {
    /*border: 1px solid #bace9d;
    background-color: #dce6cf;
    color: #233906;*/
    background-color: #94b763;
    margin-top:60px;
}
.roadmap > li:nth-child(2) {
    /*border: 1px solid #9ccda9;
    background-color: #cfe6d5;
    color #053712;*/
    background-color: #65a977;
    margin-top:30px;
}
.roadmap > li:nth-child(3) {
    /*border: 1px solid #9ccdc7;
    background-color: #cfe6e2;
    color: #05372c;*/
    background-color: #61aea5;
}

/* 기술협력 및 투자유치 */
.listbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.listbox > li {
    overflow: hidden;
    border:1px solid #ddd;
    border-radius: 16px;
}
.listbox > li div.tit {
    margin:0;
    padding: 18px 0;
    background-color: #efefef;
    font-weight: bold;
    text-align: center;
    color: #000;
}
.listbox > li p {
    margin:0 0 -12px;
    padding: 24px 24px 0;
    font-weight: bold;
    color: #000;
}
.listbox > li ul {
    padding: 24px;
    font-size: 15px;
    text-align: justify;
}

/**** 주요기술 ****/
/* 무궁화 */
.mugunghwa_box {
    display: flex;
    gap: 16px;
}
.mugunghwa_box > li {
    flex:1;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 16px;
}
.mugunghwa_box img {
    width: 100%;
}
.mugunghwa_box .txt {
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    color: #000;
    text-align: center;
}
.mugunghwa_box .control {
    position: relative;
    padding:10px;
}
.mugunghwa_box .control p {
    margin: 0 0 10px;
    padding: 3px;
    background-color: #efefef;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-align: center;
    letter-spacing: 0;
}
.mugunghwa_box .control p em {
    font-weight: 500;
}
.mugunghwa_box .control p span {
    position: relative;
}
.mugunghwa_box .control ul {
    display: flex;
    gap: 10px;
}
.mugunghwa_box .control ul li {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    line-height: 0;
}
.mugunghwa_box span {
    position: absolute;
    right: 6px;
    bottom: 6px;
    padding: 3px 10px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    line-height: 1.4;
}
.mugunghwa_box span.white {
    padding: 2px 7px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    font-size: 12px;
}
/* 클로버 */
.clover_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
}
.clover_list li {
    border-radius: 16px;
}
.clover_list .pic {
    max-height: 300px;
    border-radius: 16px 16px 0 0;
}
.clover_list .magnifier {
    position: absolute;
    right:20px;
    bottom: 20px;
    width:120px;
    height:120px;
    background-color: #fff;
    border: 5px solid #fff;
    border-radius: 100%;
    overflow: hidden;
}
.clover_list .magnifier img {
    width: 100%;
}
.clover_list .txt {
    margin:0;
    padding: 20px;
    border:1px solid #ddd;
    border-top: none;
    border-radius: 0 0 16px 16px;
    font-weight: 500;
    color: #000;
    text-align: center;
}
.clover_list .txt ul {
    margin-top: 20px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 15px;
    text-align: left;
}

/**** 커뮤니티 ****/
/* 문의안내 */
.consulting {
    overflow:hidden; 
    padding:60px; 
    border:1px dotted #aaa;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:40px;
}
.consulting h2 {
    margin-bottom: 10px;
    padding:0;
    background:none; 
    font-size: 30px;
    font-weight: 700;
    color:#000; 
    letter-spacing:-1px;
    line-height: 1.2 !important;
}
.consulting p {
    margin:0;
    font-size:17px; 
    word-break:keep-all; 
    font-weight:normal; 
    letter-spacing:-1px; 
    text-align: left !important;
}
.consulting ul {
    margin:0; 
    display: flex;
    gap:30px;
}
.consulting li {
    flex:1;
    text-align: center;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
}
.consulting span {
    display:block;
    color: #000;
}
.consulting .ic {
    height:80px; 
    font-size: 44px; 
}
.consulting .tit {
    display:inline-block; 
    margin:0 auto 15px; 
    padding-bottom:15px; 
    border-bottom:1px solid #333; 
}