.footer{
	display: grid;
	width:100%;
	background-color: #f8f6f3;
	padding: 60px 0;
	border-top:solid 1px #ECE7E4;
}
.footer__section{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr;
	width: 100%;
	max-width: 71.5rem;
	margin: 0 auto;
}
.footer__box{
	display: flex;
	flex-direction: column;
	width:100%;
	gap: 4px;
	padding: 0 25px;
	border-left: 1px solid #ECE7E4;
}
.footer__box-brand{
	border-left: none;
	padding-left: 0;
}
.footer__box h3{
	margin:0 0 14px 0;
	color: #232323;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
}
.footer__box ul{
	margin:0;
	padding:0;
	list-style: none;
}
.footer__box ul li{
	margin:0;
	padding:0;
	width:100%;
}
.footer__box ul li a{
	color: #5F6061;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
	text-decoration: none;
}
.footer__box ul li a:hover{
	color: #232323;
	text-decoration: underline;
}

/* Brand column */
.footer__logo_wrap{
	display: grid;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	margin-bottom:16px;
}
.footer__logo{
	display: grid;
}
.footer__logo-text{
	font-family: 'Gentium Book Plus', Georgia, serif;
	font-size: 30px;
	font-weight: 700;
	color: #232323;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	line-height: 1;
	text-decoration: none;
}
.footer__logo-text:hover{
	color: #232323;
}
.footer__tagline{
	margin: 0 0 20px 0;
	color: #5F6061;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
}
.footer__social{
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.footer__social a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #81937C;
	color: #ffffff;
	text-decoration: none;
	transition: background-color .2s ease;
}
.footer__social a:hover{
	background-color: #6b7d66;
}

/* Contact column */
.footer__contact-line{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	color: #5F6061;
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 10px;
}
.footer__contact-line--top{
	align-items: flex-start;
}
.footer__contact-line--top svg{
	margin-top: 5px;
}
.footer__contact-line svg{
	flex-shrink: 0;
	color: #232323;
}
.footer__contact-line a{
	color: #5F6061;
	text-decoration: none;
}
.footer__contact-line a:hover{
	color: #232323;
	text-decoration: underline;
}
.footer__contact-lines{
	display: flex;
	flex-direction: column;
}
.footer__contact-lines span{
	color: #5F6061;
	font-size: 15px;
	line-height: 24px;
}

/* Bottom bar */
.footer__bottom{
	width:100%;
	background-color: #f8f6f3;
	border-top: 1px solid #ECE7E4;
	padding: 18px 0;
}
.footer__bottom-container{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 40px;
	width: 100%;
	max-width: 71.5rem;
	margin: 0 auto;
}
.footer__copyright-text{
	margin: 0;
	color: #5F6061;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
}
.footer__bottom-links ul{
	display: flex;
	flex-direction: row;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer__bottom-links ul li a{
	color: #5F6061;
	font-size: 14px;
	text-decoration: none;
}
.footer__bottom-links ul li a:hover{
	color: #232323;
	text-decoration: underline;
}
.footer__payments{
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	margin-left: auto;
}
.footer__payments img{
	display: block;
	height: 28px;
	width: auto;
}

@media screen and (max-width: 71.5rem) {
	.footer__section{
		grid-template-columns:1fr 1fr;
		gap: 30px 0;
		padding-left:14px;
		padding-right:14px;
	}
	.footer__box{
		border-left: none;
		padding: 0;
	}
	.footer__box-brand{
		grid-column: 1 / -1;
	}
	.footer__bottom-container{
		flex-wrap: wrap;
		gap: 15px 30px;
		padding-left:14px;
		padding-right:14px;
	}
}
@media screen and (max-width: 690px) {
	.footer{
		padding: 40px 0;
	}
	.footer__section{
		grid-template-columns:1fr;
	}
	.footer__bottom-container{
		flex-direction: column;
		align-items: flex-start;
	}
	.footer__payments{
		margin-left: 0;
	}
}
