/*main*/
.main {
    position: relative;
    width: 100%;
    height: clamp(560px, 85vh, 920px);
    min-height: 720px;
    overflow: hidden;
    margin-bottom: 100px;
    margin-top: 50px;
}

.main>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


.main .arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translate(-50%, 0);
}

.arrow img {
    width: 46px;
    /* 화살표 크기 */
    opacity: 0;
    animation: arrowDown 1.5s infinite;
}

/*메인 애니메이션*/
@keyframes arrowDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.arrow img:nth-child(1) {
    animation-delay: 0s;
}

.arrow img:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow img:nth-child(3) {
    animation-delay: 0.4s;
}

/*메인 반응형*/

@media (max-width:1000px) {
    .main {
        height: 500px;
        min-height: 100%;
        overflow: inherit;
        object-fit: cover;
    }

    .main .arrow {
        transform: scale(0.7) translate(-50%, 20%);
    }
}

@media (max-width:700px) {
    .main {
        height: 400px;
        min-height: 100%;
        margin-bottom: 50px;
    }

    .main .arrow {
        transform: scale(0.5) translate(-85%, 30%);
    }
}

@media (max-width:500px) {
    .main {
        height: 300px;
        min-height: 100%;
    }

    .main .arrow {
        transform: scale(0.4) translate(-110%, 60%);
    }
}

@media (max-width:400px) {
    .main {
        height: 240px;
        min-height: 100%;
    }

    .main .arrow {
        transform: scale(0.3) translate(-140%, 85%);
    }
}

@media (max-width:300px) {
    .main {
        height: 180px;
        min-height: 100%;
    }

    .main .arrow {
        transform: scale(0.3) translate(-140%, 85%);
    }
}

/*section1*/
.section1 {
    margin-bottom: 100px;
}

.section1 .container {
    display: flex;
    gap: 20px;
    border: none;
    justify-content: space-between;
    align-items: center;
}

.section1 .item {
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 auto;
}

.section1 .item:hover {
    transform: translateY(-20px);
}

.section1 .img-box {
    margin-bottom: 10px;
    width: 150px;
}

/*section1 문자*/
.section1 .item h5 {
    font-size: 16px;
    font-weight: 400;
}

/*section1 반응형*/

@media (max-width:1000px) {


    .section1 .container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .section1 .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
    }
}

@media (max-width:900px) {
    .section1 .container {
        justify-items: center;
    }

    .section1 .item {
        max-width: 140px;
    }
}

@media (max-width:600px) {

    main,
    .section1,
    .section2,
    .section3,
    .section4 {
        margin-bottom: 50px;
    }

    .section1 .item {
        width: 120px;
        padding: 0 25px;
    }

    .section1 .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:400px) {
    .section1 .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .section1 .item {
        width: 120px;
        padding: 0 25px;
    }

    .section1 .img-box {
        width: 120px;
    }
}

@media (max-width:380px) {
    .section1 .item {
        width: 100px;
        padding: 0 30px;
    }
}

/*section2*/
.section2 {
    margin-bottom: 100px;
}

.section2 .section-title {
    border: none;
}

