@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin-ext');
body {
  color: #bdc3c7;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #ffff56;
  color: #fff;
  z-index: 9999;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index {
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  background-image: url(./img/villarport.jpg);
  background-size: cover;
  background-position: center;
}
.productos {
  margin-left: auto;
  margin-right: auto;
}
.productos h2 {
  color: black;
  text-align: center;
  margin: auto;
  font-size: 30px;
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  border-radius: 50%;
  width: 200px;
  height: auto;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  color: #fff;
  margin-left: 10px;
}

ul {
  margin-bottom: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  display: flex;
}

ul li {
  list-style: none;
}

ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #262626;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.5s;
}

ul li.active a {
  color: #b23633;
}

ul li.active a:before,
ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #b23633;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}

ul li.active a:before {
  opacity: 1;
}

ul li a:hover {
  color: #b23633;
}

ul li a:hover:before {
  opacity: 1;
}
section {
  margin-top: -100px;
  margin-right: 100px;
  width: 100%;
  display: block;
  padding-top: 100px;
  overflow: hidden;
  margin-bottom: 50px;
}
.galeria {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.what-we-do {
  color: black;
  font-size: 20px;
  text-align: center;
}
.about {
  color: black;
  font-size: 20px;
  text-align: center;
}
.producto {
  text-align: center;
  flex: 1 0 30%;
  margin: 10px;
}

.producto img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.producto h3 {
  margin-top: 10px;
}
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0 20px 0;
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
}

.redes-sociales a {
  color: #fff;
  font-size: 40px;
  margin-right: 10px;
}

.redes-sociales a:hover {
  color: #ff9800;
}

footer p {
  margin-top: 10px;
}
.container{
  padding: 20px;
}

 .text-justify{
  text-align: justify;
  text-justify: inter-word;
 }


@media screen and (max-width: 1024px){
  .producto {
    flex: 1 0 35%;
  }
  .hidden-xs{
    display: block;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 10px;
  }
  .hidden-xs{
    display: none;
  }
  .index{
    min-height: 50vh;
  }

  .logo img {
    width: 80px;
  }

  .logo h1 {
    font-size: 20px;
  }

  nav ul li {
    margin-left: 10px;
  }
  .container{
    padding: 20px;
  }

  .producto {
    flex: 1 0 50%;
  }

  footer {
    padding: 10px 0;
  }
}