.category_main {
    margin-top: 3%;
}

.category_main .category_list .category_item {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.category_main .category_list .category_item:nth-child(even) .item_img {
    order: 2;
}

.category_main .category_list .category_item:nth-child(even) .item_info {
    order: 1;
}

.category_main .category_list .category_item .item_img {
    width: 48%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 29%;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.category_main .category_list .category_item .item_img img {
    width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.category_main .category_list .category_item .item_img:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.category_main .category_list .category_item .item_info {
    width: 45%;
}

.category_main .category_list .category_item .item_info .item_title {
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 24px;
    color: var(--dominant-color);
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.category_main .category_list .category_item .item_info .item_title a {
    display: inline-block;
    color: var(--dominant-color);
    height: 72px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category_main .category_list .category_item .item_info .item_title a:hover {
    text-decoration: underline;
}

.category_main .category_list .category_item .item_info .item_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    margin: 30px 0;
}

.category_main .category_list .category_item .item_info .item_desc a {
    display: inline-block;
    color: #999999;
    height: 96px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category_main .category_list .category_item .item_info .item_desc:hover a {
    color: var(--dominant-color);
    text-decoration: underline;
}

.category_main .category_list .category_item .item_info .item_btn a {
    background-color: var(--dominant-color);
    border: 2px solid var(--dominant-color);
    padding: 5px 40px;
    max-width: 245px;
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
}

.category_main .category_list .category_item .item_info .item_btn a:after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    right: 40px;
    background-image: url(../img/read_more.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.category_main .category_list .category_item .item_info .item_btn a:hover {
    background-color: #FFFFFF;
    color: var(--dominant-color);
}

.category_main .category_list .category_item .item_info .item_btn a:hover:after {
    background-image: url(../img/read_more_hover.png);
}

.category_working {
    margin-top: 5%;
}

.category_working .working_title {
    font-family: 'Lato-SemiBold';
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.category_working .working_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    margin: 10px 0 30px;
}

.category_working .working_item .item_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 60%;
}

.category_working .working_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.category_working .working_item .item_info {
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.category_working .working_item .item_info .item_num {
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 60px;
    color: var(--dominant-color);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.category_working .working_item .item_info .item_desc {
    width: calc(100% - 87px);
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.category_working .working_wrap {
    position: relative;
}

.category_working .working_wrap .working-button-next {
    width: 45px;
    height: 45px;
    background-color: var(--dominant-color);
    border: 2px solid var(--dominant-color);
    background-image: url(../img/cate_next.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70%;
    position: absolute;
    top: 50%;
    margin-top: -22.5px;
    right: -60px;
    cursor: pointer;
    transition: all .5s ease;
}

.category_working .working_wrap .working-button-next:hover {
    background-color: #FFFFFF;
    background-image: url(../img/cate_next_hover.png);
}

.category_working .working_wrap .working-button-prev {
    width: 45px;
    height: 45px;
    background: var(--dominant-color);
    border: 2px solid var(--dominant-color);
    background-image: url(../img/cate_prev.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70%;
    position: absolute;
    top: 50%;
    margin-top: -22.5px;
    left: -60px;
    cursor: pointer;
    transition: all .5s ease;
}

.category_working .working_wrap .working-button-prev:hover {
    background-color: #FFFFFF;
    background-image: url(../img/cate_prev_hover.png);
}

.category_advantage {
    margin: 5% 0;
}

.category_advantage .advantage_title {
    font-family: 'Lato-SemiBold';
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
}

.category_advantage .advantage_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 32px;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
    max-width: 1187px;
    margin: 20px auto 50px;
}

.category_advantage .advantage_list {
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    background-color: var(--dominant-color);
    border-radius: 20px 20px 20px 20px;
}

.category_advantage .advantage_list .advantage_item {
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    border-right: 1px solid #D9D9D9;
}

.category_advantage .advantage_list .advantage_item:last-child {
    border-right: none;
}

.category_advantage .advantage_list .advantage_item .item_icon img {
    width: auto;
    height: 53px;
    object-fit: cover;
}

.category_advantage .advantage_list .advantage_item:hover .item_icon img {
    animation: swing .5s;
}

.category_advantage .advantage_list .advantage_item:first-child .item_icon img {
    width: auto;
    height: 39px;
    object-fit: cover;
}


.category_advantage .advantage_list .advantage_item .item_info {
    width: calc(100% - 85px);
}

.category_advantage .advantage_list .advantage_item .item_info .item_title {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.category_advantage .advantage_list .advantage_item .item_info .item_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: rgba(256, 256, 256, .8);
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
@media only screen and (max-width: 1440px){
    .category_working .working_wrap .working-button-next{
        right: -20px;
        z-index: 99;
    }
    .category_working .working_wrap .working-button-prev{
        left: -20px;
        z-index: 99;
    }
}
@media only screen and (max-width: 950px) {
    .category_main {
        margin-top: 8%;
    }

    .category_main .category_list .category_item {
        flex-direction: column;
    }

    .category_main .category_list .category_item .item_img {
        width: 100%;
        margin-bottom: 30px;
        order: 1 !important;
        padding-bottom: 63%;
    }

    .category_main .category_list .category_item .item_info {
        width: 100%;
        order: 2 !important;
    }

    .category_main .category_list .category_item .item_info .item_title a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .category_main .category_list .category_item .item_info .item_desc a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .category_working .working_item .item_info .item_num {
        font-size: 40px;
    }

    .category_working .working_item .item_info .item_desc {
        width: calc(100% - 75px);
    }

    .category_working .working_wrap .working-button-prev {
        left: -25px;
        z-index: 99;
    }

    .category_working .working_wrap .working-button-next {
        right: -25px;
        z-index: 99;
    }

    .working_wrap {
        width: 90% !important;
        margin: 0 auto;
    }

    .category_working .working_item .item_img {
        padding-bottom: 63%;
    }

    .category_advantage .advantage_list {
        flex-wrap: wrap;
    }

    .category_advantage .advantage_list .advantage_item {
        width: 48% !important;
        border-right: 1px solid #D9D9D9 !important;
        margin-bottom: 30px;
    }

    .category_advantage .advantage_list .advantage_item:nth-child(2n) {
        border-right: none !important;
    }

}

@media only screen and (max-width: 768px) {
    .category_advantage .advantage_list .advantage_item {
        width: 100% !important;
        border-right: none !important;
    }
}