body.active {
    overflow-y: hidden;
}
body.active::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 99;
}
* {
    word-break: keep-all;
    font-weight: normal;
}

/* 섹션 타이틀 */
.title-box {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.title-box .title {
    font-size: 4.4rem;
    font-weight: 700;
}
.title-box p {
    color: #555;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.1px;
}
.title-box .title .link-btn {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    color: #555555;
    transition: .3s;
}
.title-box .title .link-btn:hover {
    color: #F37321;
}

.top-btn {
    position: fixed;
    z-index: 10;
    bottom: 4rem;
    right: 2rem;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.top-btn.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1200px) {
    .title-box .title {
        font-size: 3.6rem;
    }
    .title-box p {
        font-size: 2rem;
    }
    .top-btn {
        width: 5rem;
    }
}
@media (max-width: 767px) {
    .title-box .title {
        font-size: 2.4rem;
    }
    .title-box p {
        font-size: 1.7rem;
    }
    .top-btn {
        width: 4rem;
    }
}


/********** ↓ header ↓ **********/

header {
    width: 100%;
    height: 11.2rem;
    position: fixed;
    top: 0;
    z-index: 10;
    transition: .3s;
    background-color: #fff;
}
header.active {
    background-color: #fff;
}

header .header-wrap {
    height: 100%;
}
header .header-wrap .logo {
    width: 26.8rem;
}
header ul {
    gap: 3.2rem;
}
header ul li {
    position: relative;
}
header ul li a,
header ul li a span {
    font-size: 1.9rem;
    font-weight: 700;
    color: #555555;
    white-space: nowrap;
    gap: 0.4rem;
}
header ul li a:hover, header ul li a:hover span {
    color: #F37321;
}
header ul li:nth-child(6) {
    border: 0.1rem solid #E85300;
    border-radius: 2.4rem;
    padding: 0.2rem;
}
header ul li:nth-child(6) a {
    color: #fff;
    border: 0.1rem solid #E85300;
    background-color: #F37321;
    border-radius: 2.2rem;
    padding: 1.1rem 1.3rem;
    display: block;
}
header ul li:nth-child(6) a:hover {
    background-color: #E85300;
    border: 0.1rem solid #E85300;
    color: #FFFFFF;
}

header ul li a.active,
header ul li a.active span {
    color: #E85300;
}
header ul li a i {
    background: url(../img/ico_arrow-down.svg)no-repeat center/cover;
    width: 2rem;
    height: 2rem;
}
.menu-btn {
    background: url(../img/ico_menu.svg)no-repeat center/cover;
    width: 3.2rem;
    height: 3.2rem;
    cursor: pointer;
}
header ul li .menu-box-2 {
    position: absolute;
    left: 0;
    top: 100%;
    /* background-color: #F9F9F9; */
    padding: 2rem 0 0 0;
    border-radius: 0.8rem;
    /* margin-top: 2rem; */
    visibility: hidden;
    transition: all 0.3s;
}
header ul li ul.menu-box-2  {
    padding: 2rem 2rem 2rem 0;
}
header ul li .menu-box-2 li {
    background-color: #F9F9F9;
    padding: 2rem 2rem 0 2rem;
}
header ul li .menu-box-2 li a:first-child {
    border-radius: 8px 8px 0 0;
}
header ul li .menu-box-2 li:last-child {
    border-radius: 0 0 8px 8px;
    padding-bottom: 2rem;
}
header ul li .menu-box-2 li a {
    display: block;
    border-bottom: 0.1rem solid transparent;
}
header ul li .menu-box-2 li a,
header ul li .menu-box-2 li a span {
    color: #000;
    font-size: 1.7rem;
    line-height: 1.4;
}
header ul li .menu-box-2 li a p {
    padding-top: 0.4rem;
    color: #A9A9A9;
    font-size: 1.5rem;
    line-height: 1.4;
}
header ul li .menu-box-2 li a {
    padding-bottom: 1.2rem;
    position: relative;
}
header ul li .menu-box-2 li a::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.1rem;
    background-color: #F37321;
    transition: .3s;
}
header ul li .menu-box-2 li a:hover::after,
header ul li .menu-box-2 li a.active::after {
    width: 100%;
}
header ul li .menu-box-2 li a:hover,
header ul li .menu-box-2 li a:hover span,
header ul li .menu-box-2 li a.active,
header ul li .menu-box-2 li a.active span {
    color: #F37321;
}
header ul li .menu-2:hover + .menu-box-2,
header ul li .menu-box-2:hover {
    visibility: visible;
}

/* side-menu */
.side-menu .header,
.side-menu .middle-box {
display: none;
}

@media (max-width: 1320px) {
    header {
        height: 8.8rem;
    }
    header .header-wrap .logo,
    .side-menu .logo {
        width: 23rem;
    }
    header .header-wrap ul {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .side-menu {
        display: block;
        z-index: 1000;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: #fff;
        transition: all .3s;
    }
    .side-menu.active {
        left: 0;
    }
    .side-menu .header {
        position: relative;
        display: flex;
        height: 6.8rem;
    }
    .side-menu .middle-box {
        display: block;
        margin-top: 4.8rem;
    }
    .side-menu ul {
        gap: 3.2rem;
        padding: 0 4rem;
    }
    .side-menu ul li a, .side-menu ul li a span {
        font-size: 1.6rem;
        font-weight: 700;
        color: #555;
        gap: 0.4rem;
    }
    .side-menu ul li a.active,
    .side-menu ul li a.active span {
        color: #F37321;
    }
    .side-menu ul li:nth-child(6) a {
        color: #E85300;
        padding: 0.8rem 2rem;
        border-radius: 2.2rem;
        border: 0.1rem solid #E85300;
        display: block;
    }
    .side-menu ul li a i {
        background: url(../img/ico_arrow-down.svg)no-repeat center/cover;
        width: 2rem;
        height: 2rem;
    }
    .side-menu .menu-box-2 {
        padding: 2rem;
        background-color: #F9F9F9;
        margin-top: 1.6rem;
    }
    .side-menu .menu-box-2 li a {
        display: block;
    }
    .side-menu ul li .menu-box-2 li a p {
        padding-top: 0.4rem;
        color: #A9A9A9;
        font-size: 1.5rem;
        line-height: 1.4;
    }
    .side-menu ul li .menu-box-2 li:first-child {
        margin-bottom: 2.4rem;
    }
    .side-menu .menu-box-2 li:first-child a {
        padding-bottom: 1.2rem;
    }
    .side-menu .menu-box-2.active {
        display: block;
    }
    .side-menu ul li .menu-box-2 li a.active {
        border-bottom: 0.1rem solid #F37321;
    }
    .side-menu ul li .menu-box-2 li a.active,
    .side-menu ul li .menu-box-2 li a.active span {
        color: #F37321;
    }
}

@media (max-width: 1200px) {
    header {
        height: 6.4rem;
    }
    header .header-wrap .logo,
    .side-menu .logo {
        width: 16.5rem;
    }
    .menu-btn, .close-btn {
        width: 2.8rem;
        height: 2.8rem;
    }
}

@media (max-width: 767px) {
    header {
        height: 6rem;
    }
    header .header-wrap .logo,
    .side-menu .logo {
        width: 12.4rem;
    }
    .menu-btn, .close-btn {
        width: 2.4rem;
        height: 2.4rem;
    }
    .side-menu ul {
        align-items: flex-start;
    }
}


/****************************** 메인 ******************************/


/* ↓ main-visual ↓ */

.video-wrap {
    position:relative;
    padding-bottom: 56.25%;
    padding-top: 0rem;
    height: 0;
    overflow: hidden;
}
.video-wrap iframe,
.video-wrap object,
.video-wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.video-wrap::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.main-visual .video-wrap,
.about-ocean .video-wrap {
    height: 100vh;
    width: 100%;
    padding-bottom: 0;
}
.main-visual .video-wrap video,
.about-ocean .video-wrap video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.home .main-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.home .main-text p,
.home .main-text h1 {
    color: #fff;
    filter: drop-shadow(0 0.4rem 0.4rem rgba(0, 0, 0, 0.25));
    line-height: 1.5;
}
.home .main-text p {
    font-size: 4.8rem;
}
.home .main-text h1 {
    font-size: 6.4rem;
    font-weight: 900;
}
.home .main-text img {
    margin-top: 8rem;
    width: 34rem;
}
.home .main-scroll {
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 2rem;
}
.home .main-scroll p {
    font-size: 1.4rem;
    font-weight: 700;
}
.home .main-scroll img {
    animation-name: moving_2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}



/********** ↓ about ↓ **********/

.about {
    padding-top: 11.2rem;
}
.home .main-about {
    padding-top: 12.8rem;
    padding-bottom: 9rem;
}
.home .main-about .title-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10rem;
    border-top: 0.2rem solid #000;
    padding-top: 4rem;
}
.home .about-video .video-wrap::before {
    display: none;
}
.about-video .video-wrap iframe, .about-video .video-wrap object, .about-video .video-wrap embed {
    pointer-events: all;
}
.home .about-video .item-box {
    gap: 4rem;
    margin-top: 11.2rem;
}
.home .about-video .item {
    gap: 3.6rem;
    width: 100%;
}
.home .about-video video {
    width: 100%;
    background-color: #000;
}
.home .about-video .text-box h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
}
.home .about-video .text-box p {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}
.home .about-video .text-box .tag {
    line-height: 1.4;
    gap: 1.6rem;
    padding: 0.4rem 2rem;
    border-radius: 2rem;
    background-color: #FFEDDB;
    margin-top: 1.2rem;
    color: #000;
}
.home .about-video .text-box .tag span {
    font-weight: 400;
    color: #E85300;
}
.home .about-video .item-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20rem;
    height: 20rem;
    cursor: pointer;
}
.home .about-video .item-video .play-btn p {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}
.play-round {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}
.play-round::after,
.play-round::before {
    content: '';  
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ED710080;
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}
.play-round::after {
    animation-delay: 1s;
}
  
