.footer {
	padding-top: 60px;
	background: url('../imgs/footer_bg.jpg') top center no-repeat;
	background-size: cover;
	color: var(--text-light-color);
}

.footer .logo-wrap img {
	width: 80%;
}

.footer .company-info-top {
	margin-top: 30px;
	margin-bottom: 30px;
	color: #2c2c2c;
	font-size: 16px;
}

.footer dt {
	font-size: 20px;
	color: #000;
	margin-bottom: 10px;
}

.footer .footer-nav {
	white-space: nowrap;
}

.footer .footer-nav dl {
	flex-grow: 1;
	/* padding: 0 25px; */
}

.footer dt {
	position: relative;
	margin-bottom: 30px;
	flex: 1;
}

.footer dt::after {
	position: absolute;
	left: 0;
	bottom: -14px;
	content: '';
	width: 20px;
	height: 4px;
	background-color: var(--secondary-color);
}

.footer .footer-nav dd {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 16px;
	line-height: 2.5;
	color: #2c2c2c;
}

.footer .footer-nav .qCode {
	max-width: 80%;
}

.footer .footer-nav .contact span {
	width: 100%;
	text-align: center;
}

.footer .company-info {
	font-size: 16px;
	color: #2c2c2c;
}

.footer-right {
	padding: 0px;
}

#footer-form.contact-form .form-group {
	margin-bottom: 5px;
}

#footer-form.contact-form .form-group label {
	font-size: 16px;
	color: var(--text-black-color);
	margin-bottom: 0;
}

#footer-form.contact-form .form-control {
	padding: 0 4px;
	line-height: 1.2;
}

#footer-form .form-group .message {
	display: none;
}

#footer-form .form-group.error .message {
	display: block;
	line-height: 1.2;
}

#footer-form .btn {
	margin-bottom: 6px;
	margin-top: 6px;
	width: auto;
	font-size: 16px;
	padding: 5px 25px;
	border-radius: 6px;
}

.footer-links-section {
	padding-bottom: 15px;
	border-top: 1px solid #cfcfcf;
	margin-top: 15px;
	padding-top: 15px;
}

.footer-links-section .links dl {
	overflow: hidden;
}

.footer-links-section .links dd a {
	font-size: 16px;
	color: var(--text-black-color);
}



.footer-links-section .links dd {
	margin-bottom: 10px;
	float: left;
	width: 33.3%;
	padding-right: 1%;
}

@media screen and (min-width: 1200px) {
	.footer .footer-nav .qCode {
		max-width: 150px;
	}

	.footer .footer-nav .contact span {
		width: 150px;
	}
}

@media screen and (max-width: 991px) {
	.footer-left {
		font-size: 16px;
		line-height: 2;
		margin-bottom: 30px;
	}

	.footer .company-info-top {
		margin: 20px 0px;
	}

	.footer .footer-right {
		margin-left: -15px;
	}
}

@media screen and (max-width: 767px) {
	.footer .company-info {
		text-align: center;
	}

	.footer {
		padding: 40px 0;
	}

	.footer .footer-nav .qCode {
		max-width: 100px;
	}

	.footer .footer-nav .contact span {
		max-width: 100px;
	}

	.footer .footer-nav dl {
		text-align: center;
	}

	.footer .footer-nav dt::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer .footer-nav dd {
		align-items: center;
	}

	.footer .contact dt {
		text-align: center;
	}

	.footer dt::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer .logo-wrap {
		text-align: center;
	}

	.footer .logo-wrap img {
		width: 55%;
	}

	.company-info-bottom {
		display: none;
	}
}