
:root {
    --accent-color:#f26b22;
    --accent-color-secondary:#312e2c;
    --accent-color-lighten:#f77d3b;
    --font-size-small:14px;
    --font-size-extra-small:12px;
    --font-size:16px;
    --font-size-large:18px;
    --font-size-extra:22px;
    --text-color:#000;
    --placeholder-color:#777;
    --gap: 32px;
    --gap-small: 6px;
    --gap-medium: 16px;
    --gap-large: 60px;
    --gap-form: 10px;
	--input-height:48px;
	--button-height:70px;
    --button-font-size:16px;
	--background-color:#f9f9f9;
	--background-color-alt:#fff;
	--warning-color:#fc983d;
	--success-color:#009961;
    --border-radius:0;
    --h1-font-size:60px;
    --h2-font-size:50px;
    --h3-font-size:22px;
    --h4-font-size:18px;
    --transition: .25s ease
}

@media(max-width: 900px) {
    :root {
        --font-size:14px;
        --font-size-small:12px;
        --font-size-large:16px;
        --gap: 24px;
        --gap-large: 32px;
        --input-height:50px;
        --button-height:50px;
        --button-font-size:14px;
        --h1-font-size:40px;
        --h2-font-size:32px;
        --h3-font-size:18px;
        --h4-font-size:16px;
    }
}
@media(max-width: 720px) {
    :root {
        --font-size:14px;
        --gap: 16px;
        --h1-font-size:32px;
        --h2-font-size:24px;
        --h3-font-size:16px;
        --h4-font-size:14px;
    }
}

