/* footer 통합 24.11.26 */

#footer-container {
	display: flex;
	width: calc(100% - 60px);
	padding: 30px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#footer-wrapper {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.10) 100%);
}

#footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

#footer-slogan {
    width: 400px;
    max-width: 100%;
    height: 100%;
    min-height: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#footer-menu {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-col:not(.button) {
    display: flex;
    width: 180px;
    max-width: 300px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 9px;
    flex-wrap: wrap;
    color: #fff;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
}

.footer-col:not(.button)::before {
    content: attr(data-title);
    width: 100%;
    display: block;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 400;
    line-height: 24px;
}

.footer-col:not(.button) li {
    width: 100%;
    display: block;
    line-height: 25px;
    font-weight: 500;
    cursor: pointer;
}

.footer-col.list-2 li {
    padding-left: 29px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 24px;
    font-weight: 500;
}

.footer-col.button {
    display: flex;
    width: 150px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-col.button li {
    display: flex;
    width: 120px;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background: #1C1C1C;
    color: #FFF;
    font-family: Pretendard;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    cursor: pointer;
}

.footer-col.button li::after {
    content: '';
    width: 20px;
    height: 20px;
    /* border: 1px solid #8f0a0a; */
    background: url('../images/footer-button-arrow.png') center no-repeat;
    background-size: 13px 11px;
}

#footer-info {
    width: 100%;
}

#footer-textarea {
    color: #FFF;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

#footer-textarea::before {
    content: '';
    width: 80px;
    height: 24px;
    display: block;
    background: url('../images/footer-logo.png') center no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}

#footer-textarea strong {
    font-weight: 600;
}

#footer-textarea p {
    margin: 5px 0;
}

#footer-textarea ul li {
    list-style: disc inside;
    padding-left: 5px;
}

#footer-etc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    color: rgba(255, 255, 255, 0.50);
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
    margin-top: 10px;
}

#footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer-link a {
    color: rgba(255, 255, 255, 0.50);
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    position: relative;
}

#footer-link a:not(:first-child) {
    padding-left: 11px;
}

#footer-link a:not(:first-child)::before{
    content: '';
    width: 1px;
    height: calc(100% - 4px);
    background: rgba(255, 255, 255, 0.50);
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
}


@media (max-width: 1279.98px) {

    #footer-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        align-self: stretch;
    }

}

@media (max-width: 899.98px) {

    #footer-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }

    #footer-etc {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        align-self: stretch;
    }

}