@import "themes.css"; 

/* Footer styling */

.footer-main {
	width: 100%;
	margin: 0;
	padding: 2rem;
	background-color: var(--footer-background-color);
	color: var(--footer-text-color);
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	flex-direction: column;
}
/****************************************************************************************************/
.footer-frame {
	width: 100%;
	display: flex;
	justify-content: center;
}
.footer-frame::-webkit-scrollbar {
	display: none;
}
.x-scrollable {
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
}
/****************************************************************************************************/
.footer-testimony {
	flex-basis: 20%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-width: 20rem;
	scroll-snap-align: center;
}
.footer-testimony img {
	width: 50%;
	border-radius: 50%;
}
.footer-testimony p {
	text-align: center;
	font-size: 12px;
	padding: 1.5rem;
}
.footer-getintouch {
	display: block;;
	color: var(--footer-text-color);
	padding: 0.75rem 1.25rem;
	border: 0.125rem solid var(--footer-text-color);
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 1.25rem;
	transition: all ease-in-out 200ms;
}
.footer-getintouch:hover {
	color: var(--footer-link-hover);
	border: 0.125rem solid var(--footer-link-hover);
	text-decoration: none;
}
/* SITEMAP ******************************************************************************/
.footer-sitemap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  	grid-auto-rows: max-content;
}
.footer-sitemap > div {
	padding: 0.75rem;
	font-size: 1rem;
	text-align: left;
} 
.sitemap-div:first-child {
	border-left: 0.25rem  solid var(--wv_color_link);
}
.footer-sitemap a {
	color: var(--footer-text-color);
	text-decoration: none;
	font-size: 0.75rem;
	line-height: 1.25rem;
}
.footer-sitemap a:hover {
	color: var(--footer-link-hover);
}
.footer-sitemap ul {
	list-style-type: none;
}
.footer-sitemap p {
	text-transform: uppercase;
	font-size: 0.75rem;
	line-height: 1.25rem;
	margin: 0 auto;
}
.sitemap-img-link {
	height: 1.125rem;
}
.sitemap-img-link:hover {
	opacity: 0.6;
}
.footer-main span.copyright-note {
	clear: both;
	display: block;
	font-size: 0.875rem;
	margin: 2rem 0;
	text-align: center;
}
/****************************************************************************************************************/
  