/* 기업소개의 공통 css */
/* visual 영역 */
.visual {
    width: 2000px;
    height: 399px;
    position: relative;
    left: 50%;
    top: 0;
    transform: translate(-50%);
    color: white;
    font-weight: 400;
    font-size: 3.5rem;
}
.visual span {
    font-size: 2.25rem;
    display: block;
    position: absolute;
    top: 185px;
    width: 100%;
    text-align: center;
    font-weight: 500;
}
.visual span::before {
    content: "About KOLON GLOBAL";
    display: block;
    position: absolute;
    width: 100%;
    top: -15px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 100;
}
.visual p {
    position: absolute;
    top: 280px;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
}

/* 서브메뉴 영역 */
.sub_nav {
    width: 100%;
    border-bottom: 1px solid #ccc;
}
.sub_nav ul {
    overflow: hidden;
    width: 1200px;
    margin: 0 auto;
}
.sub_nav li {
    width: 20%;
    float: left;
    text-align: center;
}
.sub_nav li a {
    font-size: 1.25rem;
    font-weight: 400;
    padding: 13px 0;
    transition: all 0.5s;
    background: #fcfcfc;
    color: #333;
}
.sub_nav li a:hover,
.sub_nav li .current {
    background: #ed1b2e;
    color: #fff;
    font-weight: 600;
}

/* content 영역 */
#content {
    width: 100%;
    overflow: hidden;
}
#content .title_area {
    width: 1200px;
    margin: 0 auto;
    height: 380px;
    position: relative;
    overflow: hidden;
}
#content .content_area {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
