/* FOOTER */
.footer {
	width: 100%;
	background: var(--dark-blue-alt);
   display: flex;
	
 }

 .inner-footer {
	 width: 100%;
	 margin: auto;
	 display: flex;
	 flex-wrap: wrap;
	 box-sizing: border-box;
	 justify-content: center;
 }

.footer-items {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
	width: 50%;

	box-sizing: border-box;
	color: #fff;
}

.footer--logo img{ 
	margin-top: 1rem;
	width: 35px;
	height: 35px;
}

.footer-img-branding { 
	width: 150px;
	margin: 1rem 0;
}
.footer-items p {
	font-weight: 200;
   color: #fff;
	font-size: 16px;
	text-align: center;
   margin: 0 0 1rem 0;
}


.bar{ 
 
   height: 80%;
   color: white;
   background-color: white;
   width: 1px;
}



.footer ul {
	list-style: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.5px;	
   text-align: center;
   display: flex;
   padding: 0;

 }

 .footer ul a {

   margin: 0 1rem;
	text-decoration: none;
	outline: none;
	color: #fff;
	transition: 0.3s;
}

.footer ul a:hover {
	color: var(--purple-light);
}

.footer ul li {
	
	margin: 0;
	height: 25px;
}

.footer li i {
	margin-right: 20px;
}

.social-media {
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 20px;
}

.social-media a {
	text-decoration: none;
}

.social-media i {
	height: 25px;
	width: 25px;
	margin: 10px 10px;
	padding: 4px;
	color: #fff;
	transition: 0.5s;
}

.social-media i:hover {
	transform: scale(1.5);
}

.footer-bottom {
	padding: 10px;
	background:var(--dark-blue-alt);
	color: #fff;
	font-size: 12px;
	text-align: center;
	width: 100%;
}

/* for tablet mode view */

@media screen and (max-width: 1275px) {
	.footer-items {
		width: 70%;
	}


}

/* for mobile screen view */

@media screen and (max-width: 670px) {
	.footer-items {
		width: 100%;

	}
	.footer--logo img{ 
		margin-top: 1rem;
		width: 30px;
		height: 30px;
	}
	
	.footer-img-branding { 
		width: 100px;
		margin: 1rem 0;
	}
	.footer-items p {
		font-size: 12px;

	}
	.footer ul {
		display: block;
		font-size: 14px;
		
	}
	.footer ul li { 
		margin: .5rem;
	}

	
	
}


/* you can toggle the media screen view accordingly by changing the (max-width: px) to your convenience */

/* Thanks to Computer Conversations */