.site-footer {
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, .75);
	background: #062b68;
}

.site-footer::before {
	position: absolute;
	top: -210px;
	left: -170px;
	width: 430px;
	height: 430px;
	border: 1px solid rgba(205, 144, 24, .08);
	border-radius: 50%;
	box-shadow: 0 0 0 60px rgba(205, 144, 24, .018);
	content: "";
	pointer-events: none;
}

.site-footer__main {
	position: relative;
	padding: clamp(65px, 8vw, 105px) 0 55px;
}

.site-footer__logo {
	display: block;
	width: min(185px, 100%);
}

.site-footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.site-footer h2 {
	margin: 0 0 24px;
	color: #ffffff;
	font-size: 20px;
	font-weight: 500;
}

.site-footer ul {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
}

.site-footer li,
.site-footer address {
	margin: 0;
}

.site-footer__column a,
.site-footer__contact > a {
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.55;
	transition: color .2s ease, padding-left .2s ease;
}

.site-footer__column a:hover {
	padding-left: 5px;
	color: #cd9018;
}

.site-footer__contact address {
	max-width: 330px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.65;
}

.site-footer__contact > a {
	display: block;
	margin-bottom: 6px;
	overflow-wrap: anywhere;
}

.site-footer__contact > a:hover {
	color: #cd9018;
}

.site-footer__contact h2:nth-of-type(2) {
	margin-bottom: 12px;
}

.site-footer__socials {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}

.site-footer__socials a {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	color: #ffffff;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.site-footer__socials a:hover {
	color: #031c47;
	background: #cd9018;
	border-color: #cd9018;
	transform: translateY(-3px);
}

.site-footer__socials svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.site-footer__hours {
	display: flex;
	align-items: center;
	gap: clamp(50px, 10vw, 150px);
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer__hours > div {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-footer__hours span {
	color: #cd9018;
	font-size: 15px;
	font-weight: 500;
}

.site-footer__hours strong {
	color: #ffffff;
	font-size: 17px;
	font-weight: 400;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, .65);
	font-size: 13px;
}

.site-footer__bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(18px, 3vw, 42px);
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
}

.site-footer__bottom a:hover {
	color: #cd9018;
}

@media (max-width: 767px) {
	.site-footer__main {
		padding: 65px 0 45px;
	}

	.site-footer__logo {
		width: 145px;
	}

	.site-footer__hours,
	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.site-footer__hours > div {
		justify-content: space-between;
		width: 100%;
		gap: 18px;
	}

}

@media (prefers-reduced-motion: reduce) {
	.site-footer a {
		transition: none;
	}
}
