.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: var(--space-3);
    justify-content: space-between;
}

.header-logo img {
    height: 60px;
}

.header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: var(--space-3);
    justify-content: space-between;
}


.catalog-card {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.catalog-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.card-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: var(--space-3);
}

.slider-wrapper {
    height: 50vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gallery-slide {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    height: 100%;
    
}

.gallery-slide img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    display: none;
    transition: opacity 0.25s ease-out;
}

.gallery-slider-img {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-description {
    display: flex;
    flex-direction: column;
    align-items: center;
}



































@media (max-width:1024px) {}




@media (max-width:786px) {
    .gallery-slide {
        width: 50%;
        height: auto;
    }
}


@media (max-width:480px) {
    .gallery-slide {
        width: 80%;
        height: auto;
    }
    
}