/*!
 * app.css for master
 * Author wzcoder.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-03-05-1:59 PM
 */

/*--------------------------------------------------------------
# 加载组件样式
--------------------------------------------------------------*/
@import "navbar.css";
@import "hero.css";
@import "footer.css";

/*--------------------------------------------------------------
# App通用
--------------------------------------------------------------*/
.section-title .title-sub {
    display: none !important;
}

.btn-style {
    padding: 16px 30px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    transition: 0.3s ease-in;
    border-radius: var(--border-radius);
    text-transform: capitalize;
    --bs-btn-color: var(--white-color);
    --bs-btn-hover-color: var(--white-color);
    --bs-btn-active-color: var(--white-color);
    --bs-btn-bg: var(--focus-color);
    --bs-btn-border-color: var(--focus-color);
    --bs-btn-hover-bg: var(--logo-color-light);
    --bs-btn-hover-border-color: var(--logo-color-light);
    --bs-btn-active-bg: var(--logo-color-light);
}

.btn-style-primary {
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: rgba(var(--primary-color-rgb), 0.8);
    --bs-btn-hover-border-color: rgba(var(--primary-color-rgb), 0.8);
    --bs-btn-active-bg: rgba(var(--primary-color-rgb), 0.8);
    --bs-btn-active-border-color: rgba(var(--primary-color-rgb), 0.8);
}

.btn-quote {
    padding: 11px 30px;
}

.btn-arrow {
    font-size: 15px;
    display: inline-flex;
    padding: 0;
}

.btn-arrow i {
    margin-left: 10px;
    transition: 0.3s;
}

.btn-arrow:hover i {
    margin-left: 15px;
}

.email-form .btn-arrow {
    padding: 16px 30px;
    font-size: 16px;
}

/*表格中格式修正*/
table p, table ul {
    margin-bottom: 0;
}

.banner-inner {
    padding-top: 100px;
    height: 35vh;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.banner-inner-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-size: cover;
    background-position: center center;
    -webkit-animation: scaleAnim 5s ease forwards;
    animation: scaleAnim 5s ease forwards;
    z-index: -1;
}

.banner-inner-wrapper {
    margin-top: 5vh;
}

.banner-inner-wrapper,
.breadcrumb, .breadcrumb a {
    color: #FFFFFF;
}

.breadcrumb-container {
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
}

.breadcrumb, .breadcrumb a {
    font-size: 14px;
    opacity: 0.6;
    transition: ease-in-out 0.3s;
}

.breadcrumb {
    margin-top: 10px;
}

.breadcrumb span.bi {
    line-height: 26px;
}

.breadcrumb a:hover {
    opacity: 1;
}

.banner-inner-wrapper h3 {
    font-size: 44px;
    letter-spacing: 1px;
}

@keyframes scaleAnim {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

/*--cta--*/
.cta-content-grid h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: var(--heading-color);
}

.cta-content-grid p,
p.cta-content-grid-inf a {
    color: var(--text-color-secondary);
}

.cta-content-grid form input {
    padding: 10px 20px;
    height: 56px;
    font-size: 17px;
    color: var(--text-color-secondary);
    border-radius: var(--border-radius);
    position: relative;
    background: var(--light-bg-color);
    outline: none;
    border: 1px solid var(--light-bg-color);
    margin-right: 10px;
    width: 65%;
}

.cta-content-grid form .btn {
    width: 35%;
    padding: 10px 26px;
}

.cta-content-grid form input:focus {
    border: 1px solid var(--primary-color);
    background: var(--white-color);
}


