﻿/*#region attorneys*/
#attorneysInner {
    display:none;
}
@media only screen and (max-width:639px) {
    #attorneysInner {
        display: block;
    }
}
#sectionAttorneys {
    background: rgb(26,37,55);
    background: linear-gradient(125deg, rgba(26,37,55,1) 48%, rgba(41,65,96,1) 74%);
    background: linear-gradient(125deg, rgba(var(--secondaryRGB),1) 48%, rgba(var(--secondaryRGB),1) 74%);
    background: linear-gradient(125deg, rgba(var(--secondaryRGB),1) 48%, rgba(var(--accentOneRGB),1) 74%);
    background: linear-gradient(125deg, rgba(var(--secondaryRGB),1) 48%, rgba(var(--secondaryRGB),1) 74%);
    background: var(--secondary);
    color: #FFF;
    overflow: hidden;
}
#sectionAttorneysPage {
    margin-top:-2rem;
    background: var(--background);
    background:#FFF;
    background: var(--secondary);
    color: var(--primary);
}

#sectionAttorneysPage .h2White {
    color:var(--background);
}
#attorneysInner {
    padding: 4rem 1rem;
}
#attorneyCardContainer {
    text-align: center;
}
.attorney-image-container, .attorney-image-container-alt {
    position: relative;
    background: var(--background);
}

.attorney-image-container-alt {
    background: var(--primary);
}
.attorney-bio-container, .attorney-bio-container-alt {
    width: 100%;
    height: 100%;
    background: var(--background);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}
.attorney-bio-container-alt {
    background:var(--primary)
}
.attorney-bio-container a {
    color:var(--accentOne);
}
.attorney-bio-container a:hover {
    color: var(--accentOne);
}
.attorney-bio-container-alt a {
    color: var(--accentOne);
}
.attorney-bio-container-alt a:hover {
    color: var(--accentOne);
}
.attorneyGradient {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: #092633;
    background: linear-gradient(180deg, rgba(229,232,235,0) 60%, rgba(0,0,0,1) 100%);
}

.attorneyCard {
    position: relative;
    margin: .5rem;
    width: 30%;
    display: inline-block;
    background: rgba(0,125,200,.3);
}

.attorneyName {
    position: relative;
    padding: 1rem;
    font-size: 1.8125rem;   
    font-family: var(--headerFont);
    font-weight: 600;    
    transition: all .25s ease-in-out;
    width: 100%;
}

.attorneyTitle {
    position: absolute;
    bottom: 1rem;
    z-index: 10;
    text-align: right;
    padding: 0 1rem;
    font-size: 1.125rem;
    color: #FFF;
    font-family: europa, sans-serif;
    line-height: 1.45rem;
    text-shadow: 2px 4px 3px rgba(0,0,0,0.1);
    transition: all .25s ease-in-out;
    width: 100%;
}

.attorneyCard img {
    filter: gray; /* IE6-9 */

    /*-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
    /* filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
    /*opacity: .75;*/

    transition: all .25s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attorneyCard:hover img {
    /*-webkit-filter: grayscale(0);
    filter: none;
    opacity: 1;
        */
    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
     filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
    opacity: .75;
}

.attorneyCard:hover .attorneyName {
    color: #FFF;
}

#sectionAttorneysPage .attorneyCard img {
    filter: none; /* IE6-9 */
    -webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(0); /* Microsoft Edge and Firefox 35+ */
    opacity: 1;
    transition: all .25s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sectionAttorneysPage .attorneyCard:hover img {
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .75;
}


/*#endregion*/
