.thumbnails {
    display: flex;
    margin: 1rem auto 0;
    padding: 0;
    justify-content: center;
}

.thumbnail.is-active {
  /* opacity: 1; */
  border: 3px solid #555;
}

.thumbnail {
    /* opacity: 0.6; */
    width: 70px;
    overflow: hidden;
    list-style: none;
    margin: 0 0.2rem;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: auto;
}

.gallery_slide {
    display: flex;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.gallery_text {
    flex-basis: 50%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 30px 40px;
}

.gallery_pic img {
    object-fit: cover;
    height: 500px;
}

.gallery_text h2 {
    color: #f196a9;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .gallery_slide {
      flex-flow: column-reverse;
    }
    
    .gallery_pic img {max-height: 300px;}
}