@keyframes animloader {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
}


/* ↓ questions ↓ */

.questions {
    padding-top: 9rem;
    padding-bottom: 25.6rem;
}
.questions ul {
    width: 86.4rem;
    gap: 4.8rem;
}
.questions ul li {
    gap: 2rem;
}
.questions ul li h2 {
    font-size: 2.6rem;
    font-weight: 700;
    gap: 0.8rem;
}
.questions ul li h2 span {
    color: #E85300;
    font-weight: 700;
}
.questions ul li p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    padding-left: 3.2rem;
    font-family: "Inter", sans-serif;
}
      


/********** ↓ geoje ↓ **********/

.geoje .text-box {
    bottom: 2rem;
    right: 12rem;
}
.geoje .text-box p {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}
.geoje .text-box h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
}


@media (max-width: 1320px) {
    .about {
        padding-top: 8.8rem;
    }
    .home .main-about .title-box .title {
        font-size: 3.6rem;
    }
    .home .main-about .title-box p {
        font-size: 2rem;
    }
    .home .main-about {
        padding-bottom: 8rem;
    }
    .home .main-about .title-box {
        margin-bottom: 8.8rem;
    }
    .home .about-video .item-box {
        margin-top: 10rem;
    }
    .questions {
        padding-top: 8rem;
        padding-bottom: 15rem;
    }
    .questions > div {
        flex-direction: column;
        gap: 6.8rem;
    }
    .questions ul {
        width: 100%;
    }
    .geoje .text-box {
        bottom: 6rem;
        right: 10rem;
    }
    .geoje .text-box p {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .geoje .text-box h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .about {
        padding-top: 6.4rem;
    }
    .home .main-text p {
        font-size: 3.3rem;
    }
    .home .main-text h1 {
        font-size: 4.4rem;
    }
    .home .main-text img {
        width: 25rem;
    }
    .home .main-scroll {
        gap: 1.2rem;
    }
    .home .main-scroll p {
        font-size: 1rem;
    }
    .home .main-scroll img {
        width: 6.2rem;
    }
    .home .main-about {
        padding-top: 10rem;
        padding-bottom: 8rem;
    }
    .home .main-about .title-box {
        padding-top: 3.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.6rem;
        margin-bottom: 6rem;
    }
    .home .main-about .title-box .title {
        font-size: 2.8rem;
    }
    .home .main-about .title-box p {
        font-size: 2.2rem;
        width: 100%;
        text-align: right;
    }
    .home .about-video .item {
        gap: 2.8rem;
    }
    .home .about-video .text-box h2 {
        font-size: 2rem;
    }
    .home .about-video .text-box .tag {
        font-size: 2rem;
    }
    .home .about-video .text-box p {
        font-size: 1.7rem;
    }
    .questions {
        padding-top: 6rem;
        padding-bottom: 12rem;
    }
    .questions ul {
        gap: 4rem;
    }
    .questions ul li {
        gap: 1.2rem;
    }
    .questions ul li h2 {
        font-size: 2rem;
    }
    .questions ul li p {
        font-size: 1.7rem;
    }
    .geoje .text-box {
        right: 4rem;
    }
}
@media (max-width: 767px) {
    .about {
        padding-top: 6rem;
    }
    .home .main-text p {
        font-size: 2.2rem;
    }
    .home .main-text h1 {
        font-size: 3.3rem;
    }
    .home .main-text img {
        width: 20rem;
    }
    .home .main-scroll {
        gap: 0.8rem;
        bottom: 4rem;
        width: 4rem;
    }
    .home .main-scroll p {
        font-size: 0.8rem;
    }
    .home .main-about {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    .home .main-about .title-box {
        padding-top: 2.8rem;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    .home .main-about .title-box .title {
        font-size: 2rem;
    }
    .home .main-about .title-box p {
        font-size: 1.5rem;
    }
    .home .about-video .item-video .play-btn {
        width: 10rem;
        height: 10rem;
    }
    .home .about-video .item-video .play-btn p {
        font-size: 1rem;
    }
    .home .about-video .item {
        gap: 2rem;
    }
    .home .about-video .text-box h2 {
        font-size: 1.7rem;
    }
    .home .about-video .text-box .tag {
        font-size: 1.4rem;
    }
    .home .about-video .item-box {
        margin-top: 4.8rem;
        flex-direction: column;
        gap: 4.8rem;
    }
    .questions {
        padding-top: 5rem;
        padding-bottom: 10rem;
    }
    .questions > div {
        gap: 4.8rem;
    }
    .questions ul li h2 {
        font-size: 1.7rem;
    }
    .questions ul li p {
        font-size: 1.5rem;
    }
    .geoje .text-box {
        right: 2.6rem;
        bottom: 1rem;
    }
    .geoje .text-box p {
        font-size: 1.4rem;
    }
    .geoje .text-box h1 {
        font-size: 1.7rem;
    }
}
@media (max-width: 414px) {
    .geoje .text-box {
        bottom: 0;
        right: 4rem;
    }
}
/********** ↓ footer ↓ **********/

footer {
    padding: 16rem 0;
    background-color: #000;
}
footer .logo-box p {
    font-size: 1.8rem;
    font-weight: 100;
    color: #fff;
    letter-spacing: 0;
}
footer .logo-box p:first-of-type {
    line-height: 1.4;
    margin-bottom: 0.8rem;
    margin-top: 2.4rem;
}
footer .footer-menu .menu-box {
    border-top: 0.2rem solid #fff;
    width: 20rem;
}
footer .footer-menu .menu-box:last-of-type {
    width: 28rem;
}
footer .footer-menu .menu-box p {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: 2rem 0 2.8rem 0;
}
footer .footer-menu .menu-box ul {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
footer .footer-menu .menu-box li {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
}
footer .footer-menu .menu-box li:hover {
    color: #F37321;
}
footer .footer-menu .menu-box:not(:last-of-type) li a:hover {
    color: #F37321;
}
footer .footer-menu .apply-btn {
    font-size: 2rem;
    font-weight: 300;
    padding: 1.2rem 2.4rem;
    border: 0.2rem solid #fff;
    gap: 2rem;
}
footer .footer-menu .apply-btn i {
    background: url(../img/ico_arrow-right.svg)no-repeat center/cover;
    width: 2rem;
    height: 2rem;
    display: block;
}
footer .footer-menu .apply-btn:hover {
    border-color: #F37321;
    color: #F37321;
}
footer .footer-menu .apply-btn:hover i {
    content: url(../img/ico_arrow-right-hover.svg);
}

@media (max-width: 1320px) {
    footer .con {
        flex-direction: column;
        gap: 8rem;
    }
    footer .logo-box {
        order: 1;
    }
    footer .footer-menu {
        justify-content: space-between;
    }
}
@media (max-width: 1200px) {
    footer {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    footer .con {
        gap: 6rem;
    }
    footer .footer-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4.8rem;
    }
    footer .footer-menu .menu-box,
    footer .footer-menu .menu-box:last-of-type {
        width: 100%;
    }
    footer .footer-menu .menu-box p {
        font-size: 1.7rem;
    }
    footer .footer-menu .menu-box ul {
        flex-direction: row;
    }
    footer .footer-menu .menu-box li {
        font-size: 1.5rem;
    }
    footer .footer-menu .apply-btn {
        width: 14rem;
        font-size: 1.7rem;
    }
    footer .logo-box img {
        width: 20.6rem;
    }
    footer .logo-box p {
        font-size: 1.2rem;
    }
    footer .logo-box p:first-of-type {
        margin-bottom: 1.2rem;
        margin-top: 2rem;
    }
}
@media (max-width: 767px) {
    footer .con {
        gap: 4.8rem;
    }
    footer .footer-menu {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    footer .footer-menu .apply-btn {
        width: 100%;
        justify-content: space-between;
    }
}



/****************************** About Hanwha ******************************/

.about .main {
    /* background: url(../img/img_about-1.png)no-repeat center/cover; */
    width: 100%;
    height: 60rem;
}
.about .main > img {
    object-fit: cover;
}
.about .main-text p {
    font-size: 4.4rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 2rem;
}
.about .main-text h1,
.about .main-text h1 span {
    font-size: 6.4rem;
    color: #fff;
}
.about .main-text h1 {
    font-weight: 700;
}
.about .tab-area {
    padding-top: 12rem;
}
.about .tab-area .tab-menu-box-1 {
    gap: 17.3rem;
}
.about .tab-area .tab-menu-box-1 li a {
    font-size: 2.8rem;
    position: relative;
    gap: 1.6rem;
}
.about .tab-area .tab-menu-box-1 li a:hover {
    color: #F37321 ;
}
.about .tab-area .tab-menu-box-1 li.active a {
    color: #F37321;
}
.about .tab-area .tab-menu-box-1 li a::after {
    position: relative;
    content: '';
    background: url(../img/ico_tab-arrow.svg)no-repeat center/cover;
    width: 2.8rem;
    height: 2.8rem;
    display: block;
}
.about .tab-area .tab-menu-box-1 li.active a::after {
    background: url(../img/ico_tab-arrow_active.svg)no-repeat center/cover;
}
.about .about-logo {
    padding: 10rem 0;
}


/********** ↓ tab-container ↓ **********/

.about .tab-cnt-box-1 .con-1 {
    border-top: 0.2rem solid #000;
    padding-bottom: 12rem;
}
.about .tab-cnt-box-1 .con-1 .title-box:first-of-type {
    padding-top: 4.8rem;
    padding-bottom: 6rem;
    border-bottom: 0.1rem solid #A9A9A9;
}
.about .tab-cnt-box-1 .con-1 .title-box:last-of-type {
    padding-top: 6rem;
}
.about .tab-cnt-box-1 .con-1 .title-box h1,
.about .tab-cnt-box-1 .con-1 .title-box p {
    line-height: 1.6;
}
.about .tab-cnt-box-1 .con-1 .title-box p {
    font-size: 2.2rem;
}
.about .about-img {
    background: url(../img/img_about-2.jpg)no-repeat center/cover;
    width: 100%;
    height: 40rem;
    overflow: hidden;
}
.about .tab-cnt-box-1 .con-2 {
    padding-top: 12rem;
    padding-bottom: 18rem;
}
.about .tab-cnt-box-1 .con-2 .title-box {
    border-top: 0.2rem solid #000;
    padding-top: 4rem;
    padding-bottom: 8rem;
}
.about .tab-cnt-box-1 .item-box {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 18rem;
}
.about .tab-cnt-box-1 .item-box .item {
    background-color: #F5F5F5;
    border-radius: 2rem;
    padding: 6rem 1.6rem;
}
.about .tab-cnt-box-1 .item-box .item .img-box {
    width: 16rem;
    height: 16rem;
}
.about .tab-cnt-box-1 .item-box .item h2 {
    margin-top: 4rem;
    margin-bottom: 2.4rem;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.4;
}
.about .tab-cnt-box-1 .item-box .item p {
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.4;
}
.about .tab-cnt-box-1 .item-box .item h2 span {
    font-weight: 700;
    color: #E85300;
}
.about .tab-cnt-box-1 .sub-title {
    gap: 1.2rem;
    margin-bottom: 10rem;
}
.about .tab-cnt-box-1 .sub-title h1 {
    font-size: 8rem;
    font-weight: 700;
}
.about .tab-cnt-box-1 .sub-title p {
    font-size: 2.2rem;
    font-weight: 300;
}
.about .tab-cnt-box-1 .tab-area-2 {
    padding: 0 6rem;
}
.about .tab-cnt-box-1 .tab-menu-box-2 {
    gap: 4rem;
    padding-bottom: 6rem;
}
.about .tab-cnt-box-1 .tab-menu-box-2 li a {
    font-size: 2.6rem;
    padding: 1.6rem 1rem 0 1rem;
    position: relative;
    transition: .3s;
}
.about .tab-cnt-box-1 .tab-menu-box-2 li.active a {
    color: #F37321;
    font-weight: 700;
}
.about .tab-cnt-box-1 .tab-menu-box-2 li a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: #F37321;
    transition: .3s;
}
.about .tab-cnt-box-1 .tab-menu-box-2 li:hover a {
    color: #F37321;
}
.about .tab-cnt-box-1 .tab-menu-box-2 li.active a::before,
.about .tab-cnt-box-1 .tab-menu-box-2 li:hover a::before {
    width: 100%;
}
.about .tab-cnt-box-2 .grid {
    grid-template-columns: 42.8rem calc(100% - 42.8rem);
}
.about .tab-cnt-box-2 .grid.active {
    display: grid;
}
.about .tab-cnt-box-2 .item {
    background-color: #FFF7EF;
    width: 100%;
    max-width: 48rem;
    height: 100%;
}
.about .tab-cnt-box-2 .item h2,
.about .tab-cnt-box-2 .item p {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
}
.about .tab-cnt-box-2 .item h2 {
    margin-bottom: 1.2rem;
    color: #F37321;
}
.about .tab-cnt-box-2 .item p {
    margin-bottom: 4rem;
}
.about .tab-cnt-box-2 .text-box {
    padding: 6rem;
    border: 0.1rem solid #FFEDDB;
    align-items: stretch;
}
.about .tab-cnt-box-2 .text-box ul {
    gap: 4rem;
}
.about .tab-cnt-box-2 .text-box li {
    gap: 2rem;
}
.about .tab-cnt-box-2 .text-box h3 {
    font-size: 2.2rem;
    line-height: 1.4;
}
.about .tab-cnt-box-2 .text-box p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    font-family: "Inter";
}
.about .business-area .title-box {
    border-top: 0.2rem solid #000;
    padding-top: 4rem;
    padding-bottom: 8rem;
}
.about .business {
    position: relative;
    height: 75.5rem;
}
.about .business article {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: 1s;
}
.about .business article .img-box {
    height: 100%;
}
.about .business article .img-box::after {
    position: absolute;
    content: '';
    background: linear-gradient(rgba(0,0,0,0) 30%, rgba(0,0,0,0.5));
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.about .business article img {
    object-fit: cover;
    height: 100%;
}
.about .business article .main-headline {
    bottom: 7rem;
    left: 6rem;
}
.about .business article .main-headline h2 {
    color: #fff;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.4;
    white-space: nowrap;
}
.about .business article .headline-inner {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: grid-template-rows;
}
.about .business article .headline-inner .inner-box {
    overflow: hidden;
    white-space: nowrap;
}
.about .business article .headline-inner p {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    color: #EEEEEE;
    padding-top: 2rem;
    padding-bottom: 5.2rem;
    transition: font-size 400ms ease;
}
.about .business article .headline-inner .tag-box {
    width: 84rem;
    gap: 1.2rem;
}
.about .business article .headline-inner .tag-box a {
    color: #D9D9D9;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0;
    padding: 0.4rem 1.2rem;
    border-radius: 2.2rem;
    border: 0.1rem solid #fff;
    transition: .3s;
}
.about .business article .headline-inner .tag-box a:hover {
    background-color: #fff;
    color: #000;
}
.about .business article:hover {
    flex: 0 1 75%;
}
.about .business article:hover .headline-inner {
    grid-template-rows: 1fr;
}
.about .business article:hover .main-headline h2 {
    font-size: 5.6rem;
}

/* tab1-2 */
.about #tab1-2 .title-box {
    padding-top: 4rem;
    border-top: 0.2rem solid #000;
    padding-bottom: 10rem;
}
.about .tab-menu-box-3 {
    gap: 1.2rem;
}
.about .tab-btn li {
    border: 0.1rem solid #A9A9A9;
}
.about .tab-btn li a {
    font-weight: 500;
    font-size: 2.2rem;
    border-top: 0.2rem solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.4rem 1.2rem;
    height: 100%;
    line-height: 1.4;
}
.about .tab-btn li.active {
    border: 0.1rem solid #F37321;
}
.about .tab-btn li.active a {
    font-weight: 700;
    color: #F37321;
    border-top: 0.2rem solid #F37321;
    border-top-width: 0.3rem;
}
.about .tab-cnt-box-3 {
    padding-bottom: 21rem;
}
/* .about .tab-cnt-box-3 > li {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s ease, transform 1s ease;
}
.about .tab-cnt-box-3 > li.show {
    opacity: 1;
    transform: translateY(0);
} */
.about .tab-cnt-box-3 .title-box-2 {
    gap: 3.2rem;
    padding: 6rem 0;
}
.about .tab-cnt-box-3 .img-area {
    background: url(../img/info-img-1.jpg)no-repeat center/cover;
    width: 100%;
    height: 50rem;
}
.about .tab-cnt-box-3 #tab3-2 .img-area {
    background-image: url(../img/info-img-2.jpg);
}
.about .tab-cnt-box-3 #tab3-3 .img-area {
    background-image: url(../img/info-img-3.jpg);
}
.about .tab-cnt-box-3 #tab3-4 .img-area {
    background-image: url(../img/info-img-4.jpg);
}
.about .tab-cnt-box-3 .text-box {
    margin-top: 6rem;
}
.about .tab-cnt-box-3 .text-box .sub-text {
    width: 100%;
    max-width: 33.2rem;
    gap: 1.2rem;
}
.about .tab-cnt-box-3 .text-box .sub-text .img-box {
    background-color: #EEEEEE;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    padding: 0.8rem;
}
.about .tab-cnt-box-3 .text-box .sub-text h2 {
    padding-right: 2rem;
    width: calc(100% - 4rem);
    display: flex;
    align-items: center;
}
.about .tab-cnt-box-3 .text-box .sub-text h2::after {
    content: '';
    position: absolute;
    width: 0.1rem;
    height: 2rem;
    background-color: #999;
    right: 0;
}
.about .tab-cnt-box-3 .text-box ul {
    gap: 2rem;
}
.about .tab-cnt-box-3 .text-box ul li {
    gap: 1.2rem;
    padding-left: 2rem;
}
.about .tab-cnt-box-3 .text-box ul li h3 {
    padding-left: 2rem;
    position: relative;
    display: flex;
}
.about .tab-cnt-box-3 .text-box ul li h3::before {
    position: absolute;
    content: '';
    left: 0;
    top: 1.2rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #555;
}
.about .tab-cnt-box-3 .text-box ul li a:hover {
    color: #F37321;
    text-decoration: underline;
}
.about .tab-cnt-box-3 .text-box .box {
    width: 50%;
}

