@charset "utf-8";
/* CSS Document */


.blickelContact{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}
.blickelContact p{
    display: block;
    float: left;
    width: 100%;
    padding-left: 2.5%;
    margin-top: 1%;
}
.section{
    float: left;
    width: 100%;
    height: auto;
	margin-bottom: 2%;
}
.section p{
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding-left: 2.5%;
    padding-right: 2.5%;
    padding-top: 13px;
    text-indent: 10px;
}
.section .cardHeader p{
    padding-top: 0;
}
.blickelMemberContainer{
    float: left;
    width: 100%;
    height: auto;
    margin-top: 2.5%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}
.blickelMemberContainer .cardContainer{
    width: 48%;
}
.memberImageContainer{
    float: left;
    width: 80%;
    height: auto;
    margin-top: 13px;
    margin-bottom: 1%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.memberImageContainer img{
    display: block;
    width: auto;
    height: auto;
    max-width: 250px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
}

/* responsive screen code */
@media only screen and (min-width: 1500px) {
/* Extra large devices (large laptops and desktops, 1500px and up) */	
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
/* Extra large devices (large laptops and desktops, 1200px and up) */	
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
/* Large devices (laptops/desktops, 992px and up) */
    .memberImageContainer img{
        display: block;
        width: 90%;
        height: auto;
    }
} 
@media only screen and (min-width: 768px) and (max-width: 991px) {
/* Medium devices (landscape tablets, 768px and up) */
    .blickelMemberContainer .cardContainer{
        width: 100%;
    }
    .memberImageContainer img{
        display: block;
        width: 90%;
        height: auto;
    }
}
@media only screen and (min-width: 601px) and (max-width: 767px) {
/* Small devices (portrait tablets and large phones, 600px and up) */
    .blickelMemberContainer .cardContainer{
        width: 100%;
    }
    .memberImageContainer img{
        display: block;
        width: 100%;
        height: auto;
    }
}
@media only screen and (max-width: 600px) {
/* Extra small devices (phones, 600px and down) */
    .blickelMemberContainer .cardContainer{
        width: 100%;
    }
}
@media only screen and (max-width: 400px) {
/* Super Extra small devices (phones, 400px and down) */
}