html, body {
    font-family: Pretendard, sans-serif;
    min-width: 360px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    height:100%
    background-color #ffffff !important;
}

.CH:not(.on) {
    color: var(--color-white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0.5%, rgba(0, 0, 0, 0.5));
}
.CH.header-logo:not(.on) {
    color: var(--color-white);
}


.LayoutContainer{
	height:auto;
	min-height: 100%;
}

header {
    display: block;
    unicode-bidi: isolate;
}

.header-logo {
    color: inherit;
}
.header-logo {
    margin-right: auto;
}

#header.on{
    color: #111;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px 0px;
    
}

.font-logo {
    font-family: GmarketSans;
    font-size: 20px;
    font-weight: 700;
    width: max-content;
    user-select: none;
}
.sub-font-logo {

    font-weight: 700;
    font-size: 17px;
    width: max-content;
    user-select:none;
}
.logo-link {
    text-decoration: none;
    color: inherit;
}
.footer-subtitle{
    font-family: GmarketSans;

}

.CH .header-container {
    height: 100%;
    max-width: 1176px;
    width: 100%;
    margin: auto;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-evenly;
    -webkit-box-align: center;
    align-items: center;
    user-select: none;
    position: relative;
    align-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
}
.CH {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: var(--size-header-h);
    z-index: 4000;
    transition: background-color 0.3s, box-shadow 0.3s;
    
}

.image-space {
    padding-bottom: 36px;
}

.CH .nav-inner {
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    letter-spacing: -0.02em;
}

.CH .nav-wrap {
    height: 100%;
    background: inherit;
}

.CH .nav-list {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;   
    margin-right: 35px;
}

.CH .nav-item {
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0px 20px;
}

.CH .nav-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}

.CH .nav-item:first-child {
    margin-left: 0px;
}
.CH .nav-item:last-child {
    margin-right: 0px;
}

ul {
    display: flex;
    list-style: none;

}

li {
    display: inline-block;
    margin-right: 20px; 
}


.main-intro {
    position: relative;
}
.main-carousel {
    height: 644px;
}
.wrap {
    width: 1176px;
    margin: 0px auto;
    height: 100%;
    position: relative;
}

.swiper {

    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    
}
    
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    transition-timing-function: linear;
    
    
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}
.swiper-slide {
    pointer-events: auto; /* 클릭 가능 상태로 설정 */
    position: relative; /* 이미지와 텍스트가 겹쳐지도록 설정 */
    transition: opacity 1s ease-in-out; /* n초 동안 투명도 애니메이션 */
    height: 300px; /* 원하는 높이로 설정 */
    overflow: hidden; /* 이미지가 넘치면 잘리도록 설정 */
}
    


.swiper-slide img {

    height: auto;
    width: 100%;
    display: block;
    object-fit: contain; /* 이미지가 슬라이드에 꽉 차도록 */
}


.slide-text {
    position: absolute;
    top: 80%; /* 세로 중앙에 텍스트 배치 */
    right: 25%; /* 오른쪽에 텍스트 배치, 10%만큼 여백 */
    transform: translateY(-50%); /* 세로 중앙 정렬 */
    color: white; /* 텍스트 색상 */
    text-align: right; /* 텍스트 정렬을 오른쪽으로 */
    z-index: 10; /* 이미지 위에 배치되도록 설정 */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* 옅은 그림자 추가 */
    
    /* 기본적으로 숨겨진 상태 */
    opacity: 0; /* 기본 상태는 숨김 */
    transition: opacity 0.1s ease-in-out; /* 1초 동안 부드럽게 페이드 인 */
}
.slide-text h2 {
    font-size: 2.5em;
    margin: 0 0 10px;
}
.slide-text p {
    font-size: 1.2em;
    margin: 0;
}
.slide-text {
    opacity: 0;
    transition: opacity 1s ease-in-out; /* 1초 동안 투명도 애니메이션 */
}

.swiper-slide-active .slide-text {
    opacity: 1; /* 활성화된 슬라이드에서 텍스트가 나타남 */
}