@media (max-width: 1320px) {
    .about .business article .main-headline h2 {
        font-size: 2.6rem;
    }
    .about .business article .main-headline {
        bottom: 5.2rem;
        left: 4rem;
    }
    .about .tab-cnt-box-1 .item-box {
        margin-bottom: 16rem;
    }
}

@media (max-width: 1200px) {
    .about .main {
        height: 44rem;
    }
    .about .main-text p {
        font-size: 2.8rem;
    }
    .about .main-text h1,
    .about .main-text h1 span {
        font-size: 4rem;
    }
    .about .tab-area {
        padding-top: 8rem;
    }
    .about .about-logo {
        padding: 6rem 0;
        width: 21.6rem;
    }
    .about .tab-cnt-box-1 .con-1 {
        padding-bottom: 8.4rem;
    }
    .about .tab-cnt-box-1 .title-box h1 {
        font-size: 2.8rem;
    }
    .about .tab-cnt-box-1 .title-box p,
    .about .tab-cnt-box-1 .con-1 .title-box p {
        font-size: 2rem;
    }
    .about .tab-cnt-box-1 .con-1 .title-box:first-of-type {
        padding-top: 3.2rem;
    }
    .about .about-img {
        height: 30rem;
    }
    .about .tab-cnt-box-1 .con-2 {
        padding-top: 10rem;
        padding-bottom: 12rem;
    }
    .about .tab-cnt-box-1 .item-box {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        margin-bottom: 12rem;
    }
    .about .tab-cnt-box-1 .con-2 .title-box {
        padding-bottom: 6.8rem;
    }
    .about .tab-cnt-box-1 .item-box .item h2 {
        font-size: 2.4rem;
    }
    .about .tab-cnt-box-1 .item-box .item p {
        font-size: 1.8rem;
    }
    .about .tab-cnt-box-1 .sub-title {
        margin-bottom: 8rem;
    }
    .about .tab-cnt-box-1 .sub-title h1 {
        font-size: 6rem;
    }
    .about .tab-cnt-box-1 .sub-title p {
        font-size: 2rem;
    }
    .about .tab-cnt-box-1 .tab-area-2 {
        padding: 0;
    }
    .about .tab-cnt-box-2 .grid {
        grid-template-columns: 1fr;
    }
    .about .tab-cnt-box-2 .item {
        max-width: 100%;
        flex-direction: row;
        padding: 3.2rem 0;
        gap: 6rem;
    }
    .about .tab-cnt-box-2 .item p {
        margin-bottom: 0;
        font-size: 2rem;
    }
    .about .tab-cnt-box-2 .item .img-box {
        width: 17rem;
    }
    .about .tab-cnt-box-2 .text-box {
        padding: 4rem 3.2rem;
    }
    .about .tab-cnt-box-2 .text-box ul {
        gap: 3.2rem;
    }
    .about .tab-cnt-box-2 .text-box li {
        gap: 1.2rem;
    }
    .about .tab-cnt-box-2 .text-box h3 {
        font-size: 2rem;
    }
    .about .business {
        height: auto;
        flex-direction: column;
        gap: 2.8rem;
        padding: 0 4rem;
        padding-bottom: 12rem;
    }
    .about .business article .main-headline {
        bottom: 4.8rem;
        left: 4.8rem;
    }
    .about .business article .headline-inner {
        grid-template-rows: 1fr;
    }
    .about .business article .main-headline h2,
    .about .business article:hover .main-headline h2 {
        font-size: 3.2rem;
    }
    .about .business article .headline-inner p {
        padding-top: 0.8rem;
        padding-bottom: 2.8rem;
        font-size: 1.4rem;
    }
    .about .business article .headline-inner .tag-box {
        gap: 0.4rem;
        width: 100%;
        max-width: 48rem;
    }
    .about .business article .headline-inner .tag-box a {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
        border-radius: 1.2rem;
    }
    .about #tab1-2 .title-box {
        padding-top: 3.2rem;
        padding-bottom: 6rem;
    }
    .about .tab-menu-box-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .about .tab-btn li a {
        font-size: 2.2rem;
    }
    .about .tab-cnt-box-3 .title-box-2 h1 {
        font-size: 2.8rem;
    }
    .about .tab-cnt-box-3 .title-box-2 p {
        font-size: 2rem;
    }
    .about .tab-cnt-box-3 .text-box {
        flex-direction: column;
        gap: 2.4rem;
    }
    .about .tab-cnt-box-3 .text-box ul li h3,
    .about .tab-cnt-box-3 .text-box ul li p {
        font-size: 1.7rem;
    }
    .about .tab-cnt-box-3 .text-box .box {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about .main {
        height: 24rem;
    }
    .about .main-text p {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    .about .main-text h1, .about .main-text h1 span {
        font-size: 2.4rem;
    }
    .about .tab-area {
        padding-top: 4rem;
    }
    .about .tab-area .tab-menu-box-1 {
        gap: 0;
        justify-content: space-between;
        width: 100%;
    }
    .about .tab-area .tab-menu-box-1 li a {
        font-size: 1.8rem;
    }
    .about .tab-area .tab-menu-box-1 li a::after {
        width: 2rem;
        height: 2rem;
    }
    .about .about-logo {
        padding-top: 3.2rem;
        width: 14.4rem;
    }
    .about .tab-cnt-box-1 .title-box {
        padding-top: 2.8rem;
    }
    .about .tab-cnt-box-1 .con-2 .title-box {
        padding-top: 2.8rem;
        padding-bottom: 4rem;
    }
    .about .tab-cnt-box-1 .title-box h1 {
        font-size: 2.2rem;
    }
    .about .tab-cnt-box-1 .title-box p,
    .about .tab-cnt-box-1 .con-1 .title-box p {
        font-size: 1.7rem;
    }
    .about .tab-cnt-box-1 .con-1 {
        padding-bottom: 6.4rem;
    }
    .about .tab-cnt-box-1 .con-1 .title-box:first-of-type {
        padding-bottom: 4rem;
    }
    .about .tab-cnt-box-1 .con-1 .title-box:last-of-type {
        padding-top: 4rem;
    }
    .about .tab-cnt-box-1 .con-2 {
        padding-top: 8rem;
        padding-bottom: 10rem;
    }
    .about .tab-cnt-box-1 .item-box {
        margin-bottom: 10rem;
    }
    .about .tab-cnt-box-1 .item-box .item {
        padding: 3.2rem 2rem;
    }
    .about .tab-cnt-box-1 .item-box .item .img-box {
        width: 12rem;
        height: 12rem;
    }
    .about .tab-cnt-box-1 .item-box .item h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .about .tab-cnt-box-1 .sub-title h1 {
        font-size: 4rem;
    }
    .about .tab-cnt-box-1 .sub-title {
        margin-bottom: 4rem;
        gap: 2.4rem;
    }
    .about .tab-cnt-box-1 .sub-title p {
        font-size: 1.8rem;
    }
    .about .tab-cnt-box-1 .tab-menu-box-2 {
        gap: 1.2rem;
        padding-bottom: 4rem;
    }
    .about .tab-cnt-box-1 .tab-menu-box-2 li a {
        font-size: 2rem;
    }
    .about .tab-cnt-box-2 .item {
        flex-direction: column;
        gap: 3.2rem;
    }
    .about .tab-cnt-box-2 .item h2, .about .tab-cnt-box-2 .item p {
        font-size: 2.2rem;
    }
    .about .tab-cnt-box-2 .text-box {
        padding: 3.2rem 2rem;
    }
    .about .tab-cnt-box-2 .text-box h3 {
        font-size: 1.7rem;
    }
    .about .tab-cnt-box-2 .text-box p {
        font-size: 1.5rem;
    }
    .about .business {
        padding: 0 2rem 8rem 2rem;
    }
    .about .business-area .title-box {
        padding-bottom: 4.8rem;
    }
    .about .business article .img-box {
        height: 42rem;
    }
    .about .business article .main-headline {
        bottom: 2.8rem;
        left: 2rem;
        padding-right: 2rem;
    }
    .about .business article .main-headline h2, .about .business article:hover .main-headline h2 {
        font-size: 2.8rem;
    }
    .about #tab1-2 .title-box {
        padding-top: 2.8rem;
        padding-bottom: 4rem;
    }
    .about .tab-menu-box-3 {
        /* grid-template-columns: 1fr; */
        gap: 0.8rem;
    }
    .about .tab-btn li a {
        font-size: 1.8rem;
        padding: 1.2rem 0;
    }
    .about .tab-cnt-box-3 {
        padding-bottom: 10rem;
    }
    .about .tab-cnt-box-3 .title-box-2 {
        padding: 4rem 0;
    }
    .about .tab-cnt-box-3 .title-box-2 h1 {
        font-size: 2.4rem;
    }
    .about .tab-cnt-box-3 .title-box-2 p {
        font-size: 1.7rem;
    }
    .about .tab-cnt-box-3 .img-area {
        height: 18.8rem;
    }
    .about .tab-cnt-box-3 .text-box {
        margin-top: 4rem;
    }
    .about .tab-cnt-box-3 .text-box .sub-text h2 {
        font-size: 1.7rem;
    }
    .about .tab-cnt-box-3 .text-box ul li {
        flex-direction: column;
        gap: 0.8rem;
        padding-left: 0;
    }
    .about .tab-cnt-box-3 .text-box .box {
        flex-direction: column;
        gap: 0.8rem;
    }
}


