:root{
	--footerHeight: 570px;
	--footerBottomHeight: 95px;
}
footer{
	background-color: var(--themeWhite);
	min-height:var(--footerHeight);
	padding: 0;
	border-top:1px solid #000;
}
footer h2{
	font-size:25px;
	margin-bottom: 2rem;
	color:#5F5B69;
}

footer .footerLogCol{
	width: 220px;
	flex: none;
}
footer .footerLogCol img{}

footer .footerContent{
	display:flex;
	width: 100%;
	align-items: center;
	min-height:calc(var(--footerHeight) - var(--footerBottomHeight));
}
footer .footerContent > .row{
	width:100%;
	margin: 0;
}
footer .footerContent ul{
	padding:0;
	list-style:none;
}
footer .footerContent ul li{}
footer .footerContent ul li a{
    color: var(--themeText);
    line-height: 1.6em;
    font-weight: 200;
}
footer .footerContent .col{
	align-items: center;
}
footer .footerContent .colContent {
    width: fit-content;
}

footer .footerBottomBar{
	display: flex;
	height:var(--footerBottomHeight);
	border-top: 1px solid #D7D7D7CC;
	align-items: center;
	justify-content: space-between;
}
footer .footerBottomBar p{
	margin:0;
}
footer .footerBottomBar .icons{
	display:flex;
	gap:5px;
}
footer .footerBottomBar .icons a{
	border:2px solid #ddd;
	width:40px;
	height:40px;
	display:inline-flex;
	align-items:center;
	justify-content: center;
	transition: all .2s ease-in-out;
	box-shadow:0 0 0 0 #000;
}
footer .footerBottomBar .icons a:hover{
	border-color:#000;
	box-shadow:2px 2px 0 0 #000;
	transform:translateX(-1px) translateY(-1px);
}
footer .footerBottomBar .icons a svg{
	width:20px;
	height:20px;
	transform: translateX(0) !important;
}
@media screen and (max-width:769px){
	:root{
	    --footerBottomHeight: 120px;
	}
}

@media screen and (max-width:440px){
	.footerLogCol{
		width:100% !important;
		margin-bottom:2rem;
	}
}