<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Arranges the grid in a 3 column layout
The first column is 1/2 of the width of the grid and holds one image square
The second and third columns are 1/4 of the width of the grid and both hold two image squares
Border radius is applied around the corners of the grid
*/
#wp-photo-grid {
  width: 95%;
  height: auto;
  border-radius: 38px;
  overflow: hidden;
  margin: 0 auto;
}

#wp-photo-grid .photo-grid-container {
  display: grid;
  grid-template-columns: 50% 25% 25%;
  grid-template-rows: 1fr 1fr;
  border-radius: 38px;
  align-items: center;
  justify-items: center;
  column-gap: 15px;
  row-gap: 15px;
}

#wp-photo-grid .photo-grid-container .photo-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  justify-self: left;
  height: 100%;
}

/* snaps the image to the top of the grid */
#wp-photo-grid .photo-grid-container .photo-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-self: left;
}

#wp-photo-grid .photo-grid-container .photo-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-self: left;
}

#wp-photo-grid .photo-grid-container .photo-4 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  justify-self: right;
}

#wp-photo-grid .photo-grid-container .photo-5 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  justify-self: right;
}

#wp-photo-grid .photo-grid-container .photo-grid-item {
  position: relative;
  width: 100%;
}

#wp-photo-grid .photo-grid-container .photo-grid-item:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

#wp-photo-grid .photo-grid-container img {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 700px) {  
  #wp-photo-grid .photo-grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    column-gap: 0;
  }
}

.swiper-zoom-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.elementor-lightbox-image {
  grid-column: 1 / 3;
  grid-row: row 1;
  justify-self: center;
  align-self: flex-start;
}

.lightbox-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  grid-row: row 2;
  grid-column: 1 / 3;
  justify-self: center;
  align-self: center;
}

#leftControl {
  grid-column: 1 / 2;
  grid-row: row 2;
  justify-self: center;
  align-self: center;
  margin-top: 10px;
  width: 64px;
}

#rightControl {
  grid-column: 2 / 3;
  grid-row: row 2;
  justify-self: center;
  align-self: center;
  margin-top: 10px;
  width: 64px;
}

#leftControl::before,
#rightControl::before {
  font-size: 64px !important;
  color: white !important;
  cursor: pointer;
  background: #8eb9cc;
  border-radius: 40px;
}

#leftControl::before {
  padding: 3px 7px 3px 0px;
}

#rightControl::before {
  padding: 3px 0px 3px 7px;
}</pre></body></html>