/*-----------
Footer start
-----------*/

footer {
	position: relative;
    padding: 64px 0 0;
    background: #83add7;
}

.footer-menu {
    display: flex;
	gap: 32px;
}
.footer-menu__main_col{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	width: 100%;
}

.footer__links a:not(.footer__links-title) {
	margin-bottom: 16px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #334155;
    transition: 0.2s;
}

.footer__links a:last-child {
	margin-bottom: 0;
}

.footer-menu__col a:hover {
	color: #1792e3;
}

.footer__links-title {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	font-size: 18px;
	font-weight: 500;
	line-height: 156%;
	color: #334155;
	transition: 0.3s;
}

.footer__links-title svg path {
	transition: 0.3s;
}

a.footer__links-title:hover {
	color: #0e79bf;
}

.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: #4b5563;
}

.footer-info--wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-phone-wrap a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-phone-wrap a:hover svg path {
	stroke: #facc15;
}

.footer__address {
	margin: 24px 0;
	display: flex;
	align-items: start;
	gap: 8px;
	font-size: 16px;
	line-height: 150%;
	color: #334155;
}

.footer__address svg {
	flex-shrink: 0;
}

.footer-botmenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 56px;
    border-top: 1px solid #5887b7;
    padding: 50px 0 10px;
    color: #4b5563;
    font-size: 14px;
    line-height: 143%;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-social__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #5f86ad;
    border-radius: 22px;
	transition: 0.3s;
}

.footer-social__item svg path {
	transition: 0.3s;
}

.footer-social__item:hover {
	background: #1792e3;
	border: 1px solid #1792e3;
}

.footer-social__item:hover svg path {
	fill: #fff;
}

.footer__sp {
	display: flex;
    align-items: center;
    gap: 14px;
}

.footer__links .btn {
	padding: 10px 18px;
	font-size: 16px;
	line-height: 156%;
}

/*----------
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__main_col {
		grid-template-columns: repeat(1, 1fr);
	}
	.footer__address {
		margin: 30px 0 24px;
	}

	.footer__links a:not(.footer__links-title) {
		font-size: 14px;
    	line-height: 143%;
	}

	a.footer__links-title {
		font-size: 16px;
		line-height: 137%;
	}

	.footer-menu {
		grid-template-columns: repeat(1, 1fr);
	}

	footer {
		padding: 40px 0 0;
	}

	.footer-bottom {
		height: auto;
		margin-top: 40px;
    	padding-top: 28px;
	}

	.footer-bg--back {
        transform: scale(1.4) translateY(0px);
    }

	.footer-bg {
		transform: scale(1.7) translateY(4px);
	}
}

/*----------
Footer adaptation END
-----------*/
