.footer {
	font-size: 16px;
	background: #f9f9f9;
	padding: 60px 0;
}
.footer .container {
	max-width: 1330px;
	padding: 0 20px;
	margin: 0 auto;
}
.footer a {
	text-decoration: none;
	color: #000;
	transition: 0.3s linear;
}
.footer a:hover {
	color: #4dae18;
}
.footer-columns-wrapper {
	display: flex;
	flex-wrap: wrap;
	row-gap: 70px;
	column-gap: 10px;
}
.footer-contacts-column {
	display: flex;
	align-items: end;
	flex: 100%;
	column-gap: 10px;
}
.footer-contacts-column .social-icons,
.footer-contacts-column .phone,
.footer-contacts-column .email,
.footer-columns-wrapper .footer-column {
	flex: 32%;
}
.footer-contacts-column .phone,
.footer-contacts-column .email {
	font-size: 18px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-contacts-column .phone a,
.footer-contacts-column .email a {
	color: #4dae18;
}
.footer-contacts-column .phone a:hover,
.footer-contacts-column .email a:hover {
	color: #000;
}
.footer-contacts-column .phone span,
.footer-contacts-column .email span {
	font-size: 14px;
	font-weight: 300;
	color: #7a7a7a;
	vertical-align: middle;
}
.footer-contacts-column .social-icons {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.footer-contacts-column .social-icons__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.footer .social-icons__item,
.social-icons__item img {
	width: 40px;
	height: 40px;
	font-size: 9px;
}
.footer .social-icons__item:hover {
	transform: scale(1.1);
}
.footer .phone a {
	color: #4dae18;
}
.footer-title {
	font-weight: 600;
	font-size: 28px;
}
.footer-links-list {
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-links-list .footer-link:hover {
	color: #4dae18;
	transition: 0.2s linear;
}
.footer .subscription-wrapper {
	padding: 60px 0;
}
.footer .subscription {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	column-gap: 20vw;
	row-gap: 20px;
	background: #fff;
	padding: 30px;
	border-radius: 16px;
}
.footer .subscription .subscription-title {
	font-size: 32px;
	font-weight: 600;
}
.footer .subscription .inputs-wrapper {
	display: flex;
	flex-grow: 1;
	align-items: stretch;
	gap: 15px;
	max-width: 100%;
}
.footer .subscription .inputs-wrapper .error {
	border: 1px red solid;
	position: relative;
	border-radius: 8px;
}
.footer .subscription .inputs-wrapper .error span {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	color: red;
}
.footer .subscription .inputs-wrapper .success-submit {
	color: #4dae18;
	font-weight: 600;
}
.footer .subscription .inputs-wrapper div:has(input) {
	display: flex;
}
.footer .subscription .inputs-wrapper input {
	display: inline-block;
	background: #f9f9f9;
	border: 1px solid #dddddd;
	border-radius: 8px;
	padding: 16px 24px;
	font-size: 20px;
	flex-grow: 1;
	min-width: 0 !important;
}
.footer .subscription .inputs-wrapper input:focus {
	border: 1px solid #4dae18;
	outline: none;
}
.footer .subscription .inputs-wrapper input::placeholder {
	color: #8b8b8b;
	font-size: 16px;
}
.footer .subscription .inputs-wrapper .green-button {
	cursor: pointer;
	height: 100%;
	width: 100%;
	font-size: 16px;
	background: #70bb18;
	color: #fff;
	padding: 16px 24px;
	font-weight: 600;
	border-radius: 8px;
	transition: 0.2s linear;
	border: none;
}
.footer .subscription .inputs-wrapper .green-button:hover {
	background: #4dae18;
}
.foot {
	color: #8b8b8b;
	display: flex;
	gap: 8%;
	flex-wrap: wrap;
}
.foot__item a {
	color: #8b8b8b;
}
.foot__item a:hover {
	color: #4dae18;
}
.foot__item iframe {
	border: none;
}

/*! MEDIA QUERIES */

@media (max-width: 1000px) {
	.footer-contacts-column {
		flex-direction: column;
		align-items: start;
		row-gap: 30px;
	}
	.footer-contacts-column .phone span,
	.footer-contacts-column .email span {
		display: none;
	}
	.footer .subscription {
		column-gap: 10vw;
	}
	.foot {
		gap: 10px;
		justify-content: space-between;
	}
}

@media (max-width: 768px) {
	.footer-contacts-column,
	.footer-columns-wrapper .footer-column {
		flex: 49%;
	}
	.footer-contacts-column .social-icons__list {
		gap: 10px;
	}
	.footer-contacts-column .phone,
	.footer-contacts-column .email {
		display: block;
	}
	.footer .subscription {
		column-gap: 4vw;
	}
	.foot .foot__item {
		flex: 49%;
		flex-shrink: 0;
	}
}

@media (max-width: 600px) {
	.footer .subscription .inputs-wrapper {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.footer-title {
		font-size: 22px;
	}
	.footer .social-icons__item {
		width: 36px;
		height: 36px;
	}
	.footer .subscription .subscription-title {
		font-size: 22px;
	}
	.footer .subscription .inputs-wrapper div {
		flex-grow: 1;
	}
}
