.gallery-header-container {
    font-family: 'Poppins', sans-serif;
    color: #0d0d0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0 80px 0;
}

.gallery-header {
    font-size: 64px;
    font-weight: 600;
    color: #00b6bd;
}

.gallery-detail {
    font-size: 42px;
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 100px 80px 100px;
}

.gallery-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.image-card {
    margin: 10px;
    border-radius: 4px;
}

.gallery-thumbnail {
    width: 100%;
    height: auto;
}

.gallery-image {
    max-height: 670px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: -200px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border-radius: 4px;
    width: 80%; /* Could be more or less, depending on screen size */
  }

  .modal-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

@media only screen and (max-width: 1279px) {

}

/* Tablet - Portrait */
@media only screen and (min-width: 768px) and (orientation: portrait) {
    .explore {
        padding: 0px 25px;
        min-height: 320px;
    }

    .explore-card {
        margin: 15px;
        padding: 20px;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .gallery-header-container {
        padding: 20px 15px 30px 15px;
    }
    .gallery-header {
        font-size: 50px;
    }
    .gallery-detail {
        font-size: 26px;
    }
    .gallery-container {
        padding: 0px;
    }
    .gallery-row {
        flex-direction: column;
    }
    .menu-category-container {
        flex-wrap: none;
        flex-direction: column;
    }
    .gallery-placeholder {
        display: none;
    }
}