body {
  margin: 0px;
  background-color: #fff;
  max-width: 100vw;
  overflow-y: auto;
  overflow-x: hidden;
}
a {
  outline: none !important;
  box-shadow: none !important;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Bold.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  font-weight: bold;
}
.sombra {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.36);
}
.centrado {
  display: flex;
  justify-content: center;
  align-items: center;
}
.centrado-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

/* Barra de navegación */

.navbar_boton {
  color: #333;
  background-position: bottom;
  background-image: -webkit-linear-gradient(0deg, #009045, #70a83b, #a3bd31);
  background-size: 0% 0%;
  margin-bottom: 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-family: var(--fuente-texto);
  font-size: 1.6rem;
  padding-left: 1.4rem !important;
  padding-right: 1.4rem !important;
}
.navbar_boton:hover {
  color: #000;
  background-size: 100% 5%;
  animation-name: ani_btn;
  animation-duration: 1.4s;
}
@keyframes ani_btn {
  0% {
    background-size: 0% 5%;
  }
  15% {
    background-size: 100% 5%;
  }
  37% {
    background-size: 78% 5%;
  }
  50% {
    background-size: 100% 5%;
  }
  64% {
    background-size: 91% 5%;
  }
  70% {
    background-size: 100% 5%;
  }
  100% {
    background-size: 100% 5%;
  }
}

/* Banner */
#header {
  position: relative;
  margin-bottom: 5rem;

  /* background-image: url(/img/SGI/hero-section-sgi.webp);
    background-repeat: round; */
}
.img-banner {
  width: 100%;
  filter: drop-shadow(5px 5px 10px #444);
}
div.titulo {
  margin-top: 25%;
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 16%;
  left: 0px;
}
div.titulo > div {
  cursor: pointer;
  user-select: none;
  border: solid 13px #fff;
  display: inline-block;
  padding: 0.7em 3em;
  border-radius: 28.4rem;
  filter: drop-shadow(3px 2px 3px rgba(0, 0, 0, 0.6));
  animation-duration: 8s;
}
h1.titulo {
  /*box-shadow: none;*/
  font-family: var(--fuente-titulos);
  font-weight: bold;
  font-size: 5.5rem;
  /* text-shadow: 2px 1px 3px #121212dd; */
  color: #fff;
  display: inline-block;
  line-height: 1.1em;
}

main {
  position: relative;
  max-width: 114rem;
  margin: auto;
  padding: 0rem 1.5rem;
}

/* Mapa */

main > img {
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
}

.titulo-items {
  display: none;
  width: 100%;
}

.contenedor-items {
  display: none;
  width: 100%;
  margin-top: 5rem;
}

.titulo-items > img {
  width: 100%;
}

.contenedor-items > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 0rem 2rem;
}

.contenedor-items img {
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 800px) {
  main > img {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    display: none;
  }
  .titulo-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .contenedor-items {
    display: grid;
    grid-template-rows: auto;
    row-gap: 2rem;
    width: 100%;
  }
}
