.Service {
    padding: 40px 0 80px;
    min-height: 600px;
    background-color: #fff;
}

.Service .main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    padding: 40px 0;
}

.Service .main:nth-child(2n) {
    flex-direction: row-reverse;
}

.Service .main:not(:last-child) {
    border-bottom: 1px solid #dcdcdc;
}

.Service .main .box {
    width: 50%;
    flex-shrink: 0;
    align-self: stretch;
}

.Service .main .img {
    height: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.Service .main .body {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.Service .main .text {
    font-size: 18px;
    color: #777;
    line-height: 1.5;
    text-indent: calc(2em + 2px);
    letter-spacing: 2px;
    text-align: left;
}

.Service .main .btn {
    color: #bb9d57;
    padding: 4px 18px;
    border-radius: 24px;
    border: 1px solid #bb9d57;
    margin: 20px auto;
    text-align: center;
}