#main_content {
    width: 100%;
}


/* section1 */
.section1 {
    width: 100%;
    height: 100vh;
    background-color: #83ccd1;
    padding-top: 90px;
    box-sizing: border-box;
}

.section1 .center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec1_left {
    width: max-content;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 60px 0;
}

.sec1_txt1 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px 0;
}

.sec1_txt1 p {
    overflow: hidden;
}

.sec1_txt1 p span {
    font-size: 65px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: con_show 1s ease forwards;
}

@keyframes con_show {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sec1_txt1 p span strong {
    font-weight: normal;
    font-family: 'Pretendard-ExtraBold', sans-serif;
}

.sec1_img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sec1_img img {
    opacity: 0;
    transform: translateY(50px);
    animation: con_show .7s .5s ease forwards;
}

.sec1_right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-top 1.5s both;
}

@keyframes bounce-top {
    0% {
        transform: translateY(-200px);
        animation-timing-function: ease-in;
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    40% {
        transform: translateY(-80px);
        animation-timing-function: ease-in;
    }

    65% {
        transform: translateY(-50px);
        animation-timing-function: ease-in;
    }

    82% {
        transform: translateY(-20px);
        animation-timing-function: ease-in;
    }

    93% {
        transform: translateY(-15px);
        animation-timing-function: ease-in;
    }

    25%,
    55%,
    75%,
    87% {
        transform: translateY(0px);
        animation-timing-function: ease-out;
    }

    100% {
        transform: translateY(0px);
        animation-timing-function: ease-out;
        opacity: 1;
    }
}


/* section2 */
.section2 {
    width: 100%;
    position: relative;
}

.section2_inner {
    width: 100%;
    height: 875px;
}

.section2_slide {
    width: 100%;
    height: 875px;
    padding: 150px 0;
    box-sizing: border-box;
}

.section2_slide .center {
    box-sizing: border-box;
}

.section2_slide1 {
    background-image: url(../images/section2_slide1_img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section2_slide1 .center {
    padding: 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px 0;
}

.sec2_slide1_txt {
    width: max-content;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 35px 0;
}

.sec2_s1_img {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
}

.sec2_slide1_txt p {
    font-size: 50px;
    line-height: 70px;
    color: #84cdd2;
    font-family: 'Pretendard-Light', sans-serif;
    opacity: 0;
    transform: translateY(50px);
}

.section2_slide1.slick-active .sec2_s1_img {
    animation: con_show .8s ease forwards;
}

.section2_slide1.slick-active .sec2_slide1_txt p {
    animation: con_show .8s .3s ease forwards;
}

.sec2_slide1_txt p span {
    font-family: 'Pretendard-Bold', sans-serif;
}

.sec2_slide1_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section2_slide2 .center {
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec2_slide2_txt {
    width: max-content;
}

.sec2_title_txt {
    font-size: 50px;
    color: #222;
    font-family: 'Pretendard-Bold', sans-serif;
    opacity: 0;
    transform: translateY(50px);
}

.section2_slide2.slick-active .sec2_title_txt {
    animation: con_show .8s ease forwards;
}

.sec2_title_txt span {
    color: #84cdd2;
}

.sec2_slide2_txt > p {
    margin-top: 35px;
    font-size: 20px;
    line-height: 30px;
    color: #838383;
    font-family: 'Pretendard-Regular', sans-serif;
    opacity: 0;
    transform: translateY(50px);
}

.section2_slide2.slick-active .sec2_slide2_txt > p {
    animation: con_show .8s .3s ease forwards;
}

.sec2_slide2_txt > p span {
    display: block;
    color: #004449;
    font-family: 'Pretendard-Bold', sans-serif;
}

.sec2_slide2_img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px 0;
    opacity: 0;
}

.section2_slide2.slick-active .sec2_slide2_img {
    animation: con_show 1s .8s ease forwards;
}

.sec2_slide2_img p {
    font-size: 17px;
    color: #838383;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.sec2_slide2_img p span {
    font-size: 19px;
    font-family: 'Pretendard-Bold', sans-serif;
}

.section2_slide3 .center {
    padding: 0 150px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section2_slide3.slick-active .sec2_title_txt {
    animation: con_show .8s ease forwards;
}

.section2_slide3.slick-active .sec2_slide2_txt > p {
    animation: con_show .8s .3s ease forwards;
}

.sec2_slide3_img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    opacity: 0;
}

.section2_slide3.slick-active .sec2_slide3_img {
    animation: con_show 1s .8s ease forwards;
}

.section2_slide4 .center {
    padding: 0 60px;
}

.section2_slide4 .sec2_title_txt {
    padding-left: 40px;
    box-sizing: border-box;
}

.section2_slide4.slick-active .sec2_title_txt {
    animation: con_show .8s ease forwards;
}

.section2_slide4 ul {
    width: 100%;
    margin-top: 90px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
}

.section2_slide4.slick-active ul {
    animation: con_show .8s .3s ease forwards;
}

.section2_slide4 ul li {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px 0;
}

.section2_slide4 ul li > span {
    width: 150px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.section2_slide4 ul li:first-child > span {
    background-color: #74c8c8;
}

.section2_slide4 ul li:nth-child(2) > span {
    background-color: #69b8b7;
}

.section2_slide4 ul li:nth-child(3) > span {
    background-color: #5aadad;
}

.section2_slide4 ul li:nth-child(4) > span {
    background-color: #4b979b;
}

.section2_slide4 ul li:last-child > span {
    background-color: #36888a;
}

.section2_slide4 ul li p {
    font-size: 20px;
    line-height: 30px;
    color: #838383;
    text-align: center;
    font-family: 'Pretendard-Regular', sans-serif;
}

.section2_slide4 ul li p span {
    display: block;
    margin-bottom: 25px;
    color: #004449;
    font-family: 'Pretendard-Bold', sans-serif;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 99;
}

.prev {
    margin-left: -630px;
}

.next {
    margin-left: 630px;
}

.prev i,
.next i {
    font-size: 90px;
    color: #d7d7d7;
}


/* section3 */
.section3 {
    width: 100%;
    padding: 200px 0;
    background-color: #f0f0f0;
}

.section_title {
    font-size: 50px;
    color: #222;
    font-family: 'Pretendard-Bold', sans-serif;
    position: relative;
}

.section_title:after,
.section_title:before {
    content: " ";
    width: 20px;
    height: 20px;
    border-radius: 30px;
    background-color: #83ccd1;
    position: absolute;
    top: -35px;
}

.section_title:after {
    left: 10px;
}

.section_title:before {
    left: 95px;
}

ul.sec_ul {
    width: 100%;
    margin-top: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.sec_ul li {
    width: 275px;
    height: 275px;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    gap: 25px 0;
}

ul.sec_ul li:first-child {
    background-color: #afdde0;
    gap: 40px 0;
}

ul.sec_ul li:nth-child(2) {
    background-color: #9ad5d9;
}

ul.sec_ul li:nth-child(3) {
    background-color: #84cdd2;
}

ul.sec_ul li:nth-child(4) {
    background-color: #77b9be;
}

ul.sec_ul li:not(:last-child):after {
    content: url(../images/dot_icon.png);
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

ul.sec_ul li p {
    font-size: 26px;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
    text-transform: uppercase;
}


/* section4 */
.section4 {
    width: 100%;
}

.section4 .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 180px 0;
    border-bottom: 1px solid #e1e1e1;
}

.sec4_left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sec4_left img.motion_img {
    position: absolute;
    top: 0;
    left: 0;
}

.sec4_right {
    width: 48%;
}

.sec4_right .section_title:before {
    left: 140px;
}

ul.sec_ul2 {
    width: 100%;
    margin-top: 40px;
}

ul.sec_ul2 li {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

ul.sec_ul2 li:last-child {
    margin-bottom: 0;
}

ul.sec_ul2 li > span {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

ul.sec_ul2 li p {
    width: calc(100% - 55px);
    font-size: 24px;
    line-height: 32px;
    color: #004449;
    font-family: 'Pretendard-SemiBold', sans-serif;
    text-transform: uppercase;
}

ul.sec_ul2 li:first-child > span {
    background-color: #83ccd1;
}

ul.sec_ul2 li:nth-child(2) > span {
    background-color: #6faeb3;
}

ul.sec_ul2 li:nth-child(3) > span {
    background-color: #65a1a5;
}

ul.sec_ul2 li:nth-child(4) > span {
    background-color: #427074;
}

ul.sec_ul2 li:nth-child(5) > span {
    background-color: #355d60;
}


/* section5 */
.section5 .section_title {
    width: max-content;
}

.section5 .section_title:after {
    left: auto;
    right: 10px;
}

.section5 .section_title:before {
    left: auto;
    right: 145px;
}


/* section6 */
.section6 {
    width: 100%;
    padding: 90px 0;
    background-color: #f0f0f0;
}

.section6 .center {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sec6_left {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px 0;
}

.sec6_left p {
    font-size: 50px;
    line-height: 70px;
    color: #222;
    font-family: 'Pretendard-Bold', sans-serif;
}

.sec6_right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sec6_right img.fade_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}


/* section7 */
.section7 {
    width: 100%;
    padding: 180px 0;
}

.section7 .section_title:after,
.section7 .section_title:before {
    content: none;
}

.section7 ul {
    width: 100%;
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
}

.section7 ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec7_inner {
    width: 215px;
    height: 215px;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px 0;
    position: relative;
}

.sec7_inner p {
    font-size: 25px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.section7 ul li > p {
    width: 100px;
    height: 33px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    font-size: 17px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
    position: relative;
}

.section7 ul li > p:after {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.section7 ul li:first-child .sec7_inner,
.section7 ul li:first-child > p {
    background-color: #74c8c8;
}

.section7 ul li:nth-child(2) .sec7_inner,
.section7 ul li:nth-child(2) > p {
    background-color: #69b8b7;
}

.section7 ul li:nth-child(3) .sec7_inner,
.section7 ul li:nth-child(3) > p {
    background-color: #5aadad;
}

.section7 ul li:nth-child(4) .sec7_inner,
.section7 ul li:nth-child(4) > p {
    background-color: #4b979b;
}

.section7 ul li:last-child .sec7_inner,
.section7 ul li:last-child > p {
    background-color: #36888a;
}

.section7 ul li:first-child .sec7_inner:after,
.section7 ul li:nth-child(2) .sec7_inner:after,
.section7 ul li:nth-child(3) .sec7_inner:after,
.section7 ul li:nth-child(4) .sec7_inner:after {
    content: url(../images/section7_icon6.png);
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.section7 ul li:first-child > p:after {
    content: url(../images/section7_icon7.png);
}

.section7 ul li:nth-child(2) > p:after {
    content: url(../images/section7_icon8.png);
}

.section7 ul li:nth-child(3) > p:after {
    content: url(../images/section7_icon9.png);
}

.section7 ul li:nth-child(4) > p:after {
    content: url(../images/section7_icon10.png);
}

.section7 ul li:last-child > p:after {
    content: url(../images/section7_icon11.png);
}


/* section8 */
.section8 {
    width: 100%;
    background-color: #f0f0f0;
    padding: 120px 0 140px;
}

.section8 .section_title:after,
.section8 .section_title:before {
    content: none;
}

.section8_slide {
    width: 100%;
    margin-top: 50px;
    padding: 0 80px;
    box-sizing: border-box;
    position: relative;
}

.section8_slide_inner {
    width: 100%;
}

.sec8_box {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px 0;
    margin: 0 25px;
}

.sec8_img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sec8_img img {
    width: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.sec8_info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
}

.sec8_info > span {
    font-size: 17px;
    color: #838383;
    font-family: 'Pretendard-Light', sans-serif;
}

.sec8_info p {
    font-size: 17px;
    color: #838383;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.sec8_info p span {
    font-size: 20px;
}

.section8_slide .prev,
.section8_slide .next {
    margin-top: -30px;
}


/* section9 */
.section9 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.section9 > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section9 .center {
    padding: 270px 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section9 ul {
    width: 100%;
    display: flex;
}

.section9 ul li {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 35px 0;
    cursor: pointer;
}

.section9 ul li > p {
    font-size: 25px;
    color: #fff;
    font-family: 'Pretendard-Medium', sans-serif;
}

.sec9_inner {
    width: 200px;
    height: 200px;
    border-radius: 300px;
    background-color: #84cdd2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px 0;
}

.sec9_inner p {
    text-align: center;
    font-size: 22px;
    line-height: 35px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.sec9_inner p span {
    display: block;
    font-size: 35px;
    font-family: 'Pretendard-Bold', sans-serif;
}


/* company section */
.more_section {
    width: 100%;
    padding: 150px 0;
}

.company_section {
    display: none;
}

.cp_title {
    font-size: 50px;
    line-height: 75px;
    color: #222;
    font-family: 'Pretendard-Bold', sans-serif;
}

.more_section ul {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
}

.more_section ul li {
    width: 48%;
}

.more_section ul li p {
    font-size: 18px;
    color: #222;
    font-family: 'Pretendard-Medium', sans-serif;
}

.more_section ul li input {
    width: 100%;
    height: 45px;
    border: 1px solid #a1a1a1;
    font-size: 18px;
    color: #222;
    font-family: 'Pretendard-Regular', sans-serif;
    margin-top: 15px;
}

.more_section ul li input::placeholder {
    font-size: 18px;
    color: #bbb;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.cp_check_btn {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.checks1,
.checks2 {
    position: relative;
}

.checks1 input[type="checkbox"],
.checks2 input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.checks1 input[type="checkbox"] + label,
.checks2 input[type="checkbox"] + label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 18px;
    color: #111;
    font-family: 'Pretendard-Medium', sans-serif;
}

.checks1 input[type="checkbox"] + label:before,
.checks2 input[type="checkbox"] + label:before {
    content: ' ';
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border: 1px solid #d7d7d7;
    box-sizing: border-box;
    margin-right: 10px;
}

.checks1 input[type="checkbox"]:checked + label:before,
.checks2 input[type="checkbox"]:checked + label:before {
    content: "\f00c";
    font-family: "fontawesome";
    font-size: 10px;
    color: #fff;
    width: 14px;
    height: 14px;
    line-height: 14px;
    background-color: #7ac8ce;
    border: 0;
}

button.detail_btn {
    width: 80px;
    height: 26px;
    background-color: #7ac8ce;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    margin-left: 20px;
}

.cp_btn {
    display: flex;
    gap: 0 20px;
}

.cp_btn input {
    width: 200px;
    height: 50px;
    border: 0;
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

input.btn_black {
    background-color: #222;
}

input.btn_mint {
    background-color: #7ac8ce;
}


/* 개인정보처리방침 popup */
.popup {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.popbox {
    width: 1300px;
    padding: 80px 66px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.pop_close {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 45px;
    right: 50px;
}

.pop_close i {
    font-size: 40px;
    color: #222;
}

.pop_inner {
    width: 100%;
    height: 60vh;
    overflow: auto;
    padding: 0 40px;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 30px;
    color: #222;
    font-family: 'Pretendard-Light', sans-serif;
    word-break: keep-all;
}

.pop_inner strong {
    font-weight: normal;
    font-size: 20px;
    font-family: 'Pretendard-Bold', sans-serif;
    display: block;
}

.pop_inner::-webkit-scrollbar {
    width: 8px;
}

.pop_inner::-webkit-scrollbar-thumb {
    background-color: #e1e1e1;
    border-radius: 30px;
}


/* seller section2 */
.seller_section2 {
    width: 100%;
    display: none;
}

.seller_con1 {
    width: 100%;
    padding: 150px 0 200px;
    background-image: url(../images/seller_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.seller_con1 .center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 70px 0;
    padding: 0 190px;
    box-sizing: border-box;
}

.s_con1_txt {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 35px 0;
}

.s_con1_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s_con1_txt p {
    font-size: 50px;
    line-height: 70px;
    color: #84cdd2;
    font-family: 'Pretendard-Light', sans-serif;
}

.s_con1_txt p span {
    font-family: 'Pretendard-Bold', sans-serif;
}

.s_con1_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller_con2 ul.sec_ul {
    margin-top: 100px;
}

.seller_con2 ul.sec_ul li {
    width: 225px;
    height: 225px;
    gap: 20px 0;
}

.seller_con2 ul.sec_ul li:nth-child(5) {
    background-color: #67a2a7;
}

.seller_con2 ul.sec_ul li p {
    font-size: 23px;
    line-height: 30px;
}

.seller_con2 ul.sec_ul li:nth-child(2),
.seller_con2 ul.sec_ul li:nth-child(3),
.seller_con2 ul.sec_ul li:nth-child(4) {
    gap: 10px 0;
}

.seller_con2 ul.sec_ul li:not(:last-child):after {
    content: url(../images/seller_dot.png);
    right: -35px;
}

.seller_con3 {
    width: 100%;
}

.seller_con3 .center {
    padding-top: 140px;
}

.seller_con3 .section_title {
    text-transform: uppercase;
}

.seller_con3 .section_title:before {
    left: 160px;
}

.seller_con3 ul.sec_ul2 li {
    margin-bottom: 15px;
}

.seller_con3 ul.sec_ul2 li:last-child > span {
    background-color: #83ccd1;
}

.seller_con3 ul.sec_ul2 li:nth-child(8) > span {
    background-color: #6faeb3;
}

.seller_con3 ul.sec_ul2 li:nth-child(7) > span {
    background-color: #65a1a5;
}

.seller_con3 ul.sec_ul2 li:nth-child(6) > span {
    background-color: #355d60;
}

.seller_con3 ul.sec_ul2 li p span {
    display: block;
    font-size: 20px;
    color: #838383;
    font-family: 'Pretendard-Light', sans-serif;
}

.seller_con4 {
    width: 100%;
    display: none;
}

.seller_con4 .center {
    border-top: 1px solid #e1e1e1;
    padding: 160px 0;
}

.seller_con4 ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 23px 1.73%;
}

.seller_con4 ul li {
    width: 23.7%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.seller_con4 ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s;
}

.seller_con4 ul li:hover img {
    transform: scale(1.2);
}

.seller_con4 ul li p {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
    text-transform: uppercase;
    gap: 12px 0;
}

.seller_con4 ul li p span {
    font-size: 14px;
    font-family: 'Pretendard-Light', sans-serif;
}





































/* mobile */
@media screen and (max-width: 767px) {

    br.m_none {
        display: none;
    }

    /* section1 */
    .section1 {
        padding-top: 60px;
    }

    .section1 .center {
        justify-content: center;
        flex-direction: column;
        gap: 60px 0;
    }

    .sec1_left {
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 30px 0;
    }

    .sec1_txt1 {
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 5px 0;
    }

    .sec1_txt1 p span {
        font-size: 9vw;
    }

    .sec1_img {
        width: 60%;
    }

    .sec1_img img {
        width: 100%;
    }

    .sec1_right {
        width: 80%;
    }

    .sec1_right img {
        width: 100%;
    }


    /* section2 */
    .section2_inner {
        height: 90vh;
    }

    .section2_slide {
        height: 90vh;
        padding: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .section2_slide1 .center {
        padding: 0;
        gap: 50px 0;
    }

    .sec2_slide1_txt {
        width: 100%;
        gap: 20px 0;
    }

    .sec2_s1_img {
        width: 70%;
    }

    .sec2_s1_img img {
        width: 100%;
    }

    .sec2_slide1_txt p {
        font-size: 22px;
        line-height: 34px;
        word-break: keep-all;
    }

    .sec2_slide1_icon {
        width: 100%;
    }

    .sec2_slide1_icon img {
        width: 50%;
    }

    .section2_slide2 .center {
        padding: 0;
    }

    .sec2_slide2_txt {
        width: 100%;
    }

    .sec2_title_txt {
        font-size: 22px;
    }

    .sec2_slide2_txt > p {
        margin-top: 20px;
        font-size: 13px;
        line-height: 20px;
        word-break: keep-all;
    }

    .sec2_slide2_img {
        display: none;
    }

    .section2_slide3 .center {
        padding: 0;
        flex-direction: column;
        justify-content: center;
    }

    .sec2_slide3_img {
        width: 100%;
        margin-top: 30px;
    }

    .sec2_slide3_img img {
        width: 100%;
    }

    .section2_slide4 .center {
        padding: 0;
    }

    .section2_slide4 .sec2_title_txt {
        padding-left: 0;
    }

    .section2_slide4 ul {
        margin-top: 30px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px 0;
    }

    .section2_slide4 ul li {
        width: 50%;
        gap: 15px 0;
    }

    .section2_slide4 ul li > span {
        width: 90px;
        height: 30px;
        font-size: 14px;
    }

    .section2_slide4 ul li p {
        font-size: 12px;
        line-height: 18px;
    }

    .section2_slide4 ul li p span {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .prev,
    .next {
        display: none !important;
    }


    /* section3 */
    .section3 {
        padding: 70px 0;
    }

    .section_title {
        font-size: 22px;
        word-break: keep-all;
    }

    .section_title:after,
    .section_title:before {
        animation: forwards;
        width: 8px;
        height: 8px;
        top: -20px;
    }

    .section_title:after {
        left: 5px;
    }

    .section_title:before {
        left: 45px;
    }

    ul.sec_ul {
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    ul.sec_ul li {
        width: 150px;
        height: 150px;
        gap: 10px 0;
    }

    ul.sec_ul li:nth-child(1) {
        gap: 20px 0;
    }

    ul.sec_ul li:not(:last-child):after {
        content: none;
    }

    ul.sec_ul li img {
        width: 50px;
    }

    ul.sec_ul li p {
        font-size: 16px;
        line-height: 25px;
    }


    /* section4 */
    .section4 .center {
        justify-content: center;
        flex-direction: column;
        padding: 80px 0 60px;
        gap: 70px 0;
    }

    .sec4_left {
        width: 100%;
    }

    .sec4_left img {
        width: 100%;
    }

    .sec4_right {
        width: 100%;
    }

    .sec4_right .section_title:before {
        left: 65px;
    }

    ul.sec_ul2 {
        margin-top: 30px;
    }

    ul.sec_ul2 li {
        margin-bottom: 15px;
    }

    ul.sec_ul2 li > span {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

    ul.sec_ul2 li p {
        width: calc(100% - 35px);
        font-size: 15px;
        line-height: 22px;
        word-break: keep-all;
    }


    /* section5 */
    .section5 .section_title {
        width: max-content;
    }

    .section5 .sec4_left img {
        width: 80%;
    }

    .section5 .section_title:after {
        right: 5px;
    }

    .section5 .section_title:before {
        left: auto;
        right: 63px;
    }


    /* section6 */
    .section6 {
        padding: 60px 0;
    }

    .section6 .center {
        justify-content: center;
        flex-direction: column;
        gap: 30px 0;
    }

    .sec6_left {
        width: 100%;
        gap: 10px 0;
    }

    .sec6_left img {
        width: 50px;
    }

    .sec6_left p {
        font-size: 22px;
        line-height: normal;
    }

    .sec6_left p br {
        display: none;
    }

    .sec6_right {
        width: 100%;
    }

    .sec6_right img {
        width: 100%;
    }


    /* section7 */
    .section7 {
        padding: 80px 0;
    }

    .section7 ul {
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sec7_inner {
        width: 150px;
        height: 150px;
        gap: 10px 0;
    }

    .sec7_inner img {
        width: 55px;
    }

    .sec7_inner p {
        font-size: 16px;
    }

    .section7 ul li > p {
        width: 80px;
        height: 25px;
        margin-top: 40px;
        font-size: 12px;
    }

    .section7 ul li:first-child .sec7_inner:after,
    .section7 ul li:nth-child(2) .sec7_inner:after,
    .section7 ul li:nth-child(3) .sec7_inner:after,
    .section7 ul li:nth-child(4) .sec7_inner:after {
        content: none;
    }


    /* section8 */
    .section8 {
        padding: 70px 0 100px;
    }

    .section8_slide {
        margin-top: 40px;
        padding: 0;
    }

    .sec8_box {
        gap: 10px 0;
        margin: 0 3px;
    }

    .sec8_img {
        padding: 5px;
    }

    .sec8_info {
        gap: 5px 0;
    }

    .sec8_info > span {
        font-size: 12px;
    }

    .sec8_info p {
        font-size: 12px;
    }

    .sec8_info p span {
        font-size: 16px;
    }


    /* section9 */
    .section9 {
        height: 280px;
    }

    .section9 .center {
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section9 ul li {
        gap: 15px 0;
        cursor: inherit;
    }

    .section9 ul li > p {
        font-size: 16px;
    }

    .sec9_inner {
        width: 120px;
        height: 120px;
        gap: 10px 0;
    }

    .sec9_inner p {
        font-size: 14px;
        line-height: 22px;
        font-family: 'Pretendard-Regular', sans-serif;
    }

    .sec9_inner p span {
        font-size: 20px;
    }

    .sec9_inner img {
        width: 20px;
    }


    /* company section */
    .more_section {
        padding: 70px 0;
    }

    .cp_title {
        font-size: 22px;
        line-height: 32px;
        word-break: keep-all;
    }

    .cp_title img {
        width: 150px;
    }

    .more_section ul {
        margin-top: 40px;
        gap: 20px 0;
    }

    .more_section ul li {
        width: 100%;
    }

    .more_section ul li p {
        font-size: 14px;
    }

    .more_section ul li input {
        height: 35px;
        font-size: 14px;
        margin-top: 5px;
    }

    .more_section ul li input::placeholder {
        font-size: 14px;
    }

    .checks1,
    .checks2 {
        width: 100%;
    }

    .cp_check_btn {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 40px 0;
    }

    .checks1 input[type="checkbox"] + label,
    .checks2 input[type="checkbox"] + label {
        cursor: inherit;
        font-size: 14px;
    }

    button.detail_btn {
        width: 70px;
        height: 24px;
        font-size: 10px;
        margin-left: 10px;
    }

    .cp_btn {
        gap: 0 10px;
    }

    .cp_btn input {
        width: 150px;
        height: 40px;
        font-size: 14px;
    }


    /* 개인정보처리방침 popup */
    .popbox {
        width: 90%;
        padding: 40px 30px;
    }

    .pop_close {
        cursor: inherit;
        top: 20px;
        right: 20px;
    }

    .pop_close i {
        font-size: 26px;
    }

    .pop_inner {
        padding: 0;
        font-size: 13px;
        line-height: 22px;
    }

    .pop_inner strong {
        font-size: 15px;
    }

    .pop_inner::-webkit-scrollbar {
        width: 5px;
    }


    /* seller section2 */
    .seller_con1 {
        padding: 80px 0;
    }

    .seller_con1 .center {
        gap: 50px 0;
        padding: 0;
    }

    .s_con1_txt {
        gap: 20px 0;
    }

    .s_con1_logo {
        width: 70%;
    }

    .s_con1_logo img {
        width: 100%;
    }

    .s_con1_txt p {
        font-size: 22px;
        line-height: 34px;
        word-break: keep-all;
    }

    .s_con1_img img {
        width: 50%;
    }

    .seller_con2 ul.sec_ul {
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .seller_con2 ul.sec_ul li {
        width: 150px;
        height: 150px;
        gap: 10px 0;
    }

    .seller_con2 ul.sec_ul li p {
        font-size: 16px;
        line-height: 25px;
    }

    .seller_con2 ul.sec_ul li:nth-child(2),
    .seller_con2 ul.sec_ul li:nth-child(3),
    .seller_con2 ul.sec_ul li:nth-child(4) {
        gap: 5px 0;
    }

    .seller_con2 ul.sec_ul li:not(:last-child):after {
        content: none;
    }

    .seller_con3 .center {
        padding-top: 80px;
    }

    .seller_con3 .section_title:before {
        left: 70px;
    }

    .seller_con3 ul.sec_ul2 li {
        margin-bottom: 10px;
    }

    .seller_con3 ul.sec_ul2 li p span {
        font-size: 13px;
        line-height: 20px;
    }

    .seller_con4 .center {
        padding: 70px 0 100px;
    }

    .seller_con4 ul {
        gap: 10px 3%;
    }

    .seller_con4 ul li {
        width: 48.5%;
        height: 120px;
        cursor: inherit;
    }

    .seller_con4 ul li img {
        transition: none;
    }

    .seller_con4 ul li:hover img {
        transform: scale(1);
    }

    .seller_con4 ul li p {
        width: 100%;
        word-break: keep-all;
        text-align: center;
        font-size: 14px;
        gap: 8px 0;
    }

    .seller_con4 ul li p span {
        font-size: 12px;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    br.m_none {
        display: none;
    }

    /* section1 */
    .section1 {
        height: 65vh;
        padding-top: 60px;
    }

    .sec1_left {
        gap: 45px 0;
    }

    .sec1_txt1 p span {
        font-size: 40px;
    }

    .sec1_img {
        width: 35vw;
    }

    .sec1_img img {
        width: 100%;
    }

    .sec1_right {
        width: 52%;
    }

    .sec1_right img {
        width: 100%;
    }


    /* section2 */
    .section2_inner {
        height: 700px;
    }

    .section2_slide {
        height: 700px;
        padding: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .section2_slide1 .center {
        padding: 0;
        gap: 50px 0;
    }

    .sec2_slide1_txt {
        width: 100%;
        gap: 25px 0;
    }

    .sec2_s1_img {
        width: 48%;
    }

    .sec2_s1_img img {
        width: 100%;
    }

    .sec2_slide1_txt p {
        font-size: 35px;
        line-height: 52px;
    }

    .sec2_slide1_icon {
        width: 100%;
    }

    .sec2_slide1_icon img {
        width: 35%;
    }

    .section2_slide2 .center {
        padding: 0;
    }

    .sec2_slide2_txt {
        width: 55%;
    }

    .sec2_title_txt {
        font-size: 30px;
    }

    .sec2_slide2_txt > p {
        margin-top: 25px;
        font-size: 16px;
        line-height: 25px;
        word-break: keep-all;
    }

    .sec2_slide2_img {
        width: 40%;
        gap: 20px 0;
    }

    .sec2_slide2_img img {
        width: 100%;
    }

    .sec2_slide2_img p {
        font-size: 14px;
    }

    .sec2_slide2_img p span {
        font-size: 17px;
    }

    .section2_slide3 .center {
        padding: 0;
    }

    .section2_slide3 .sec2_slide2_txt {
        width: 50%;
    }

    .sec2_slide3_img {
        width: 50%;
        margin-top: 70px;
    }

    .sec2_slide3_img img {
        width: 100%;
    }

    .section2_slide4 .center {
        padding: 0;
    }

    .section2_slide4 .sec2_title_txt {
        padding-left: 0;
    }

    .section2_slide4 ul {
        margin-top: 50px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px 0;
    }

    .section2_slide4 ul li {
        width: 33.33%;
        gap: 25px 0;
    }

    .section2_slide4 ul li > span {
        width: 100px;
        height: 35px;
        font-size: 16px;
    }

    .section2_slide4 ul li p {
        font-size: 16px;
        line-height: 25px;
    }

    .section2_slide4 ul li p span {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .prev,
    .next {
        display: none !important;
    }


    /* section3 */
    .section3 {
        padding: 100px 0;
    }

    .section_title {
        font-size: 30px;
    }

    .section_title:after,
    .section_title:before {
        width: 12px;
        height: 12px;
        top: -25px;
    }

    .section_title:after {
        left: 8px;
    }

    .section_title:before {
        left: 58px;
    }

    ul.sec_ul {
        margin-top: 50px;
    }

    ul.sec_ul li {
        width: 150px;
        height: 150px;
        gap: 10px 0;
    }

    ul.sec_ul li:nth-child(1) {
        gap: 20px 0;
    }

    ul.sec_ul li:not(:last-child):after {
        content: " ";
        background-image: url(../images/dot_icon.png);
        width: 23px;
        height: 3px;
        background-size: cover;
        right: -27px;
    }

    ul.sec_ul li img {
        width: 60px;
    }

    ul.sec_ul li p {
        font-size: 18px;
        line-height: 28px;
    }


    /* section4 */
    .section4 .center {
        padding: 100px 0 80px;
    }

    .sec4_left {
        width: 45%;
    }

    .sec4_left img {
        width: 100%;
    }

    .sec4_right {
        width: 50%;
    }

    .sec4_right .section_title:before {
        left: 86px;
    }

    ul.sec_ul2 {
        margin-top: 30px;
    }

    ul.sec_ul2 li {
        margin-bottom: 15px;
    }

    ul.sec_ul2 li > span {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    ul.sec_ul2 li p {
        width: calc(100% - 45px);
        font-size: 16px;
        line-height: 25px;
        word-break: keep-all;
    }


    /* section5 */
    .section5 .section_title:after {
        right: 7px;
    }

    .section5 .section_title:before {
        left: auto;
        right: 86px;
    }

    .section5 .sec4_left {
        width: 40%;
    }


    /* section6 */
    .section6 {
        padding: 70px 0;
    }

    .sec6_left {
        gap: 10px 0;
    }

    .sec6_left img {
        width: 70px;
    }

    .sec6_left p {
        font-size: 30px;
        line-height: 42px;
    }

    .sec6_right {
        width: 73%;
    }

    .sec6_right img {
        width: 100%;
    }


    /* section7 */
    .section7 {
        padding: 100px 0;
    }

    .section7 ul {
        margin-top: 50px;
    }

    .sec7_inner {
        width: 120px;
        height: 120px;
        gap: 10px 0;
    }

    .sec7_inner img {
        width: 50px;
    }

    .sec7_inner p {
        font-size: 16px;
    }

    .section7 ul li > p {
        width: 90px;
        height: 30px;
        margin-top: 40px;
        font-size: 14px;
    }

    .section7 ul li:first-child .sec7_inner:after,
    .section7 ul li:nth-child(2) .sec7_inner:after,
    .section7 ul li:nth-child(3) .sec7_inner:after,
    .section7 ul li:nth-child(4) .sec7_inner:after {
        content: " ";
        background-image: url(../images/section7_icon6.png);
        background-size: cover;
        width: 10px;
        height: 20px;
        right: -17px;
    }


    /* section8 */
    .section8 {
        padding: 80px 0 120px;
    }

    .section8_slide {
        margin-top: 40px;
        padding: 0;
    }

    .sec8_box {
        margin: 0 5px;
    }

    .sec8_info > span {
        font-size: 15px;
    }

    .sec8_info p {
        font-size: 15px;
    }

    .sec8_info p span {
        font-size: 18px;
    }


    /* section9 */
    .section9 {
        height: 350px;
    }

    .section9 .center {
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section9 ul li {
        gap: 25px 0;
        cursor: inherit;
    }

    .section9 ul li > p {
        font-size: 20px;
    }

    .sec9_inner {
        width: 150px;
        height: 150px;
        gap: 15px 0;
    }

    .sec9_inner p {
        font-size: 16px;
        line-height: 28px;
        font-family: 'Pretendard-Regular', sans-serif;
    }

    .sec9_inner p span {
        font-size: 25px;
    }

    .sec9_inner img {
        width: 25px;
    }


    /* company section */
    .more_section {
        padding: 100px 0;
    }

    .cp_title {
        font-size: 30px;
        line-height: 45px;
    }

    .cp_title img {
        width: 220px;
    }

    .more_section ul {
        margin-top: 50px;
        gap: 20px 0;
    }

    .more_section ul li {
        width: 49%;
    }

    .more_section ul li p {
        font-size: 16px;
    }

    .more_section ul li input {
        height: 40px;
        font-size: 16px;
        margin-top: 10px;
    }

    .more_section ul li input::placeholder {
        font-size: 16px;
    }

    .checks1 input[type="checkbox"] + label,
    .checks2 input[type="checkbox"] + label {
        cursor: inherit;
        font-size: 15px;
    }

    button.detail_btn {
        margin-left: 10px;
    }

    .cp_btn {
        gap: 0 10px;
    }

    .cp_btn input {
        width: 160px;
        height: 40px;
        font-size: 16px;
    }


    /* 개인정보처리방침 popup */
    .popbox {
        width: 80%;
        padding: 55px 42px;
    }

    .pop_close {
        cursor: inherit;
        top: 30px;
        right: 30px;
    }

    .pop_close i {
        font-size: 30px;
    }

    .pop_inner {
        padding: 0 20px;
        font-size: 15px;
        line-height: 25px;
    }

    .pop_inner strong {
        font-size: 18px;
    }

    .pop_inner::-webkit-scrollbar {
        width: 5px;
    }


    /* seller section2 */
    .seller_con1 {
        padding: 100px 0;
    }

    .seller_con1 .center {
        gap: 50px 0;
        padding: 0;
    }

    .s_con1_txt {
        width: 100%;
        gap: 25px 0;
    }

    .s_con1_logo {
        width: 48%;
    }

    .s_con1_logo img {
        width: 100%;
    }

    .s_con1_txt p {
        font-size: 35px;
        line-height: 52px;
    }

    .s_con1_img {
        width: 100%;
    }

    .s_con1_img img {
        width: 35%;
    }

    .seller_con2 ul.sec_ul {
        margin-top: 50px;
    }

    .seller_con2 ul.sec_ul li {
        width: 120px;
        height: 120px;
        gap: 10px 0;
    }

    .seller_con2 ul.sec_ul li img {
        width: 50px;
    }

    .seller_con2 ul.sec_ul li p {
        font-size: 16px;
        line-height: 22px;
    }

    .seller_con2 ul.sec_ul li:nth-child(2),
    .seller_con2 ul.sec_ul li:nth-child(3),
    .seller_con2 ul.sec_ul li:nth-child(4) {
        gap: 5px 0;
    }

    .seller_con2 ul.sec_ul li:not(:last-child):after {
        content: " ";
        background-image: url(../images/seller_dot.png);
        width: 19px;
        height: 2px;
        background-size: cover;
        right: -21px;
    }

    .seller_con3 .center {
        padding-top: 100px;
    }

    .seller_con3 .section_title:before {
        left: 97px;
    }

    .seller_con3 ul.sec_ul2 li {
        margin-bottom: 10px;
    }

    .seller_con3 ul.sec_ul2 li p span {
        font-size: 14px;
    }

    .seller_con4 .center {
        padding: 100px 0;
    }

    .seller_con4 ul {
        gap: 18px 3%;
    }

    .seller_con4 ul li {
        width: 48.5%;
        cursor: inherit;
    }

    .seller_con4 ul li img {
        transition: none;
    }

    .seller_con4 ul li:hover img {
        transform: scale(1);
    }

    .seller_con4 ul li p {
        font-size: 16px;
        gap: 10px 0;
    }

    .seller_con4 ul li p span {
        font-size: 12px;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px) {

    /* section1 */
    .sec1_left {
        gap: 45px 0;
    }

    .sec1_txt1 p span {
        font-size: 55px;
    }

    .sec1_img {
        width: 30vw;
    }

    .sec1_img img {
        width: 100%;
    }

    .sec1_right {
        width: 55%;
    }

    .sec1_right img {
        width: 100%;
    }


    /* section2 */
    .section2_inner {
        height: 770px;
    }

    .section2_slide {
        height: 770px;
        padding: 120px 0;
    }

    .section2_slide1 .center {
        padding: 0;
        gap: 50px 0;
    }

    .sec2_slide1_txt {
        gap: 25px 0;
    }

    .sec2_s1_img {
        width: 29vw;
    }

    .sec2_s1_img img {
        width: 100%;
    }

    .sec2_slide1_txt p {
        font-size: 40px;
        line-height: 60px;
    }

    .sec2_slide1_icon {
        width: 17vw;
    }

    .sec2_slide1_icon img {
        width: 100%;
    }

    .section2_slide2 .center {
        padding: 0 80px;
    }

    .sec2_title_txt {
        font-size: 40px;
    }

    .sec2_slide2_txt > p {
        font-size: 18px;
        line-height: 28px;
    }

    .sec2_slide2_img {
        width: 33%;
        gap: 20px 0;
    }

    .sec2_slide2_img img {
        width: 100%;
    }

    .sec2_slide2_img p {
        font-size: 16px;
    }

    .sec2_slide2_img p span {
        font-size: 18px;
    }

    .section2_slide3 .center {
        padding: 0 110px;
    }

    .sec2_slide3_img {
        width: 55%;
        margin-top: 85px;
    }

    .sec2_slide3_img img {
        width: 100%;
    }

    .section2_slide4 .center {
        padding: 0 50px;
    }

    .section2_slide4 .sec2_title_txt {
        padding-left: 30px;
    }

    .section2_slide4 ul {
        margin-top: 80px;
    }

    .section2_slide4 ul li {
        gap: 30px 0;
    }

    .section2_slide4 ul li > span {
        width: 130px;
        height: 40px;
        font-size: 18px;
    }

    .section2_slide4 ul li p {
        font-size: 17px;
        line-height: 26px;
    }

    .section2_slide4 ul li p span {
        margin-bottom: 20px;
    }

    .prev {
        margin-left: -540px;
    }

    .next {
        margin-left: 540px;
    }

    .prev i,
    .next i {
        font-size: 70px;
    }


    /* section3 */
    .section3 {
        padding: 150px 0;
    }

    .section_title {
        font-size: 40px;
    }

    .section_title:after,
    .section_title:before {
        width: 15px;
        height: 15px;
        top: -25px;
    }

    .section_title:before {
        left: 80px;
    }

    ul.sec_ul {
        margin-top: 60px;
    }

    ul.sec_ul li {
        width: 220px;
        height: 220px;
        gap: 15px 0;
    }

    ul.sec_ul li:nth-child(1) {
        gap: 25px 0;
    }

    ul.sec_ul li img {
        width: 75px;
    }

    ul.sec_ul li:not(:last-child):after {
        right: -55px;
    }

    ul.sec_ul li p {
        font-size: 20px;
        line-height: 30px;
    }


    /* section4 */
    .section4 .center {
        padding: 140px 0;
    }

    .sec4_left {
        width: 43%;
    }

    .sec4_left img {
        width: 100%;
    }

    .sec4_right {
        width: 52%;
    }

    .sec4_right .section_title:before {
        left: 115px;
    }

    ul.sec_ul2 {
        margin-top: 35px;
    }

    ul.sec_ul2 li {
        margin-bottom: 20px;
    }

    ul.sec_ul2 li:last-child {
        margin-bottom: 0;
    }

    ul.sec_ul2 li > span {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    ul.sec_ul2 li p {
        width: calc(100% - 50px);
        font-size: 22px;
        line-height: 30px;
    }


    /* section5 */
    .section5 .sec4_left {
        width: 36%;
    }

    .section5 .section_title:before {
        left: auto;
        right: 115px;
    }


    /* section6 */
    .sec6_left {
        gap: 15px 0;
    }

    .sec6_left img {
        width: 90px;
    }

    .sec6_left p {
        font-size: 40px;
        line-height: 60px;
    }

    .sec6_right {
        width: 72%;
    }

    .sec6_right img {
        width: 100%;
    }


    /* section7 */
    .section7 {
        padding: 130px 0;
    }

    .section7 ul {
        margin-top: 60px;
    }

    .sec7_inner {
        width: 180px;
        height: 180px;
        gap: 15px 0;
    }

    .sec7_inner img {
        width: 70px;
    }

    .sec7_inner p {
        font-size: 22px;
    }

    .section7 ul li > p {
        width: 90px;
        height: 30px;
        font-size: 15px;
    }

    .section7 ul li:first-child .sec7_inner:after,
    .section7 ul li:nth-child(2) .sec7_inner:after,
    .section7 ul li:nth-child(3) .sec7_inner:after,
    .section7 ul li:nth-child(4) .sec7_inner:after {
        right: -35px;
    }


    /* section8 */
    .section8 {
        padding: 100px 0 120px;
    }

    .section8_slide {
        padding: 0 50px;
    }

    .sec8_box {
        margin: 0 15px;
    }


    /* section9 */
    .section9 .center {
        padding: 155px 0;
    }

    .section9 ul li {
        gap: 25px 0;
    }

    .section9 ul li > p {
        font-size: 22px;
    }

    .sec9_inner {
        width: 180px;
        height: 180px;
        gap: 15px 0;
    }

    .sec9_inner p {
        font-size: 20px;
        line-height: 33px;
    }

    .sec9_inner p span {
        font-size: 30px;
    }

    .sec9_inner img {
        width: 25px;
    }


    /* company section */
    .more_section {
        padding: 95px 0;
    }

    .cp_title {
        font-size: 40px;
        line-height: 60px;
    }

    .cp_title img {
        width: 300px;
    }

    .more_section ul {
        margin-top: 45px;
    }

    .more_section ul li p {
        font-size: 16px;
    }

    .more_section ul li input {
        font-size: 16px;
        margin-top: 10px;
    }

    .more_section ul li input::placeholder {
        font-size: 16px;
    }

    .checks1 input[type="checkbox"] + label,
    .checks2 input[type="checkbox"] + label {
        font-size: 16px;
    }

    .cp_btn {
        gap: 0 15px;
    }

    .cp_btn input {
        width: 180px;
        height: 45px;
        font-size: 16px;
    }


    /* 개인정보처리방침 popup */
    .popbox {
        width: 1000px;
        padding: 65px 54px;
    }

    .pop_close {
        top: 35px;
        right: 40px;
    }

    .pop_close i {
        font-size: 35px;
    }

    .pop_inner {
        padding: 0 30px;
        font-size: 16px;
        line-height: 28px;
    }

    .pop_inner strong {
        font-size: 18px;
    }

    .pop_inner::-webkit-scrollbar {
        width: 6px;
    }


    /* seller section2 */
    .seller_section2 {
        display: block;
    }

    .seller_con1 {
        padding: 120px 0 150px;
    }

    .seller_con1 .center {
        gap: 50px 0;
        padding: 0;
    }

    .s_con1_txt {
        width: max-content;
        gap: 25px 0;
    }

    .s_con1_logo {
        width: 29vw;
    }

    .s_con1_logo img {
        width: 100%;
    }

    .s_con1_txt p {
        font-size: 40px;
        line-height: 60px;
    }

    .s_con1_img {
        width: 17vw;
    }

    .s_con1_img img {
        width: 100%;
    }

    .seller_con2 ul.sec_ul {
        margin-top: 60px;
    }

    .seller_con2 ul.sec_ul li {
        width: 180px;
        height: 180px;
        gap: 15px 0;
    }

    .seller_con2 ul.sec_ul li p {
        font-size: 20px;
        line-height: 30px;
    }

    .seller_con2 ul.sec_ul li img {
        width: 65px;
    }

    .seller_con2 ul.sec_ul li:nth-child(2),
    .seller_con2 ul.sec_ul li:nth-child(3),
    .seller_con2 ul.sec_ul li:nth-child(4) {
        gap: 10px 0;
    }

    .seller_con2 ul.sec_ul li:not(:last-child):after {
        right: -38px;
    }

    .seller_con3 .center {
        padding: 120px 0 70px;
    }

    .seller_con3 .section_title:before {
        left: 130px;
    }

    .seller_con3 ul.sec_ul2 li {
        margin-bottom: 10px;
    }

    .seller_con3 ul.sec_ul2 li p span {
        font-size: 18px;
    }

    .seller_con4 .center {
        padding: 120px 0;
    }

    .seller_con4 ul li p {
        font-size: 18px;
    }

}
