/*폰트연결*/

/*프리텐다드*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/*폰트어썸*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
/*노토산스 코리아*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

/*변수*/

:root {
    --gap-50: 50px;
    --card-w: 420px;
    /* 섹션2 카드 폭 값으로 맞추기 */
    --card-gap: 20px;
    /* 섹션2 gap 값 */

}

/*공통스타일*/

* {
    padding: 0;
    margin: 0;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

li {
    list-style: none;
}

body {
    font-family: "Pretendard Variable", "Pretendard", sans-serif;
}

.section-title {
    width: 90%;
    max-width: 1300px;
    margin: 20px auto;
    border: 1px solid red;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid red;
}

/* 해더 스타일 */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    border-bottom: 1px solid #33333311;
    box-shadow: 0px 1px 10px 1px #33333311
}

header .top-banner {
    width: 100%;
    height: 30px;
    background-color: #232323;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 310px;
    box-sizing: border-box;
    text-align: center;
}

header .top-banner p {
    font-size: 14px;
    font-weight: 400;
    margin: 0 524px 0 524px;
}

header .top-banner .x-btn {
    background-color: inherit;
    border: none;
    cursor: pointer;
}

header .top-banner .x-btn .line {
    display: block;
    width: 14.5px;
    height: 0.5px;
    background-color: #ffffff;
}

header .top-banner .x-btn .line1 {
    transform: rotate(45deg);
}

header .top-banner .x-btn .line2 {
    transform: rotate(-45deg);
}

header .inner-header {
    background-color: #ffffff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 310px;
    box-sizing: border-box;
    position: relative;
    font-size: 14px;
}

header .left {
    width: 90px;
    padding-top: 20px;
    box-sizing: border-box;
}

header .center .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

header .menu li a {
    transition: 0.3s;
}

header .menu li:hover a {
    font-size: 16px;
    font-weight: 500;
}

header .right .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header .right .icon .lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translate(0, -50%);
    cursor: pointer;
}

header .right button {
    background-color: inherit;
    border: none;
    cursor: pointer;
}

header .right button img {
    width: 20px;
}

.icon-btn.lang {
    position: relative;
}

.lang-dropdown {
    background-color: #ffffff;
    width: 80px;
    height: auto;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 100%;
    right: -28%;
    display: none;
    font-size: 14px;
    line-height: 22px;
    border-bottom: 1px solid #333333;
}

.lang-dropdown span {
    font-weight: 600;
}

.icon-btn.lang:hover .lang-dropdown {
    display: block;
}

header .inner-header .white {
    display: none;
}

@media (max-width:1500px) {
    header .inner-header {
        padding: 0 90px;
    }

    header .right .icon .lang {
        right: 1.5%;
    }
}

@media (max-width:1000px) {
    header .top-banner {
        display: none;
    }

    header .center .menu {
        font-size: 12px;
        gap: 20px;
    }

    header .menu li:hover a {
        font-size: 14px;
        font-weight: 500;
    }

    header .left {
        flex: 0 0 auto;
        flex-shrink: 0;
        min-width: 90px;
    }

    header .inner-header {
        padding: 0 50px;
        font-size: 14px;
    }

    header .right .icon .lang {
        display: none;
    }
}

@media (max-width:800px) {

    header .inner-header {
        padding: 0 50px;
        font-size: 11px;
        gap: 30px;
    }

    header .right .icon .Log-in {
        display: none;
    }

    header .right .icon .cart {
        display: none;
    }

    header .right .icon .menu {
        display: none;
    }
}

@media (max-width:600px) {

    header .inner-header .white {
        display: block;
    }

    header .inner-header .black {
        display: none;
    }

    header .inner-header {
        justify-content: center;
        position: relative;
        gap: 10px;
        background-color: #000000;
    }

    header .inner-header .center {
        display: none;
    }

    header .left {
        order: 2;
        padding-bottom: 30px;
        box-sizing: border-box;

    }

    header .right button img {
        width: 20px;
    }

    header .right .icon .menu {
        display: block;
        order: 1;
        position: absolute;
        left: 10%;
    }

    header .right .icon .search {
        display: block;
        order: 3;
        position: absolute;
        right: 10%;
    }
}

/* 푸터 스타일 */

footer {
    background-color: #000000;
}

footer .footer-wrap {
    display: flex;
    gap: 0px;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1300px;
    width: 90%;
    padding: 22.5px 0;
    box-sizing: border-box;
    border: none;
}

