.about-factory {
    background: #F2F9FD;
}

.about-factory .factory-con {
    padding-top: 110px;
    padding-bottom: 74px;
    display: flex;
    position: relative;
}

.factory-con .left {
    padding-top: 60px;
    width: 841px;
}

.factory-con .left .title {
    color: var(--text-color-black);
    /* font-family: var(--font-family); */
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: --font-title-weight;
    line-height: var(--line-height);
    text-transform: capitalize;
}

.factory-con .left .desc {
    color: #666;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: --font-title-desc-weight;
    line-height: var(--line-height);
    text-transform: capitalize;
    margin-top: 20px;
}

.factory-con .left .conList {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 77px;
    row-gap: 50px;
}

.factory-con .left .conList li {
    display: flex;
    gap: 16px;
}

.factory-con .left .conList li .con {
    display: block;
    max-width: 340px;
}

.factory-con .right {
    width: calc(100% - 841px);
}

.factory-con .right img {
    width: 400px;
    height: auto;
    object-fit: cover;
    margin: 30px 0 30px 30px;
}

.factory-con .right img:first-child {
    margin: 0 0 0 240px;
}

.factory-con .right .line {
    width: 460px;
    height: 6px;
    flex-shrink: 0;
    background: var(--second-color);
}

.factory-con .bg-pic {
    position: absolute;
    top: 40px;
    left: 332px;
}

@media screen and (max-width: 1919px) {
    .factory-con .right img:first-child {
        margin: 0 0 0 150px;
    }
}

@media screen and (max-width: 1500px) {

    .factory-con .left,
    .factory-con .right {
        width: 50%;
    }

    .factory-con .right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .factory-con .right img:first-child {
        margin: 30px 0 30px 30px;
    }

    .factory-con .right img {
        width: 380px;
    }

    .factory-con .right .line {
        width: 100%;
    }

    .factory-con .bg-pic {
        left: 20%;
    }
}

@media screen and (max-width: 1200px) {
    .factory-con .left .conList {
        column-gap: 40px;
        row-gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .factory-con .bg-pic {
        width: 60%;
    }

    .about-factory .factory-con {
        flex-direction: column;
    }

    .factory-con .left,
    .factory-con .right {
        width: 100%;
    }

    .factory-con .right {
        margin-top: 30px;
        flex-direction: row;
    }

    .factory-con .right img {
        width: 50%;
    }

    .factory-con .right img {
        margin: 0 !important;
    }

    .factory-con .right .line {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .about-factory .factory-con {
        padding-top: 50px;
    }

    .factory-con .left .conList {
        margin-top: 50px;
    }

    .factory-con .left .conList {
        gap: 20px;
    }
}