/****************************** About Ocean ******************************/

/* .about-ocean .main {
    background-image: url(../img/img_about-3.png);
} */
.about-ocean .logo-area {
    margin: 0 auto;
    margin-top: 12rem;
    margin-bottom: 10rem;
    width: 45.6rem;
}
.about-ocean .title-text {
    padding-top: 6rem;
    gap: 9.6rem;
    border-top: 0.2rem solid #000;
    padding-bottom: 10rem;
}
.about-ocean .title-text .title-box {
    width: 40rem;
}
.about-ocean .title-text ul {
    width: 86.4rem;
    gap: 4rem;
}
.about-ocean .title-text ul h2 {
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 1.4;
}
.about-ocean .title-text  ul li {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.6;
}
.about .grid-box {
    grid-template-columns: 2fr 2fr;
    gap: 4rem 8rem;
    padding-bottom: 13.6rem;
}
.about .grid-box .item {
    border-top: 0.1rem solid #555;
    padding-top: 2.4rem;
}
.about .grid-box .item.underline {
    border-top: 2px solid #F37321;
  border-bottom: 0.1rem solid #ddd;
}
.about .grid-box .item h2 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 2rem;
    height: 17.4rem;
}
.about .grid-box .item h2 a {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 4rem 0;
    height: auto;
    transition: .3s;
}
.about .grid-box .item h2 a:hover {
    color: #F37321;
}
.about .to-do-area {
    padding-bottom: 12.4rem;
}
.about .to-do-area .title-box {
    padding-top: 4rem;
    padding-bottom: 12.4rem;
    border-top: 0.2rem solid #000;
}
.about-ocean .to-do-area .grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem 4rem;
}
.about .to-do-area .grid li {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.offshore .to-do-area .grid li {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s ease, transform 1s ease;
}
.about .to-do-area .grid li.show {
    opacity: 1;
    transform: translateY(0);
}
.about .to-do-area .grid li h3 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.about .to-do-area .grid li p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    font-family: "Inter";
}

