/* 演示版样式，非项目必要 */
.themed-grid-col {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(86, 61, 124, 0.15);
    border: 1px solid rgba(86, 61, 124, 0.2);
}

.bd-example {
    position: relative;
    padding: 1rem;
    border: 2px solid #f8f9fa;
}

.highlight {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* 按项目所需，重定义bootcss必要元素样式 */
/******
 ****** Global
 ******/
body {
    font-size: 14px;
    font-family: "Microsoft Yahei", "PingFang SC", arial, helvetica, clean,
        sans-serif;
}

.site.home-30th,
.site.overview,
.site.global-contacts {
    overflow-x: hidden;
}

p {
    margin: 1rem auto;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 13px;
}

h1,
h2,
h3,
h4,
h5 {
    color: #222;
    font-weight: bold;
}

@media (min-width: 768px) {
    p {
        font-size: 14px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media (min-width: 1200px) {
    p {
        font-size: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 26px;
    }

    h2.home-section-title {
        font-size: 32px;
    }

    h2.footer-title {
        font-size: 42px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .font-size-12 {
        font-size: 12px !important;
    }

    .font-size-13 {
        font-size: 13px;
    }

    .font-size-14 {
        font-size: 14px !important;
    }

    .font-size-15 {
        font-size: 15px !important;
    }

    .font-size-16 {
        font-size: 16px;
    }

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

    .font-size-22 {
        font-size: 22px;
    }

    .font-size-26 {
        font-size: 26px;
    }

    .font-size-28 {
        font-size: 28px;
    }

    .font-size-42 {
        font-size: 42px;
    }
}

a {
    color: #000;
    cursor: pointer;
    outline: none;
}

a:hover,
a:focus {
    color: #333;
    text-decoration: none;
    transition: all 0.5s;
}

.w-auto {
    width: auto !important
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

/* 按钮样式 */
.btn {
    border-radius: 0;
}

/* 主按钮（暗色#333主题） */
.btn-primary {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    background-color: #000;
    border-color: #000;
}

.btn-primary:focus,
.btn-primary.focus {
    background-color: #000;
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #333;
    border-color: #333;
}

.bd-example-border-utils [class^="border"] {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    margin: 0.25rem;
    background-color: #f5f5f5;
}

css.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 40px;
    height: 10px;
    margin: 10px auto;
}

.loader-ellips__dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #44cef6;
    /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 15px;
}

.loader-ellips__dot:nth-child(4) {
    left: 30px;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(15px);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

.page-load-status {
    display: none;
    padding-top: 20px;
    color: #333;
    text-align: center;
}

/* 公共样式 */

.p-150 {
    padding: 150px !important;
}

.pt-150,
.py-150 {
    padding-top: 150px !important;
}

.pr-150,
.px-150 {
    padding-right: 150px !important;
}

.pb-150,
.py-150 {
    padding-bottom: 150px !important;
}

.pl-150,
.px-150 {
    padding-left: 150px !important;
}

@media (min-width: 992px) {
    .p-lg-100 {
        padding: 100px !important;
    }

    .pt-lg-100,
    .py-lg-100 {
        padding-top: 100px !important;
    }

    .pr-lg-100,
    .px-lg-100 {
        padding-right: 100px !important;
    }

    .pb-lg-100,
    .py-lg-100 {
        padding-bottom: 100px !important;
    }

    .pl-lg-100,
    .px-lg-100 {
        padding-left: 100px !important;
    }

    .p-lg-84 {
        padding: 84px !important;
    }

    .pt-lg-84,
    .py-lg-84 {
        padding-top: 84px !important;
    }

    .pr-lg-84,
    .px-lg-84 {
        padding-right: 84px !important;
    }

    .pb-lg-84,
    .py-lg-84 {
        padding-bottom: 84px !important;
    }

    .pl-lg-84,
    .px-lg-84 {
        padding-left: 84px !important;
    }

    .m-lg-100 {
        margin: 100px !important;
    }

    .mt-lg-100,
    .my-lg-100 {
        margin-top: 100px !important;
    }

    .mr-lg-100,
    .mx-lg-100 {
        margin-right: 100px !important;
    }

    .mb-lg-100,
    .my-lg-100 {
        margin-bottom: 100px !important;
    }

    .ml-lg-100,
    .mx-lg-100 {
        margin-left: 100px !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .border-left-lg-black {
        border-left: 1px solid #000000;
    }
}

.border-12 {
    border-radius: 12px !important;
}

.border-bottom-red-3 {
    border-bottom: 3px solid #C61825;
}

.border-left-red-3 {
    border-left: 3px solid #C61825;
}

.border-red-2 {
    border: 2px solid #C61825;
}

.btn-outline-line {
    border-color: #dee2e6;
}

.btn-outline-line:hover {
    background-color: #e6e6e6;
    border-color: #dee2e6;
    color: #000;
}

.btn-danger {
    color: #fff !important;
    background-color: #c61825 !important;
    border-color: #fff !important;
    border: 0;
    border-radius: 0;
}

.btn-red {
    color: #fff;
    background-color: #C61825 !important;
    border-color: #C61825;
    border-radius: 0;
}

.btn-red:hover {
    background-color: #c82333 !important;
}

.btn-link {
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.btn-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.btn-dark {
    color: #C61825;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.btn-dark:hover {
    color: #C61825;
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}

.bg-gray {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

.bg-gray2 {
    background-color: #f5f5f5 !important;
}

.bg-dark {
    background-color: #00000087 !important;
}

.bg-red {
    background-color: #C61825 !important;
}

.text-red {
    color: #C61825 !important;
}

.mask-black::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.342);
    z-index: 1;
    width: 100%;
    height: 100%;
}

.z-index-99 {
    z-index: 99 !important;
}

.max-width-164 {
    max-width: 164px;
}

.max-width-64 {
    max-width: 64px;
}

.max-width-48 {
    max-width: 48px;
}

.min-width-74 {
    min-width: 74px;
}

.section-server-category span:last-child {
    display: none;
}

/* footer */
.footer-contact-us-qrcode {
    right: -12px;
    bottom: -88px;
}

.footer-contact-us ul li .footer-contact-us-qrcode {
    display: none;
}

.footer-contact-us ul li.active .footer-contact-us-qrcode {
    display: block;
}

.footer-contact-us-phone:hover {
    color: #C61825;
}

.footer-bottom {
    background-color: #fff;
    z-index: 998;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-address,
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-phone {
    font-family: Arial, Helvetica, sans-serif;
}

.footer-phone a:hover {
    color: #C61825 !important;
}

.footer-bottom .footer-phone a:hover {
    color: #ffffffa8 !important;
}

.h-langugae button {
    color: #ffffff;
}

.footer-copyright p,
.footer-copyright p a {
    opacity: 1;
    color: #ffffff !important;
}

.footer-copyright p a:hover {
    opacity: 0.7 !important;
}

.footer-middle ul#menu-footer-menu .sub-menu li {
    margin-bottom: 14px;
}

.footer-bottom {
    background-color: #C61825;
}

.footer-bottom .btn-danger {
    border: 2px solid;
}

.footer-top form.search-form {
    position: relative !important;
}

.search-close-btn i {
    font-size: 28px;
}

.footer-top i {
    top: 10px;
    right: 56px;
}

.d-langugae {
    /* float: left; */
    border: 0px;
    line-height: 30px;
    /* margin-left: 20px; */
    margin-right: 10px;
    background: url(../images/icon-chinese.svg) no-repeat left center;
    padding-left: 14px;
    cursor: pointer;
    position: relative;
    max-width: 100px;
}

.dropdown .dropdown-menu a {
    font-size: 13px;
}

.dropdown-menu a:hover {
    color: #fff;
    background-color: #C61825;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #C61825;
}

.wpml-lang-flag {
    margin-right: 6px;
}

.d-langugae button:after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    right: -6px;
}

.footer-copyright .d-langugae.dropdown {
    margin-top: -7px;
    width: 96px;
}

@media (max-width: 992px) {
    .footer-contact-us ul li {
        display: inline-block;
    }
}

/* home */
/* swiper */
.section-our-client .swiper-button-next,
.section-our-client .swiper-container-rtl .swiper-button-prev {
    right: -8px;
}

.section-our-client .swiper-button-prev,
.section-our-client .swiper-container-rtl .swiper-button-next {
    left: -8px;
}

.section-our-client .swiper-button-next,
.section-our-client .swiper-button-prev {
    margin-top: -20px;
}

@media (min-width: 992px) {

    .section-our-client .swiper-button-next,
    .section-our-client .swiper-container-rtl .swiper-button-prev {
        right: -16px;
    }

    .section-our-client .swiper-button-prev,
    .section-our-client .swiper-container-rtl .swiper-button-next {
        left: -16px;
    }

    .section-our-client .swiper-button-next,
    .section-our-client .swiper-button-prev {
        margin-top: -30px;
    }
}

.section-our-client .swiper-button-next:after,
.section-our-client .swiper-button-prev:after {
    color: black;
    font-size: xx-large;
    display: none;
}

.section-our-client .swiper-button-next i,
.section-our-client .swiper-button-prev i {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    height: 32px;
    z-index: 9999;
    font-family: "FontAwesome";
    font-size: 2em;
    color: #000;
}

.section-our-client .swiper-button-next i:hover,
.section-our-client .swiper-button-prev i:hover {
    color: #c61825 !important;
    opacity: 1;
}

.section-our-client .swiper-button-next:hover,
.section-our-client .swiper-button-prev:hover {
    color: #c61825 !important;
    opacity: 1;
}

.section-server-category a:hover,
.section-industry-category a:hover {
    border-bottom: 1px solid #fff;
}

.our-services-icon {
    width: 70px;
    height: 70px;
    font-family: Arial, Helvetica, sans-serif;
}

.our-services-icon-number {
    font-weight: 800;
    font-size: 40px;
}

.our-services-icon-number span {
    font-size: 13px;
}

.industrial_products_img {
    background-color: rgba(0, 0, 0, 0.5);
}

.section-about-video-play {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.home-news-img {
    min-width: 140px;
}

.section-services .section-services-list li {
    list-style: inside !important;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .section-server {
        margin-top: -100px;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-80 {
        width: 80% !important;
    }
}

/* 我们的服务Banner */
.banner,
.banner .container {
    position: relative;
}

.banner .container::before {
    width: 30%;
    left: -100px;
    background-color: #C61825;
    /* mix-blend-mode: multiply; */
    z-index: 1;
    transform: skewX(-15deg);
}

.banner .main-title::before {
    width: 100%;
    left: -100%;
    background-color: #000000;
}

/* .services-banner::after {
    width: 100%;
    right: -100%;
    background: linear-gradient(to right,rgb(0 0 0) 0%,rgb(0 0 0 / 0%) 100% );
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
} */
.banner::after,
.banner .container::before,
.banner .container::after,
.banner .main-title::before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
}

.services-banner::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 35%;
    right: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
}

.breadcrumbs,
.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

.banner .container::after {
    width: 66%;
    left: 0;

    background: linear-gradient(to right, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00279a', endColorstr='#00279a', GradientType=1);
}

.banner .main-title h1,
.banner .breadcrumbs,
.banner .main-title span {
    z-index: 99;
}

.main-title span {
    color: #fff;
}

.main-title {
    color: #fff;
}

.services-banner .main-title {
    justify-content: space-around;
    align-items: start;
}

.services-form {
    margin-top: -56px;
}

.services-form .caldera-grid .last_row {
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0px 0px 20px #0000001f;
}

.services-form .caldera-grid .col-sm-12 {
    padding-right: 0;
    padding-left: 0;
}

.services-form .caldera-grid .form-group .form-control {
    border: 1px solid #dddddd;
}

.services-form .caldera-grid .form-group .form-control::placeholder {
    color: #383431;
    font-size: 15px;
}

.services-form .caldera-grid .btn {
    font-size: 16px;
}

.services-form .caldera-grid .row {
    margin-right: 0px;
    margin-left: 0px;
}

.form-fixed-top {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
}

.service-content-details ul li h4 {
    font-weight: normal;
    font-size: 16px;
}

.service-content-details ul li {
    background: url("../images/slash-red.svg") no-repeat left 5px;
    padding: 0 24px;
    margin-bottom: 10px;
    margin-left: 30px;
    font-size: 16px;
}

/* contact-us */
.list-area .info-area p {
    margin-bottom: 0;
}

.list-area .info-area {
    border-bottom: 3px solid #C61825;
}

/* faqs */
.collapse:not(.in) {
    display: none !important;
}

.collapse:not(.show) {
    display: block;
}

.global-sidebar-menu-faq ul li {
    display: inline-block;
    padding: 14px 18px;
    border-bottom: 2px solid #C61825 !important;
    margin-bottom: 10px;
}

.global-sidebar-menu-faq ul li a {
    font-size: 15px;
}

.global-sidebar-menu-faq ul .current-cat,
.post-type-archive .global-sidebar-menu-faq ul .all {
    background-color: #C61825;
}

.post-type-archive .global-sidebar-menu-faq ul .all a {
    color: #fff;
}

.global-sidebar-menu-faq ul li:hover {
    background-color: #c61825;
}

.global-sidebar-menu-faq ul li:hover a {
    color: #fff;
}

.global-sidebar-menu-faq ul .current-cat a {
    color: #fff;
}

.faq-list-warp .list-unstyled-title i:before {
    content: url(../images/icon-horizontal-line-remove-button.svg);
}

.faq-list-warp .list-unstyled-title.collapsed i:before {
    content: url(../images/icon-plus-button.svg);
}

/******
 ****** 404
 ******/
.error-404-wrapper .search i {
    top: 8px;
    left: 210px;
}

.error-404-wrapper .title-404 {
    font-size: 50px;
    line-height: 100px !important;
}

@media (min-width: 1200px) {
    .error-404-wrapper .title-404 {
        font-size: 200px;
        line-height: 190px !important;
    }

    .error-404-wrapper .found-404 {
        font-size: 36px;
        line-height: 50px;
    }
}

/* 服务申请表 */
.page-caldera-form .caldera-form {
    top: 20%;
    left: 50%;
    z-index: 1050;
    width: 100%;
    max-width: 800px;
    transform: translateX(-50%);
    padding: 50px;
    background-color: white;
    box-shadow: 0 0 30px #00000084;
    border-radius: 20px;
}

.page-caldera-form .caldera-form .caldera-form-close {
    top: 20px;
    right: 20px;
}

/* 30th anniversary */

@media (min-width: 1440px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1360px;
    }
}

.footer-contactInfo {
    margin-top: 44px;
}

@media (max-width: 1920px) {
    .footer-contactInfo {
        margin-top: 25px;
    }
}

.home-service-img img {
    max-width: 80px;
    max-height: 80px;
}

.home-esg-img img {
    max-width: 64px;
    max-height: 64px;
}

.site-header,
.footer-container {
    border-top: 4px solid #c61825;
}

.logo-30th {
    max-width: 210px;
}

.line-h-2 {
    line-height: 2;
}

.line-h-24 {
    line-height: 24px;
}

.li-none {
    list-style-type: none;
}

.home-industry-icon i {
    font-size: 36px;
    color: #C61825 !important;
}

.home-industry-icon-white i {
    font-size: 36px;
    color: #fff !important;
}

.home-industry-content .wpb_wrapper {
    height: 100%;
}

.btn-outline-bottom i {
    font-size: 24px;
}

.btn-outline-bottom {
    border-bottom: 1px solid rgb(0 0 0 / .23);
}

h2.home-section-title,
h2.home-section-esg-title,
h2.global-contacts-section-title,
h2.overview-about-title {
    position: relative;
}

h2.home-section-title::before,
h2.global-contacts-section-title::before,
h2.overview-about-title::before {
    content: url("../images/home-section-title-icon.svg");
    position: absolute;
    left: 0;
    bottom: -18px;
}

h2.home-section-esg-title::before {
    content: url("../images/home-section-title-icon-green.svg");
    position: absolute;
    left: 0;
    bottom: -18px;
}

.home-section p {
    font-size: 14px !important;
}

.apacRegion li.menu-item,
.europeRegion li.menu-item,
.americasRegion li.menu-item,
.meaRegion li.menu-item {
    line-height: 26px;
}

.btn.btn-none:focus {
    box-shadow: none;
}

.home-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.home-section.home-section01 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.home-section05 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.home-section06 {
    padding-bottom: 160px !important;
}

.home-section06 .btn-danger {
    background-color: #C61825;
}

.home-section.home-section05 {
    background-position: 30% 50% !important;
}

.home-section.home-section06 {
    background-position: 100% 100% !important;
}

.home-section04 {
    background-position: 50% 50% !important;
}

.data-item {
    font-family: Anton, Arial, Helvetica, sans-serif;
    font-size: 100px;
}

.global-contacts .map img {
    max-width: 64px;
    max-height: 64px;
}

.contacts-icon img {
    max-width: 96px;
    max-height: 96px;
}

.global-contacts-section02 .contacts .wpb_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-contacts-section02 .contacts .vc_column-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.global-contacts-section02 .btn-dark {
    background-color: #222222;
    border: #222222;
    color: #fff;
}

.global-contacts-section02 .contacts .vc_column-inner {
    background-color: #fff;
}

.global-contacts-section02 .contacts.contacts01 .vc_column-inner {
    background-color: #c61825;
}


.home-section05 .btn-primary {
    background-color: #002652;
    color: #002652;
    color: #fff;
}

.region>.vc_column-inner>.wpb_wrapper {
    position: relative;
}

.region-name {
    top: 28px;
    left: 36px;
}

.region-item {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
}

.region-item ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.region-item li {
    box-sizing: border-box;
    width: 50%;
    text-align: center;
}

.region-item li a {
    color: #fff;
}

.region-item li a:hover {
    border-bottom: 1px solid #fff;
}

.region-cover-layer {
    top: 0;
    left: 0;
    background-color: #C61825;
    z-index: 10;
}

.region-item,
.region-cover-layer {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.region:hover .region-item,
.region:hover .region-cover-layer {
    opacity: 1;
    visibility: visible;
}

.industry-03 div {
    height: 100%;
}

.industry-03 div.industry-content,
.industry-03 div.section-industry-category,
.industry-03 div.home-industry-icon-white {
    height: auto;
}


.object-fit-cover {
    object-fit: cover;
}

.industry-img-cover-layer {
    background-color: #380004;
    opacity: 0.4;
    top: 0;
    left: 0;
}

.section-industry .section-industry-category,
.section-industry .home-industry-icon-white {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s, visibility 0.8s;
}

.section-industry:hover .section-industry-category,
.section-industry:hover .home-industry-icon-white {
    opacity: 1;
    visibility: visible;
}

.section-industry:hover .industry-img-cover-layer {
    opacity: 0.7;
}

.industry-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
}

.section-industry:hover .industry-content {
    transform: translate(-50%, -50%);
}

.industry-btn {
    bottom: 20px;
    right: 20px;
}

.subTitleText {
    line-height: 1.5;
}

@media (min-width: 992px) {
    .border-lg-right {
        border-right: 1px solid #dee2e6 !important;
    }

    .home-industry-more .wpb_wrapper {
        display: flex;
        justify-content: end;
    }

    .more-new .vc_column-inner .wpb_wrapper {
        margin-left: auto;
    }
}

.btn-arrow::after {
    content: url("../images/arrow-right.svg");
    position: absolute;
    right: 18px;
}

.btn-arrow-white::after {
    content: url("../images/arrow-right-white.svg");
    position: absolute;
    right: 18px;
}

.values-icon {
    width: 50px;
    height: 50px;
}

@media (min-width: 768px) {
    .corporateMission>.vc_column-inner {
        padding-right: 0 !important;
    }

    .companyVision>.vc_column-inner {
        padding-left: 0 !important;
    }
}

.overview-slider>.vc_column-inner,
.introduction>.vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.introduction-img {
    z-index: 2;
    position: relative;
    pointer-events: none;
}

.introductionContent {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.baseServiceItem h3 {
    font-size: 30px;
}

.baseServiceItem h4 {
    font-size: 20px;
}

.baseServiceItem h3,
.baseServiceItem h4 {
    color: #FFF;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.baseServiceItem h3::before {
    content: "";
    bottom: -20%;
    left: 0;
    position: absolute;
    width: calc(100% + 20px);
    height: 70%;
    display: block;
    background-color: #C61825;
    z-index: -1;
}

.baseServiceItem-02 h3::before {
    left: -20px;
}

.baseServiceItem {
    text-align: left;
}

.baseServiceItem-02 {
    top: 20%;
    left: -58%;
    width: 80%;
    top: 50%;
    transform: translate(0, -50%);
}

.baseServiceItem-04 {
    bottom: 0;
    left: -70%;
    width: 80%;
}

.baseServiceItem-05 {
    top: 20%;
    left: 50%;
    width: 100%;
    transform: translate(-50%);
}

.baseServiceItem-06 {
    bottom: 0;
    right: -88%;
    width: 80%;
}

.introductionItem {
    position: relative;
    z-index: 3;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

.introductionItem-02:hover::before {
    content: '';
    position: absolute;
    top: 4%;
    left: 6%;
    margin: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

.introductionItem-04:hover::before {
    content: '';
    position: absolute;
    left: -12%;
    bottom: 0;
    margin: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

.introductionItem-05::before {
    content: '';
    position: absolute;
    right: -54%;
    bottom: -14%;
    margin: auto;
    width: 200%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

.introductionItem-06:hover::before {
    content: '';
    position: absolute;
    left: 24%;
    bottom: 0;
    margin: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

.introductionItem-02:hover::before,
.introductionItem-02:hover .introductionItemContent {
    opacity: 1;
    visibility: visible;
}

.introductionItem-04:hover::before,
.introductionItem-04:hover .introductionItemContent {
    opacity: 1;
    visibility: visible;
}

.introductionItem-05:hover::before {
    opacity: 1;
}

.introductionItem-06:hover::before,
.introductionItem-06:hover .introductionItemContent {
    opacity: 1;
    visibility: visible;
}

.introductionItem-02:hover .baseServiceItem-02 {
    top: 16%;
    transform: translate(0, 0);
}

.introductionItem-04:hover .baseServiceItem-04 {
    bottom: 6%;
}

.introductionItem-06:hover .baseServiceItem-06 {
    bottom: 6%;
}

.introductionItemContent {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}


.companyMainBusinessDescription {
    top: 42%;
    left: 50%;
    width: 80%;
    transform: translate(-50%);
}

.companyCoreBusinessPC {
    display: none;
}

.companyCoreBusinessMobile {
    display: block;
}

@media (min-width: 768px) {
    .companyCoreBusinessPC {
        display: block;
    }

    .companyCoreBusinessMobile {
        display: none;
    }
}
