﻿.gallerySection {
  background-color: #F0F6FF;
  padding-top: 8%;
}
.gallerySection__grid a {
  display: block;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .gallerySection__grid a {
    border-radius: 10px;
  }
}
.gallerySection__grid a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.gallerySection__grid a:hover img {
  transform: scale(1.05);
}
.gallerySection__grid .galleryMain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .gallerySection__grid .galleryMain {
    grid-auto-rows: 100px;
    gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .gallerySection__grid .galleryMain {
    grid-auto-rows: 80px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .gallerySection__grid .galleryMain {
    grid-auto-rows: 50px;
    gap: 5px;
  }
}
.gallerySection__grid .galleryMain__box:nth-child(1) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
}
.gallerySection__grid .galleryMain__box:nth-child(2) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 3;
}
.gallerySection__grid .galleryMain__box:nth-child(3) {
  grid-row: span 4/span 4;
  grid-column-start: 3;
  grid-row-start: 1;
}
.gallerySection__grid .galleryMain__box:nth-child(4) {
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 1;
}
.gallerySection__grid .galleryMain__box:nth-child(5) {
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 3;
}
.gallerySection__grid .galleryMain__box:nth-child(6) {
  grid-row: span 4/span 4;
  grid-row-start: 5;
}
.gallerySection__grid .galleryMain__box:nth-child(7) {
  grid-row: span 2/span 2;
  grid-row-start: 5;
}
.gallerySection__grid .galleryMain__box:nth-child(8) {
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 7;
}
.gallerySection__grid .galleryMain__box:nth-child(9) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 5;
}
.gallerySection__grid .galleryMain__box:nth-child(10) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 7;
}
.gallerySection__grid .galleryMain__box:nth-child(n+11) {
  grid-column: auto !important;
  grid-row: span 2 !important;
  width: 100%;
  height: auto;
}
.gallerySection__grid .galleryMain__box:nth-child(n+11) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallerySection__cta {
  text-align: center;
  margin-top: 40px;
}
.gallerySection__cta a {
  color: #000;
  transition: color 0.3s ease;
}
.gallerySection__cta a:hover {
  color: #666;
}
