footer {
	font-family: 'Inter', sans-serif;
	background:#2D2D2D;
	position: relative;
	font-weight: 300;
	float:left;
	width: 100%;
}
footer h5{
	color:var(--color-white);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 50px;
}
footer p{
	font-size: 13px;
	font-weight: 400;
}
footer p strong{
	font-size: 14px;
	color: var(--color-white);
	font-weight: 600;
	display: block;
	padding-bottom: 10px;
}
footer a, footer .footer-bottom-text a strong{
	color: var(--color-white);
}
footer a:hover, footer .footer-bottom-text a:hover strong, footer ul li a.active{
	color: var(--color-orange);
}
footer .footer-map-link a{
	font-weight: 700;
	text-decoration: underline;
}
footer .footer-column{
	display: flex;	
}
footer .footer-column ul{
	min-width: 100px;
}
footer ul li{
	list-style: none;
}
footer ul li a{
	display: inline-block;
	padding: 7px;
	font-size: 14px;
	position: relative;
}
footer ul li a:hover, footer ul li a.active{
	padding: 7px 7px 7px 15px;
}
footer ul li a:before{
	position: absolute;
	content:"";
	width: 2px;
	height: 0px;
	left: 0;
	background: var(--color-orange);
	top: 10%;
	opacity: 0;
	transition: all .6s ease;
}
footer ul li a:hover:before, footer ul li a.active:before{
	height: 80%;
	opacity: 1;
	transition: all .6s ease;
}
footer .footer-bottom-text{
	padding: 40px 0px;
	font-size: 13px;
}

footer ul.footer-socials li {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-white);
	transition: all .3s ease;
}

footer ul.footer-socials li a {
	background-color: rgba(255, 255, 255, 0);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	font-size: 20px;
	color: var(--color-white);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:0px;
	transition: all .35s ease;
}
footer ul.footer-socials li a:before{
	display: none;
}
footer ul.footer-socials li a.facebook:hover{
	background: #4267B2;
	transition: all .35s ease;
}
footer ul.footer-socials li a.twitter:hover{
	background: #00ACEE;
	transition: all .35s ease;
}
footer ul.footer-socials li a.youtube:hover{
	background: #FF0000;
	transition: all .35s ease;
}
footer ul.footer-socials li a.linkedin:hover{
	background: #0077b5;
	transition: all .35s ease;
}
footer .divider{
	background: rgba(255,255,255,0.2);
	width: 100%;
	height: 1px;
	clear: both;
	margin-top: 50px;
}

a.whatsappp{
	position: fixed;
	z-index: 999;
	right: 5px;
	bottom: 10px;
}

.mobile-socials{
	display: none;
	position: fixed;
	top: 30%;
	right: -50px;
	z-index: 999;
	transition: all .35s ease;
}
.scroll .mobile-socials{
	right: 0px;
	transition: all .35s ease;
}
.mobile-socials.active{
	right: 40px;
	transition: all .35s ease;
}
.mobile-socials .mobile-share-icon{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	background: var(--color-orange);
	border-radius: 5px 0px 0px 5px;
	cursor: pointer;
}
.mobile-socials ul{
	position: fixed;
	top: 30%;
	right: -50px;
	transition: all .35s ease;
}
.mobile-socials.active ul{
	right: 0px;
	border:1px solid rgba(0,0,0,0.2);
	border-right: none;
	transition: all .35s ease;
}
.mobile-socials ul li{
	list-style: none;
}
.mobile-socials ul li a{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	color: var(--color-blue);
	transition: all .35s ease;
}
.mobile-socials ul li a:hover{
	color: var(--color-white);
	transition: all .35s ease;
}
.mobile-socials ul li a.facebook:hover{
	background: #4267B2;
	transition: all .35s ease;
}
.mobile-socials ul li a.twitter:hover{
	background: #00ACEE;
	transition: all .35s ease;
}
.mobile-socials ul li a.youtube:hover{
	background: #FF0000;
	transition: all .35s ease;
}
.mobile-socials ul li a.linkedin:hover{
	background: #0077b5;
	transition: all .35s ease;
}

.mobile-footer{
	position: fixed;
	left: 0;
	width: 100%;
	bottom: -70px;
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: space-between;
	background: var(--color-orange);
	transition: all .35s ease;
}
.scroll .mobile-footer{
	bottom: 0px;
	transition: all .35s ease;
}
.mobile-footer a{
	padding: 10px 0px;
	width: 20%;
	font-size: 9px;
	font-weight: 500;
	color:#FFF;
	border-right:1px solid rgba(255,255,255,0.3);
	text-align: center;
	transition: all .35s ease;
	background: var(--color-orange);
}
.mobile-footer a img{
	height: 25px;
	display:block;
	margin: 0 auto;
	margin-bottom: 5px;
}
.mobile-footer a:last-child{
	border-right: none;
	background: #3fbb28;
}
.mobile-footer a:hover{
	transition: all .35s ease;
	background: var(--color-blue);
}

.tooltip-inner {
    color: var(--color-white);
    background: var(--color-blue);
    border-radius: 5px;
	opacity: 1;
}
.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
    border-top-color: var(--color-blue);
}

@media (max-width:1200px) {	
	footer ul.footer-socials li a{
		height: 30px;
		width: 30px;
		font-size: 16px;
	}
}

@media (max-width:767px) {
	footer{
		padding-bottom: 80px;
	}
	footer .footer-bottom-text{
		padding: 10px 0px;
		text-align: center !important;
	}
	footer .footer-column{
		display: block;
	}
	.mobile-socials{
		display: block;
	}
	a.whatsappp{
		display: none;
	}
	.mobile-footer{
		display: flex;
	}
}

