inner

/* default 시작*/
html,
body {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

body {
    background: #fff;
    font-family: 'Pretendard', 'Noto Sans KR', "YakuHanJP", "Noto Sans JP", "PingFang SC", "Noto Sans SC", "Arial", sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    padding: 0px;
    margin: 0px;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
}

.break-all {
    word-break: break-all !important;
    overflow-wrap: normal !important;
    /* white-space: unset; */
}

::selection {
    background-color: var(--blue);
    color: white;
}

.inner {
    padding-left: 18.75%;
    padding-right: 18.75%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.2;
    padding-bottom: 18px;
}

h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.5;
    padding: 15px 0 30px 0;
}

.no-wrap {
    white-space: nowrap !important;
    word-break: keep-all !important;
}

.titleWrap {
    width: 100%;
    text-align: center;
}

.mainTitle {
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    padding-bottom: 12px;
}

.subTitle {
    font-size: 18px;
    line-height: 1.5;
    color: #111;
}

.blueTxt {
    color: var(--blue);
}

.bold {
    font-weight: 700;
}

/* default 끝 */

#header {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    overflow: visible;
}

.headerLogo {
    padding-top: 10px;
}

.headerIconContainer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.headerIconContainer>.languageSelector {
    display: flex;
    align-items: center;
    text-align: right;
    color: white;
    cursor: pointer;
}

.headerIconContainer>div span {
    margin-left: -4px;
    font-size: 16px;
    display: inline-block;
    /* text-transform: uppercase; */
}

.languageDropDown {
    display: none;
    position: absolute;
    top: 100%;
    right: -18%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    list-style: none;
    padding: 5px 0;
    min-width: 90px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.languageDropDown li {
    padding: 10px 0;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 400;
    color: #888;
    /* text-transform: uppercase; */
}

.languageDropDown li:hover {
    background: #eee;
    font-weight: 600;
    color: var(--blue);
}

.headerLogo {
    object-fit: contain;
    width: 153px;
    height: auto;
}

.mainVisual {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.mainSlideItem {
    position: relative;
    overflow: hidden;
}

.mainSlideItem::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.mainSlideText {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding-bottom: 16px;
}

.mainSlideText p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.mainSlideContainer {
    width: 100%;
}

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.mainSlideContainer>div img {
    object-fit: cover;
    width: 100%;
    height: 560px;
    filter: blur(2px);
}

.mainSlideProgress {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background-color: #ffffff66;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, #fff, #fff);
    border-radius: 5px;
}

.serviceWrap {
    position: relative;
    width: 100%;
    background: white;
}

.serviceSlideContainer {
    height: fit-content;
}

.serviceSlideItem {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.serviceSlideItem .textWrap {
    width: 44%;
}

.serviceSlideItem .textWrap>p {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
    padding-bottom: 60px;
}

.serviceSlideItem .textWrap>p>span {
    font-size: 16px;
}

.entwizAiBadge {
    width: 55px;
    height: 55px;
}

.tagWrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tagItem {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #1a75ff1a;
    padding: 5px 20px 5px 16px;
    font-size: 16px;
    line-height: 1.5;
    width: fit-content;
    border-radius: clamp(8px, 0.78vw, 10px);
    text-align: left;
}

.serviceWrap h2>span {
    position: relative;
}

.serviceWrap h2>span::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -5%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #1a75ff1a;
}

.serviceSlideItem .imgWrap {
    width: 49%;
    border-radius: clamp(8px, 0.78vw, 15px);
    overflow: hidden;
    /* box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1); */
}

.serviceSlideItem .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceWrap .serviceSlideContainer {
    width: 100%;
}

.serviceWrap .serviceSlideContainer .slick-dots {
    position: absolute;
    top: -1;
    left: 0;
    background: #111;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.serviceWrap .serviceSlideContainer .slick-dots li {
    width: auto;
    height: auto;
    margin-left: 40px;
}

.serviceWrap .serviceSlideContainer .slick-dots li a {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    min-width: 178px;
    height: 68px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    transition: transform 1s ease, font-weight 0.1 ease;
}

.serviceWrap .serviceSlideContainer .slick-dots li.slick-active a {
    color: var(--blue);
    font-weight: 700;
}

.serviceWrap .serviceSlideContainer .slick-dots li.slick-active a::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 104%;
    top: 0;
    left: 0;
    background: white;
    border-top-left-radius: clamp(8px, 0.78vw, 15px);
    border-top-right-radius: clamp(8px, 0.78vw, 15px);
}

.serviceWrap .serviceSlideItem {
    position: relative;
    margin-top: 25px;
    padding: 100px 0 150px;
    height: auto;
    overflow: hidden;
}

.reviewContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    margin: 100px 0 0 -30%;
    z-index: 5;
}

