.service {
    width: 100%;
    height: fit-content;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service_title {
    text-align: center;
    padding-top: 2%;
    padding-bottom: 5%;
}

/* title */
.service_title h1 {
    font-size: 28px;
    font-weight: 1000;
}

/* subtitle */
.service_title p {
    font-size: 18px;
}

.service_group {
    margin-top: 5vh;
    display: flex;
    justify-content: space-around;
}

.service_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


.service_img {
    width: 170px;
    height: 170px;
    clip-path: circle(50%);
}

.service_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* title */
.service_item h1 {
    padding-top: 5%;
    font-size: 25px;
}

/* subtitle */
.service_item p {
    padding: 5% 2%;
    font-size: 15px;
}

@media (max-width:825px) and (min-width:485px) {
    .service_group {
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        margin-top: 5vh;
    }
    .service_item {
        width: calc(100%/2);
        margin-bottom: 5vh;
    }
    .service_item p {
        padding: 5% 4%;
    }
}

@media (max-width:485px) {
    .service_group {
        flex-wrap: nowrap;
        width: 100%;
        flex-direction: column;
    }
    .service_item {
        margin-bottom: 5vh;
    }
}