/* Background */
.exhibitions {
  background-color: var(--blue);
  background-image: url(../../images/backgrounds/blue-silver-metal.jpg);

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Title */
.title {
  color: aliceblue;
  margin-bottom: -1.7em;

  

  /* background: linear-gradient( to bottom, rgb(220, 223, 228) 50%, #061237);
	background-clip: text;
  -webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}


/* Main Photo */
.main-photo {
  background-image: url("../../images/exhibitions/Προσεγγίσεις/main.jpg");
}

/* Description */
.color-text-box {
  position: relative;
  background: rgb(255, 192, 0);
  /*background: linear-gradient(-120deg, rgba(255,192,0,1) 40%, rgba(205, 153, 0, 0.879) 100%);
  */
  /* margin-top: 5em;
  width: 140%; */
}
.location {
  margin-top: 5em;
}
/* Διαβασε περισσοτερα */
.more-content {
  display: none;
}
.show-more {
  color: gray;
  cursor: pointer;
  font-weight: 400;
}



/* Photos Grid layout */
.custom-grid {
  display: grid;

  justify-content: start;
  align-items: stretch;
  column-gap: 15px;
  row-gap: 15px;

  /* grid-template-columns: (35% - 15px) 30% (35% - 15px);
  grid-template-rows: auto;
  grid-template-areas: 
    "p1 p2 p2"
    "p3 p4 p5"
    "p3 p6 p7"
    "p8 p8 p9"
    "p10 p11 p9"
    "p12 p13 p13"
    "p14 p14 p14"; */

  grid-template-columns: (20% - 15px) 20% (20% - 15px) 20% (20% - 15px);
  grid-template-rows: repeat(6, 300px);
  grid-template-areas:
    "p12 p1 p2 p2"
    "p12 p11 p2 p2"
    "p9 p14 p3 p10"
    "p9 p14 p3 p8"
    "p7 p6 p6 p8"
    "p4 p5 p13 p13";
}

/* Media Queries */
@media only screen and (max-width: 992px) {

  .left .custom-grid,
  .right .custom-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: 100%;
    grid-template-rows: repeat(14, 300px);
    column-gap: 15px;
    row-gap: 15px;
    grid-template-areas:
      "p1"
      "p2"
      "p3"
      "p4"
      "p5"
      "p6"
      "p7"
      "p8"
      "p9"
      "p10"
      "p11"
      "p12"
      "p13"
      "p14";
  }
  
  .container-title {
    max-width: 100%;
    margin-right: 70%;
   }
}