@font-face {
    font-family: "Pretendard";
    src: url("/vue/assets/fonts/Pretendard-ExtraBold.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("/vue/assets/fonts/Pretendard-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("/vue/assets/fonts/Pretendard-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("/vue/assets/fonts/Pretendard-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}



* {
    box-sizing: border-box;
    font-family: "Pretendard", sans-serif;
    word-break: keep-all;
}

a {
    text-decoration: none;
}

html {
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 400;
    min-height: 100vh;

    background-color: transparent;
}

ul,
li {
    list-style: none;
}

body {

    margin: 0;
}

#app {
    margin-top: 0;
}

h1 {
    text-align: center;
}

.top-container {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;

    border-radius: 50%;
    cursor: pointer;
    background-color: transparent;
    font-size: 40px;
    color: #2f2e2e;
    ;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .modal-content {
    background: #fff;
    border-radius: 5px;
    position: relative;
    white-space: pre-wrap;
    width: 80%;
    max-width: 700px;
    height: fit-content;
    max-height: 700px;
    overflow-y: auto;
} */

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.dp-flex-row {
    display: flex;
    flex-direction: row;
}

.dp-flex {
    display: flex;
}

.dp-flex-col {
    display: flex;
    flex-direction: column;
}

header {
    transition: color 0.3s ease;
}

.flip-in-hor-top {
    -webkit-animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes flip-in-hor-top {
    0% {
        -webkit-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}

@keyframes flip-in-hor-top {
    0% {
        -webkit-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}


/*pc 버전*/
/*헤더 관련*/
.pc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    z-index: 90;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    transition: all .2s;
    color: white;
    background-color: black;

}




.pc-header-nav-title {
    color: white !important;

}

.pc-selected {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.selectedlang {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.arrow {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* .pc-logo {
    width: 80px;
    height: 40px;
} */

.pc-header-content-div {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-header-nav-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 72px;
    text-decoration-line: none;
    cursor: pointer;
}

.pc-nav-menu::marker {
    display: none;
}

.pc-nav {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;

}

.pc-nav-group {
    display: flex;
    height: 72px;
    margin: 0px;
    width: 60%;
}

.pc-nav-menu {
    width: 40%;
    max-width: 300px;
    height: 72px;
    text-align: center;
    position: relative;
    list-style: none;
    /* relative positioning for the parent item */
}

.pc-navbar__toggleBtn {
    display: none;
    position: absolute;
    top: 15px;
    right: 32px;
    font-size: 24px;
    z-index: 52;
}

.pc-search-box {
    margin-left: auto;
    float: right;
    display: flex;
}




.pc-inner-menu {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    background-color: #000000;

}

.pc-nav-menu:hover .pc-inner-menu {
    padding: 0;
    height: auto;
    opacity: 1;
    transform: translateY(0);
}


.transparent-header .pc-inner-menu {
    background-color: transparent;
}


.pc-nav-menu:hover {
    /* border-bottom: 1px solid #dfdcdc; */
}

.pc-dept2 {
    margin: 15px 10px;
    font-size: 16px;
}

.pc-header-nav-small-title {
    text-decoration: none;
    color: #ffffff;
    padding: 5px;

}




.pc-language-select {
    position: relative;
    width: 100px;

}

.pc-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: transparent;
    border: 2px solid #ccc;
    cursor: pointer;
    color: #ffffff;
    border-radius: 10px;
}

.selectedlang {
    font-size: 16px;
    font-weight: 700;
}

.pc-arrow {
    margin-left: 5px;
}

.pc-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 10px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    color: #ffffff
}

.pc-dropdown-item {
    padding: 10px;
    cursor: pointer;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
}

.pc-dropdown-item:hover {
    background-color: #000000;
}

.pc-flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

/*header 관련 끝 */
.intro-text {
    margin-top: 170px;
    margin-bottom: 50px;
    font-size: clamp(20px, 5vw, 56px);
}

.intro-btn {
    width: 40%;
    min-width: 100px;
    max-width: 320px;
    background-color: transparent;
    margin: 0px 15px;
    border: none;
    border-radius: 10px;

    cursor: pointer;
    aspect-ratio: 1/1.3;

    color: white;
    background-color: white;
    display: flex;
    overflow: hidden;
    justify-content: center;
    /* flex-direction: column; */

}

.intro-img {

    /* 배경 이미지가 컨테이너를 완전히 덮도록 설정 */
    background-position: center center;
    /* 배경 이미지의 위치를 가운데로 설정 */
    background-repeat: no-repeat;
    /* 반복되지 않도록 설정 */
    margin: 0;
    padding: 0;
    width: 100%;
    height: 75%;
    border: none;
    vertical-align: bottom;
    position: relative;
    overflow: hidden;

}

.intro-inner-text {
    color: white;
    font-size: 26px;
    font-weight: 700;
    bottom: 0;
    color: white;
    width: 100%;
    transition: transform 0.3s ease;
}

.intro-inner-sub {
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: 500;
    height: 105px;
    /* transform: translateY(100%); */
}

.transf {
    transition: transform 0.8s ease;
    transform: translateY(55%);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    position: relative;
    justify-content: center;
    text-align: left;
    padding-left: 20px;
}

.res-wid {

    width: 50%;
}










.jc-r {
    justify-content: right;
}

.jc-l {
    justify-content: left;
}

.footer-container {
    display: flex;
    flex-direction: column;
    background-color: #F0F2F8;
    color: #000000;
}

.footer-container h1 {
    color: black;
    font-weight: 700;
    font-size: clamp(40px, 4vw, 64px);
    margin: 0;
}

.footer-container p {
    font-size: clamp(15px, 4vw, 20px);
    margin: 0 15px;
}

.partner-container {
    padding: 30px;
    margin-bottom: 20px;
}

.rolling-banner {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 120px;
    /* 배너 높이 */
    cursor: pointer;
}

.banner-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0s linear;
    /* 트랜지션 없이 부드럽게 */
}

.banner-item {
    flex-shrink: 0;
    margin: 0 15px;
    cursor: pointer;
}

.banner-item img {
    width: 240px;
    height: 110px;
    object-fit: contain;
}

.news-container {
    padding: 30px;
    min-height: 500px;

    display: flex;
    flex-direction: column;
}

.news-box {
    min-height: 400px;
    width: 32%;
    border: 1px solid black;

}

.show-more-btn {
    width: 120px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
    background-color: #dbdada;

}

.show-more-btn:hover {
    background-color: #c5c5c5;
    cursor: pointer;
}


.scroll-info {
    padding-top: 70px;
    position: relative;
    font-size: 20px;
    color: white;
}

.scroll-info span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -12px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}

.scroll-info span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.scroll-info span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}

.scroll-info span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes sdb {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* pc버전 끝 */





/* mobile 버전 */
.mb-header {
    display: none;
}

.mb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    z-index: 90;
    align-items: center;
    padding: 0px 20px;
    transition: all .2s;
    background-color: black;
    color: white;
}


.mb-logo {
    width: 60px;
    height: 30px;
}

.logoa {
    margin-right: auto;
}

.mb-nav {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mb-nav-group {
    display: flex;
    height: max-content;
    margin-top: 50px;
    flex-direction: column;
    padding: 0;
    background-color: #ffffff;
    min-height: 364px;
}


.mb-nav-menu {
    width: 100%;
    height: fit-content;
    text-align: right;
    position: relative;
    list-style: none;
    border-bottom: 2px solid #88888888;
    padding: 16px 30px;
}

.mb-nav-menu-res {
    position: fixed;
    top: 0;
    right: -70%;
    /* 기본 상태에서 화면 밖에 숨김 */
    width: 70%;
    max-width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
    z-index: 50;
    background-color: #d9d9d9;
}

.mb-nav-menu-res-blank {
    position: fixed;
    width: 100%;
    height: 50px;
    background: #222222;
    z-index: 51;
}

.mb-nav-menu-res.active {
    right: 0;
    /* 화면 안으로 슬라이드 */
}

.mb-dept2 {
    margin: 15px 10px;
    font-size: 16px;
}

.mb-search-box {
    position: absolute;
    top: 10px;
    right: 45px;
}

.mb-navbar__toggleBtn {
    display: block;
}

.mb-nav-menu-res.active .nav-group {
    display: flex;
}

.mb-header-nav-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
}

.mb-nav-menu.active {
    font-size: 20px;
    background-color: #88888888;
    color: #ffffff;
    border: none;
}

.mb-header-nav-small-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.mb-nav-menu.active .mb-header-nav-title {
    font-size: 18px;
    color: #ffffff;
}

.mb-intro-btn {
    width: 50%;
    min-width: 120px;
    max-width: 300px;
    background-color: transparent;
    margin: 0px 5px;
    border: none;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    aspect-ratio: 1/1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 5vw, 45px);
}

.mb-square_div {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    margin-right: 15px;
    background-size: cover;
    background-repeat: no-repeat;
}

.mb-res-dp-flex-col {
    flex-direction: column;
}

.navbar__toggleBtn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 35px;
    color: #ffffff
}