/* 이미지ver */
/* .about-ocean .video-wrap::before {
    display: none;
} */
 
/* 영상ver */
.about-ocean .abs {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

@media (max-width: 1320px) {
    .about-ocean .video-wrap,
    .about-ocean .video-wrap video {
        height: 74rem;
    }
}
@media (max-width: 1200px) {
    .about-ocean .video-wrap,
    .about-ocean .video-wrap video {
        height: 43rem;
    }
    .about-ocean .logo-area {
        width: 34rem;
        margin: 8rem auto;
    }
    .about-ocean .title-text {
        padding-top: 4rem;
        padding-bottom: 8rem;
        gap: 3.2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .about-ocean .title-text ul {
        width: 100%;
        gap: 2rem;
    }
    .about-ocean .title-text ul h2 {
        font-size: 2.4rem;
    }
    .about-ocean .title-box .title {
        font-size: 2.8rem;
    }
    .about-ocean .title-text ul li {
        font-size: 2rem;
    }
    .about .grid-box {
        padding-bottom: 10rem;
        grid-template-columns: 1fr 1fr;
        gap: 2.8rem 2rem;
    }
    .about .grid-box .item {
        padding-top: 2rem;
    }
    .about .grid-box .item span {
        font-size: 1.7rem;
    }
    .about .grid-box .item h2 {
        font-size: 2.8rem;
        height: 15.2rem;
    }
    .about .grid-box .item h2 a {
        font-size: 2rem;
    }
    .about .to-do-area .title-box {
        padding-top: 3.2rem;
        padding-bottom: 6rem;
    }
    .about-ocean .to-do-area .grid {
        gap: 6rem 2rem;
    }
    .about .to-do-area .grid li {
        gap: 2rem;
    }
    .about .to-do-area .grid li h3 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    .about .to-do-area .grid li p {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {
    .about-ocean .video-wrap,
    .about-ocean .video-wrap video {
        height: 20.3rem;
    }
    .about-ocean .logo-area {
        width: 22.8rem;
        margin: 6rem auto 4rem auto;
    }
    .about-ocean .title-text {
        padding-top: 3.2rem;
        padding-bottom: 6rem;
        gap: 2.8rem;
    }
    .about-ocean .title-text ul h2 {
        font-size: 2rem;
    }
    .about-ocean .title-box .title {
        font-size: 2.4rem;
        flex-direction: column;
        align-items: self-start;
        justify-content: space-between;
        gap: 1.2rem;
    }
    .about-ocean .title-box .title .link-btn {
        margin-left: auto;
    }
    .about-ocean .title-text ul li {
        font-size: 1.7rem;
    }
    .about .grid-box {
        grid-template-columns: 1fr;
        padding-bottom: 6rem;
    }
    .about .grid-box .item:last-of-type h2 {
        height: auto;
        padding-left: 0;
        padding-right: 0;
    }
    .about .to-do-area .title-box {
        padding-bottom: 4rem;
    }
    .about .to-do-area {
        padding-bottom: 10rem;
    }
    .about-ocean .to-do-area .grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}
@media (max-width: 414px) {
    .about-ocean-bottom img{
        width: auto;
        height: 40rem;
        position: relative;
        left: -28em;
    }
}


/****************************** Hanwha Ocean Offshore  ******************************/

.link-btn {
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: 0;
    text-align: center;
    padding: 2rem 4rem;
    border-radius: 5rem;
    background-color: rgba(242, 242, 242, 0.95);
    gap: 2rem;
    transition: .3s;
}
.link-btn:hover {
    color: #F37321;
}
.link-btn i {
    background: url(../img/ico_link-arrow.svg)no-repeat center/cover;
    width: 2rem;
    height: 2rem;
}
/* .offshore .main {
    background-image: url(../img/img_offshore.png);
} */
.offshore .title-box {
    border-top: 0.2rem solid #000;
    padding-top: 4rem;
    margin-top: 12rem;
}
.offshore .title-box .link-btn {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    color: #555;
}
.offshore .grid-box {
    padding-top: 10rem;
}
.offshore .grid-box .item h2 {
    font-size: 8rem;
    /* height: auto; */
    height: 100%;
    line-height: 1;
    gap: 2rem;
    /* padding-bottom: 2rem; */
    margin: 4rem 0 5rem 0;
    background-color: #F9F9F9;
    border-radius: 1.2rem;
    color: #F37321;
}
.offshore .grid-box .item h2 p {
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.4;
}
.offshore .to-do-area {
    padding-bottom: 18rem;
}
.offshore .to-do-area .grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
}
.offshore .to-do-area .grid li h3 {
    line-height: 1.4;
    margin-bottom: 2.4rem;
}
.offshore .to-do-area .grid li p {
    color: #555;
    font-family: "Inter";
}
.offshore .tab-menu-box-4 {
    gap: 2rem;
}
.offshore .tab-cnt-box-4 {
    padding-top: 4rem;
    padding-bottom: 12rem;
}
.offshore .grid-box .table thead tr th {
    height: 4.4rem;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
}
.offshore .grid-box .table thead tr:last-of-type th {
    background-color: #F2F2F2;
    border-bottom: 0.2rem solid #000;
}
.offshore .grid-box .table tbody tr td {
    height: 2.9rem;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
    border-bottom: 0.1rem solid #000;
}

@media (max-width: 1200px) {
    .offshore .title-box {
        margin-top: 10rem;
        padding-top: 3.2rem;
    }
    .offshore .title-box .title {
        font-size: 2.8rem;
    }
    .offshore .title-box .link-btn {
        font-size: 1.6rem;
    }
    .offshore .title-box .link-btn i {
        width: 1.6rem;
        height: 1.6rem;
    }
    .offshore .grid-box {
        padding-top: 6rem;
    }
    .offshore .grid-box .item h2 p {
        font-size: 1.5rem;
    }
    .offshore .tab-menu-box-4 {
        gap: 1.2rem;
    }
    .about.offshore .tab-btn li a {
        text-align: left;
        justify-content: flex-start;
        line-height: 1.4;
        padding: 2rem;
    }
    .offshore .tab-cnt-box-4 {
        padding-top: 6rem;
        padding-bottom:  4.6rem;
    }
    .offshore .to-do-area {
        padding-bottom: 12rem;
    }
    .offshore .to-do-area .grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem 2.8rem;
    }
}

@media (max-width: 767px) {
    .offshore .title-box {
        margin-top: 4.8rem;
        padding-top: 2.8rem;
    }
    .offshore .title-box .title {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1.2rem;
    }
    .offshore .title-box .link-btn {
        margin-left: auto;
    }
    .offshore .tab-menu-box-4 {
        flex-direction: column;
        gap: 0.8rem;
    }
    .offshore .tab-cnt-box-4 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .offshore .to-do-area .grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .link-btn {
        font-size: 1.7rem;
        padding: 1.6rem 4rem;
    }
    .link-btn i {
        width: 1.6rem;
        height: 1.6rem;
    }
    .offshore .grid-box .item h2 {
        margin: 2rem 0 2.4rem 0;
    }
}


/****************************** Apply Info  ******************************/

/* .apply-info .main {
    background-image: url(../img/img_apply.png);
} */
.apply-info .title-box .title {
    border-top: 0.2rem solid #000;
    padding-top: 4rem;
    margin-top: 12rem;
    margin-bottom: 10rem;
    font-weight: 400;
}
.apply-info .wrap {
    width: 100%;
    max-width: 108rem;
    margin-left: auto;
}
.apply-info .wrap .text-wrap {
    /* margin-top: 10rem; */
}
.apply-info .wrap .text-wrap .sub-title {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 6.4rem;
}
.apply-info .wrap .text-wrap .sub-title h2 {
    font-weight: 700;
    font-size: 3.2rem;
}
.apply-info .wrap .text-wrap .sub-title p {
    font-weight: 700;
    font-size: 2.4rem;
}
.apply-info .wrap .text-wrap .step-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 12rem;
}
.apply-info .wrap .text-wrap .step-list li {
    display: flex;
    gap: 4.8rem;
    position: relative;
    z-index: 2;
}
.apply-info .wrap .text-wrap .step-list li .text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.apply-info .wrap .text-wrap .step-list li .text .tit {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.4;
}
.apply-info .wrap .text-wrap .step-list li .text .desc {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #555555;
    font-family: "Inter", sans-serif;
}
.apply-info .wrap .text-wrap .step-list li .num {
    width: 100%;
    max-width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #EEEEEE;
}
.apply-info .wrap .text-wrap .step-list li .num span {
    font-weight: 700;
    font-size: 1.9rem;
    text-align: center;
}
.apply-info .wrap .text-wrap .step-list li:first-of-type .num {
    background-color: #fff;
    border: 0.1rem solid #A9A9A9;
}
.apply-info .wrap .text-wrap .step-list li:last-of-type .num {
    background-color: #F37321;
}
.apply-info .wrap .text-wrap .step-list li:last-of-type .num span {
    color: #fff;
}
.apply-info .wrap .text-wrap .step-list::after {
    position: absolute;
    content: '';
    width: 0.1rem;
    height: calc(100% - 4.8rem);
    background-color: #DDDDDD;
    left: 2.4rem;
}
.apply-info .bbox {
    height: 44rem;
    margin-bottom: 10rem;
}
.apply-info .wrap-img {
    background: url(../img/img_apply-img-2.jpg)no-repeat center/cover;
    width: 100%;
    height: 100%;
}
#container {
    height: auto;
    position: relative;
}
#square {
    height: 40rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
    margin-top: 20rem;
    transform: scale(0.75) translateY(0px);
}
  