footer .footer-col {
    color: #ffffff;
    width: 100%;
}

footer .brand .logo {
    width: 350px;
    margin: 20px 0 20px;
}

footer .footer-wrap .company {
    padding: 20px 20px 20px 0;
    box-sizing: border-box;
}

footer .footer-wrap .cs {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    ;
}

footer .footer-wrap .cs .cs-num {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

footer .cs .cs-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 142px;
    margin-bottom: 22px;
}


footer .policy ul {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    margin-bottom: 38px;
}

footer .brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

footer .brand .sns {
    display: flex;
    width: 350px;
    justify-content: space-between;
    align-items: center;
}

footer .brand .sns li {
    display: block;
    width: 22.05px;
}

/*푸터 문자 스타일*/

footer .company li {
    font-size: 14px;
    font-weight: 800;
}

footer .company address {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.15px;
}

footer .cs p {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.3px;
    margin-bottom: 22px;
}

footer .cs .copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 0;
}

footer .brand p {
    margin-right: 125px;
    margin-bottom: 15px;
}

footer .portfolio {
    max-width: 1300px;
    width: 90%;
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
} 

footer .portfolio p {
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
}

@media (max-width:1200px) {
    footer .footer-wrap {
        gap: 40px;
    }

    footer .footer-col {
        flex: 1;
    }
}

@media (max-width:1000px) {
    footer .footer-wrap {
        gap: 24px;
    }

    footer .footer-col {
        font-size: 13px;
    }


    footer .policy ul {
        font-size: 12px;
        margin-bottom: 15px;
        gap: 35px;
    }

    footer .company address {
        font-size: 10px;
        line-height: 13px;
    }

    footer .cs {
        padding: 0 16px;
    }

    footer .cs p {
        letter-spacing: 0.5px;
    }

    footer .cs .copyright {
        font-size: 10px;
    }

    footer .footer-wrap .cs .cs-num {
        gap: 40px;
    }

    footer .brand {
        align-items: center;
    }

    footer .brand .logo {
        width: 330px;
        margin: 20px 0 40px;
    }

    footer .brand p {
        margin-right: 0;
    }

}

@media (max-width:900px) {
    footer .brand {
        width: 220px;
    }

    footer .brand .logo {
        width: 220px;
    }

    footer .brand .sns {
        width: 100%;
    }
}

@media (max-width:600px) {
    footer {
        padding: 32px 0;
    }

    footer .footer-wrap {
        flex-direction: column;
        gap: 22px;
        padding: 0;
    }

    footer .footer-col {
        width: 100%;
    }

    footer .footer-wrap .company {
        padding: 0;
        max-width: 420px;
        margin: 0 auto;
    }

    footer .policy ul {
        justify-content: flex-start;
        gap: 28px;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    footer .company address {
        font-size: 11px;
        line-height: 22px;
        font-weight: 300;
        text-align: left;
        /* 정보는 좌측이 더 깔끔 */
        margin: 0 auto;
        line-height: 1.6;
    }

    footer .footer-wrap .cs {
        border-top: 1px solid #ffffff55;
        border-bottom: 1px solid #ffffff55;
        border-right: none;
        border-left: none;
        text-align: center;
        padding: 16px 0;
        max-width: 420px;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    footer .footer-wrap .cs .cs-num {
        font-size: 14px;
        gap: 24px;
    }

    footer .cs .cs-menu {
        font-size: 14px;
        font-weight: 700;
        gap: 12px 80px;
        margin-bottom: 14px;
        text-align: left;
    }

    footer .cs p {
        margin-bottom: 12px;
        letter-spacing: 0.6px;
    }

    footer .cs .copyright {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    footer .brand {
        align-items: center;
        text-align: center;
    }

    footer .brand .logo {
        width: min(300px, 84vw);
        margin: 8px 0 12px;
    }

    footer .brand .sns {
        width: min(260px, 70vw);
        justify-content: space-between;
    }
}

@media (max-width:400px) {
    footer {
        padding: 26px 0;
    }

    footer .policy ul {
        gap: 14px;
    }

    footer .company li {
        font-size: 13px;
    }

    footer .company address {
        font-size: 10px;
    }

    footer .footer-wrap .cs .cs-num {
        font-size: 13px;
        gap: 14px;
    }

    footer .cs .cs-menu {
        gap: 10px 56px;
        font-size: 13px;
    }

    footer .brand .logo {
        width: min(260px, 86vw);
    }

    footer .brand .sns {
        width: min(220px, 72vw);
    }
}