/*footer*/
.footer {
    background-color: #f2f7fd;
    margin: 0;
}
.footer-top {
    padding: 80px 0;
}
.footer .footer-logo {
    margin-bottom: 20px;
    display: block;
}
.footer .footer-logo img {
    max-width: 180px;
}
.footer .footer-description {
    color: var(--custom-text-secondary-color);
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 20px;
    margin: 0;
    display: block;
}
.contact-form {
    padding-bottom: 15px;
}
.contact-form:last-child{
    padding-bottom: 0;
}
.footer .footer-title {
    padding-bottom: 20px;
    color: var(--custom-text-color);
    font-weight: 700;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
}
.footer .contact-form .contact-des .email a:hover{
   color: var(--custom-color);
   cursor: pointer;
}
.footer-pages ul li {
    padding-bottom: 10px;
}
.footer-pages ul li i {
    font-size: 12px;
    color: var(--custom-text-secondary-color);
}
.footer-pages ul li a {
    color: var(--custom-text-secondary-color);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
}
.footer-pages ul li:hover a,
.footer-pages ul li:hover i {
	color: var(--custom-color);
}
.contact-info i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: var(--custom-color);
    text-align: center;
}
.contact-form p, .contact-form a {
    color: var(--custom-text-secondary-color);
    font-size: 14px;
    margin-bottom: 0;
}
.row.footer-after {
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #d1d1d1;
}
.footer-after .copyright-text {
    padding: 0;
    margin: 0;
    color: var(--custom-text-secondary-color);
    font-size: 14px;
    cursor: pointer;
}
.footer-policies-pages {
	justify-content: flex-end;
	margin: 0;
}
.footer-after .footer-policies-pages li a:hover,
.footer-after .copyright-text:hover{
  color: var(--custom-color);
}
.footer-after .footer-policies-pages li a {
    color: var(--custom-text-secondary-color);
    font-size: 14px;
    padding: 0 10px;
}
.footer-after ul li::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background-color: var(--custom-text-secondary-color);
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
@media(max-width: 1600px){
	.footer .footer-logo img {
    	max-width: 150px;
	}
}
@media(max-width: 1200px){
	.footer-top {
    	padding: 50px 0;
	}
}
@media(max-width: 991px){
	.footer-after .copyright-text {
    	text-align: center;
    	padding-bottom: 5px;
	}
	.footer-top {
    	padding: 30px 0;
	}
    .footer-policies-pages {
        justify-content: center;
    }
}
@media(max-width: 575px){
	.footer .footer-logo img {
    	max-width: 140px;
	}
	.footer-after .copyright-text,
	.footer-after .footer-policies-pages li a {
		font-size: 13px;
	}
	.footer-after .footer-policies-pages li a {
	    padding: 0 5px;
	}
	.footer-logo {
		margin-bottom: 30px;
	}
}
@media(max-width: 480px){
  .footer .footer-logo img {
    	max-width: 120px;
	}
}

/*social icon*/
.social-icon ul {
    margin: 0;
}
.footer .social-icon {
    margin-bottom: 0;
}
.footer .social-icon ul li i {
    font-size: 15px;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    line-height: 40px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}
.footer .social-icon ul li i:hover{
  transform: scale(1.2);
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.linkdin i{
    background: #0077b5;
}
.linkdin i:hover{
    color: #0077b5 !important;
}
.google i{
    background: #e60023;
}
.google i:hover{
    color: #e60023 !important;
}
.insta i{
    background: #FCAF45;
}
.insta i:hover{
    color: #FCAF45 !important;
}
.facebook i{
    background: #1877f2;
}
.facebook i:hover{
    color: #1877f2 !important;
}
.twitter i{
    background: #1DA1F2;
}
.twitter i:hover{
    color: #1DA1F2 !important;
}
.footer .footer .social-icon ul li:hover .social-icon{
   display: block;
}