.service-header {
    background-image: url('../assets/services/service_header.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: inherit;
    text-align: center;
    margin-top: 100px;

    h1 {
        font-family: Syne;
        color: white;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 19pt;
        margin-top: 30px;
    }
}

.service-header-bg {
    background-color: black;
}


.service-card {

    h5 {
        /* border: black 1px solid; */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        margin: 0;
        padding: 25px;
        font-size: 10pt;
        background: linear-gradient(99deg, rgba(156, 254, 146, 1) 0%, rgba(215, 254, 149, 1) 47%, rgba(156, 254, 146, 1) 87%);
        text-transform: uppercase;
        font-weight: bold;
    }

    img {
        height: 60px;
        margin-bottom: 15px;
        
    }

    .service-card-content {
        margin: 0;
        border: black 1px solid;
        border-top: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 2.5em;

        h6 {
            margin-left: 0;
            padding-top: 5px;
            font-size: 11pt;
        }
    }
}




