:root {
	/* neutrals */
	--clr-black: #000;
	--clr-white: #fff;
	--clr-grey-050: #fdfbfb;
	--clr-grey-100: #f5f2f2;
	--clr-grey-150: #f2f2f2;
	--clr-grey-200: #ebe9e9;
	--clr-grey-300: #f0f0f0;
	--clr-grey-400: #e0e0e0;
	--clr-grey-500: #ccc;
	--clr-grey-700: #777;
	--clr-grey-800: #555;
	--clr-grey-900: #333;
	--clr-grey-950: #111;

	/* transparencies */
	--shadow-sm: 0 2px 6px rgba(0, 0, 0, .06);
	--shadow-md: 0 0.3vw 0.9vw rgba(0, 0, 0, .15);
	--shadow-lg: 0 0.4vw 1vw rgba(0, 0, 0, .10);

	--label-bg: rgba(236, 235, 235, .90);
}


* {
	font-family: 'Outfit', sans-serif;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}
body > *:not(.footer-container) {
    flex-shrink: 0;
}
.footer-container{
    margin-top: auto;

}

.footer-distributed {
	background: var(--clr-grey-300);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
	padding-bottom: 10px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
	width: 40%;
}

/* The company logo */

.footer-distributed h3 {
	color: var(--clr-black);
	font: normal 36px 'Open Sans', cursive;
	margin: 0;
}

.footer-distributed h3 span {
	color: var(--clr-black);
}

/* Footer links */

.footer-distributed .footer-links {
	color: var(--clr-black);
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a {
	display: inline-block;
	line-height: 1.8;
	font-weight: 400;
	text-decoration: none;
	color: inherit;
}

.footer-distributed .footer-company-name {
	color: #222;
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 2vh;
	text-align: center;
}

/* Footer Center */

.footer-distributed .footer-center {
	width: 35%;
}

/* .footer-distributed .footer-center i{
	background-color:  #33383b;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
} */

/* .footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: var(--clr-black);
  font-weight:400;
	vertical-align: middle;
	margin:0;
} */

/* .footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
} */

.footer-distributed .footer-center p a {
	color: var(--clr-black);
	text-decoration: none;
	;
}

.footer-distributed .footer-links a:before {
	content: "|";
	font-weight: 300;
	font-size: 20px;
	left: 0;
	color: var(--clr-black);
	display: inline-block;
	padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
	content: none;
}

/* Footer Right */

.footer-distributed .footer-right {
	width: 20%;
}

.footer-distributed .footer-company-about {
	line-height: 20px;
	color: var(--clr-black);
	font-size: 16px;
	font-weight: normal;
	margin: 0;

}

.footer-center .footer-company-about span {
	display: block;
	color: var(--clr-black);
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.8;
	font-weight: 400;
}

/* .footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 2px;

	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-right: 20px;
	margin-bottom: 10px;
} */

.footer-distributed .footer-icons {
	margin-top: 25px;
	display: flex;
	justify-content: center;
	/* Align icons to center */
	flex-wrap: wrap;
	/* Wrap icons if space runs out */
	gap: 15px;
	/* Even space between icons */
	padding: 10px 0;
}

.footer-distributed .footer-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background-color: #33383b;
	border-radius: 2px;
	font-size: 20px;
	color: #ffffff;
	text-align: center;
	transition: background 0.3s;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

	.footer-distributed {
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right {
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i {
		margin-left: 0;
	}

}