.gallery{
    padding: 80px 0px;
    width: 100%;
    margin: 0 auto;
}

.gallery-item img{
width:100%;
height:320px;
object-fit:cover;
transition:transform .4s ease;
}

.gallery-item:hover img{
transform:scale(1.03);
}

.tabs{
text-align:center;
margin-bottom:40px;
}

.tab-link{
background:none;
margin:0 5px;
cursor:pointer;
font-size:14px;
display: inline-block;
margin-top: 0;
background: #000000;
text-transform: uppercase;
font-family: 'CormorantGaramond-Medium';
letter-spacing: normal;
color: #ffffff;
padding: 10px 5px;
font-size: 18px;
transition: all 0.3 ease ;
}

.tab-link span{
    border: 1px solid #ebe6e2;
    padding: 5px 30px;
}

.tab-link:hover{
background:#c5ac87;
color:#000;
}

.tab-link:hover span{
border-color:#000;
}

.tab-pane{
display:none;
}

.tab-pane.active{
display:block;
}

.lightbox{
display:none;
position:fixed;
z-index:9999;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
align-items:center;
justify-content:center;
}

.lightbox-img{
max-width:90%;
max-height:80%;
}

.lightbox-close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:#fff;
cursor:pointer;
}

.lightbox-prev,
.lightbox-next{
position:absolute;
top:50%;
font-size:40px;
color:#fff;
cursor:pointer;
padding:10px;
}

.lightbox-prev{
left:30px;
}

.lightbox-next{
right:30px;
}