.yingfang-company-profile {
    padding: 50px 0 100px;
}
.yingfang-company-profile .company-profile-title{
    color: #333;
    text-align: center;
    font-family: var(--title-font-family);
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25; /* 125% */
}
.company-content{
    display: flex;
    gap: var(--gap-80);
    margin-top: var(--gap-80);
    overflow: hidden;
}
.company-content .company-left{
    max-width: 880px;
}
.company-left .company-left-title{
    color: #111;
    font-family: var(--medium-font-family);
    font-size: var(--font-38);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.company-left .company-left-desc{
    color: #4B4B4B;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* 150% */
    margin-top: 20px;
}
.company-left .company-left-data{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    row-gap: 80px;
    column-gap: 10px;
    margin-top: var(--gap-80);
}
.company-left-data .company-left-data-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.company-left-data-item .counter{
    color: var(--color-primary);
    text-align: center;
    font-family: var(--title-font-family);
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.company-left-data-item .company-left-data-desc{
    color: #111;
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.company-content .company-right{
    flex: 1;
    position: relative;
    padding: 80px 0 0 40px;
}
.company-right .company-right-bg{
    width: 659px;
    height: 575px;
    background: #FFF9F9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.company-right .company-right-text{
    text-align: center;
    font-family: var(--title-font-family);
    font-size: 150px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    opacity: 0.1;
    letter-spacing: 13.5px;
    background: linear-gradient(173deg, #FB2F1E 27.68%, #FFF 79.63%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
}
.company-right .company-right-img{
    width: 100%;
    aspect-ratio: 757/460;
    object-fit: cover;
}

.brand-story{
    display: flex;
    gap: 75px;
    align-items: center;
    margin-top: var(--gap-80);
}
.brand-story .brand-story-video{
    width: 584px;
    aspect-ratio: 87/49;
    border-radius: 10px;
    overflow: hidden;
}
.brand-story .brand-story-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-story .brand-story-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.brand-story-content .brand-story-title{
    color: #111;
    font-family: var(--medium-font-family);
    font-size: var(--font-38);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.brand-story-content .brand-story-desc{
    color: #111;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* 150% */
}



@media screen and (max-width: 1800px) {
    .company-content .company-left{
        max-width: 50%;
    }
}
@media screen and (max-width: 1500px) {
    .company-content{
        gap: 30px;
    }
    .company-right .company-right-text{
        font-size: 130px;
    }
    .company-left .company-left-data{
        row-gap: 50px;
    }
    .brand-story{
        gap: 50px;
    }
    .brand-story .brand-story-video{
        width: 40%;
    }
    .brand-story .brand-story-content{
        gap: 30px;
    }
}
@media screen and (max-width: 1200px) {
    .company-right .company-right-text{
        font-size: 100px;
    }
    .company-content{
        flex-direction: column-reverse;
    }
    .company-content .company-left{
        max-width: 100%;
    }
    .company-right .company-right-bg{
        width: 60%;
        height: 90%;
    }
}
@media screen and (max-width: 992px) {
    .yingfang-company-profile{
        padding: 50px 0;
    }
    .brand-story{
        flex-direction: column;
    }
    .brand-story .brand-story-video{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .yingfang-company-profile{
        padding: 30px 0;
    }
    .company-left .company-left-data{
        grid-template-columns: repeat(2,1fr);
    }
    .company-content .company-right{
        padding: 40px 0 0 40px;
    }
    .company-right .company-right-text{
        top: 0;
        font-size: 40px;
    }
    .brand-story{
        gap: 30px;
    }
}