.footer {

    width:100%;
    height:40px;
    background-color:rgba(32,80,119,1.0);
    position:relative;
    z-index:2;

}

.footer .content {
	display:flex;
}

.footer .left_side {
	width:50%;
	display:flex;
	align-items:center;
}

.footer .footer_small_logo {

    width:16px;
    height:40px;
    background-image:url('./files/elements/small_footer_logo.png');
    background-size:contain;
    background-position:right center;
    background-repeat:no-repeat;
	margin-right:10px;

}

.footer .copyright {

    padding:0;
    margin:0;
    font-size:16px;
    font-weight:500;
    color:rgba(255,255,255,1.0);

}

.footer .right_side {
	width:50%;
	display:flex;
	align-items:center;
	margin-left:auto;
	justify-content:flex-end;
	font-size:16px;
    color:rgba(255,255,255,1.0);
}

.footer .right_side a {
	font-size:16px;
	color:rgba(255,255,255,1.0);
	text-decoration:none;
}

@media screen and (max-width:500px) {
	.footer {
	    height:100px;
	}
	.footer .content {
		height:100%;
		flex-wrap:wrap-reverse;
		align-items:center;
		align-content: center;
	}

	.footer .left_side {
		width:100%;
		justify-content:center;
	}

	.footer .right_side {
		width:100%;
		justify-content:center;
	}
}