/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/
.home-about .section-title {
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.home-about .summarybox {
    font-size: 18px;
    color: var(--text-color-secondary);
}

.home-about .about-img {
    margin-top: 2rem;
    background-size: cover;
    display: grid;
    align-items: center;
    z-index: 0;
    position: relative;
}

.home-about .about-img:before {
    content: "";
    background: var(--layer);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

a.popup-with-zoom-anim {
    z-index: 10;
}

span.video-play-icon {
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;

}

span.video-play-icon i {
    color: var(--primary-color);
    font-size: 32px;
}

span.video-play-icon i:before {
    line-height: unset;
}

span.video-play-icon:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

/*--------------------------------------------------------------
# solution Section
--------------------------------------------------------------*/
.home-solution .solu-img {
    position: relative;
    margin: 60px 0 0 60px;
}

.home-solution .solu-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: -1;
    content: "";
    background: url("../img/about-bg.png") top left;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .home-solution .solu-img {
        margin: 30px 0 0 30px;
    }

    .home-solution .solu-img:before {
        inset: -30px 0 0 -30px;
    }
}

.home-solution h3 {
    font-weight: 300;
    font-size: 24px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .home-solution h3 {
        font-size: 28px;
    }
}

.home-solution .nav-pills {
    border-bottom: 1px solid var(--light-bg-color);
}

.home-solution .nav-pills li {
    padding: 0 30px;
}

.home-solution .nav-link {
    background: none;
    font-size: 20px;
    font-weight: 400;
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
    color: initial;
}

.home-solution .nav-link.active {
    color: var(--primary-color);
    background: none;
    border-bottom: 3px solid var(--primary-color);
}

@media (max-width: 575px) {
    .home-solution .nav-link {
        font-size: 16px;
    }
}

.home-solution .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.home-solution .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--primary-color);
}

.home-solution .sol-pane p.txt {
    font-size: 18px;
}

.home-solution .sol-pane p.txt br {
    margin-bottom: 10px;
}