.section2 .tap-menu {
    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section2 .container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    /*핵심*/
    cursor: grab;
    overflow-y: hidden;
    padding-bottom: 18px;
    /*스크롤바 공간*/
    scroll-snap-type: x mandatory;
    /*(선택) 스냅*/
    border: none;
    margin-bottom: var(--gap-50);
    /*스크롤 스냅 개선, 첫 카드 너무 안 붙게*/
    scroll-padding-left: 30px;
    /* 드래그 중 텍스트 선택 방지용도 */
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.section2 .container:active {
    cursor: grabbing;
}

.section2 .item {
    flex: 0 0 420px;
    /* 원하는 카드 폭으로 조절 */
    scroll-snap-align: start;
    /* (선택) */
}

/* 스크롤바 스타일 */
.section2 .container::-webkit-scrollbar {
    height: 4px;
}

.section2 .container::-webkit-scrollbar-track {
    background-color: #e9e9e9;
    border-radius: 999px;
}

.section2 .container::-webkit-scrollbar-thumb {
    background-color: #111111;
    border-radius: 999px;
}

/* 섹션2 그 외 */
.section2 .img-box {
    margin-bottom: 20px;
}

.section2 .text-box {
    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

/* section2: 50px 규칙 */
.section2 .chip {
    display: flex;
    gap: 10px;
    margin-bottom: var(--gap-50);
}

.section2 .chip .cir {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    /*기본색*/
    border: 1px solid #cfcfcf;
    cursor: pointer;
}

/* 컬러칩 item1: 3개 */
.section2 .chip1 .cir:nth-child(1) {
    background-color: #FF0080;
    border-color: #d81b60;
}

.section2 .chip1 .cir:nth-child(2) {
    background-color: #5E2F0D;
    border-color: #5d4037;
}

.section2 .chip1 .cir:nth-child(3) {
    background-color: #000000;
    border-color: #111111;
}

/* 컬러칩 item2: 6개 */
.section2 .chip2 .cir:nth-child(1) {
    background-color: #FEFDED;
}

.section2 .chip2 .cir:nth-child(2) {
    background-color: #EEEDEB;
}

.section2 .chip2 .cir:nth-child(3) {
    background-color: #373A40;
    border-color: #111111;
}

.section2 .chip2 .cir:nth-child(4) {
    background-color: #4C2204;
    border-color: #5d4037;
}

.section2 .chip2 .cir:nth-child(5) {
    background-color: #00195E;
    border-color: #0d47a1;
}

.section2 .chip2 .cir:nth-child(6) {
    background-color: #000000;
    border-color: #111111;
}

/* 컬러칩 item3: 3개 */
.section2 .chip3 .cir:nth-child(1) {
    background-color: #FEFFEF;
}

.section2 .chip3 .cir:nth-child(2) {
    background-color: #474747;
    border-color: #111111;
}

/* 컬러칩 item4: 3개 */
.section2 .chip4 .cir:nth-child(1) {
    background-color: #E1F5F7;
}

.section2 .chip4 .cir:nth-child(2) {
    background-color: #D8D9DA;
}

.section2 .chip4 .cir:nth-child(3) {
    background-color: #000000;
    border-color: #111111;
}

/* 컬러칩 item5: 4개 */
.section2 .chip5 .cir:nth-child(1) {
    background-color: #EAE1B4;
}

.section2 .chip5 .cir:nth-child(2) {
    background-color: #004080;
}

.section2 .chip5 .cir:nth-child(3) {
    background-color: #646E54;
}

.section2 .chip5 .cir:nth-child(4) {
    background-color: #000000;
    border-color: #111111;
}

/* 컬러칩 선택감 미세 연출 */
.section2 .chip .cir:hover {
    transform: scale(1.15);
    transition: 0.15s;
}

/* section2 버튼 */

.section2 .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 169px;
    height: 47px;
    border: 1px solid black;
    background-color: #ffffff;
    margin: 0 auto;
}

/*section2 문자*/
.section2 .section-title h3 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 38px;
    text-transform: uppercase;
}

.section2 .tap-menu a {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    flex: 0 0 auto;
    padding: 10px 18px;
    border-radius: 999px;
    /*타원*/
    transition: 0.2s;
}

.section2 .text-box span {
    font-size: 16px;
    font-weight: 600;
}

