body {
    background: #f5f5f5;
    margin: 0;
}

/* float를 제거하고 flex 컨테이너로 변경 */
#wrap {
    display: flex;
    flex-direction: column; /* 세로로 쌓이도록 설정 */
    min-height: 100vh;
}

#header, #container, #footer {
    width: 100%;
}

#header {
    height: 120px;
    border-bottom: 1px solid #dcdcdc; /* 두께(1px)와 스타일(solid) 추가 */
    background: #fff;
    display: flex;           /* 헤더 내부 정렬용 */
    justify-content: center; /* 내부 요소를 가로 중앙으로 */
}

#container{
	margin-top:30px;
}

.sectors {
	position:relative;
    width: 1400px;
    margin: 0 auto;
}

.black_bg_layer{
	display:none;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, .6);
}