
.inner-wrapper .hero {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    height: 250px;
}

.inner-wrapper .hero .darken {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.gallery {
    margin-top: 20px;
    margin-bottom: 20px;
}

.gallery .tab-title {
    text-align: center;
    font-family: 'contralto-small';
    font-size: 20px;
}

.gallery .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
    gap: 20px;
}

.gallery .tabs .tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 2px solid #061d1d;
    background: white;
    width: 160px;
    text-align: center;
}

.gallery .tabs .tab.active {
    background: #061d1d;
    color: white;
}

.gallery .tabs .tab img {
    width: 100%;
    height: auto;

    background-image: var(--tab-bg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.gallery .tabs .tab.active img {
    background-image: var(--tab-bg-active);
}

.gallery .tabs .tab span {
    font-family: 'contralto-small';
    font-size: 16px;
}

.gallery .tabs-content .tab-content {
    display: none;
    position: relative;
}

.gallery .tabs-content .tab-content.active {
    display: block;
}

.gallery .tabs-content .tab-content .arrows {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.gallery .tabs-content .tab-content .arrows .arrow {
    cursor: pointer;
}

.gallery .tabs-content .tab-content .arrows .arrow img {
    width: 60px;
}

@media (min-width: 992px) {
    .inner-wrapper .hero {
        height: 400px;
    }
    .gallery {
        --container-width: 80vw;
        max-width: var(--container-width);
    }

    .gallery .tabs-content .tab-content .arrows {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    .gallery .tabs-content .tab-content .arrows .arrow.left {
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translate(calc(-100% - 20px), -50%);
    }

    .gallery .tabs-content .tab-content .arrows .arrow.right {
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translate(calc(100% + 20px), -50%);
    }
}

@media (min-width: 1200px) {
    
}