.section2 .text-box p {
    font-size: 16px;
    font-weight: 400;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section2 .text-box h4 {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    flex: 0 0 auto;
}

.section2 .btn a {
    font-size: 16px;
    font-weight: 400;
}

/* section2 버튼-하버 */
.section2 .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* 섹션2 하버 */
.section2 .tap-menu a:hover {
    background-color: #f2f2f2;
}

/* 제이쿼리 활성화 상태 */
.section2 .tap-menu a.active {
    background-color: #111111;
    color: #ffffff;
}

.section2 .tap-menu a.active:hover {
    background-color: #111111;
}

/*section2 반응형*/

@media (max-width:1000px) {

    .section2 .container {
        scroll-snap-type: none;
        scroll-padding-left: 0;
        cursor: default;
        user-select: auto;
        overflow: visible;
        padding-bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .section2 .item {
        flex: initial;
    }

    .section2 .tap-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        font-size: 12px;
        padding: 20px;
        box-sizing: border-box;
    }
}

/*태블릿 세로 사이즈 전용 패치*/
@media (max-width:900px) {
    .section2 .container {
        justify-items: center;  /* grid 아이템 가운데 정렬 */
        gap: 16px;
    }

    .section2 .item {
        width: 100%;
        max-width: 360px;   /* 800대에서 카드 폭 안정화 */
    }
}

@media (max-width:600px) {
    .section2 {
        margin-bottom: 50px;
    }

    .section2 .container {
        grid-template-columns: 1fr;
    }

    .section2 .tap-menu a {
        font-size: 16px;
        line-height: 18px;
    }

    .section2 .text-box span {
        font-size: 14px;
    }

    .section2 .text-box p {
        font-size: 14px;
    }

    .section2 .text-box h4 {
        font-size: 14px;
    }

    .section2 .chip {
        margin-bottom: 0
    }
}

@media (max-width:400px) {
    .section2 .tap-menu a {
        font-size: 14px;
        line-height: 16px;
    }

    .section2 .item {
        width: 100%;
        max-width: 320px;   /* 360대에서 카드 폭 안정화 */
    }
}

/* section3 */

.section3 {
    background-color: #FEEDDD;
    width: 100%;
    height: 200px;
    position: relative;
    margin-bottom: 100px;
}

.section3 .container {
    border: none;
}

.section3 .img-box {
    position: absolute;
    top: 0;
    left: 54%;
}

.section3 .img-box img {
    width: 100%;
    height: 100%;
}

.section3 .text-box {
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translate(0, -50%);
    text-align: center;
}

.section3 .btn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border: none;
    background-color: inherit;
    cursor: pointer;
}

.section3 .btn-left {
    left: 16%;
}

.section3 .btn-right {
    right: 16%;
}

/* section3 문자*/
.section3 .text-box h3 {
    font-size: 32px;
    font-weight: 500;
}

.section3 .text-box h5 {
    font-size: 20px;
    font-weight: 500;
}

/*section3 반응형*/

@media (max-width:1200px) {
    .section3 .img-box {
        width: 260px;
        top: 15%;
    }

    .section3 .text-box h3 {
        font-size: 22px;
    }

    .section3 .text-box h5 {
        font-size: 18px;
    }
}

@media (max-width:1000px) {
    .section3 {
        height: auto;
        padding: 18px 0;
    }

    .section3 .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        height: 140px;
    }

    /* 배치를 위해 반응형에선 엡솔루트 해제. */
    .section3 .img-box,
    .section3 .text-box,
    .section3 .btn {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }

    .section3 .img-box {
        order: 3;
        width: 140px;
        /* 위드스 값의 경우 상황 봐서 조절하기. */
        flex: 0 0 auto;
    }

    .section3 .text-box {
        order: 2;
        flex: 1;
        text-align: center;
    }

    .section3 .btn-left {
        order: 1;
    }

    .section3 .btn-right {
        order: 4;
    }

    .section3 .text-box h3 {
        font-size: 22px;
    }

    .section3 .text-box h5 {
        font-size: 14px;
    }
}

@media (max-width:600px) {
    .section3 {
        margin-bottom: 50px;
    }

    .section3 .container {
        height: 120px;
    }

    .section3 .img-box {
        width: 90px;
        flex: 0.3 0 auto;
    }

    .section3 .text-box h3 {
        font-size: 20px;
    }

    .section3 .text-box h5 {
        font-size: 13px;
    }
}

@media (max-width:400px) {
    .section3 .container {
        height: 60px;
    }

    .section3 .text-box h3 {
        font-size: 14px;
    }

    .section3 .text-box h5 {
        display: none;
    }

    .section3 .btn {
        transform: scale(0.4);
    }
}

/* section4 */

.section4 {
    margin-bottom: 100px;
}

.section4 .section-title {
    border: none;
}

