﻿:root {
    --card-body-color: #3773d2;
}



.services {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-evenly;
    width: 75%;
}

.services-container {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-container h2 {
    margin: 30px 0;
    text-align: center;
    position: relative;
    color: #133c71;
}


.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.75rem;
    flex-basis: 350px;
    background: #3773d2;
    margin-bottom: 20px;
    color: unset;
}

.menu-hr-handler a {
    font-size:15px !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;
        height:300px;
    }

.service .body h4 {
    width: 60%;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid;
}

.service .body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -30px;
    padding: 20px;
    border-bottom-left-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
    font-size: 16px;
    min-height: 190px;
    background-color: #133c70;
}


.service .body p {
    color: #fff;
}