/* This is just the footer components from the bootstrap blog.css file */

/*
 * Footer
 */


 @font-face {
    font-family: 'Poppins', sans-serif;
    src: url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;900&display=swap");
}

:root {
    --blue-color: #223148;
    --white-color: #ffffff;
    --black-color: #000000e8;
    --light-gray: #f9f9f9;
    --dark-gray: #838383;
    --font-poppins: 'Poppins', sans-serif;
}

.blog-footer {
	padding: 0rem;
	color: #999;
	text-align: center;
	background-color: #f9f9f9;
	border-top: .05rem solid #e5e5e5;
	min-height: 20%;
    width: 100vw;

}

.blog-footer p:last-child {
	margin-bottom: 0;
}

.blog-footer .wrapper {
    text-align: center;
    padding: 1rem;
}


.wrapper .info {
    color: var(--dark-gray);
    font-size: .8rem;
}

.wrapper .info img {
    max-height: 80px;
}

.wrapper a img{
    filter: opacity(50%);
}

.wrapper a:hover img{
    transform: scale(1.05);
    transition: all ease-in-out .3s;
    filter: opacity(100%);
}

.wrapper img {
    max-height: 50px;
}

.row-centered {
    display:inline-block;
}

.col-centered {
    display:inline-block;
    float:none;
    /* inline-block space fix*/
    margin-right:-4px;
}

.lab-address {
    text-align: center;
    font-size: .7rem;
}