.vxd-services > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.vxd-services .service-wrapper-one h2 {
    width: calc(41% - 12px);
    margin: 0 0 30px;
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}

.vxd-services .service-card {
    padding: 35px 40px 27px;
    min-height: 400px;
    border-radius: 0.75rem;

}

.vxd-services .service-wrapper-one .service-card {
    width: calc(30% - 30px);
    margin: 0 0px 30px 0;
}

.vxd-services .service-wrapper-two .service-card {
    width: calc(28.7% - 12px);
    margin: 0 20px 30px 0;
}

.vxd-services .service-wrapper-two .service-card:last-child {
    margin-right: 0;
}

.vxd-services .service-wrapper-two .spacer {
    width: 125px;
    min-height: 360px;
    margin: 0 24px 30px 0;
}

.vxd-services .service-card.even {
    background-color: var(--e-global-color-secondary);
}

.vxd-services .service-card.odd {
    background-color: var(--e-global-color-primary);
    color: #fff;
}

.vxd-services .service-card span {
    width: 100px;
    height: 100px;
    margin-bottom: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vxd-services .service-card.even span {    
    background-color: #fff;
}

.vxd-services .service-card.odd span {    
    background-color: var(--e-global-color-secondary);
}

.vxd-services .service-card span img {
    padding: 25px;
}

.vxd-services .service-card h3 {
    margin-right: 50px;
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--e-global-typography-secondary-font-family);
}

.vxd-services .highlight {
    padding: 0 0.2rem;
}
@media(max-width:767px){
    .vxd-services .service-wrapper-one h2 {
        font-size: 2rem;
    }
}
@media (max-width: 1200px) {
    .vxd-services .service-wrapper-one h2  {
        width: 100%;
    }
    
    .vxd-services .service-wrapper-two .spacer  {
        display: none;
    }

    .vxd-services .service-card {
        width: calc((100% - 60px) / 2) !important;
        margin: 15px !important;
    }
}

@media (max-width: 767px) {
    .vxd-services .service-card {
        width: 100% !important;
        margin: 15px 0 !important;

    }
}