/* Background */
.exhibitions {
  background-color: var(--grey);

  background-image: url(../../images/backgrounds/green-glass.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;

  /* 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 {
  border: 1px solid grey;
  background-image: url("../../images/exhibitions/MONASTIRIA/9_monasteries-main-photo.JPG");
}

.extras {
  margin-top: 6em;
  margin-bottom: -4em;
}

.vtour:hover, .catalogue:hover {
  opacity: 0.4;
}

/* Ble koutaki */

.vtour, .catalogue {
  /* border: 1px solid grey; */
  background-color: rgb(80, 150, 190);
  color: white;
  border-radius: 0;
  width: 80px;
  height: 85px;
  margin-left:0.6vw;
  margin-top: -0.9vw;
}

.vtour a, .catalogue a {
  color: white;
  text-align: left;
  font-size: 0.8rem;
  text-decoration: none;
  display: block;
  margin: auto;
  margin-top: 48%;
}
.location {
  margin-top: 6.8em;
}
.location .divider {
  display: block;
  width: 80%;
  border-top: 1px solid grey;
  margin-top: 0;
  margin-bottom: 0.5em;
  opacity: 0.6;
}

/* Description */
.color-text-box {
  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;
}

.color-text-box p {
  color: rgb(74, 50, 50);
}



/* Press */

.press h2 {
  text-align: left;
 text-align: center;
  font-size: large;
  text-decoration: none;
  font-family: -windows, windowsSystemFont, Segoe UI, 'Roboto', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color:rgb(49, 51, 223);
}

.artist-names {
  margin-left: 0;
}

.press img {
  display: block;
  margin: auto;
}

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

  justify-content: end;
  align-items: normal;
  column-gap: 25px;
  row-gap: 25px;

  /* grid-template-columns: (35% - 15px) 30% (35% - 15px);
  grid-template-rows: auto;
  grid-template-areas: 
    "p1 p1 p2"
    "p3 p4 p5"
    "p6 p4 p7"
    "p8 p8 p8"
    "p9 p10 p10"
    "p9 p11 p12"; */
  grid-template-columns: calc(25% - 15px) 25% calc(25% - 15px);
  grid-template-rows: repeat(3, 410px);
  grid-template-areas:
    "p1 p2 p3"
    "p4 p5 p6"
    "p7 p7 p7";
}

/* 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(7, 300px);
    column-gap: 15px;
    row-gap: 15px;
    grid-template-areas:
      "p1"
      "p2"
      "p3"
      "p4"
      "p5"
      "p6"
      "p7";
  }

  .extras {
    justify-content: center;
  }
}

@media only screen and (max-width: 770px) {
  .press h2 {
    text-align: center;
  }
}