* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin:0;
	padding:0;
	background:#fff;
	font-family:'Montserrat',sans-serif;
	font-size:12px;
}

/* Contenedor principal */
.main-content {
	position: relative;
	z-index: 1;
	margin-top: 0;
}
ul {
	margin:0;
	padding:0;
	text-decoration:none;
	list-style:none;
}
li {
	padding:0;
	margin:0;
}
nav {
	text-align:center;
	width:100%;
	position:fixed;
	top:0;
	left:0;
	height:80px;
	overflow:hidden;
	background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
	z-index: 1000;
}
nav ul {
	text-align:center;
}
nav ul li {
	display:inline-block;
}
nav ul li a {
	color:#fff;
	display:inline-block;
	padding:1em 3em;
	text-decoration:none;
	border-bottom:2px solid #fff;
	transition-property:all .2s linear 0s;
	-moz-transition:all .2s linear 0s;
	-webkit-transition:all .2s linear 0s;
	-o-transition:all .2s linear 0s;
	font-size:16px;
}
nav ul li a:hover {
	color: #34B484;
}
/* Estilos para el logo */
.logo {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
}

.logo-img {
	width: 120px;
	height: 50px;
	border-radius: 10%;
	object-fit: cover;
	border: 2px solid #000000;
	transition: all 0.3s ease;
}

.logo-img:hover {
	border-color: #333;
	transform: scale(1.1);
}

/* Estilos para el texto MENU */
.menu-text {
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	margin-right: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

/*styling open close button*/
.button {
	display: flex;
	align-items: center;
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	font-size: 30px;
}
.button a {
	text-decoration:none;
}
.btn-open:after {
	color:#fff;
	content:"\f0c9";
	font-family:"FontAwesome";
	transition-property:all .2s linear 0s;
	-moz-transition:all .2s linear 0s;
	-webkit-transition:all .2s linear 0s;
	-o-transition:all .2s linear 0s;
}
.btn-open:hover:after {
	color:#34B484;
}
.btn-close:after {
	color:#fff;
	content:"\f00d";
	font-family:"FontAwesome";
	transition-property:all .2s linear 0s;
	-moz-transition:all .2s linear 0s;
	-webkit-transition:all .2s linear 0s;
	-o-transition:all .2s linear 0s;
}
.btn-close:hover:after {
	color: #34B484;
}
/*overlay*/
.overlay {
	display:none;
	position:fixed;
	top:0;
	height:100%;
	width:100%;
	background:#333;
	overflow:auto;
	z-index:999;
}
.wrap {
	color:#e9e9e9;
	text-align:center;
	max-width:90%;
	margin:0 auto;
}
.wrap ul.wrap-nav {
	border-bottom:1px solid #575757;
	text-transform:capitalize;
	padding:150px 0px 100px;
}
.wrap ul.wrap-nav li {
	font-size:20px;
	display:inline-block;
	vertical-align:top;
	width:24%;
	position:relative;
}
.wrap ul.wrap-nav li a {
	color:#34B484;
	display:block;
	padding:8px 0;
	text-decoration:none;
	transition-property:all .2s linear 0s;
	-moz-transition:all .2s linear 0s;
	-webkit-transition:all .2s linear 0s;
	-o-transition:all .2s linear 0s;
}
.wrap ul.wrap-nav li a:hover {
	color:#f0f0f0;
}
.wrap ul.wrap-nav ul {
	padding:20px 0;
}
.wrap ul.wrap-nav ul li {
	display:block;
	font-size:13px;
	width:100%;
	color:#e9e9e9;
}
.wrap ul.wrap-nav ul li a {
	color:#f0f0f0;
}
.wrap ul.wrap-nav ul li a:hover {
	color:#34B484;
}
.social {
	font-size:25px;
	padding:20px;
}
.social p {
	margin:0;
	padding:20px 0 5px 0;
	line-height:30px;
	font-size:13px;
}
.social p a {
	color:#34B484;
	text-decoration:none;
	margin:0;
	padding:0;
}
.social-icon {
	width:80px;
	height:50px;
	background:#e9e9e9;
	color:#333;
	display:inline-block;
	margin:0 20px;
	transition-property:all .2s linear 0s;
	-moz-transition:all .2s linear 0s;
	-webkit-transition:all .2s linear 0s;
	-o-transition:all .2s linear 0s;
}
.social-icon:hover {
	background:#34B484;
	color:#f0f0f0;
}
.social-icon i {
	margin-top:12px;
}
@media screen and (max-width:48em) {
	nav {
		height: 95px;
	}

	.wrap ul.wrap-nav>li {
		width:100%;
		padding:20px 0;
		border-bottom:1px solid #575757;
	}
	.wrap ul.wrap-nav {
		padding:30px 0px 0px;
	}
	nav ul {
		opacity:0;
		visibility:hidden;
	}
	
	/* Logo centrado en responsive */
	.logo {
		display: block;
		left: 50%;
		right: auto;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
	}

	.logo-img {
		width: 90px;
		height: 36px;
		object-fit: contain;
	}
	
	.menu-text {
		font-size: 12px;
		margin-right: 8px;
	}
	
	.button {
		right: 20px;
		font-size: 25px;
	}
	.social {
		color:#c1c1c1;
		font-size:25px;
		padding:15px 0;
	}
	.social-icon {
		width:100%;
		height:50px;
		background:#fff;
		color:#333;
		display:block;
		margin:5px 0;
	}
	
}

@media screen and (max-width: 480px) {
	nav {
		height: 90px;
	}
	
	.logo {
		left: 50%;
		right: auto;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
	}

	.logo-img {
		width: 78px;
		height: 32px;
		object-fit: contain;
	}
	
	.menu-text {
		font-size: 10px;
		margin-right: 5px;
	}
	
	.button {
		right: 15px;
		font-size: 20px;
	}
}
.content {
	width:100%;
	margin-top:200px;
	font-size:20px;
	color: #333;
	text-align: center;
}

.about-layout {
	padding-top: 80px;
	background: #f3f3f3;
}

.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 360px;
}