a {
    pointer-events: auto;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* 스와이퍼 점 숨기기 */
.swiper-pagination {
    display: none;
}

.main-wrap {
    overflow: hidden;
}


.main-section {
    margin: 0px auto;
    padding: calc(130px) 0px 96px;
}


.FIRST {
    cursor: pointer;
    margin-bottom: calc(73px);
}
.FIRST .main-section-con {
    width: 1176px;
    margin: 0px auto;
}
.FFL {
    max-width: max-content;
    margin-bottom: 20px;
}
.FFL .sec-title {
    width: 100%;
    color: var(--color-black);
    text-decoration: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.FFL .sec-title > h2 {
    font-size: inherit;
    font-weight: inherit;
    
}

.main-slides .slide-wrapper {
    margin: -22px -15px -15px;
    padding: 22px 15px 15px;
}

.card-slider{
    border-radius: 24px;
    overflow: hidden;
    transition-property: all;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;

}
.card-swiper-container {
    width: 100%;
    height: 300px; /* 카드 슬라이더 높이 설정 */
}
.card-swiper-container {
    width: 100%;
    height: 300px; /* 카드 슬라이더 높이 설정 */
}

.card-swiper-container2{
    margin-top: 20px;
}
.card-name-in {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: var(--color-white);
    display: flex;
    align-items: flex-end;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px;
    width: calc(100% - 24px);
    z-index: 10;
}

.swiper-slide:last-child {
    margin-right: 10px; /* 마지막 슬라이드에 오른쪽 마진 추가 */
}

.swiper-wrapper .card-shadow {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 27.58%);
}

.main-section-con .full  {
    width: 100%;
    
}



footer {
    
    display: block;
    unicode-bidi: isolate;
    position: relative;
    border-top: 1px solid var(--color-grey-6);
    background-color:#2d2d2d;
}
.pCUsoe{
    padding: 20px 0px 0px;
    background-color:#2d2d2d;
}
.footer-inner {
    width: 100%;
    max-width: 1176px;
    margin: 0px auto;
    
}
.container {
    display: flex;
    align-items: flex-start;
    -webkit-box-pack: justify;
    flex-wrap: wrap;
    margin: auto;
    background: var(--color-white);
    background-color: #2d2d2d;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: row;
}
.pCUsoe .container .bottom-texts-title {
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 0px 8px;
    color: var(--color-grey-4);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 12px;
    background-color:#2d2d2d;
    
    
}
.pCUsoe .container .footer-intro-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color:#2d2d2d;
    
}
.pCUsoe .container #logo {
    color: var(--color-light-9);
}
.pCUsoe .footer-logo {
    font-size: 18px;
}
.pCUsoe .container .footer-subtitle {
    font-size: 12px;
    margin: 17px 0px 30px;
    color: var(--color-light-9);
  
}
.pCUsoe .container.container-top {
    
   /*border-bottom: 1px solid var(--color-grey-6);*/
   
    
}
.pCUsoe .container-top {

}

.pCUsoe .container .footer-end-container {
    max-width: 526px;
    width: 100%;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    color: var(--color-light-9);
}

.container .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
}
.container .footer-content-title {
    margin-bottom: 10px;
}
.container .footer-content-list {
    display: inherit;
    flex-direction: inherit;
    -webkit-box-align: inherit;
    align-items: inherit;
    
}
ul, li {
    list-style: none;
}
.container .footer-content-item {
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--color-light-7);
}
.container .footer-content-item > a {
    font-size: 12px;
    font-weight: 300;
    color: inherit;
    text-decoration: none;
}
.FooterContainer{
    padding-bottom: 20px;
}

.banner-box {
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-end;
}
.banner-box .banner-img-con{
    display: flex;
    
}
.banner-container .banner-box {
    width: 100%;
    height: 250px; 
    background-color: var(--color-blue-3);
}
.banner-text-box {

    height: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 5;
    padding-left: 5%;
    padding-right: 5%
   
}
.banner-text{
    font-size: 26px;
}
.banner-text-in{
    font-size: 20px;
    padding-top: 10px;
    color: white;
}
.banner-text-p1 {
    color: white;
    padding-top: 30px;
    font-size: 22px;
    
}
.banner-section-con {
    margin-bottom: 100px;
}

.banner-img-con .banner-img {
    width: 460px;
    height: 320px;
    display: flex;
    justify-content: center;

}


:root {
    --color-primary: #ffa200;
    --color-grey: #f5f5f5;
    --color-grey-1: #8f8f8f;
    --color-grey-2: #999999;
    --color-grey-3: #ababab;
    --color-grey-4: #bfbfbf;
    --color-grey-5: #d4d4d4;
    --color-grey-6: #e3e3e3;
    --color-grey-7: #ededed;
    --color-grey-8: #f9f9f9;
    --color-grey-9: #5f5f5f;
    --color-grey-10: #d9d9d9;
    --color-grey-11: #d8d8d8;
    --color-grey-12: #c6c6c6;
    --color-accent: #8d55f2;
    --color-blue: #636cf2;
    --color-blue-2: #646cf2;
    --color-blue-3: #7694ff;
    --color-yellow: #ffdf7d;
    --color-scarlet: #ff6857;
    --color-green: #01d1ac;
    --color-red: #d00f0f;
    --color-red-2: #d10f0f;
    --color-purple: #8d56f2;
    --color-purple-1: #8244ef;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light-1: #111111;
    --color-light-2: #161616;
    --color-light-3: #282828;
    --color-light-4: #434343;
    --color-light-5: #606060;
    --color-light-6: #8f8f8f;
    --color-light-7: #bfbfbf;
    --color-light-8: #e3e3e3;
    --color-light-9: #f9f9f9;
    --color-light-10: #ededed;
    --color-dark-1: #111111;
    --color-dark-2: #1a1a1a;
    --color-dark-3: #2d2d2d;
    --color-dark-4: #646464;
    --color-dark-5: #9b9b9b;
    --color-dark-6: #b1b1b1;
    --color-dark-7: #c3c3c3;
    --color-dark-8: #d7d7d7;
    --color-dark-9: #ededed;
    --color-dark-10: #ffffff;
    --size-header-h: 65px;
    --size-m-nav-h: 58px;
}

