*{
  --main-color-blue: #4557f4;
  --minor-color-blue: #49acee;
}
.gallery {
  margin: 0 10vW;
}

#index-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 10px;
  grid-template-areas: "p p p" "h3 h3 h3" "img1 img2 img3" "img4 img5 img6" 
  "img7 img8 img9" "img10 img11 img12" "img13 img14 img15" "img16 img17 img18";
}

#index-gallery .gallery-img {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

#index-gallery p {
  grid-area: p;
}
#index-gallery h3 {
  grid-area: h3;

}
#index-gallery .img1 {
  grid-area: img1;
  /* background-image: url(/borowka-v2/img/104b/thumbs/img1.jpg); */
}
#index-gallery .img2 {
  grid-area: img2;
}
#index-gallery .img3 {
  grid-area: img3;
}
#index-gallery .img4 {
  grid-area: img4;
}
#index-gallery .img5 {
  grid-area: img5;
}
#index-gallery .img6 {
  grid-area: img6;
}
#index-gallery .img7 {
  grid-area: img7;
}
#index-gallery .img8 {
  grid-area: img8;
}
#index-gallery .img9 {
  grid-area: img9;
}
#index-gallery .img10 {
  grid-area: img10;
}
#index-gallery .img11 {
  grid-area: img11;
}
#index-gallery .img12 {
  grid-area: img12;
}
#index-gallery .img13 {
  grid-area: img13;
}
#index-gallery .img14 {
  grid-area: img14;
}
#index-gallery .img15 {
  grid-area: img15;
}
#index-gallery .img16 {
  grid-area: img16;
}
#index-gallery .img17 {
  grid-area: img17;
}
#index-gallery .img18 {
  grid-area: img18;
}
/* gallery img titles*/ 
.gallery-img div {
  width:100%;
  height:100%;
  background-color: black;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-img a {
  text-decoration: none;
  text-transform: uppercase;

}
.gallery-img div:hover {
  width:100%;
  height:100%;
  background-color: black;
  opacity: 0.5;
  transition: all ease-in-out 150ms;
}

/* ----JS new div when click*/
.img-window {
  width: 100vw;
  height: 100vh;
  background-color: rgba(1,1,1,0.75);
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.img-window img {
  max-height: 80vh;
  max-width: 80vw;
}
/* next img */
.img-btn-next, .img-btn-prev{
  display: block;
  position: fixed;
  top: 48vh;
  padding: 6px 10px;
  z-index: 10;
  border-radius: 10px;
  background-color: black;
  color: wheat;
  cursor: pointer;
  
}
.img-btn-next:hover, .img-btn-prev:hover {
  opacity: 0.8;
}

.img-btn-prev, .img-btn-next {
  font-size: 40px;
}

/*------TABS--------*/
.tabs-container {
  width: 95%;
  margin: 0 auto;
  position: relative;
  display: flex;
  min-height: 85vh;
  overflow: hidden;
  border-radius: 10px;
}


.tab-content-background {
  background-color: rgba(1,1,1,0.5);
  border-radius: 5px;
  width: 100%;
  height: 75vh;
  min-height: 300px;
  z-index: 1;
  overflow: auto;

}
.tab-content-background a {
float: right;
margin: 5%;
}
.tab-content-background a:hover {
transform: scale(1.1);
}
.tab-content-background a img{
  border-radius: 15%;
}


/*-----MEDIA--------*/

@media (max-width: 420px) {
  #index-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 5px;
    grid-template-areas: "p p" "h3 h3" "img1 img2" "img3 img4""img5 img6 ";
  }
  .tab-content-background {
    overflow: scroll;
  }
  label {
    font-size: 12px;
  }
}
@media (max-height: 620px) {
  .tab-content-background {
    overflow: scroll;
  }
}