/* 최초 기본 셋팅 값 시작 */

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

@font-face {
	font-family: 'Pretendard900';
	src:url('../assets/font/pretendard/Pretendard-Black.eot');
	src:url('../assets/font/pretendard/Pretendard-Black.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-Black.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-Black.ttf') format('truetype');
	font-weight: bold;
}

@font-face {
	font-family: 'Pretendard800';
	src:url('../assets/font/pretendard/Pretendard-Bold.eot');
	src:url('../assets/font/pretendard/Pretendard-Bold.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-Bold.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-Bold.ttf') format('truetype');
	font-weight: 800;
}

@font-face {
	font-family: 'Pretendard700';
	src:url('../assets/font/pretendard/Pretendard-ExtraBold.eot');
	src:url('../assets/font/pretendard/Pretendard-ExtraBold.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-ExtraBold.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-ExtraBold.ttf') format('truetype');
	font-weight: 700;
}

@font-face {
	font-family: 'Pretendard600';
	src:url('../assets/font/pretendard/Pretendard-SemiBold.eot');
	src:url('../assets/font/pretendard/Pretendard-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-SemiBold.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-SemiBold.ttf') format('truetype');
	font-weight: 600;
}

@font-face {
	font-family: 'Pretendard500';
	src:url('../assets/font/pretendard/Pretendard-Medium.eot');
	src:url('../assets/font/pretendard/Pretendard-Medium.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-Medium.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-Medium.ttf') format('truetype');
	font-weight: 500;
}

@font-face {
	font-family: 'Pretendard400';
	src:url('../assets/font/pretendard/Pretendard-Regular.eot');
	src:url('../assets/font/pretendard/Pretendard-Regular.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-Regular.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-Regular.ttf') format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Pretendard300';
	src:url('../assets/font/pretendard/Pretendard-Light.eot');
	src:url('../assets/font/pretendard/Pretendard-Light.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-Light.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-Light.ttf') format('truetype');
	font-weight: 300;
}

@font-face {
	font-family: 'Pretendard200';
	src:url('../assets/font/pretendard/Pretendard-ExtraLight.eot');
	src:url('../assets/font/pretendard/Pretendard-ExtraLight.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-ExtraLight.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-ExtraLight.ttf') format('truetype');
	font-weight: 200;
}

@font-face {
	font-family: 'Pretendard100';
	src:url('../assets/font/pretendard/Pretendard-Thin.eot');
	src:url('../assets/font/pretendard/Pretendard-Thin.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-Thin.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-Thin.ttf') format('truetype');
	font-weight: 100;
}

@font-face {
	font-family: 'Pretendard';
	src:url('../assets/font/pretendard/Pretendard-Regular.eot');
	src:url('../assets/font/pretendard/Pretendard-Regular.eot?#iefix') format('embedded-opentype'),
		url('../assets/font/pretendard/Pretendard-Regular.woff') format('woff'),
		url('../assets/font/pretendard/Pretendard-Regular.ttf') format('truetype');
	font-weight: 400;
}

body {
    font-family: 'Pretendard' , sans-serif;
}

button {
    background: none;
    color: inherit;
    border: none;
    cursor: pointer;
    outline: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, li {
    list-style: none;
    padding: 0;
}

p {
    margin-bottom: 0;
}

input:focus {
    outline: none;
}

.page-section {
    padding: 80px 0;
}

.page-section > div {
    height: 100%;
}

@media (max-width:767px) {
    .container {
        max-width: 92%;
    }

    .page-section {
        padding: 3rem 0;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #ffbb00;
}
/* 최초 기본 셋팅 값 끝 */


/* header 부분 시작 */

#header {
    /* position: fixed; */
    width: 100%;
    box-sizing: border-box;
    transition: 0.5s;
    display: flex;
}
#header nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

#header nav .logo {
    padding: 30px 0;
    background-image: url(../assets/common/logo_wh2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 225px;
    position: relative;
}

#header nav .logo a {
    display: block;
    width: 225px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

#header nav ul {
    margin: 0;
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

#header nav ul li {
    display: block;
    margin-right: 0 !important;
}
#header nav ul li a {
    padding: 0;
    color: #ffffff;
}
#header nav ul li:hover a {
    text-decoration: underline;
}