/* section4 탭메뉴*/
.section4 .tap-menu {
    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section4 .tap-menu a {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px;
    /*타원*/
    transition: 0.2s;
}

/* 섹션4 탭메뉴 하버 */
.section4 .tap-menu a:hover {
    background-color: #f2f2f2;
}

.section4 .s4-scroll {
    overflow-x: auto;
    padding-bottom: 16px;
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    scroll-padding-left: 30px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.section4 .s4-scroll::-webkit-scrollbar {
    height: 4px;
}

.section4 .s4-scroll::-webkit-scrollbar-track {
    background: #e9e9e9;
    border-radius: 999px;
}

.section4 .s4-scroll::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 999px;
}

.section4 .s4-track {
    display: grid;
    grid-auto-flow: column;
    /* 열 단위로 쌓임 = 가로로 길어짐 */
    grid-template-rows: repeat(2, 1fr);
    /* 2행 */
    grid-auto-columns: var(--card-w);
    gap: var(--card-gap);
    /* 드래그 중 텍스트 선택 방지용도 */
    user-select: none;
}

/*페이지 단위로 넘어가게끔 하기*/

.section4 .s4-track:active {
    cursor: grabbing;
}

.section4 .s4-scroll {
    scroll-snap-type: x mandatory;
    margin-bottom: 50px;
}

.section4 .s4-item {
    scroll-snap-align: start;
}

/* 카드 */
.section4 .s4-item {
    width: 100%;
}

.section4 .img-box {
    margin-bottom: 20px;
}

/*섹션4 화이트칼라 전용 하버*/
.section4 .img-box .white-ver {
    display: none;
}

.section4 .img-box .white-ver.on {
    display: block;
}

.section4 .img-box .black-ver.off {
    display: none;
}


.section4 .text-box {
    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

/* section4 탭메뉴 하버 및 함수반응*/
.section4 .tap-menu a.active {
    background-color: #111111;
    color: #ffffff;
}

.section4 .tap-menu a.active:hover {
    background-color: #111111;
}

/* section4 컬러칩 */
.section4 .chip {
    display: flex;
    gap: 10px;
    margin-bottom: var(--gap-50);
}

.section4 .chip .cir {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    /*기본색*/
    border: 1px solid #cfcfcf;
    cursor: pointer;
}

/* section4 컬러칩 세부 */
/* section4 item-1 컬러칩 = 2개 */

.section4 .chip1 .cir:nth-child(1) {
    background-color: #000000;
}

.section4 .chip1 .cir:nth-child(2) {
    background-color: #ffffff;
}

/* section4 item-2 컬러칩 = 2개 */

.section4 .chip2 .cir:nth-child(1) {
    background-color: #000000;
}

.section4 .chip2 .cir:nth-child(2) {
    background-color: #ffffff;
}

/* section4 item-3 컬러칩 = 2개 */

.section4 .chip3 .cir:nth-child(1) {
    background-color: #000000;
}

.section4 .chip3 .cir:nth-child(2) {
    background-color: #ffffff;
}

/* section4 item-4 컬러칩 = 2개 */

.section4 .chip4 .cir:nth-child(1) {
    background-color: #000000;
}

.section4 .chip4 .cir:nth-child(2) {
    background-color: #ffffff;
}

/* section4 item-5 컬러칩 = 2개 */

.section4 .chip5 .cir:nth-child(1) {
    background-color: #000000;
}

.section4 .chip5 .cir:nth-child(2) {
    background-color: #ffffff;
}

/* 여기까지가 베이비페이스 */
/* 여기부턴  베이비페이스 */

/* section4 item-6 컬러칩 = 8개 */

.section4 .chip6 .cir:nth-child(1) {
    background-color: #5E2F0D;
}

.section4 .chip6 .cir:nth-child(2) {
    background-color: #373A40;
}

.section4 .chip6 .cir:nth-child(3) {
    background-color: #004080;
}

.section4 .chip6 .cir:nth-child(4) {
    background-color: #000000;
}

.section4 .chip6 .cir:nth-child(5) {
    background-color: #0080FF;
}

.section4 .chip6 .cir:nth-child(6) {
    background-color: #722F37;
}

.section4 .chip6 .cir:nth-child(7) {
    background-color: #FF8DA2;
}

.section4 .chip6 .cir:nth-child(8) {
    background-color: #EAE1B4;
}

/* section4 item-8 컬러칩 = 5개 */

.section4 .chip8 .cir:nth-child(1) {
    background-color: #5E2F0D;
}

.section4 .chip8 .cir:nth-child(2) {
    background-color: #556B2F;
}

.section4 .chip8 .cir:nth-child(3) {
    background-color: #004080;
}

.section4 .chip8 .cir:nth-child(4) {
    background-color: #4C2204;
}

.section4 .chip8 .cir:nth-child(5) {
    background-color: #A9A9A9;
}

/* section4 item-9 컬러칩 = 3개 */

.section4 .chip9 .cir:nth-child(1) {
    background-color: #EAE1B4;
}

.section4 .chip9 .cir:nth-child(2) {
    background-color: #556B2F;
}

.section4 .chip9 .cir:nth-child(3) {
    background-color: #004080;
}

/* section4 item-10 컬러칩 = 3개 */

.section4 .chip10 .cir:nth-child(1) {
    background-color: #5E2F0D;
}

.section4 .chip10 .cir:nth-child(2) {
    background-color: #373A40;
}

.section4 .chip10 .cir:nth-child(3) {
    background-color: #000000;
}

/* 컬러칩 선택감 미세 연출 */
.section4 .chip .cir:hover {
    transform: scale(1.15);
    transition: 0.15s;
}

/* section4 문자*/
.section4 .section-title h3 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 38px;
    text-transform: uppercase;
}

/* section4 버튼 */

.section4 .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 169px;
    height: 47px;
    border: 1px solid black;
    background-color: #ffffff;
    margin: 0 auto;
}