@font-face {
    font-family: 'Geometria';
    src: url('../../fonts/Geometria-Bold.woff2') format('woff2'),
        url('../../fonts/Geometria-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('../../fonts/Geometria-Light.woff2') format('woff2'),
        url('../../fonts/Geometria-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('../../fonts/Geometria-Medium.woff2') format('woff2'),
        url('../../fonts/Geometria-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bicubik';
    src: url('../../fonts/Bicubik.woff2') format('woff2'),
        url('../../fonts/Bicubik.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,
*:after,
*:before {
    box-sizing: border-box
}

*::placeholder,
body,
input,
textarea,
button,
input,
h3,
h4,
h5,
h6 {
    font-family: 'Geometria', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}


html {
    line-height: 1.6;
    font-size: var(--font-size);
    min-width: 320px
}

body {
    margin: 0;
    height: 100%;
    word-wrap: break-word;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2 {
    font-family: 'Bicubik', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    margin:var(--gap) 0 calc(var(--gap) / 2) 0;
    font-weight:normal;
    padding:0;
    line-height: 1.1;
}

h3,
h4,
h5,
h6 {
    font-weight:600;
    padding:0;
    margin:var(--gap) 0 calc(var(--gap) / 2) 0;
    line-height: 1.1;
}

h1 {
    font-size: var(--h1-font-size)
}

h2 {
    font-size: var(--h2-font-size)
}

h3 {
    font-size: var(--h3-font-size)
}

h4 {
    font-size: var(--h4-font-size)
}

figure {
    padding: 0;
    margin: 0
}

img {
    border: 0;
    max-width: 100%
}

a {
    color: var(--accent-color);
    transition: color .2s ease
}

body a:active,
body a:hover {
    outline-width: 0;
    color: var(--text-color)
}

ul {
    list-style: circle
}

ol {
    list-style: decimal
}

ul,
ol {
    margin-top: 12.8px;
    margin-top: .8rem
}

li {
    margin-bottom: 12.8px;
    margin-bottom: .8rem
}

p {
    padding:0;
    margin:var(--gap) 0 0 0
}

button,
input,
optgroup,
select,
textarea {
    font-size: 100%
}
  
textarea {
    overflow: auto
}

.wow {
    visibility: hidden
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

[class$=__content] {
    margin: 0 auto;
    width: 1200px;
    font-stretch: condensed;
}

@media (max-width:1200px) {
    [class$=__content] {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%
    }
}

*::placeholder {
    color: var(--placeholder-color);
    font-size: var(--font-size);
    font-weight:300;
    text-transform: uppercase;
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--background-color)
}

::selection {
    background: var(--accent-color);
    color: var(--background-color)
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--background-color)
}

*::-webkit-scrollbar-track {
    background-color: transparent
}

*::-webkit-scrollbar {
    width: calc(var(--gap) / 3);
    background-color: transparent
}

*::-webkit-scrollbar-thumb {
    background-color: var(--accent-color)
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-color-lighten)
}

.file-attach {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    cursor: pointer
}
.file-attach img {
    margin: 5px 10px 0 0;
    width:10px;
    height:10px;
}
.file-attach span {
    color: var(--placeholder-color);
    font-size:var(--font-size-small);
    line-height:1.4
}
input[type=file] {
    display: none
}

/* BUTTON */
.button {
    display:flex;
    justify-content: center;
    align-items: center;
    height: var(--button-height);
    line-height: var(--button-height);
    font-size: var(--button-font-size);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 var(--gap);
    outline: none;
    border: 0;
    border-radius: var(--border-radius);
    color: #FFF;
    cursor: pointer;
    user-select: none;
    background-color: var(--accent-color);
    white-space: nowrap;
    transition: background-color .15s ease, color .15s ease, transform .15s ease;
}

.button:hover,
.button:active {
    color: #FFF;
    background-color: var(--accent-color-lighten);
}

.button:active {
    transform: scale(.96)
}

.button--rounded {
    padding:0;
    margin:0;
    width:28px;
    height:28px;
    line-height:28px;
    border-radius:50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.button--rounded::after {
    content: '';
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: .75;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    display: block;
    background-color: var(--accent-color-lighten);
    animation: bg 1.3s ease infinite;
}

.button--alt {
    background-color:var(--accent-color-secondary);
    color:#FFF
}

@keyframes bg {
    0% { 
        width: 28px; 
        height: 28px; 
        opacity: .75; 
    }
    100% { 
        width: 42px; 
        height: 42px; 
        opacity: 0; 
    }
}

/* FORMS */
.form__grid {
	display:grid;
	grid-template-columns:repeat(10, 1fr);
	gap:var(--gap-form);
}
.form__item {
	position:relative;
	display:flex;
	flex-direction:column;
	justify-content:center;
	grid-column:span 10; /* 100% by default */
}
.form__item--10 {
	grid-column:span 1;
}
.form__item--20 {
	grid-column:span 2;
}
.form__item--30 {
	grid-column:span 3;
}
.form__item--40 {
	grid-column:span 4;
}
.form__item--50 {
	grid-column:span 5;
}
.form__item--60 {
	grid-column:span 6;
}
.form__item--70 {
	grid-column:span 7;
}
.form__item--80 {
	grid-column:span 8;
}
.form__item--90 {
	grid-column:span 9;
}
.form__item input,
.form__item textarea{
	font-size:var(--font-size);
	width:100%;
	border:0;
	border-radius:var(--border-radius);
	background-color:#FFF;
	outline:none;
	color:var(--text-color);
	transition:box-shadow .22s ease
}
.form__item input {
	height:var(--button-height);
	padding:0 var(--gap)
}
.form__item textarea {
	padding:var(--gap)
}
.form__item input:hover,
.form__item textarea:hover {
	box-shadow:var(--accent-color-lighten) 0 0 0 1px
}
.form__item input:active,
.form__item input:focus,
.form__item textarea:active,
.form__item textarea:focus{
	box-shadow:var(--accent-color) 0 0 0 2px
}
.form__item ::placeholder {
  color: #777;
  font-size: var(--font-size);
}
.answer-bad {
    background-image: url(../../images/ajax-error.svg);
}
.answer-good {
    background-image: url(../../images/ajax-ok.svg);
}
.form-answer {
    display: block;
    width: 100%;
    font-size: var(--font-size-small);
    line-height: var(--font-size-large);
    opacity: 0;
    transition: opacity .3s ease,transform .3s ease;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto 18px;
}
.form-answer--show {
    opacity: 1;
    transform: translateY(0);
    min-height: 18px;
    padding-left: 28px;
    margin-bottom: 20px;
}
.privacy-link {
    font-size:var(--font-size-small);
    font-weight:300;
    line-height: 1.3;
}


/* STICKY MENU */
.sticky-menu {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 120;
    width: 100%;
    max-width: 1280px;
    border-radius: 10px;
    margin-top: -60px;
    box-shadow: rgba(0, 0, 0, .1) 0 3px 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all .5s ease;
}

.sticky-menu__wrapper {
    position: relative;
}

.sticky-menu--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.sticky-menu--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.sticky-menu__content {
    height: 60px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 1
}

.sticky-menu__logo {
    margin-right: 40px;
    width: 100px;
    flex-basis: 100px;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center
}

.sticky-menu__logo img {
    vertical-align: top;
    max-height: 40px;
}

.sticky-menu nav {
    width: 100%;
}

.sticky-menu nav>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

.sticky-menu nav>ul>li {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 20
}

.sticky-menu nav>ul>li a {
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    color:var(--text-color);
    font-size: var(--font-size-small);
}

.sticky-menu nav>ul>li a:hover {
    color:var(--accent-color)
}

.sticky-menu nav>ul>li.active>a {
    color: var(--accent-color);
    cursor: default;
}

.sticky-menu nav>ul ul {
    margin: 0;
    padding: 10px 24px 8px 24px;
    list-style: none;
    position: absolute;
    z-index: -1;
    top: 42px;
    left: -24px;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, .2) 0 5px 5px;
    border-radius: 0 0 10px 10px;
    transform: translateY(-5px);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

/* HOVER LOST FIX*/
.sticky-menu nav>ul ul::before {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    top: -50px;
    left: 0;
    display: block;
}

.sticky-menu nav>ul ul li {
    margin: 0 0 5px;
    white-space: nowrap
}

.sticky-menu nav>ul>li:hover>ul {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.sticky-menu__contacts {
    border-left: rgba(0, 0, 0, .06) 1px solid;
    padding-left: 30px;
    margin-left: 30px;
}

.sticky-menu__phone a {
    height:32px;
}

.sticky__phone-icon {
    width: 16px;
    height: 16px;
    fill: #FFF
}

@media(max-width:1180px) {
    .sticky-menu nav {
        display: none
    }

    .sticky-menu__contacts {
        margin-left: 0;
        flex: 1;
        border-left: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
}

@media(max-width:1080px) {
    .sticky-menu,
    .sticky-menu--hidden,
    .sticky-menu--visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(5px);
        max-width: calc(100% - 10px)
    }

    .sticky-menu__content {
        padding-left: 0;
    }
}

@media(max-width:900px) {
    
}

@media(max-width:720px) {
    .sticky-menu {
        background-color: rgba(255, 255, 255, 1);
    }

    .sticky-menu__wrapper::before {
        /* Remove sticky blur for mobile */
        display: none !important;
        backdrop-filter: none;
    }

    .sticky-menu__content {
        justify-content: space-between;
    }

    .sticky-menu nav {
        display: none
    }

    .sticky-menu__contacts {
        flex: inherit
    }

    .sticky-menu__logo {
        margin-right: 0;
    }

    .sticky-menu .contact--phone,
    .sticky-menu__contacts--phone {
        display: none
    }
}

/* BURGER */
.nav-toggle {
    border: none;
    user-select: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    height: 50px;
    margin-top: -2px;
    display: block
}

@media(min-width:1080px) {
    .sticky-menu .nav-toggle {
        display: none
    }
}

.burger {
    transition: transform .3s;
    user-select: none;
    width: 50px;
    height: 50px
}

.nav-visible .burger {
    transform: rotate(45deg)
}

.burger__line {
    fill: none;
    transition: stroke-dasharray .3s, stroke-dashoffset .3s;
    stroke: #777;
    stroke-width: 3;
    stroke-linecap: round
}

.burger__line--bottom,
.burger__line--top {
    stroke-dasharray: 40 120
}

.nav-visible .burger__line--bottom,
.nav-visible .burger__line--top {
    stroke-dashoffset: -70px
}

/* ASIDE */
.aside {
    visibility: hidden;
    background: #FFF;
    position: fixed;
    opacity: 0;
    left: 5px;
    width: calc(100% - 10px);
    z-index: 120;
    border-radius: 0 0 10px 10px;
    transform: translateY(-20px);
    transition: opacity .2s cubic-bezier(0.7, 0.26, 0.49, 1), visibility .2s cubic-bezier(0.7, 0.26, 0.49, 1), transform .3s cubic-bezier(0.7, 0.26, 0.49, 1);
    box-shadow: rgba(0, 0, 0, .1) 10px 0 10px;
    display: block
}
.nav-visible .aside {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible
}
.aside__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--gap);
    min-height: auto;
    overflow-y: auto
}
.aside__links {
    padding: var(--gap) 0;
    max-width: 380px;

}
.aside__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aside__links li {
    margin: 0 0 calc(var(--gap) / 2) 0
}
.aside__links ul a {
    text-decoration: none;
    font-size:var(--font-size-large);
    color:var(--text-color)
}
.aside__links ul a:hover {
    color:var(--accent-color)
}
.aside__phone {
    border-top:rgba(0,0,0,.1) 1px solid;
    padding-top:var(--gap);
}

.aside__email {
    padding:calc(var(--gap) / 2) 0
}
.aside__email a {
    text-decoration: none;
    color:#777
}
.aside__email a:hover {
    color:var(--accent-color)
}
.aside__social .social {
    justify-content: flex-start;
}
@media(max-width:1080px) {
    .aside {
        top: 56px;
    }
}

/* HEADER */
.header {
    width:100%;
    max-width:1920px
}
.header__content {
    min-height:120px;
}
.header__grid {
    display:grid;
    grid-template-columns:1fr 235px 1fr;
}
.header-category {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:var(--gap-medium);
    margin-top:var(--gap)
}
.header-category__link {
    text-decoration:none;
    color:var(--text-color);
}
.header-category__link--lined {
    position:relative;
    position: relative;
    display:flex;
    align-items: center;
    gap:var(--gap-medium)
}
.header-category__link--lined::before {
    content:'';
    display: block;
    width:var(--gap);
    height:2px;
    background-color: var(--text-color);
    transition: background-color var(--transition);
}
.header-category__link:hover {
    color:var(--accent-color)
}
.header-category__link--lined:hover::before {
    background-color: var(--accent-color);
}
.header-category__item ul {
    margin: 10px 0 0 24px;
    padding: 10px 24px 8px 24px;
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    position: absolute;
    width:auto;
    z-index: 1;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 5px;
    transform: translateY(-5px);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

/* HOVER LOST FIX*/
.header-category__item ul::before {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    top: -50px;
    left: 0;
    display: block;
}

.header-category__item ul::after {
    content: '';
    display: block;
    position: absolute;
    left: 24px;
    top: -5px;
    width: 0;
    height: 0;
    width: 10px;
    height: 10px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: rgba(0,0,0,.03) -1px -1px 0;
}

.header-category__item ul li {
    margin: 0 0 5px;
    white-space: nowrap;
    font-size:var(--font-size-small);
    list-style:none
}
.header-category__item ul li a{
    text-decoration:none;
    color:var(--text-color)
}
.header-category__item ul li a:hover{
    color:var(--accent-color)
}

.header-category__item:hover>ul {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
.header__menu {
    display:flex;
    flex-direction: column;
    align-items: center;
    width:100%;
}
.header__menu nav {
    width:100%
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.header__menu li {
    margin: 0;
    padding: 0;

    z-index: 20;
}
.header__menu a {
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    color:#000
}
.header__menu a:hover,
.header__menu a.active {
    color:var(--accent-color)
}

.header__menu nav>ul ul {
    margin: 10px 0 0 -24px;
    padding: 10px 24px 8px 24px;
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    position: absolute;
    width:auto;
    z-index: -1;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 5px;
    transform: translateY(-5px);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

/* HOVER LOST FIX*/
.header__menu nav>ul ul::before {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    top: -50px;
    left: 0;
    display: block;
}

.header__menu nav>ul ul::after {
    content: '';
    display: block;
    position: absolute;
    left: 24px;
    top: -5px;
    width: 0;
    height: 0;
    width: 10px;
    height: 10px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: rgba(0,0,0,.03) -1px -1px 0;
}

.header__menu nav>ul ul li {
    margin: 0 0 5px;
    white-space: nowrap;
    font-size:var(--font-size-small)
}

.header__menu nav>ul>li:hover>ul {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.header__logo {
    background-color: var(--background-color);
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.header__right {
    display:flex;
    flex-direction:column;
    align-items: flex-end;
    justify-content: center;
    padding-top:12px;
}

.header__contacts {
    display:flex;
    align-items: center;
    justify-content: flex-end;
    gap:var(--gap);
    margin:var(--gap-medium) 0
}



@media(max-width:1080px) {
    .header {
        display:none
    }
}



/* MAIN */
.main {
    width:100%;
    max-width:1920px;
    background:url('../../images/main-bg.jpg') 50% 50% / 1920px 870px no-repeat;
    position: relative;
}
.main__content {
    height:870px;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
}
.main__wrapper {
    width:100%;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width:701px;
}
.main__title-wrapper {
    position:relative;
    overflow:hidden;
    margin-bottom:50px;
}
.main__title {
    padding:0 0 0 30px;
    margin:0;
}
.main__title-wrapper::before {
    content:'';
    display:block;
    width:4px;
    background-color: var(--accent-color);
    height:89%;
    left:0;
    top:4%;
    position:absolute
}
.main__categories {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px 61px;
    margin-bottom:50px;
}
.category__link {
    text-decoration:none;
    display:flex;
    align-items: center;
    color:var(--text-color);
    line-height:1.4;
    font-size:20px;
    gap:var(--gap)
}
.category__link img {
    flex-basis: 80px;
    flex-shrink: 0;
    transition:transform var(--transition)
}
.category__link:hover img {
    transform: scale(1.1);
}
.category__link:hover {
    color:var(--accent-color)
}
.main__calc {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px 61px;
}
.calc__left {
    display:flex;
    align-items: center;
}
.calc__info {
    position: relative;
    display:flex;
    flex-direction: column;
    padding:5px 0 5px 30px
}
.calc__info::before {
    content:'';
    display:block;
    width:4px;
    background-color: var(--accent-color);
    height:89%;
    left:0;
    top:4%;
    position:absolute
}
.calc__info strong {
    font-weight:normal;
    font-size:var(--font-size-extra)
}
.calc-button {
    display:flex;
    align-items: center;
    justify-content: center;
    width:100%;
    padding:55px 10px;
    color:#FFF;
    text-decoration: none;
    gap:var(--gap-medium);
    background-color:#312e2c;
    transition:all var(--transition);
    text-transform: uppercase;
}
.calc-button:hover {
    background-color:var(--accent-color);
    color:#fff
}
.main__branch {
    position:absolute;
    left:0;
    bottom:-110px
}
@media(max-width:1340px) {
    .main__branch {
        width:70px;
        bottom:-20px
    }
}
@media(max-width:1260px) {
    .main__branch {
        display:none
    }
}
@media(max-width:1189px) {
    .main {
        background-position:100% 50%;
    }
    .main__wrapper {
        background-color:#f8f8f8;
        padding-top:58px
    }
}
@media(max-width:900px) {
    .main {
        background-position:0 100%;
        background-size:cover;
        background-image: url('../../images/main-bg-mobile.jpg');
    }
    body .main__content {
        height:550px;
        padding-top:120px;
        padding-left:0;
        padding-right:0
    }
    .main__wrapper {
        background-color:transparent;
        padding-top:0;
        max-width: 100%;
        height:100%;
    }
    .main__title-wrapper {
        margin-left:15px;
        flex:1
    }
    .main__title-wrapper::before {
        display:none
    }
    .main__title {
        text-shadow: 0 1px rgba(255, 255, 255, .45);
    }
    .main__categories {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-bottom:0;
        gap:0;
    }
    .category__link {
        font-size: var(--font-size);
        gap: var(--gap-medium);
        padding:10px 15px;
        background-color:rgba(255, 255, 255, .85)
    }
    .category__link img {
        width:32px;
        height:32px;
        flex-basis: 32px;
    }
    .main__calc {
        background-color:rgba(255, 255, 255, .95);
        gap:var(--gap-small);
    }
    .calc-button {
        padding: 16px 10px;
        font-size:var(--font-size-extra-small);
        height:100%;
        line-height:1.3
    }
    .calc-button img {
        width:22px;
        height:22px;
        flex-basis:22px;
        flex-shrink: 0;
    }
    .calc__info {
        position: relative;
        display:flex;
        flex-direction: column;
        padding:10px 0 10px 15px
    }
    .calc__info {
        line-height:1.3
    }
    .calc__info::before {
        display:none
    }
    .calc__info strong {
        font-weight: normal;
        font-size: var(--font-size-large);
    }
}
@media(max-width:630px) {
    .main__categories {
        grid-template-columns: 1fr 1fr;
        gap:var(--gap-small);
        padding:var(--gap-small)
    }
    .main__calc {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .calc__left {
        display: none;
    }
    .main__title-wrapper {
        margin-left:0
    }
    .main__title {
        padding:0;
        text-align: center;
    }
}

/* GIFT */
.gift {
    padding:var(--gap-large) 0;
    width:100%;
    max-width:1920px;
    background-color:var(--background-color-alt)
}
.texture-wrapper .gift {
    padding:0 0 var(--gap-large) 0;
    background:transparent
}
.gift__content {
    display:grid;
    grid-template-columns: 1fr 2fr;
    gap:var(--gap)
}
.gift__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gift__title {
    margin-top:0
}
.gift__description {
    padding:0;
    margin:0;
}
.banner {
    color:#f5f4f4;
    background:url('../../images/banner-bg.jpg') 50% 50% / cover no-repeat #26110e;
    height:300px;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    position:relative;
}
.banner span {
    color:#f5f4f4;
    font-weight: 900;
    font-size:80px;
    line-height:1.1;
    text-transform: uppercase;
    padding:30px 40px;
    user-select: none;
}
.banner img {
    position:absolute;
    right:8%;
    top:-20px;
    max-width: 100%;
    pointer-events: none;
    animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(10px, -16px, -1000px) rotate(-2deg);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@media(max-width:1150px) {
    .gift {
        padding:var(--gap) 0
    }
    .gift__content {
        grid-template-columns: 1fr;
    }
    .gift__info {
        align-items: center;
        text-align: center;
    }
}
@media(max-width:740px) {
    .banner {
        width:100%;
        height:200px
    }
    .banner span {
        font-size:40px;
    }
    .banner img {
        max-width:60%
    }
}
@media(max-width:480px) {
    .banner {
        height:170px
    }
    .banner span {
        font-size:30px;
        padding:30px
    }
    .banner img {
        max-width:80%
    }
}

/* POPULAR */
.popular {
    width:100%;
    max-width:1920px;
    padding:var(--gap) 0;
    background-color:var(--background-color)
}
.popular--alt {
    padding:var(--gap) 0 var(--gap-large) 0;
}
.popular--alt .popular__title {
    margin-bottom:var(--gap-large)
}
.popular__title {
    text-align:center
}
.popular__switches {
    margin-top:20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:var(--gap)
}
.popular__switches a{
    font-size:var(--font-size-extra);
    text-decoration:none;
    padding:0 10px;
    color:var(--text-color)
}
.popular__switches a.switch-active {
    color:var(--accent-color)
}
.switch-separator {
    font-size:23px;
    line-height:1;
    padding:0 8px;
}
.popular__data {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    opacity:0;
    transform:translateY(40px);
    transition:all .55s ease
}
.popular__data--visible {
    height: auto;
    visibility: visible;
    overflow: visible;
    opacity:1;
    transform:translateX(0);
}
.popular__more {
    padding-top: var(--gap-large);
}
.popular__more .button{
    margin:0 auto;
    max-width:378px
}

@media(max-width:900px) {
    .popular__switches a{
        font-size:var(--font-size-large);
    }
    .switch-separator {
        font-size:var(--font-size-large);
    }
}



/* FILTER */
.filter {
    position:relative;
    z-index:20
}
.filter__wrapper {
    background:var(--background-color-alt);
    padding:0 0 0 40px;
}
.jlcontentfieldsfilter, .jlcontentfieldsfilter_bani{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content: space-between;
    align-content: center;
  	padding-bottom:20px;
}
.jlcontentfieldsfilter .jlmf-section {
	padding-right: 20px
}
.jlcontentfieldsfilter .jlmf-section:nth-of-type(1){
	flex:1 0 50%;
}
.jlcontentfieldsfilter .jlmf-section:nth-of-type(2){
	flex:1 0 15%;
}
.jlcontentfieldsfilter .jlmf-section:nth-of-type(3){
	flex:1 0 15%;
}
.jlcontentfieldsfilter .jlmf-section:nth-of-type(4){
	flex:1 0 15%;
}
.jlcontentfieldsfilter .jlmf-section:last-child, .jlcontentfieldsfilter_bani .jlmf-section:last-child{
	flex-basis: 100%;
	display: flex;
    display:none;
}
@media (max-width: 600px){  
  .jlcontentfieldsfilter_bani .jlmf-section:nth-of-type(1), .jlcontentfieldsfilter_bani .jlmf-section:nth-of-type(2), .jlcontentfieldsfilter_bani .jlmf-section:nth-of-type(3), .jlcontentfieldsfilter_bani .jlmf-section:nth-of-type(4){
    flex:1 0 50%;
  }  
  .jlcontentfieldsfilter .jlmf-section:nth-of-type(1), .jlcontentfieldsfilter .jlmf-section:nth-of-type(2), .jlcontentfieldsfilter .jlmf-section:nth-of-type(3), .jlcontentfieldsfilter .jlmf-section:nth-of-type(4){
    flex:1 0 100%;
  }  
}
.jlmf-link {
	margin-left:10px
}
.jlmf-label {
	margin:0 0 16px 4px;
    font-size:var(--font-size-large);
}
[class*="jlmf-list"] {
	margin:0 !important
}
[class*="jlmf-list"] input[type='checkbox']{
	height:0;
	width:0;
	line-height:0;
	visibility:hidden;
	-moz-appearance:none
}
[class*="jlmf-list"] > div{
	padding:0 !important;
    user-select: none;
}
[class*="jlmf-list"] > div label{
	color:var(--text-color);
	background-color:#f5f5f5;
	padding:0 10px;
    min-width:57px;
    text-align:center;
    white-space:nowrap;
    line-height:33px;
    height:33px;
    font-size:var(--font-size-small);
	margin-bottom:8px;
    margin-right:6px;
	transition:all var(--transition);
}

[class*="jlmf-list"] > div input[type='checkbox'] + label:hover{
    background-color:var(--accent-color);
    color:#FFF
}
[class*="jlmf-list"] > div input[type='checkbox']:checked + label{
	background-color:var(--accent-color);
    color:#FFF
}
.jlmf-checkbox, .jlmf-radio {margin:0 !important}
.jlmf-section {
    margin-top: 30px;
}
label.jlmf-label {
    display: inline-block;
    padding-bottom: 5px;
    font-family: inherit;
    font-size: .9rem;
    text-transform: uppercase;
	margin: 0;
}
label.jlmf-sublabel {
    display: inline-block;
    font-family: inherit;
	margin: 0;
}
.jlmf-label[for], .jlmf-sublabel[for] {
    cursor: pointer;
}
.jlmf-input, .jlmf-select {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 5px 10px;
    font-family: inherit;
}
.jlmf-checkbox, .jlmf-radio {
    display: inline-block;
    margin-top: 2px;
    margin-right: 5px;
}
[class*="jlmf-list"] {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
}
[class*="jlmf-list"] > div {
    box-sizing: border-box;
    padding-left: 10px;
}
[class*="jlmf-list"] > div:empty {
    display: none;
}
[class*="jlmf-list"] > div > div:not(:first-child) {
    margin-top: 5px;
}
.jlmf-list-2 > div {
    width: 50%;
}
.jlmf-list-3 > div {
    width: 33.3333%;
}
.jlmf-list-4 > div {
    width: 25%;
}
.jlmf-list-5 > div {
    width: 20%;
}
.jlmf-list-6 > div {
    width: 16.6666%;
}
.jlmf-link {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 400;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.jlmf-link:hover {
    text-decoration: underline;
}
.jlmf-button {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    font-family: inherit;
    font-size: .8rem;
    font-weight: 400;
    line-height: 2;
    text-transform: uppercase;
    border: none;
    background-color: #00588a;
    color: #fff;
    cursor: pointer;
}
.jlmf-button:hover {
    background-color: #0070a5;
}
.jlcontentfieldsfilter input {
    height: 32px;
    line-height: 32px;
	margin: 0;
}


/* CATALOG GRID */
.catalog {
    padding:var(--gap) 0 0 0;
}
.catalog--full {
    padding-bottom:var(--gap-large)
}
.catalog__grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:var(--gap);
}
@media only screen and (max-width:980px) {
    .catalog__grid {
        grid-template-columns:1fr 1fr;
    }
}
@media only screen and (max-width:720px) {
    .catalog__grid {
        grid-template-columns:1fr;
        margin:0 auto;
        max-width:480px;
    }
}

/* PROJECT CARD */
.project-card {
    background:var(--background-color-alt);
    position: relative;
    z-index: 50;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow .3s ease
}
.project-card:hover {
    box-shadow: 0px 13px 15px 6px rgba(0, 0, 0, 0.04);
}

.project-card__image {
    display: block
}
.project-card__image img {
    width:100%;
}
.project-card__top {
    width:100%
}
.project-card__title {
    text-decoration: none;
    text-align: center;
    display:block;
}
.project-card__title h3 {
    display: inline-block;
    margin: 0;
    padding: 10px 30px 10px 30px;
    font-size: var(--font-size);
    font-weight:normal;
    color:var(--text-color);
    vertical-align: top;
    text-align:left;
    width:100%
}

h3 .project-card__title {
    
}

.project-card__top h3{
    display: inline-block;
    margin: 0;
    padding: 10px 30px 10px 30px;
    font-size: var(--font-size);
    font-weight:normal;
    color:var(--text-color);
    vertical-align: top;
    text-align:left;
    width:100%
}

.project-card__top h3 .project-card__title{
    color:var(--text-color);
    text-align:left;
}

.project-card__title h2 {
    display: inline-block;
    margin: 0;
    padding: 10px 30px 10px 30px;
    font-size: var(--font-size);
    font-weight:normal;
    color:var(--text-color);
    vertical-align: top;
    text-align:left;
    width:100%;
}

.project-card__title h2 a{
    color:#000;
    text-decoration:none;
}

.project-card__bottom {
    width: 100%;
    display:flex;
    justify-content: space-between;
    align-items: flex-end;
}
.project-card__props {
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    gap:var(--gap-small);
    padding:10px 0 0 30px;
    width: 100%;
}
.prop__item {
    display: flex;
    align-items: center;
}
.prop__values {
    font-size:var(--font-size-large);
    margin:5px 0 0 10px;
    display: flex;
    flex-direction: column;

}
.prop__values span {
    font-size:var(--font-size-small);
    font-weight:300;
    line-height:1;
    color:#777
}
.prop__values sup{
    position:absolute
}
.prop__values strong {
    font-size: 20px;
    line-height: 1
}
.project-card__info {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center
}
.project-card__price-grid {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:var(--gap-small);
    padding:10px 30px;
}
.project-card__price-title {
    font-size:var(--font-size-small)
}
.project-card__price {
    font-size:var(--font-size-large);
    color:var(--accent-color);
    white-space: nowrap;
}
.project-card__more {
    width:100%;
    margin:30px 0;
    position: relative;
}
.project-card__more a{
    position: relative;
    width:100%;
    text-decoration: none;
    color:var(--text-color)
}
.project-card__more::before{
    content:'';
    position:absolute;
    top:50%;
    left:0;
    background-color: rgba(0, 0, 0, .06);
    width:100%;
    height:2px;
    transition: background-color var(--transition);
}
.project-card__more:hover::before{
    background-color: var(--accent-color);
}
.project-card__more a span {
    background-color: var(--background-color-alt);
    padding:0 11px;
    display: inline-flex;
    transition: transform var(--transition);
}
.project-card__more a:hover span {
    transform: translateX(30%);
}
.project-card__more a:hover {
    color:var(--accent-color)
}
.prop__item .icon {
    width: 60px;
    height: 60px;
}
.icon--size {
    background-image: url('../../images/icon-size.png');
}
.icon--square {
    background-image: url('../../images/icon-square.png');
}

@media only screen and (max-width:580px) {
    .project-card__price-grid {
        grid-template-columns: 1fr;
    }
    .prop__item .icon {
        width: 32px;
        height: 32px;
        background-size: 100% auto;
    }
}

/* PROJECT */
.project__wrapper {
    display:grid;
    grid-template-columns: 2.07fr 1fr;
    gap:var(--gap);
    padding-bottom:var(--gap-large)
}
.gallery {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start
}
.gallery__item {
    margin: 20px 20px 0 0;
    padding: 0;
    width: calc(33.333% - 13.3333px);
    transition: box-shadow .25s ease;
    min-height: 100px;
    overflow: hidden
}
.gallery__item:hover {
    box-shadow: rgba(0, 0, 0, .18) 0 3px 6px
}
.gallery__item:nth-of-type(4n+4) {
    margin-right: 0
}
.gallery__item img {
    vertical-align: top;
    width: 100%
}
.gallery__item--main {
    width: 100%;
    margin: 0;
    position: relative;
    min-height: 270px;
    position: relative;
}
.project__sidebar {
    display:flex;
    flex-direction: column;
}
.project__props {
    display:grid;
    grid-template-columns: 1fr 1fr;
    padding:var(--gap-medium) var(--gap);
    gap:var(--gap);
    background-color: #312e2c;
}
.project__props .prop__values {
    color:#FFF
}
.project__props .prop__values span{
    color:#FFF;
    opacity:.85
}
.project__options {
    margin-top:var(--gap);
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:var(--gap);
}
.option__item {
    display:flex;
    align-items: center;
    gap:15%
}
.option__title {
    color:#a6a6a6;
}
.project__pricelist {
    display: flex;
    flex-direction: column;
}
.pricelist__title {
    font-weight: bold;
    font-size:var(--font-size-large);
    line-height:1;
    margin-top:var(--gap)
}
.pricelist__item {
    margin-top:15px;
    display:flex;
    align-items: flex-end;
    gap:var(--gap-small);
    line-height: 1;
}
.pricelist__label {
    width:38%
}
.pricelist__value {
    flex:1;
    font-size:var(--font-size-extra);
    font-weight: bold;
    color:var(--accent-color);
}
.project__order {
    margin-top: var(--gap-large);
}
.project__order .button {
    width:100%
}
.project__complectation {
    margin: var(--gap) 0;
    display: flex;
    justify-content: center;
}
.project__calc {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px 61px;
}
.calc__right {
    max-width:260px
}
.project-calc-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 10px;
    color: var(--text-color);
    text-decoration: none;
    gap: var(--gap-medium);
    background-color: transparent;
    transition: all var(--transition);
    text-transform: uppercase;
}
.project-calc-button img {
    filter: invert(80%);
    transition: filter var(--transition);
}
.project-calc-button:hover {
    background-color: var(--accent-color);
    color:#FFF
}
.project-calc-button:hover img {
    filter: invert(0);
}

@media (max-width:900px) {
    .project__wrapper {
        grid-template-columns: 1fr;
        padding-bottom:0
    }
    .gallery__item {
        min-height: auto
    }
    .project__calc {
        display: none;
    }
}

/* COMPLECTATION */
.complectation {
    padding: var(--gap-medium) 0 var(--gap-large) 0;
    width: 100%;
    max-width: 1920px;
    background-color:var(--background-color-alt)
}

.complectation__title {
    text-align: center;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 50px 0
}

.complectation__wrapper {
    position: relative;
    overflow: hidden;

}

ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:relative;
    overflow: hidden;
    background-color: var(--accent-color-secondary);
}

ul.tabs li {
    margin: 0;
    padding: 0;
    flex: 1
}

ul.tabs a {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
    text-align: center;
    transition: color .25s ease, background-color .25s ease
}

ul.tabs a:hover {
    color: #FFF;
    background-color: var(--accent-color)
}

ul.tabs a.active {
    color: #FFF;
    background-color: var(--accent-color)
}

div.tabs-content {
    padding: 0;
}
.table {
    padding:var(--gap-medium) var(--gap);
    background-color:var(--background-color);
}
.table table {
    width: 100%;
    border-spacing: 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden
}

.tab-title {
    pointer-events: none;
}

.table table tr:last-child {
    box-shadow: none
}


.table table th,
.table table td {
    padding: 20px 20px 20px 70px;
    vertical-align: top;
    line-height: 1.3
}
.table table td {
    font-weight: 300;;
    border-bottom:rgba(0, 0, 0, .04) 1px solid;
}
.table table td:first-child {
    padding: 20px 0 20px 0px;
    background-color:transparent;
    min-width:230px
}
.table table tr:last-child td {
    border-bottom: 0;
}

.table table td {
    text-align: left;
}

.table table td:first-child {
    max-width: 15%;
    padding-right: 0px;
    font-weight: 500
}

@media(max-width:1230px) {
    .table table td:first-child {
        max-width: 35%;
        width: 35%;
        padding-right: 20px
    }

    ul.tabs a {
        font-size: 20px
    }

    .tab-title {
        display:none !important
    }
    .table table td:first-child {
        min-width:auto
    }
}

@media(max-width:900px) {
    .complectation__title {
        font-size: 26px;
        margin-bottom: 20px
    }

    .table table th,
    .table table td {
        padding: 15px 8px;
        font-size: 14px;
        line-height: 1.2
    }

    ul.tabs a {
        font-size: 16px;
        height: 50px
    }
    .table {
        padding:20px 5px;
    }

}

/* CALL (FORM) */
.call {
    width:100%;
    max-width: 1920px;
    padding:var(--gap) 0
}
.call--alt {
    background-color: var(--background-color-alt);
}
.call__content {
    position:relative;
}
.call__branch {
    position:absolute
}
.call__branch--left {
    bottom:50px;
    left:-110px
}
.call__branch--right {
    bottom:140px;
    right:-110px
}
.call__wrapper {
    position:relative;
    z-index:10;
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:var(--gap);
    min-height:420px;
    padding:var(--gap-large);
    background:url('../../images/call-bg.jpg') 50% 50% / cover no-repeat var(--accent-color-secondary)
}
.call__description {
    font-size:var(--font-size-large);
    margin:var(--gap-medium) 0 0 0;
    color:#b4b4b4
}
.call__title {
    margin:0;
    color:#FFF
}
.call__form .form-answer,
.call__form .checkbox__description {
    color:#FFF
}
@media only screen and (max-width:1120px) {
    .call__wrapper {
        grid-template-columns: 1.5fr 1fr;
    }
    .call__title {
        font-size:36px
    }
    .call__description {
        font-size:var(--font-size);
    }
}
@media only screen and (max-width:960px) {
    .call__wrapper {
        max-width:580px;
        margin:0 auto;
        grid-template-columns: 1fr;
    }
    .call__branch--left {
        bottom:10%;
        left:10px
    }
    .call__branch--right {
        bottom:60%;
        right:10px
    }
    .call__title {
        font-size: var(--h2-font-size);
    }
    .call__title,
    .call__description {
        text-align: center;
    }
}
@media only screen and (max-width:720px) {
    .call__wrapper {
        max-width:480px;
        padding:30px
    }
    .call__title {
        font-size:18px
    }
    .call__description {
        font-size:12px;
        font-weight:300;
        color:#FFF;
        line-height:1.4
    }
    .call__description br {
        display: none;
    }
    .call__branch {
        display:none
    }
}

/* ALBUM */
.album {
    padding: 40px 0 50px 0;
    width:100%;
    max-width:1920px;
    background-color:var(--background-color-alt)
}
.album__content {
    width:100%;
    padding:0 15px
}
.album__info {
    width:100%;
    max-width:1200px;
    margin:0 auto var(--gap-large) auto;
}
.album__description {
    padding:0;
    margin:0;
    font-size:var(--font-size-large)
}
.album__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: min-content;
    gap: var(--gap);
    padding: 0
}
.photo__thumb {
    position:relative;
    grid-column: span 3;
}
.photo__thumb:nth-of-type(1),
.photo__thumb:nth-of-type(2),
.photo__thumb:nth-of-type(3) {
    grid-column: span 4;
}
.album__grid img {
    display:block
}
.photo__thumb a {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .05);
}
.photo__thumb a:before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius:50%;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    position: absolute;
    display: block;
    background: url('../../images/zoom.png') 50% 50% / 22px auto no-repeat rgba(0, 0, 0, .45);
    opacity: 0;
    transform: scale(.9);
    z-index: 10;
    transition: opacity .3s ease, transform .3s ease;
}
.photo__thumb a:hover:before {
    opacity: 1;
    transform: scale(1)
}
.album__more {
    padding-top: var(--gap-large);
}
.album__more .button{
    margin:0 auto;
    max-width:378px
}
@media(max-width:900px) {
    .album__title,
    .album__description {
        text-align: center;
    }
    .album__description {
        font-size:var(--font-size);
        font-weight:300
    }
    .photo__thumb {
        grid-column: span 4;
    }
}
@media(max-width:720px) {
    .album__title,
    .album__description {
        text-align: center;
    }
    .album__description {
        font-size:var(--font-size);
        font-weight:300
    }
    .photo__thumb {
        grid-column: span 6;
    }
    .photo__thumb:nth-of-type(1),
    .photo__thumb:nth-of-type(2),
    .photo__thumb:nth-of-type(3) {
        grid-column: span 6;
    }
}

/* ABOUT */
.about {
    width:100%;
    max-width:1920px;
    padding-bottom:var(--gap-large);
    background-color:var(--background-color-alt)
}
.about__title {
    text-align: center;
    margin-bottom: var(--gap-large);
}
.about__grid {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:var(--gap);
    margin-bottom:var(--gap-large);
}
.about__item {
    display:grid;
    grid-template-columns: 80px 1fr;
    gap:var(--gap-medium)
}
.about__icon img {
    display: block;
}
.about__secondary-title {
    padding:0;
    margin:12px 0 10px 0;
    line-height: 1.3;
}
.about__text p {
    padding:0;
    margin:0;
    color:#777
}
.about__article {
    font-size:var(--font-size-large);
    display: flex;
    justify-content: space-between;
    gap:var(--gap-large)
}
.about__story p {
    margin:0 0 var(--gap) 0
}
.about__story a {
    text-decoration: none;
}
.about__photo {
    min-width:381px
}
.about__photo img{
    display: block;
}

@media(max-width:900px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
    .about__item {
        grid-template-columns: 48px 1fr;
    }
    .about__secondary-title {
        margin: 6px 0 8px 0;
    }
    .about__article {
        gap:0;
        font-size:var(--font-size);
    }
    .about__article a{
        display:block;
        text-align: center;
    }
    .about__photo {
        display: none;
    }
}

/* REVIEWS */
.reviews {
    width:100%;
    max-width:1920px;
    margin:0 auto;
    padding:var(--gap-large) 0
}
.reviews__top {
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap:var(--gap)
}
.reviews__title-wrapper {
    position:relative;
}
.reviews__title-wrapper::before {
    content: '';
    display: block;
    width: 4px;
    background-color: var(--accent-color);
    height: 89%;
    left: 0;
    top: 4%;
    position: absolute;
}
.reviews__title {
    padding:0 0 0 var(--gap);
    margin:0
}
.reviews__more {
    min-width:30%
}
.reviews__more .button {
    width:100%
}
.reviews__grid {
    padding-top:var(--gap);
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:calc(var(--gap) - 2px)
}
.review__location {
    color:#777;
    font-size:var(--font-size-small);
    padding-top:var(--gap-medium)
}
@media(max-width:900px) {
    .reviews__top {
        justify-content: center;
    }
    .reviews__more {
        display:none
    }
    .reviews__title-wrapper::before {
        display: none;
    }
    .reviews__title {
        padding:0;
        text-align: center;
    }
}
@media(max-width:720px) {
    .reviews__grid {
        grid-template-columns: 1fr;
        gap:var(--gap)
    }
}

/* FOOTER */
.footer {
    width:100%;
    max-width:1920px;
    background-color: var(--background-color-alt);
    padding:var(--gap) 0
}
.footer__content {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:var(--gap)
}
.footer__grid {
    width:100%;
    display: flex;
    justify-content: space-between;
    gap:var(--gap-medium)
}
.footer__logo {
    display: flex;
}
.footer__brand {
    width:25%;
    display:flex;
    flex-direction: column;
    gap:var(--gap)
}
.footer__privacy a {
    font-size:var(--font-size-small);
    color:#777;
    text-decoration: none;
}
.footer__media-social {
    display: flex;
    align-items: center;
    gap:var(--gap)
}
.footer__menu {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:var(--gap);
    width:50%
}
.footer-menu ul {
    padding:0;
    margin:0;
    list-style:none
}
.footer-menu li{
    padding:0;
    margin:0 0 var(--gap-small) 0;
    line-height:1.7
}
.footer-menu a{
    color:var(--text-color);
    text-decoration: none;
}
.footer-menu a:hover{
    color:var(--accent-color)
}
.footer-menu__title {
    position: relative;
    font-weight:normal;
    color:#777;
    text-transform: uppercase;
    font-size:var(--font-size-large);
    padding:0;
    margin:0 0 var(--gap-medium) 0;
    line-height:1;
}
.footer-menu__title::before {
    content:'';
    width:var(--gap);
    height:2px;
    position:absolute;
    left:calc(0px - calc(var(--gap) * 1.5));
    top:8px;
    background-color:#777
}
.footer__contacts {
    display:flex;
    flex-direction: column;
    align-items: flex-end;
    gap:var(--gap-medium)
}
.footer__address {
    text-align:right;
    padding-top:10px
}
.footer__callbacks {
    width:100%;
    display:flex;
    justify-content: flex-end;
    gap:var(--gap)
}
.footer__button {
    min-width:32%
}
.footer__button .button {
    width:100%
}
.footer__copyrights {
    width:100%;
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:var(--gap-medium)
}
@media(max-width:980px) {
    .footer__media-social span {
        display:none
    }
}
@media(max-width:900px) {
    .footer__grid {
        width:initial;
        align-items: center;
        flex-direction: column;
    }
    .footer__brand {
        width:initial;
        align-items: center;
    }
    .footer__menu {
        width:100%;
        grid-template-columns:1fr;
    }
    .footer-menu__title::before {
        display: none;
    }
    .footer-menu__title,
    .footer-menu li {
        text-align:center
    }
    .footer__contacts {
        align-items: center;
    }
    .footer__address {
        text-align: center;
    }
    .footer__callbacks {
        justify-content: center;
    }
    .footer__copyrights {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* WEBHAIL */
.webhail a{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color:#777
}
.webhail a:hover{
    color:var(--accent-color)
}
.webhail img {
    margin-left:10px
}

/* TEXTURE WRAPPER */
.texture-wrapper {
    width:100%;
    max-width:1920px;
    margin:0 auto;
    background:url('../../images/texture.jpg') 50% 0 / 1920px auto no-repeat var(--background-color-alt)
}
@media(max-width:900px) {
    .texture-wrapper {
        background: none;
    }
}

.texture-wrapper-page {
    width:100%;
    max-width:1920px;
    margin:0 auto;
    background:url('../../images/texture-page.jpg') 50% 0 / 1920px auto no-repeat var(--background-color-alt)
}
@media(max-width:900px) {
    .texture-wrapper-page {
        background: none;
    }
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 10px 0 0 0;
    width:100%;
    max-width:1920px
}
.breadcrumbs ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 10px 0 10px 0;
}
.breadcrumbs li {
    list-style: none;
    padding: 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #777;
}
.breadcrumbs a {
    color: #000;
    text-decoration: none;
}
.breadcrumbs li:not(:last-child):after {
    content: '/';
    letter-spacing: -3.2px;
    padding: 0 10px;
    color: #000
}
.breadcrumbs li:first-child{
    display:none;
}

@media (max-width:1080px) {
    .breadcrumbs {
        margin-top:70px
    }
}
@media (max-width:900px) {
    .breadcrumbs {
        width:100%
    }
    .breadcrumbs ul {
        justify-content: center;
    }
}

/* DOC HEADING */
.document-heading {
    margin:0 0 var(--gap) 0;
    padding:0;
    position:relative
}
.document-heading::before {
    content: '';
    display: block;
    width: 4px;
    background-color: var(--accent-color);
    height: 89%;
    left: 0;
    top: 4%;
    position: absolute;
}
.document-heading__title {
    padding: 0 0 0 var(--gap);
    margin:0;
    font-size:var(--h2-font-size)
}
@media (max-width:900px) {
    .document-heading::before {
        display:none
    }
    .document-heading__title {
        padding: 0;
        text-align: center;
    }
}

/* SIMPLE PAGE DATA */
.pagedata {
    width:100%;
    padding-bottom:var(--gap);
    background-color: var(--background-color-alt);
}
/* ICON */
.icon,
.icon svg {
    width:22px;
    height:22px;
}
.icon svg {
    transition:fill var(--transition)
}

/* COLOR-HIGHLIGHT */
.color-highlight {
    color:var(--accent-color)
}

/* PHONE */
.phone a {
    color:var(--accent-color-secondary);
    white-space:nowrap;
    font-size: 22px;
    text-decoration: none;
    font-weight: normal;
    display:flex;
    align-items: center;
    gap:var(--gap-small);
    line-height:1.1
}
.phone .icon svg {
    fill:var(--accent-color)
}
.phone a:hover {
    color:var(--accent-color)
}

/* EMAIL */
.email a{
    text-decoration: none;
    color:#777
}
.email a:hover {
    color:var(--accent-color)
}

/* ADDRESS */
address {
    font-style: normal;
}

/* SOCIAL */
.social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.social__item {
    margin: 0 8px 0 0;
    width: 33px;
    height: 32px;
    flex-basis: 33px;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    border-radius: 50%;
}

.social .social__item:last-child {
    margin-right: 0
}

.social__icon {
    width: 32px;
    height: 32px;
    transition: transform .25s ease
}

.social__item:hover .social__icon {
    transform: scale(1.08);
}

.social__item:active .social__icon {
    transform: scale(.94);
}


/* FILE UPLOAD LIST */
.rf-filenames-list-alt {
    font-size: 14px;
    width: 100%;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:8px;
    flex-wrap: wrap
}

.rf-filenames-list-alt .file-name {
    background: url('../../images/close.svg') 12px 50% / 8px 8px no-repeat rgba(255,255,255,.7);
    margin: 8px 0 0 0;
    line-height: 1.87;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    padding: 0 20px 0 28px;
    transition: all .25s ease;
    cursor: pointer;
    user-select: none;
    transition: background-color .25s ease,transform .15s ease
}

.rf-filenames-list-alt .file-name:hover {
    background-color: rgba(255,255,255,1)
}

.rf-filenames-list-alt .file-name:active {
    transform: scale(.8)
}

/* MODALS */
#callmeModal,
#signModal {
    max-width: 540px;
    width: 100%
}

#orderModal,
#calcModal {
    max-width: 580px;
    width: 100%
}

body .fancybox-content {
    border-radius: var(--border-radius);
    padding: calc(var(--gap) * 2);
    overflow: initial;
    background: #f3f3f3;
}

.modal-title {
    font-family: 'Bicubik', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: normal;
    z-index: 999;
    text-align: center;
    transition: transform .3s .5s ease
}

body .fancybox-slide--html .fancybox-close-small {
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    right: 15px;
    top: 15px;
    border-radius: 50%;
    background-color: #d3d3d3;
    transition: background-color .25s ease;
}

/* CHECKBOX */
.checkbox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center
}

.checkbox__switch input {
    display: none
}

.checkbox__switch label {
    width: 26px;
    height: 26px;
    cursor: pointer;
    margin-top: 5px;
    position: relative
}

.checkbox__description {
    margin-left: 26px;
    font-size:var(--font-size-small);
    line-height:1;
    font-size: 13px;
}

.checkbox__switch label:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    margin: 1px;
    background: #FFF;
    transform: scale(0);
    transition: transform .3s ease;
}

.checkbox__switch label:after {
    content: '';
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: #FFF;
    border: #dadfeb 1px solid;
    transition: background-color .3s cubic-bezier(.175, .885, .32, 1.275)
}

.checkbox__switch input:checked+label:before {
    transform: scale(1);
    background-image: url(../../images/check.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 60% auto
}

.checkbox__switch input:disabled+label {
    cursor: not-allowed
}

/* COOKIE NOTICE */
#cookieNotice {
    width:100%;
    max-width:520px;
    border-radius:var(--border-radius);
    background-color:var(--background-color);
    border:var(--delimiter-color) 1px solid;
    padding:var(--gap-medium);
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:var(--gap-medium);
    color:var(--text-color);
    font-size:var(--font-size-extra-small);
    line-height:1.3;
    position:fixed;
    z-index:201;
    left:10px;
    bottom:10px;
    transition:all var(--transition);
}
#cookieNotice .button {
    min-width:fit-content;
    border-radius:var(--border-radius-alt);
}
@media (max-width: 640px) {
    #cookieNotice {
        left:0;
        bottom:0;
        border-radius:0;
        border:none;
        border-top:var(--delimiter-color) 1px solid;
        border-right:0;
        border-bottom:0;
        border-left:0;
        max-width:100%;
    }
}

/* SCROLLUP */
.scrollup {
    display: none;
    position: fixed;
    cursor: pointer;
    z-index: 200;
    bottom: 10px;
    right: 8px;
    width: 42px;
    height: 42px;
    background-color: rgba(0, 0, 0, .06);
    border-radius: 2px;
    transition: background-color .3s ease
}

.scrollup:hover {
    background-color: rgba(155, 155, 155, .3)
}

.scrollup svg {
    width: 42px;
    height: 42px;
    -webkit-transform: scale(.6);
    transform: scale(.6)
}

.scrollup__arrow {
    -webkit-transition: fill .3s ease;
    transition: fill .3s ease;
    fill: rgba(0, 0, 0, .3)
}

.scrollup:hover .scrollup__arrow {
    fill: #8eab8c
}

.cat-children div{
    display:inline-block;
    margin-right:20px;
}

@media (max-width:900px) {
    .cat-children{
        text-align:center;
    }
}

a.sigplus-image>img{
    margin:0 5px;
}