.el__footer {
	/*z-index: 99999;*/
    position: relative;
}

.newsletter {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: auto;
	width: var(--container-width-m);
}

.newsletter-box {
	background-color: var(--beige-color);
	padding: 40px 30px;
}

.newsletter img {
	height: 92px;
	width: auto;
	padding: 10px 0;
}

a.newsletter_button {
	color: var(--pink-color);
	text-align: center;
	font-family: var(--main-font);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px; /* 125% */
	text-transform: lowercase;
	border-radius: 20px;
	border: 1px solid var(--pink-color);
	background-color: transparent;
	padding: 20px 75px;
	transition: all ease 500ms;
}

a.newsletter_button:hover {
	text-decoration: none;
	background-color: var(--pink-color);
	color: white;
	transition: all ease 500ms;
}

a.newsletter_button:first-letter {
	text-transform: capitalize;
}

.contacts, .socials, .page-links_1, .page-links_2, .copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.socials {
	padding: 23px 0;
}

.socials a {
	width: 45px;
	height: 45px;
	background-color: transparent;
}

.page-links_1 a, .page-links_2 a {
	background-color: transparent;
	color: var(--grey-color);
}

.page-links_1 a, .page-links_2 a:hover {
	text-decoration: none;
}

.copyright {
    color: var(--grey-color);
    text-align: center;
    font-family: var(--main-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    padding: 7px;
}

.uptoyou {
    	color: var(--grey-color);
}

.uptoyou a {
	background-color: transparent;
	padding: 0;
}

hr {
	background-color: var(--pink-color);
	width: var(--container-width-m);
	height: 1px;
	width: 100%;
}

.footer-access .quick-links-footer a {
	background-color: transparent;
	text-decoration: inherit;
}

.footer-access .quick-links-footer {
	display: flex;
	justify-content: center;
}

@media (min-width: 992px) {
	.newsletter {
		flex-direction: inherit;
		justify-content: space-between;
	}
}