.orgchart {
    width: 100%;
    text-align: center;
    max-width: 970px;
}

/* ===========================
    상단 원형(이사회)
=========================== */
.border-circle{
  margin: 0 auto 0px;
  display: inline-block;
    background: #CEDFF9;
    border-radius: 50%;
    padding: 16px;
    border:16px solid #E6F0FF;
}
.circle.big {
    width: 120px;
    height: 120px;
    
    border-radius: 50%;
	background: linear-gradient(43.22deg, #088DF4 13.93%, #2FBCBF 81.07%);

    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===========================
    중간 노드
=========================== */
.orgchart .middle {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding:100px 0;
	position: relative;
}
.orgchart .middle:before{
	content: "";
	display: block;
	top: 0%;
	bottom: 0%;
	width: 1px;
	background:#DADADA;
	position: absolute;
}
.orgchart .node {
    background: #637081;
	padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-size: 18px;
    min-width: 140px;
    text-align: center;
	position: relative;
}
.node.mid {
    background: #00c3a0;
}
.node.small.blue {
    background: #497bed;
	top: auto;
	bottom:30px;
    margin-left: 300px;
	margin-right: auto;
}
.node.small{
	position: absolute;
    top: 30px;
    margin-right: 300px;
}
.node.small:before{
	position: absolute;
    content: "";
    display: block;
    width: 80px;
    right: -80px;
    height: 1px;
    background: #DADADA;
    top: 50%;
    transform: translateY(-50%);
}
.node.small.blue:before {
    right:auto;
	left:-80px;
    height: 1px;
    background: #DADADA;
    top: 50%;
    transform: translateY(-50%);
}
/* ===========================
    하단 6개 부서 박스
=========================== */
.orgchart .bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
	;
	position: relative;
}
.orgchart .bottom:before{
	content: "";
    display: block;
    left: 15%;
    right: 15%;
    position: absolute;
    height: 1px;
    background: #DADADA;
    top: 0;
}
.orgchart .dept {
    width: 16%;
	padding-top:20px;
	background:url(../img/or2.png) no-repeat center top;
}
.orgchart .dept:first-child{
	background:url(../img/or1.png) no-repeat 50% top;
}
.orgchart .dept:last-child{
	background:url(../img/or3.png) no-repeat 50% top;
}

.orgchart .dept h3 {
    background:#F2F7FF ;
    padding: 10px;
    border: 1px solid #CEDFF9;
    margin-bottom: 5px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

.orgchart .dept ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e5edf7;
    border-radius: 15px;
    padding: 15px 10px;
    box-sizing: border-box;
  
}

.orgchart .dept ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
   
}

/* 반응형 */
@media (max-width: 1200px) {
  .orgchart .dept {
       
    }
}

@media (max-width: 768px) {
    .orgchart .bottom{
        padding: 0 10px;
    }
    .orgchart .dept ul{
        padding: 15px 5px;
    }
    .orgchart .dept {
        width: 100%;
    }
}
@media (max-width: 740px) {
    .orgchart{
        height:0;
        padding-top:325%;
        overflow: hidden;
        position: relative;
        text-indent: -99999px;
        background: url(/img/organization_m.jpg) no-repeat center top;
        background-size: 100% auto;
    }
}

