@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Kaushan Script', cursive;
	font-family: 'Raleway', sans-serif;
}

body {
	display: flex;
	flex-direction: column;
  align-items: center;
  background-color: #000;
}

@keyframes fondo {
  0%   {background-image: url(img/back1.jpg);}
  25%  {background-image: url(img/back2.jpg);}
  50%  {background-image: url(img/back2.jpg);}
  100% {background-image: url(img/back1.jpg);}
}

header {
	width: 100%;
	max-width: 1380px;
	height: 650px;
	background-image: url(img/back2.jpg);
	background-position: top center;
	background-size: cover;
	position: relative;
	animation-name: fondo;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

.logo {
    width: 300px;
    height: 200px;
    background-color: rgba(0, 0, 0, .1);
    margin-left: 10%;
    padding: 25px;
    position: relative;
    display: flex;
  	align-items: center;
  	justify-content: center;

}
/*
.logo:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0px;
  bottom: 0px;
  right: 0px;
  border-width: -40px 400px;
  border-style: solid;
  border-top-color: rgba(0, 0, 0, 0.0);
  border-right-color: rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(0, 0, 0, 0.7);
  border-left-color: rgba(0, 0, 0, 0.0);
} */
 
 .logo img {
 	width: 100%;
 	height: auto;
 	filter: drop-shadow(4px 2px 6px rgba(0, 0, 0, 0.75));
 }

 .info {
 	position: absolute;
 	bottom: 0px;
 	width: 100%;
 	padding: 20px 0px;
 	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0) 100%);
 	display: flex;
 	align-items: space-between;
}

.frase {
	width: 250px;
	max-width: 30%;
	margin-left: 20%;
	font-family: 'Raleway', sans-serif;
	font-weight: 200;
	font-size: 32px;
	line-height: 35px;
	color: #fff;
	text-align: right;
	text-shadow: 2px 2px 4px #000000;
	text-transform: uppercase;
}

.divisor {
	width: 2px;
	height: 150px;
	margin: 0px 25px;
	background-color: #A7843B;
}

.texto {
	width: 800px;
	max-width: 50%;
	margin-right: 50px;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #fff;
	text-align: justify;
	text-shadow: 2px 2px 4px #000000;
}

main {
	width: 100%;
	max-width: 1380px;
	background-color: black;
	padding: 50px;
}

.empresas {
	width: 100%;
	display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: space-between;
  align-items: center;
  justify-content: center;
}

.empresa {
  width: 140px;
  height: 140px;
  /**background-color: darkgray;**/
  margin: 10px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empresa img {
	width: 100%;
	height: auto;
	filter: grayscale(1);
	transition: 0.3s;
}

.empresa img:hover {
	 -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transform-origin: bottom;
	filter: grayscale(0);
}


.empresa h3 {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 12px;
	color: #9D9FA1;
	padding: 10px 0px;
}

.empresa a {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 12px;
	color: #B07910;
}

hr {
	width: 80%;
	margin-left: 10%;
	border-top: 1px solid darkgray;
	border-bottom: 0px;
	margin-top: 25px;
	margin-bottom: 25px;
}

.location {
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.location img {
	width: 45px;
	height: auto;
	filter: grayscale(1);
	transition: 0.3s;
}

.location img:hover {
	-webkit-transform: scale(1.1);
  transform: scale(1.1);
  transform-origin: bottom;
	filter: grayscale(0);
}


.location a {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #E3E3E3;
	padding: 5px;
}

.location p {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 12px;
	color: #E3E3E3;
}

footer {
	width: 100%;
	max-width: 1380px;
	padding: 20px;
	background-color: #232323;
	display: flex;
  justify-content: center;
  align-items: center;
  
}

footer p {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 12px;
	color: #D0D0D0;
	line-height: 15px;
	text-align: center;
}

footer a {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: gray;
}

@media only screen and (max-width: 800px) {

header {
	height: 750px;
}

  .logo {
    width: 200px;
    height: 150;
    background-color: rgba(0, 0, 0, .1);
    margin-left: 10%;
    padding: 20px;
}

 .info {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-content: center;
}

.frase {
	width: 800px;
	max-width: 80%;
	margin-left: 10%;
	font-size: 25px;
	line-height: 30px;
	text-align: center;
}

.divisor {
	width: 80%;
	height: 2px;
	margin: 10px 10%;
	background-color: #A7843B;
}

.texto {
	width: 800px;
	max-width: 80%;
	margin: 10px 10%;
	font-size: 14px;
	text-align: justify;
}

.empresa {
  width: 100px;
  height: 110px;
  margin: 20px 15px 10px 15px;
}

}