@charset "UTF-8";


footer {
/* 	position: absolute;
    bottom: 0; */
    width: 70%;
    color: #fff;
    border-top: solid 1px #e2e2e2;
	padding: 10px 15%;
    margin-top: 30px;
	display:flex;
	background-color: #DBDBDB;
}

footer dd em {
    color: #bebebe;
    padding: 0 8px;
    font-style: normal;
}

.footerLogos {
	display: flex;
	justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footerText {
	margin-left: 40px;
}

.footerText, .footerTextM {
    font-size: 13px;
    color: #828282;
    line-height: 1.6;
}

.footerTextM {
	display: none;
}



@media screen and (max-width: 1000px) {
	footer {
		text-align: center;
		padding: 0px;
		justify-content: center;
		width: 100%; 
	}
	.footerLogos > img, .footerText {
		display: none;
	}
	
	.footerTextM {
		display: block;
	}
} 