.d-none {
    display: none !important;
}

.designer-info {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
}

.designer-info__label {
    display: inline-block;
    padding: 10px 20px 12px 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #C4C4C4;
}

.designer-info__link {
    display: inline-block;
    position: relative;
    padding: 10px 20px 12px;
    background: #9C0F0C;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: white;
    text-decoration: none;
    margin-right: 20px;
    white-space: nowrap;
}

.designer-info__link:hover {
    box-shadow: 1px 4px 8px rgb(156 15 12 / 30%);
}


.designer-gallery.designer-gallery--large {
    display: none;
}

.gray-section {
    margin-top: 20px;
}

@media (min-width: 576px) {
    /* tablet */

    .designer-info {
        justify-content: flex-end;
    }

    .gray-section {
        margin-top: 0px;
    }

    .designer-gallery {
        min-width: 400px;
    }

    .designer-gallery.designer-gallery--large {
        display: block;
        height: 400px;
    }

    .designer-gallery.designer-gallery--large .owl-stage-outer {
        height: 100%;
    }

    .designer-gallery.designer-gallery--large .owl-stage {
        height: 100%;
    }

    .designer-gallery.designer-gallery--large .owl-item {
        max-width: unset;
        min-width: unset;
        height: 100%;
    }

    .designer-gallery .designer-gallery__item--large {
        width: auto;
        height: 100%;
        background-size: contain;
    }

    .designer-gallery__back-item {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        filter: blur(5px);
        opacity: 0.5;
        filter: blur(5px) saturate(1.5);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .designer-gallery__item--large img {
        height: auto;
        width: auto;
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0px 0px 0px 1px #0000002e, 0px 0px 20px #000000b8;
    }

    .designer-gallery .owl-nav {
        display: none;
    }

    .designer-gallery.designer-gallery--large .owl-nav {
        display: block;
        height: calc(100% + 200px);
    }
}

@media (min-width: 768px) {
    /* desctop */

    .designer-gallery {
        min-width: 600px;
    }

    .designer-gallery.designer-gallery--large {
        height: 500px;
    }
}

@media (min-width: 992px) {
    /* large desctop */

    .designer-gallery {
        min-width: 800px;
    }
}

@media (min-width: 1200px) {
    /* extra large desctop */

    .designer-gallery {
        min-width: 1000px;
    }
}






.gallery-block {
    width: 100%;
    margin: 40px 0;
}
.gallery-block__slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.gallery-block__slider .owl-stage-outer {
    height: 100%;
    overflow: hidden;
}
.gallery-block__slider .owl-stage {
    display: flex;
    height: 100%;
}
.gallery-block__slide {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}
.gallery-block__slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.gallery-block__slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: 300ms;
}
.gallery-block__slider .owl-nav button svg rect {
    fill: #fff;
}
.gallery-block__slider .owl-nav button svg path {
    fill: #939393;
}
.gallery-block__slider .owl-nav button.owl-prev {
    left: 15px;
}
.gallery-block__slider .owl-nav button.owl-next {
    right: 15px;
}
.fancybox-navigation .fancybox-button--arrow_left {
    left: 5% !important;
}
.fancybox-navigation .fancybox-button--arrow_right {
    right: 5% !important;
}

@media (min-width: 951px) {
    .gallery-block__slider:hover .owl-nav button {
        opacity: 0.5;
    }
    .gallery-block__slider .owl-nav button:not(.disabled):hover {
        opacity: 1;
    }
    .gallery-block__project-title-link:hover {
        text-decoration: underline;
    }
}

@media (max-width: 950px) {
    .gallery-block__slider {
        width: calc(100% - 80px);
    }
    .gallery-block__slider .owl-nav button {
        position: absolute;
        top: 0;
        height: 100%;
        width: 40px;
        background: #F7F7F7;
        opacity: 1;
    }
    .gallery-block__slider .owl-nav button svg {
        width: 40px;
    }
    .gallery-block__slider .owl-nav button svg rect {
        fill: transparent;
    }
    .gallery-block__slider .owl-nav button svg path {
        fill: #939393;
    }
    .gallery-block__slider .owl-nav button.owl-prev {
        left: 0;
        transform: translate(-100%, 0);
    }
    .gallery-block__slider .owl-nav button.owl-next {
        right: 0;
        transform: translate(100%, 0);
    }
}