.service {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 30px;
}

.service>a {
    width: 198px;
    height: 56px;
    background: #EBEBEB;
    border-radius: 6px;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 56px;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
}

.service>a.high {
    color: #FFFFFF;
    background: linear-gradient(180deg, #E06F26 0%, #BD0401 100%);
}


@media(min-width: 1050px) and (max-width:1249px) {
    .service>a {
        width: 178px;
        height: 50px;
        font-size: 18px;
        line-height: 50px;
    }
}

@media(min-width: 850px) and (max-width:1049px) {
    .service>a {
        width: 150px;
        height: 45px;
        font-size: 16px;
        line-height: 45px;
    }
}

@media(max-width: 849px) {
    .service {
        padding-bottom: 4vw;
    }
    
    .service>a {
        width: 18vw;
        height: 6vw;
        font-size: 2.1vw;
        line-height: 6vw;
    }
}