html {
    scroll-behavior: smooth;
}

.service-desc {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-desc__text {
    width: 50%;
}

.service-img {
    width: 490px;
    max-width: 100%;
}

.service-menu {
    margin-top: 2.5rem;
}

.service-menu ul {
    width: 223px;
    border-radius: 11.473px;
    background: #3A8676;
    padding: 20px;
    margin-top: 20px;
    gap: 10px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.service-menu li {
    width: 100%;
    padding-bottom: 5px;
    padding-right: 20px;
    border-bottom: 1px dashed #fff;
    text-align: center;
    position: relative;
}

.service-menu li:last-child {
    border: none;
}

.service-menu li a {
    color: #fff;
    font-weight: 700;
}

.service-menu li span::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    margin: 0 auto;
    transform: rotate(135deg);
    position: absolute;
    top: 6px;
    right: 0;
}

.service-menu p {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.service-content {
    margin-top: 100px;
}

hgroup h3 {
    font-size: 32px;
}

.hgroup-img {
    display: block;
    width: 170px;
    margin-top: 20px;
}

.section--bg {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background: #3A8676;
}

.service-bg {
    margin-top: 2.5rem;
}

.service-container {
    padding: 80px 0;
}

.service-inner {
    background: #D7E6E3;
    padding: 3.75rem;
    border-radius: 1rem;
}

.service-inner:nth-child(2) {
    margin-top: 2.5rem;
}

.service-item:nth-child(2) {
    margin-top: 2.5rem;
}

.service-item h4 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

.service-flex {
    display: flex;
    justify-content: space-between;
}

.service-l {
    width: calc(100% - 480px);
    max-width: 100%;
}

.service-flex__title {
    border-radius: 16px;
    background: #002060;

    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 240% */
    text-align: center;
}

.service-l>p {
    margin-bottom: 20px;
}

.service-r {
    width: 460px;
    max-width: 100%;
}

.service-r ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    gap: 20px;
}

.service-r li {
    border-radius: 8px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.service-r img {
    width: 62px;
}

.service02 .hgroup-subtitle {
    display: block;
    color: #FF3B30;
}

.service02 .service-item h4 {
    color: #FF3B30;
}

.service02 .service-img {
    width: 600px;
    margin: 2.5rem auto 0;
}

.service03 .hgroup-subtitle {
    display: block;
    color: #34C759;
}

.service03 .service-item h4 {
    color: #34C759;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-cards__item {
    border-radius: 16px;
    border: 1px solid #34C759;
    background: #FFF;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.service-cards__item .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.service-cards__item img {
    height: 68px;
    width: auto;
}

.service-cards__item .text {
    text-align: justify;
    font-size: 14px;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .service-desc {
        flex-direction: column;
    }

    .service-desc__text {
        width: 100%;
    }

    .service-content {
        margin-top: 40px;
    }

    hgroup h3 {
        font-size: 18px;
    }

    .hgroup-img {
        width: 80px;
    }

    .service-inner {
        padding: 1rem;
    }

    .service-flex {
        flex-direction: column;
        gap: 20px;
    }

    .service-l {
        width: 100%;
    }

    .service-item h4 {
        font-size: 18px;
    }

    .service-flex__title {
        font-size: 16px;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards__item {
        padding: 10px;
    }
}