/*-----------
Footer start
-----------*/

footer {
    position: relative;
	padding: 120px 0 24px;
    background: #0073c0;
}

footer .section-wrap {
	display: flex;
    flex-direction: column;
    gap: 120px;
	max-width: 1440px;
}

.footer-menu {
    display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-menu__col {
	padding-top: 32px;
	border-top: 1px solid #2696e2;
}

.footer__links {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.footer__links a:not(.footer__links-title) {
	position: relative;
	margin-bottom: 8px;
    display: inline-block;
    font-size: 16px;
	line-height: 150%;
	color: #fff;
    transition: 0.3s;
}

.footer__links a {
	padding-bottom: 8px;
}

.footer__links a:after {
	content: '';
	position: absolute;
	bottom: 0;
	display: flex;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: 0.3s;
	transform: scale(0, 1);
	transform-origin: left center;
}

.footer__links a:hover:after {
	transform: scale(1, 1);
}

.footer__links a:last-child {
	margin-bottom: 0;
}

.footer__links-title {
    display: flex;
    align-items: center;
	margin-bottom: 24px;
    font-size: 18px;
	line-height: 156%;
    color: #fff;
	transition: 0.3s;
}

.footer__links-title svg path {
	transition: 0.3s;
}

a.footer__links-title:hover {
	color: #fff;
	opacity: 0.9;
}

.social-wrap {
	margin-top: 24px;
    display: flex;
    gap: 24px;
}

.social-wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 72px;
	transition: 0.3s;
}

.social-wrap a:hover {
	background: #262626;
}

.social-wrap a:hover svg path {
	fill: #fff;
}

.footer-info-line {
    font-size: 14px;
    line-height: 143%;
    color: #a3a3a3;
}

.footer-info--wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-phone-wrap .footer__links a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer__address {
	display: flex;
	align-items: start;
	gap: 8px;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
}

.footer__address svg {
	flex-shrink: 0;
}

.footer-bottom {
	padding-top: 20px;
    display: grid;
    border-top: 1px solid #2696e2;
}

.footer-bottom__copy {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #86ccff;
}

.footer-bottom__link {
	line-height: 0;
}

/*----------
Footer end
-----------*/

/*----------
Footer adaptation START
-----------*/
@media screen and (max-width: 1080px) {
	.footer-menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media screen and (max-width: 640px) {
	.footer-menu {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}

	footer {
		padding: 40px 0;
	}
}

/*----------
Footer adaptation END
-----------*/
