

/* Start:/local/templates/domoff2025/css/tiles.css?17465348249110*/
.tiles_wrap_out{
    overflow: hidden;
}
.js_tiles_in {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
    counter-reset: items;
    flex-direction: row;
    min-height: 400px;
}
.js_tile_item {
    width: 33.33%;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}
.js_tile_item._hide img{
    opacity:0;
}
.js_tile_item.loading{
    margin: 0 10px 20px;
    width: calc(33.33% - 20px);
}
.js_tile_item.loading:before{
    background-color:#f0f0f0;
    opacity: 1;
    border-radius: 30px;
}
.js_tile_item.loading:after{
    top: -30px;
    left: 0;
    opacity: 0.3;
    width: calc(100% + 120px);
    height: 50px;
    margin-left: -60px;
    z-index: 1;
    border: 0;
    animation: move 4s linear infinite;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.41) 21%, rgba(255,255,255,1) 51%, rgba(255,255,255,0.8) 66%, rgba(255,255,255,0.33) 86%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.41) 21%,rgba(255,255,255,1) 51%,rgba(255,255,255,0.8) 66%,rgba(255,255,255,0.33) 86%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.41) 21%,rgba(255,255,255,1) 51%,rgba(255,255,255,0.8) 66%,rgba(255,255,255,0.33) 86%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.js_tile_item:nth-of-type(3n+1) { order: 1; }
.js_tile_item:nth-of-type(3n+2) { order: 2; }
.js_tile_item:nth-of-type(3n)   { order: 3; }

.js_tile_item img{
    margin: 0 10px 20px;
    width: calc(100% - 20px);
    height: auto;
    border-radius: 30px;
    display: block;
}
.js_tile_item a,
.js_tile_item a:hover{
    border: 0;
    color: #fffefd;
}

.loading .js_tile_item_text{
    display: none;
}
.js_tile_item_text{
    max-width: calc(100% - 50px);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 25px 50px;
    user-select: none;
    z-index: 5;
    transition: all 0.3s;
}
.js_tile_item_name{
    line-height: 28px;
    font-size: 24px;
    font-family: 'SFProDisplay Heavy';
}
.js_tile_item_desc{
    font-size: 14px;
    font-family: 'SFProDisplay Medium';
}
.js_tile_item:hover .js_tile_item_text{
    transform: translateY(500px);
}
.js_tile_item.loading a._gradient:after{
    display: none;
}
.js_tile_item a._gradient:after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: calc(50% - 20px) 0px 0px;
    height: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    width: calc(100% - 20px);
    left: 10px;
    border-radius: 0 0 30px 30px;
    opacity: 1;
    transition: all 0.3s;
}
.js_tile_item:hover a._gradient:after {
    opacity: 0;
}

@media (max-width: 1280px) {
    .js_tile_item {
        order: unset;
        width: 50%;
    }
    .js_tile_item.loading{
        width: calc(50% - 20px);
    }
    .js_tile_item:nth-of-type(2n+1) { order: 1; }
    .js_tile_item:nth-of-type(2n)   { order: 2; }
}
@media (max-width: 767px) {
    .js_tiles_in {
        margin: 0;
    }
    .js_tile_item {
        width: 100%;
    }
    .js_tile_item.loading{
        margin: 0 0 10px;
        width: 100%;
    }
    .js_tile_item img{
        margin: 0 0 10px;
        width: 100%;
    }
    .js_tile_item a._gradient:after {
        width: 100%;
        left: 0;
        inset: calc(50% - 10px) 0px 0px;
    }
}


/**/
.tiles_max_5 .js_tile_item {
    order: unset;
    width: 20%;
}
.tiles_max_5 .js_tile_item.loading{
    width: calc(20% - 20px);
}
.tiles_max_5 .js_tile_item:nth-of-type(5n+1) { order: 1; }
.tiles_max_5 .js_tile_item:nth-of-type(5n+2) { order: 2; }
.tiles_max_5 .js_tile_item:nth-of-type(5n+3) { order: 3; }
.tiles_max_5 .js_tile_item:nth-of-type(5n+4) { order: 4; }
.tiles_max_5 .js_tile_item:nth-of-type(5n) { order: 6; }
@media (max-width: 1280px) {
    .tiles_max_5 .js_tile_item {
        order: unset;
        width: 25%;
    }
    .tiles_max_5 .js_tile_item.loading{
        width: calc(25% - 20px);
    }
    .tiles_max_5 .js_tile_item:nth-of-type(4n+1) { order: 1; }
    .tiles_max_5 .js_tile_item:nth-of-type(4n+2) { order: 2; }
    .tiles_max_5 .js_tile_item:nth-of-type(4n+3) { order: 3; }
    .tiles_max_5 .js_tile_item:nth-of-type(4n)   { order: 6; }
}
@media (max-width: 991px) {
    .tiles_max_5 .js_tile_item {
        order: unset;
        width: 33.33%;
    }
    .tiles_max_5 .js_tile_item.loading{
        width: calc(33.33% - 20px);
    }
    .tiles_max_5 .js_tile_item:nth-of-type(3n+1) { order: 1; }
    .tiles_max_5 .js_tile_item:nth-of-type(3n)   { order: 2; }
    .tiles_max_2 .js_tile_item:nth-of-type(3n)   { order: 3; }
}
@media (max-width: 767px) {
    .tiles_max_5:not(.awards_wrap) .js_tile_item {
        order: unset;
        width: 50%;
    }
    .tiles_max_5:not(.awards_wrap) .js_tile_item img{
        margin: 0 10px 20px;
        width: calc(100% - 20px);
    }
    .tiles_max_5:not(.awards_wrap) .js_tile_item.loading{
        margin: 0 10px 20px;
        width: calc(50% - 20px);
    }
    .tiles_max_5:not(.awards_wrap) .js_tile_item:nth-of-type(2n+1) { order: 1; }
    .tiles_max_5:not(.awards_wrap) .js_tile_item:nth-of-type(2n)   { order: 2; }
}
@media (max-width: 450px) {
    .tiles_max_5:not(.awards_wrap) .js_tiles_in {
        margin: 0;
    }
    .tiles_max_5:not(.awards_wrap) .js_tile_item {
        width: 100%;
    }
    .tiles_max_5:not(.awards_wrap) .js_tile_item.loading{
        margin: 0 0 10px;
        width: 100%;
    }
    .tiles_max_5:not(.awards_wrap) .js_tile_item img{
        margin: 0 0 10px;
        width: 100%;
    }
    .tiles_max_5:not(.awards_wrap) .js_tile_item a._gradient:after {
        width: 100%;
        left: 0;
        inset: calc(50% - 10px) 0px 0px;
    }
}

