.web_head {
    position: relative;
}

.above_description {
    margin-top: 5%;
}

.above_description .desc_title {
    font-family: 'Roboto-Bold';
    font-weight: bold;
    font-size: 35px;
    color: #10221B;
    line-height: 46px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.above_description .desc_cont {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 17px;
    color: #666666;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.related_title {
    font-family: 'Roboto-Bold';
    font-weight: bold;
    font-size: 48px;
    color: #333333;
    line-height: 1.5;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.related_title a {
    display: inline-block;
    color: #333333;
}

.related_title a:hover {
    color: var(--conmmonColor);
}

.related_box {
    position: relative;
}

.related_box .related_prev,
.related_box .related_next {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #CED0D0;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    transition: all .5s ease;
    z-index: 99;
}

.related_box .related_prev {
    left: -4%;
    background-image: url(../img/swiper_prev.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center center;
}

.related_box .related_next {
    right: -4%;
    background-image: url(../img/swiper_next.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center center;
}

.related_box .related_prev:hover,
.related_box .related_next:hover {
    background-color: #CED0D0;
}

.related_product {
    margin-top: 5%;
}

.related_product .related_list {
    padding-bottom: 60px;
}

.related_product .related_list .pro_item {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 20px;
    -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;
}

.related_product .related_list .pro_item .item_title {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 20px;
    color: #666666;
    line-height: 30px;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
}

.related_product .related_list .pro_item .item_title a {
    display: inline-block;
    color: #666666;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related_product .related_list .pro_item:hover .item_title a {
    color: var(--conmmonColor);
}

.related_product .related_list .pro_item .item_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;

}

.related_product .related_list .pro_item:hover .item_img img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.related_product .related_list .pro_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.related_product .related_list .pro_item:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.related_product .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #333333;
    opacity: 1;
    margin: 0 8px !important;
}

.related_product .swiper-pagination-bullet-active {
    background-color: var(--conmmonColor);
}

.related_news {
    margin: 5% 0 0;
}

.related_news .related_list {
    padding-bottom: 60px;
}

.related_news .related_list .news_item {
    -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;
}

.related_news .related_list .news_item .item_img {
    background: #FFFFFF;
    border: 1px solid #eeeaea;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 60%;

}

.related_news .related_list .news_item:hover .item_img img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.related_news .related_list .news_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.related_news .related_list .news_item .item_date {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 21px;
    color: #798190;
    line-height: 42px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 25px 0 15px;
}

.related_news .related_list .news_item .item_title {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 24px;
    color: #020C1E;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.related_news .related_list .news_item .item_title a {
    display: inline-block;
    color: #020C1E;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related_news .related_list .news_item:hover .item_title a {
    color: var(--conmmonColor);
}

.related_news .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #333333;
    opacity: 1;
    margin: 0 8px !important;
}

.related_news .swiper-pagination-bullet-active {
    background-color: var(--conmmonColor);
}

.common_title {
    font-family: 'Roboto-Bold';
    font-weight: bold;
    font-size: 52px;
    color: #333333;
    line-height: 1.5;
    text-align: center;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.common_title a {
    display: inline-block;
    color: #333333;
}

.common_title a:hover {
    color: var(--conmmonColor);
}


.listPro_news {
    margin-top: 5%;
    margin-bottom: 5%;
}

.listPro_news .news_title {
    text-align: left;
}

.listPro_news .news_desc {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.listPro_news .news_wrap {
    margin-top: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.listPro_news .news_wrap .news_left {
    width: 48%;
}

.listPro_news .news_wrap .news_left .news_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 60%;
    -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;
}

.listPro_news .news_wrap .news_left:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.listPro_news .news_wrap .news_left .news_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.listPro_news .news_wrap .news_left .news_date {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: var(--conmmonColor);
    line-height: 1.5;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 25px 0 15px;
}

.listPro_news .news_wrap .news_left .news_title {
    font-family: 'Roboto-Bold';
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.listPro_news .news_wrap .news_left .news_title a {
    display: inline-block;
    color: #333333;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listPro_news .news_wrap .news_left:hover .news_title a {
    color: var(--conmmonColor);
}

.listPro_news .news_wrap .news_left .news_desc {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.listPro_news .news_wrap .news_left .news_desc a {
    display: inline-block;
    color: #666666;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listPro_news .news_wrap .news_right {
    width: 49%;
}

.listPro_news .news_wrap .news_right .news_list .news_item {
    padding: 20px;
    border-radius: 10px 10px 10px 10px;
    transition: all .5s ease;
}

.listPro_news .news_wrap .news_right .news_list .news_item:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.listPro_news .news_wrap .news_right .news_list .news_item .item_date {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: var(--conmmonColor);
    line-height: 1.5;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 15px;
}

.listPro_news .news_wrap .news_right .news_list .news_item .item_title {
    font-family: 'Roboto-Bold';
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.listPro_news .news_wrap .news_right .news_list .news_item .item_title a {
    display: inline-block;
    color: #333333;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listPro_news .news_wrap .news_right .news_list .news_item:hover .item_title a {
    color: var(--conmmonColor);
}

.listPro_news .news_wrap .news_right .news_list .news_item .item_desc {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.listPro_news .news_wrap .news_right .news_list .news_item .item_desc a {
    display: inline-block;
    color: #666666;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.common_inquiry {
    margin-top: 5%;
    padding: 5% 0;
}

.common_inquiry .inquiry_wrap {
    justify-content: space-between;
    align-items: center;
}

.common_inquiry .inquiry_wrap .inquiry_left {
    width: 48%;
    position: relative;
    height: 480px;
    overflow: hidden;
    -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;
}

.common_inquiry .inquiry_wrap .inquiry_left:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.common_inquiry .inquiry_wrap .inquiry_left img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.common_inquiry .inquiry_wrap .inquiry_right {
    width: 48%;
}

.common_inquiry .inquiry_wrap .inquiry_right .inquiry_title {
    color: #FFFFFF;
    text-align: left;
}

.common_inquiry .inquiry_wrap .inquiry_right .inquiry_desc {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 45px;
}

.common_inquiry .inquiry_wrap .inquiry_right .input_box {
    justify-content: space-between;
    align-items: center;
}

.common_inquiry .inquiry_wrap .inquiry_right .input_box li {
    width: 49%;
}

.common_inquiry .inquiry_wrap .inquiry_right form li {
    position: relative;
}

.common_inquiry .inquiry_wrap .inquiry_right form li:before {
    content: '*';
    position: absolute;
    left: 20px;
    top: 10px;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #AD222C;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.common_inquiry .inquiry_wrap .inquiry_right form input[type="text"] {
    width: 100%;
    border: none;
    padding: 10px 30px;
    background: #F4F4F4;
    border-radius: 10px 10px 10px 10px;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #808080;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 20px;
}

.common_inquiry .inquiry_wrap .inquiry_right form input[type="text"]::placeholder {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #808080;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.common_inquiry .inquiry_wrap .inquiry_right form textarea {
    width: 100%;
    height: 116px;
    border: none;
    padding: 10px 30px;
    background: #F4F4F4;
    border-radius: 10px 10px 10px 10px;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #808080;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 20px;
}

.common_inquiry .inquiry_wrap .inquiry_right form textarea::placeholder {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #808080;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.common_inquiry .inquiry_wrap .inquiry_right form .item_submit::before {
    content: '';
    font-size: 0;
}

.common_inquiry .inquiry_wrap .inquiry_right form input[type="submit"] {
    width: 208px;
    height: 52px;
    background: var(--conmmonColor);
    border: 2px solid var(--conmmonColor);
    border-radius: 26px 26px 26px 26px;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 50px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    transition: all .5s ease-out 0ms;
}

.common_inquiry .inquiry_wrap .inquiry_right form input[type="submit"]:hover {
    background-color: #F4F4F4;
    color: var(--conmmonColor);
}

.common_faq {
    margin-top: 5%;
}

.common_faq .faq_title {
    font-family: 'Roboto-Bold';
    font-weight: bold;
    font-size: 52px;
    color: #333333;
    line-height: 46px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.common_faq .faq_item {
    padding: 20px 40px 20px 20px;
}

.common_faq .faq_item.active {
    background: #F0F0F0;
    border-radius: 10px 10px 10px 10px;
}

.common_faq .faq_item .item_title {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 31px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common_faq .faq_item .item_title p {
    width: calc(100% - 50px);
}

.common_faq .faq_item .item_title::after {
    content: '\f107';
    font-family: 'fontawesome';
    display: inline-block;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 50%;
    line-height: 32px;
    width: 32px;
    height: 32px;
    background: var(--conmmonColor);
    transition: all .5s ease;
}

.common_faq .faq_item.active .item_title::after {
    transform: rotate(180deg);
}

.common_faq .faq_item.active .item_title {
    color: #E65819;
    font-family: 'Roboto-Bold';
    font-weight: bold;
}

.common_faq .faq_item .item_cont {
    display: none;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 15px;
}

@media only screen and (max-width: 950px) {
    .common_title {
        font-size: 48px;
        line-height: 1.5;
    }

    .listPro_news .news_wrap {
        flex-direction: column;
        align-items: center;
    }

    .listPro_news .news_wrap .news_left {
        width: 100%;
        margin-bottom: 30px;
    }

    .listPro_news .news_wrap .news_right {
        width: 100%;
    }

    .listPro_news .news_wrap .news_right .news_list .news_item {
        padding: 0;
        margin-bottom: 20px;
    }

    .listPro_news .news_wrap .news_left .news_title {
        margin-bottom: 20px;
    }

    .listPro_news .news_wrap .news_left .news_title a {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .listPro_news .news_wrap .news_left .news_desc a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .listPro_news .news_wrap .news_right .news_list .news_item .item_title a {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .listPro_news .news_wrap .news_right .news_list .news_item .item_desc a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .common_inquiry .inquiry_wrap {
        flex-direction: column;
        align-items: center;
    }

    .common_inquiry .inquiry_wrap .inquiry_left {
        width: 100%;
        height: 0;
        padding-bottom: 63%;
        margin-bottom: 30px;
    }

    .common_inquiry .inquiry_wrap .inquiry_right {
        width: 100%;
    }
}


@media only screen and (max-width: 768px) {
    .above_description .desc_title {
        font-size: 30px;
        line-height: 35px;
    }

    .related_title {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 30px;
    }

    .related_box .related_prev,
    .related_box .related_next {
        top: 35%;
        background-color: #CED0D0;
    }

    .related_box .related_prev:hover,
    .related_box .related_next:hover {
        background-color: var(--conmmonColor);
        border-color: var(--conmmonColor);
    }

    .related_box .related_next {
        right: -2%;
    }

    .related_box .related_prev {
        left: -2%;
    }

    .related_product .related_list .pro_item .item_title a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .related_product .related_list {
        padding-bottom: 40px;
    }

    .related_product .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .related_news .related_list .news_item .item_date {
        font-size: 18px;
        line-height: 1.5;
    }

    .related_news .related_list .news_item .item_title {
        font-size: 20px;
        line-height: 1.5;
    }

    .related_news .related_list .news_item .item_title a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .related_news .related_list {
        padding-bottom: 40px;
    }

    .related_news .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .common_title {
        font-size: 30px;
        line-height: 1.5;
    }

    .listPro_news .news_wrap {
        margin-top: 30px;
    }

    .common_inquiry .inquiry_wrap .inquiry_right .inquiry_desc {
        margin-bottom: 30px;
    }

    .common_faq .faq_title {
        font-size: 30px;
        line-height: 1.5;
    }
    

}