/* Подвал сайта */

.footer {
	background-color: #09501C;
	border-top: 2px solid #FFD700;
	padding: 15px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	color: #FFFFFF;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #FFD700, #B22222, #FFD700);
}

.footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer__info {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin-bottom: 15px;
}

.footer__address {
	display: flex;
	flex-direction: column;
}

.footer__phone {
	color: #FFFFFF;
}

.footer__address {
	display: flex;
	align-items: center;
}

.footer__address-street {
	margin-top: 5px;
}

.footer__address-timework {
	margin-top: 15px;
}
  
.footer__social {
	display: flex;
	margin-bottom: 10px;
}

.footer__social-link {
	margin: 0px 15px 0px 0px;
}

.footer__social-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}
  
.footer__social-link:hover .footer__social-icon {
	transform: scale(1.1);
	opacity: 0.9;
}

.footer__copyright {
	padding-top: 10px;
	text-align: center;
	border-top: 2px solid #579b1fa6;;
}