/*
-- primary --
    Navy:           #001C33     rgba(0,28,51,1)
    Teal:           #032B29     rgba(3,43,41,1)
    Blue:           #1FB5D9     rgba(31,181,217,1)
    Green:          #8CCC29     rgba(140,204,41,1)
    Light Blue:     #9EE0F0     rgba(158,224,240,1)
    Light Green:    #BAE58A     rgba(186,229,138,1)


    -- secondary --
    Maroon:         #820033     rgba(130,0,51,1)
    Orange:         #FF690F     rgba(255,105,15,1)
    Charcoal:       #262629     rgba(38,38,41,1)
    Grey:           #878787     rgba(135,135,135,1)
    light Grey      #BFBFBF     rgba(191,191,191,1)

    <link rel="stylesheet" href="https://use.typekit.net/yli1lkw.css">
    font-family: 'KnockoutHTF49-LiteweightRegular', 'ff-good-headline-web-pro', sans-serif; //headlines 400 | 600 | 700    
    font-family: "fairplex-wide", serif; // 400 | 500 
   
*/
#wayfinderMenu {
    padding: 1rem 8rem;
}
#wayfinderMembersContainer {
    width: 100%;
    min-height: 500px;
    background-color: rgb(140,204,41);
    background-color: rgb(0,28,51);
    /*background: linear-gradient(180deg, rgba(140,204,41,.98) 0%, rgba(0,28,51,.98) 90%), url('/img/bkg_wayfinder_combo.png');*/
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 5rem;
    overflow: hidden;
}
.limitHeight #wayfinderMembersContainer {
    max-height: 1300px;
}
#wayfinderInnerContainer {
    margin: auto;
    width: 100%;
}

.wayfinderCard {
    margin-bottom: 5rem;
    height: 580px;
    position: relative;
    width:25%;
}
.wayfinderImageContainer {
    border: 6px solid #FFF;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    background: #FFF;
}

.wayfinderImageContainer img {
    object-fit: cover;
}
.wayfinderName {
    color: #FFF;
    font-weight: 700;
    font-family: 'KnockoutHTF49-LiteweightRegular', 'ff-good-headline-web-pro', sans-serif;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size: 1.35rem;
    text-align: center;
    padding: .25rem 0;
}
.wayfinderAskMe {
    color:#FFF;
    padding-bottom:1rem;
    padding-left:32%;
}
.wayfinderAskMeTitle {
    font-size: 1.2rem;
}
.wayfinderAskMe ul {
    font-size: 1rem;
    list-style-type: none;
}
.wayfinderAskMe ul li:before {
    content: '-';
    position: absolute;
    margin-left: -1rem;
}
#pnlEmptyWayfinders {
    color:#FFF;
    font-size:2rem;
    text-align:center;
}

#btnClearFilter {
    margin-top: 2rem;
    color:#FFF;
    padding: 1rem;
    text-align: center;
    width: 300px;
    font-size: 2rem;
    border: 2px solid #FFF;
    border-radius: .5rem;
    background: transparent;
    transition: all .25s ease-in-out;
    cursor:pointer;
}

#btnClearFilter:hover, #btnClearFilter:focus, #btnClearFilter:active {
    outline: none;
    background: rgba(0,28,51,.98);
}
.learnMoreButtonContainer {
    position: absolute;
    bottom: 1rem;
    left:-.25rem;
    text-align:center;
    width:100%;
}
.learnMoreButton {
    padding: 1rem;
    text-align: center;
    width: 300px;
    font-size: 1.15rem;
    border: 4px solid #FFF;
    background: rgb(140,204,41);
    transition: all .25s ease-in-out;
    color: #FFF;
    font-family: 'KnockoutHTF49-LiteweightRegular', 'ff-good-headline-web-pro', sans-serif;
    text-transform: uppercase;
}
.learnMoreButton:hover, .learnMoreButton:active, .learnMoreButton:focus {
    background: transparent;
    color: #FFF;
}

/*#region break points*/
@media(max-width:1590px) {    
    .wayfinderImageContainer {
        border: 5px solid #FFF;
        height: 250px;
        width: 250px;
    }
    .wayfinderCard {
        height: 530px;        
    }
    .wayfinderName {        
        font-size: 1.285rem;
    }
    .learnMoreButtonContainer {        
        left: 0;
    }
}
@media(max-width:1350px) {
    #wayfinderMembersContainer {        
        padding: 3rem 2rem;        
    }
    .limitHeight #wayfinderMembersContainer {
        max-height: 1250px;
    }
    .wayfinderCard {
        width: 33.33333%
    }    
}
@media(max-width:1023px) {
    #wayfinderMenu {
        padding: 1rem 1rem;
    }
    .wayfinderCard {
        width: 50%
    } 
}
@media(max-width:730px) {
    #wayfinderMembersContainer {
        padding: 3rem 2rem;
    }
    .limitHeight #wayfinderMembersContainer {
        max-height: 1175px;
    }
    .wayfinderImageContainer {
        border: 3px solid #FFF;
        height: 200px;
        width: 200px;
    }
    .wayfinderCard {
        height: 490px;
    }
    .wayfinderName {
        font-size: 1.2rem;
    }
}
@media(max-width:600px) {
    #wayfinderMembersContainer {
        padding: 3rem 2rem;
    }
    .limitHeight #wayfinderMembersContainer {
        max-height: 1750px;
    }
    .wayfinderCard {
        height: 540px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.25);
        margin-bottom: 3rem;
    }
    .wayfinderImageContainer {
        border: 5px solid #FFF;
        height: 250px;
        width: 250px;
    }
    .learnMoreButtonContainer {
        bottom: auto;
    }
    .wayfinderName {
        font-size: 1.285rem;
    }    
}
/*#endregion*/

