@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;
}

.index {
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  background-image: url(./assets/logicom\ .jpg);
  background-size: cover;
  background-position: center;
}
.productos {
  margin-left: auto;
  margin-right: auto;
}
.productos h2 {
  color: black;
  text-align: center;
  margin-bottom: 50px;
  font-size: 30px;
}
.logo {
  display: block;
  float: left;
}

.logo img {
  border-radius: 50%;
  width: 150px;
  left: 20px;
  height: auto;
  position: absolute;
  top: 118px;
}

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

header {
  position: fixed;
  width: 100%;
  background: rgb(25, 71, 191);
  color: #fff;
  padding: 20px 20px 0 20px;
  z-index: 9999;
  min-height: 160px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  margin-top: 105px;
  max-height: 0;
  float: right;
  margin-right: 30px;
}

ul li{
  list-style: none;
}

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

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


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

ul li a:hover:before {
  opacity: 1;
}

.menu-icon {
  cursor: pointer;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
  top: 85px;
  right: 20px;
}

header .menu-icon .navicon {
  background: white;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: white;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}
header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


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 20%;
  margin: 10px;
  height: 240px;
}

.producto img {
  max-width: 100%;
  max-height: 240px;
}

.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%;
}
footer a {
  color: #fff;
  text-decoration: none;
}

.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 (min-width: 768px) {
 header ul li {
    float: left;
    padding: 6px 0;
  }
  header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  header .menu-icon {
    display: none;
  }
  .menu-icon{
    top: 101px;
  }
}

@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;
  }
  .container {
    padding: 20px;
  }

  .producto {
    flex: 1 0 40%;
  }

  footer {
    padding: 10px 0;
  }
}