.feature-row.reverse .feature-text {
	order: 2;
}

.feature-row.reverse .feature-image {
	order: 1;
}

.feature-text {
	background: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 72px;
}

.feature-text h2 {
	font-size: 42px;
	font-weight: 300;
	color: #2e2e2e;
	margin-bottom: 18px;
}

.feature-text p {
	font-size: 15px;
	line-height: 1.7;
	color: #5b5b5b;
	margin-bottom: 14px;
	max-width: 560px;
}

.feature-btn {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 24px;
	border: 1px solid #d1d1d1;
	border-radius: 999px;
	text-decoration: none;
	color: #555;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.feature-btn:hover {
	background: #2e2e2e;
	color: #fff;
	border-color: #2e2e2e;
}

.feature-image img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
}

.items-block {
	text-align: center;
	padding: 90px 24px 35px;
}

.items-block h3 {
	font-size: 34px;
	font-weight: 300;
	color: #2e2e2e;
	margin-bottom: 12px;
}

.items-block p {
	font-size: 14px;
	color: #666;
	max-width: 780px;
	margin: 0 auto;
	line-height: 1.6;
}

.about-footer {
	text-align: center;
	padding: 16px 24px 36px;
	font-size: 12px;
	color: #7a7a7a;
}

@media screen and (max-width: 960px) {
	.feature-row {
		grid-template-columns: 1fr;
	}

	.feature-row.reverse .feature-text,
	.feature-row.reverse .feature-image {
		order: initial;
	}

	.feature-text {
		padding: 40px 28px;
	}

	.feature-text h2 {
		font-size: 34px;
	}

	.feature-image img {
		min-height: 300px;
	}
}

@media screen and (max-width: 480px) {
	.about-layout {
		padding-top: 90px;
	}

	.feature-text {
		padding: 28px 20px;
	}

	.feature-text h2 {
		font-size: 30px;
	}

	.feature-text p {
		font-size: 14px;
	}

	.feature-btn {
		font-size: 11px;
		padding: 9px 18px;
	}

	.items-block h3 {
		font-size: 28px;
	}
}