/* 이미지 스타일 */
#square img {
object-fit: cover;
width: 100%;
height: 100%;
/* transition: transform 0.5s ease; */
}
.ani-title {
    width: 100%;
    z-index: 2;
    top: 0;
    font-weight: 800;
    letter-spacing: 0;
}

@media (max-width: 1320px) {
    #square {
        margin-top: 10rem;
    }
}
@media (max-width: 1200px) {
    #square {
        margin-top: 0;
    }
    .ani-title {
        font-size: 3.2rem;
    }
    .apply-info .wrap {
        max-width: 80rem;
    }
    .apply-info .wrap .text-wrap .step-list::after {
        height: calc(100% - 8rem);
    }
    .apply-info .title-box .title {
        font-size: 2.8rem;
        padding-top: 3.2rem;
        margin-top: 10rem;
    }
    .apply-info .wrap .img-box {
        height: 40rem;
    }
    .apply-info .wrap .img-box img {
        height: 100%;
        object-fit: cover;
    }
    .apply-info .wrap .text-wrap {
        margin-top: 0;
        padding: 0 4rem;
    }
    .apply-info .wrap .text-wrap .sub-title {
        margin-bottom: 4.4rem;
    }
    .apply-info .wrap .text-wrap .sub-title h2 {
        font-size: 2.8rem;
    }
    .apply-info .wrap .text-wrap .sub-title p {
        font-size: 2rem;
    }
    .apply-info .wrap .text-wrap .step-list {
        gap: 6rem;
    }
    .apply-info .wrap .text-wrap .step-list li {
        gap: 2.8rem;
    }
    .apply-info .wrap .text-wrap .step-list li .text {
        gap: 1.2rem;
    }
    .apply-info .wrap .text-wrap .step-list li .text .tit {
        font-size: 2rem;
    }
    .apply-info .wrap .text-wrap .step-list li .text .desc {
        font-size: 1.5rem;
    }
    .apply-info .wrap .text-wrap .step-list li .num {
        max-width: 4rem;
        height: 4rem;
    }
    .apply-info .wrap .text-wrap .step-list::after {
        left: 2rem;
    }
    .apply-info .bbox {
        height: 32rem;
        margin-bottom: 8rem;
    }
}

