
.section-title {
	color: #ff3300;
}

p {
	font-size: 15px;
	font-family: "Manrope", sans-serif;
}

.loading {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}
.loading > .loader {
	position: absolute;
	width: 48px;
	height: 48px;
	top: calc(50% - 28px);
	left: calc(50% - 28px);
	border-radius: 50%;
	border: 8px solid gray;
	border-right-color: #ff3300;
	z-index: 2;
	-webkit-animation: loading 1s infinite;
	animation: loading 1s infinite;
}

.privacy-container {
	display: none;
	opacity: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.9);
}

.privacy-container > .privacy {
	position: relative;
	top: 10%;
	width: 80%;
	min-width: 240px;
	height: 80%;
	margin: 0 auto;
	overflow-y: scroll;
	padding: 0 32px;
}
.privacy-container > button {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 24px;
	width: 100px;
}

.open-policy {
	color: #ff3300;
}
.open-policy:hover {
	cursor: pointer;
}

#wrapper.open {
	filter: blur(4px);
	transition: all 0.3s ease-in-out;
}

.about-section {
	position: relative;
	padding: 128px 0;
	padding-bottom: 0;
	width: 100%;
	text-align: center;
	background-color: white;
}
.about-section >.section-description > img {
	width: 150px;
	margin-bottom: 32px;
}
.about-section >.section-description > p {
	text-align: left;
}
.about-section > .section-description > h1 {
	color: #ff3300;
	font-size: 56px;
	font-weight: 300;
	margin-top: 32px;
}
/*SERVICIOS*/
.services-section {
	width: 100%;
	/*
	background: url(../imgs/backgrounds/abstract-01.png) no-repeat bottom;
	background-attachment: fixed;
	background-size: cover;
	*/
	padding: 128px 0;
	padding-bottom: 0;
}
.services-section > .services-list {
	text-align: center;
}
.services-section > .services-list > li {
	display: inline-block;
	position: relative;
	width: 90%;
	min-height: 128px;
	max-height: 128px;
	margin: 32px auto;
	border-radius: 6px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
.services-section > .services-list > li > .background { 
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #ff3300;
	mix-blend-mode: hard-light;
	opacity: 0.8;
	transition: opacity 0.3s ease-in-out;
}
.services-section > .services-list > li.open > .background,
.services-section > .services-list > li:hover > .background {
	opacity: 0;
}
.services-section > .services-list > li.open {
	background-color: white;
	max-height: 1000px;
}
.services-section > .services-list > li:hover {
	background-color: white;
	cursor: pointer;
}
.services-section > .services-list > li > .icon-container {
	top: 0;
	position: absolute;
	z-index: 1;
	height: 88px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 1;
}
.services-section > .services-list > li > .icon-container-white {
	position: relative;
	z-index: 2;
	height: 88px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}
.services-section > .services-list > li.open > .icon-container-white,
.services-section > .services-list > li:hover > .icon-container-white {
	opacity: 0;
}
.services-section > .services-list > li > .description {
	position: relative;
	padding-top: 12px;
	width: 100%;
	height: 32px;
	color:black;
	background-color: white;
	font-size: 12px;
}
.services-section > .services-list > li > p {
	text-align: left;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	width: 90%;
	padding-bottom: 64px;
	margin: 0 auto;
}
.services-section > .services-list > li > p > .font-bold {
	font-weight: 700;
}
.services-section > .services-list > li.open > p {
	opacity: 1;
}

/*PROYECTOS*/
.works-section {
	padding: 128px 0;
	width: 100%;
	text-align: center;
	background-color: white;
}
.works-section > .description-container {
	width: 80%;
	max-width: 600px; 
	margin: 0 auto;
	text-align: center;
	color:#313131;
}
.works-section > .project-list {
	list-style: none;
	font-size: 12px;
	font-weight: 400;
	padding: 24px 0;
}
.works-section > .project-list > li {
	display: inline-block;
	padding: 4px 8px;
	margin: 4px 8px;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid white;
}
.works-section > .project-list > li.selected {
	border-bottom: 1px solid #ff3300;
	color: #ff3300;
}
.works-section > .project-list > li:hover {
	cursor: pointer;
	color: #ff3300;
}
.works-section > .fake-grid {
	width: 100%;
	font-size: 0;
	text-align: left;
	position: relative;
	z-index: -999;
}
.works-section > .fake-grid > .grid {
	width: 50%;
	height: 250px;
	overflow: hidden;
	position: relative;
	display: inline-block;
}
.works-section > .project-showcase {
	width: 100%;
	font-size: 0;
	text-align: left;
	position: relative;
}
.works-section > .project-showcase > .project-container {
	width: 50%;
	height: 250px;
	overflow: hidden;
	position: absolute;
	opacity: 1;
	transition: opacity 0.3s ease-in-out,transform 0.3s ease-in-out;
}
.works-section > .project-showcase > .project-container.hidden {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.works-section > .project-showcase > .project-container > .project-logo {
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
	filter: grayscale(100%);
}
.works-section > .project-showcase > .project-container:hover {
	cursor: pointer;
}
.works-section > .project-showcase > .project-container:hover > .project-logo,
.works-section > .project-showcase > .project-container.hover > .project-logo {
	filter: grayscale(0%);
}
/*CREEMOS*/
.call-section {
	margin-top: 64px;
	padding: 64px 0;
	text-align: center;
	/*
	background: url(../imgs/backgrounds/abstract-01.png) no-repeat center;
	background-attachment: fixed;
	background-size: cover;
	*/
	color: white;
	width: 100%;
}
.call-section > .section-description {
	padding-bottom: 42px;
}
.call-section > .section-description > p {
	color:#cdcdcd;
}
.call-section > .section-description > h1 {
	color:white;
}
/*METODO*/
.method-section {
	padding: 32px 0;
	padding-bottom: 80px;
	margin: 32px 0;
	background-color: #191919;
}
.method-section > h3 {
	position: relative;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	color:white;
	width: 90%;
	padding: 16px 0;
	max-width: 800px;
}
.method-section > h3 > span {
	color:#404040;
	font-size: 72px;
	font-weight: 400;
	padding-right:8px;
}
.method-section > p {
	position: relative;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	color:#cdcdcd;
	width: 90%;
	max-width: 800px;
}
/*OPINIONES*/
.opinion-section {
	margin-top: 64px;
	width: 100%;
	background-color: #191919;
	overflow: hidden;
	text-align: center;
	font-size: 0;
	padding: 32px 0;
	position: relative;
	white-space: nowrap;
}
.opinion-section > .opinion-container {
	left:0;
	width: 100%;
	display: inline-block;
	white-space: normal;
	margin-left:-100%;
	opacity: 0;
	vertical-align: top;
	transition: all 1s ease-in-out;
}
.opinion-section > .opinion-container.show {
	opacity: 1;
}
.opinion-section > .opinion-container:nth-child(3) {
	margin-left: 0;
}
.opinion-section > h1 {
	white-space: normal;
	font-size: 32px;
	color: white;
	width: 90%;
	margin: 0 auto;
	padding: 32px 0;
}
.opinion-section > .opinion-container > p {
	font-size: 16px;
	max-width: 800px;
	color: white;
	width: 90%;
	margin: 0 auto;
}
.opinion-section > .opinion-container > p.opinion {
	padding-bottom: 32px;
	font-size: 12px;
}
.opinion-section > .opinion-container > p.name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: -4px;
}
.opinion-section > .opinion-container > p.puesto {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 2px;
}
.opinion-section > .slider-control-container {
	position: relative;
	height: 42px;
	width: 100%;
}
.opinion-section > .slider-control-container > .slider-point {
	width: 8px;
	height: 8px;
	border: 2px solid #cccccc;
	border-radius: 50%;
	margin: 0 4px;
	margin-top: 4px;
	display: inline-block;
	transition: all 1s ease-in-out;
}
.opinion-section > .slider-control-container > .slider-point:hover {
	cursor: pointer;
	background-color: #ccc;
}
.opinion-section > .slider-control-container > .slider-point.show {
	background-color: white;
	border-color: white;
}
.opinion-section > .slider-control-container > .slider-control {
	position: absolute;
	top: 0;
	width: 18px;
	height: 18px;
	border-right: 4px solid #cccccc;
	border-top: 4px solid #cccccc;
	transition: all 0.3s ease-in-out;
}
.opinion-section > .slider-control-container > .slider-control:hover {
	top:-1px;
	border-width: 6px;
	cursor: pointer;
}
.opinion-section > .slider-control-container > .slider-control.left {
	transform: rotate(-135deg);
	left:16px;
}
.opinion-section > .slider-control-container > .slider-control.right {
	right: 16px;
	transform: rotate(45deg);
}
/*CONTACTO*/
.contact-section {
	padding: 64px 0;
	background-color: white;
}
.contact-section > .direction-container {
	margin-top: 64px;
	width: 250px;
	margin: 0 auto;
}
.contact-section > form {
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.contact-section > form > input,textarea {
	display: block;
	padding: 12px;
	width: 90%;
	max-width: 800px;
	margin: 16px auto;
	font-size: 12px;
	border: 1px solid #cccccc;
}
.contact-section > form > textarea {
	height: 128px;
	resize: vertical;
}
.contact-section > form > .submit-button {
	background-color: #ff3300;
	border: 4px solid #ff3300;
	width: 200px;
	margin:0 auto;
	color:white;
	height: 48px;
	border-radius: 24px;
	letter-spacing: 2px;
	text-align: center;
	box-sizing: border-box;
	transition: all 0.5s cubic-bezier(.57,-0.76,.39,1.69);
	overflow: hidden;
	position: relative;
}
.contact-section > form > .submit-button > p {
	position: relative;
	top:8px;
	font-size: 12px;
	transition: top 0.5s cubic-bezier(.57,-0.76,.39,1.69), font-size 0.3s ease-in-out;
}
.contact-section > form > .submit-button > span.white-border {
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	border-radius: 24px;
	border:4px solid white;
	box-sizing: border-box;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.contact-section > form > .submit-button > span.filler {
	position: absolute;
	left:0;
	top:0;
	width: 0;
	height: 100%;
	background-color: #ff3300;
}
.contact-section > form > .submit-button:hover {
	background-color: white;
	color: #ff3300;
	cursor: pointer;
}
.contact-section > form > .submit-button.sending {
	background-color: white;
	color: #ff3300;
	height: 24px;
	width: 260px;
	border-radius: 12px;
}
.contact-section > form > .submit-button.sending > p {
	top:-18px;
}
.contact-section > form > .submit-button.sending > span.white-border {
	opacity: 1;
}
.contact-section > form > .submit-button.sending > span.filler {
}
.contact-section > form > .submit-button.sended {
	background-color: white;
	color: white;
	height: 48px;
	width: 200px;
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(.57,-0.76,.39,1.69) 0.5s;
}
.contact-section > form > .submit-button.sended > p,
.contact-section > form > .submit-button.error > p {
	top:8px;
	font-size: 14px;
	transition: top 0.5s cubic-bezier(.57,-0.76,.39,1.69) 0.5s;
}
.contact-section > form > .submit-button.sended > span.white-border,
.contact-section > form > .submit-button.error > span.white-border {
	opacity: 1;
}
.contact-section > form > .submit-button.error > span.filler {
	background-color: red;
}
.contact-section > form > .submit-button.error {
	border-color: red;
}
.contact-section > form > .g-recaptcha {
	display: inline-block;
}
/*MAPA*/
.map-container {
	position: relative;
}
.map-container > .direction-container {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.8);
}
.map-container > .direction-container > * {
	width: 100%;
	margin: 16px 0;
}
.map-container > .show-direction {
	z-index: 1;
	opacity: 0;
	display: none;
	position: absolute;
	top: 16px;
	width: 184px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#map {
	width: 100%;
	height: 500px;
}
/**/
.section-description {
	width: 90%;
	max-width: 600px; 
	margin: 0 auto;
	text-align: center;
	color:#313131;
}
.section-description > h1 {
	padding: 16px 0;
	font-size: 32px;
}
.section-description > p {
	color:#555555;
	font-size: 12px;
}

/*MEDIA*/
@media (min-width: 350px) {
	.works-section > .project-showcase > .project-container {
		width: 50%;
		display: inline-block;
	}
	.works-section > .fake-grid > .grid {
		width: 50%;
		display: inline-block;
	}
}
@media (min-width: 460px) {
	.services-section > .services-list > li {
		width: 400px;
		margin: 16px 32px;
		display: inline-block;
		vertical-align: top;
	}
	.about-section > .section-description > h1 {
		font-size: 64px;
		font-weight: 300;
	}
	.section-description > h1 {
		font-size: 48px;
	}
	.section-description > p {
		font-size: 16px;
	}
	.opinion-section > .opinion-container > p.opinion {
		font-size: 16px;
	}
}
@media (min-width: 700px) {
	.about-section >.section-description > img {
		width: 200px;
	}
	.about-section > .section-description > h1 {
		font-size: 86px;
		font-weight: 300;
	}
	.works-section > .project-showcase > .project-container {
		width: 20%;
		display: inline-block;
	}
	.works-section > .fake-grid > .grid {
		width: 20%;
		display: inline-block;
	}
}
@media (min-width: 1600px) {
	.works-section > .project-showcase > .project-container {
		width: 10%;
		display: inline-block;
	}
	.works-section > .fake-grid > .grid {
		width: 10%;
		display: inline-block;
	}
}

@keyframes loading {
	0% { 
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% { 
		-webkit-transform: rotate(0deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes loading {
	0% { 
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% { 
		-webkit-transform: rotate(0deg);
		transform: rotate(360deg);
	}
}