@font-face { font-family: 'Noto Sans KR'; src: url('fonts/NotoSansKR.woff2') format('woff2'), url('fonts/NotoSansKR.woff') format('woff'); }li { list-style: none; }

li { list-style: none; }

#premium {
    position:relative; width:100%; height:100%;
    background-size: cover;
    background-attachment: fixed;
    background-position:center center;
    -webkit-font-smoothing: antialiased;  /* 크롬, 사파리 브라우저에서 부드럽게 처리 */
    -moz-osx-font-smoothing: grayscale;  /* 맥에서 부드럽게 처리 */

}
.sec2_wrap {
    width: 100%;
    height: 100%; /* 높이를 원하는 값으로 설정 */
}

.left_box {
    width: 100%; 
    height: 700px; 
    background-image: url('./img/bg1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.left_box::before, .right_box::before {
    content: "";
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 검은색 반투명 오버레이 (0.5는 투명도 조정값) */
    z-index: 1; /* 배경 위에 오버레이가 나타나도록 설정 */
}
.left_box > *, .right_box > * { position: relative; z-index: 2;}


.l_sub {
    display: flex; /* 플렉스 박스 활성화 */
    flex-direction: column; /* 자식 요소를 세로 방향으로 배치 */
    justify-content: center; /* 세로 중앙 정렬 */
    align-items: flex-start; /*center; 가로 중앙 정렬 */
    margin-left: 8%;
    height: 700px; 
    width: 100%; 
}
.l_sub .title, .r_sub .title { font-family: "Noto Serif KR", serif;
  font-optical-sizing: auto;
  font-weight: <weight>; letter-spacing: -0.5px; }
.l_sub .title .t1{    
    color: #f3f3f3;
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
}

.l_sub .title .t2{
    font-weight: 400;
    color: #f6ff00;
    font-size: 34px;
}
.l_sub .title .t3{
    font-weight: 400;
    color: #f6ff00;
    font-size: 34px;
    padding-left: 36px;
}

.l_sub .title span.w, .r_sub .title span.w { font-size: 30px; color: #fff; }
.c1 {
    width: 8px;
    height: 8px;
    border-radius: 50%; /* 원 모양으로 만들기 */
    background-color: #dcdcdc; /* 배경을 화이트로 채우기 */  
    margin: 10px 0 5px 0px;  
}
.c2 {
    width: 8px;
    height: 8px;
    border-radius: 50%; /* 원 모양으로 만들기 */
    border: 1px solid #dcdcdc; /* 화이트 테두리 */
    background-color: transparent; /* 내부는 투명 */ 
    margin-bottom: 40px;
}

.l_p1, .l_p2, .l_p3 { 
    color: #fff; 
    letter-spacing: -0.5px; 
    margin-bottom: 20px;
    font-family: "Noto Sans KR", serif;
    font-optical-sizing: auto;
}

.l_p1 .t1, .l_p2 .t1, .l_p3 .t1 { 
    font-size: 20px; 
    line-height: 28px;
    color: #f6ff00; 
    font-weight: 500;
}

.l_p1 .t2, .l_p2 .t2, .l_p3 .t2 { 
    font-size: 14px; 
    font-weight: 300;
}


.right_box {
    width: 100%; 
    height: 700px; 
    background-image: url('./img/bg2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}



.r_sub {
    display: flex; /* 플렉스 박스 활성화 */
    flex-direction: column; /* 자식 요소를 세로 방향으로 배치 */
    justify-content: center; /* 세로 중앙 정렬 */
    align-items: flex-end; /* 가로 정렬을 오른쪽으로 설정 */
    padding-right: 8%;
    height: 700px; 
    width: 100%; 
}
.r_sub .title .t1{    
    color: #f3f3f3;
    font-size: 1.4em;
    margin-bottom: 40px;
}

.r_sub .title .t2{
    font-weight: 400;
    color: #d8ff00;
    font-size: 34px;
}
.r_sub .title .t3{
    font-weight: 400;
    color: #d8ff00;
    font-size: 34px;
    padding-right: 36px;
}
.r_p1, .r_p2, .r_p3 {
    text-align: right;  
    letter-spacing: -0.5px; 
    margin-bottom: 20px;
    font-family: "Noto Sans KR", serif;
    font-optical-sizing: auto;    
}

.r_p1 .t1, .r_p2 .t1, .r_p3 .t1 { 
    font-size: 20px; 
    color: #d8ff00;   
    line-height: 28px;
    font-weight: 500;
}

.r_p1 .t2, .r_p2 .t2, .r_p3 .t2 { 
    font-size: 14px; 
    font-weight: 300;
    color: #fff;
}

/* 왼쪽 박스 title 애니메이션 나타나기 
@keyframes slideFromLeft {
    0% { opacity: 0; transform: translateX(-100%); }
    100% { opacity: 1; transform: translateX(0); }
}

.l_sub .title .t1, .l_sub .title .t2, .l_sub .title .t3 {
    animation: slideFromLeft 1s ease-out forwards;
    opacity: 0;

}


/* 왼쪽 박스 항목 순차 애니메이션 
@keyframes slideLeftItem {
    0% { opacity: 0; transform: translateX(-100%); }
    100% { opacity: 1; transform: translateX(0); }
}

.l_p1, .l_p2, .l_p3 {
    animation: slideLeftItem 1s ease-out forwards;
    opacity: 0;
}

.l_p1 { animation-delay: 0.5s; }
.l_p2 { animation-delay: 1s; }
.l_p3 { animation-delay: 1.5s; }



/* 오른쪽 박스 title 애니메이션 나타나기 
@keyframes slideFromRight {
    0% { opacity: 0; transform: translateX(100%); }
    100% { opacity: 1; transform: translateX(0); }
}

.r_sub .title .t1, .r_sub .title .t2, .r_sub .title .t3 {
    animation: slideFromRight 1s ease-out forwards;
    opacity: 0;

}

/* 오른쪽 박스 항목 순차 애니메이션 
@keyframes slideLeftItem {
    0% { opacity: 0; transform: translateX(100%); }
    100% { opacity: 1; transform: translateX(0); }
}

.r_p1, .r_p2, .r_p3 {
    animation: slideLeftItem 1s ease-out forwards;
    opacity: 0;
}

.r_p1 { animation-delay: 0.5s; }
.r_p2 { animation-delay: 1s; }
.r_p3 { animation-delay: 1.5s; }*/