.case_main {
    padding: 3% 0;
    background-color: #F6F6F6;
}


.case_title {
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.case_list {
    margin-top: 40px;
}

.case_list .case_item {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    -webkit-transition: all 150ms ease-out 0ms;
    -moz-transition: all 150ms ease-out 0ms;
    -o-transition: all 150ms ease-out 0ms;
    transition: all 150ms ease-out 0ms;
}

.case_list .case_item:nth-child(even) .item_img {
    order: 2;
}

.case_list .case_item:nth-child(even) .item_info {
    order: 1;
}

.case_list .case_item:nth-child(even) .item_info .item_bg img {
    transform: rotateY(180deg);
}

.case_list .case_item .item_img {
    width: 30%;
    position: relative;
    height: 294px;
    overflow: hidden;
}

.case_list .case_item .item_img img {
    width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.case_list .case_item:hover .item_img img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.case_list .case_item .item_info {
    width: 70%;
    height: auto;
    padding: 25px 40px;
    position: relative;
}



.case_list .case_item .item_info .item_bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: all .5s ease-in-out;
}

.case_list .case_item .item_info .case_hover {
    opacity: 0;
}

.case_list .case_item:hover .item_info .case_hover {
    opacity: 1;
}

.case_list .case_item:hover .item_info .case_img {
    opacity: 0;
}

.case_list .case_item .item_info .item_title {
    position: relative;
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 24px;
    color: #121212;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    z-index: 99;
    padding-bottom: 15px;
    transition: all .5s ease;
}

.case_list .case_item .item_info .item_title a {
    display: inline-block;
    color: #121212;
    height: 72px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case_list .case_item:hover .item_title a {
    color: #FFFFFF;
}

.case_list .case_item .item_info .item_title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 52px;
    height: 3px;
    background: var(--dominant-color);
    transition: all .5s ease;
}

.case_list .case_item:hover .item_title:after {
    background-color: var(--vice-color);
}

.case_list .case_item .item_info .item_desc {
    position: relative;
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #121212;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    z-index: 99;
    margin: 30px 0;
    transition: all .5s ease;
}

.case_list .case_item .item_info .item_desc a {
    display: inline-block;
    color: #121212;
    height: 64px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case_list .case_item:hover .item_desc a {
    color: #FFFFFF;
}

.case_list .case_item .item_info .item_btn a {
    position: relative;
    display: inline-block;
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    padding: 5px 15px;
    background-color: var(--dominant-color);
    z-index: 99;
    border-radius: 22px;
    transition: all .5s ease;
}

.case_list .case_item:hover .item_btn a {
    background-color: var(--vice-color);
}

.lbanner-pp .path_bar {
    margin-top: 0 !important;
    padding-top: 20px;
    background-color: #F6F6F6;
}

.pagination a.page-numbers {
    background-color: #E8E8E8 !important;
}

.pagination a.page-numbers:hover {
    background-color: var(--dominant-color) !important;
}

@media only screen and (max-width: 950px) {
    .case_list .case_item {
        flex-direction: column;
    }

    .case_list .case_item .item_img {
        width: 100%;
        padding-bottom: 68%;
        order: 1 !important;
    }

    .case_list .case_item .item_info {
        width: 100%;
        order: 2 !important;
    }

    .case_list .case_item .item_info .item_title a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .case_list .case_item .item_info .item_desc a{
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}