.text-center {
	text-align: center;
}

.about {
	width: 100%;
	height: auto;
	display: flex;
	padding-top: 100px;
}
.about .about-izq {
	width: 50%;
	height: 100%;
	padding-right:90px;
	text-align: justify;
}

.about .about-izq h2 {
	text-transform: uppercase;
	margin-bottom: 20px;
}

.about .about-der {
	width: 50%;
	height: 100%;
}

.about .about-der i {
	font-size: 35px;
	color:#2d93ad;
}

.about .about-der hr {
	height: 3px;
	background:#7d7c84;
	width: 200px;
	margin-top: 20px;
}

.about .about-der .quote {
	margin-top: 50px;
	width: 70%;
	font-weight: 600;
	font-size: 20px;
}

.about .about-der .signature {
	width: 280px;
}

/* GALLERY */

.gallery {
	display: block;
	width: 100%;
	overflow-x: scroll;
	box-sizing: border-box;

}

.gallery::-webkit-scrollbar {
  width: 0;
}

.gallery .gallery-container {
	-ms-overflow-style:none;
}
.gallery .gallery-container {
	display: block;
	white-space: nowrap;
}


.gallery .gallery-container .img {
	display: inline-block;
	height: 300px;
}

.gallery .img img {
	width:450px;
	height: 100%;
	object-fit: cover;
}


.content .skills-wrap {
	width: 50%;
	height: auto;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

.content .skills-wrap .row {
	height: auto;
}

/* BOOKS WRAP */

.content .books-wrap {
	width: 60%;
	height: auto;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

.content .books-wrap .row {
	height: auto;
}

.content .books-wrap .row img {
	width: 160px;
	height: 210px;
	padding:15px;
}

@keyframes gallery {
	from{transform: translateX(-1000px);}
	to {transform: translateX(1300px);}
}

@media screen and (max-width: 830px) {
	.about {
		flex-direction: column;
	}
	.about .about-der {
		width: 100%;
	}
	.about .about-der p {
		width: 100%;
	}
	.about .about-izq {
		width: 100%;
		padding-right: 0px;
	}
	.content .skills-wrap .row {
		text-align: center;
	}
}