/* --Start banner--------------- */

.section-banner {
    margin-top: 56px;
    background: url(../img/case/banner.webp) no-repeat center center/ cover scroll;
    position: relative;
    display: block;
    height: 20vh;
}


.section-banner .title-item {
    /* width: 100%; */
    position: absolute;
    top: 60%;
    left: auto;
    transform: translateY(-50%);
}

.section-banner .title-item span {
    padding-left: 40px;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 12px;
}

.section-banner .title-item span::after {
    width: 30px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: #fff;
}

.section-banner .title-item h2 {
    font-size: 20px;
    color: #fff;
    text-align: left;
    padding: 10px 0;
    border-bottom: none;
    font-weight: bolder;
}

@media (min-width: 1200px) {

    .section-banner {
        margin-top: 96px;
        height: 65vh;

    }

    .section-banner .title-item h2 {
        font-size: 40px;
    }

    .section-banner .title-item span {
        padding-left: 120px;
        font-size: 16px;
    }

    .section-banner .title-item span::after {
        width: 100px;
    }

    .section-banner .title-item {
        /* padding: 200px 0 50px; */
    }

}

/* --End banner--------------- */
/* --Start case--------------- */
.section-case {
    padding: 100px 0;
}


.section-case .title-item {
    text-align: center;
}

.section-case .title-item span {
    color: #38afe2;
    font-size: 15px;
    padding-bottom: 20px;
}

.section-case .title-item h2 {
    font-size: 20px;
    font-weight: bolder;
    color: #460059;
}


.section-case .item {
    height: 100%;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    display: block;
}

.section-case .item .pic-item {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
}

.section-case .item .pic-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}

.section-case .item:hover .pic-item img {
    transform: scale(1.05);
}

.section-case .item .text-item {
    padding: 15px;
}

.section-case .item .text-item h3 {
    font-size: 18px;
    color: #460059;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #aaa;
}

@media (min-width: 992px) {
    .section-case .title-item h2 {
        font-size: 30px;
    }

    .section-case .item .text-item h3 {
        font-size: 24px;
    }

    .section-case .item .text-item {
        padding: 30px;
    }
}

.section-case .item .text-item p {
    color: #333;
}

.section-case .item span {
    padding-left: 30px;
    padding-bottom: 20px;
    display: block;
}

/* --End case--------------- */