.reviewImgWrap {
    width: calc(100% - 3%);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: clamp(8px, 0.78vw, 15px);
}

.reviewItem.commerce .reviewImgWrap {
    border: 5px solid #000;
}

.linkContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
    width: 100%;
}

.linkItem {
    width: calc(100% - 60px);
    min-width: 280px;
    aspect-ratio: 2.06 / 1;
    border-radius: clamp(8px, 0.78vw, 15px);
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all 0.4s ease-in-out;
}

.linkItem:hover {
    background-size: 110% 110%;
}

.linkItem:first-child {
    background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../img/service/service4_2_01.png);
    transition: background 0.4s ease-in-out;
}

.linkItem:first-child:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/service/service4_2_01.png);
}

.linkItem:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../img/service/service4_2_02.png);
    transition: background 0.4s ease-in-out;

}

.linkItem:nth-child(2):hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/service/service4_2_02.png);
}

.linkItem:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url(../img/service/service4_2_03.png);
}

.linkItem a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    color: white;
}

.linkItem a>div>span {
    display: block;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    padding-bottom: 10px;
}

.linkItem a>div p {
    font-size: 16px;
    line-height: 1.2;
}

#linkArrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-left: 20px;
    background-image: url(../img/service/right_arrow_38.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: 0.4s ease-in-out;
}

.linkItem:hover #linkArrow {
    background-image: url(../img/service/right_arrow_38_blue.svg);
}

.reviewImgWrap img,
.linkImgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.reviewItem.smartSeniorCenter {
    border-radius: clamp(8px, 0.78vw, 15px);
    overflow: hidden;
}

.reviewItem.smartSeniorCenter .reviewImgWrap {
    position: relative;
    height: auto;
}

.reviewItem.smartSeniorCenter .reviewImgWrap .reviewText {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #001C4799;
    border-end-end-radius: clamp(8px, 0.78vw, 15px);
    color: white;
    padding: 16px 30px;
    font-size: 16px;
    line-height: 1.3;
}

.reviewItem.smartSeniorCenter .reviewImgWrap .reviewText span {
    display: block;
    font-size: 600px;
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 6px;
}

.serviceSlideArrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 8%;
}

.serviceSlideArrows .prev,
.serviceSlideArrows .next {
    width: 48px;
    height: 48px;
    cursor: pointer;
    border: none;
    background: none;
}

.serviceSlideArrows .prev {
    background-image: url(../img/service/service_arrow_left_48.svg);
    background-size: cover;
}

.serviceSlideArrows .next {
    background-image: url(../img/service/service_arrow_right_48.svg);
    background-size: cover;
}

.serviceSlideArrows .prev:hover {
    background-image: url(../img/service/service_arrow_left_48_hover.svg);
    background-size: cover;
}

.serviceSlideArrows .next:hover {
    background-image: url(../img/service/service_arrow_right_48_hover.svg);
    background-size: cover;
}

.newsWrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-top: 75px;
    padding-bottom: 75px;
    background: url(../img/news/new_bg.png) no-repeat center center / cover;
}

