﻿footer {
	background: #FFFFFF;
	padding: 0 58px;
}
	footer ul > li a {
		color: #222C31 !important;
	}

.footer-container {
	width: 100%;
	height: 100%;
	max-width: 1180px;
	padding: 40px 0;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	gap: 130px;
}

.footer-brand-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 15px;
}

.footer-brand > img {	
	width: 117px;
}

.footer-version {
	color: #777;
	font-size: 14px;
}

.footer-menu-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex: 1;
}

.footer-menu-section {
	display: flex;
	flex-direction: row;
	gap: 15px;
	flex: 1;
}

	.footer-menu-section.separate-top {
		border-top: 1px solid #c2c9d066;
		padding-top: 30px;
	}

.footer-menu-section-group {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.footer-menu-section-group-title {
	font-weight: 700;
	font-size: 14px;
	line-height: 32px;
	color: #13AABF;
	text-transform: uppercase;
	font-style: normal !important;
}

	.footer-menu-section-group-title > img {
		height: 9px;
		width: 32px;
		transform: rotate(90deg);
	}

.footer-menu-section-group-items {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu-section-group-item {
	display: flex;
	padding-top: 10px;
	flex-direction: row;
	gap: 10px;
	align-items: center;
}

	.footer-menu-section-group-item > a {
		text-decoration: none;
		font-weight: 400;
		font-size: 14px;
		line-height: 180%;
		color: #222C31;
		font-style: normal !important;
	}

		.footer-menu-section-group-item > a:hover {
			font-weight: 700;
		}

@media(max-width:980px) {
	footer {		
		padding: 0 32px;
	}

	.footer-container {
		flex-direction: column;
		gap: 30px;
	}

	.footer-brand-container {
		flex-direction: row;
		padding-top: 0px;
		align-items: center;
	}

	.footer-brand > img {
		width: 103px;
	}
}

@media(min-width: 711px) {
	.footer-menu-container.footer-menu-container-desktop {
		display: flex;
	}

	.footer-menu-container.footer-menu-container-mobile {
		display: none;
	}
}

@media(max-width: 710px) {
	.footer-menu-container.footer-menu-container-desktop {
		display: none;
	}

	.footer-menu-container.footer-menu-container-mobile {
		display: flex;
		gap: 8px;
	}

	footer {
		padding: 0 16px;
	}

	.footer-container {
		gap: 24px;
	}

	.footer-brand > img {
		width: 88px;
	}

	.footer-menu-section {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

		.footer-menu-section.separate-top {
			border-top: none;
			padding-top: 0px;
		}

	.footer-menu-section-group[open] .footer-menu-arrow {
		transform: rotate(-90deg);
	}

	.footer-menu-section-group-title {
		display: flex;
		justify-content: space-between;
		cursor: pointer;
	}
}