footer {
	background: #123262;
	padding: 44px 0;
}

.footer-section {
	display: flex;
	justify-content: space-between;
	margin-bottom: 35px;
}

.footer-section-one {
	display: flex;
	justify-content: space-between;
	width: 50%;
}

.footer__social {
	display: flex;
	gap: 12px;
}

.footer__social .vk {
	width: 40px;
	height: 40px;
	background: url('/assets/images/icons/vk.svg');
	background-repeat: no-repeat;
}

.footer__social .tg {
	width: 40px;
	height: 40px;
	background: url('/assets/images/icons/tg.svg');
	background-repeat: no-repeat;
}

.footer__social .wa {
	width: 40px;
	height: 40px;
	background: url('/assets/images/icons/wa.svg');
	background-repeat: no-repeat;
}

.footer-section__logo {
	flex-direction: column;
	display: flex;
	justify-content: space-between;
}

.footer-section__nav a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	transition: .3s;
	text-decoration: none;
}

.footer-section__nav a:hover {
	color: #f3bc83;
	transition: .3s;
}

.footer-section__nav ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-section-two {
	display: flex;
	justify-content: space-between;
	width: 40%;
	gap: 70px;
}

.footer-section__location {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer-section__location-address {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-section__location-address span {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 125%;
	color: #dde3e9;
}

.footer-section__location-address-block {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer-section__location-address-block p {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	color: #fff;
}

.footer-section__location-address-block a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 125%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #f3bc83;
}

.footer-section__location-time {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-section__location-time span {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 125%;
	color: #dde3e9;
}

.footer-section__location-time p {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	color: #fff;
}

.footer-section__connection {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}

.footer-section__connection-feedback {
	background: #fff;
	border: 1px solid #123262;
	border-radius: 28px;
	padding: 15px 20px;
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	color: #123262;
	width: fit-content;
	transition: .3s;
}

.footer-section__connection-feedback:hover,
.footer-section__connection-feedback:focus {
	background: #cde4ff;
	transition: .3s;
}

.footer-section__connection-link {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: max-content;
}

.footer-section__connection-link .phone {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.footer-section__connection-link .mail {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: #cde4ff;
}

.footer-bottom {
	border-top: 1px solid #274e83;
	width: 100%;
	padding: 20px 0 0 0;
	display: flex;
	justify-content: space-between;
}

.footer-bottom span,
.footer-bottom a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	color: #dde3e9;
	text-decoration: none;
}

.footer__social-mobile {
	display: none;
}

@media (max-width: 768px) {
	.footer-section {
		flex-direction: column;
		gap: 40px;
		margin-bottom: 40px;
	}

	.footer-section-one {
		flex-direction: column;
		gap: 22px;
		width: 100%;
	}

	.footer-section-two {
		flex-direction: column-reverse;
		width: 100%;
		gap: 40px;
	}

	.footer-section__logo .footer__social {
		display: none;
	}

	.footer-section__nav a {
		font-size: 14px;
	}

	.footer-section__connection {
		flex-direction: row;
		align-items: center;
		gap: 7px;
	}

	.footer-section__connection-link .phone,
	.footer-section__connection-link .mail {
		font-size: 16px;
	}

	.footer-section__connection-feedback {
		font-size: 14px;
		line-height: 130%;
		padding: 15px 25px;
	}

	.footer-section__connection-link {
		gap: 15px;
	}

	.footer-section__location-address-block p,
	.footer-section__location-time p {
		font-size: 14px;
		line-height: 125%;
	}

	.footer-bottom {
		border-top: none;
		flex-direction: column;
		gap: 10px;
		padding: 0;
	}

	.btn-top {
		display: none;
	}

	.footer__social-mobile {
		display: flex;
		gap: 12px;
		padding: 0 11px;
	}

	.footer__social-mobile .vk {
		width: 40px;
		height: 40px;
		background: url('/assets/images/icons/vk.svg');
		background-repeat: no-repeat;
	}

	.footer__social-mobile .tg {
		width: 40px;
		height: 40px;
		background: url('/assets/images/icons/tg.svg');
		background-repeat: no-repeat;
	}

	.footer__social-mobile .wa {
		width: 40px;
		height: 40px;
		background: url('/assets/images/icons/wa.svg');
		background-repeat: no-repeat;
	}
}