.mob-service-item {
    height: 100%;
    padding: 30px 30px 1px;
    background: #F0F0F0;
    border-radius: 5px;
}

.mob-service-col {
    margin: 0 0 30px;
}

.mob-service-item__title {
    margin: 0 0 22px;
    padding: 0 0 30px;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
    color: #282830;
    border-bottom: 1px solid #D5D5D5;
}

.mob-service-item__descr {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.mob-service-item__actions {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px 30px;
}

.mob-service-item__btn {
    flex: 1 0 200px;
    margin: 0 12px 10px;
    padding: 4px 15px 6px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 48px;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.1;
    text-align: center;
    color: #282830;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 24px;
    transition: all .18s;
}

.mob-service-item__btn:after {
    content: '';
    display: inline-block;
    margin: 9px;
    width: 8px;
    height: 8px;
    border: 1px solid;
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
    display: none;
}

.mob-service-item__btn.--up:after {
    transform:  translateY(5px) rotate(-45deg);
}

.mob-service-item__btn:hover {
    text-decoration: none;
    color: #FF0022;
    border-color: #FF0022;
}

.mob-service-item__btn:focus {
    outline: 0;
}

.mob-service-item__btn.--red {
    color: #fff;
    border-color: transparent;
    background: #FF0022;
}

.mob-service-item__btn.--red:hover {
    color: #FF0022;
    border-color: #FF0022;
    background: #fff;
}

.mob-service-item__btn.--arrow:after {
    display: block;
}

.mob-service-item__content {
    padding: 22px 0;
    font-size: 16px;
    line-height: 1.5;    
    color: #000000;
    border-top: 1px solid #D5D5D5;
    display: none;
}

.mob-service-item__content h4 {
    margin: 0 0 13px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.46;
    text-transform: uppercase;
    color: #282830;
}

.mob-service-item__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1em;
}

.mob-service-item__content li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 1em;
}

.mob-service-item__content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FF0022;    
}

.mobile__service__form__wrapper{
    margin: 35px 0px;
}

.mobile__service__form{
    width: 65%;
    margin: 0 auto;
}

.mobile__service__btn{
    background: #FF0022;
    border: 1px solid #FF0022;
    color: #fff;
    margin: 0 auto;
    display: block;
}

.mobile__service__btn:hover{
    background: transparent;
    border: 1px solid #FF0022;
    color: #FF0022;
}

@media (max-width: 768px) {
    .mobile__service__form{
        width: 100%;
    }
}