/* ======================================
Responsive Image gallery Style rules
======================================*/
.container {
    padding: 40px 5%;
    z-index: 6;
  }
  
  .heading-text {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
  }
  
  .heading-text span {
    font-weight: 100;
  }
  
  /* Responsive image gallery rules begin*/
  
  .image-gallery {
    /* Mobile first */
    display: grid; /*flex;*/
    flex-direction: column;
    gap: 10px;

  }
  
  .image-gallery .column {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  
  .image-item img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
 }
 .modalImage {
    margin: auto;
    display: block;
    width: 100%;

    max-width: 700px;
 }

 .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
 }
 .close:hover,
 .close:focus {
    color: rgb(255, 0, 0);
    cursor: pointer;
 }
  @media only screen and (min-width: 768px) {
    .image-gallery {
      flex-direction: row;
      display:grid;
    }
    .modalImage {
        width: 100%;
     }
  }