#header nav .logo img,
#header nav ul li a {
    transition: 0.5s;
}

#header button span  {
    width: 15px;
    height: 15px;
    display: block;
    background-image: url(../assets/common/menu_mo_active.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#mainNav #header .navbar-toggler {
    border: 1px solid #ffffff;
}

/* 스크롤 내렸을때 CSS .active */
#header.active {
    background: #ffffff;
    padding: 10px 0;
}
#header.active nav .logo,
#header.active nav ul {
    padding: 30px 0;
    transition: 0.5s;
}
#header.active nav ul li a {
    color: #000000;
}

#header.active nav .logo {
    background-image: url(../assets/common/logo_bk2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#header.active button span  {
    width: 15px;
    height: 15px;
    display: block;
    background-image: url(../assets/common/menu_mo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#mainNav #header.active .navbar-toggler {
    border: 1px solid #000000;
}

@media (max-width:991px) {
    .navbar-collapse {
        overflow-x: auto;
    }

    #header nav ul {
        gap: 30px;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    #header nav ul li {
        flex-shrink: 0;
    }
}

/* header 부분 끝  */

/* footer 부분 시작  */

.footer {
    background: #000000;
    color: #ffffff;
    padding: 50px 0 180px;
}

.footer .footer_tit {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer .footer_tit img {
    width: 200px;
}

.footer .footer_tit ul {
    display: flex;
    gap: 30px;
    font-family: 'Pretendard300';
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
}

.footer .footer_txt {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 100px;
}

.footer .footer_txt .accordion {
    --bs-accordion-bg: none;
    -bs-accordion-border-color: none;
    color: #ffffff;
    width: calc(100% - 500px);
}

.footer .footer_txt .accordion-button:not(.collapsed) {
    background: none;
    padding: 0;
    width: auto;
    color: #ffffff;
    font-family: 'Pretendard500';
}
.footer .accordion-item:last-of-type .accordion-button.collapsed {
    color: #ffffff;
    padding: 0;
    width: auto;
    font-family: 'Pretendard500';
}

.footer .accordion-button::after {
    background-image: url(../assets/common/arrow_wh.svg);
    height: 12px;
    margin-left: 5px;
}


.footer .accordion-body {
    padding: 0;
    width: auto;
    color: #ffffff;
}

.footer .accordion-body ul {
    padding: 0;
    margin-top: 10px;;
    display: flex;
    margin-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    letter-spacing: -1px;
    font-size: 13px;
}

.footer .accordion-body ul a {
    font-weight: bold;
}

.footer .footer_txt p {
    font-size: 12px;
}

@media (max-width:991px) {
    .footer .footer_tit {
        align-items: center;
        margin-bottom: 30px;
        align-content: center;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 15px;
    }

    .footer .footer_tit ul {
        font-size: 1.2rem;
    }

    .footer .footer_txt {
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        gap: 20px;
    }

    .footer .footer_txt .accordion {
        width: 100%;
        text-align: center;
    }

    .footer .accordion-item:last-of-type {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .accordion-body ul {
        justify-content: center;
        font-size: 0.9rem;
    }

    .footer .footer_txt p {
        width: 100%;
        font-size: 0.8rem;
    }
}

/* footer 부분 끝  */

/* fixed_wrap 시작 */

.fixed_wrap a {
    background: #000000;
    color: #ffffff;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 15px 0;;
    gap: 10px;
    z-index: 9;
    font-size: 24px;
    font-weight: 500;
    transition: 0.3s;
}

.fixed_wrap a:hover {
    color: #000000;
    background: #ffbb00;
}

.fixed_wrap a img {
    width: 30px;
}

@media (max-width:1400px) {
    .fixed_wrap a {
        width: 92%;
    }
}

@media (max-width:767px) {
    .fixed_wrap a {
        font-size: 1.2rem;
    }
}

/* fixed_wrap 끝 */