.navbar__toggleBtn_inside {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 35px;
    color: white;
}

.mb-inner-menu {
    height: 0;
    /* 초기 높이 */
    overflow: hidden;
    /* 넘치는 내용 숨김 */
    opacity: 0;
    /* 투명도 0 */
    transform: translateY(-10px);
    /* 살짝 위로 이동 */
    transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    /* 애니메이션 */
    text-align: right;
    border-bottom: 2px solid #88888888;
    padding-right: 33px;
}

.mb-inner-menu.visible {
    height: auto;
    /* 높이를 콘텐츠 크기에 맞춤 */
    opacity: 1;
    /* 완전히 보임 */
    transform: translateY(0);
    /* 원래 위치 */
}

.mb-search-box {
    margin-left: auto;
    float: right;
    display: flex;
    margin-right: 15px;
}


.mb-lang-select {

    font-size: 35px;
    color: #ffffff;
    width: 30px;
    height: 30px;
}


.mb-language-select {
    position: relative;
    width: 80px;
    text-align: right;
}

.mb-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: transparent;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #ffffff;
    border-radius: 10px;
}

.mb-arrow {
    margin-left: 5px;
}

.mb-dropdown {
    position: absolute;
    top: 35px;
    left: 20px;
    width: 100%;
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 10px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    color: #ffffff
}

