﻿.services {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .services h2 {
        margin: 30px 0;
        text-align: center;
        position: relative;
    }

/*.services h2:before {
                content: "";
                position: absolute;
                width: 40%;
                height: 2px;
                background: var(--yellow);
                top: 50%;
                left: 0;
            }

            .services h2:after {
                content: "";
                position: absolute;
                width: 40%;
                height: 2px;
                background: var(--yellow);
                top: 50%;
                right: 0;
            }*/

.service {
    display: flex;
    flex-direction: column;
    border-radius: 1.75rem;
    flex-basis: 350px;
    align-items: center;
    border: 1px solid #e1e1e1;
    background: white;
    margin-bottom: 20px;
    color: unset;
    text-decoration: none !important;
}

    .service:hover {
        color: unset;
        text-decoration: none;
    }

    .service:visited {
        color: unset;
    }

    .service:link {
        color: unset;
    }


    .service img {
        max-width: 100%;
        border-top-left-radius: 1.75rem;
        border-top-right-radius: 1.75rem;
        width: 150px;
        padding: 50px 0;
    }

    .service .body h4 {
        font-family: 'Montserrat';
        font-size: 25px;
        font-weight: bold;
    }

    .service .body {
        margin-top: -30px;
        padding: 20px;
        background-color: var(--green-2);
        border-bottom-left-radius: 1.75rem;
        border-bottom-right-radius: 1.75rem;
        font-family: 'Lato';
        font-size: 20px;
        min-height: 190px;
    }
