.Website_inner {
    margin-top: 92px;
    margin-bottom: 30px;
}

.service {
    position: relative;
    text-align: center;
    padding: 30px 0;
    margin: 0px auto;
}

.service_pp {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(to bottom, #acefff 0%, #0ccbf9 100%);
    border-radius: 50%;
    opacity: 0.5;
    left: 35%;
    bottom: 20%;
    animation: flying 10s ease-in infinite;
    z-index: 3;
    display: none;
}

.service_pp1 {
    left: 45%;
    animation: flying1 6s ease-in infinite;
}

.service_pp2 {
    left: 65%;
    opacity: 0.9;
    animation: flying2 5s ease-in infinite;
}

.service_pp3 {
    left: 50%;
    opacity: 0.2;
    animation: flying 6s ease-in infinite;
}

.Website_service {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.Website_service li {
    width: 270px;
    height: 210px;
    background: linear-gradient(to bottom, #ecf7ff 0%, #ffffff 100%);
    border: 1px solid rgba(227, 232, 240, 0.3);
    box-shadow: 0 0 28px rgba(89, 89, 89, 0.14);
    border-radius: 16px;
    text-align: center;
    padding: 26px;
    box-sizing: border-box;
    animation: consult24814_bottom_1 2s ease-in-out infinite;
    position: relative;
    flex-shrink: 0;
}

.Website_service li h5 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 6px;
    color: #555555;
}

.service-bg {
    display: none;
    max-width: 100%;
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .service {
        max-width: 1480px;
        height: 600px;
        border-radius: 860px 860px 0 0;
        border-top: 10px solid #f5f5f5;
        margin: 200px auto 50px;
        padding-top: 200px;
    }

    .service_pp,
    .service_pp1,
    .service_pp2,
    .service_pp3 {
        display: block;
    }

    .Website_service {
        display: block;
        max-width: none;
        padding: 0;
    }

    .Website_service li {
        position: absolute;
        width: 270px;
        height: 210px;
    }

    .Website_service li:first-child {
        left: 0%;
    }

    .Website_service li:nth-child(2) {
        left: 16%;
        top: -200px;
        animation: consult24814_top_0 2s ease-in-out infinite;
    }

    .Website_service li:nth-child(3) {
        left: calc(50% - 135px);
        top: -350px;
        padding: 20px;
    }

    .Website_service li:nth-child(4) {
        right: 16%;
        top: -200px;
        animation: consult24814_top_0 2s ease-in-out infinite;
    }

    .Website_service li:last-child {
        right: 0;
    }

    .service-bg {
        display: inline-block;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .Website_service li {
        width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .Website_service li {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .Website_service li {
        width: calc((100% - 20px) / 2);
        height: auto;
        padding: 20px 15px;
    }

    .Website_service li h5 {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .Website_service li {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 20px 15px;
    }

    .Website_service li h5 {
        font-size: 16px;
    }

    .title_h2 {
        font-size: 28px;
    }

    .Website_service {
        justify-content: center;
    }
}

@keyframes flying {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes flying1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes flying2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes consult24814_bottom_1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes consult24814_top_0 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}