.center img{
    margin: auto;
    text-align: center;
}
.center h1,.center h2,.center h3,.center h4,.center h5,.center h6 {
    text-align: center;
}
.center p {
    text-align: center;
}

h2 a {
    font-family: 'Poppins', sans-serif;
}

h3 a {
    font-family: 'Poppins', sans-serif;
}
h4 a {
    font-family: 'Poppins', sans-serif;
}
h5 a {
    font-family: 'Poppins', sans-serif;
}


/* Modals */

.photo-gallery-modal a {
    position: relative;
    display: block;
  }
  .photo-gallery-modal a:before,
  .photo-gallery-modal a .pgm-content {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out,
      transform 0.25s ease-in-out;
  }
  .photo-gallery-modal a:before {
    content: "";
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .photo-gallery-modal a .pgm-content {
    z-index: 2;
    transform: translateY(-30px);
    padding: 15px;
  }
  .photo-gallery-modal a:hover:before,
  .photo-gallery-modal a:hover .pgm-content {
    opacity: 1;
    visibility: visible;
  }
  .photo-gallery-modal a:hover .pgm-content {
    transform: translateY(0);
  }
  .photo-gallery-modal a .pgm-content p {
    color: #fff;
  }
  .photo-gallery-modal .pgm-btn a{
    display: inline-block;
  }