@media (max-width: 767px) {
    .ani-title-wrap {
        padding-bottom: 4rem;
    }
    .ani-title {
        font-size: 2.8rem;
    }
    .apply-info .title-box .title {
        font-size: 2.2rem;
        padding-top: 2.8rem;
        margin-top: 4.8rem;
        margin-bottom: 4.8rem;
    }
    .apply-info .wrap .img-box {
        height: 18.7rem;
    }
    .apply-info .wrap .text-wrap {
        /* margin-top: 6rem; */
        padding: 0 2rem;
    }
    .apply-info .wrap .text-wrap .sub-title {
        margin-bottom: 4rem;
    }
    .apply-info .wrap .text-wrap .sub-title h2 {
        font-size: 2.4rem;
    }
    .apply-info .wrap .text-wrap .sub-title p {
        font-size: 1.6rem;
    }
    .apply-info .wrap .text-wrap .step-list {
        gap: 4rem;
        margin-bottom: 4.4rem;
    }
    .apply-info .wrap .text-wrap .step-list li {
        gap: 1.6rem;
    }
    .apply-info .wrap .text-wrap .step-list::after {
        height: calc(100% - 10rem);
    }
    .apply-info .bbox{
        height: 15rem;
        margin-bottom: 6rem;
    }
    .apply-info .wrap:last-child .text-wrap .step-list {
        margin-bottom: 8rem;
    }
}

@media(max-width: 600px) {
    .about .about-img {
        background-position-x: -68rem
    }
}


/****************************** Global Presence  ******************************/

/* .global .main {
    background-image: url(../img/img_global.png);
} */
.global .title-box {
    padding-top: 4rem;
    border-top: 0.2rem solid #000;
    padding-bottom: 15rem;
}
.global .tab-menu-box-5 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 133rem;
}