/**/
.tiles_max_4 .js_tile_item {
    order: unset;
    width: 25%;
}
.tiles_max_4 .js_tile_item.loading{
    width: calc(25% - 20px);
}
.tiles_max_4 .js_tile_item:nth-of-type(4n+1) { order: 1; }
.tiles_max_4 .js_tile_item:nth-of-type(4n+2) { order: 2; }
.tiles_max_4 .js_tile_item:nth-of-type(4n+3) { order: 3; }
.tiles_max_4 .js_tile_item:nth-of-type(4n)   { order: 6; }
@media (max-width: 1280px) {
    .tiles_max_4 .js_tile_item {
        order: unset;
        width: 33.33%;
    }
    .tiles_max_4 .js_tile_item.loading{
        width: calc(33.33% - 20px);
    }
    .tiles_max_4 .js_tile_item:nth-of-type(3n+1) { order: 1; }
    .tiles_max_4 .js_tile_item:nth-of-type(3n+2) { order: 2; }
    .tiles_max_4 .js_tile_item:nth-of-type(3n)   { order: 3; }
}
@media (max-width: 991px) {
    .tiles_max_4 .js_tile_item {
        order: unset;
        width: 50%;
    }
    .tiles_max_4 .js_tile_item.loading{
        width: calc(50% - 20px);
    }
    .tiles_max_4 .js_tile_item:nth-of-type(2n+1) { order: 1; }
    .tiles_max_4 .js_tile_item:nth-of-type(2n)   { order: 2; }
}
@media (max-width: 767px) {
    .tiles_max_4 .js_tiles_in {
        margin: 0;
    }
    .tiles_max_4 .js_tile_item {
        width: 100%;
    }
    .tiles_max_4 .js_tile_item.loading{
        margin: 0 0 10px;
        width: 100%;
    }
    .tiles_max_4 .js_tile_item img{
        margin: 0 0 10px;
        width: 100%;
    }
    .tiles_max_4 .js_tile_item a._gradient:after {
        width: 100%;
        left: 0;
        inset: calc(50% - 10px) 0px 0px;
    }
}

/**/
.tiles_max_2 .js_tile_item {
    order: unset;
    width: 50%;
}
.tiles_max_2 .js_tile_item.loading{
    width: calc(50% - 20px);
}
.tiles_max_2 .js_tile_item:nth-of-type(2n+1) { order: 1; }
.tiles_max_2 .js_tile_item:nth-of-type(2n)   { order: 2; }
@media (max-width: 991px) {
    .tiles_max_2 .js_tiles_in {
        margin: 0;
    }
    .tiles_max_2 .js_tile_item {
        width: 100%;
    }
    .tiles_max_2 .js_tile_item.loading{
        margin: 0 0 10px;
        width: 100%;
    }
    .tiles_max_2 .js_tile_item img{
        margin: 0 0 10px;
        width: 100%;
    }
    .tiles_max_2 .js_tile_item a._gradient:after {
        width: 100%;
        left: 0;
        inset: calc(50% - 10px) 0px 0px;
    }
}

/**/
.portfolio_wrap_out .js_tiles_in {
    margin-left: -13px;
    margin-right: -13px;
}
.portfolio_wrap_out .js_tile_item.loading{
    width: calc(33.33% - 30px);
}
.portfolio_wrap_out .js_tile_item img{
    margin: 0 15px 30px;
    width: calc(100% - 30px);
}
.portfolio_wrap_out .js_tile_item a._gradient:after {
    inset: calc(50% - 30px) 0px 0px;
    width: calc(100% - 30px);
    left: 15px;
}

/**/
@media (max-width: 767px) {
    .awards_wrap.tiles_max_5 .js_tile_item img{
        margin: 0 10px 20px;
        width: calc(100% - 20px);
    }
    .awards_wrap.tiles_max_5 .js_tile_item.loading{
        margin: 0 10px 20px;
        width: calc(50% - 20px);
    }
    .awards_wrap.tiles_max_5 .js_tile_item:nth-of-type(2n+1) { order: 1; }
    .awards_wrap.tiles_max_5 .js_tile_item:nth-of-type(2n)   { order: 2; }
}
@media (max-width: 450px) {
    .awards_wrap.tiles_max_5 .js_tile_item {
        order: unset;
        width: 50%;
    }
}

/* End */


/* Start:/local/components/domoff-new/manufactures.list/templates/.default/style.css?1746534824181*/
.manufacture_title{
    display: block;
    font-size: 24px;
    font-family: 'SFProDisplay Heavy';
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* End */
/* /local/templates/domoff2025/css/tiles.css?17465348249110 */
/* /local/components/domoff-new/manufactures.list/templates/.default/style.css?1746534824181 */