/*---------------------------------------------------------------------------------*/

#hamburger-button {
    display: none;
    position: absolute;
    right: 30px;
    background-color: rgba(255, 0, 0, 0);
    color: rgba(255, 0, 0, 0);
    width: auto;
    height: auto;
    margin-right: 5%;
}

a {
    text-decoration: none;
    color: black;
}

input[id="hamburger-icon"] {
    display: none;
}

input[id="hamburger-icon"]+label {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
}

input[id="hamburger-icon"]+label span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 30px;
    background: #000;
    transition: all 0.35s;
}

input[id="hamburger-icon"]+label span:nth-child(1) {
    top: 0;
}

input[id="hamburger-icon"]+label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

input[id="hamburger-icon"]+label span:nth-child(3) {
    bottom: 0;
}

input[id="hamburger-icon"]:checked+label {
    z-index: 99;
}

input[id="hamburger-icon"]:checked+label span {
    background: black;
}

input[id="hamburger-icon"]:checked+label span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

input[id="hamburger-icon"]:checked+label span:nth-child(2) {
    opacity: 0;
}

input[id="hamburger-icon"]:checked+label span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

div[class="hamburger-sidebar"] {
    width: 100%;
    height: 100%;
    background: white;
    position: fixed;
    top: 100%;
    left: 0;
    z-index: 98;
    transition: all 0.35s;
}

input[id="hamburger-icon"]:checked+label+div {
    top: 14.6%;
}

.nav_mobile {
    width: 100%;
}

.hamburger-sidebar .nav_mobile li {
    color: black;
    position: relative;
    float: left;
    width: 100%;
    list-style-type: none;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.hamburger-sidebar a {
    padding: 0;
    text-decoration: none;
    display: block;
}

.hamburger-sidebar li a {
    display: block;
    font-weight: bold;
    line-height: 40px;
    margin: 0px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s;
}

.hamburger-sidebar li a:hover,
.hamburger-sidebar ul li:hover a {

    text-decoration: none;
    color: #eee;
    padding: 0;
    margin: 0;
    border: 0px;
}

/*---------------------------------------------------------------------------------*/

@media screen and (max-width: 990px) {
    .swiper-container {
        height:100%!important
        }
    .nav-top {
        position: fixed;
        top: 0;

        max-width: 1200px;
        width: 100vw;
     
        margin-left: calc(-50vw + 50% - 20px);
        z-index: 12;
    }
    .nav-wrap {
        display: none; /* 기본적으로 숨김 */
    }

    nav ul li {
        display: inline;
        width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
        padding: 0 10px;
        
    }
    ul {
        display: flex;
        list-style: none;
        flex-direction: column;
        align-items: center;
    }
    nav ul li a {
        display: inline-block;
        word-wrap: break-word;
    }
    .CH .nav-item:first-child {
        margin-left: 20px; 
    }
    .CH .nav-item:last-child {
        margin-right: 20px;
    }

    .header-middle {
        display: none;
    }

    #hamburger-button {
        display: block;
    }

    .sec-title>h2 {
        font-size: 30px !important;
        
    }
    .slide-text>h2 {
        font-size: 36px !important;
        
    }

    .slide-text{
        flex-direction: column;
    }

    .main-section {
        padding: calc(80px) 0px 96px;



}
.banner-text-box{
    display: flex;
}


    .banner-text {
        height: 100%;
        display: flex;
        margin-left: 65%;
        margin-top: 50%;
        flex-direction: column;
        font-size: 25px;
        white-space: nowrap;
}
}

@media screen and (max-width: 885px) {


    .swiper-container {
        height:100%!important
        }
    .nav-top {
        position: fixed;
        top: 0;

        max-width: 1200px;
        width: 100vw;
     
        margin-left: calc(-50vw + 50% - 20px);
        z-index: 12;
    }
    .nav-wrap {
        display: none; /* 기본적으로 숨김 */
    }

    nav ul li {
        display: inline;
        width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
        padding: 0 10px;
        
    }
    ul {
        display: flex;
        list-style: none;
        flex-direction: column;
        align-items: center;
    }
    nav ul li a {
        display: inline-block;
        word-wrap: break-word;
    }
    .CH .nav-item:first-child {
        margin-left: 20px; 
    }
    .CH .nav-item:last-child {
        margin-right: 20px;
    }
    

    .header-middle {
        display: none;
    }

    #hamburger-button {
        display: block;
    }

    .sec-title>h2 {
        font-size: 25px !important;
        
    }
    .slide-text>h2 {
        font-size: 23px !important;
        
    }

    .slide-text{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: white;
        z-index: 10;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }

    .main-section {
        padding: calc(80px) 0px 96px;



}
.banner-text-box{
    display: flex;
}


    .banner-text {
        height: 100%;
        display: flex;
        margin-left: 70%;
        padding-left: 15%;
        margin-top: 80%;
        flex-direction: column;
        font-size: 17px;
        white-space: nowrap;
}
.banner-img{
    margin-right: 15%;
}
}