.newsArticleList {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.newsArticleItem {
    background: white;
    border-radius: clamp(10px, 1.04vw, 20px);
    overflow: hidden;
    width: calc(100% / 3);
    min-width: 300px;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-out !important;
}

.newsArticleItem:hover {
    transform: translateY(-30px) !important;
}

.newsArticleItem dl dt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsArticleItem dl dd {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px 35px 30px;
    word-break: break-all;
}

.newsArticleItem dl dd p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.newsArticleItem dl dd p:first-child {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}

.newsArticleItem dl dd p:nth-child(2) {
    color: #444;
    font-size: 16px;
    line-height: 1.3;
}

.locationPartnersContainer {
    display: flex;
    flex-direction: column;
    background: url(../img/partners/partners_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.locationWrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.mapList {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 30px;
}

.mapList span {
    text-transform: uppercase;
}

.mapItem {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.mapItem img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
    border-radius: clamp(10px, 1.04vw, 20px);
}

.mapItem>p {
    color: #111;
    font-size: 18px;
    line-height: 1.5;
    padding: 24px 5px 0;
}

.mapItem p span {
    display: inline-block;
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 6px;
    margin-bottom: 16px;
    border-bottom: 4px solid #444;
    color: #444;
}

.partnersWrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-bottom: 150px;
}

#partnersSlide {
    display: flex;
    gap: 50px;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-items {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    /* padding: 0 20px; */
}

#partnersSlide .marquee-items:nth-child(2) {
    padding: 5px 20px;
}

.marquee-items img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding-right: 26%;
}

.marquee-item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18%;
    /* padding: 0; */
}

.inquiryWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    background: url(../img/inquiry_bg.png) no-repeat center center / cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.inquiryWrap p {
    color: white;
    font-size: 30px;
    line-height: 1.5;
}

#inquiryBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 16px 40px;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    /* background-image: url(../img/right_arrow_18.svg);
    background-repeat: no-repeat;
    background-position: 83% 50%; */
    transition: ease-in-out .2s;
}

#inquiryBtn:hover {
    background: white;
    font-weight: 700;
    /* background-image: url(../img/right_arrow_18_bk.svg);
    background-repeat: no-repeat;
    background-position: 83% 50%; */
    color: #111;
}

#footer {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
    background: #111;
    color: white;
}

#footer .infoWrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#footer .infoWrap>div {
    display: flex;
    opacity: 0.9;
}

#footer .infoWrap>div:first-child p {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 18px;
}

#footer .infoWrap>div p:not(:last-of-type) {
    padding-right: 10px;
}

#footer .infoWrap>div p:not(:first-of-type) {
    padding-left: 10px;
    border-left: 1px solid #ffffffb3;
}

#footer .infoWrap .copyright {
    padding-top: 18px;
}

#footer .infoWrap .copyright p {
    font-size: 12px;
    font-weight: 200;
}

/* 반응형 */
@media screen and (max-width: 1500px) {
    .inner {
        padding-left: 10%;
        padding-right: 10%;
    }

    .serviceSlideArrows {
        padding: 0 3%;
    }

    .languageDropDown {
        right: -15%;
    }
}

@media screen and (max-width: 1200px) {
    .inner {
        overflow-x: auto;
        padding-left: 8%;
        padding-right: 8%;
    }

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

    .mainSlideProgress {
        bottom: 120px;
    }

    .serviceWrap .serviceSlideContainer .slick-dots li {
        margin-left: 0px;
    }

    .serviceSlideArrows .prev,
    .serviceSlideArrows .next {
        width: 38px;
        height: 38px;
    }

    .reviewItem.smartSeniorCenter .reviewImgWrap .reviewText {
        font-size: 16px;
        padding: 10px 15px;
    }

    .reviewItem.smartSeniorCenter .reviewImgWrap .reviewText span {
        font-size: 18px;
    }

    .linkContainer {
        gap: 15px;
        justify-content: start;
        overflow-x: auto;
    }

    .linkItem a>div>span {
        font-size: 20px;
    }

    #linkArrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
        margin-left: 15px
    }

    .newsWrap {
        position: relative;
    }

    .newsWrap .titleWrap {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .locationPartnersContainer {
        background: url(../img/partners/partners_bg_1200.png);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: 100% 100%;
    }

    .marquee-item {
        width: 19%;
    }

    .marquee-items img {
        padding-right: 15%;
    }
}

