

/* Start:/local/templates/domoff2025/css/fasad-calc.css?17780084844991*/
/*
 * Colors
 */
/*
 * Scroll
 */
.calc {
  margin-bottom: 50px;
}
.calc__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.calc__inner > * {
  flex-grow: 1;
}
.calc__element-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 20px;
  background-color: #fff5e9;
}
.calc__element-list-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 10px;
}
.calc__element {
  padding: 15px;
}
.calc__element-title {
  text-align: left;
  padding: 0 15px 20px 0;
  font-family: 'SFProDisplay Heavy';
  border-bottom: 1px solid #f3e5d4;
  margin-bottom: 12px;
}

.calc__element-list-title {
  text-align: center;
  position: relative;
  border-bottom: 1px solid #f3e5d4;
  padding: 15px;
  margin: 0 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc__element-list-title span {
  margin-right: 5px;
  cursor: pointer;
  font-family: 'SFProDisplay Heavy';
}
.calc__buttons {
  display: flex;
  padding: 30px 0 15px;
  justify-content: center;
}
.calc__buttons .btn {
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
  text-transform: uppercase;
  margin-right: 20px;
  background-color: #393531;
  color: #ffffff;
  width: 200px;
  line-height: 40px;
  border-radius: 15px;
  transition: all 0.3s;
}
.calc__buttons .btn:last-child{
  margin-right: 0;
}
.calc__buttons .btn:hover{
  background-color: #000000;
}
.calc__element-wrap {
  padding: 10px 10px 0;
  max-width: calc(50% - 20px);
}

.calc__element {
  border: 1px solid #f3e5d4;
  background-color: #fcf7f0;
  border-radius: 18px;
  padding: 15px;
}
.calc__elements-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  max-width: none;
}
.calc__elements-group > * {
  padding-left: 15px;
  padding-right: 15px;
  flex-grow: 1;
}

.calc__input-wrap {
  margin-bottom: 15px;
}
.calc__input-label {
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
  margin-bottom: 10px;
}
.calc__input-input {
  padding: 0 10px;
  line-height: 35px;
  border: 1px solid #f3e5d4;
  border-radius: 10px;
  background-color: #fffefd;
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
  width: 210px;
  max-width: 100%;
  box-sizing: border-box;
}
.calc__input-input:focus, .calc__input-input:focus-visible {
  outline: none;
  border-color: #ffe381;
}
.calc__element-result {
  text-align: center;
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
}
.calc__element-result .calc__input-label{
  margin-bottom: 0px;
}
.calc__element-result-value {
  font-size: 24px;
}
.calc__total-wrap {
  margin-bottom: 30px;
}
.calc__total {
  padding: 15px;
  background-color: #fff5e9;
  border-radius: 20px;
  text-align: center;
  font-size: 14px;
  font-family: 'SFProDisplay Medium';
}
.calc__total-value {
  font-size: 28px;
}
.calc__element-info {
  position: absolute;
  width: 245px;
  background-color: #fffefd;
  border: 1px solid #fff5e9;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  display: none;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  top: 100%;
  line-height: 20px;
}
.calc__element-info img {
  margin: 0 auto;
  padding: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .calc__element-info {
    left: 100%;
    transform: translate3d(0, 0, 0);
    top: 100%;
  }
}

.calc__element-info-wrap {
  position: static;
}
@media (min-width: 768px) {
  .calc__element-info-wrap {
    position: relative;
  }
}
.calc__element-info-wrap.openned .svg_bd {
  fill: #c2771c;
}
.calc__element-info-wrap.openned .calc__element-info {
  display: block;
}

.calc__element-info-btn {
  width: 24px;
  height: 24px;
  border: none;
  display: block;
  background-color: transparent;
  margin: 0;
  position: relative;
  border-radius: 4px;
  padding: 2px;
}
.calc__element-info-btn svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.calc__note-wrap {
}
.calc__note {
  padding: 15px;
  background-color: #fff5e9;
  border-radius: 20px;
  text-align: center;
  font-family: 'SFProDisplay Medium';
}
.calc__note_title {
  font-family: 'SFProDisplay Bold';
}
.calc__note a:not(.marquiz__button){
  border-bottom: 1px solid;
}
.calc__note a:hover{
  border-color: transparent;
}
.portfolio_wrap_out{
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .calc__note {
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media screen and (max-width: 767px) {
  .calc__buttons {
    flex-wrap: wrap;
  }
  .calc__buttons .btn {
    /*width: 95%;*/
    width: calc(100% - 40px);
    display: block;
    margin: 15px 0 0 0;
    line-height: 45px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 450px) {
  .calc__element-wrap {
    padding: 10px 5px 0;
    max-width: calc(50% - 10px);
  }
  .calc__buttons .btn {
    width: calc(100% - 30px);
  }
}

/* End */


/* 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/portfolio.list/templates/.default/style.css?1746622141827*/
.portfolio_section_desc{
    margin: 20px 0 20px;
    line-height: 1.5;
}
.portfolio_section_desc p{
    margin: 20px 0 20px;
}
.portfolio_title{
    display: block;
    font-size: 24px;
    font-family: 'SFProDisplay Heavy';
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.portfolio_wrap_out{
    margin-bottom: 60px;
}

.portfolio_section_end_desc{
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .portfolio_wrap_out .js_tile_item img{
        margin: 0 15px 15px;
    }
    .portfolio_wrap_out .js_tile_item_text{
        position: unset;
        color: #292929;
        padding-bottom: 30px;
    }
    .portfolio_wrap_out ._gradient:after{
        display: none;
    }
    .portfolio_wrap_out .js_tile_item:hover .js_tile_item_text{
        transform: translateY(0px);
    }

}

/* End */
/* /local/templates/domoff2025/css/fasad-calc.css?17780084844991 */
/* /local/templates/domoff2025/css/tiles.css?17465348249110 */
/* /local/components/domoff-new/portfolio.list/templates/.default/style.css?1746622141827 */
