.laihuashi-choose {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .laihuashi-choose::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 134, 227, 0.90);
    z-index: -1;
} */

.laihuashi-choose .choose-video {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}

.laihuashi-choose .choose-top {
    padding-top: 110px;
    display: flex;
}

.laihuashi-choose .choose-left,
.laihuashi-choose .choose-right {
    width: 50%;
}

.choose-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.choose-left img {
    width: 640px;
    height: 640px;
    object-fit: cover;
    animation: mycircle 30s infinite linear;
}

@keyframes mycircle {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.laihuashi-choose .title {
    color: var(--text-color-white);
    text-align: center;
    /* font-family: var(--font-family); */
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height);
    text-transform: capitalize;
}

.choose-left .title {
    margin-top: 9px;
}

.choose-right .title {
    text-align: left;
}

.choose-right .desc {
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    margin-top: 12px;
}

.choose-right .button {
    display: flex;
    width: 181px;
    height: 50px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    /* gap: 24.329px; */
    border-radius: 25px;
    background: var(--second-color);
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: var(--font-style);
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-top: 60px;
}

.choose-right .line {
    background: rgba(255, 255, 255, 0.20);
    height: 1px;
    margin: 71px 0;
}

.choose-right .right-con {
    display: flex;
    justify-content: space-between;
}

.right-con .con {
    width: 360px;
}

.right-con .con-title {
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
}

.right-con .con-desc {
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 12px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    margin-top: 8px;
}

.choose-bottom {
    display: flex;
    gap: 60px;
    justify-content: space-around;
    padding: 210px 0 74px 0;
}

.choose-bottom .bottom-con {
    width: 260px;
    text-align: center;
}

.bottom-con .num {
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: 600;
    line-height: 106px;
    text-transform: capitalize;
}

.bottom-con .counter {
    font-size: 60px;
}

.bottom-con .text {
    color: var(--text-color-white);
    text-align: center;
    font-family: var(--font-family);
    font-size: 26px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: 40px;
    text-transform: capitalize;
    margin-top: 30px;
}

.small-con {
    display: flex;
    gap: 20px;
}

.small-hr {
    background: rgba(255, 255, 255, 0.20);
    height: 1px;
    margin: 30px 0;
}

@media screen and (max-width: 1500px) {
    .choose-left img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .choose-right {
        padding-left: 20px;
    }

    .choose-right .right-con {
        gap: 20px;
    }

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

    .bottom-con .counter {
        font-size: 50px;
    }

    .bottom-con .text {
        font-size: 22px;
        margin-top: 0;
        line-height: 1.5;
    }

    .choose-bottom {
        padding: 150px 0 70px 0;
    }
}

@media screen and (max-width: 1200px) {
    .bottom-con .num {
        font-size: 20px;
    }

    .bottom-con .counter {
        font-size: 40px;
        line-height: 1.5;
    }

    .bottom-con .text {
        font-size: 16px;
    }

    .choose-bottom {
        padding: 100px 0 70px 0;
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .choose-left {
        justify-content: center;
    }

    .bottom-con .counter {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .laihuashi-choose .choose-top {
        flex-direction: column;
        gap: 30px;
    }

    .laihuashi-choose .choose-left,
    .laihuashi-choose .choose-right {
        width: 100%;
    }

    .choose-bottom {
        flex-wrap: wrap;
        padding: 50px 0 70px 0;
    }
}