* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

body{
	background: #1f393bb0;
	text-transform: capitalize;
}

.navbar-brand{
	font-family: cursive;
	font-size: 25px;
}

.capp{
	cursor: pointer;
}

.capp:hover{
	transition: all 0.5s ease;
	transform:scale(1.05);
}

.container-fluid{
	max-width: 1400px;
	margin: 0 auto;
}

.footer{
	background-color: #24262B;
	padding: 0;
}

.footer-row{
	display: flex;
	flex-wrap: wrap;
}

.contenedor-footer{
	margin: 6px 4%;
}

.contenedor-footer ul{
    padding: 0px;
}

.footer-links h4{
	font-size: 22px;
	color: #fff;
	margin-bottom: 24px;
	font-weight: 600;
	border-bottom: 2px solid #00C3FF;
	display: inline-block;
}

.footer-links ul li a{
	font-size: 18px;
	text-decoration: none;
	color: #888888;
	display: block;
	margin-bottom: 4px;
	transition: all .3s ease;
}

.footer-links ul li a:hover{
	color: #fff;
	padding: 1px 6px;
}

.social-link a{
	display: inline-block;
	min-height: 40px;
	width: 40px;
	background-color: rgb(255, 255, 255, 0.2);
	margin: 0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #fff;
	transition: all .5s ease;
}

.social-link a:hover{
	background-color: #00C3FF;
}

@media(max-width:510px){
	.footer-row{
		text-align: center;
	}

	.footer-links{
		width: 100%;
		margin-bottom: 30px;
	}
}

@media(max-width:576px){
	.container-targetas{
		display: grid;
    	grid-template-columns: 2fr 2fr;
	}
}