.home-solution .sol-pane .sol-lists p {
    margin-top: 5px;
    padding-left: 30px;
    color: var(--text-color-secondary);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.home-whyus .service-item {
    padding: 30px;
    transition: all ease-in-out 0.3s;
    /*background: var(--white-color);*/
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-whyus .service-item .icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.home-whyus .service-item .icon i {
    color: var(--primary-color);
    font-size: 36px;
    transition: 0.3s;
}

.home-whyus .service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}

.home-whyus .service-item h4 a {
    transition: ease-in-out 0.3s;
}

.home-whyus .service-item p {
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0;
    color: var(--text-color-secondary);
}

/*.home-whyus .service-item:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0px 0 60px 0 rgba(var(--primary-color-rgb), 0.1);*/
/*}*/

.home-whyus .service-item:hover h4 a {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
.home-gallery .portfolio-navs {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.home-gallery .portfolio-navs li {
    cursor: pointer;
    display: inline-block;
    margin: 0 15px;
    padding: 10px 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    /*text-transform: uppercase;*/
    /*color: var(--bs-white);*/
    /*background-color: var(--primary-color);*/
    /*margin-bottom: 5px;*/
    /*transition: all 0.3s ease-in-out;*/
    /*border-radius: 50px;*/
}

.home-gallery .portfolio-navs li:last-child {
    margin-right: 0;
}

.home-gallery .portfolio-navs li:hover, .home-gallery .portfolio-navs li.filter-active {
    color: var(--primary-color);
    /*background: var(--secondary-color);*/
    border-bottom: 2px solid var(--primary-color);
}


.imgs-grids {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.03);
    background-color: var(--bs-white);
    transition: all ease-in-out 0.3s;
}

.imgs-grids:hover {
    box-shadow: 0 0 15px 5px rgba(var(--primary-color-rgb), 0.1);
}

.home-gallery h4 {
    text-align: center;
    line-height: 32px;
    margin-top: 20px;
    word-break: break-word;
}

.home-gallery h4 a {
    font-size: 18px;
    text-transform: capitalize;
}

.imgs-grids .icons-section a {
    border-radius: 50px;
    display: inline-block;
    background: rgba(29, 29, 29, 0.7);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    margin: 0 2px;
}

.imgs-grids .icons-section a {
    transition: all .3s ease 0s;
    background: rgba(255, 255, 255, 0.3);
}

.imgs-grids .icons-section a:hover {
    background: #FFFFFF;
}

.imgs-grids .icons-section a i.bi {
    transition: all .3s ease 0s;
    line-height: 40px;
}

.imgs-grids .icons-section a:hover i.bi {
    color: var(--primary-color)
}

.imgs-grids img {
    /*border-radius: var(--border-radius);*/
    /*padding: 15px;*/
}


.imgs-grids .text {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(73 45 123 / 40%);
    right: 0;
    transition: all 400ms ease;
    display: grid;
    align-items: center;
}

.text {
    transform: scale3d(0, 0, 1);
}

.imgs-grids:hover .text {
    opacity: 0.8;
    background-color: rgba(1, 28, 37, 0.5);
    transform: scale3d(1, 1, 1);
}

.imgs-grids:hover div.text {
    bottom: 0;
}

.imgs-grids .icons-section,
.imgs-grids h6 {
    margin-top: 0.5em;
}

.imgs-grids .caption {
    opacity: 0;
}

.imgs-grids .icons-section {
    padding: 10px;
    margin-top: 10px;
}

.imgs-grids .wthree_text p {
    margin-bottom: 0;
}

.imgs-grids:hover .wthree_text {
    opacity: 1;
    color: #fff;
    transform: translateY(0) scale3d(1, 1, 1);
    transition: transform 400ms ease 380ms;
}

.imgs-grids:hover .caption {
    opacity: 1;
    color: #fff;
    transform: translateY(0) scale3d(1, 1, 1);
    transition: transform 400ms ease 480ms;
}

.wthree_text {
    padding: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(0) scale3d(0, 0, 1);
    transition: transform 400ms ease 280ms;
}

.wthree_text h3 {
    color: #fff;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 700;
}

.wthree_text p {
    color: #eee;
    margin-top: 5px;
}

.imgs-grids h4 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 700;
}

.imgs-grids:hover .wthree_text2 {
    opacity: 0;
}

@media (max-width: 1199.98px) {
    .imgs-grids h4 a {
        font-size: 1em;
    }

    .imgs-grids .about_grids h3 {
        font-size: 22px;
    }

    .imgs-grids .about-in .card {
        padding: 1.5em .5em;
    }
}

@media (max-width: 991.98px) {
    .imgs-grids img {
        width: 100%;
    }
}

@media (max-width: 767.98px) {

    .wthree_text h3 {
        font-size: 20px;
    }

    .imgs-grids h4 {
        margin-top: 15px;
    }

    .imgs-grids h4 a {
        font-size: 20px;

    }
}

@media screen and (min-width: 769px) {
    .gslide-description {
        background: var(--light-bg-color) !important;
    }
}

.gslide-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
}

.post-box {
    background-color: #FFFFFF;
    transition: all ease-in-out 0.3s;
    height: 100%;
}

.post-box:hover {
    box-shadow: 0 0 15px 5px rgba(var(--primary-color-rgb), 0.05);

}

.post-box .postimg {
    position: relative;
}

.post-box .category-badges {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

.post-box .category-badges a {
    color: #FFFFFF;
    font-size: 14px;
    padding: 4px 10px;
    font-weight: 600;
    background-color: var(--focus-color);

}

.post-box .dc {
    margin: 1rem 0;
}

.post-box .dc a {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.post-box .dc a:not(:last-child) {
    margin-right: 10px;
}

.post-box .summary {
    padding: 10px 20px 20px 20px;
}

.post-box .summary h3 {
    font-size: 20px;
    line-height: 25px;
    margin: 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--chakra-line-clamp);
}

.post-box .summary p {
    font-size: 14px;
    color: var(--text-color-secondary);
    margin: 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.post-box .btn-arrow {
    color: var(--primary-color);
}

.article .article-title .dc a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color-secondary);
    margin-right: 20px;
}

.article-prev-next p {
    margin-bottom: 0;
}

