.services {
    background: #00060f;
    padding-top: 50px;
}

.services-title {
    color: white;
    font-weight: bold;
    font-size: 20px;
    line-height: 50px;
}

.services-main {
    background: #242834;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.services-main .services-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-bottom: 1px #2d384b solid;
}

.services-main .services-item .item-content {
    color: white;
    width: 100%;
}

.services-main .services-item .item-content .content-title {
    display: flex;
}

.services-main .services-item .item-content .content-title .title-icon {
    width: 5px;
    background-color: #e90129;
    border-radius: 5px;
}

.services-main .services-item .item-content .content-title .title-text {
    font-size: 16px;
    padding-left: 15px;
}

.services-main .services-item .item-content .content-text {
    padding: 20px 0;
}


.services-main .services-item .item-pic {
    max-width: 100%;
}

.services-telephone {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.services-telephone .telephone-icon {
    width: 50px;
}

.services-telephone .telephone-btn {
    width: 200px;
    line-height: 50px;
    background: #d8052a;
    color: white;
    text-align: center;
    margin-left: 20px;
}

@media screen and (min-width: 1200px) {
    .services {
        padding-top: 104px;
    }

    .services-title {
        line-height: 100px;
        font-size: 24px;
    }

    .services-main {
        margin-bottom: 60px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .services-main .services-item {
        flex: 0 0 50%;
        flex-direction: row;
        justify-content: center;
        padding: 40px 20px;
        box-sizing: border-box;
        border-right: 1px #2d384b solid;
        border-bottom: 1px #2d384b solid;
    }

    .services-telephone {
        padding-bottom: 40px;
    }
}