.mb-dropdown-item {
    padding: 10px;
    cursor: pointer;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
}

.mb-dropdown-item:hover {
    background-color: #000000;
}

.mb-flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

.mb-main-container {
    display: none;
}



.img-div {
    width: 100%;
    max-width: 600px;
    /* height: 400px; */
    border-radius: 15px;
    margin-right: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    padding: 30px;
    font-size: clamp(22px, 2vw, 26px);

    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.img-div h3 {
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: bold;
    margin: 0;
}

.img-div p {
    font-size: clamp(16px, 1.4vw, 22px);
}

.img-container {
    margin-top: 100px;
    display: flex;
    width: 90%;
    justify-content: center;
    flex-direction: row;
}

.img-container-kiosk {
    margin-top: 50px;
    display: flex;
    width: 90%;
    justify-content: center;
    flex-direction: row;
}

.hyfive1 {
    background-image: url("/vue/assets/img/tfm_HP_모바일플랫폼_img3.png");
}

.hyfive2 {
    background-image: url("/vue/assets/img/tfm_HP_모바일플랫폼_img4.png");
}

.hyfive3 {
    background-image: url("/vue/assets/img/tfm_HP_모바일플랫폼_img5.png");
}

.hyfive1-1 {
    background-image: url("/vue/assets/img/hyfive_square1.png");
}

.hyfive2-1 {
    background-image: url("/vue/assets/img/hyfive_square2.png");
}

.hyfive3-1 {
    background-image: url("/vue/assets/img/hyfive_square3.png");
}

.kiosk1 {
    background-image: url("/vue/assets/img/MSDS_main_1_1.png");
}

.kiosk2 {
    background-image: url("/vue/assets/img/MSDS_main_1_2.png");
}

.kiosk3 {
    background-image: url("/vue/assets/img/MSDS_main_1_3.png");
}

.kiosk1-1 {
    background-image: url("/vue/assets/img/hyfive_square1.png");
}

.kiosk2-1 {
    background-image: url("/vue/assets/img/hyfive_square2.png");
}

.kiosk3-1 {
    background-image: url("/vue/assets/img/hyfive_square3.png");
}

.res-info-container {
    display: flex;
    width: 100%;
    height: max-content;
    padding: 140px 20px;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
}

.info-text-div {
    width: 50%;
}

.info-img-div {
    background-image: url('/vue/assets/img/회사이미지.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
    aspect-ratio: 1;
    max-width: 570px;
    max-height: 488px;
    margin-right: 20px;
}

.news-box {
    width: 100%;
    display: flex;
    border: 1px solid #cfcfcf;
    aspect-ratio: 3/1;
    max-height: 500px;
    margin-bottom: 65px;
}

.news-img-div {
    width: 45%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 5px;
}

.news-text-div {
    width: 55%;
    display: flex;
    flex-direction: column;
    padding: 30px 50px;

}

.news-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: max-content;
    margin-top: 92px;
}

.modal-cancle-btn {
    background-color: #ffffff;
    border: 1.5px solid #0057E1;
    color: #0057E1;
    font-size: 14px;
    width: 80px;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}

.modal-copy-btn {
    background-color: #0057E1;
    border: none;
    font-size: 14px;
    color: #ffffff;
    width: 110px;
    border-radius: 5px;
    padding: 10px;
    margin-left: 20px;
    cursor: pointer;
}

.modal1-table2-img {
    display: flex;
    width: 30%;
    height: 100%;
    min-height: 139px;
    margin-right: 9px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.modal1-table2-img img {
    margin-right: 13px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.title-2 {
    font-size: clamp(14px, 2vw, 24px);
    text-align: center;
    line-height: 30px;
}

.card-1 {
    box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.12), 2px 3px 6px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.card-1:hover {
    box-shadow: 8px 10px 16px rgba(0, 0, 0, 0.25), 4px 6px 6px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1600px) {
    .intro-btn {
        width: 30%;
        min-width: 220px;
        max-width: 320px;
        background-color: transparent;
        margin: 0px 15px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        aspect-ratio: 1/2;
        color: white;
        background-color: white;
        display: flex;
        overflow: hidden;
        justify-content: center;
        /* flex-direction: column; */
    }

    .intro-inner-text {
        color: white;
        font-size: 22px;
        font-weight: 700;
        bottom: 0;
        color: white;

        transition: transform 0.3s ease;
    }

    .intro-inner-sub {
        width: 100%;
        color: white;
        font-size: 15px;
        font-weight: 500;
        height: 90px;
        /* transform: translateY(100%); */
    }

    .transf {
        transition: transform 0.8s ease;
        transform: translateY(55%);
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center;
        position: relative;
        justify-content: center;
        text-align: left;
        padding-left: 12px;
    }

    .img-container {
        margin-top: 20px;
        /* flex-direction: column; */
        width: 80%;

    }

    .img-container-kiosk {
        margin-top: 20px;
        /* flex-direction: column; */
        width: 80%;

    }

    /* .img-div {
        width: 100%;
        max-width: none;
        border-radius: 30px;
        margin-right: 15px;
        margin-bottom: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        aspect-ratio: 6/1;
        padding: 30px;
        font-size: 22px;
        font-weight: bold;
        color: #ffffff;
        display: flex;
        align-items: end;
    } */

    .hyfive1 {
        background-image: url("/vue/assets/img/tfm_HP_모바일플랫폼_img3.png");
    }

    .hyfive2 {
        background-image: url("/vue/assets/img/tfm_HP_모바일플랫폼_img4.png");
    }

    .hyfive3 {
        background-image: url("/vue/assets/img/tfm_HP_모바일플랫폼_img5.png");
    }

    .hyfive1-1 {
        background-image: url("/vue/assets/img/hyfive_square1.png");
    }

    .hyfive2-1 {
        background-image: url("/vue/assets/img/hyfive_square2.png");
    }

    .hyfive3-1 {
        background-image: url("/vue/assets/img/hyfive_square3.png");
    }
    
    .kiosk1 {
        background-image: url("/vue/assets/img/MSDS_main_1_1.png");
    }

    .kiosk2 {
        background-image: url("/vue/assets/img/MSDS_main_1_2.png");
    }

    .kiosk3 {
        background-image: url("/vue/assets/img/MSDS_main_1_3.png");
    }

    .kiosk1-1 {
        background-image: url("/vue/assets/img/hyfive_square1.png");
    }

    .kiosk2-1 {
        background-image: url("/vue/assets/img/hyfive_square2.png");
    }

    .kiosk3-1 {
        background-image: url("/vue/assets/img/hyfive_square3.png");
    }


    .res-info-container {
        display: flex;
        width: 100%;
        height: max-content;
        padding: 140px 20px;
        background-color: #ffffff;
        justify-content: center;
        align-items: center;
    }

    .info-text-div {
        width: 50%;
    }

    .info-img-div {
        background-image: url('/vue/assets/img/회사이미지.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 50%;
        aspect-ratio: 1;
        max-width: 570px;
        max-height: 488px;
        margin-right: 20px;
    }

    .news-box {
        width: 100%;
        display: flex;
        flex-direction: row;
        border: 1px solid #cfcfcf;
        aspect-ratio: 3/1;
        max-height: 500px;
        margin-bottom: 65px;
    }

    .news-img-div {
        width: 45%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news-text-div {
        width: 55%;
        display: flex;
        flex-direction: column;
        padding: 30px 50px;
    }

    .news-box-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: max-content;
        margin-top: 92px;
    }


}

@media (max-width: 1000px) {
    .res-wid {
        justify-content: center;
        width: 100%;
    }

    .res-fd {
        flex-direction: row;
    }

    .res-col {
        flex-direction: column;
    }

    .mb-header {
        display: flex;
    }

    .pc-header {
        display: none;
    }

    .res-fd {
        flex-direction: column;
    }

    .main-container {
        display: none;
    }

    .mb-main-container {
        display: block;
    }

    .res-info-container {
        display: flex;
        width: 100%;
        height: max-content;
        padding: 140px 20px;
        background-color: #ffffff;
        justify-content: center;
        flex-direction: column;
    }

    .info-text-div {
        width: 90%;
    }

    .info-img-div {

        width: 90%;
        aspect-ratio: 1;
        max-width: 570px;
        max-height: 488px;
        margin: 0;
    }

    .news-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid #cfcfcf;
        aspect-ratio: unset;
        max-height: 650px;
        margin-bottom: 65px;
    }

    .news-img-div {
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news-text-div {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 10px 10px;
    }

    .news-box-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 95%;
        height: max-content;
        margin-top: 92px;
    }

    .modal1-table2-img {

        flex-direction: column;
    }

    .modal1-table2-img img {
        margin-bottom: 8px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .title-2 {

        text-align: left;

    }
}