.article-prev-next p.tit {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.article-prev-next p.tit i {
    font-weight: bold;
}

.category-title h3 {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 992px) {
    .catsumm-img {
        display: flex;
        justify-content: end;
        padding-left: 30px;
        padding-right: 30px;
        max-height: 320px;
    }

    .catsumm-img img {
        max-height: 100%;
    }
}

.catl {
    box-shadow: 0 0 15px 5px rgba(var(--primary-color-rgb), 0.05);
    transition: ease-in-out 0.3s;
}

.catl:hover {
    box-shadow: 0 0 15px 5px rgba(var(--primary-color-rgb), 0.1);
}

.catl .catl-wrap {
    padding: 30px;
    height: 100%;
}

.catl .catl-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vw * 9 / 16);
}

@media screen and (min-width: 992px) {
    .catl .catl-img {
        height: 350px;
    }
}

.catl .catl-txt h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.catl .catl-txt p {
    font-size: 15px;
    color: var(--text-color-secondary);
}

.catl-btn .btn-arrow {
    color: var(--primary-color);
    margin-top: 1rem;
}

.catl:hover .catl-btn .btn-arrow i {
    margin-left: 15px;
}

.catsumm-txt h3.tit {
    font-size: 34px;
    margin-bottom: 1rem;
}

.catsumm-txt .se-tit {
    font-size: 20px;
}

.catsumm-txt ul > li > p {
    margin: 0;
}

.catnav-tit {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.scrolllink li {
    list-style: none !important;
    padding: 0;
    margin-bottom: 0.5rem;
}

.scrolllink li a i {
    margin-left: 10px;
    transition: margin-left 0.3s;
}

.scrolllink li a:hover i {
    margin-left: 15px;
}

.section-tit__in {
    text-align: center;
}

.section-tit__in .catnav-tit {
    font-size: 32px;
}

.section-tit__in p {
    font-size: 16px;
    color: var(--text-color-secondary)
}

.wz-table {
    width: 100%;
}


.wz-table tr {
    box-sizing: border-box;
    outline: 0px;
    border-top: none;
    border-bottom: 1px solid rgb(162, 170, 173);
    height: 18px;
}

.wz-table tr td,
.wz-table tr th {
    box-sizing: border-box;
    outline: 0px;
    padding: 12px 16px;
    display: table-cell;
    border: medium;
    vertical-align: middle;
    text-align: center;
}

.tab-nav {
    border-left: 2px solid var(--border-color);
}

.tab-nav .nav-link {
    position: relative;
    color: var(--text-color-secondary);
}

.tab-nav .nav-link.active {
    background: var(--light-bg-color);
    color: var(--primary-color);
    font-weight: 600;
}

.tab-nav .nav-link.active:before {
    content: "";
    position: absolute;
    left: -2px;
    right: 0;
    top: 0;
    bottom: 0;
    border-left: 2px solid var(--primary-color);
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--primary-color);
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    font-size: 15px;
}

.solcat-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0 60px 0 rgba(var(--primary-color-rgb), 0.1);
    transition: ease-in-out 0.3s;
    margin-bottom: 50px;
}

.solcat-box {
    padding: 8%;
}

.solcat-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solcat-box .summary {
    margin-top: 1rem;
    color: var(--text-color-secondary);
}

.solcat-box .summary p {
    margin-bottom: 0;
    line-height: 26px;
    height: 78px;
    overflow: hidden;
}

.solcat-box .btn-arrow {
    color: var(--primary-color);
    margin-top: 1rem;
}

.solcat-box:hover {
    box-shadow: 0 10px 60px 0 rgba(48, 49, 51, 0.1), 0 -10px 20px 0 rgba(48, 49, 51, 0.05);
}

.solcat-box:hover .btn-arrow i {
    margin-left: 15px;
}

.solcat-box__v2 {
    padding: 0;
}

.solcat-box__v2 .summary {
    padding: 10px 20px 20px 20px;
}

.solcat .solcat-content img {
    max-width: 100%;
    height: auto;
}

.gallery-list {
    position: relative;
}

