@font-face {
    font-family: 'WelcomeFont';
    src: url('../css/font/210Welcome_R.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'WelcomeFont';
    src: url('../css/font/210Welcome_B.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

#header div,
#header dl,
#header dt,
#header dd,
#header h1,
#header h2,
#header h3,
#header h4,
#header h5,
#header h6,
#header pre,
#header form,
#header fieldset,
#header input,
#header p,
#header blockquote,
#header th {
    line-height: normal;
}


/* PC 기본 상태 */
#header-wrapper {
    position: relative;
    z-index: 1000;
    width: 100%;
}

/* Header Styles */
#header {
    height: 120px;
    overflow: visible;
    position: relative;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: flex-end;    
    font-family: 'WelcomeFont', sans-serif;
    font-weight: 400;
	z-index: 1000;
}

#header .header {
    width: 100%;
    max-width: 1350px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
}
#header .header #logo {
    padding-bottom: 10px;
}
#header .header #logo img {
    max-width: 275px;
}

#nav > .nav {
    display: flex;
    padding-bottom: 10px;
}

#nav > .nav > .nav-list {
    font-size: 20px;
    font-family: 'WelcomeFont', sans-serif;
    font-weight: 400;
    padding: 10px 15px;
    cursor: pointer;
}
#nav > .nav > .nav-list a{
    color: #fff;
	font-family: 'WelcomeFont', sans-serif;
    font-weight: 400;
}

#nav > .nav > .nav-list:hover a{
    color : #fdff8a;
}


/* Dropdown Container */
.dropdown-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #fff;
}

/* Flex container for dropdown content */
.dropdown-flex {
    display: flex;
    /* max-width: 1640px; */
}

/* Left side image */
.dropdown-left {
    width: 600px;
    height: 260px;
    margin-right: 50px;
}

.dropdown-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 55px; /* 각 아이템 간 간격 */ 
    padding-top: 30px;
    width: 990px;
}

.dropdown-content.grid-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    flex: 1;
    padding-right: 40px;
    width: fit-content;
}

.dropdown-content.grid-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
    flex: 1;
    padding-right: 40px;
    width: fit-content;
}

.dropdown-content.gap-28{
    gap:14px;
}

/* 활성화된 드롭다운 콘텐츠 */
.dropdown-content.active {
    display: grid; /* 활성화된 콘텐츠만 표시 */
}

.dropdown-item > p {
    font-size: 18px;
    color: #5a5858;
    font-weight: 700;
    padding-bottom: 14px;
    border-bottom: 1px solid #5a5858;
    line-height: 24px !important;
	white-space: nowrap;
}
.dropdown-item .small-18{
    font-size: 18px;
}
.dropdown-item .small-17{
    font-size: 17px;
}
.dropdown-item .small-16{
    font-size: 16px;
}

.dropdown-item ul {
    list-style: none;
    padding-top: 22px;
    margin: 0;
}

.dropdown-item ul li {
    font-size: 18px;
    color: #5a5858;
    list-style-type: "-"; /* 하이픈 스타일 적용 */
    list-style-position: outside; 
    margin-left: 8px; /* 하이픈과 텍스트 사이의 간격 */
    padding-left: 5px;

}

.dropdown-item ul > :not([hidden])~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-bottom: calc(0.625em* var(--tw-space-x-reverse));
    margin-top: calc(0.625rem* calc(1 - var(--tw-space-x-reverse)));
}

.dropdown-item ul li a{
    cursor: pointer;
	font-family: 'WelcomeFont', sans-serif;
    font-weight: 400;
    text-indent: -13px; /* 첫 번째 줄을 하이픈 뒤로 정렬 */
}

.dropdown-item ul li a:hover{
    text-decoration: underline;
    text-underline-offset: 6px;
}

.top-nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.top-nav span{
    padding: 0 10px;
    color: #fff;
    margin-top: 5px;
    font-size: 14px;
}

.top-nav a{
    display: block;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.header-homelink{
    margin-right: 15px;
}
.top-nav img{
    width: 20px;
}

.mt-7{
    margin-top: 7px;
}

.top-nav a.viewMobile{
    display: none;
}
.top-nav span.viewMobile{
    display: none;
}

.visually-hidden{position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;}