@media screen and (max-width: 1000px) {
    .newsArticleList {
        justify-content: flex-start;
        width: 100%;
    }

    .linkItem a>div>span {
        font-size: 20px;
    }


    @media screen and (max-width: 900px) {
        h1 {
            font-size: 60px;
            padding-bottom: 12px;
        }

        .serviceWrap .serviceSlideContainer .slick-dots li a {
            height: 62px;
            min-width: 150px;
        }

        .serviceIntro {
            flex-direction: column;
        }

        .serviceSlideItem .textWrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            text-align: center;
        }

        .serviceSlideItem .textWrap>p {
            padding-bottom: 30px;
        }

        .serviceSlideItem .imgWrap {
            width: 100%;
        }

        .tagWrap {
            align-items: center;
        }

        .reviewContainer {
            width: 100%;
            margin-left: 0;
        }

        .reviewItem.smartSeniorCenter .reviewImgWrap .reviewText {
            font-size: 12px;
            padding: 7px 8px;
        }

        .reviewItem.smartSeniorCenter .reviewImgWrap .reviewText span {
            font-size: 14px;
        }

        .serviceSlideArrows .prev,
        .serviceSlideArrows .next {
            width: 38px;
            height: 38px;
        }

        .serviceSlideArrows .prev,
        .serviceSlideArrows .next {
            background-size: contain;
        }

        .tagItem {
            gap: 6px;
            font-size: 14px;
        }

        .tagItem img {
            width: 18px;
            height: 18px;
        }

        .linkItem {
            min-width: 240px;
        }

        .linkItem a {
            padding: 0 20px;
        }

        .linkItem a>div>span {
            font-size: 16px;
        }

        .linkItem a>div p {
            font-size: 14px;
        }

        #linkArrow {
            width: 30px;
            height: 30px;
            min-width: 30px;
        }

        .newsArticleItem:hover {
            transform: translateY(0) !important;
        }

        .newsArticleItem dl dd {
            padding: 25px 20px 30px;
        }

        .mapItem>p {
            padding: 14px 3px 0;
        }

        .mapItem p {
            font-size: 16px;
        }

        .mapItem p span {
            font-size: 22px;
            padding-bottom: 6px;
            margin-bottom: 12px;
        }

        #partnersSlide {
            gap: 30px;
        }

        .marquee-items img {
            padding-right: 18%;
        }

        .marquee-item {
            width: 24%;
        }

        #footer {
            flex-direction: column;
            gap: 40px;
            align-items: center;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        #footer .infoWrap {
            align-items: center;
        }

        #footer .infoWrap>div {
            flex-direction: column;
            align-items: center;
            /* text-align: center; */
            gap: 8px;
        }

        #footer .infoWrap>div p {
            text-align: center;
            line-height: 1.5;
        }

        #footer .infoWrap>div p:not(:last-of-type) {
            padding-right: 0;
        }

        #footer .infoWrap>div:first-child p {
            padding-bottom: 10px;
        }

        #footer .infoWrap>div p:not(:first-of-type) {
            border: none;
        }
    }

    @media screen and (max-width: 768px) {
        br {
            display: none;
        }

        br.mo {
            display: block;
        }

        .inner {
            padding-left: 5%;
            padding-right: 5%;
        }

        h1 {
            font-size: 45px;
            padding-bottom: 12px;
        }

        h2 {
            font-size: 22px;
            line-height: 1.4;
            padding: 15px 0 20px 0;
        }

        .mainSlideText {
            width: 90%;
        }

        .mainTitle {
            font-size: 22px;
            padding-bottom: 8px;
        }

        .subTitle {
            font-size: 16px;
        }

        .headerLogo {
            scale: 0.9;
        }

        .headerIconContainer img {
            width: 42px;
            height: 42px;
        }

        .headerIconContainer>div span {
            font-size: 14px;
        }

        .languageDropDown {
            width: 80px;
            min-width: auto;
        }

        .languageDropDown li {
            font-size: 13px;
        }

        .mainSlideText p {
            font-size: 16px;
        }

        .entwizAiBadge {
            width: 40px;
            height: 40px;
        }

        .serviceWrap .serviceSlideContainer .slick-dots {
            text-align: left;
        }

        .serviceWrap .serviceSlideContainer .slick-dots li a {
            font-size: 16px;
            padding: 0 20px;
            min-width: 100px;
            height: 58px;
        }

        .serviceWrap .serviceSlideItem {
            padding: 50px 0 80px;
        }

        .serviceSlideItem .textWrap>p {
            font-size: 16px;
            padding-bottom: 25px;
            line-height: 1.4;
        }

        .serviceSlideItem .textWrap>p>span {
            font-size: 13px;
        }

        .serviceSlideArrows .prev,
        .serviceSlideArrows .next {
            opacity: 0.6;
        }

        .serviceSlideArrows .prev:hover,
        .serviceSlideArrows .next:hover {
            opacity: 1;
        }

        .serviceSlideArrows .prev {
            background-image: url(../img/service/service_arrow_left_48_bk.svg)
        }

        .serviceSlideArrows .next {
            background-image: url(../img/service/service_arrow_right_48_bk.svg)
        }

        .tagItem {
            padding: 4px 12px 4px 8px;
            line-height: 1.3;
        }

        .reviewContainer {
            margin-top: 50px;
        }

        .reviewItem.smartSeniorCenter .reviewImgWrap .reviewText span {
            padding-bottom: 2px;
        }

        .linkContainer {
            margin-top: 40px;
            gap: 15px;
        }

        #linkArrow {
            width: 28px;
            height: 28px;
            min-width: 28px;
        }

        .newsWrap {
            gap: 40px;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .newsArticleList {
            gap: 15px;
        }

        .newsArticleItem {
            min-width: 260px;
        }

        .newsArticleItem dl dd {
            padding: 10px 15px 15px;
            gap: 7px;
        }

        .newsArticleItem dl dd p:first-child {
            font-size: 16px;
            line-height: 1.3;
        }

        .newsArticleItem dl dd p:nth-child(2) {
            font-size: 14px;
            line-height: 1.2;
        }

        .locationPartnersContainer {
            background: url(../img/partners/partners_bg_mo.png);
            background-repeat: no-repeat;
            background-position: top left;
            background-size: 100% 100%;
        }

        .locationWrap {
            gap: 40px;
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .mapList {
            gap: 20px;
        }

        .mapItem p span {
            font-size: 18px;
            padding-bottom: 4px;
            margin-bottom: 8px;
            border-bottom: 3px solid #444;
        }

        .mapItem p {
            font-size: 14px;
        }

        .mapItem>p {
            padding-top: 10px;
        }

        .partnersWrap {
            gap: 40px;
            padding-bottom: 80px;
        }

        #partnersSlide {
            gap: 20px;
        }

        .marquee-item {
            width: 35%;
        }

        .inquiryWrap {
            padding-top: 80px;
            padding-bottom: 60px;
            gap: 25px;
        }

        .inquiryWrap p {
            font-size: 22px;
        }

        #footer {
            gap: 24px;
        }

        #footer .infoWrap {
            order: 2;
        }

        #footer .infoWrap>div:first-child p {
            font-size: 13px;
            padding-bottom: 0;
        }

        #footer .infoWrap {
            gap: 4px;
        }

        #footer .infoWrap>div {
            gap: 4px;
        }

        #footer .infoWrap>div p {
            font-size: 13px;
        }

        #footer .infoWrap .copyright {
            padding-top: 12px;
        }

        #footer .infoWrap .copyright p {
            font-size: 11px;
        }

        #footer img {
            scale: 0.8;
            order: 1;
        }

        @media screen and (max-width: 650px) {
            .locationPartnersContainer {
                background: url(../img/partners/partners_bg_650.png);
                background-repeat: no-repeat;
                background-position: top left;
                background-size: 100% 100%;
            }

            .mapList {
                flex-direction: column;
            }

            .mapItem {
                width: 100%;
            }
        }
    }