﻿.section-title{
    font-family: acumin-pro-semi-condensed,"Franklin Gothic",sans-serif;
    font-weight: 700;
    font-size: 280%;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.2;
}

.section-sub-title{
    font-family: acumin-pro-semi-condensed,"Franklin Gothic",sans-serif;
    font-size: 120%;
    text-align: left;
    width: 60%;
    margin: 10px auto;
    color: black;
}

.section-sub-title>a{
    color: grey;
    font-weight: bold;
    
}
.section-sub-title>a:hover{
    text-decoration: none;
    color: #c5a563;
}
.card-link{
    color: black;
}
.card-link:hover{
    color: black;
    text-decoration: none;
}

.card{
    border: none;
    font-family: "United Sans",Impact,"Arial Black","sans serif";
    background-color: #cfb991;
    transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.card:hover{
    background-color: black;
    color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform: scale(1.03, 1.03);
    transition: background-color 0.4s, color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.card-title{
    display: block;
    font-weight: 700;
    height: 50px;
}
.card-text{
    display: block;
}

.service-logo{
    display: block;
    max-height: 100px;
    max-width: 100%;
}

@media screen and (max-width: 960px) {
    .section-title{
        font-size:180%
    }
    .section-sub-title{
        width: 100%;
        text-align: center;
    }
    .card-title{
        display: block;
        font-weight: 700;
        height: auto;
    }
}