* {
    margin: 0;
}

.swiper {
    width: 600px;
    height: 300px;
}

.languageBox {
    cursor: pointer;
    font-size: 14px;
    /* border: 1px solid grey;
    padding: 10px;
    background: #fff;
    width: 80px; */
    text-align: left;
    border-radius: 10px;
}

.languageListBox {
    background: #fff;
    border-top: 1px solid grey;
    border-right: 1px solid grey;
    border-left: 1px solid grey;
    border-bottom: 1px solid transparent;
    border-radius: 5px;
    position: absolute;
}

.languageListItem {
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid grey;
}

.languageListItem:hover {
    opacity: 0.5;
}


.languageBox-mobile {
    cursor: pointer;
    font-size: 14px;
    border: 1px solid grey;
    padding: 7px 4px;
    background: #fff;
    width: 80px;
    text-align: left;
    border-radius: 10px;
}

.languageListBox-mobile {
    background: #fff;
    border-top: 1px solid grey;
    border-right: 1px solid grey;
    border-left: 1px solid grey;
    border-bottom: 1px solid transparent;
    border-radius: 5px;
    position: absolute;
}

.languageListItem-mobile {
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid grey;
}

.languageListItem-mobile:hover {
    opacity: 0.5;
}



.swiper {
    width: 100%;
    height: 850px;
}
.swiper-wrapper {
    height: 100%;
    padding: 0 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid grey;
    border-radius: 20px;
    padding: 10px 30px;
    background: #111111;
    height: 787px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

/* 반응형 처리 - PC/모바일 뷰 전환 */
#pc-view {
    display: block;
}

#mobile-view {
    display: none;
}
@media (min-width: 2400px) {
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin: 0 auto;
    }
    .swiper-slide{
        padding: 0px;
    }
}

@media (max-width: 1600px) {
    .swiper {
        height: 700px;
    }
    .swiper-wrapper{
        height: 650px;
    }
    .swiper-slide{
        height: 640px;
    }
    .black-container {
        height: 845px;
    }
}
@media (max-width: 1400px) {
    .swiper {
        height: 600px;
    }
    .swiper-wrapper{
        height: 550px;
    }
    .swiper-slide{
        height: 540px;
    }
    .black-container {
        height: 745px;
    }
}

@media (max-width: 1024px) {
    .swiper {
        height: 400px;
    }
    .swiper-wrapper{
        height: 350px;
    }
    .swiper-slide{
        height: 340px;
    }
}

@media (max-width: 768px) {
    #pc-view {
        display: none !important;
    }
    
    #mobile-view {
        display: block !important;
    }
    .swiper {
        height: 595px !important;
    }
    .swiper-wrapper{
        height: 540px;
        padding: 0px;
        padding-left: 5px;
    }
    .swiper-slide{
        width: 280px !important;
        height: 530px;
    }
    .swiper-slide {
        padding: 10px;
    }
    .swiper-slide img {
        object-fit: contain;
    }
}

