@import url('https://fonts.googleapis.com/css?family=Cabin|Roboto|Roboto+Condensed|Roboto+Mono');

html, body {
	overflow-x: hidden;
}

body {
	background-color: white;
	font-family: 'Roboto', sans-serif;
	color: black;
	font-size: 16px;
	padding: 0;
	margin: 0 auto;
	max-width: 1920px;
	box-shadow: 0px 0px 11px grey;
}

.hidden {
	display: none;
}

.m-10 {
	margin: 10px 0;
}

a {
	color: black;
	text-decoration: none;
}

.clickable {
	cursor: pointer;
}

.not-scrollable {
	overflow-y: hidden;
}

#nav {
	position: fixed;
	width: 100%;
	max-width: 1920px;
	height: 115px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: .5s;
}

#nav.white {
	background-color:  #ffffff;
	box-shadow: 0px 2px 6px 0px rgba(30, 27, 26, 0.12);
}

#menu-desplegable {
	position: absolute;
    top: 0;
    right: 0;
	z-index: 3;
	width: 0;
	overflow: hidden;
	height: 100vh;
    transition: .25s;
	background-color: white;
	box-shadow: -2px 0 6px 0px rgba(30, 27, 26, 0.12);
	padding-top: 25px;
}

#menu-desplegable.negro {
	background-color: black;
}

#menu-desplegable.negro a {
	color: white;
}

#menu-items {
	display: flex;
	flex-direction: column;
}

#menu-items > a {
	font-size: 150%;
    margin: 5px 10px;
    text-decoration: none;
    color: black;
    font-family: 'Roboto Condensed', sans-serif;
	transition: .25s;
	margin-left: 25px;
}

#menu-items > a:hover {
	color: #c60c30;
}

#menu-back {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background-color: black;
	opacity: 0;
	transition: .25;
}

body > section {
	padding-top: 115px;
}

#logo-original, #logo-blanco, #menu {
	margin: 0 70px;
}

.img-menu {
	flex-shrink: 0;
}

.img-menu > img {
	width: 100%;
}

.logo {
	width: 140px;
	height: 54px;
}

p {
	font-family: 'Roboto Mono', monospace;
	line-height: 30px;
}

h1, h2 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 300%;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

em {
	color: #c60c30;
	font-style: normal;
}

.invert {
	filter: invert(100%);
}

.boton-formulario {
	text-align: center;
}

.btn {
	display: inline-block;
	color: white;
	background-color: #c60c30;
	padding: 6px 32px;
	border-radius: 32px;
	margin: 4ex 0;
	font-family: "Roboto";
	font-size: 1rem;
	border: 1px solid transparent;
	cursor: pointer;
	line-height: 30px;
}

.odoo-logo-inline {
	width: 2.4em;
	margin-right: 0.5ex;
}

/* MODAL */
#modal {
    display: none;
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 100px auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: -15px;
    top: -15px;
    border: solid 2px #c60c30;
    border-radius: 100px;
    background-color: white;
    height: 27px;
    width: 27px;
	text-align: center;
	line-height: 27px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#modal-title {
	display: flex;
    justify-content: center;
	margin: 40px 0;
}

#modal-title img {
	max-height: 150px;
}

.modal-body {
    padding: 2px 40px;
}

#modal-text {
	text-align: justify;
}

.modal-below {
	background-color: #c60c30;
	height: 40px;
	margin: 1px;
}

/* Formulario */

#formulario > div > div:first-child > h1 > img {
	width: 40%;
}

#formulario > div {
	overflow: hidden;
}

#formulario > div > div:first-child {
	width: 50%;
	float: left;
}

#formulario > div > div:nth-child(2) {
	width: 50%;
	float: left;
}

#formulario .campo {
	margin: 1rem 0;
}

#formulario .campo label {
	display: block;
	color: #875A7B;
	margin-bottom: 0.5rem;
	text-shadow: white 1px 1px;
}

#formulario .campo input {
	display: block;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	padding: .375rem .75rem;
	font-size: 1rem;
	width: 80%;
	background-color: rgba(255, 255, 255, 0.8);
}

