.axon-footer {
	background: #307beb;
	color: #fff;
	font-family: "Poppins", sans-serif;
}

.axon-footer,
.axon-footer * {
	box-sizing: border-box;
}

.axon-footer__container {
	width: min(1140px, calc(100% - 40px));
	margin: 0 auto;
}

.axon-footer__main {
	padding: 50px 0;
}

.axon-footer__grid {
	display: grid;
	grid-template-columns: minmax(160px, .8fr) minmax(280px, 1.65fr) minmax(190px, .95fr) minmax(130px, .65fr);
	gap: 42px;
	align-items: start;
}

.axon-footer a {
	color: inherit;
	text-decoration: none;
}

.axon-footer a:hover {
	color: inherit;
}

.axon-footer__brand img {
	display: block;
	width: min(100%, 180px);
	height: auto;
}

.axon-footer address,
.axon-footer p,
.axon-footer dl,
.axon-footer dd {
	margin: 0;
}

.axon-footer address,
.axon-footer__company-data,
.axon-footer__contact,
.axon-footer__social {
	font-size: 15px;
	font-style: normal;
	line-height: 1.7;
}

.axon-footer address {
	margin-bottom: 20px;
}

.axon-footer__company-data {
	display: grid;
	gap: 2px;
}

.axon-footer__company-data > div {
	display: flex;
	gap: 5px;
}

.axon-footer__company-data dt,
.axon-footer__company-data dd {
	font-weight: 400;
}

.axon-footer__privacy {
	display: inline-block;
	margin-top: 20px;
	font-weight: 500;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.axon-footer__contact {
	display: grid;
	gap: 22px;
}

.axon-footer__contact strong,
.axon-footer__social strong {
	display: block;
	margin-bottom: 2px;
	font-weight: 600;
}

.axon-footer__contact a,
.axon-footer__privacy,
.axon-footer__credit a {
	transition: opacity .2s ease;
}

.axon-footer__contact a:hover,
.axon-footer__privacy:hover,
.axon-footer__credit a:hover {
	opacity: .78;
}

.axon-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-top: 8px;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 50%;
	transition: background-color .2s ease, border-color .2s ease;
}

.axon-footer__social a:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .12);
}

.axon-footer__social svg {
	width: 23px;
	height: 23px;
	fill: currentColor;
}

.axon-footer a:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .75);
	outline-offset: 4px;
}

.axon-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .3);
}

.axon-footer__bottom-inner {
	display: grid;
	grid-template-columns: 1fr minmax(90px, .55fr) 1fr;
	gap: 28px;
	align-items: center;
	min-height: 72px;
	padding: 10px 0;
	font-size: 14px;
	line-height: 1.5;
}

.axon-footer__divider {
	display: block;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, .72);
}

.axon-footer__credit {
	text-align: right;
}

@media (max-width: 960px) {
	.axon-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.axon-footer__bottom-inner {
		grid-template-columns: 1fr auto 1fr;
	}

	.axon-footer__divider {
		width: 2px;
		height: 34px;
	}
}

@media (max-width: 640px) {
	.axon-footer {
		margin-top: 36px;
	}

	.axon-footer__container {
		width: min(100% - 32px, 1140px);
	}

	.axon-footer__main {
		padding: 40px 0;
	}

	.axon-footer__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.axon-footer__brand img {
		width: min(100%, 165px);
	}

	.axon-footer__bottom-inner {
		display: flex;
		flex-direction: column;
		gap: 14px;
		padding: 22px 0;
		text-align: center;
	}

	.axon-footer__divider {
		width: min(180px, 60%);
		height: 1px;
	}

	.axon-footer__credit {
		text-align: center;
	}
}
