@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  box-sizing: border-box;
  font-family: lato;
  font-weight: 300;
}

header {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: #000000;
}
header .logo {
  max-width: 250px;
}
header .menu {
  width: 100%;
}
header .menu button {
  border: 1px solid white;
}
header .menu button i {
  color: white;
}
header .menu nav {
  border: 1px solid white;
  border-radius: 10px;
}
header .menu nav li {
  border-radius: 10px;
}
header .menu nav li a {
  color: white;
  text-decoration: none;
}
header .menu nav li a:hover {
  text-decoration: underline;
}
header .menu nav li:hover, header .menu nav li:focus {
  background-color: white;
}
header .menu nav li:hover a, header .menu nav li:focus a {
  color: black;
}
header article .btn.btn-primary {
  width: 170px !important;
  border: none;
  background-color: #00d739;
  transition: 0.5s;
}
header article .btn.btn-primary:hover, header article .btn.btn-primary:focus, header article .btn.btn-primary:active {
  transform: scale(1.1);
  border: none;
  background-color: #00d739;
}
header article .redes {
  margin: 1.3em 0;
}
header article .redes a i {
  font-size: 1.3em;
  color: white;
  margin: 5px;
}
header article .redes a i:hover {
  color: #BB0000;
}

footer {
  background-color: #000000;
  color: white;
}
footer .maps {
  min-height: 400px;
}
footer .maps .text {
  text-align: start;
}
footer .maps .mapa {
  height: 400px;
  border: 5px solid white;
  overflow: hidden;
  border-radius: 15px;
}
footer .maps .mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
}
footer img {
  max-width: 250px;
}
footer I {
  margin: 5px;
  font-size: 2em;
  color: white;
}
footer I:hover, footer I:focus, footer I:active {
  color: #BB0000;
}
footer a {
  color: white;
  text-decoration: none;
}
footer a:hover, footer a:focus, footer a:active {
  color: #BB0000;
  text-decoration: underline;
}

main img {
  max-height: 400px;
  border-radius: 10px;
  transition: all ease 1s;
}
main img:hover, main img:focus, main img:active {
  filter: brightness(1.5);
  transform: scale(1.03);
}
main .btn.btn-primary {
  max-width: 150px;
}

@media screen and (min-width: 992px) {
  header .container_divs .menu nav {
    border: none;
  }
  header .container_divs .menu nav ul li a {
    padding: 5px;
  }
  header .container_divs .menu nav ul li a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 770px) {
  main {
    max-width: 90%;
  }
  main .col-md-3 {
    margin-top: 15px;
  }
  main .col-md-3 img {
    min-height: 400px;
  }
}/*# sourceMappingURL=galeria.css.map */