/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}/**
 * selectize.css (v0.13.0)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 * Copyright (c) 2020 Selectize Team & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 * @author Ris Adams <selectize@risadams.com>  
 */

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,.2)}.selectize-control .dropdown-header{position:relative;padding:10px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:3px 3px 0 0}.selectize-control .dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important}.selectize-control .dropdown-header-close:hover{color:#000}.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content{display:flex}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button .item{display:inline-flex;align-items:center;padding-right:0 !important}.selectize-control.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 6px;border-left:1px solid #d0d0d0;border-radius:0 2px 2px 0;box-sizing:border-box;margin-left:6px}.selectize-control.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,.05)}.selectize-control.plugin-remove_button .item.active .remove{border-left-color:#cacaca}.selectize-control.plugin-remove_button .disabled .item .remove:hover{background:none}.selectize-control.plugin-remove_button .disabled .item .remove{border-left-color:#fff}.selectize-control.plugin-remove_button .remove-single{position:absolute;right:0;top:0;font-size:23px}.selectize-control{position:relative}.selectize-dropdown,.selectize-input,.selectize-input input{color:#303030;font-family:inherit;font-size:13px;line-height:18px;font-smoothing:inherit}.selectize-input,.selectize-control.single .selectize-input.input-active{background:#fff;cursor:text;display:inline-block}.selectize-input{border:1px solid #d0d0d0;padding:8px 8px;display:inline-block;width:100%;overflow:hidden;position:relative;z-index:1;box-sizing:border-box;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);border-radius:3px}.selectize-control.multi .selectize-input.has-items{padding:calc( 8px - 2px - 0 ) 8px calc( 8px - 2px - 3px - 0 )}.selectize-input.full{background-color:#fff}.selectize-input.disabled,.selectize-input.disabled *{cursor:default !important}.selectize-input.focus{box-shadow:inset 0 1px 2px rgba(0,0,0,.15)}.selectize-input.dropdown-active{border-radius:3px 3px 0 0}.selectize-input>*{vertical-align:baseline;display:inline-block;zoom:1}.selectize-control.multi .selectize-input>div{cursor:pointer;margin:0 3px 3px 0;padding:2px 6px;background:#f2f2f2;color:#303030;border:0 solid #d0d0d0}.selectize-control.multi .selectize-input>div.active{background:#e8e8e8;color:#303030;border:0 solid #cacaca}.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active{color:#7d7d7d;background:#fff;border:0 solid #fff}.selectize-input>input{display:inline-block !important;padding:0 !important;min-height:0 !important;max-height:none !important;max-width:100% !important;margin:0 !important;text-indent:0 !important;border:0 none !important;background:none !important;line-height:inherit !important;user-select:auto !important;box-shadow:none !important}.selectize-input>input::-ms-clear{display:none}.selectize-input>input:focus{outline:none !important}.selectize-input>input[placeholder]{box-sizing:initial}.selectize-input.has-items>input{margin:0 4px !important}.selectize-input::after{content:" ";display:block;clear:left}.selectize-input.dropdown-active::before{content:" ";display:block;position:absolute;background:#f0f0f0;height:1px;bottom:0;left:0;right:0}.selectize-dropdown{position:absolute;top:100%;left:0;width:100%;z-index:10;border:1px solid #d0d0d0;background:#fff;margin:-1px 0 0 0;border-top:0 none;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,.1);border-radius:0 0 3px 3px}.selectize-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.selectize-dropdown [data-selectable] .highlight{background:rgba(125,168,208,.2);border-radius:1px}.selectize-dropdown .option,.selectize-dropdown .optgroup-header,.selectize-dropdown .no-results,.selectize-dropdown .create{padding:5px 8px}.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.selectize-dropdown [data-selectable].option{opacity:1;cursor:pointer}.selectize-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.selectize-dropdown .optgroup-header{color:#303030;background:#fff;cursor:default}.selectize-dropdown .active{background-color:#f5fafd;color:#495c68}.selectize-dropdown .active.create{color:#495c68}.selectize-dropdown .create{color:rgba(48,48,48,.5)}.selectize-dropdown-content{overflow-y:auto;overflow-x:hidden;max-height:200px;overflow-scrolling:touch}.selectize-dropdown .spinner{display:inline-block;width:30px;height:30px;margin:5px 8px}.selectize-dropdown .spinner:after{content:" ";display:block;width:24px;height:24px;margin:3px;border-radius:50%;border:5px solid #d0d0d0;border-color:#d0d0d0 transparent #d0d0d0 transparent;animation:lds-dual-ring 1.2s linear infinite}@keyframes lds-dual-ring{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input{cursor:pointer}.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input{cursor:text}.selectize-control.single .selectize-input:after{content:" ";display:block;position:absolute;top:50%;right:15px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:gray transparent transparent transparent}.selectize-control.single .selectize-input.dropdown-active:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent gray transparent}.selectize-control.rtl{text-align:right}.selectize-control.rtl.single .selectize-input:after{left:15px;right:auto}.selectize-control.rtl .selectize-input>input{margin:0 4px 0 -2px !important}.selectize-control .selectize-input.disabled{opacity:.5;background-color:#fafafa}@font-face{font-family:'conduitITCPro';src:url(./8d98f5448027d1423884ba97f13ce908.woff2) format("woff2"),url(./6e24ca31eb291b7fc87b7bf0762f4ec2.woff) format("woff"),url(./60ba55bf0864f1a4e9f94d0545176fde.ttf) format("truetype"),url(./e866617e9bb1feff2e99502596211bf0.svg) format("svg");font-weight:500;font-style:normal}@font-face{font-family:'conduitITCPro';src:url(./131ab1d5b06f6c3e3e8fafce04602d3a.woff2) format("woff2"),url(./06aff99f66d036aa9613608cb1c341cb.woff) format("woff"),url(./de5294f91c3d2897f9aa8aeb1eaa4392.ttf) format("truetype"),url(./07e8c167ae63614465e5f78c9e712a52.svg) format("svg");font-weight:700;font-style:normal}@font-face{font-family:'conduitITCPro';src:url(./daeb84fcb11d7dc82f778c702c9877e3.woff2) format("woff2"),url(./9446fa7739b1d08ea4737a51a638532b.woff) format("woff"),url(./2266c4353512fa28f2a3a0750c16b813.ttf) format("truetype"),url(./96750a53d7c496036722efb5d736fc75.svg) format("svg");font-weight:300;font-style:normal}@font-face{font-family:'icomoon';src:url(./fc21a57ba401082eaf634c892542af1c.eot);src:url(./fc21a57ba401082eaf634c892542af1c.eot) format("embedded-opentype"),url(./6d832fbe9199b2e3ca1cf8dd8ed90b9e.ttf) format("truetype"),url(./437d0538fef4a914cc7bd3d59578ca72.woff) format("woff"),url(./dee6a601cda83f4b497e895a43d3593d.svg) format("svg");font-weight:normal;font-style:normal;font-display:block}[class^="icon-"],[class*=" icon-"]{font-family:'icomoon' !important;speak:never;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-left:before{content:"\F104"}.icon-arrow-right:before{content:"\F105"}.icon-linkedin:before{content:"\E904"}.icon-facebook:before{content:"\E905"}.icon-pinterest:before{content:"\E906"}.icon-instagram:before{content:"\E907"}.wrapper{display:flex;flex-wrap:wrap;position:relative;width:100%;height:100%;overflow-x:hidden;align-items:center}.main{width:100%}.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}@media (min-width: 1199px){.container{padding:0 7px}}.container_custom{max-width:785px}.row{display:flex;flex-wrap:wrap;margin:0 -7px}.col-2{width:100%;padding:0 7px 14px}@media (min-width: 767px){.col-2{width:50%}}.col-3{width:100%;padding:0 7px 14px}@media (min-width: 767px){.col-3{width:50%}}@media (min-width: 992px){.col-3{width:calc(100% / 3)}}@media (min-width: 992px){.col-3_2{width:calc((100% / 3) * 2)}}.col-4{width:100%;padding:0 7px 14px}@media (min-width: 767px){.col-4{width:50%}}@media (min-width: 992px){.col-4{width:25%}}h1,.h1{margin:0 0 20px;font-size:25px;font-weight:500;text-transform:uppercase}@media (min-width: 992px){h1,.h1{margin:0 0 26px;font-size:45px;line-height:60px;letter-spacing:2px}}h1 a,.h1 a{color:#7B706B}h1 a:hover,.h1 a:hover{color:#000}h2,.h2{margin:0 0 16px;font-size:20px;font-weight:500;text-transform:uppercase}@media (min-width: 1024px){h2,.h2{margin:0 0 20px;font-size:38px}}h2 a,.h2 a{color:#7B706B}h2 a:hover,.h2 a:hover{color:#000}h3{margin:0}h3 a{color:#7B706B}h3 a:hover{color:#000}img{max-width:100%;height:auto}button{margin:0;padding:0;outline:none;border:none;cursor:pointer;font-family:inherit;-webkit-appearance:none}ul{list-style:none;margin:0;padding:0}blockquote{margin:0;padding:0}a{text-decoration:none;color:inherit;transition:all ease-in-out 0.3s;outline:none}a:hover{opacity:0.7}p{padding:0;margin:0}.input{height:50px;outline:none;border:none;background-color:#EAE7E5;font-weight:300;font-size:15px;color:#7B706B;font-family:inherit;-webkit-appearance:none}.input::placeholder{color:#7B706B}.standard-section{padding:70px 0 1px;text-align:center;background-color:#EAE7E5}@media (min-width: 767px){.standard-section{padding:100px 0 1px}}.standard-section.privacy{padding-bottom:70px}@media (min-width: 767px){.standard-section.privacy{padding-bottom:100px}}.standard-section.about-us-sec{padding:0 0 1px}.standard-section.about-us{padding:100px 0 1px}.standard-section:last-child{padding-bottom:40px}@media (min-width: 767px){.standard-section:last-child{padding-bottom:100px}}.standard-section_white{background-color:#fff}.standard-section__title-holder{max-width:940px;margin:0 auto}.standard-section__text-holder{max-width:500px;margin:0 auto 30px;font-weight:300}@media (min-width: 1024px){.standard-section__text-holder{font-size:20px}}@media (min-width: 1199px){.standard-section__text-holder{max-width:786px}}@media (min-width: 1024px){.standard-section__text-holder_lg{font-size:25px;line-height:30px;letter-spacing:1px}}.standard-section__text-holder a{color:#7B706B}.img-section{margin-bottom:-10px}.img-section_sm{margin-bottom:80px}@media (min-width: 767px){.img-section_sm{margin-bottom:250px}}.img-section_product{padding-top:0;padding-bottom:14px;margin-bottom:0;background-color:#EAE7E5}.img-section_product img{max-width:1186px;margin:0 auto;display:block}.img-section img{width:100%}.btn{display:inline-block;padding:12px 18px;transition:all ease-in-out 0.3s;border:none;outline:none;cursor:pointer;font-size:20px;font-family:inherit;-webkit-appearance:none}.btn:hover{opacity:0.7}.btn__default{color:#fff;background-color:#7B706B}.btn__holder{display:flex;flex-wrap:wrap}.btn__holder_center{justify-content:center}.js-tab-hidden{display:block !important;left:-9999px !important;position:absolute !important;top:-9999px !important}.img-visual{background-color:#EAE7E5}.projects{padding:80px 0;background-color:#EAE7E5}.projects_white{background-color:#fff}.block-404{min-height:calc(100vh - 215px);display:flex;justify-content:center;align-items:center;background-color:#EAE7E5}.block-404__text-holder{text-align:center}.block-404__text-holder h1{font-size:80px}.block-404__text-holder strong{font-size:50px}.header{position:absolute;width:100%;padding:20px 0 0;z-index:1000}@media (min-width: 1024px){.header{padding:100px 0 0}}.header.fixed-position .not-sticky-logo{opacity:0;visibility:hidden;height:0}.header.fixed-position .sticky-logo{opacity:1;visibility:visible;height:auto}.header.active{z-index:1002}@media (min-width: 1024px){.header.active{padding:127px 0 0}}.header.active .not-sticky-logo{opacity:0;visibility:hidden;height:0}@media (min-width: 767px){.header.active .not-sticky-logo{opacity:0;visibility:hidden;height:0}}.header.active .sticky-logo{opacity:1;visibility:visible;height:auto}@media (min-width: 767px){.header.active .sticky-logo{opacity:1;visibility:visible;height:auto}}.header.active .nav{opacity:1;visibility:visible;height:100vh}.header.active .btn-container{position:relative;top:4px;z-index:2}@media (min-width: 1199px){.header.active .btn-container{position:absolute;top:151px;right:104px}}.header.active .btn-container .burger-btn{width:28px !important;height:28px !important}.header.active .burger-btn{top:0}.header.active .burger-btn:before{top:92%;left:33%;width:34px;transform:rotate(45deg) translate(-50%, -50%);box-shadow:unset}@media (min-width: 767px){.header.active .burger-btn:before{top:93%;left:32%;box-shadow:unset}}.header.active .burger-btn:after{bottom:86%;left:37%;width:34px;transform:rotate(-45deg) translate(-50%, -50%);box-shadow:unset}@media (min-width: 767px){.header.active .burger-btn:after{width:34px;box-shadow:unset}}.header.active .burger-btn span{display:none}.header .container{display:flex;justify-content:space-between}.header .burger-btn{position:relative;top:19px;width:31px;height:18px;background-color:transparent}@media (min-width: 767px){.header .burger-btn{width:42px;height:23px;top:auto}}.header .burger-btn:before{content:'';position:absolute;top:0;left:0;width:100%;height:2px;background-color:#7B706B;transition:all ease-in-out 0.3s;box-shadow:1px 1px 1px #ffffff87}.header .burger-btn:after{content:'';position:absolute;bottom:0;left:0;width:100%;height:2px;background-color:#7B706B;transition:all ease-in-out 0.3s;box-shadow:1px 1px 1px #ffffff87}.header .burger-btn span{display:block;top:50%;left:50%;position:absolute;width:24px;height:2px;background-color:#7B706B;transform:translate(-50%, -50%);transition:all ease-in-out 0.3s;box-shadow:1px 1px 1px #ffffff87}@media (min-width: 767px){.header .burger-btn span{width:30px}}.logo{position:relative;z-index:1;width:85px}.logo__link{display:flex}@media (min-width: 767px){.logo{width:95px}}.logo .not-sticky-logo{transition:all ease-in-out 0.5s;opacity:1;visibility:visible;height:auto}.logo .sticky-logo{transition:all ease-in-out 0.5s;opacity:0;visibility:hidden;height:0}.nav{position:absolute;top:0;opacity:0;visibility:hidden;width:100%;height:0;left:0;background-color:#7B706B;overflow:hidden}.nav__list{position:relative;width:100%;margin:0 auto;padding:102px 0 0;text-align:center}@media (min-width: 767px){.nav__list{padding-top:199px;padding-left:20px;display:flex;flex-direction:column;align-items:center}}.nav__item{display:flex;justify-content:center;text-align:left;flex-direction:column;width:100%;position:relative;align-items:center}@media (min-width: 767px){.nav__item{position:relative;display:block;max-width:900px;width:100%}}.nav__item.active .nav__item-title{color:#fff}.nav__item.active .nav__item-title a{text-decoration:underline}@media (min-width: 767px){.nav__item.active .nav__item-title{position:relative}.nav__item.active .nav__item-title::after{content:'';position:absolute;top:50%;transform:translateY(-50%);right:0;height:45px;width:11px;background:#000;z-index:1}.nav__item.active .nav__item-title.no-submenu::after{content:none}}.nav__item.active .opener{position:absolute;right:6px}.nav__item.active .opener:after{position:absolute;right:6px;transform:rotate(90deg) translate(0, 0);top:25%;opacity:0}.nav__item.active .opener::before{position:absolute;background-color:#fff}.nav__item-title{display:inline-flex;align-items:center;justify-content:space-between;position:static;cursor:pointer;color:#FFFFFF89;opacity:1;font-size:31px;letter-spacing:1.24px;line-height:35px;padding-left:0;margin-bottom:20px;text-transform:capitalize;transition:all ease-in-out 0.1s;max-width:220px;width:100%}@media (min-width: 767px){.nav__item-title{margin-bottom:47px;position:relative;font-size:52px;padding-left:20;width:50%;max-width:unset;line-height:1}}.nav__item-title .opener{display:block;position:absolute;width:40px;height:40px;margin-left:10px;right:6px;padding:10px;background-color:transparent}.nav__item-title .opener:before{content:'';position:absolute;top:50%;left:50%;width:15px;height:2px;transform:translate(-50%, -50%);background-color:#ffffff89}@media all and (max-width: 768px){.nav__item-title .opener:before{width:10px}}.nav__item-title .opener:after{content:'';position:absolute;top:50%;left:50%;height:15px;width:2px;transition:all ease-in-out 0.3s;transform:translate(-50%, -50%);background-color:#ffffff89}@media all and (max-width: 768px){.nav__item-title .opener:after{height:10px}}@media (min-width: 767px){.nav__item-title .opener{display:none;position:relative}}.nav__item-title:hover{color:#fff;text-decoration:underline;opacity:1;transition:all ease-in-out 0.1s}.nav__item-title.active a{text-decoration:underline}.nav__item-title a:hover{opacity:1}.nav__item-slide{margin:0 0 28px;width:100%;background:#EAE7E5}@media (min-width: 767px){.nav__item-slide{width:50%;position:absolute;right:0;top:0;bottom:0;top:0}.nav__item-slide:before{content:'';position:absolute;top:-100vh;bottom:-100vh;left:0;width:50vw;background-color:#EAE7E5;z-index:1}}.nav__second-list{display:flex;position:relative;z-index:2;flex-direction:column;justify-content:center;flex-wrap:wrap;width:220px;margin:0 auto;padding:22px 0 0}@media (min-width: 767px){.nav__second-list{width:auto;padding-top:15;margin-left:95px}}.nav__second-item{width:100%;font-weight:300;margin:0 0 11px}@media (min-width: 767px){.nav__second-item{width:auto;margin-left:95px;margin:0 0 11px}}.nav__link{display:flex;align-items:center;text-align:center;height:100%;font-size:20px;letter-spacing:1.18px;padding:0;color:#000;transition:all ease-in-out 0.3s}@media (min-width: 767px){.nav__link{font-size:30px;line-height:37px;color:#000}}.nav__link:hover{text-decoration:underline;opacity:1}.nav__link.active{text-decoration:underline}.footer{position:relative;padding:30px 0 70px;background-color:#7B706B;color:#EAE7E5}@media (min-width: 767px){.footer{padding-bottom:30px;font-size:20px}}.footer__col{display:flex;flex-direction:column;justify-content:space-between;margin-bottom:55px}@media (min-width: 767px){.footer__col{margin-bottom:0}}.footer__col.mail-holder{max-width:320px}.footer__title{font-weight:500;text-transform:uppercase}@media (min-width: 992px){.footer__title{line-height:25px;letter-spacing:2px}}.footer__address{font-style:normal;font-weight:300;margin-bottom:4px;margin-left:-5px}@media (min-width: 767px){.footer__address{margin-bottom:10px;line-height:25px;letter-spacing:2px}}.footer__address span{display:inline-block;padding:0 5px}.footer__link-list{display:flex;flex-wrap:wrap;font-weight:300}.footer__link-item{padding:0 5px 10px}.footer__copyright{position:absolute;bottom:25px;display:flex;flex-wrap:wrap;font-size:15px;font-weight:300}@media (min-width: 767px){.footer__copyright{position:relative;bottom:auto}}.footer__copyright a{display:inline-block;padding-left:10px}.footer__subscribe .email__input{margin-bottom:10px}.footer__subscribe .email__input input{background-color:#EAE7E5;height:50px;width:314px;border:none;padding:17px 15px;border-radius:0;outline:none}.footer__subscribe .submit__input input{background-color:transparent;font-weight:500;font-size:20px;border:none;color:inherit;font-family:inherit;padding:0;cursor:pointer}.footer__subscribe .terms__input{margin-bottom:10px}.footer__subscribe .terms__input input{padding:0;height:initial;width:initial;margin-bottom:0;display:none;cursor:pointer;font-family:inherit}.footer__subscribe .terms__input label{position:relative;cursor:pointer;font-size:15px;font-family:inherit;font-weight:300}.footer__subscribe .terms__input label:before{content:'';-webkit-appearance:none;background-color:transparent;border:1px solid #EAE7E5;width:9px;height:9px;display:inline-block;position:relative;cursor:pointer;margin-right:13px}.footer__subscribe .terms__input input:checked+label:after{content:'';display:block;position:absolute;top:-2px;left:5px;width:4px;height:8px;border:solid #EAE7E5;border-width:0 1px 1px 0;transform:rotate(45deg)}@media (min-width: 767px){.footer .row{justify-content:space-between}}.social-list{display:flex}@media (min-width: 767px){.social-list{flex-direction:column;position:fixed;top:262px;right:10px;z-index:1003;opacity:0;visibility:hidden;transition:all ease-in-out 0.3s}}@media (min-width: 1199px){.social-list{right:104px}}@media (min-width: 767px){.social-list.visible{opacity:1;visibility:visible}}@media (min-width: 767px){.social-list.visible-header{opacity:1 !important;visibility:visible !important}}.social-list .social-item{padding:2px}.social-list .social-link{display:flex;justify-content:center;align-items:center;width:30px;height:30px;background-color:#fff}.social-list .social-icon{max-height:50%}.breadcrumbs{display:none;position:fixed;top:70%;left:10px;transform:translateY(-50%) rotate(-90deg);transform-origin:0 0;z-index:1000;opacity:0;visibility:hidden;transition:all ease-in-out 0.3s}@media (min-width: 767px){.breadcrumbs{display:flex}}.breadcrumbs.visible{opacity:1;visibility:visible}.breadcrumbs__list{display:flex}.breadcrumbs__item{padding:0 10px}.breadcrumbs__link{color:#7B706B;text-shadow:1px 1px 1px #ffffff87;text-transform:uppercase;font-size:15px;letter-spacing:2px}.breadcrumbs__img{top:-5px;position:relative;transform:rotate(90deg);cursor:pointer}.video{position:relative;min-height:500px}.video__preview{position:absolute;top:0;left:0;bottom:0;right:0;z-index:10;display:flex;justify-content:center;align-items:center;transition:all ease-in-out 0.3s;background-repeat:no-repeat;background-size:cover;background-position:50% 50%}.video__preview.play{opacity:0;visibility:hidden}.video__title-holder{display:flex;flex-direction:column;align-items:center;max-width:286px;text-align:center}@media (min-width: 767px){.video__title-holder{max-width:610px}}.video__title{font-size:35px;margin-bottom:20px}@media (min-width: 767px){.video__title{margin-bottom:60px}}@media (min-width: 992px){.video__title{font-size:80px}}.video__play{background-color:transparent;border:20px solid transparent;border-left:40px solid #fff;position:relative;left:13px}.video__holder{position:absolute;display:block;width:100%;padding:0;overflow:hidden;top:50%;transform:translateY(-50%)}@media (min-width: 767px){.video__holder{position:relative;top:0;transform:translateY(0)}}.video__holder:before{padding-top:56.25%;display:block;content:""}.video__iframe{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.designs-objects__link-list{display:flex;flex-wrap:wrap;justify-content:center}.designs-objects__link-item{width:100%;padding:0 0 30px}@media (min-width: 767px){.designs-objects__link-item{width:auto;padding:0 23px 30px}}.designs-objects__link{text-transform:uppercase;color:#7B706B;transition:color ease-in-out 0.3s;font-weight:500}@media (min-width: 992px){.designs-objects__link{font-size:22px;line-height:20px;letter-spacing:2px}}.designs-objects__link:hover{color:#484442;opacity:1}@media (min-width: 767px){.now-one__text-holder{margin-bottom:100px}}.quotes-slider{overflow:hidden;text-align:center;color:#EAE7E5;background-color:#EAE7E5}.quotes-slider__logo-holder{margin-bottom:35px}.quotes-slider__logo-holder img{min-width:150px}@media (min-width: 767px){.quotes-slider__holder{display:flex}}.quotes-slider__slider{margin-top:-80px}@media (min-width: 767px){.quotes-slider__slider{margin-top:0;padding:196px 0 90px;width:50%}}.quotes-slider__slider_quotes{margin-top:0;padding-bottom:180px}@media (min-width: 767px){.quotes-slider__slider_quotes{padding-bottom:130px;width:50%}}.quotes-slider__slider_quotes:before{content:'';position:absolute;top:0;bottom:0;width:300vw;left:50%;transform:translateX(-50%);background-color:#7B706B;z-index:0}.quotes-slider__quote-holder{margin:0 auto}@media (min-width: 767px){.quotes-slider__quote-holder{max-width:486px}}.quotes-slider__quote{display:flex;flex-direction:column;align-items:center;font-size:17px}@media (min-width: 767px){.quotes-slider__quote{font-size:30px}}.quotes-slider__quote-text{max-width:468px;margin-bottom:65px}.quotes-slider__quote-text p{font-size:17px}@media (min-width: 992px){.quotes-slider__quote-text p{font-size:30px}}.quotes-slider__quote-cite{font-style:normal}@media (min-width: 767px){.quotes-slider__quote-cite{font-size:20px}}.quotes-slider__quote-name{font-weight:500}.quotes-slider__quote-company{font-weight:300}.slick-arrow{position:absolute;bottom:104px;background:none;color:#EAE7E5;width:40px;height:40px}@media (min-width: 767px){.slick-arrow{bottom:69px}}.slick-arrow.slick-prev{left:0}@media (min-width: 992px){.slick-arrow.slick-prev{left:11%}}.slick-arrow.slick-next{right:0}@media (min-width: 992px){.slick-arrow.slick-next{right:11%}}.slick-dots{position:absolute;bottom:120px;left:50%;display:flex;justify-content:space-between;max-width:290px;width:75%;transform:translateX(-50%)}@media (min-width: 767px){.slick-dots{bottom:80px}}.slick-dots .slick-active button{opacity:1}.slick-dots button{background-color:#EAE7E5;font-size:0;line-height:0;opacity:0.5;height:1px;width:100%;transition:all ease-in-out 0.3s}.slick-dots button:hover{opacity:0.7}.teaser-images{overflow:hidden;text-align:center;color:#EAE7E5;background-color:#EAE7E5;padding:40px 0 0}@media (min-width: 767px){.teaser-images{padding:100px 0 0}}.teaser-images__grid{display:flex;flex-wrap:wrap;gap:14px}@media (max-width: 1024px){.teaser-images__grid{flex-direction:column;align-items:center}}.teaser-images__grid .big-image{position:relative;flex:0 0 57.731%;max-width:57.731%;max-height:614px;overflow:hidden}@media (max-width: 1024px){.teaser-images__grid .big-image{flex:0 0 100%;max-width:100%}}.teaser-images__grid .right-column{flex:0 0 40.85%;max-width:40.85%;display:flex;flex-direction:column;gap:14px}@media (max-width: 1024px){.teaser-images__grid .right-column{flex:0 0 100%;max-width:100%;flex-direction:row;flex-wrap:wrap;justify-content:center}}@media (max-width: 768px){.teaser-images__grid .right-column{flex-direction:column}}.teaser-images__grid .small-image{position:relative;width:100%;max-height:300px;overflow:hidden}@media (max-width: 1024px){.teaser-images__grid .small-image{flex:0 0 49%;max-width:49%}}@media (max-width: 768px){.teaser-images__grid .small-image{flex:0 0 100%;max-width:100%;max-height:614px}}.teaser-images__grid img{width:100%;height:100%;display:block;object-fit:cover}.teaser-images__grid a:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background-image:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);opacity:0;visibility:hidden;transition:all ease-in-out 0.3s;z-index:1}.teaser-images__grid a:hover{opacity:1}.teaser-images__grid a:hover:after{opacity:1;visibility:visible}.teaser-images__image-title{position:absolute;left:50%;transform:translateX(-50%);font-size:38px;line-height:38px;letter-spacing:1.27px;font-weight:300;color:#fff;text-align:center;background-color:rgba(0,0,0,0.2);padding:10px;width:100%;bottom:0;z-index:2}@media (max-width: 768px){.teaser-images__image-title{font-size:17px;letter-spacing:normal;line-height:1}}.cta-info{overflow:hidden;text-align:center;color:#EAE7E5;background-color:#EAE7E5;padding:40px 0 40px}@media (min-width: 767px){.cta-info{padding:81px 0 88px}}.cta-info__holder{margin:0 auto;max-width:498px;background:#fff;padding:30px 18px 28px}@media (min-width: 767px){.cta-info__holder{margin:0 0 0 auto;padding:52px 31px 38px}}.cta-info__text{color:#000;letter-spacing:1px;font-size:22px;line-height:30px;font-weight:500;margin-bottom:20px}@media (min-width: 767px){.cta-info__text{font-size:29px;line-height:37px;margin-bottom:37px}}.cta-info__contact-holder{display:flex;flex-wrap:wrap;justify-content:space-around}.cta-info__contact-holder a{font-size:22px;line-height:20px;color:#7B706B;letter-spacing:2px;text-transform:uppercase}.cta-info__email{margin-bottom:20px}@media (min-width: 767px){.cta-info__email{margin-bottom:0}}.partners{padding:40px 0}@media (min-width: 767px){.partners{padding:135px 0 70px}}.partners__title{text-align:center;text-transform:unset;line-height:1;margin:0 0 16px}.partners .row{row-gap:20px}.partners .col-4 .image-link:hover{opacity:1}.partners .col-4 .services__block{min-height:345px;margin-bottom:20px}@media all and (max-width: 992px){.partners .col-4 .services__block{max-width:100%}}@media all and (max-width: 768px){.partners .col-4 .services__block{min-height:450px}}@media all and (max-width: 480px){.partners .col-4 .services__block{min-height:280px}}.partners-description__title{font-size:22px;line-height:1.25;letter-spacing:1px;color:#7B706B;font-weight:500;text-decoration:none}.partners-description__title a{color:#7B706B;text-decoration:none;font-weight:500;font-size:22px}.partners-description__text p{font-size:22px;line-height:1;letter-spacing:1.25px;color:#000;font-weight:300}@media (min-width: 767px){.partners.partners_cta{padding:80px 0 70px}}.partners.partners_cta .row{justify-content:center;gap:15px}@media (min-width: 767px){.partners.partners_cta .row{gap:27px}}.partners.partners_cta .btn{display:flex;align-items:center;padding:14px 27px 10px;font-size:19px;line-height:1;letter-spacing:0.63px;background-color:transparent;color:#7B706B;border:2px solid #7B706B}@media all and (max-width: 768px){.partners.partners_cta .btn{font-size:14px;padding:12px 20px 8px}}.images{padding:80px 0;background-color:#fff}.images_white{background-color:#fff}.images_grey{background-color:#EAE7E5}.images img{display:block;object-fit:cover;width:100%;height:100%}@media (min-width: 767px){.images{padding:147px 0 112px}}.images .full-width{padding-bottom:15px;width:100%;padding:0 7px 14px}.images .full-width img{width:100%}@media (min-width: 767px){.images .full-width{padding-bottom:22px}}@media (min-width: 767px){.images .full-width.small img{max-height:702px}}@media (min-width: 767px){.images .full-width.big img{max-height:889px}}.images .col-2{padding-bottom:15px}@media (min-width: 767px){.images .col-2{padding-bottom:22px}}@media (min-width: 767px){.images .col-2.small img{min-height:408px}}@media (min-width: 767px){.images .col-2.big img{min-height:695px}}.images .col-3{padding-bottom:15px}@media (min-width: 767px){.images .col-3{padding-bottom:22px}}@media (min-width: 767px){.images .col-3 img{max-height:284px}}.images a{position:relative}.images a:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background-image:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);opacity:0;visibility:hidden;transition:all ease-in-out 0.3s;z-index:1}.images a:hover{opacity:1}.images a:hover:after{opacity:1;visibility:visible}.text-image{padding:40px 0;background-color:#EAE7E5}@media (min-width: 767px){.text-image{padding:110px 0 150px}}.text-image__wrapper{display:flex;flex-wrap:wrap;justify-content:center;margin:0 -7px}.text-image__left-column{width:100%;margin-bottom:20px;align-self:center}@media (min-width: 767px){.text-image__left-column{width:50%}}.text-image__text{max-width:100%;margin:16px 0 16px auto}@media (min-width: 767px){.text-image__text{max-width:565px;margin:16px 0 16 auto}}.text-image__text p{font-weight:300;font-size:17px;line-height:1;letter-spacing:1.25px}@media (min-width: 1024px){.text-image__text p{max-width:515px;margin:0 auto;font-size:25px;line-height:1;letter-spacing:1.25px}.text-image__text p:not(:last-child){margin-bottom:20px}}.text-image__btn-wrapper{display:flex;justify-content:center}.text-image .btn{background-color:unset;padding:0;text-decoration:underline;color:#000}@media (min-width: 767px){.text-image .btn{padding:0;font-size:20px;line-height:25px;letter-spacing:1px}}.text-image__right-column{width:100%;display:flex;justify-content:center;padding-left:0}@media (min-width: 767px){.text-image__right-column{justify-content:flex-start;width:50%;padding-left:55px}}.text-image__right-column img{max-width:100%;width:100%}@media (min-width: 767px){.text-image__right-column img{max-width:429px}}.team{padding-top:70px;background-color:#EAE7E5}@media (min-width: 767px){.team{padding-top:100px}}.team ~ .standard-section{padding-bottom:70px}@media (min-width: 767px){.team ~ .standard-section{padding-bottom:100px}}.team__col{width:100%;max-width:385px;padding:0 7px 14px}@media (min-width: 767px){.team__col{width:calc(100% /3);max-width:100%}}.team__col:nth-child(5n+4),.team__col:nth-child(5n){max-width:585px}@media (min-width: 767px){.team__col:nth-child(5n+4),.team__col:nth-child(5n){width:50%;max-width:100%}}.team__col:nth-child(5n+4) .team__user,.team__col:nth-child(5n) .team__user{height:390px}.team__user{display:flex;align-items:flex-end;justify-content:space-between;width:100%;height:512px;background-position:50% 50%;background-size:cover;background-repeat:no-repeat;color:#EAE7E5;position:relative}.team__user:after{content:'';position:absolute;margin-bottom:0;height:50px;background-color:rgba(0,0,0,0.2);width:100%;bottom:0;left:0;z-index:0}.team__connection-list{display:flex;height:50px;position:relative;z-index:1}.team__connection-item{border-right:1px solid #7B706B}.team__connection-item:last-child{border-right:none}.team__user-name{display:block;margin-right:10px;margin-bottom:10px;font-size:22px;text-transform:uppercase;letter-spacing:2px;position:relative;z-index:1}.hero{margin-bottom:70px}@media (min-width: 767px){.hero{display:flex;flex-direction:row-reverse;background-color:#EAE7E5;margin-bottom:100px}}.hero_white{margin-bottom:0}@media (min-width: 767px){.hero_white .hero__col{background-color:#fff}}.hero_white ~ .tabs{padding-top:70px}@media (min-width: 992px){.hero_white ~ .tabs{padding-top:100px}}.hero_white ~ .img-section{padding-top:70px}@media (min-width: 992px){.hero_white ~ .img-section{padding-top:100px}}.hero_lg{margin:0;padding-bottom:70px}@media (min-width: 767px){.hero_lg{padding:100px 0 100px}}.hero_about{padding:0}.hero_about .hero__title-holder{padding:100px 0 0}.hero_about .hero__text-holder{margin-bottom:0}.hero__col{display:flex;align-items:center;justify-content:center;text-align:center;padding:0 15px}@media (min-width: 767px){.hero__col{width:50%}}@media (min-width: 1199px){.hero__col{justify-content:flex-start;padding:0 20px 0 100px}}.hero__col_visual{background-repeat:no-repeat;background-size:cover;background-position:50% 50%;min-height:467px}@media (min-width: 1024px){.hero__col_visual{min-height:870px}}.hero__title{margin:0 0 10px;line-height:1}@media (min-width: 767px){.hero__title{margin:0 0 40px}}.hero__title-holder{padding:100px 0 30px;max-width:484px;text-align:center}@media (min-width: 767px){.hero__title-holder{padding:0}}.hero__title-holder_lg{max-width:100%}.hero__subtitle{position:relative;z-index:1000;display:block;margin-bottom:10px;font-weight:500;letter-spacing:1px;font-size:17px;color:#867B76;text-transform:uppercase}@media (min-width: 767px){.hero__subtitle{font-size:30px;margin-bottom:54px}}@media (min-width: 767px){.hero__subtitle.prod-brand-link{font-size:20px}}.hero__pseudo-title{display:inline-block;margin-bottom:30px;font-weight:500}.hero__text-holder{margin-bottom:20px;font-weight:300;font-size:17px}@media (min-width: 1024px){.hero__text-holder{font-size:25px;margin-bottom:80px}}.hero__text-holder a{color:#7B706B}.hero__text-holder a:hover{color:#000}.hero.non-margin{margin-bottom:20px}.services{padding:76px 0 0;background-color:#EAE7E5}@media (min-width: 767px){.services{padding:100px 0 0}}.services__block{position:relative;display:flex;align-items:flex-end;justify-content:center;padding:23px;width:100%;max-width:386px;min-height:258px;text-align:center;background-repeat:no-repeat;background-position:50% 50%;background-size:cover}.services__block:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background-image:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);opacity:0;visibility:hidden;transition:all ease-in-out 0.3s;z-index:1}.services__block:hover{opacity:1}.services__block:hover:after{opacity:1;visibility:visible}.services__block_lg{max-width:100%;min-height:566px}.services__block_sm{max-width:100%;min-height:427px}.services__block_md{max-width:100%;min-height:387px}.services__title{position:relative;z-index:2;font-weight:500;color:#fff;text-transform:uppercase;text-align:center;text-shadow:1px 1px 3px #000}@media (min-width: 767px){.services__title{font-size:22px}}.services .col-3{display:flex;justify-content:center}.services .col-4{display:flex;justify-content:center;padding:0 7px 16px}.services .col-4 .services__block-all{padding:18px 0 0;text-align:left;justify-content:left;min-height:353px}.services .col-4 .services__title{line-height:20px;letter-spacing:2px;color:#fff;text-align:left;text-shadow:none;background-color:rgba(0,0,0,0.2);padding:10px;width:100%;bottom:0;left:0}@media all and (max-width: 1199px){.services .col-4 .services__title{letter-spacing:normal}}.services-visual{display:flex;flex-direction:column;background-color:#fff}.services-visual__img{margin-bottom:40px}@media (min-width: 767px){.services-visual__img{margin-bottom:100px}}.services-visual__img_left{text-align:left;padding-right:80px}@media (min-width: 992px){.services-visual__img_left{padding-right:0}}.services-visual__img_right{text-align:right;padding-left:80px}@media (min-width: 992px){.services-visual__img_right{padding-left:0}}.services-visual__img_center{text-align:center;padding:0 20px}.services-visual__img_full img{width:100%}.collection-visual{background-color:#EAE7E5}.services-description{padding:70px 0;text-align:center}@media (min-width: 767px){.services-description{padding:100px 0}}.services-description__text-holder{max-width:885px;margin:0 auto;font-size:20px;font-weight:300}@media (min-width: 767px){.services-description__text-holder{font-size:25px}}.services-description__more-text p{letter-spacing:1.25px;line-height:1;font-size:17px}@media (min-width: 1024px){.services-description__more-text p{font-size:25px}}.services-description__more-text-holder{display:none;opacity:0;max-height:0;overflow:hidden;transition:opacity 0.3s ease, max-height 0.3s ease}.services-description__more-text.is-expanded .services-description__more-text-holder{display:block;opacity:1;max-height:1000px}.services-description__more-text.is-expanded .services-description__more-text-button::before{content:'\2212'}.services-description__more-text-button{display:inline-flex;align-items:center;cursor:pointer;font-size:17px;line-height:1;margin-top:15px;position:relative;letter-spacing:1.25px;font-weight:300;padding-left:15px}@media (min-width: 1024px){.services-description__more-text-button{font-size:25px}}.services-description__more-text-button::before{content:'+';position:absolute;left:0;font-size:18px;line-height:1;transition:content 0.3s ease}.upholstery-service{display:flex;align-items:center;padding:60px 0;color:#EAE7E5;background-color:#7D888F}@media (min-width: 767px){.upholstery-service{min-height:552px}}.upholstery-service__holder{padding:15px 0;border-bottom:1px solid #EAE7E5}@media (min-width: 767px){.upholstery-service__holder{display:flex;flex-wrap:wrap;justify-content:space-between}}.upholstery-service__title{font-weight:500;letter-spacing:1px;text-transform:uppercase;margin-bottom:10px;font-size:20px}@media (min-width: 767px){.upholstery-service__title{max-width:190px}}.upholstery-service__text-holder{font-size:20px;font-weight:300}@media (min-width: 767px){.upholstery-service__text-holder{max-width:470px}}.upholstery-service__text-holder p{margin-bottom:10px}.video-description{padding:80px 0 0}@media (min-width: 767px){.video-description{padding:100px 0 0}}.video-description__video-holder{position:relative}.video-description__video-preview{position:absolute;top:0;left:0;bottom:0;right:0;z-index:10;display:flex;justify-content:center;align-items:center;transition:all ease-in-out 0.3s;background-repeat:no-repeat;background-size:cover;background-position:50% 50%}.video-description__video-preview.play{opacity:0;visibility:hidden}.video-description__video-player{position:relative;display:block;width:100%;padding:0;overflow:hidden}.video-description__video-player:before{padding-top:56.25%;display:block;content:""}.video-description__iframe{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.video-description__video-holder{margin-bottom:30px}.video-description__title{display:inline-block;margin-bottom:12px;text-transform:uppercase;font-weight:500}.video-description__description{max-width:484px;margin:0 auto;text-align:center;font-weight:300}.accordion-section{padding:40px 0;background-color:#EAE7E5}@media (min-width: 767px){.accordion-section{padding:100px 0}}.accordion-section.accordion__services{padding:40px 0 1px}@media (min-width: 767px){.accordion-section.accordion__services{padding:100px 0 1px}}.accordion-section__item{margin-bottom:5px;background-color:#fff}.accordion-section__item.active .pseudo-opener:after{transform:rotate(90deg) translate(0, 10%);top:40%;opacity:0}.accordion-section__item-title{position:relative;cursor:pointer;padding:14px 14px 14px 70px;color:#7B706B}@media (min-width: 767px){.accordion-section__item-title{padding:14px 14px 14px 100px;font-size:18px;letter-spacing:1px}}.accordion-section__item-title .pseudo-opener{position:absolute;display:block;width:50px;height:100%;background-color:#7B706B;left:0;top:0}.accordion-section__item-title .pseudo-opener:before{content:'';position:absolute;top:50%;left:50%;width:10px;height:2px;transform:translate(-50%, -50%);background-color:#EAE7E5}.accordion-section__item-title .pseudo-opener:after{content:'';position:absolute;top:50%;left:50%;height:10px;width:2px;transition:all ease-in-out 0.3s;transform:translate(-50%, -50%);background-color:#EAE7E5}.accordion-section__text-holder{padding-bottom:25px;padding-right:15px;padding-left:70px;font-weight:300}@media (min-width: 767px){.accordion-section__text-holder{padding-left:100px;font-size:20px;line-height:25px;letter-spacing:1px}}.accordion-section__text-holder a{color:#7B706B}.accordion-section__text-holder a:hover{opacity:0.7}.projects__title{text-align:center;text-transform:unset;line-height:1;margin:0 0 16px}.projects .col-3 .services__block{min-height:280px}@media all and (max-width: 992px){.projects .col-3 .services__block{max-width:100%}}@media all and (max-width: 768px){.projects .col-3 .services__block{min-height:450px}}@media all and (max-width: 480px){.projects .col-3 .services__block{min-height:280px}}.projects .col-3 .services__block.projects__block{padding:20px 0 0}.projects .col-3 .services__block.projects__block .projects__title{margin-bottom:0;text-transform:uppercase;letter-spacing:2px;line-height:20px;text-shadow:0 3px 6px #00000029;background-color:rgba(0,0,0,0.2);padding:10px;width:100%;bottom:0;left:0}.projects.projects-last{text-align:center}.projects.projects-last .btn{margin:44px 0 0;padding:16px 33px;line-height:22px;font-weight:300}.tabs{background-color:#EAE7E5}.tabs__nav{display:flex;flex-wrap:wrap;justify-content:center;font-weight:300;width:220px;margin:0 auto;opacity:0;visibility:hidden;position:absolute;left:50%;transform:translateX(-50%);transition:all ease-in-out 0.3s;background-color:#EAE7E5}@media (min-width: 767px){.tabs__nav{position:relative;width:auto;opacity:1;visibility:visible;z-index:1000;background-color:transparent}}.tabs__nav.open{opacity:1;visibility:visible;z-index:10}.tabs__nav-item{position:relative;z-index:1001;margin-bottom:-1px;margin-right:-1px;border:1px solid #7B706B;width:100%}@media (min-width: 767px){.tabs__nav-item{width:auto}}.tabs__nav-item:last-child{margin-bottom:0}@media (min-width: 767px){.tabs__nav-item:last-child{margin-bottom:-1px}}.tabs__nav-link{display:block;padding:10px 20px;color:#7B706B;text-align:center;font-weight:300}.tabs__nav-link.active,.tabs__nav-link:hover{color:#fff;background-color:#7B706B}.tabs__dimension-list{display:flex;flex-wrap:wrap;justify-content:center}@media (min-width: 767px){.tabs__dimension-item{width:calc(100% / 3)}}.tabs__material-list{display:flex;flex-wrap:wrap;margin:0 -7px}.tabs__material-item{display:flex;flex-direction:column;align-items:center;width:100%;padding:0 7px 80px}@media (min-width: 767px){.tabs__material-item{width:50%}}@media (min-width: 992px){.tabs__material-item{width:calc(100% / 3)}}.tabs__material-img{margin:0 0 10px}.tabs__material-description{font-weight:300}.tabs .tab-content{padding:50px 0}.tabs .tabset-opener{position:relative;width:220px;margin:0 auto}@media (min-width: 767px){.tabs .tabset-opener{display:none}}.tabs .tabset-opener:before{content:'';position:absolute;top:10px;right:13px;width:10px;height:10px;border-right:1px solid #fff;border-bottom:1px solid #fff;transform:rotate(45deg)}.tabs .tabset-opener.active:before{top:16px;transform:rotate(-136deg)}.tabs .tabset-opener .tabs__nav-link{color:#fff;background-color:#7B706B}.tabs .filter-products{margin-bottom:48px;display:flex;justify-content:flex-start}.tabs .filter-products.open{border:1px solid #7B706B}@media (min-width: 767px){.tabs .filter-products.open{border:none}}.tabs .filter-products .tabs__nav-item{border:none;margin:0 7px 0}.tabs .filter-products .tabs__nav-item .tabs__nav-link{padding:0;font-size:25px;line-height:1}@media all and (max-width: 768px){.tabs .filter-products .tabs__nav-item .tabs__nav-link{padding:10px;font-size:17px}}.tabs .filter-products .tabs__nav-item .tabs__nav-link.active{text-decoration:underline;color:#7B706B;background-color:unset}.tabs .filter-products .tabs__nav-item .tabs__nav-link:hover{color:#7B706B;background-color:unset;text-decoration:underline}.tabs .filter-products.filter-products__single-product{justify-content:center}.tabs .filter-products.filter-products__single-product .tabs__nav-item{padding:10px 20px}.tabs .filter-products.filter-products__single-product.open{border:1px solid #7B706B}@media (min-width: 767px){.tabs .filter-products.filter-products__single-product.open{border:none}}.tabs.tabs-products{position:relative;z-index:1}.individualize{text-align:left;letter-spacing:2px;line-height:25px}.individualize_dark{padding-top:50px;background-color:#EAE7E5}@media (min-width: 992px){.individualize_dark{padding-top:100px}}.individualize__description{margin:0 auto 190px;max-width:500px}@media (min-width: 1199px){.individualize__description{max-width:783px}}.individualize__description_jobs{margin-bottom:40px}.individualize__description_sm{margin-bottom:0;padding-bottom:80px}.individualize__description-text{display:flex;flex-wrap:wrap;padding:5px 0;border-bottom:1px solid #000}.individualize__img-block.img-black-hover .individualize__img-holder{position:relative;display:flex;justify-content:center;align-items:flex-end}.individualize__img-block.img-black-hover .individualize__img-holder:before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;background-color:#7b706b94;opacity:0;visibility:hidden;transition:all ease-in-out 0.3s;z-index:1}.individualize__img-block.img-black-hover .individualize__img-holder:hover:before{opacity:1;visibility:visible}.individualize__title{display:block;width:100%;text-transform:uppercase;font-weight:500;font-size:17px}@media (min-width: 767px){.individualize__title{max-width:240px;font-size:20px}}.individualize__text-holder{width:100%;font-weight:300}@media (min-width: 767px){.individualize__text-holder{max-width:410px}}.individualize__img-holder{background-size:cover;background-position:50% 50%;background-repeat:no-repeat;height:420px}.products.products-list{padding:80px 0;background-color:#EAE7E5}@media (min-width: 767px){.products.products-list{padding:0 0 100px}}.products.products-list .col-4 .services__block{min-height:353px}@media all and (max-width: 992px){.products.products-list .col-4 .services__block{max-width:100%}}@media all and (max-width: 768px){.products.products-list .col-4 .services__block{min-height:450px}}@media all and (max-width: 480px){.products.products-list .col-4 .services__block{min-height:280px}}.products.products-list .col-4 .services__block.product__block{margin:0 0 14px}.products.products-list .col-4 .product-description__title{font-size:22px;font-weight:500;line-height:20px;letter-spacing:2px;text-transform:uppercase;margin:0 0 5px}.products.products-list .col-4 .product-description__title a{color:#000}.products.products-list .col-4 .product-description__btn-text{font-size:22px;font-weight:500;line-height:20px;letter-spacing:2px;color:#7B706B}.contact-info{padding:80px 0;background-color:#EAE7E5;font-weight:300;letter-spacing:1.11px}@media (min-width: 767px){.contact-info{padding:100px 0}}.contact-info__col{display:flex;flex-direction:column;width:100%;padding:0 7px 14px}@media (min-width: 767px){.contact-info__col{width:50%;font-size:20px}}.contact-info__text-holder{margin-bottom:40px}@media (min-width: 767px){.contact-info__text-holder{font-size:20px}}.contact-info__title{display:inline-block;margin-bottom:10px;font-weight:500}.contact-info__address{font-style:normal}.contact-info__time-holder{display:flex}.contact-info__days{padding-right:20px}.contact-info__hours{display:flex;flex-direction:column}.contact-info__description{padding-top:15px}.form{padding:70px 0;background-color:#fff}@media (min-width: 767px){.form{padding:100px 0;font-size:20px}}.form__title{font-size:20px;margin-bottom:40px;text-transform:uppercase;line-height:25px;letter-spacing:2px}.form__select-holder{margin-bottom:80px}.form__select-label{display:inline-block;margin-bottom:20px;line-height:25px;letter-spacing:2px}.form__select{max-width:220px;text-align:center}.form__select .selectize-input{border:none;box-shadow:none;border-radius:0}.form__select .selectize-input.full{background-color:#EAE7E5 !important}.form__select .selectize-input:after{width:5px !important;height:5px !important;border-width:1px 1px 0 0 !important;border-color:#7B706B !important;transform:rotate(134deg);top:46% !important;right:12px !important}.form__select .selectize-input .item{margin-top:5px;font-size:17px}@media (min-width: 767px){.form__select .selectize-input .item{font-size:18px}}.form__select .selectize-dropdown{background-color:#EAE7E5}.form__select .selectize-dropdown .selectize-dropdown-content .option{font-size:18px;font-weight:300}.form__select .selectize-dropdown .selectize-dropdown-content .option.selected,.form__select .selectize-dropdown .selectize-dropdown-content .option.active{background-color:#97979780;color:inherit}.form__radio{margin-bottom:40px}.form__radio [type="radio"]:checked,.form__radio [type="radio"]:not(:checked){position:absolute;left:-9999px}.form__radio [type="radio"]:checked+span,.form__radio [type="radio"]:not(:checked)+span{position:relative;padding-left:28px;cursor:pointer;line-height:20px;display:inline-block}.form__radio [type="radio"]:checked+span:before,.form__radio [type="radio"]:not(:checked)+span:before{content:'';position:absolute;left:0;top:5px;width:8px;height:8px;background:#EAE7E5}.form__radio [type="radio"]:checked+span:after,.form__radio [type="radio"]:not(:checked)+span:after{content:'';width:8px;height:8px;background:#7B706B;position:absolute;top:5px;left:0;transition:all 0.2s ease}.form__radio [type="radio"]:not(:checked)+span:after{opacity:0;transform:scale(0)}.form__radio [type="radio"]:checked+span:after{opacity:1;transform:scale(1)}.form__radio-holder .wpcf7-form-control{display:flex;flex-direction:column}.form__form{max-width:585px}.form__input-holder{position:relative}.form__input{background-color:#EAE7E5;height:50px;width:100%;border:none;outline:none;padding:10px;margin-bottom:7px;font-family:inherit;font-size:inherit}.form__input::placeholder{color:#7B706B}.form__input_textarea{height:200px;resize:none;margin-bottom:40px}.form__checkbox{margin-bottom:80px}.form__checkbox [type="checkbox"]:checked,.form__checkbox [type="checkbox"]:not(:checked){position:absolute;opacity:0;z-index:10}.form__checkbox [type="checkbox"]:checked+span,.form__checkbox [type="checkbox"]:not(:checked)+span{position:relative;padding-left:28px;cursor:pointer;line-height:20px;display:inline-block}.form__checkbox [type="checkbox"]:checked+span:before,.form__checkbox [type="checkbox"]:not(:checked)+span:before{content:'';position:absolute;left:0;top:5px;width:8px;height:8px;background:#EAE7E5}.form__checkbox [type="checkbox"]:checked+span:after,.form__checkbox [type="checkbox"]:not(:checked)+span:after{content:'';width:8px;height:4px;border-style:solid;border-width:1px 1px 0 0;border-color:#7B706B;position:absolute;top:3px;left:1px;transition:all 0.2s ease}.form__checkbox [type="checkbox"]:not(:checked)+span:after{opacity:0;transform:scale(0)}.form__checkbox [type="checkbox"]:checked+span:after{opacity:1;transform:scale(1) rotate(134deg)}.form .wpcf7-list-item-label{font-size:15px;line-height:25px;letter-spacing:0.5px}.form .wpcf7-list-item{margin:0}.form label{font-weight:300}.blog-description{display:flex;flex-direction:column;align-items:center;text-align:center;padding-top:10px}.blog-description__title{font-size:15px;text-transform:none;color:#7B706B}.blog-description__text{margin-bottom:66px;font-weight:300}.news-last{text-align:center}.news-last__title{text-align:center;text-transform:unset;line-height:1;margin:0 0 16px}.news-last__block{padding:20px 0 0}@media all and (max-width: 992px){.news-last .col-3:not(:last-child){margin-bottom:40px}}@media all and (max-width: 480px){.news-last .col-3:not(:last-child){margin-bottom:20px}}.news-last .col-3 .services__block{min-height:259px}@media all and (max-width: 992px){.news-last .col-3 .services__block{max-width:100%}}@media all and (max-width: 768px){.news-last .col-3 .services__block{min-height:450px}}@media all and (max-width: 480px){.news-last .col-3 .services__block{min-height:259px}}.news-last .col-3 .services__block:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background-image:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);opacity:0;visibility:hidden;transition:all ease-in-out 0.3s;z-index:1}.news-last .col-3 .services__block:hover::after{opacity:1;visibility:visible}.news-last .col-3 .services__block.projects__block{padding:20px 0 0}.news-last .col-3 .services__block.projects__block .projects__title{margin-bottom:0;text-transform:uppercase;letter-spacing:2px;line-height:20px;text-shadow:0 3px 6px #00000029;background-color:rgba(0,0,0,0.2);padding:10px;width:100%;bottom:0;left:0}.news-last__description{padding-top:18px}@media all and (max-width: 480px){.news-last__description{padding-top:10px}}.news-last__item-title{margin-bottom:0;text-transform:uppercase;letter-spacing:2px;line-height:20px;text-shadow:0 3px 6px #00000029;background-color:rgba(0,0,0,0.2);padding:10px;width:100%;bottom:0;left:0}.news-last__description-title{line-height:17px;margin:0 0 4px}.news-last__text{max-width:284px;font-size:25px;line-height:1;margin:0}.news-last .btn{margin:36px 0 0;padding:16px 12px;line-height:22px;font-weight:300}*{box-sizing:border-box}html,body{margin:0;padding:0;font-size:17px;font-family:"conduitITCPro",sans-serif;box-sizing:border-box;background-color:#EAE7E5}@media (min-width: 1199px){html,body{font-size:20px}}

/*# sourceMappingURL=app.min.css.map*/