.footer {
	background-color: #1e2833;
	color: #ecf0f1;
	padding-top: 40px;
}

.footer h5 {
	color: #f8f9fa;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
}

.footer h5:after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #3498db;
	position: absolute;
	bottom: -10px;
	left: 0;
}

.footer a {
	color: #bdc3c7;
	text-decoration: none;
	transition: all 0.3s;
}

.footer a:hover {
	color: #3498db;
	padding-left: 5px;
}

.footer ul {
	list-style: none;
	padding-left: 0;
}

.footer ul li {
	margin-bottom: 10px;
}

.footer .container {
	max-width: 1280px;
}

.footer-bottom {
	background-color: #0d1822;
	padding: 20px 0;
	margin-top: 40px;
}

.footer-bottom .footerwidth {
	max-width: 1280px;
	margin: 0 auto
}

.social-icons a {
	display: inline-block;
	width: 36px;
	height: 36px;
	background-color: #34495e;
	color: #ecf0f1;
	text-align: center;
	line-height: 36px;
	border-radius: 50%;
	margin-right: 8px;
	transition: all 0.3s;
}

.social-icons a:hover {
	background-color: #3498db;
	color: #fff;
	transform: translateY(-3px);
}

.payment-methods img {
	height: 30px;
	margin-right: 5px;
	margin-bottom: 10px;
	transition: all 0.3s;
}

.payment-methods img:hover {
	filter: grayscale(20%);
	transform: translateY(-3px);
}

.newsletter-form .form-control {
	background-color: #34495e;
	border: none;
	color: #ecf0f1;
}

.newsletter-form .form-control:focus {
	box-shadow: none;
	border-color: #3498db;
}

.newsletter-form .btn {
	background-color: #3498db;
	color: white;
	border: none;
}

.newsletter-form .btn:hover {
	background-color: #2980b9;
}

.footer .contact-info{
border-top: 1px solid #304355;padding-top: 10px;
}
.footer .contact-info i {
    width: 20px;
    color: #3498db;
    margin-right: 10px;
}
.footer .contact-info div {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

@media (min-width: 1000px) {
.footer .footabout{padding-right:40px;}
}

@media (max-width: 767px) {
	.footer h5 {
		margin-top: 25px;
	}

	.footer h5:after {
		left: 50%;
		transform: translateX(-50%);
	}
	.footer .contact-info{display: none}
}

.back-to-top {
	transform: scale(0);
	overflow: hidden;
	display: inline-flex;
	border-radius: 50%;
	position: fixed;
	bottom: 75px;
	right: 2rem;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background-color: #EDEDED;
	justify-content: center;
	align-items: center;
	z-index: 1050;
	border: 2px #EDEDED solid;
}

.back-to-top.show {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.back-to-top .height-scroll {
	background-color: #2D3142;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	height: var(--height);
}