/* section4 버튼-하버 */
.section4 .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

@media (max-width: 1000px) {
    .section4 .s4-track {
        display: flex;
        gap: var(--card-gap);
    }

    .section4 .s4-item {
        flex: 0 0 var(--card-w);
        /* 태블릿 카드 폭 */
    }
}

@media (max-width: 600px) {
    .section4 {
        margin-bottom: 50px;
    }

    .section4 .s4-scroll {
        overflow: visible;
        /* 가로 스크롤 제거 */
        padding-bottom: 0;
    }

    .section4 .tap-menu {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 12px;
        padding: 20px;
        box-sizing: border-box;
    }

    .section4 .tap-menu a {
        font-size: 16px;
        line-height: 18px;
    }

    .section4 .s4-track {
        display: grid;
        /* 1열 */
        grid-template-columns: repeat(1, 1fr);
        grid-auto-flow: inherit;
        gap: 18px;
    }

    .section4 .s4-item {
        width: 100%;
    }

    .section4 .text-box {
        margin-bottom: 24px;
    }

    .section2 .chip,
    .section4 .chip {
        margin-bottom: 0
    }
}

@media (max-width:400px) {

    .section2 .tap-menu a,
    .section4 .tap-menu a {
        font-size: 14px;
        line-height: 16px;
    }
}

/*공통 섹션타이틀 반응형 작성자리*/

@media (max-width:600px) {

    .section2 .section-title h3,
    .section4 .section-title h3 {
        font-size: 24px;
    }
}

/* 섹션5 스타일 */

.section5 {
    margin-bottom: 100px;
}

.section5 .section-title {
    border: none;
}

.section5 .s5-scroll {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    scroll-padding-left: 30px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    /*스크롤바 공간*/
    scroll-snap-type: x mandatory;
    /* 드래그 중 텍스트 선택 방지용도 */
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.section5 .s5-track {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    /*핵심*/
    gap: var(--card-gap);
    /* 드래그 중 텍스트 선택 방지용도 */
    user-select: none;
}

.section5 .text-box {
    margin-top: 20px;
}

.section5 .s5-track .s5-item {
    flex: 0 0 420px;
    /* 원하는 카드 폭으로 조절 */
    scroll-snap-align: start;
    /* (선택) */
    margin-bottom: 50px;
}

.section5 .s5-track::-webkit-scrollbar {
    height: 4px;

}

.section5 .s5-track::-webkit-scrollbar-track {
    background: #e9e9e9;
    border-radius: 999px;
}

.section5 .s5-track::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 999px;
}

