.main_cont {
    position: relative;
    width: 100%;
    overflow: hidden; /* 확대 시 튀어나오는 것 방지 */
}

.main_cont .bg {
    position: absolute;
    inset: 0; /* top/right/bottom/left: 0 */
    background: url("/images/main/back.png") no-repeat center;
    background-size: cover; /* cover 유지 */
    transition: transform 0.6s ease; /* 부드럽게 */
    transform-origin: center center; /* 중심 확대 */
    will-change: transform; /* 성능 힌트 */
    z-index: -1;
}

.main_cont:hover .bg {
    transform: scale(1.1); /* 10% 확대 (값은 취향껏) */
}

.main_cont video {
    position: relative;
    z-index: 10;
}

.who_we_are_img {
    margin-bottom: 70px;
    width: 300px;
    object-fit: contain;
}

.section_title {
    margin-bottom: 206px;
    font-weight: 700;
    font-size: 55px;
}

.who_we_are_cont {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
}

.who_we_are_cont .who_we_are_cont_txt {
    font-size: 45px;
    transition: font-size 0.2s ease-in-out;
    display: inline-block;
    cursor: pointer;
    width: fit-content;
    flex-shrink: 0;
}

.who_we_are_cont .divider {
    width: 2px;
    height: 23px;
    background: black;
    flex-shrink: 0;
}

/*.who_we_are_cont > div:hover {*/
/*    font-size: 45px;*/
/*}*/

.what_we_do_img {
    margin-bottom: 14px;
    width: 300px;
    object-fit: contain;
}

.shopping_img {
    width: 300px;
    object-fit: contain;
}

.six_img {
    width: 100%;
    object-fit: contain;
}

.main_bottom_cont {
    display: flex;
    width: 100%;
    gap: 50px;
    padding: 50px 0;
}

.main_post_cont {
    width: 70%;
    height: 100%;
}

.main_manager_cont {
    width: 30%;
    height: 100%;
}

.swiper-container {
    display: block;
}

.mo-swiper-container {
    display: none;
}

.swiper-container, .mo-swiper-container {
    width: 100%;
    height: 310px;
}

.swiper-container .swiper-slide, .mo-swiper-container .swiper-slide {
    display: flex;
    align-items: center;
}

.swiper-container .swiper-slide a, .mo-swiper-container .swiper-slide a {
    width: 100%;
}

.main_manager_btn_wrapper {
    margin-top: 30px;
    width: 100%;
    /*text-align: center;*/
    /*padding: 15px 0;*/
    /*border-radius: 100px;*/
    /*border: 3px solid var(--border-color);*/
    cursor: pointer;
}

.main_manager_btn_wrapper img {
    width: 100%;
    object-fit: contain;
}

.shopping_cont {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

.shopping_el {
    margin-top: 20px;
    text-align: center;
}

.shopping_el img {
    height: 200px;
    object-fit: contain;
}

.shopping_el p {
    color: white;
    font-size: 30px;
}

.des_cont {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 200px 0;
}

.des_el {
    display: flex;
    gap: 60px;
}

.des_el img {
    flex-shrink: 0;
    width: 365px;
    height: 165px;
    object-fit: cover;
}

.des_el p {
    display: flex;
    align-items: center;
    font-size: 27px;
    color: white;
}

/*.main_manager_btn_wrapper:hover {*/
/*    background-color: var(--main-color);*/
/*}*/

/*.typing-effect {*/
/*    font-weight: bold;*/
/*    font-size: var(--menu-font-size);*/
/*    display: inline-block;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    position: relative;*/
/*}*/

/*.main_manager_btn_wrapper:hover p {*/
/*    color: #fff;*/
/*}*/

/*.main_manager_btn_wrapper p::before {*/
/*    content: '클릭!👆';*/
/*    margin-right: 2px;*/
/*    font-weight: 200;*/
/*    color: #999;*/
/*}*/

/*.main_manager_btn_wrapper:hover p::before {*/
/*    color: #fff;*/
/*}*/

/*.typing-effect::after {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    width: 3px;*/
/*    height: 1em;*/
/*    background-color: #222;*/
/*    vertical-align: middle;*/
/*    margin-left: 2px;*/
/*    animation: blink-caret 1s step-end infinite;*/
/*}*/

/*@keyframes blink-caret {*/
/*    from, to { opacity: 0; }*/
/*    50% { opacity: 1; }*/
/*}*/
/* 컨테이너 */
.des_slider {
    margin-top: 200px;
}

.des_slider_inner_cont {
    padding-top: 145px;
    padding-bottom: 230px;
    width: 100%;
    height: 100%;
    background: url("/images/main/gradation.png") no-repeat center / cover;
}

#desSwiper {
    overflow: hidden;
    padding-bottom: 50px;
}

/* 카드(슬라이드 안의 내용) */
.des_card {
    padding: 16px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
    color: #f2f2f2;
}

.des_card img {
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.des_card p {
    margin: 0;
    line-height: 1.5;
    font-size: 25px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* 도트 색상 튜닝(선택) */
#desSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .3);
    opacity: 1;
}

#desSwiper .swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, .5);
}