.footer {
	/*background-color: #039cdf;	*/
	/*background-color: rgba(246, 246, 241, 1);*/
	/*background-color: rgba(246, 246, 241, .5);*/
	/*background-color: #fff;*/
	background-color: rgba(248, 248, 255, 0.95);
	/*height: 300px;*/
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 50px;
	padding: 20px;
}
.footer .brand_logo_whatsapp {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	list-style: none;
	margin: auto 0;
}
.footer .brand_logo_whatsapp img {
	width: 200px
}
.footer .brand_logo_whatsapp li:nth-child(2) {
	font-weight: bold;
	color: #fff;
	font-size: 2rem;
	transition: all 0.15s ease;
	background-color: #039cdf;
	padding: 5px 10px;
	text-align: center;
	/*border-radius: 2px;*/
}
.footer .brand_logo_whatsapp li:nth-child(2):hover {
	/*text-shadow: 0 0 5px rgba(0,0,0,.9);*/
	transform: scale(1.1);
}

.footer .premium_brands {
	margin: auto 0;
}
.footer .premium_brands ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer .premium_brands img {
	width: 100px;
}


.footer .footer_nav_wrapper {
	display: flex;
	flex-direction: row;
	gap: 50px;
	margin: 25px 0;
}
.footer .footer_stores,
.footer .footer_nav {
	line-height: 1.5;
}
.footer .footer_stores a,
.footer_nav a {
	color: #000;
  text-decoration: none;
  position: relative;
  vertical-align: middle;
  margin: auto 0;
}
.footer .footer_stores a::after,
.footer .footer_nav a::after {
	content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #039cdf;
  transition: width 0.3s ease;
}
.footer .footer_stores a:hover::after,
.footer .footer_nav a:hover::after {
	width: 100%;
}