* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.ttf') format('ttf');
}

@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/LeagueSpartan.woff2') format('woff2');
}

html,
body {
    line-height: 1.5;
    color: rgb(27, 27, 27);
    font-family: 'Helvetica', arial, sans-serif;
    font-size: 16px;
    word-break: break-word;
    word-wrap: break-word;
}

#service {
    padding: 2.5rem 0;
    width: 100%;
    margin-top: 120px;
}

.service-container {
    max-width: 1280px;
    margin: auto;
}

.service-item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.service-item-picture {
    flex: 1;
}

.service-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-item-content h1 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: "League Spartan", arial, helvetica, sans-serif;
}

.service-item-content li,
.service-item-content>p {
    font-family: Helvetica, arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(94, 94, 94);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8rem;
}

.service-item-content>p {
    margin-bottom: 2rem;
}

.service-item-content li::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgb(94, 94, 94);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%)
}

.service-item:nth-of-type(2n) .service-item-picture {
    font-size: 0;
    display: flex;
    justify-content: flex-end;
}

.service-item:nth-of-type(2n) .service-item-content {
    align-items: flex-start;
}

.service-item:nth-of-type(2n) .service-item-content>p {
    padding-left: 0;
}

.btn {
    max-width: 100%;
    margin: 5.625rem auto;
    display: flex;
    justify-content: center;
}

.more {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    background-color: #00396f;
    margin-bottom: 3rem;
}

.more a {
    display: block;
    height: 56px;
    line-height: 56px;
    letter-spacing: 2px;
}

.more:hover {
    background-color: #035eb3;
    background-color: #2e59bf;
}

@media screen and (max-width:768px) {
    #service {
        margin-top: 120px;
        padding: 1rem 0;
    }

    .service-container {
        max-width: 100%;
        padding: 0 1rem 1rem;
    }

    .service-item {
        flex-direction: column;
        margin-bottom: 2rem;
        gap: 2rem;
    }

    .service-item-picture {
        font-size: 0;
    }

    .service-item-picture img {
        max-width: 100%;
    }

    .service-item-content h1 {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .service-item-content li,
    .service-item-content>p {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 1rem;
        font-weight: 400;
    }

    .service-item:nth-of-type(2n) .service-item-content {
        align-items: center;
    }

    .btn {
        margin: 1rem auto;
    }

    .more {
        font-size: 1rem;
        padding: 0.5rem;
        margin-bottom: 0;
    }

    .service-item-content {
        width: 100%;
    }

    .more a {
        height: 36px;
        line-height: 36px;
        letter-spacing: 1px;
    }
}