/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/

.solution_wid * {
    font-family: "Pretendard", sans-serif;
}

/* 타이틀 ~ 버튼 */

.solution_wid .solution_top {
    margin-bottom: 78px;
}

.solution_wid .solution_tit_box {
    margin-bottom: 17px;
    text-align: center;
}

.solution_wid .solution_title {
    line-height: 1.35;
    font-size: 52px;
    font-weight: 700;
    color: #0c0c0c;
}

.solution_wid .solution_con_box {
    margin-bottom: 36px;
    text-align: center;
}

.solution_wid .solution_subtitle {
    line-height: 1.56;
    font-size: 18px;
    color: #5d5d5d;
}

.solution_wid .solution_tag_box {
    text-align: center;
}

.solution_wid .solution_top .more_box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50px;
    padding: 0 42px 0 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #777777;
    background: #ececec;
    transition: all .3s ease-in-out;
}

.solution_wid .more_box::after {
    content: '';
    position: absolute;
    top: 49%;
    right: 32px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #777777;
    border-right: 1px solid #777;
    transform: rotate(45deg) translateY(-50%);
}

@media (hover:hover) and (pointer: fine) {
    .solution_wid .solution_tag_box a:hover .more_box {
        color: #fff;
        background: #0855c7;
    }

    .solution_wid .solution_tag_box a:hover .more_box::after {
        border-color: #fff;
    }
}



/* PC 컨테이너 기준점 설정 */
.solution_wid .pc_container {
    position: relative;
	padding:0;
}

.solution_wid .swiper {
    overflow: visible;
}

.solution_wid .swiper .swiper-slide {
    width: 850px;
    transform: scale(0.8);
    transition: all .3s ease-in-out;
    z-index: 9;
}

.solution_wid .swiper .swiper-slide-active {
    transform: scale(1);
}

.solution_wid .swiper-card {
    position: relative;
    display: flex;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #ececec;
    box-shadow: -5px -9px 26px 0px rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden;
}

.solution_wid .swiper-slide .swiper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.3;
    transition: all .3s ease-in-out;
    z-index: 10;
}

.solution_wid .swiper-slide-active .swiper-card::before {
    opacity: 0;
}


.solution_wid .img_container {
    width: 100%;
    max-width: 410px;
    border-radius: 22px;
    aspect-ratio: 410/330;
    overflow: hidden;
}

.solution_wid .img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution_wid .swiper_logo_box {
    margin: 30px 0;
}


.solution_wid .swiper_text_container {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 44px;
}


.solution_wid .swiper_item_box .item_title {
    margin-bottom: 18px;
    line-height: 1.29;
    font-size: 21px;
    font-weight: 700;
    color: #0c0c0c;
}

.solution_wid .swiper_item_box .item_subtitle {
    line-height: 1.59;
    font-size: 17px;
    color: #5d5d5d;
}

.solution_wid .swiper_button {
    position: absolute;
    left: 50%;
    top: 51%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1160px;
    z-index: 50;
}
.solution_wid .swiper_button .swiper_btn-prev,
.solution_wid .swiper_button .swiper-btn-next {
    position: absolute;
    top: 50%;
    width: 63px;
    height: 63px;
    border: 1px solid #e9e9e9;
    border-radius: 50%;
    background-color: #ffffff;
    background-position: center center;
    box-shadow: 0px 3px 8px 0px rgba(61, 61, 61, 0.15);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .3s ease-in-out;
    opacity: 1;
    visibility: visible;
}
.solution_wid .swiper_button .swiper_btn-prev {
    left: 10.7%;
    background-image: url(./img/swiper_prev.svg);
}
.solution_wid .swiper_button .swiper-btn-next {
    right: 10.7%;
    background-image: url(./img/swiper_next.svg);
}

.solution_wid .swiper_button .swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

@media (max-width:991px) {

    .solution_wid .solution_tit_box {
        margin-bottom: 24px;
    }

    .solution_wid .solution_title {
        line-height: 1.29;
        font-size: 31px;
    }

    .solution_wid .solution_con_box {
        margin-bottom: 26px;
    }

    .solution_wid .solution_subtitle {
        line-height: 1.66;
        font-size: 15px;
    }

    .solution_wid .solution_top {
        margin-bottom: 42px;
    }

    .solution_wid .solution_top .more_box {
        height: 42px;
        padding: 0 35px 0 30px;
        border-radius: 12px;
        font-size: 14px;
    }

    .solution_wid .more_box::after {
        top: 48%;
        right: 30px;
    }

    .solution_wid .swiper-wrapper {
        align-items: stretch;
    }

    .solution_wid .swiper .swiper-slide {
        width: 100%;
        height: auto;
        transform: scale(1);
    }

    .solution_wid .swiper-a {
        display: block;
        height: 100%;
    }

    .solution_wid .swiper-card {
        flex-direction: column;
        height: 100%;
        padding: 22px;
        border-radius: 12px;
        box-shadow: none;
    }

    .solution_wid .swiper-slide .swiper-card::before {
        display: none;
    }

    .solution_wid .img_container {
        max-width: 100%;
        aspect-ratio: 1/1;
        border-radius: 12px;
    }

    .solution_wid .img_container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .solution_wid .swiper_text_container {
        margin-left: 0;
    }

    .solution_wid .swiper_logo_box {
        margin: 14% 0 10%;
    }

    .solution_wid .swiper_logo_box img {
        width: 100%;
        object-fit: scale-down;
    }


    .solution_wid .swiper_item_box .item_title {
        margin-bottom: 11px;
        font-size: 19px;
    }

    .solution_wid .swiper_item_box .item_subtitle {
        line-height: 1.53;
        font-size: 15px;
    }

    .solution_wid .m_container .swiper-pagination {
        position: static;
        margin-top: 32px;
    }

    .solution_wid .m_container .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 7.5px !important;
        background-color: #ececec;
        opacity: 1;
    }

    .solution_wid .m_container .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #cccccc;
    }
}