

/* Start:/local/templates/default/components/webdev/gallery/.default/style.css?17872948363342*/
.gallery {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 700px));
    gap: 60px 120px;
}

.gallery .gallery-card {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 65%;
    border-radius: 30px;
    overflow: hidden;
}

.gallery .gallery-card .gallery-card--overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: start;

    background-color: rgba(0, 0, 0, 0.4);

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease-in-out;
}

.gallery .gallery-card:hover .gallery-card--overlay {
    opacity: 1;
    visibility: visible;
}

.gallery .gallery-card .gallery-card--overlay .overlay-header {
    display: flex;
    flex-direction: column;
    padding: 15px;
    color: #fff;
    font-size: 14px;

    transform: translateY(-5px);

    transition: transform 0.4s ease-in-out
}

.gallery .gallery-card:hover .gallery-card--overlay .overlay-header {
    transform: translateY(0px);
}

.gallery .gallery-card .gallery-card--overlay .overlay-header .overlay-header--title {
    font-size: 18px;
    font-weight: bold;
}

.gallery .gallery-card .gallery-card--overlay .overlay-header .overlay-header--description .text {
    font-weight: bold;
}

.gallery-container .pager {
    padding-left: 0;
    margin-top: 75px;
}

.gallery-container .breadcrumbs .breadcrumbs-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gallery-container .breadcrumbs .breadcrumb-item {
    cursor: pointer;
}

.gallery-container .description {
    margin-bottom: 50px;
}

.gallery-container .description .description-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.gallery-container .description .description-text {
    font-size: 16px;
}

.gallery-container .gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 30px;
    justify-content: space-between;
}

.gallery-container .gallery-items .gallery-item {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-container .gallery-items .gallery-item.pulse {
    position: relative;
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: 3;
}

.gallery-container .gallery-items .gallery-item img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    object-fit: contain;
}

.gallery-container .gallery-items .gallery-item img.preload {
    width: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer !important;
}

@media screen and (max-width: 1599px) {
    .gallery {
        gap: 60px;
    }
}

@media screen and (max-width: 1072px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
}

@media screen and (max-width: 862px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@keyframes pulse {
    from {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    to {
        opacity: 1;
    }
}
/* End */
/* /local/templates/default/components/webdev/gallery/.default/style.css?17872948363342 */
