@charset "utf-8";

.gallery-tab {
    border: 4px solid #a48c3f;
    background-color: #a48c3f;
    color: #a48c3f;
    cursor: pointer;
    display: block;
    font-size: 1.125em;
    margin-top: 1em;
    margin-bottom: 1em;
    position: relative;
    text-align: center;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
    z-index: 1;
}

.gallery-tab:hover{
    /* border: 16px solid #a48c3f; */
    
}

.gallery-tab:hover .gallery-tab-inner{
    opacity: 0.6;
    background-color: black;
}

.gallery-tab:hover .gallery-title{
    color: white;
}

.gallery-tab:hover .gallery-date{
    color: white;
}

.gallery-tab:hover svg .gallery-icon {
    fill: white;
}

.gallery-tab:hover .gallery-tab-inner-primary{
    opacity: 0.9;
    border-color: #a48c3f;
}


.gallery-tab-inner{
    position:absolute;
    border-style: solid;
    border-color: white;
    border-width: 8px;
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 34px);
    padding-top: calc(100% - 42px);
    background-color: white;
    opacity: 0.88;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

.gallery-tab-inner-primary{
    position:absolute;
    border-style: solid;
    border-color: white;
    border-width: 8px;
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 34px);
    padding-top: calc(100% - 42px);
    background-color: black;
    opacity: 0.5;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

.gallery-title-div{
    margin: auto;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

.gallery-title-div p {
    margin: 0;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-title{
    font-size: 2.1em;
    letter-spacing: -.06em;
    color: black;
    line-height: 92%;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

.gallery-title-primary{
    font-size: 2.1em;
    letter-spacing: -.05em;
    color: white;
    line-height: 92%;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

@media screen and (max-width: 767px) {
    .gallery-title{
        font-size: 3.5em;
    }
    
    .gallery-title-primary{
        font-size: 3.5em;
    }
}

@media screen and (min-width: 1500px) {
    .gallery-title{
        font-size: 3.5em;
    }
    
    .gallery-title-primary{
        font-size: 3.5em;
    }
}

.gallery-image-div{
    margin: auto;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

.gallery-image-div img{
    width: 100%;
    height: 100%;
    transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

.gallery-icon-div{
    position:absolute;
    display: block;
    width: 100%;
    height: 30px;
    margin: auto;
    padding-top: 26px;
}
.gallery-desc-div{
    position:absolute;
    display: block;
    width: 100%;
    height: 30px;
    margin: auto;
    padding-top: 56px;
}

.gallery-desc{
    text-transform: uppercase;
    color: #a48c3f;
    font-weight: 300;
    font-size: 0.85em;
}

@media screen and (max-width: 768px) {
/*
    .gallery-desc{
        font-size: 1.3em;
    }
*/
    .gallery-desc-div{
/*        padding-top: 65px;*/
        display: none;
    }
}

.gallery-date-div{
    position:absolute;
    display: block;
    width: 100%;
    height: 30px;
    margin: auto;
    bottom: 30px;
}

.gallery-date{
    color: #a48c3f;
    font-weight: 300;
    font-size: 1em;
}

@media screen and (max-width: 768px) {
    .gallery-date{
        font-size: 1.5em;
    }
}

.gallery-icon{
    height: 30px;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .gallery-icon{
        height: 45px;
    }
}