#formulario > div > div:nth-child(2) {
	background-image: url('assets/img/form.jpeg');
	background-position: bottom right;
	background-size: contain;
	background-repeat: no-repeat;
}

#formulario form {
	background-color: rgba(255, 255, 255, 0.3);
	padding-left: 20px;
	padding: 20px 0 20px 0;
}

/* About Odoo */

#about-odoo {
	display: flex;
	align-items: center;
	min-height: auto;
    padding: 20px 0;
    flex-wrap: wrap;
	background-color:  #f3f3f3;
}

#about-odoo > * {
	max-width: 50%;
	width: 50%;
}

#about-odoo header {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#about-odoo h2 {
	text-align: left;
	width: 75%;
}

#about-odoo section {
	padding: 16px;
}

#about-odoo p {
	width: 75%;
    margin: 0 auto;
    font-weight: 400;
}

#about-odoo > div {
	flex-shrink: 0;
}

#about-odoo > div > img {
	width: 100%;
}

/* APPS Integradas */

#apps-integradas {
	display: flex;
    justify-content: center;
	align-items: center;
	padding: 0;
	position: relative;
	background-color: rgba(255, 255, 255, 0.75);
}

#apps-integradas:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/img/empresa.jpeg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: -1;
}

#apps-integradas > header {
	display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#apps-integradas-video section,
#apps-integradas section {
	width: 100%;
}

#apps-integradas h2 {
	color: white;
	margin-top: 2ex;
	margin-bottom: 154px;
}

#apps-integradas ul {
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.sabemos-li {
	list-style: none;
	font-family: "RobotoMono", monospace;
	color:  #c60c30;
	font-size: 30px;
	display: flex;
	align-items: center;
    flex-direction: column;
    width: 25%;
}

.modal-content .sabemos-li {
	width: 100%;
}

.sabemos-li:before {
	content: "";
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
}

.sabemos-li#ventas:before {
	content: url('assets/img/crm.svg') url('assets/img/point_of_sale.svg') url('assets/img/sale.svg');
	padding-bottom: 30px;
	display: flex;
}

.sabemos-li#operaciones:before {
	content: url('assets/img/stock.svg') url('assets/img/mrp.svg') url('assets/img/purchase.svg');
	padding-bottom: 30px;
	display: flex;
}

.sabemos-li#finanzas:before {
	content: url('assets/img/account_invoicing.svg') url('assets/img/account_accountant.svg');
	padding-bottom: 30px;
	display: flex;
}

.sabemos-li#marketing:before {
	content: url('assets/img/mass_mailing.svg') url('assets/img/marketing_automation.svg');
	padding-bottom: 30px;
	display: flex;
}

/* APPS INTEGRADAS VIDEO ODOO 14*/
#apps-integradas-video {
	display: flex;
    justify-content: center;
	align-items: center;
	position: relative;
	background-color: #f3f3f3;
	padding: 20px 0;
}

#apps-integradas-video > header {
	display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* LISTA PROYECTOS */

#clientes h2 {
	padding-top: 2ex;
	margin-top: 0;
}

#lista-proyectos {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	background-color:  white;
}

#proyectos {
	background-color:  #f3f3f3;
	margin: 20px 0;
}

#proyectos h2 {
	max-width: 750px;
	margin: 0 auto;
	padding: 180px 0;
}

#lista-proyectos li {
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 50%;
	height: 300px;
	text-align: center;
	display: flex;
    justify-content: space-around;
    flex-direction: column;
    box-sizing: border-box;
}

#lista-proyectos li .logo {
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
}

#lista-proyectos li > div {
	font-family: 'Roboto', sans-serif;
	width: 100%;
	height: 100%;
}

#lista-proyectos p {
	margin-left: 40px;
	margin-right: 40px;
    font-weight: 400;
	line-height: 20px;
	text-align: justify;
}

