/* fl-footer */

.fl-footer {
	padding: 1rem;
	background-color: #284452;
	margin-top: 2rem;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;	
	align-content: flex-start;
	align-items: flex-start;	
}

.fl-footer-con {
	background-color: #26292c;
	padding: 75px 12% 75px;
	width: 100%;
	margin-top: 0;
	box-sizing: border-box;
	display: -ms-flexbox;
	display: flex;
	flex-flow: row wrap;
	-ms-flex-wrap: wrap;
	-ms-flex-direction: row;
	justify-content: flex-start;
	-ms-flex-pack: start;	
	align-content: flex-start;
	-ms-flex-line-pack: start;
	align-items: flex-start;
  	-ms-flex-align: start;	
  	position: relative;
  	border-bottom: 0.5px solid rgba(255,255,255,.1);
}

.fl-footer-title {
	font-weight: bold;
	color: white;
	font-size: 16px;
	margin-bottom: 1rem;
	width: 100%;
}	

.fl-footer-list:not(:first-child) {
	margin-left: 0.5rem;
}

.fl-footer-item:not(:first-child) { 
	margin-top: 1rem;
}

.fl-footer-inline-list .fl-footer-item {
	display: inline-block;
	margin-right: 1rem;
}

.fl-footer-inline-list .fl-footer-item:last-child {
	margin-right: 0;
}

.fl-footer-link {
	color: rgba(255,255,255,.5);
	font-weight: normal;
	white-space: normal;
	transition: color .3s, opacity .3s;
	font-size: 14px;
}

@media (hover: hover) {

	.fl-footer-link:hover {
		color: var(--yellow);
	}

}

.fl-footer-link:active {
	color: var(--yellow);
}

.fl-footer-icon {
	margin-right: 0.5vw;
}

.fl-footer-form > *:not(:first-child) {
	margin-top: 2rem;
}

.fl-footer-input {
	outline: 0 !important;
	padding: 1rem;
	border-radius: 0;
	border: 1px solid #9e9f9f;
	background-color: #22252a;
	color: #9e9f9f;
	display: block;
	width: calc(100% - 2rem - 2px);
}

.fl-footer-input::-webkit-input-placeholder {
  	color: #9e9f9f;
}

.fl-footer-input::-moz-placeholder {
  	color: #9e9f9f;
}

.fl-footer-input::-ms-input-placeholder {
  	color: #9e9f9f;
}

.fl-footer-message {
	resize: none;
}

.fl-footer-submit {
	background-color: #22252a;
	color: #9e9f9f;
	padding: 0.5rem 1rem;
	outline: 0 !important;
	border: 1px solid #9e9f9f;
	border-radius: 0;
	cursor: pointer;
	transition: color .3s ease, background-color .3s ease;
}

@media (hover: hover) {

	.fl-footer-submit:hover {
		color: #22252a;
		background-color: white;
	}

}

.fl-footer-submit:active {
	color: #22252a;
	background-color: white;
}

.fl-footer-bottom-con {
	width: 76%;
	padding: 40px 12%;
	text-align: left;
	color: white;
	margin-top: 0;
	background-color: #26292c;
	/*box-sizing: border-box;*/
}

.fl-footer-text {
	color: #72786a;
	text-align: center;
	font-size: 12px;
	margin: 2rem 0 0;
}


/*-bottom-list-*/
.fl-footer-bottom-list {
	margin-top: 0 !important;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
	padding: .5rem 3rem 1.5rem;
}

.fl-footer-bottom-list .fl-footer-item {
	margin-top: 1rem !important;
	width: 100%;
	text-align: center;
}

@media only screen and (min-width: 576px) {

	.fl-footer-bottom-list .fl-footer-item {
		width: auto;
	}

	.fl-footer-bottom-list .fl-footer-item:not(:last-child) {
		position: relative;
		margin-right: 3rem;
	}

	.fl-footer-bottom-list .fl-footer-item:not(:last-child)::after {
		content: " ";
		position: absolute;
		right: -1rem;
		top: 15%;
		height: 70%;
		width: 1px;
		background-color: black;
	}

}

@media only screen and (min-width: 992px) {

	.fl-footer { 
		padding: 1rem 3rem 2rem;
	}
		
	.fl-footer > *:not(.fl-footer-brand, .fl-flex-divider) {
		width: auto;
	}

}	

/* the-end-of-fl-footer */