/* Styles for tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.logo-slider .swiper .swiper-wrapper{
    display: flex;
    align-items: center;
}
.logo-slider .swiper .swiper-wrapper .swiper-slide{
    filter: grayscale(1);
    opacity: 0.5;
}
.hero-image img{
    max-width: 400px;
    margin: -100px -100px 0 0;
    filter: brightness(1.2);
}
.hero-image{
    animation: animateY 1s infinite alternate;
}
@keyframes animateY{
    0%{
        transform: translateY(-5px);
    }
    100%{
        transform: translateY(5px);
    }
}
.minfo__nav__wrapper .logo img{
    animation: animateZ 1.2s infinite alternate;
}
@keyframes animateZ{
    0%{
        transform: scale(.6);
    }
    100%{
        transform: scale(1);
    }
}
.tablink {
    border: 1px solid var(--greyBlack);
    background-color: transparent;
    padding: 8px 0px;
    cursor: pointer;
    margin: 0;
    width: 100%;
}


.tablink.active {
    background-color: var(--themeColor);
    box-shadow: 0 0 20px var(--themeColor);
    border: 1px solid var(--themeColor);
    color: #fff;
}
.tablink:hover {
    background-color: var(--themeColor);
    border: 1px solid var(--themeColor);
    color: #fff;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

/* Slideshow buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}