.footer-area {
	background-color: var(--footer-bg-color);
	color: color: var(--footer-bottom-text-color);
	font-size: 14px;
}
.footer-padding {
	padding: 100px 0 100px;
}
.footer-info p {
	margin: 18px 0 19px;
}

.footer-info ul {
	list-style: none;
  flex-wrap: wrap;
  display: flex;
}

.footer-info ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	gap: 5px;
	margin: 0 0 6px;
  width: 100%;
}
.footer-info ul li span {
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	.footer-info ul li {
		margin: 0 0 8px;
	}
}

.footer-info ul li:last-child {
	margin: 0;
}
.footer-widget.footer-link {
	margin-left: 57px;
}
.footer-widget > h3 {
	color: var(--footer-link-color);
	display: block;
	font-size: inherit;
	margin: 0 0 14px;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul li {
	margin: 0 0 10px;
}

.footer-widget ul li a {
	color: var(--footer-link-color);
}

.footer-widget ul li a:hover {
	color: var(--footer-link-hover-color);
}

.footer-widget ul li:last-child {
	margin: 0;
}

.footer-social {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0 29px;
  margin-top: 10px;

  @media only screen and (min-width: 768px) {
  	flex-direction: row;
  	
  }
}
.footer-social a svg {
	width: 16px;
	height: 16px;
}
.footer-social a svg path {
	fill: currentColor;  
} 

.footer-social a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	border-top: 1px solid var(--footer-border-color);
	padding: 32px 0;
}
.footer-copyright {
  color: var(--footer-bottom-text-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.footer-link {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget.footer-link {
    margin-left: 0;
  }
}

.footer-support {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -1rem;
}
@media (min-width: 768px) {
	.footer-support {
		justify-content: space-between;
	}
}
.footer-support figure {
	align-items: center;
	display: flex;
	height: 60px;
	margin: 0 1rem 1rem;
}

.footer-support figure img {
	max-height: 100%;
}

.footer-support-container {
	border-top: solid 1px var(--footer-link-color);
	padding-top: 40px;
}