.flip-container {
	-webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -ms-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

/* .flip-container:hover .flipper, .flip-container.hover .flipper {
	transform: rotateY(180deg);
} */

.flip-container:hover .back {
	transform: rotateY(0deg);
}
.flip-container:hover .front {
	transform: rotateY(180deg);
}

.flip-container, .front, .back {
	width: 100%;
	height: 100%;
}

.flipper {
	-webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 0.6s;
    -moz-transition: 0.6s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.front, .back {
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg);
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -moz-transform: rotateY(0deg);
    -o-transition: 0.6s;
    -o-transform-style: preserve-3d;
    -o-transform: rotateY(0deg);
    -ms-transition: 0.6s;
    -ms-transform-style: preserve-3d;
    -ms-transform: rotateY(0deg);
    transition: 0.6s;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    left: 0;
}

.front {
	z-index: 2;
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
	display: flex;
    justify-content: center;
    align-items: center;
}

.back {
	-webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	background-color: white;
}

.back p {
	width: 90%;
}

.back > img {
	margin-bottom: 20px;
	max-height: 150px;
}

#lista-proyectos img {
	max-width: 100%;
}

#lista-proyectos li .ecivilis {
	background-image: url('assets/img/proyecto-ecivilis.jpg');
}

#lista-proyectos li .sozee {
	background-image: url('assets/img/proyecto-sozee.jpg');
}

#lista-proyectos li .sqrip {
	background-image: url('assets/img/proyecto-sqrip.jpg');
}

#lista-proyectos li .terra-layer {
	background-image: url('assets/img/proyecto-terra-layer.jpg');
}

/* BLOG */

#blog {
	background-color:  #f3f3f3;
}

.blog-img {
	width: 100%;
	height: 300px;
	background-repeat: no-repeat;
    background-color: white;
    background-position: center;
}

#blog h2 {
	padding-top: 2ex;
	margin-top: 0;
}

#blog-posts {
	font-family: 'Roboto Mono', monospace;
}

#blog-posts ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

#blog-posts li {
	width: 380px;
	text-align: center;
	display: block;
	margin-bottom: 50px;
}

#blog-posts li .category {
	font-size: 75%;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 3ex 0;
}

#blog-posts li .title {
	font-size: 115%;
	width: 30ex;
	margin: 0 auto;
	padding-top: 3ex;
}

#blog-posts li .title > a {
	color: black;
	text-decoration: none;
}

#blog-posts li .date {
	font-size: 85%;
	color:  #999999;
	background: url('assets/img/reloj.png') no-repeat scroll center left;
	padding: 0 26px;
}

#blog-posts li img {
	height: 294px;
}

.tecnologia {
	color: #7f9f5d;
}

.software {
	color: #538dc8;
}

.open-source {
	color: #a677c7;
}

.movilidad {
	color: #cd7b87;
}

/* CONTACTO */

#contacto header h2 {
	padding-top: 180px;
	margin: 0;
}

#mapa {
	width: 50%;
}

#contacto {
	min-height: initial;
	margin-bottom: 155px;
}

.organizacion h2 {
	margin-top: 100px;
	-webkit-margin-before: 100px;
	text-align: left;
	font-size: 100%;
}

#contacto a {
	color:  #c60c30;
	text-decoration: none;
}

#contacto > section {
	margin-top: 150px;
	color: #0c0e0e;
	font-family: 'Roboto Mono', monospace;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
}

#contacto .organizacion {
	flex-grow: 1;
	max-width: 70ex;
	margin-left: 10ex;
}

#contacto .organizacion .direcciones {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;	
}

#contacto [itemprop=address] > [itemprop=name] {
	font-weight: bold;
	margin-bottom: 1ex;
}

#contacto section.emails {
	line-height: 2em;
}

#redes > ul {
	display: flex;
    padding: 0;
}

#redes > ul > li {
	list-style: none;
	margin-right: 16px;
}

.emails span {
	display: inline-block;
	width: 225px;
}

footer {
	background-color: #0c0e0e;
	border-top: 32px solid #f3f3f3;
	font-family: 'Cabin', sans-serif;
	font-size: 85%;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
	font-weight: normal;
	padding: 100px 0;
}

footer a {
	color: inherit;
	text-decoration: inherit;
}

/* RESPONSIVE */

@media only screen and (max-width: 1410px) {
	#lista-proyectos .back > img {
		display: none;
	}
	.back p ~ p {
		display: none;
	}
}

