body {
    background-color: #F6F6F6 !important;
}

.case_main {
    padding: 3% 0;

}

.lbanner-pp .path_bar {
    margin-top: 0 !important;
    padding-top: 20px;
    background-color: #F6F6F6;
}

.case_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 36%;
    -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_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.case_img:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.case_title {
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 24px;
    color: var(--dominant-color);
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    margin: 20px 0;
}


.case_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.case_desc p {
    margin-bottom: 20px;
}

.case_details {
    margin-top: 20px;
}

.case_details .details_item {
    justify-content: space-between;
    align-items: flex-start;
}

.case_details .details_item:nth-child(even) .item_img {
    order: 2;
}

.case_details .details_item:nth-child(even) .item_info {
    order: 1;
}

.case_details .details_item .item_img {
    width: 50%;
    position: relative;
    height: 406px;
    overflow: hidden;
    -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_details .details_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.case_details .details_item .item_img:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.case_details .details_item .item_info {
    width: 50%;
    background-color: #FFFFFF;
    padding: 118px 50px;
}

@media (max-width:1024px) {
    .case_details .details_item .item_info {
        padding: 102px 50px;
    }
}

.case_details .details_item .item_info .item_title {
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}


.case_details .details_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-top: 10px;
    height: 128px;
    overflow: auto;
}



.click_btn {
    position: relative;
    width: 100%;
    margin-top: 15px;
    align-items: center;
    padding: 15px 0;
}


.click_btn .colo_btn a {
    display: flex;
    align-items: center;
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    padding: 5px 10px;
    border-radius: 4px;
}


.prev_btn .colo_btn {
    border-radius: 4px 4px 4px 4px;
}



.next_btn .colo_btn {
    border-radius: 4px 4px 4px 4px;
}


.prev_btn .con,
.prev_btn .con a,
.prev_btn .con span,
.next_btn .con,
.next_btn .con a,
.next_btn .con span {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.prev_btn,
.next_btn {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #D9D9D9;
    padding: 5px 55px;
    margin-right: 20px;
}

.prev_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 25px;
    width: 30px;
    height: 30px;
    background-image: url(../img/colo_prev.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

}

.next_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 25px;
    width: 30px;
    height: 30px;
    background-image: url(../img/colo_next.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

}

.prev_btn .con,
.next_btn .con {
    width: calc(100% - 175px);
    padding: 5px 10px;
}

.prev_btn .con a:hover,
.next_btn .con a:hover {
    color: var(--dominant-color);
}

@media (max-width:950px) {
    .main {
        width: 100% !important;
    }

    .prev_btn .con,
    .prev_btn .con a,
    .prev_btn .con span,
    .next_btn .con,
    .next_btn .con a,
    .next_btn .con span {
        line-height: 1.5;
    }
}


.company_certificate {
    padding: 6% 0;
    background-image: url(../img/certificate_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.company_certificate .layout {
    width: 1480px;
}

@media (max-width:1500px) {
    .company_certificate .layout {
        width: 1400px;
    }

}

@media (max-width:1440px) {
    .company_certificate .layout {
        width: 95%;
    }

}

.company_certificate .certificate_title {
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.company_certificate .certificate_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
    max-width: 1137px;
    margin: 0 auto;
}

.certificate_list {
    margin-top: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.certificate_list .certificate_item {
    width: 23%;
    margin-right: 30px;
}


.certificate_list .certificate_item:last-child {
    margin-right: 0;
}

.certificate_list .certificate_item .item_icon {
    position: relative;
    width: 131px;
    height: 131px;
    margin: 20px auto;
    text-align: center;
    border-radius: 50%;
    line-height: 131px;
    background: var(--dominant-color);
}

.certificate_list .certificate_item .item_icon:hover {
    animation: swing .5s;
}

.certificate_list .certificate_item .item_icon img {
    width: 60px;
    height: 60px;
}


.certificate_list .certificate_item .item_icon .icon_border {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 100%;
    height: 100%;
}


.certificate_list .certificate_item .item_title {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
    padding-top: 20px;
    margin-bottom: 15px;
    min-height: 80px;
}


.certificate_list .certificate_item .item_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
}

@media (max-width:1024px) {
    .certificate_list {
        justify-content: flex-start !important;
        flex-wrap: wrap;
    }

    .certificate_list .certificate_item {
        width: 30%;
        margin-bottom: 30px;
    }
}

.case_faq {
    padding: 3% 0;
    background-color: #F6F6F6;
}


.ask_title {
    font-family: 'Lato-Bold';
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.faq_list li {
    cursor: pointer;
    margin-bottom: 30px;
}

.faq_list li .faq_title {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.6);
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 30px;
}

.faq_list li .faq_title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(217, 217, 217, 0.8);
}

.faq_list li .faq_title:after {
    content: '\f067';
    position: absolute;
    right: 0;
    font-family: 'fontawesome';
    color: #000000;
    font-size: 16px;

}

.faq_list li.active .faq_title::before {
    display: none;
}

.faq_list li.active .faq_title:after {
    content: '\f068';
    color: var(--dominant-color);
}

.faq_list li .faq_title b {
    position: relative;
    width: 36px;
    height: 25px;
    margin-right: 20px;
}

.faq_list li .faq_title b::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -7.5px;
    width: 15px;
    height: 15px;
    background-image: url(../img/search.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq_list li .faq_cont {
    display: none;
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    background-image: url(../img/case_faq_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 30px 60px;
}

.faq_list li:first-child .faq_cont {
    display: block;
}


.related_products {
    margin-top: 0 !important;
}

@media (max-width:1200px) {
    .click_btn{
        flex-direction: column;
        align-items: flex-start;
    }
    .prev_btn, .next_btn{
        width: 100%;
        margin-bottom: 20px;
    }
    .next_btn::before{
        left: 25px !important;
    }
}
@media only screen and (max-width: 950px) {
    .case_img {
        width: 100%;
        padding-bottom: 36%;

    }

    .case_details .details_item {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .case_details .details_item .item_img {
        width: 100% !important;
        order: 1 !important;
        padding-bottom: 58%;
    }

    .case_details .details_item .item_info {
        width: 100%;
        order: 2 !important;
        padding: 20px;
    }

    .click_btn {
        flex-direction: column;
        align-items: flex-start;
    }

    .prev_btn,
    .next_btn {
        width: 100% !important;
        padding: 5px 10px;
        padding-right: 50px;
    }

    .prev_btn::before {
        right: 25px;
        left: unset;
        transform: rotate(180deg);
    }

    .certificate_list {
        flex-direction: column;
    }

    .certificate_list .certificate_item {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .faq_list li .faq_cont {
        padding: 30px;
        background-size: cover;
    }
}