a.service-link:visited { 
    text-decoration: none; 
    color:var(--grey-color); 
}

a.service-link:hover {
    color: var(--darkblue-color);
}

.banner-title {
    font-size: 12rem;
    color: var(--white-color);
}

.service-bio-wrapper {
    width: 100%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 6rem 0;
}

.services {
    background-color: var(--smoke-color);
    text-align: center;
    padding: 3rem 0 3rem 0;
}

.services-2 {
    background-color: var(--white-color);
    text-align: center;
    padding: 3rem 0 3rem 0;
}

.services-bio {
    width: 80%;
}

.bio-title {
    font-size: 3rem;
    color: var(--grey-color);
    padding-bottom: 2rem;
}

.bio-paragraph {
    font-size: 1.6rem;
    line-height: 2.5rem;
    letter-spacing: .1rem;
    padding-top: 2rem;
    color: var(--grey-color);
}
.service-row {
    display: flex;
    width: 100%;
}

.service-card {
    width: 33.333%;
    text-align:left;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-title {
    font-size: 3rem;
    color: var(--grey-color);
    padding-bottom: 2rem;
    text-align: center;
}

.service-card-title {
    font-size: 2.5rem;
    color: var(--grey-color);
    padding-bottom: 2rem;
}

.service-card-title-sm {
    font-size: 2rem;
    color: var(--grey-color);
    padding-bottom: 2rem;
}

.service-info {
    font-size: 1.6rem;
    color: var(--grey-color);
    text-align: center;
}

.service-list {
    list-style-position: inside;
    color: var(--grey-color);
}

.service-item {
    font-size: 1.6rem;
    color: var(--grey-color);
    text-indent: -1.5em;
    padding-bottom: 1rem;
}

.service-item span {
    position: relative;
    left: -1.2rem;
}

.list-indent {
    margin-left: 2rem;
}

.card-spacing {
    padding-bottom: 10rem;
}

/* Media Queries */
@media only screen and (max-width: 1200px) {
    .banner-title {
        font-size: 10rem;
    }
}

@media only screen and (max-width: 900px){
    .services {
        padding: 4rem 0 4rem 0;
    }
    
    .services-2 {
        padding: 4rem 0 4rem 0;
    }
}

@media only screen and (max-width: 800px) {
    .bio-title {
        font-size: 2.5rem;
    }

    .service-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .service-card {
        width: 80%;
    }
}

@media only screen and (max-width: 600px) {
    .banner-title {
        font-size: 8rem;
    }

    .service-card {
        text-align:center;
    }
}
/* End Media Queries */