.about-content {
    width: calc(100% - 16vw);
    text-align: center;
    margin: 0 auto 10vh;
}
.servicesHolder {
    background-color: #f5f7ff;
    padding: 3vh 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10vh;
    /* background-image: url("../images/services-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; */
}
.servicesHolder img {
    max-width: 90px;
    margin: 0 auto 15px;
    max-height: 50px;
}
.servicesHolder > div {
    width: 33%;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}
.servicesHolder > div:after {
    content: ' ';
    display: block;
    height: 100px;
    width: 1px;
    background-color: #5b71d7;
    position: absolute;
    left: 0;
}
.servicesHolder > div:first-child:after {
    display: none;
}
.servicesHolder > div h2 {
    font-size: 18px;
    margin-bottom: 5px;
}
.servicesHolder > div h4 {
    font-size: 13px;
    line-height: 14px;
    font-weight: 400;
    max-width: 90%;
    margin: 0 auto;
}
.processHolder {
    margin: 7vh auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 80vw;
}
.processHolder > div {
    width: 25%;
    padding: 20px;
    border: 1px solid #afc0fd;
    height: 120px;
    margin: 20px;
    border-radius: 4px;
}
.processHolder h3 {
    font-size: 1.8vh;
    line-height: 2vh;
    display: inline-block;
    background-color: #fff;
    position: relative;
    top: -30px;
    padding: 0 10px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
section.processSection {
    text-align: center;
}
.processHolder h5 {
    font-size: 1.4vh;
    line-height: 1.4vh;
    font-weight: 400;
    margin-top: -15px;
}
.banner.services {
    background-image: url("../images/services_banner.jpg");
    background-position: center;
}
.about-content .social {
    position: static;
    margin-top: 4vh;
} 
.about-content p {
    margin: 0px auto 10px;
    max-width: 65vw;
}
.about-content p span{
    font-weight: 600;
    color: #ff0260;
}
.about-content .social a {
    vertical-align: middle;
}
.about-content a.resume-btn {
    font-size: 0.8vw;
    font-weight: 900;
    margin-top: 3vh;
    display: inline-block;
    text-decoration: underline;
    color: #ff0260;
}









@media (max-width: 1024px){
    
.about-content {
    width: 90%;
    text-align: center;
    margin-top: 50px;
}
.about-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.about-content p {
    margin-top: 15px;
    max-width: 100vw;
}
.servicesHolder {
    padding: 10vw 2vw;
    margin-bottom: 10vh;
    flex-direction: column;
}
.servicesHolder > div {
    padding: 2vw;
    margin-bottom: 5vh;
    width: 100%;
}
.servicesHolder > div:first-child:after {
    display: block;
}
.servicesHolder > div:last-child:after {
    display: none;
}
.servicesHolder > div:after {
    height: 1px;
    width: 150px;
    bottom: -2vh;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0vh;
}
.processHolder {
    margin: 5vh auto;
    max-width: 90vw;
    flex-direction: column;
}
.processHolder > div {
    width: 90%;
    padding: 20px;
    height: 120px;
    margin: 0px 0 50px;
    border-radius: 4px;
}
.processHolder h3 {
    font-size: 18px;
    line-height: 20px;
}
.processHolder h5 {
    font-size: 13px;
    line-height: 15px;
}
}


@media (min-width: 768px) and (max-width: 1024px) {
    .about-content {
        width: 75%;
    }
    .servicesHolder {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 5vw 2vw 2vw;
        margin-bottom: 5vh;
    }
    .servicesHolder > div {
        padding: 2vw;
        margin-bottom: 5vh;
        width: 40%;
    }
    .servicesHolder > div:nth-last-child(2):after {
        display: none;
    }
    .processHolder {
        margin: 5vh auto;
        max-width: 90vw;
        flex-direction: row;
    }
    .processHolder > div {
        width: 40%;
        margin: 0px 30px 50px;
    }
}