@font-face{
   font-family: "Gotham Medium";
   src: url('../fonts/GothamMedium.ttf') format('truetype');
}

@font-face{
   font-family: "Roboto Condensed";
   src: url('../fonts/RobotoCondensed-Regular.ttf') format('truetype');
}

body, html{
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/* Vista Index*/
.sec{
  color: white;
  background-color: black;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec a{
  background: transparent;
  border:2px solid white;
  color: white;
  border-radius: 30px;
  padding: 6px 12px;
  font-family: 'Gotham Medium';
  font-size: 16px;
  text-decoration: none;
  animation: fadein 4s;
}

.sec a:hover{
  background: #b6ccd7;
  border:2px solid #b6ccd7;
  color: black;
}

.botones{
  display: flex;
  justify-content: space-around;
}

/* Vista Pagina Principal*/
.titulo{
  font-family: 'Roboto Condensed';
  font-size: 18px;
  width: 275px;
}

.sub-titulo{
  font-family: 'Gotham Medium';
  font-size: 16px;
  color: #B6CCD7;
}

.slg{
  font-family: 'Roboto Condensed';
  margin: 0;
  font-size: 60px;
}

.texto{
  font-family: 'Roboto Condensed';
  font-size: 16px;
  line-height: 1.4em;
}

.lista{
  font-family: 'Roboto Condensed';
  font-size: 16px;
  line-height: 1.4em;
  margin: 0 0 25px 75px;
  width: 470px;
}

.dark{
  color: white;
  background-color: black;
  height: 70%;
  display: flex;
  align-items: center;
}

.slogan{
  margin-left: 15%;
  animation: fadein 5s;
  width: 300px;
}

.sec1{
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec2{
  height: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about{
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 65%;
}

.sec3{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
}

.services{
  margin: 0;
  width: 75%;
}

.servicio{
  display: flex;
  flex-flow: row wrap;
}

.contact{
  width: 75%;
  margin-top: 50px;
}

.logotipo{
  height: 120px;
  margin: 25px 0;
}

.logotipo_blanco{
  height: 180px;
  margin-bottom: 80px;
  margin-right: 25px;
  animation: fadein 4s;
}

.isotipo{
  height: 62px;
  margin-top: 15px;
}

.pimg{
  background-image: url('../img/Building.jpg');
  min-height: 543px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

hr{
  border-width: 1px;
  border-style: solid;
  color: gray;
}

ul{
  list-style: square outside none;
}



@keyframes fadein {
  from{
    opacity: 0;
  }

  to{
    opacity: 1;
  }
}

@media screen and (max-width: 1000px){
  .sec2{
    height: auto;
  }

  .lista{
    margin: 0;
  }

  .pimg{
    min-height: 50%;
    background-attachment: scroll;
    background-size: cover;
  }

  .about{
    margin: 10%;
  }
}

@media screen and (min-width: 700px){
  .slogan{
    width: 500px;
  }
}
