.services-wrapper {
    display: flex;
    justify-content: center;
}

.service-item {
    width: 19vw;
    margin-right: 50px;
    margin-top: 20vh;
    margin-bottom: 100px;
    border: #86AA52 2px solid;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
}

@media screen and (max-height: 750px) {
    .service-item {
        margin-top: 25vh;
    }
}

.service-item h1 {
    font-family: Josefin Sans;
    font-size: 3vw;
    font-weight: 300;
    color: #ECA428;
    text-align: center;
}

.service-item p {
    font-family: Raleway;
    font-size: 1.3vw;
    margin-left: 20px;
}

.heading-service {
    position: absolute;
    font-family: Raleway;
    font-weight: 400;
    font-size: 3.5vw;
    color: #ECA428;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: auto;
    right: auto;
    top: 18vh;
}

.heading-service::after {
    content: '';
    position: relative;
    margin-top: 10px;
    background-color: #86AA52;
    height: 5px;
    width: 60%;
}

@media screen and (max-width: 600px) {
    .heading-service {
        font-size: 10vw;
    }

    .services-wrapper {
        flex-direction: column;
        align-items: center;
        padding-top: 150px;
    }

    .service-item {
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
        margin-right: 0;
        width: 80%;
    }

    .service-item h1 {
        text-align: center;
        font-size: 9vw;
    }

    .service-item p {
        text-align: center;
        margin: 0;
        font-size: 5.2vw;
        width: 100%;
    }
}