    *{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	.footer {
		background-color: #2C3E50;
		font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		color: whitesmoke;
		padding: 70px 0;
	}
	.container{
		max-width: 1170px;
		margin: auto;
	}
	
	
	.footer-col ul{
		list-style: none;
	}
	.footer-col ul li:not(:last-child){
		margin-bottom: 10px;
	}
	.footer-col ul li a{
		text-decoration: none;
		font-size: 16px;
		/* text-transform: capitalize; */
		font-weight: 200;
		display: block;
		transition: all 0.3s ease;
		color: #c2c2c2;
	}
	.footer-col ul li a:hover{
		color: white;
		padding-left: 8px;
	}
	.footer-col .social-links a{
		display: inline-block;
		height: 40px;
		width: 40px;
		margin:0 10px 10px 0;
		background-color: #434547;
		border-radius: 50%;
		text-align: center;
		line-height: 40px;
		color: whitesmoke;
		transition: all 0.5s ease;
	}
	.footer-col .social-links a:hover{
		color: #2C3E50;
		background-color: whitesmoke;
	}
	.row{
		display: flex;
		flex-wrap: wrap;
	}
	.footer-col{
		width:24%;
		padding: 0 0px;
	}
	.footer-col h4{
		width: 32%;
		color: whitesmoke;
		text-transform: capitalize;
		margin-bottom: 35px;
		font-weight: 500;
		position: relative;
	}
	.footer-col h4::before{
		content: "";
		position: absolute;
		left: 0;
		bottom: -10px;
		background-color: #B22222;
		height: 2px;
		box-sizing: border-box;
		width: 100px;

	}
	@media (max-width: 1000px){
		.footer-col{
			width: 50% !important; 
			margin-bottom: 30px;
		}
	}
	@media (max-width: 487px){
		.footer-col{
			width: 100% !important;
		}
	}