/* 12columns.css | Created by Katherine Kato | Released under the MIT license */
/* GitHub: https://kathykato.github.io/12columns/ */

.loader_gif{
  position: absolute;
  width: 150px !important;
  height: 150px !important;
  margin:150px 0 0 55px;
  border-radius: 50%;
}
.container {
  width: 100%;
}

.grid {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
}
.grid > [class*=column-] {
  display: block;
}

.first {
  order: -1;
}

.last {
  order: 12;
}

.align-top {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-bottom {
  align-items: end;
}

@media (min-width: 48rem) {

}
@media (min-width: 62rem) {

}
@media (min-width: 75rem) {

}
@supports (display: grid) {
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  .grid > [class*=column-] {
    margin: 0;
    max-width: 31.6%;
  }

  @media (min-width: 48rem) {

  }
  @media (min-width: 62rem) {

  }
  @media (min-width: 75rem) {

  }
}
* {
  box-sizing: border-box;
}
/**::before, *::after {
  box-sizing: border-box;
} */

.gallery ul li {
  margin: 0 1.5rem 0 0;
  list-style-type: none;
}

.gallery a {
  color: #787878;
  text-decoration: none;
  transition: all 0.2s ease;
}
.gallery a:hover {
  color: #2e2e2e;
}
.gallery a.active {
  color: #2e2e2e;
}
.gallery nav li {
  font-size: 1.25rem;
  list-style-type: none;
}
.gallery nav li:nth-child(2) {
  margin: 0;
}

#highlight {
  color: #ea8478;
  font-size: 1.25rem;
}

.gallery {
  padding: 0 0 4rem 0;
}

.img-container {
  width: 100%;
  height: auto;
  cursor: pointer;
  overflow: hidden;
  list-style-type: none;
}
.img-container:hover .img-content-hover {
  display: block;
}

.gallery img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.gallery img:hover {
  transform: scale(1.05);
}

.title {
  color: #2e2e2e;
  font-size: 1.5rem;
  font-weight: 700;
}

.category {
  font-size: 1.5rem;
  color: #787878;
}

.img-content {
  display: none;
}

.social, .copyright {
  margin: 1rem;
}

.social li {
  display: inline-block;
}

@supports (display: grid) {
  .gallery .grid {
    grid-gap: 1rem;
  }
}
@media (min-width: 62rem) {
.gallery  nav ul {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
.gallery  img:hover {
    transform: none;
  }

  .img-container {
    height: 100%;
  }
  .img-container:hover .img-content-hover {
    display: none;
  }

  .img-content {
    display: block;
    padding: 1rem 0;
  }
}