/* section5 버튼 */

.section5 .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 115px;
    height: 38px;
    border-radius: 19px;
    border: 1px solid black;
    background-color: #ffffff;
    margin-top: 20px;
}

.section5 .last-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 169px;
    height: 47px;
    border: 1px solid black;
    background-color: #ffffff;
    margin: 50px auto;
}

/* section5 버튼-하버 */
.section5 .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.section5 .last-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* section5 문자*/
.section5 .section-title h3 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 38px;
    text-transform: uppercase;
}

.section5 .text-box p {
    font-size: 16px;
    font-weight: 400;
}

.section5 .text-box span {
    font-weight: 700;
}

@media (max-width:600px) {
    .section5 {
        margin-bottom: 50px;
    }

    .section5 .last-btn {
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .section5 .s5-track {
        flex-direction: column;
    }
}

@media (max-width:400px) {
    .section5 .text-box p {
        font-size: 14px;
        line-height: 16px;
    }
}

/* section6 스타일*/
.section6 {
    margin-bottom: 100px;
}

.section6 .section-title {
    border: none;
}

.section6 .s6-track {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.section6 .s6-item .text-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 0px;
}

.section6 .text-box .text {
    display: flex;
    flex-direction: column;
}

/* section6 문자*/
.section6 .section-title h3 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 38px;
    text-transform: uppercase;
}

.section6 .text p {
    text-transform: uppercase;
}


/* section6 버튼*/
.section6 .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 163px;
    height: 43px;
    border-radius: 21.5px;
    border: 1px solid black;
    background-color: #ffffff;
    margin-top: 20px;
}

.section6 .last-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 169px;
    height: 47px;
    border: 1px solid black;
    background-color: #ffffff;
    margin: 50px auto;
}


/* section6 버튼-하버 */
.section6 .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.section6 .last-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* section6 반응형*/

@media (max-width:1000px) {
    .section6 .btn {
        width: 120px;
    }
}

@media (max-width:600px) {
    .section6 .s6-track {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width:400px) {
    .section6 .text h4 {
        font-size: 14px;
    }

    .section6 .text p {
        font-size: 14px;
    }
}

/* section7 스타일*/
.section7 {
    background-color: #1A1A1A;
}

.section7 .s7-track {
    position: relative;
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    height: 100%;
    padding: 75px 0;
    box-sizing: border-box;
}

.section7 .s7-track .left {
    width: 45px;
    height: 45px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(45deg)  translate(0 , -60%);
    position: absolute;
    top: 50%;
    left: -3%;
}

.section7 .s7-track .right {
    width: 45px;
    height: 45px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transform: rotate(-45deg) translate(0 , -60%);
    position: absolute;
    top: 50%;
    right: -3%;

}

.section7 .s7-track img {
    width: 45px;
}

.section7 .s7-track .arrow1 {
    transform: rotate(-90deg);
}

.section7 .s7-track .arrow2 {
    transform: rotate(90deg);
}


.section7 .last-btn {
    text-align: center;
    width: 169px;
    height: 47px;
    border: 1px solid white;
    background-color: #1A1A1A;
    color: #ffffff;
}

/* section7 하버 */

.section7 .last-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* section7 반응형*/

@media (max-width:800px) {
    .section7 .s7-track {
        gap: 50px;
    }

    .section7 .s7-track .left,
    .section7 .s7-track .right {
        width: 35px;
        height: 35px;
    }
}

@media (max-width:600px) {
    .section7 .s7-track {
        flex-direction: column;
        gap: 50px;
        padding: 40px 0;
    }

    .section7 .s7-track .left {
        position: static;
        transform: rotate(135deg) translate(0 , 0);
    }

    .section7 .s7-track .right {
        position: static;
        transform: rotate(45deg) translate(0 , 0);
    }
}