.qp-automatic{
    position: relative;
    overflow: hidden;
}
.qp-automatic .automatic-bg{
    position: absolute;
    width: 50%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.automatic-list{
    display: flex;
}
.automatic-list .automatic-left,
.automatic-list .automatic-right{
    width: 50%;
    position: relative;
    z-index: 0;
    background-size: cover;
}
.automatic-list .automatic-left{
    padding: 140px 180px 0 160px;
}
.automatic-list .automatic-left::after{
    content: "";
    position: absolute;
    width: 1000px;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #0075C1 0.36%, #0075C1 27.91%, rgba(0, 117, 193, 0.90) 40.98%);
    z-index: -1;
}
.automatic-left .title{
    color: var(--text-color-white);
    font-family: var(--font-title-family);
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height); /* 150% */
}
.automatic-left .desc{
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: var(--font-desc-weight);
    line-height: var(--line-height); /* 150% */
    margin-top: 12px;
}
.automatic-left ul {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.automatic-left ul li .ico{
    width: 18px;
    height: 18px;
}
.automatic-left ul li .conTitle{
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    margin-left: 12px;
}
.automatic-left ul li .conDesc{
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: 20px;
}
.automatic-left .btn{
    display: inline-flex;
    height: 50px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 24.329px;
    border: 1px solid #FFF;
    color: #FFF;
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: 500;
    line-height: var(--line-height); /* 150% */
    text-transform: capitalize;
    margin-top: 60px;
}

.automatic-right .picBox{
    position: relative;
}
.automatic-right .picBox img{
    max-width: 960px;
    max-height: 430px;
    object-fit: cover;
}
.automatic-right .picBox .text{
    color: var(--text-color-white);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height); /* 150% */
    position: absolute;
    left: 50px;
    bottom: 30px;
}

@media screen and (max-width: 1500px) {
    .automatic-list .automatic-left{
        padding: 100px 100px 0 5%;
    }
}
@media screen and (max-width: 1200px) {

    .automatic-list .automatic-left{
        padding: 50px 50px 0 5%;
    }
}
@media screen and (max-width: 992px) {
    .automatic-list{
        flex-direction: column;
        padding: 0;
    }
    .automatic-list .automatic-left,
    .automatic-list .automatic-right{
        width: 100%;
    }
    .qp-automatic .automatic-bg{
        width: 100%;
        height: auto;
    }
    .automatic-list .automatic-left{
        padding: 50px;
    }
    .automatic-right .picBox img{
        width: 100%;
    }
}