section.galleries {
  width: 100%;
  padding: 20px 80px;
  min-height: 94vh;
}
section.galleries h1 {
  color: #D5A173;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 0.75em;
  text-transform: uppercase;
  text-decoration: underline;
  margin-left: 10px;
}
section.galleries .content {
  width: 100%;
  max-width: 940px;
  margin: 35px auto 40px auto;
}
section.galleries .content .swiper-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
section.galleries .content .swiper-container .swiper-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
section.galleries .content .swiper-container .swiper-wrapper a {
  border: 1px solid #000000;
  padding: 4px 10px;
  color: #000000;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 11px;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease;
}
section.galleries .content .swiper-container .swiper-wrapper a::after {
  display: none;
}
section.galleries .content .swiper-container .swiper-wrapper a._active, section.galleries .content .swiper-container .swiper-wrapper a:hover {
  background-color: #000000;
  color: #ffffff;
}
section.galleries .content .images_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
section.galleries .content .images_grid .more_btn {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-bottom: 100%;
}
section.galleries .content .images_grid .more_btn span {
  position: absolute;
  top: 50%;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 10px;
  line-height: 16px;
  transform: translateY(-50%);
}
section.galleries .content .images_grid .more_btn span::after {
  content: "";
  display: inline-block;
  height: 10px;
  width: 8px;
  margin-left: 5px;
  background-image: url("../img/svg/arrow_thin.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.galleries .content .images_grid .basic {
  width: 100%;
  height: auto !important;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
section.galleries .content .images_grid .basic.hide {
  transform: scale(0);
  display: none;
}
section.galleries .content .images_grid .basic img {
  width: 100%;
  max-height: 220px;
}
section.galleries .content .images_grid .basic span {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 20px;
  width: auto;
  background-color: #ffffff;
  padding: 3px 10px;
  color: #000000;
  font-size: 11px;
  letter-spacing: 1.2px;
  line-height: 17px;
}
section.galleries .content .images_grid .basic:hover img {
  transform: scale(1.1);
}
section.galleries .content .images_grid .basic:nth-child(6) {
  grid-column: 2/4;
  grid-row: 2/3;
}
section.galleries .content .images_grid .basic:nth-child(7) {
  grid-column: 4/5;
  grid-row: 2/4;
  max-height: 460px;
}
section.galleries .content .images_grid .basic:nth-child(8) {
  grid-column: 1/3;
  grid-row: 3/5;
  max-height: 460px;
}
section.galleries .content .images_grid .basic:nth-child(14) {
  grid-column: 3/5;
  grid-row: 5/6;
}
section.galleries .content .images_grid .basic:nth-child(17) {
  grid-column: 2/3;
  grid-row: 6/8;
  max-height: 460px;
}
section.galleries .content .images_grid .basic:nth-child(18) {
  grid-column: 3/5;
  grid-row: 6/8;
  max-height: 460px;
}
section.galleries .content .images_grid .basic:nth-child(19) {
  grid-column: 1/3;
  grid-row: 8/9;
}
section.galleries .content .images_grid .basic:nth-child(22) {
  grid-column: 1/3;
  grid-row: 9/11;
  max-height: 460px;
}
section.galleries .content .images_grid .basic:nth-child(23) {
  grid-column: 3/4;
  grid-row: 9/11;
  max-height: 460px;
}
section.galleries .content .images_grid.images_grid_subpage .basic:nth-child(6) {
  grid-column: 1/3;
  grid-row: 1/2;
}
section.galleries .content .images_grid.images_grid_subpage .basic:nth-child(7) {
  grid-column: 4/5;
  grid-row: 1/3;
}
section.galleries .content .gallery_grid {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 40px;
}
section.galleries .content .gallery_grid > a {
  height: 450px;
  overflow: hidden;
}
section.galleries .content .gallery_grid > a:hover > img {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
section.galleries .content .gallery_grid > a:hover > span {
  bottom: 0;
}
section.galleries .content .gallery_grid > a:hover:nth-child(even) > span {
  top: 0;
}
section.galleries .content .gallery_grid > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-filter: grayscale(0.15) brightness(0.9);
  filter: grayscale(0.15) brightness(0.9);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
section.galleries .content .gallery_grid > a > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  padding: 15px 30px 35px 85px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 5px;
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-transition: all 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition: all 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
section.galleries .content .gallery_grid > a:nth-child(1), section.galleries .content .gallery_grid > a:nth-child(3) {
  margin-top: 0 !important;
}
section.galleries .content .gallery_grid > a:nth-child(even) > span {
  bottom: auto;
  top: -20px;
  padding: 35px 30px 15px 85px;
}
section.galleries .content .gallery_grid > a.basic:nth-child(even) {
  height: 400px;
  margin: auto 0 28px 0;
}
section.galleries .content .gallery_grid > a.basic:nth-child(odd) {
  margin-top: -25px;
}
section.galleries .content .gallery_grid > a.reverse:nth-child(odd) {
  height: 400px;
}
section.galleries .content .gallery_grid > a.reverse:nth-child(even) {
  height: 450px;
  margin-top: -25px;
}
@media (max-width: 1400px) {
  section.galleries .gallery_grid > a {
    height: 350px;
  }
  section.galleries .gallery_grid > a > span {
    padding: 15px 20px 35px 20px;
  }
  section.galleries .gallery_grid > a:nth-child(even) > span {
    padding: 35px 20px 15px 20px;
  }
  section.galleries .gallery_grid > a.basic:nth-child(even) {
    height: 310px;
  }
  section.galleries .gallery_grid > a.basic:nth-child(odd) {
    margin-top: -15px;
  }
  section.galleries .gallery_grid > a.reverse:nth-child(odd) {
    height: 310px;
  }
  section.galleries .gallery_grid > a.reverse:nth-child(even) {
    height: 350px;
    margin-top: -25px;
  }
}
@media (max-width: 1150px) {
  section.galleries .gallery_grid > a {
    height: 235px;
  }
  section.galleries .gallery_grid > a > span {
    padding: 15px 15px 35px 15px;
    letter-spacing: 2px;
  }
  section.galleries .gallery_grid > a:nth-child(even) > span {
    padding: 35px 15px 15px 15px;
  }
  section.galleries .gallery_grid > a.basic:nth-child(even) {
    height: 195px;
  }
  section.galleries .gallery_grid > a.basic:nth-child(odd) {
    margin-top: -15px;
  }
  section.galleries .gallery_grid > a.reverse:nth-child(odd) {
    height: 195px;
  }
  section.galleries .gallery_grid > a.reverse:nth-child(even) {
    height: 235px;
    margin-top: -25px;
  }
}
@media (max-width: 770px) {
  section.galleries .gallery_grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  section.galleries .gallery_grid > a {
    height: 37vw !important;
    margin: 0 !important;
  }
  section.galleries .gallery_grid > a:hover:nth-child(3n+1) > span, section.galleries .gallery_grid > a:hover:nth-child(3n+3) > span {
    bottom: 0 !important;
  }
  section.galleries .gallery_grid > a:hover:nth-child(3n+2) > span {
    top: 0 !important;
  }
  section.galleries .gallery_grid > a:nth-child(3n+1) > span, section.galleries .gallery_grid > a:nth-child(3n+3) > span {
    top: auto !important;
    bottom: -20px !important;
    padding: 15px 15px 35px 15px !important;
  }
  section.galleries .gallery_grid > a:nth-child(3n+2) > span {
    top: -20px !important;
    bottom: auto !important;
    padding: 35px 15px 15px 15px !important;
  }
}
@media (max-width: 700px) {
  section.galleries .gallery_grid > a {
    height: 39vw !important;
  }
}
@media (max-width: 500px) {
  section.galleries .gallery_grid {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-top: 30px;
  }
}
@media (max-width: 450px) {
  section.galleries .gallery_grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  section.galleries .gallery_grid > a {
    height: 55vw !important;
  }
  section.galleries .gallery_grid > a:hover:nth-child(3n+2) > span {
    top: auto !important;
    bottom: 0 !important;
  }
  section.galleries .gallery_grid > a:nth-child(3n+2) > span {
    top: auto !important;
    bottom: -20px !important;
    padding: 15px 15px 35px 15px !important;
  }
}
@media (max-width: 1130px) {
  section.galleries {
    padding: 20px 20px 20px 100px;
  }
}
@media (max-width: 850px) {
  section.galleries .content .images_grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  section.galleries .content .images_grid .basic:nth-child(6) {
    grid-column: 2/4;
    grid-row: 2/3;
  }
  section.galleries .content .images_grid .basic:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/5;
  }
  section.galleries .content .images_grid .basic:nth-child(8) {
    grid-column: 1/3;
    grid-row: 3/5;
  }
  section.galleries .content .images_grid .basic:nth-child(14) {
    grid-column: 2/4;
    grid-row: 5/6;
  }
  section.galleries .content .images_grid .basic:nth-child(17) {
    grid-column: 2/3;
    grid-row: 6/8;
  }
  section.galleries .content .images_grid .basic:nth-child(18) {
    grid-column: 2/4;
    grid-row: 6/8;
  }
  section.galleries .content .images_grid .basic:nth-child(19) {
    grid-column: 1/3;
    grid-row: 8/9;
  }
  section.galleries .content .images_grid .basic:nth-child(22) {
    grid-column: 1/3;
    grid-row: 9/11;
  }
  section.galleries .content .images_grid .basic:nth-child(23) {
    grid-column: 3/4;
    grid-row: 9/11;
  }
  section.galleries .content .images_grid.images_grid_subpage .basic:nth-child(6) {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  section.galleries .content .images_grid.images_grid_subpage .basic:nth-child(7) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  section.galleries .content .gallery_grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 700px) {
  section.galleries {
    padding: 20px 10px;
  }
  section.galleries .content .images_grid {
    grid-gap: 10px;
  }
}
@media (max-width: 500px) {
  section.galleries .content .swiper-container a {
    padding: 2px 5px;
    color: #000000;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 10px;
  }
  section.galleries .content .images_grid {
    grid-template-columns: 1fr 1fr;
  }
  section.galleries .content .images_grid .basic span {
    bottom: 10px !important;
    padding: 3px 5px !important;
    font-size: 8px;
    letter-spacing: 0.8px;
    line-height: 12px;
    transform: translateX(0);
  }
  section.galleries .content .images_grid .basic:nth-child(6) {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  section.galleries .content .images_grid .basic:nth-child(7) {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  section.galleries .content .images_grid .basic:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }
  section.galleries .content .images_grid .basic:nth-child(14) {
    grid-column: auto;
    grid-row: auto;
  }
  section.galleries .content .images_grid .basic:nth-child(17) {
    grid-column: auto;
    grid-row: auto;
  }
  section.galleries .content .images_grid .basic:nth-child(18) {
    grid-column: auto;
    grid-row: auto;
  }
  section.galleries .content .images_grid .basic:nth-child(19) {
    grid-column: auto;
    grid-row: auto;
  }
  section.galleries .content .images_grid .basic:nth-child(22) {
    grid-column: auto;
    grid-row: auto;
  }
  section.galleries .content .images_grid .basic:nth-child(23) {
    grid-column: auto;
    grid-row: auto;
  }
  section.galleries .content .gallery_grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=galleries.css.map */