.gallery-list .postimg .item {
    padding: 20px;
}

.gallery-list .summary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-main .about-img {
    background-size: cover;
    display: grid;
    align-items: center;
    z-index: 0;
    position: relative;
}

.about-main .about-img:before {
    content: "";
    background: var(--layer);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-box h3 span {
    color: var(--primary-color);
}

.service-box p {
    font-size: 15px;
    color: var(--text-color-secondary);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
    height: 100%;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 22px;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
    color: var(--text-color-secondary);
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: var(--text-color-secondary);
}

.team .member .contact {
    margin: 10px 0;
}

.team .member .contact p {
    margin: 0;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #47b2e4;
}

.team .member .social a:hover i {
    color: #fff;
}

.team .member .social a + a {
    margin-left: 8px;
}

.catlist-box .catlist-txt {
    margin-top: 1rem;
}

.catlist-box .catlist-txt h3 {
    font-size: 24px;
    font-weight: bold;
}

.catlist-box .btn-arrow {
    color: var(--primary-color);
}

.company-logos img {
    padding: 0 18px;
    border-radius: var(--border-radius);
}

.company-logos img:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .company-logos img {
        padding: 0 12px;
    }
}

@media (max-width: 415px) {
    .company-logos img {
        padding: 0 8px;
    }
}

@media (max-width: 384px) {
    .company-logos img {
        padding: 0 2px;
    }
}

.img-grid {
    overflow: hidden;
    position: relative;
}

.img-grid-pos {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(73 45 123 / 40%);
    right: 0;
    transition: all 400ms ease;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    display: grid;
    align-items: center;
}

.img-grid-pos {
    transform: scale3d(0, 0, 1);
}

.img-grid:hover .img-grid-pos {
    opacity: 0.8;
    background-color: rgba(1, 28, 37, 0.5);
    transform: scale3d(1, 1, 1);
}

.img-grid:hover .img-grid-text {
    opacity: 1;
    color: #fff;
    transform: translateY(0) scale3d(1, 1, 1);
    transition: transform 400ms ease 380ms;
}

.img-grid .img-grid-text {
    text-align: center;
    opacity: 0;
    transform: translateY(0) scale3d(0, 0, 1);
    transition: transform 400ms ease 280ms;
}

.img-grid-text h3 {
    color: #fff;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 600;
}

.img-grid-text p {
    color: #eee;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .guides {
        margin-bottom: 60px;
    }
}

.contact-main .cont-tit h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.contact .contact-main .cont-tit h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--focus-color);
    bottom: -10px;
    left: 0;
}

.contact-main p {
    margin-bottom: 0;
    color: var(--text-color-secondary);
}

.contact-main strong {
    font-weight: 700;
    color: var(--title-color);
    font-size: 18px;
}

.get-in-touch section {
    padding: 0;
}

.get-in-touch .section-title__v2 .title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}


.list-indu .indu-content .article-title h2 {
    font-size: 34px;
    margin-bottom: 1rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.cnc-processing .tit {
    font-size: 22px;
    font-weight: 600;
}

.post-box__img.equipment .post-txt .tit {
    margin: 1rem 0;
    font-size: 22px;
    font-weight: 600;
}

.post-box__img.equipment .post-txt .cont p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--text-color-secondary);
}

@media (max-width: 767.98px) {
    .cnc-processing .tit,
    .post-box__img.equipment .post-txt .tit {
        font-size: 18px;
    }

    .cnc-processing .summ, .post-box__img.equipment .post-txt .cont p {
        font-size: 14px;
        line-height: 1.2;
    }
}

.wechat-lists {
    background: #ffffff;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.wechat-lists ul {
    display: inline-block;

}

.wechat-lists ul > li:not(:last-child) {
    margin-right: 15px;
}

.wechat-lists img {
    width: 120px;
    height: auto;
}

.wechat-lists p {
    text-align: center;
}

.modal-content {
    border-radius: 0;
}

.contactModal .modal-title {
    font-size: 18px;
}
