@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&family=Roboto:wght@500&display=swap");

body {
  font: normal 16px sans-serif;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
.center {
  width: 90%;
  margin: auto;
}

.top_cabecera {
  background-image: url(../images/linea.png);
  background-repeat: repeat-x;
  height: 36px;
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  color: #ccc;
  text-align: right;
}
.letrasCabecera {
  margin-right: 30px;
}
.letrasCabecera a {
  color: #ccc;
  text-decoration: none;
}
.top-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-area .nav {
  width: 100%;
  padding: 6px 0;
  background-color: #082a5e;
  color: #fff;
}
.nav .button {
  width: 90%;
  margin: auto;
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

/* BOTON dropdown */
.dropbtn {
  background-color: #082a5e;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropbtn a {
  color: white;
  text-decoration: none;
}
.dropbtn:hover a {
  color: #ffcd00;
  background-color: rgba(255, 255, 255, 0.2);
}
.dropbtn .triangulo {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.dropbtn:hover,
.dropbtn:focus {
  color: #ffcd00;
  background-color: rgba(255, 255, 255, 0.2);
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  /* overflow-x: scroll; */
}

.height65 {
  min-height: 65vh;
  height: 100%;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #1954ac;
  color: #fff;
}
.show {
  display: block;
}

/* GALERIA lightbox */
.gallery-container .box-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

.tz-gallery {
  padding: 40px;
  margin-bottom: 30px;
  background-image: linear-gradient(
    to top,
    #ecedee 0%,
    #eceeef 75%,
    #e7e8e9 100%
  );
  color: #35373a;
  border-radius: 20px;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}
.tz-gallery:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  transition: all 0.3ms ease;
}

.tz-gallery h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
  color: #444;
  font-size: 22px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
}
.tz-gallery h3::before {
  content: "";
  width: 160px;
  height: 3px;
  background: #444;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-80px);
}

.row {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.tz-gallery .lightbox img {
  width: 100%;
  margin-bottom: 30px;
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.tz-gallery .lightbox img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.tz-gallery img {
  border-radius: 4px;
}

.baguetteBox-button {
  background-color: transparent !important;
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .gallery-container {
    border-radius: 0;
  }
}

/* REPORTE DE ACTIVIDADES */
.reporting-container .title {
  color: #ffcd00;
  text-align: center;
  font-size: 30px;
}

.inner-reporting {
  padding: 40px;
  margin-bottom: 30px;
  background-image: linear-gradient(
    to top,
    #ecedee 0%,
    #eceeef 75%,
    #e7e8e9 100%
  );
  color: #35373a;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: wrap;
}
.item-report {
  width: calc(50% - 30px);
  margin: 15px;
  height: 320px;
  transition: 0.2s ease-in-out;
}
.item-report a {
  width: 100%;
  height: 100%;
  color: #444;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.item-report a img {
  height: 90%;
  margin-bottom: 8px;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}
.item-report a img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}
.item-report a .figcaption {
  text-align: center;
  margin-top: 0;
  transition: 0.2s ease-in-out;
  color: inherit;
}
.item-report a:hover .figcaption {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .item-report {
    width: 100%;
    margin: 15px 8px;
  }
  .item-report a img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .inner-reporting {
    padding: 20px;
  }
  .figcaption .text-hidden {
    display: none;
  }
}

/* scroll to top */
.scrollup {
  position: fixed;
  bottom: 5px;
  right: 10px;
  width: 32px;
  height: 32px;
  background-color: #444;
  color: #fff;
  border-radius: 4px;
  line-height: 42px;
  z-index: 20;
}

a.scrollup {
  outline: 0;
  text-align: center;
}

a.scrollup:hover,
a.scrollup:active,
a.scrollup:focus {
  opacity: 1;
  text-decoration: none;
}
a.scrollup i {
  margin-top: 10px;
  color: #fff;
}
a.scrollup i:hover {
  text-decoration: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

/**************************************
***            LOADER             ****
***************************************/
.loader{
  display:flex; align-items: center; justify-content: center;
  height: 100vh; z-index:200; background-image: linear-gradient(
    to top,
    #ecedee 0%,
    #eceeef 75%,
    #e7e8e9 100%
  );
}
.preloader {
  width: 70px;
  height: 70px;
  border-radius: 50%;

  /* border: 10px solid $crverde; */
  /* border-top: 10px solid $cramarillolight; */

  background: linear-gradient(45deg, transparent, transparent 40%, #ffcd00);
  animation-name: girar;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.preloader:before{
  content:'';
  position: absolute;
  top:6px; left:6px; right:6px; bottom:6px;
  background: #f2f2f2;
  border-radius: 50%;
  z-index: 100;
}
.preloader:after{
  content:'';
  position: absolute;
  top:0px; left:0px; right:0px; bottom:0px;
  background: #f2f2f2;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, transparent 40%, #ffcd00);
  z-index: 100;  
  filter: blur(10px);
}

@keyframes girar {
  from {
    transform: rotate(0deg);
    filter: hue-rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

.galery24-row{display: none;}
.galery23-row{display: none;}
.galery22-row{display: none;}
.galery21-row{display: none;}
.galery20-row{display: none;}

