.totalBodyContainer > div {
    max-width: 1350px;
    width: 100%;
}

.heroSection {
    max-width: 1350px;
    width: 100%;
    padding-top: 40px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* 위 문단 */
.heroSectionStringContainer {
    margin: auto;
    padding-left: 10px;
}

.heroSectionString {
    font-size: 25px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -2px;
    text-shadow: -6px 1px 23px rgba(0, 99.88562500000008, 202.3, 0.3);
    color: #12212c;
    margin: 0 0 20px 0;
    animation: fadeUp 1s ease-out;
}

/* 위로 올라가는 애니메이션 */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 아래로 내려가는 애니메이션 */
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 아래 문단 */
.heroSectionMainStringWrapper {
    animation: fadeDown 1s ease-out;
}

.heroSectionMainString {
    font-size: 40px;
    color: #12212c;
    font-weight: 800;
}

.heroSectionImgContainer {
    margin-top: 16px;
}

.heroSectionImgContainer > img {
    max-width: 723px;
    width: 100%;
    height: auto;
    aspect-ratio: 723/743;
}

/* Main Service Section */

.mainServiceSection {
    width: 100%;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mainServiceTitleWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 메인 전체 제목 */
.mainServiceTitle {
    margin: 0 0 50px 0;
    color: #12212c;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 0 17px rgba(0, 111.00000000000006, 255, 0.39);
    line-height: 1;
    opacity: 0;
    transition: opacity 2s ease
}

/* 나타나는 애니메이션 */
.mainServiceTitle.animate {
    opacity: 1;
}

.mainServiceProductWrapper {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

/* 리스트 틀(ul) */
.mainServiceProduct {
    width: 100%;
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mainServiceProduct > li {
    width: 22%;
    opacity: 0;
    transform: translateY(80%);
    transition: all 1s ease;
}

/* 개개인 애니메이션 */
.mainServiceProduct li.animate {
    opacity: 1;
    transform: translateY(0);
}

.mainServiceProduct li:nth-child(1).animate {
    transition-delay: 0.2s;
}

.mainServiceProduct li:nth-child(2).animate {
    transition-delay: 0.4s;
}

.mainServiceProduct li:nth-child(3).animate {
    transition-delay: 0.6s;
}

.mainServiceProduct li:nth-child(4).animate {
    transition-delay: 0.8s;
}


/* 이미지 확대 */
.mainServiceProduct > li:hover div > img {
    transform: scale(110%);
    transition: transform 0.5s ease;
}


/* 각각의 물품 */
.individualProduct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.individualProduct > img {
    width: 100%;
    height: auto;
    aspect-ratio: 30/18;
    transition: transform 0.5s ease;
}

/* 물품 설명 */
.productDescription {
    padding: 55px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.productDescription > p {
    margin: 0;
}

.productTitle {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -2px;
    padding-top: 8px;
}

.englishName {
    color: #006fff;
}

.koreaName {
    color: #12212c;
    transition: color 0.3s ease;
}

.mainServiceProduct > li:hover .koreaName {
    color: #006fff;
    transition: color 0.3s ease;
}

.productSubTitle {
    font-size: 18px;
    font-weight: 800;
    color: #313131;
    padding-top: 8px;
}

.productSummary {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -1px;
}

.productDetail {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #12212c;
    padding: 15px 40px;
    border: 2px solid #12212c;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 14px;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.productDetail:hover {
    color: #f1f8ff;
    background-color: #12212c;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Shopping Section */
.shoppingSection {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.shoppingSectionImgContainer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 230px 0 70px 0;
    flex-wrap: wrap;
}

.shoppingSectionImg1 {
    max-width: 275px;
    width: 100%;
    height: auto;
    aspect-ratio: 137/25;
}

.shoppingSectionImg2 {
    max-width: 700px;
    width: 100%;
    height: auto;
    aspect-ratio: 7/2;
}

.shoppingSectionProductWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoppingSectionProduct {
    width: 100%;
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /*flex-wrap: wrap;*/
}

.shoppingSectionProduct > li {
    width: 30%;
}


/* 각각의 물품 */
.individualProductShopping {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}

.individualProductShopping > img {
    max-width: 220px;
    width: 100%;
    height: auto;
    aspect-ratio: 220/78;
    transition: transform 0.5s ease;
}

.shoppingProductDescription {
    margin-top: 40px;
    padding: 55px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.shoppingProductDescription > p {
    margin: 0;
}

.shoppingProductTitle {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -2.2px;
    transition: color 0.3s ease;
}

.shoppingProductSubTitle {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -2.3px;
}

.shoppingSectionProduct > li {
    opacity: 0;
    transform: translateY(80%);
    transition: all 1s ease;
}

.shoppingSectionProduct > li:hover div > img {
    transform: scale(110%);
    transition: transform 0.5s ease;
}

.shoppingSectionProduct > li:hover .shoppingProductTitle.aurora {
    color: #6c63fe;
    transition: color 0.3s ease;
}

.shoppingSectionProduct > li:hover .shoppingProductTitle.withkey {
    color: #CC492F;
}


/* 개개인 애니메이션 */
.shoppingSectionProduct li.animate {
    opacity: 1;
    transform: translateY(0);
}

.shoppingSectionProduct li:nth-child(1).animate {
    transition-delay: 0.4s;
}

.shoppingSectionProduct li:nth-child(2).animate {
    transition-delay: 0.6s;
}

.shoppingSectionProduct li:nth-child(3).animate {
    transition-delay: 0.8s;
}


/* Client Section */
.clientSection {
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clientSectionTitle {
    font-size: 52px;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 0 17px rgba(0, 111.00000000000006, 255, 0.38823529411764707);
    text-align: center;
}

/* Swiper */
.clientSwiperWrapper {
    padding-top: 60px;
    position: relative;
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 1000px;
    height: 80px;
}

.swiper-slide {
    width: 200px;
    height: 80px;
}

.swiper-button-next {
    position: absolute;
    right: 0;
    top: 85%;
    transform: translateY(-50%);
    background: url(../images/mainBody/client/clientRightArrow.svg) no-repeat center;
}

.swiper-button-prev {
    position: absolute;
    left: 0;
    top: 85%;
    transform: translateY(-50%);
    background: url(../images/mainBody/client/clientLeftArrow.svg) no-repeat center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* Slogan Section */
.sloganSection {
    max-width: 500px;
    width: 100%;
    margin: 220px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sloganTitle {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.sloganTitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.sloganTitle > p {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 500px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #12212c;
    margin: 0;
    gap: 4px;
}

.sloganStrong {
    font-size: 40px;
    color: #006fff;
}

.sloganDivider {
    margin: 25px 0;
    width: 90%;
    max-width: 500px;
    border: 1px solid #12212c;
    opacity: 0;
    transition: all 1s ease;
    box-sizing: border-box;
}

.sloganDivider.animate {
    opacity: 1;
    transform: translateX(0);
}


.sloganImgContact {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 400px;
    box-sizing: border-box;
    padding: 0 20px;
}

.sloganImgContact > * {
    opacity: 0;
    transform: translateY(200px);
    transition: all 1s ease;
}

.sloganImgContact > img {
    max-width: 49%;
    width: 100%;
    height: auto;
    aspect-ratio: 10/3;
}


.sloganImgContact > .animate {
    opacity: 1;
    transform: translateY(0);
}

.sloganImgContact > *:nth-child(1).animate {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.sloganImgContact > *:nth-child(2).animate {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}


.sloganContact {
    width: 30%;
    box-sizing: border-box;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #12212c;
    border: 4px solid #12212c;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sloganContact:hover {
    color: #f1f8ff;
    background-color: #12212c;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (max-width: 1150px) {
    .heroSection {
        flex-direction: column;
    }

    .heroSectionStringContainer {
        order: 2;
    }

    .heroSectionImgContainer {
        order: 1;
    }

    .mainServiceProduct {
        justify-content: center;
        gap: 40px 0;
    }

    .mainServiceProduct > li {
        width: 45%;
    }

    .shoppingProductSubTitle {
        font-size: 16px;
    }

    .swiper {
        width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .heroSectionString {
        font-size: 22px;
    }

    .mainServiceTitle {
        font-size: 40px;
    }

    .shoppingProductSubTitle {
        font-size: 14px;
    }

    .shoppingProductTitle {
        font-size: 18px;
    }

    .shoppingProductDescription {
        padding: 40px;
    }

    .shoppingSectionProduct {
        flex-wrap: wrap;
    }

    .shoppingSectionProduct > li {
        width: 70%;
    }

    .swiper {
        width: 400px;
    }

    .clientSectionTitle {
        font-size: 40px;
    }


    .sloganTitle > p {
        font-size: 24px;
    }

    .sloganStrong {
        font-size: 36px;
        color: #006fff;
    }
}

@media screen and (max-width: 480px) {
    .heroSectionString {
        font-size: 18px;
    }

    .mainServiceProduct > li {
        width: 100%;
    }

    .shoppingProductSubTitle {
        font-size: 12px;
    }

    .shoppingProductTitle {
        font-size: 16px;
    }

    .swiper {
        width: 200px;
    }


    .sloganTitle > p {
        font-size: 18px;
    }

    .sloganStrong {
        font-size: 30px;
        color: #006fff;
    }

    .sloganContact {
        padding: 10px 20px;
    }
}



