.companyIntro8 {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.companyIntro8 * {
    box-sizing: border-box;
}

.companyIntro8 .companyIntro8ContentBg {
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-Attachment: scroll;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    object-fit: cover;
    max-height: 600px;
}

.companyIntro8Content {
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-Attachment: scroll;
    width: 100%;
    overflow: hidden;
}

.companyIntro8Content .companyIntro8Left {
    background: rgb(239, 241, 245);
    width: 100%;
    float: left;
    padding: 10px 30px;
}

.companyIntro8Content .companyIntro8Right {
    width: 100%;
    float: left;
    padding-top: 50px;
}

.companyIntro8Right .image-animation {
    max-width: 100%;
    border: 0;
}

.companyIntro8Left .aboutUsTitle {
    font-size: 20px;
    line-height: 30px;
    color: rgb(51, 51, 51);
}

.companyIntro8Left .aboutUsSubtitle {
    font-size: 13px;
    color: #333;
    line-height: 26px;
    margin-bottom: 30px;
}

.companyIntro8Left .aboutUsTitleContent {
    color: rgb(165, 165, 165);
    font-size: 13px;
    line-height: 26px;
    margin-bottom: 30px;
}

.companyIntro8Left .moduleButton {
    border: 1px solid rgb(216, 216, 216);
    color: rgb(127, 127, 127);
    padding: 11px 31px;
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0px);
    box-shadow: transparent 0px 0px 1px;
    position: relative;
    transition-property: color;
    transition-duration: 0.3s;
}

.companyIntro8Left .moduleButton:hover {
    text-decoration: none;
    color: #fff;
    border: 1px solid #000;
}

.companyIntro8Left .moduleButton:hover::before {
    transform: scaleX(1);
}

.companyIntro8Left .moduleButton::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0px;
    background: rgb(89, 89, 89);
    transform: scaleX(0);
    transform-origin: 0px 50%;
    transition: all 0.3s ease-out 0s;
}