@charset "UTF-8";

.background-section {
background-image: url('/cbj/web/wjpn/globalesim/img/globalesim-nw1.jpg'); /* 이미지 경로를 설정하세요 */
    background-size: cover; /* 화면 크기에 따라 이미지 크기를 조정 */
    background-position: center; /* 이미지 위치를 중앙으로 설정 */
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0; /* 상하 패딩 조정 */
}

.background-section h1 {
    position: absolute;
    width: 115%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* 텍스트 그림자 추가 */
    padding: 20px;
    z-index: 2; /* 오버레이보다 앞에 위치 */
}

.background-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명한 오버레이 */
    z-index: 1; /* 텍스트 뒤에 위치 */
}

.background-section .top {
    top: 15px;
}

.background-section .middle {
    top: 60%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
    .background-section .middle {
        font-size: 5vw;
    }
}
@media (max-width: 768px) {
    .background-section .middle {
        font-size: 5vw;
    }
}

.background-section .bottom {
    bottom: 20px;
    top: auto;
    transform: translateX(-50%);
}