@media only screen and (max-width: 1536px) {
	#blog-posts li {
		min-width: 50%;
	}
	
	.blog-img {
		max-width: 380px;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 1023px) {
	#somos > * {
		flex: 100%;
	}

	#modal {
		padding-top: 0;
	}

	.modal-content {
		width: 100%;
		border: none;
	}

	.close {
		right: 0;
		top: 0;
	}
}

@media only screen and (max-width: 830px) {
	#mapa {
		width: 100%;
	}
	
	#formulario > div {
		overflow: hidden;
	}

	#formulario > div > div:first-child {
		width: 100%;
		float: none;
	}

	#formulario > div > div:nth-child(2) {
		width: 100%;
		float: none,
		height: 100vh;
	}

	#formulario form {
		padding: 0 16px;
	}

	#formulario .campo {
		width: 100%;
	}
	
	#formulario .campo label {
		margin-bottom: 0.25rem;
	}
	
	#formulario .campo input {
		width: 100%;
		box-sizing: border-box;
		
	}
	
	#formulario .btn {
		display: block;
		margin: 3rem auto;
	}
	
	#about-odoo > * {
		width: 100%;
		max-width: 100%;
	}

	#about-odoo p {
		width: 100%;
		margin-top: 1rem;
		text-align: justify;
		hyphens: auto;
		-webkit-hyphens: auto;
	}
	
	#about-odoo h2 {
		text-align: center;
		width: 100%;
	}
	
	#about-odoo p.boton-formulario {
		text-align: center;
	}
	
	.back > p {
		margin-left: 20px !important;
		margin-right: 20px !important;
		font-size: 16px;
		text-align: justify;
		hyphens: auto;
		-webkit-hyphens: auto;
	}
	.back > img {
		display: none;
	}
	
    #blog h2,
    #proyectos h2 {
    	margin: 44px 0 0 0;
		padding: 44px 16px;
	}
	
	#apps-integradas ul {
		display: block;
	}
	
	.sabemos-li {
		width: 100%;
		margin: 4rem 0;
	}
	
	.modal-body {
		padding: 2px 16px;
	}

	.modal-body p {
		font-size: 16px;
		text-align: justify;
		hyphens: auto;
		-webkit-hyphens: auto;		
	}
}

@media only screen and (max-width: 640px) {
	#logo-original, #logo-blanco, #menu {
		margin: 0 35px;
	}
	
	article {
		min-height: initial;
	}
    
    #nav, #video-nav {
    	height: 75px;
    }
	
	#formulario > div > div:nth-child(2) {
		background-size: cover;
		background-position: bottom left;
	}
	
    #somos {
    	margin-top: 0;
    	margin-bottom: 50px;
    }
    
    #somos section {
    	margin-bottom: 25px;
    }
    
    #somos > * {
    	max-width: 100%;
    }
    
    #somos h2, #somos p {
    	width: 90%;
    }
    
    #hacerlo-bien li {
    	width: 50%;
    	margin-bottom: 75px;
    	font-size: 20px;
    }
    
    #lista-proyectos li {
		width: 100%;
		height: 300px;
    }
    
    #blog-posts {
    	padding-top: initial;
    }
    
    #contacto {
    	margin-bottom: initial;
	}
	
	#contacto header h2 {
		padding-top: 0;
	}
    
    #contacto .organizacion {
    	margin: 0 25px;
    }
    
    #contacto h2 {
    	margin-top: 50px;
    	-webkit-margin-before: 50px;
    }
    
    #contacto > section {
    	margin-top: 0;
    }
    
    .direcciones > div {
    	width: 100%;
    }
    
    .emails > div {
    	display: flex;
    	flex-direction: column;
    	margin-bottom: .5em;
    }
}

@media only screen and (max-width: 400px) {
	#lista-proyectos li {
    	height: 360px;
    }
}


/* video de youtube responsive */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 830px) {
	.embed-container {
		width: 614px;
		padding-bottom: 384px;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 640px) and (orientation: landscape) {
	.embed-container {
		padding-bottom: calc(100vh - 75px);
		margin: 0 auto;
	}
}

@media only screen and (max-width: 830px) and (orientation: landscape) {
	.embed-container {
		padding-bottom: calc(100vh - 115px);
		margin: 0 auto;
	}
}
