

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    font-family: 'GothamBook';
    margin-right: 5px;
}

    .tab.active {
        /* background-color: #f0f0f0;*/
        border-bottom: 2px solid #fbad1a;
        font-weight: bold;
    }

.gallery {
    display: none;
}

    .gallery.active {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

.gallery-item {
    position: relative;
    margin: 5px;
}

.gallery img {
   /* width: 200px;
    height: 150px;*/
    width:100%;
    transition: 1s;
    padding: 5px;
}

    .gallery img:hover {
        filter: drop-shadow(4px 4px 6px gray);
        transform: scale(1.1);
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*  background: rgba(0, 0, 0, 0.5);*/
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: white;
    font-size: 24px;
    cursor: pointer;
}
#tabheading{
    margin:50px 0px;
}
#galleryimages .col-md-4{
    margin-bottom:2em;
}
.header-lowered-zindex {
    z-index: 0 !important;
}