/* Footer component styles (moved out of css/custom.css) */

/************************************/
/*** 	 	Footer css		  ***/
/************************************/

.footer-box{
	padding: 40px 0 0;
}

/* Footer header/newsletter removed per request */

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	width: 10%;
	max-width: 155px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-social-links h3{
	font-size: 24px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 12px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
    border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links ul li a i{
	font-size: 18px;
	color: inherit;
}

.footer-links{
	margin-left: 2.604vw;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul{
	list-style: ;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: 14px auto;
	text-transform: capitalize;
	color: var(--white-color);
	line-height: normal;
	margin-bottom: 20px;
	padding-left: 24px;
}

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

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

.footer-links.footer-contact-details{
	margin-left: 0;
}

.footer-contact-item{
	display: flex;
	margin-bottom: 20px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.footer-contact-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item:hover .icon-box::before{
	transform: scale(1);
}

.footer-contact-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.footer-contact-item-content{
	width: calc(100% - 55px);
}

.footer-contact-item-content h3{
	font-size: 24px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-contact-item-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-contact-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover{
	color: var(--accent-color);
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	padding: 15px 0;
	margin-top: 25px;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-privacy-policy{
	text-align: right;
}

.footer-privacy-policy ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li{
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	border-right: 1px solid var(--dark-divider-color);
	padding-right: 20px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover{
	color: var(--accent-color);
}

.footer-privacy-policy ul li:last-child{
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.footer-privacy-policy ul li:last-child::before{
	display: none;
}

.footer-privacy-policy ul li a{
	color: inherit;
}

/* Responsive footer tweaks copied from css/custom.css so footer is fully self-contained */

@media only screen and (max-width: 991px){
	.footer-box{
		padding: 50px 0 0;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.footer-logo{
		margin-bottom: 15px;
	}

	.footer-social-links{
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-social-links h3{
		font-size: 22px;
		margin-bottom: 15px;
	}

	.footer-links{
		margin-left: 0;
	}

	.footer-links h3{
		font-size: 22px;
		margin-bottom: 15px;
	}

	.footer-links ul li{
		margin-bottom: 15px;
	}

	.footer-contact-item-content h3{
		margin-bottom: 5px;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 30px;
	}

	.footer-privacy-policy ul li{
		margin-right: 10px;
		padding-right: 10px;
	}
}

@media only screen and (max-width: 767px){
	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3,
	.footer-social-links h3{
		font-size: 20px;
	}

	.footer-links ul li{
		margin-bottom: 12px;
	}

	.footer-copyright{
		padding: 15px 0;
		margin-top: 0px;
	}

	.footer-copyright-text{
		text-align: center;
	}

	.footer-privacy-policy{
		text-align: center;
		margin-top: 10px;
	}
}