.global .tab-cnt-box-5 {
    padding-top: 15rem;
}
.global .tab-cnt-box-5 .title-box {
    padding-bottom: 4rem;
    border-top: 0;
    border-bottom: 0.2rem solid #000;
}
.global .tab-cnt-box-5 .title {
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
}
.global .tab-cnt-box-5 .title img {
    width: 2.8rem;
}
.global .tab-cnt-box-5 .map-menubox-2 {
    background-color: #fff;
    top: calc(100% + 5.5rem);
    left: 0;
    padding: 4rem;
    border: 0.1rem solid #A9A9A9;
    width: auto;
    transform: none;
    display: none;
}
.global .tab-cnt-box-5 .map-menubox-2.active {
    display: block;
}
.global .tab-cnt-box-5 .map-menubox-2 a {
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 1.6;
    color: #555;
    display: block;
    white-space: nowrap;
}
.global .tab-cnt-box-5 .map-menubox-2 a:hover {
    color: #000;
}
.map-wrap {
    width: 100%;
    height: 66.4rem;
}
.map-wrap .map {
    top: 0;
}
.map-wrap .map-5 {
    right: 0;
}
.map-wrap .map-2 {
    left: 0;
    top: 15rem;
    pointer-events: none;
}
.map-wrap .map-3 {
    left: 4rem;
    top: 1.918rem;
}
.map-wrap .map-3-1 {
    top: 1.5rem;
}
.map-wrap .map-4 {
    left: 29.5rem;
    top: 13.7rem;
}
.map-wrap .map-1 {
    top: 32.8rem;
    right: 14rem;
}
.map-area {
    top: 0;
}
.tab-menu-box-5 {
    top: 0;
}
.tab-menu-box-5 li.active {
    display: block;
}
.tab-cnt-box-5 .list-box li > a {
    font-weight: 500;
    font-size: 3.2rem;
    padding: 4rem;
    border-bottom: 0.1rem solid #eee;
    color: #AAAAAA;
}
.tab-cnt-box-5 .list-box li.active > a {
    font-weight: 700;
    border-bottom: none;
    color: #000;
}
.tab-cnt-box-5 .list-box li > a i {
    background: url(../img/ico_plus.svg)no-repeat center/cover;
    width: 3.2rem;
    height: 3.2rem;
}
.tab-cnt-box-5 .list-box li.active > a i {
    background-image: url(../img/ico_minus.svg);
}
.tab-cnt-box-5 .list-box li .box {
    display: none;
    background-color: #F2F2F2;
    padding: 4rem 8rem;
}
.tab-cnt-box-5 .list-box li .box:not(:last-of-type) {
    margin-bottom: 1.6rem;
}
.tab-cnt-box-5 .list-box li .box h2 {
    font-weight: 700;
    font-size: 3.2rem;
}
.tab-cnt-box-5 .list-box li .box > p {
    margin-top: 1.6rem;
}
.tab-cnt-box-5 .list-box li .box p,
.tab-cnt-box-5 .list-box li .box a  {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    line-height: 1.5;
}
.tab-cnt-box-5 .list-box li .box .tag-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3.2rem;
    flex-wrap: wrap;
}
.tab-cnt-box-5 .list-box li .box .tag-text:last-of-type {
    margin-top: 1.2rem;
}
.tab-cnt-box-5 .list-box li .box .tag-text p {
    line-height: 1.4;
}
.tab-cnt-box-5 .list-box li .box .tag-text .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    color: #F37321;
    border: 0.1rem solid #F37321;
    border-radius: 5rem;
    padding: 0.8rem 0;
    font-weight: 600;
    font-size: 1.8rem;
}
.tab-cnt-box-5 .list-box li .box .tag-text a {
    color: #E85300;
    /* width: 100%; */
    word-wrap: break-word;
}
.tab-cnt-box-5 .list-box li .box .tag-text a:hover {
    text-decoration: underline;
}

@media(max-width: 1320px) {
    .map-wrap {
        height: 33.2rem;
    }
    .global .tab-menu-box-5 {
        transform: translateX(-50%) scale(0.5);
        top: -8rem;
    }
    .global .title-box {
        padding-bottom: 6.8rem;
    }
    .global .tab-cnt-box-5 {
        padding-top: 10rem;
    }
    .global .tab-cnt-box-5 .title img {
        width: 2.4rem;
    }
}

@media(max-width: 1200px) {
    .global .title-box {
        padding-top: 3.2rem;
        padding-bottom: 6.2rem;
    }
    .global .title-box .title {
        font-size: 2.8rem;
    }
    .global .tab-cnt-box-5 .title-box {
        padding-top: 0;
        padding-bottom: 3.2rem;
    }
    .tab-cnt-box-5 .list-box li > a {
        font-size: 2.6rem;
        padding: 3.2rem 2rem;
    }
    .tab-cnt-box-5 .list-box li .box {
        padding: 4rem 3.2rem;
    }
    .tab-cnt-box-5 .list-box li .box p, .tab-cnt-box-5 .list-box li .box a {
        font-size: 2rem;
    }
    .tab-cnt-box-5 .list-box li .box .tag-text {
        gap: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .tab-cnt-box-5 .list-box li .box .tag-text .tag {
        font-size: 1.6rem;
    }
    .global .tab-cnt-box-5 .map-menubox-2 {
        padding: 2.4rem;
        top: calc(100% + 4.5rem);
    }
    .global .tab-cnt-box-5 .map-menubox-2 a {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .map-wrap {
        height: 16.7rem;
    }
    .global .tab-menu-box-5 {
        transform: translateX(-50%) scale(0.25);
        top: -7rem;
    }
    .global .tab-cnt-box-5 {
        padding-top: 8rem;
    }
    .global .tab-cnt-box-5 .title-box {
        padding-bottom: 2.8rem;
    }
    .tab-cnt-box-5 .list-box li > a {
        font-size: 2.2rem;
    }
    .tab-cnt-box-5 .list-box li .box p, .tab-cnt-box-5 .list-box li .box a {
        font-size: 1.7rem;
    }
    .tab-cnt-box-5 .list-box li .box .tag-text .tag {
        font-size: 1.5rem;
    }
    .global .tab-cnt-box-5 .map-menubox-2 {
        padding: 2rem;
        top: calc(100% + 3.5rem);
    }
    .global .tab-cnt-box-5 .map-menubox-2 a {
        font-size: 2rem;
    }
    .tab-cnt-box-5 .list-box li .box .tag-text a {
        width: 100%;
    }

}


/* 모달 영역-2 */
.modal-area-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 13.0rem 4.0rem 4.0rem;
    background: rgb(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: none;
    z-index: 100;
  
  }
  .modal-area-2.active {
    display: block;
  }
  .modal-area-2 .modal {
    display: none;
  }
  .modal-area-2 .modal.active {
    display: block;
  }
  .modal-area-2 .close-btn {
    width: 5.2rem;
    position: absolute;
    top: 4.0rem;
    right: 4.0rem;
  }
  .modal-area-2 .close-btn:hover > img {
    content: url(../img/ico_close.svg);
  }
  .modal.video {
    width: 100%;
    max-width: 96rem;
    border-radius: 1.2rem;
    overflow: hidden;
    height: auto;
    display: none;
  }
  
  /* 영상 모달 */
  .video-modal {
    width: 90.0rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .video-modal h1 {
    margin-top: 6.0rem;
    color: #fff;
    font-size: 3.2rem;
    text-align: center;
    word-break: keep-all;
  }
  .video-modal .youtube-box {
    margin-top: 2.8rem;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    /* 21:9 */
    /* padding-bottom: 42.8571%; */
    /* 16:9 */
    padding-bottom: 56.25%;
    /* 4:3 */
    /* padding-bottom: 75%; */
  }
  .video-modal .youtube-box iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  @media (max-width:1320px) {
    .modal-area-2 .x-btn {
        /* width: 52rem; */
        top: auto;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 11.6rem;
    }
    .video-modal {
        width: 58.0rem;
    }
    .video-modal h1 {
        font-size: 2.4rem;
    }
    .video-modal .youtube-box {
        margin-top: 2.0rem;
    }
    .modal-area-2 .close-btn {
        width: 4.8rem;
    }
  }
  
  @media (max-width:768px) {
    .modal-area-2 {
        padding: 4.0rem;
    }
    .modal-area-2 .x-btn {
        bottom: 6.8rem;
    }
    .video-modal {
        width: calc(100% - 40px);
    }
    .video-modal h1 {
        font-size: 1.2rem;
    }
    .video-modal .youtube-box {
        margin-top: 1.8rem;
    }
    .modal-area-2 .close-btn {
        width: 3.2rem;
        top: 3.2rem;
        right: 3.2rem;
    }
  }
  
  @media (max-width:590px) {
    .modal-area-2 {
        padding: 2.0rem;
    }
    .modal-area-2 .close-btn {
        width: 2.4rem;
        top: 2.0rem;
        right: 2.0rem;
    }
  }