:root {
    --accent-color: #30cb00;
}
.theme-blue {
    --accent-color: #2f32ff;
}
.theme-orange {
    --accent-color: #ff9513;
}
.theme-mint {
    --accent-color: #06d899; 
}
.theme-black {
    --accent-color: #000;
}
.theme-yellow {
    --accent-color: #e9c810;
}
.theme-custom {
    --accent-color: ; 
}

*,
*:after,
*:before {
    box-sizing: border-box
}

@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;
}

html {
    line-height: 1.6;
    font-size: 16px;
    min-width: 320px;
}

body {
    margin: 0;
    height: 100%;
    word-wrap: break-word;
    background-color: #fff;
    color: #000;
}

body,
input,
textarea,
button {
    font-family: 'Geometria', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
    font-weight:300
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Geometria', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
}

h1 {
    font-size: 60px
}

h2 {
    font-size: 50px;
    font-weight:bold;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

figure {
    padding: 0;
    margin: 0
}

img {
    border: 0;
    max-width: 100%
}

a {
    color: #1e1e1e;
    -webkit-transition: color .2s ease;
    transition: color .2s ease
}

a:active,
a:hover {
    color: var(--accent-color)
}

ul {
    list-style: circle
}

ol {
    list-style: decimal
}

ul,
ol {
    margin-top: 12.8px;
    margin-top: 12.8px;
    margin-top: .8rem
}

li {
    margin-bottom: 12.8px;
    margin-bottom: 12.8px;
    margin-bottom: .8rem
}

button,
input,
optgroup,
select,
textarea {
    font-size: 100%;
    line-height: 1.15
}

textarea {
    overflow: auto
}

.wow {
    visibility: hidden;
}

[class$="__content"] {
    margin: 0 auto;
    width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    font-stretch: condensed
}

@media only screen and (max-width:1230px) {
    [class$="__content"] {
        width: 100% !important;
    }
}


/* CORE */
.button {
    background: var(--accent-color);
    color: #FFF;
    white-space: nowrap;
    padding: 0 42px;
    line-height: 70px;
    font-weight: normal;
    font-size: 18px;
    height: 70px;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    border-radius:9px;
    transition: transform .25s ease, color .25s ease;
    outline: none;
    text-align: center;
}
  

.button:hover {
    transform: scale(1.034);
    color: #FFF
}


.button:active {
    transform: scale(.94);
}

.button span {
    z-index: 10;
    position: relative;
}

.button--glow {
    position: relative;
    overflow: hidden;
}

.button--glow:before {
    content: '';
    position: absolute;
    left: -20%;
    top: -10%;
    width: 0;
    height: 100%;
    transform: rotate(15deg) scale(1, 2);
    box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.7);
    animation: button-glow 3000ms ease-in-out infinite;
}

@-webkit-keyframes button-glow {
    0% {
        left: -900%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

@keyframes button-glow {
    0% {
        left: -900%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

.button--alt {
    border-radius: 10px;
    background: #f7f7f7;
    height: 55px;
    line-height:55px;
    color:#000;
    padding:0 30px;
    font-weight:normal;
    font-size:16px
}
.button--alt:hover {
    color:#000;
}

.button--small {
    height: 55px;
    line-height: 55px;
    font-size: 16px;
    font-weight: 300;
    padding:0 20px
}
.button--small:hover {
    color:#FFF !important
}
  
  

*::-webkit-input-placeholder {
    color: #777;
}

*::-moz-placeholder {
    color: #777;
}

*:-ms-input-placeholder {
    color: #777;
}

*::placeholder {
    color: #777;
}

::-moz-selection {
    background: rgba(0, 0, 0, .3);
    color: #FFF
}

::selection {
    background: rgba(0, 0, 0, .3);
    color: #FFF
}

::-moz-selection {
    background: rgba(0, 0, 0, .3);
    color: #FFF
}

*::-webkit-scrollbar-track {

    background-color: rgba(0, 0, 0, .1);
}

*::-webkit-scrollbar {
    width: 10px;
    background-color: rgb(255, 255, 255);
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(122, 122, 122);
    border-radius:2px
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-color);
}



/* MOBILE STICKY HEADER */
.mobile-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    margin: 25px 0 -110px 0;
    position: sticky;
    z-index: 50;
    width: 100%;
    top: 0;
    background-color: transparent;
    padding: 0 15px;
    will-change: transform;
    transition: transform .2s linear, background-color .2s linear;
}
.mobile-callback {
    border: 0;
    outline: none;
    padding: 0 8px;
    height: 60px;
    line-height: 60px;
    background-color: transparent;
    font-weight: bold;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: color .3s ease;
}


.mobile-callback__icon {
    width: 47px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-callback__icon svg {
    width: 28px;
    height: 28px;
    transition: transform .2s ease;
}

.mobile-callback__icon:hover svg {
    transform: scale(1.15)
}

.mobile-callback__label {
    display: none
}

.mobile-callback:hover .mobile-callback__icon>svg {
    fill: #000;
}

.mobile-header.headroom--not-top {
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, .14) 0 1px 5px;
}

.mobile-header.headroom--not-top .mobile-callback__label {
    display: block
}
.mobile-header__logo {
    display:none;
    flex:1;
    margin-left:20px
}
.mobile-header__logo img {
    height:32px
}
.headroom--not-top .mobile-header__logo {
    display:flex;
    flex-direction:column;
    align-items: flex-start;
    justify-content: center;
}

.mobile-header__brand {
    opacity:0;
    flex:1;
    align-items:center;
    justify-content: center;
    padding-left:20px;
    padding-bottom:4px
}
.mobile-header__brand img{
    display:block;
    height:40px
}
.headroom--not-top .mobile-header__brand {
    display:flex;
    opacity:1;
}
@media only screen and (min-width:901px) {
    .mobile-header {
        display: none
    }
}
@media only screen and (max-width:720px) {
    .mobile-header {
        margin:0 0 -130px 0;
    }
}
@media only screen and (max-width:640px) {
    .mobile-header.headroom--not-top .mobile-callback__label {
        display: none
    }
}


/* HEADER */
.header {
    padding: 0;
    min-height: 116px;
}

.header__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px
}

.header__brand,
.header__logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.header__logo {
    text-decoration: none
}

.logo {
    fill: var(--accent-color)
}

.header__logo svg {
    vertical-align: top;
    border: 0;
    margin-bottom: 4px;
}

.header__contacts {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top:20px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.contact__label {
    padding-left: 28px;
    font-size: 16px;
    margin-bottom: 2px;
    color: #777
}

.contact__phone-link {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2
}

.contact__email-link {
    font-size: 16px;
    text-decoration:none;
    font-weight: 300;
    color:#777;
    line-height: 1.2
}

.footer__socials .contact__email-link {
    margin-top:10px
}

.contact__email-link:hover {
    color:var(--accent-color)
}

.contact__icon {
    width:26px;
    height:26px;
    margin-right: 10px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact__icon img {
    transition: transform .2s ease;
}

.contact__phone-link:hover .contact__icon img {
    transform: scale(1.35)
}

.socials {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.socials__item {
    margin: 0 10px 0 0;
    padding-top: 2px;
}

.socials__item:last-child {
    margin-right: 0;
}

.social__link svg,
.social__link img {
    width: 37px;
    height: 37px;
    transition: transform .2s ease;
}

.social__link:hover svg,
.social__link:hover img {
    transform: scale(1.05)
}


@media only screen and (max-width:1100px) {
    .header__content {
        flex-wrap: wrap
    }

    .header__contacts--calc {
        display:none
    }
}

@media only screen and (max-width:1000px) {
    .header__contacts--email{
        display: none
    }
}

@media only screen and (max-width:900px) {
    .header__content {
        margin-top:26px;
        padding-left:0;
        padding-right:0
    }

    .header__brand {
        padding-left: 60px
    }

    .header__logo {
        z-index: 60;
        position: relative;
    }

    .header__logo img {
        height:50px;
        margin-top:8px
    }
    .header__contacts--social {
        margin-right:80px
    }
    .header__contacts--order-call,
    .header__contacts--phone {
        display:none
    }
}

@media only screen and (max-width:720px) {
    .header {
        min-height: initial;
        padding:20px 0 0 0
    }
    .header__brand {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-right: 60px;
        margin-bottom: 10px;
        background-color: #f8f8f8;
        box-shadow: #f8f8f8 0 10px 10px, #f8f8f8 0 -30px 0;
        z-index: 40
    }
    .header__logo img {
        height:40px;
        margin-top:16px
    }
    .header__contacts--social {
        display:none
    }

}


/* NAV-DISPLAYED */
body.nav-displayed {
    overflow: hidden;
}

/* NAV-TRIGGER */
.nav-trigger {
    z-index: 999;
    outline: none !important
}

/* MOBILE-MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 40;
    transform: translateY(-100%);
    background-color: #fff;
    will-change: transform;
    transition: transform .2s ease-out;
}

.nav-displayed .mobile-menu {
    transform: translateY(0);
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 90px;
    border-radius: 30px;
    overflow: auto;
    height: 100vh;
    padding-bottom: 20px;
}

.mobile-menu .socials {
    margin-top:20px
}

body:has(.headroom--not-top) .mobile-menu__content {
    padding-top:80px;
}

.mobile-menu__logo {
    margin-bottom:20px;
    display:none;
}

body:has(.headroom--not-top) .mobile-menu__logo {
    display:block;
}

.mobile-menu nav ul {
    padding: 0 0 0 60px;
    margin: 0;
    list-style: none
}

.mobile-menu nav ul li a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase
}

.mobile-menu nav ul ul {
    margin:8px 0 20px 0;
    font-size:13px;
}

.mobile-menu .contact {
    margin-top: 20px
}

.mobile-menu .contact__label {
    display: none
}

.mobile-menu .social__link svg,
.mobile-menu .social__link img {
    width: 32px;
    height: 32px;
}

@media only screen and (max-width:720px) {
    .mobile-menu__content {
        align-items: center;
    }

    .mobile-menu nav ul {
        padding: 0;
        text-align: center
    }
}

/* NAVIGATION */
.navigation {
    height: 60px;
    z-index: 200;
    background-color:#f7f7f7;
    transition: height .2s linear, box-shadow .2s linear;
}

.navigation__content {
    width:1270px;
    display:flex;
    align-items:center
}

.navigation.headroom {
    position: sticky;
    top: 0;
}

.navigation.headroom--not-top:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(6px);
    top: 0;
    left: 0;
    z-index: -1
}

.navigation__logo {
    visibility:hidden;
    width:0;
    position:relative;
    overflow:hidden;
    width:0;
    opacity:0;
    transform:translateX(-10px);
    transition:all .25s ease;
}

.navigation__logo img{
    height:40px;
    display:block
}

.navigation.headroom--not-top .navigation__logo {
    visibility: visible;
    width:auto;
    opacity:1;
    transform:translateX(0);
    margin-left:20px;
    margin-right:40px;
}

.navigation.headroom--not-top {
    display:flex;
    flex-direction:column;
    justify-content:center;

    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 7px;
}

.navigation nav {
    flex:1
}

.navigation ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.navigation li {
    padding: 0;
    margin: 0
}

.navigation nav>ul {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    text-align: center;
}

.navigation.headroom--not-top nav>ul {
    background-color: transparent !important;
    box-shadow: none
}

.navigation.headroom--not-top .navigation__item--order {
    flex-basis: auto;
}

.navigation.headroom--not-top .navigation__item--order .button {
    height: 36px;
    line-height: 36px;
    margin: 2px 0 0 0;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 300
}

.navigation nav ul ul {
    background-color: #f7f7f7;
    padding: 0 0 0 10px;
    border-radius:0 0 10px 10px;
    min-width:210px;
    position: absolute;
    z-index: 250;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0 2px 4.5px;
    transform: translateY(-8px);
    transition: visibility .25s ease, opacity .25s ease, transform .25s ease;
}

.navigation.headroom--not-top nav ul ul {
    background-color: #f7f7f7;
    margin-left:12px;
    border-radius:0 0 10px 10px
}

.navigation nav ul ul li {
    border-bottom: rgba(0, 0, 0, .05) 1px solid;
    margin-right:10px
}

.navigation nav ul ul li:last-child {
    border-bottom: none
}

.navigation nav ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(-2.5px)
}

.navigation.headroom--not-top nav ul li:hover>ul {
    transform: translateY(0)
}

.navigation li a {
    color: #000;
    text-decoration: none;
    display: block;
    line-height: 60px;
    background-color: transparent;
    will-change: color;
    padding: 0 20px;
    transition: line-height .2s linear, color .2s ease, font-size .25s ease;
    white-space: nowrap;
}

.navigation li li a {
    padding-left:10px;
    line-height:40px
}

.navigation.headroom--not-top li a {
    font-size: 14px
}

.navigation li:hover>a,
.navigation li.active>a {
    color: var(--accent-color)
}

.navigation__item a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.navigation__item--catalog > a:first-child:after{
    content: url('../images/icon-dropdown.svg');
    margin-left: 15px;
    display: inline-block;
    vertical-align: top;
    transform: translateY(1px);
}


@media only screen and (max-width:1180px) {
    .navigation li a {
        font-size: 14px;
        padding-right:0;
    }
}

@media only screen and (max-width:900px) {
    .navigation {
        display: none !important
    }
}

/* INDEX MAIN */
.main {
    background:url('../images/main-bg.jpg') 50% 0 / auto no-repeat;
}
.main__content {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height:880px; /* 880px */
    padding-top:15vh
}

.main__title {
    color: #FFF;
    font-weight: bold;
    font-size: 60px;
    line-height: 1.2;
    display: block;
    text-shadow: rgba(0, 0, 0, .35) 0 5px 10px;
    padding:0;
    margin:0;
    text-align:center
}

.main__button {
    margin-top:50px
}
.main__button .button{
    min-width:280px
}
  

@media only screen and (max-width:900px) {
    .main__title {
        font-size: 35px;
        margin-bottom: 40px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .main__content {
        padding-bottom:60px;
        min-height:60vh
    }

}
@media only screen and (max-width:720px) {
    .main {
        background-size: cover;
    }
    .main__content {
        min-height:auto;
        padding-bottom:50px
    }
}


/* CALC FORM */
.calc-form {
    margin-top: 5px;
    width: 100%;
}

.calc-form .form-answer {
    position:absolute;
    left:0;
    top:100%;
}

.calc-form .calc-form__checkbox {
    position:absolute;
}

.calc-form .checkbox__description {
    font-weight:normal;
    color:#FFF;
    padding-top:4px;
}

.calc-form .field {
    margin-bottom: 20px
}

.calc-form .field--nomargin {
    margin-bottom: 0
}

.calc-form .field input[type="text"],
.calc-form .field input[type="email"],
.calc-form .field input[type="tel"] {
    height: 70px
}



body .file-attach {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}
body .calc-form .file-attach {
    color:#fff;
}

.file-attach img {
    margin-right: 4px;
    vertical-align: top;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px)
}

.file-attach small {
    color: #9a9a9a
}

.form-grid__field input[type=file] {
    display: none
}

#calcproject-file {
    display:none;
}

/* POPULAR */
.popular {
    padding: 80px 0 30px 0;
}

.popular__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px
}

.popular__title {
    padding: 0;
    margin: 5px 0 0 0;
    line-height: 1.2
}

.popular__switches {
    margin-top:10px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 600px;
}

.popular__switches a{
    white-space: nowrap;
    font-size:16px;
    text-decoration:none;
    line-height:48px;
    padding:0 18px;
    background-color:#f7f7f7;
    color:#000;
    transition:all .25s ease
}
.popular__switches a:hover{
    background-color:#e7e7e7;
}

.popular__switches a:first-child {
    border-radius:10px 0 0 10px
}

.popular__switches a:last-child {
    border-radius: 0 10px 10px 0
}

.popular__switches a.switch-active {
    color:#FFF;
    background: var(--accent-color);
}

.switch-separator {
    font-size:28px;
    line-height:1;
    padding:0 8px;
    color:#777
}

.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 {
    display:flex;
    justify-content:center;
    align-items: center;
    margin-top:60px;

}


@media (max-width:1200px) {
    .popular__header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px
    }

    .popular__title {
        margin-bottom: 30px
    }

    .popular__switches {
        width: 100%
    }
}

@media (max-width:900px) {
    .popular {
        padding-bottom:50px;
        padding-top:30px
    }
    .popular__title {
        font-size: 34px;
        text-align:center;
        margin-bottom:0
    }

    .popular__switches {
        justify-content: center;
    }

    .popular__switches a{
        font-size:12px;
        line-height:30px;
        padding:0 6px;
    }

}

/* INDEX PORTFOLIO */
.portfolio {
    padding: 80px 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.portfolio__wrapper {
    width: 100%;
    padding: 0 0 0 50px;
    max-width: 1920px;
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 10px));
    grid-auto-rows: max-content;
    grid-gap: 20px;
    gap: 20px;
}

.portfolio__title {
    padding: 0;
    margin: 0;
    line-height: 1.3
}

.portfolio__description {
    font-size: 18px;
    padding: 0;
    margin: 15px 0 25px 0
}

.portfolio__media {
    padding-right: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.portfolio__controls {
    width: calc(66.6666% - 6.666px);
    padding-top: 40px
}

.portfolio__thumb a {
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .05)
}

.portfolio__thumb a:before {
    content: '';
    width: 80px;
    height: 80px;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    position: absolute;
    display: block;
    background: url('../../images/zoom.svg') 50% 50% / 16px auto no-repeat var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(.9);
            transform: scale(.9);
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease
}

.portfolio__thumb a:hover:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1);
}

@media only screen and (max-width:1360px) {
    .portfolio__wrapper {
        padding: 0 15px;
    }
}

@media only screen and (max-width:1200px) {
    .portfolio__title {
        font-size: 24px
    }

    .portfolio__description {
        font-size: 16px;
        margin: 15px 0
    }
}

@media only screen and (max-width:720px) {
    .portfolio {
        padding: 20px 0;
    }

    .portfolio__wrapper {
        -ms-grid-columns: 100%;
            grid-template-columns: 100%;
        grid-gap: 40px;
        gap: 40px;
        padding: 25px;
        margin: 0 auto;
        max-width: calc(100% - 30px);
        background-color: #FFF;
        border-radius: 5px;
        box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
    }

    .portfolio__intro {
        text-align: center;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }

    .portfolio__media {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1
    }

    .portfolio__controls {
        width: 100%;
        padding-top: 40px
    }

    .portfolio__thumb a img {
        max-height: 270px
    }

    .portfolio__subscribe .button {
        padding-left: 5px;
        padding-right: 5px;
        font-weight: 300;
        font-size: 16px;
        width: 100%
    }
}



/* CALLBACK */
.callback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 80px 0 10px 0;
}

.callback__info {
    width: 45%;
    padding-right: 40px
}

.callback__form {
    width: 53%
}

.callback__title {
    line-height: 1.2;
    padding: 0;
    margin: 0 0 20px 0
}

.callback__description {
    font-size: 26px;
    margin: 0;
    padding: 0;
}

.callback__advantages {
    font-size: 18px;
    list-style: none;
    margin: 0;
    padding: 10px 0
}

.callback__advantages li {
    padding-left: 28px;
    background: url('../../images/callback-advantage-list.png') 0 5px / auto auto no-repeat
}

.callback__advantages li img {
    vertical-align: middle;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px)
}

@media only screen and (max-width:1200px) {
    .callback {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                    -ms-grid-row-align: center;
                align-items: center;
    }

    .callback__info {
        padding: 0;
        width: 55%;
    }

    .callback__form {
        width: 55%
    }

    .callback__title {
        text-align: center;
    }

    .callback__description {
        text-align: center;
        font-size: 18px;
    }
}

@media only screen and (max-width:900px) {
    .callback__info {
        width: 100%;
    }

    .callback__form {
        width: 100%
    }

    .callback__title {
        font-size: 24px
    }

    .callback__description {
        font-size: 16px;
    }

    .callback__advantages li img {
        display: none
    }
}



/* WORK MAP */
.works-location {
    padding-bottom: 60px
}

.works-location__title {
    margin: 0 0 20px 0;
    text-align: center
}

#worksMap [class*="-image"] {
    -webkit-transition: opacity .25s ease-out, -webkit-transform .25s ease-out;
    transition: opacity .25s ease-out, -webkit-transform .25s ease-out;
    transition: transform .25s ease-out, opacity .25s ease-out;
    transition: transform .25s ease-out, opacity .25s ease-out, -webkit-transform .25s ease-out;
    -webkit-transform: scale(.7) translateY(10.5px);
    transform: scale(.7) translateY(10.5px);
}

#worksMap:hover [class*="-image"] {
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
}

[class*="ymaps-2"][class*="-ground-pane"] {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.4491 0.5005 0.0504 0 0 0.1491 0.8035 0.0504 0 0 0.1491 0.5005 0.3504 0 0 0 0 0 1 0" /></filter></svg>#filter');
    -webkit-filter: saturate(30%);
    filter: saturate(30%);
}

#worksMap [class*="-balloon_layout_normal"] {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    box-shadow: none;
    width:300px;
}

#worksMap [class*="-balloon__layout"] {
    border-radius: 5px;
    overflow: hidden;
    -webkit-animation: balloonLayout .35s normal forwards ease-out;
    animation: balloonLayout .35s normal forwards ease-out;
}

.works-location__map {
    width: 100%;
    min-height: 450px;
    background-color: #e6e6e6;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    position:relative;
    overflow:hidden;
}

.works-location__item {
    padding: 18px 0 18px 18px;
}
.ymaps-2-1-77-balloon__content,
.work-onmap{
    max-width:260px;
}
.work-onmap {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(18px);
    transform: translateY(18px);
    -webkit-animation: workOnMapContentFade .4s .15s normal forwards ease-out;
    animation: workOnMapContentFade .4s .15s normal forwards ease-out;
}

.work-onmap__title {
    margin: 0;
    font-weight:normal;
    font-size:18px;
}

.work-onmap__photo {
    margin-bottom: 15px;
}

.work-onmap__photo img {
    border-radius: 5px;
    vertical-align: top;
    width: 100%;
}

.work-onmap__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.work-onmap__gallery-link,
.work-onmap__user-link {
    margin-bottom: 15px;
}

@-webkit-keyframes balloonLayout {
    from {
        box-shadow: rgba(0, 0, 0, .05) 0 5px 3px 1px;
    }

    to {
        box-shadow: rgba(0, 0, 0, .3) -10px 30px 50px 5px;
    }
}

@keyframes balloonLayout {
    from {
        box-shadow: rgba(0, 0, 0, .05) 0 5px 3px 1px;
    }

    to {
        box-shadow: rgba(0, 0, 0, .3) -10px 30px 50px 5px;
    }
}

@-webkit-keyframes workOnMapContentFade {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateY(18px);
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes workOnMapContentFade {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateY(18px);
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media only screen and (max-width:900px) {
    .works-location__title {
        margin: 20px 0 30px 0;
        font-size: 24px;
        line-height: 1.2
    }

    .works-location__map {
        min-height: 150px;
        height: 60vh
    }
}

/* TEXT REVIEWS */
.text-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 20px
}
.text-reviews__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding:30px;
    background-color: #f7f7f7;
    border-radius:10px;
}
.review__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding:30px;
    background-color: #f7f7f7;
    border-radius:10px;
}
.review__name {
    font-size: 24px;
    font-weight: normal;
    margin-bottom:10px;
    line-height: 1.3;
}
.review__date {
    color:#777;
    margin-bottom:10px
}
@media only screen and (max-width:900px) {
    .text-reviews__grid {
        grid-template-columns: 1fr;
    }
    .review__name {
        font-size: 18px;
    }
    .review__text {
        font-size:14px
    }
}

/* VIDEO REVIEWS */
.video-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 20px
}
.video__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding:30px;
    background-color: #f7f7f7;
    border-radius:10px;
}
.video__thumb {
    width: 100%;
    min-height: 260px;
    background-color: rgba(0, 0, 0, 0.1);
    background-size: auto 140%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: box-shadow .25s ease;
}

.video__thumb:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.video__thumb:hover {
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
}

.video__play-control {
    width: 48px;
    height: 48px;
    fill: #fff;
    z-index: 1;
    transition: fill .3s ease;
}

.video__thumb:hover .video__play-control {
    fill: var(--accent-color)
}

.video__name {
    font-size: 24px;
    font-weight: normal;
    margin-bottom:10px;
    line-height: 1.3;
}

@media only screen and (max-width:1024px) {
    .video-reviews__content {
        grid-template-columns: 1fr;
        gap:0
    }
    .video-reviews__top {
        text-align:center;
        justify-content: center;
        align-items: center;
    }
    .video-reviews__title {
        text-align: center;
    }
}
@media only screen and (max-width:900px) {
    .video-reviews {
        padding-top:30px;
        padding-bottom:30px;
        border-radius:10px;
    }
    .video-reviews__title {
        font-size: 24px;
        line-height: 1.2
    }

    .video-reviews__description {
        font-size: 16px;
    }

    .video-thumbs {
        min-height: 220px;
    }

    .video__play-control {
        width: 32px;
        height: 32px
    }

    .video__name {
        font-size: 16px;
    }
}

@media only screen and (max-width:720px) {
    .video-reviews {
        padding-top:0
    }
    .video-reviews__grid {
        grid-template-columns: 1fr;
    }
    .video__thumb {
        min-height:180px
    }

}

/* ABOUT */
.about {
    padding: 80px 0 100px 0;
    background: url('../images/advantages-bg.png') 100% 100% / auto no-repeat #f7f7f7;
}

.about__title {
    line-height: 1.2;
    padding:0;
    margin:0 0 30px 0
}

.about p {
    line-height:1.8
}

.about__wrapper {
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:50px
}
.about img {
    border-radius:10px;
    display:block
}
.about__more {
    margin-top:20px
}

.about p {
    margin: 0;
    padding: 0 0 25px 0;
}

@media only screen and (max-width:900px) {
    .about {
        padding: 30px 0
    }

    .about__title {
        font-size: 34px;
        text-align: center;
        line-height: 1.2
    }

    .about__wrapper {
        grid-template-columns: 1fr;
        gap:30px
    }

    .about__right {
        display:none
    }

    .about__more {
        display:flex;
        justify-content: center;
    }

}

/* REVIEWS */
.reviews {
    padding: 80px 0;
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px
}

.reviews__title {
    padding: 0;
    margin: 5px 0 0 0;
    line-height: 1.2
}

.reviews__switches {
    margin-top:10px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 585px;
}

.reviews__switches a{
    font-size:18px;
    text-decoration:none;
    line-height:50px;
    padding:0 24px;
    background-color:#f7f7f7;
    color:#000;
}

.reviews__switches a{
    white-space: nowrap;
    font-size:16px;
    text-decoration:none;
    line-height:48px;
    padding:0 18px;
    background-color:#f7f7f7;
    color:#000;
    transition:all .25s ease
}
.reviews__switches a:hover{
    background-color:#e7e7e7;
}

.reviews__switches a:first-child {
    border-radius:10px 0 0 10px
}

.reviews__switches a:last-child {
    border-radius: 0 10px 10px 0
}

.reviews__switches a.switch-active {
    color:#FFF;
    background: var(--accent-color);
}

.reviews__data {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    opacity:0;
    transform:translateY(40px);
    transition:all .55s ease
}

.reviews__data--visible {
    height: auto;
    visibility: visible;
    overflow: visible;
    opacity:1;
    transform:translateX(0);
}

.reviews__more {
    display:flex;
    justify-content:center;
    align-items: center;
    margin-top:60px;

}


@media (max-width:1200px) {
    .reviews__header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px
    }

    .reviews__title {
        margin-bottom: 30px
    }

    .reviews__switches {
        justify-content: center;
        width: 100%
    }
}

@media (max-width:900px) {
    .reviews {
        padding:40px 0
    }
    .reviews__title {
        font-size: 34px;
        text-align:center;
        margin-bottom:0
    }

    .reviews__switches a{
        font-size:14px;
        line-height:30px;
        padding:0 12px;
    }

}

/* FOOTER */
.footer {
    background: #29241e;
    color:#FFF;
    width: 100%;
    max-width: 1920px;
    margin-top:40px;
    padding: 30px 0;
}

.footer-link__info {
    margin-top: 90px;

}

.footer-link__brand {
    position: relative;
    width: 30%;
    flex-grow: 0;
    flex-shrink: 0;
    padding-top:40px;
}

.footer-link__brand img {
    display: block;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__info {
    flex: 1
}

.footer .more-link {
    font-size: 18px;
    font-weight:500;
    text-decoration:none;
}

.footer__links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 10px
}

.footer__groups {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer__overlap {
    flex: 1;
}

.footer-link__group {
    margin: 50px 10px 0 50px;
    width: 33.333%;
}

.footer-link__group h4,
.footer__socials h4 {
    font-weight: normal;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}

.footer-link__group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link__group li {
    margin: 0 0 8px 0;
    padding: 0;
}

.footer-link__group li a {
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    color:#FFF
}
.footer-link__group li a:hover {
    color:var(--accent-color)
}

.footer__socials {
    padding-top: 45px
}

.footer__data {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:30px;
}

.footer__socials .contact__link--email {
    text-align:right;
    font-size:18px;
    margin-top:10px;
    width:100%;
    display:block;
}

.footer__social {
    padding-top:55px;
    display:flex;
    align-items: center;
    justify-content: center;
    padding-right:20px
}
.footer__social a {
    color:#FFF;
    margin-right:20px;
    text-align:right
}

.footer__socials a {
    color:#FFF;
    margin-bottom: 5px;
}
.footer__socials a:hover {
    color:var(--accent-color)
}

.footer__confidential {
    padding-top:30px;
}
.footer__confidential a {
    color:#eee;
    text-decoration:none;
    font-size:14px
}
.footer__confidential a:hover {
    color:var(--accent-color)
}

.footer .contact__address {
    align-items: flex-start;
    white-space: initial;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding-top:10px
}

.footer-contact__item {
    width: 100%;
    padding: 10px 0 8px 0;
    text-align:right;
}

.footer__calc {
    padding-right:16px
}

.footer__calc a {
    text-decoration: none;
    color:var(--accent-color)
}

.footer-contact__item a {
    text-decoration: none;
}

.footer__contacts .button {
    width: 100%;
    max-width: 190px;
    margin-top: 25px;
    margin-bottom: 10px
}

.footer__bottom {
    grid-column: span 2;
    padding-top: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webhail {
    margin-top:40px
}
.webhail a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color:#FFF;
}

.webhail a:hover {
    color: #e41739
}

.webhail span {
    margin-left: 15px
}

.webhail img {
    display: block
}

.webhail--mobile {
    display:none;
    margin-top:10px
}

@media (max-width:720px) {
    .webhail {
        display:none
    }
    .webhail--mobile {
        display:flex
    }
}

.footer-link__group--services {
    margin-right:2%;
}
.footer-link__group .social a {
    margin-right:10px
}


@media (max-width:1170px) {
    .footer__google {
        display:none;
    }
}
@media only screen and (max-width:1080px) {
    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.1
    }

    .footer__privacy {
        padding: 15px 0
    }
}

@media (max-width:1366px) {
    .footer__socials {
        padding-left: 40px
    }
}

@media (max-width:1200px) {
    .footer-link__group--services {
        display: none;
    }

    .footer__confidential {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 0;
    }

    .footer__privacy-link {
        order: 2;
        margin-top: 20px;
    }

    .footer__buttongroup {
        order: 1;
    }

    .footer__buttongroup button {
        margin-left: 0;
        margin-right: 20px
    }
}

@media (max-width:1040px) {
    .footer__copyright {
        font-size: 14px
    }

    .footer-link__group--projects {
        display: none
    }

    .footer__links {
        justify-content: center;
        align-items: flex-start;
        padding-right: 0
    }

    .footer__buttongroup {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer__buttongroup button {
        margin-right: 0;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }
}

@media (max-width:800px) {
    .footer-link__info {
        margin-top: 30px;

    }

    .footer-link__info img {
        display: none
    }

    .footer__socials h4 {
        display: none
    }

    .footer__social {
        padding-top:30px;
        padding-right:0
    }
    .footer__social a:last-child {
        margin-right:0;
    }
}

@media (max-width:720px) {

    .footer {
        padding: 0 0 60px 0
    }

    .footer .header__phone {
        margin-left: 0;
    }

    .footer .contact__label {
        display: none
    }

    .footer__info {
        width: 100%;
        max-width: 310px
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start
    }

    .footer__socials {
        padding-left: 0;
    }

    .footer__copyright {
        line-height: 1.1;
        margin-bottom: 20px
    }

    .footer__privacy-link {
        color: #8eab8c;
        font-size: 14px;
        line-height: 1.2
    }

    .footer__contacts {
        width: 100%;
        max-width: 350px;
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .footer .contact__info {
        align-items: center;
    }

    .footer-contact__item {
        padding-right: 0;
        text-align:center;
    }
    
    .footer__socials .contact__link--email {
        text-align:center;
    }

    .footer .contact__link {
        font-weight: normal;
        font-size: 20px
    }

    .footer__buttongroup {
        width: 100%
    }

    .footer-link__brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-link__info {
        font-size: 14px;
        line-height: 1.2
    }
    .footer__data {
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center
    }
    .footer__inn {
        margin-bottom:20px;
    }
    .footer .button--blue {
        margin:20px 0;
    }
}

/* PROJECT GRID */
.project-grid {
    display: -ms-grid;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
}

.project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f7f7f7;
    position: relative;
    border-radius:10px;
    overflow:hidden;
    transition: box-shadow .25s ease, transform .3s ease;
    will-change: box-shadow;
}

.project-card:hover {
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px)
}

.project-card__preview {
    position: relative;
    background-color: #d6d6d6;
}

.project-card__thumb {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    object-fit: cover;
}

.project-card__thumb img {
    width:100%;
    height:auto;
}

.project-card__badges {
    position: absolute;
    right: 16px;
    top: 16px
}

.badge__item {
    color: #FFF;
    padding:6px 14px 5px 14px;
    font-weight: normal;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius:10px;
}


.badge__item--hot {
    background-color: var(--accent-color)
}

.project-card__info {
    position: relative;
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.project-card__type {
    color: #777
}

.project-card__link {
    text-decoration: none;
    margin:0 30px
}

.card-work .project-card__link {
    text-decoration: none;
    margin:0 30px 20px 30px;
}

.project-card__name, .newsflash-title {
    padding: 0;
    margin: 0;
    line-height: 1.4;
    font-weight: normal;
    font-size: 18px
}

.project-card__link h2 {
    padding: 0;
    margin: 0;
    line-height: 1.4;
    font-weight: normal;
    font-size: 18px
}

.project-card__link h2 a{
    text-decoration:none;
}

.project-card__price {
    font-size: 24px;
    font-weight: normal;
    margin: 0 20px 8px 30px;
    white-space:nowrap;
    color:var(--accent-color)
}

.project-card__price-unknown {
    font-size:16px;
    font-weight:300;
    color:#777;
}

.project-card__link-more {
    color: #000;
    background-color: #efefef;
    text-decoration: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width:100%;
    line-height:60px;
    transition: all .25s ease;
}

.project-card__link-more:hover {
    background-color: var(--accent-color);
    color:#FFF
}

.card-prop {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width:100%;
    margin-bottom:20px
}

.card-prop__item {
    color: #000;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:50%;
}
.card-prop__item sup {
    position:absolute;
    font-size:10px;
    margin-top:-3px;
}
.card-prop__item img {
    width:26px;
    height:26px;
    margin-bottom:6px;
    display:block
}

@media only screen and (max-width:1200px) {
    .project-grid {
        -ms-grid-columns: (1fr)[3];
            grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width:900px) {
    .project-grid {
        -ms-grid-columns: (1fr)[2];
            grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width:720px) {
    .project-grid {
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
    }
}


/* FORMS */
.form-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.privacy-dc {
    color: #777;
    font-size: 14px;
    text-align: center
}

.form-grid .form-grid__field,
.form-grid__field--sizes {
    width: calc(50% - 10px);
    margin-bottom: 24px
}

.form-grid .form-grid__field label,
.form-grid__field--sizes label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-grid__field--sizes label {
    white-space: nowrap
}

.form-grid .form-grid__field--12 {
    width: 100%;
}
.form-grid .form-grid__field--4 {
    width: calc(33.33333% - 15px);
}
.form-grid .form-grid__field--3 {
    width: calc(25% - 15px);
}

.form-grid .form-grid__field--nomargin {
    margin: 0
}

.form-grid__field--cross {
    position: relative
}

.form-grid__field--cross:after {
    content: 'x';
    color: #b3b3b3;
    display: block;
    position: absolute;
    right: -10%;
    bottom: 16px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
select,
textarea {
    background-color: #FFF;
    min-height: 70px;
    width: 100%;
    padding: 0 28px;
    color: #000;
    border: 0;
    border-radius: 10px;
    outline: none;
    -webkit-transition: background-color .25s ease, box-shadow .25s ease;
    transition: background-color .25s ease, box-shadow .25s ease;
    will-change: background-color, box-shadow;
}

textarea {
    min-height: 90px;
    padding: 16px !important;
    width: 100% !important;
}

input[type="text"]:hover,
input[type="text"]:active,
input[type="text"]:focus,
input[type="tel"]:hover,
input[type="tel"]:active,
input[type="tel"]:focus,
input[type="email"]:hover,
input[type="email"]:active,
input[type="email"]:focus,
input[type="url"]:hover,
input[type="url"]:active,
input[type="url"]:focus,
textarea:hover,
textarea:active,
textarea:focus {
    box-shadow: var(--accent-color) 0 0 0 1px
}

.answer-bad {
}

.answer-good {
}

.form-answer {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    line-height: 1.3;
    opacity: 0;
    transform: tranlateY(-16px);
    font-size: 14px;
    font-weight:400;
    transition: all .25s ease
}

.form-answer>img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    flex-shrink: 0;
    border: 0;
    outline: none;
    user-select: none
}

.form-answer:not(:empty) {
    margin-bottom: 16px
}

.form-answer--show {
    opacity: 1;
    transform: translateY(0)
}

.form-grid__field--file {
    overflow-x: hidden
}

.form-grid__field input[type="file"]::-webkit-file-upload-button {
    border: 0;
    border-radius: 3px;
    color: #909090;
    background-color: #e5e5e5;
    outline: none !important;
    cursor: pointer;
    padding: 5px 8px;
    font-size: 14px;
    font-weight: normal;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease
}

.form-grid__field input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #363844;
    color: #004899
}

.file-label {
    font-size: 80%;
    margin-bottom: 3px
}

.captcha {
    margin-top: 8px
}

@media only screen and (max-width:700px) {
    .form-grid .form-grid__field {
        width: 100%;
    }
}


/* SSL BADGE */
.encrypted {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding-top:16px;
    margin-top:16px;
    border-top:rgba(0,0,0,.06) 1px solid;
}

.encrypted__icon svg{
    display:block;
    fill:green;
    width:16px;
    height:16px;
}

.encrypted__text {
    font-size:12px;
    line-height:1.2;
    color:#777;
    font-weight:400;
}


/* BREADCRUMBS */
.breadcrumbs {
    padding-top:5px
}

.breadcrumbs ol {
    display: flex;
    margin: 0;
    padding: 0;
    padding-top: 30px;
}

.breadcrumbs li:first-child{
    display:none;
}

.breadcrumbs li {
    list-style: none;
    padding: 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b6b6b6;
    font-size: 16px
}

.breadcrumbs a {
    color: #000;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent-color)
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    padding-left: 4px
}

@media only screen and (max-width:900px) {
    .breadcrumbs li {
        font-size: 14px
    }
}

/* PAGE */
.page {
    font-size:18px
}

.page__title, .page h1 {
    font-size: 60px;
    padding: 0;
    margin: 0 0 30px 0;
    font-weight:500;
    line-height: 1.2
}

@media only screen and (max-width:900px) {
    .page__title, .page h1 {
        font-size: 24px;
        margin: 0 0 30px 0;
        text-align: center
    }
}

/* STEPS */
.steps {
    padding:0 0 40px 0
}
.steps__grid {
    padding:30px;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:40px;
    border-radius:10px;
    background: url(../images/steps-bg.jpg) 50% 50% / cover no-repeat #444;
}
.steps__item {
    color:#FFF
}
.steps__item .button {
    padding:0 30px;
    font-size:24px
}
.steps__title {
    font-weight:300;
    font-size:26px;
    padding:0;
    margin:20px 0 0 0;
    line-height:1.2
}

@media only screen and (max-width:900px) {
    .steps__grid {
        padding:20px;
        gap:30px;
    }
    .steps__item .button {
        padding:0;
        line-height:48px;
        width:48px;
        height:48px;
        font-size:20px
    }
    .steps__title {
        font-weight:300;
        font-size:18px;
        margin:10px 0 0 0;
    }
}

@media only screen and (max-width:720px) {
    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps__item .button {
        line-height:38px;
        width:38px;
        height:38px;
        font-size:18px
    }
    .steps__title {
        font-size:16px;
    }
}

/* PROJECT */
.project {
    padding: 0 0 80px 0;
    margin: 0 0 0 0;
    width: 100%;
    max-width: 1920px;
}

.project__content {
    position: relative
}


.project h1 {
    font-size: 40px;
    font-weight:500;
    padding: 0;
    margin: 5px 0 45px 0;
    line-height: 1.1;
    position: relative
}

@media(max-width:900px) {
    .project h1 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px
    }
}

.project__wrapper {
    display: grid;
    grid-template-columns: 2.7fr 1.3fr;
    grid-gap: 30px;
    gap: 30px;
}

.project__left {
    min-height: 190px;
    z-index: 10
}

.project__right {
    min-height: 190px;
    z-index: 10;
    display: flex;
    flex-direction: column;
}


.project-prop__row--order {
    font-size:16px;
    line-height:1.4
}
  
.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;
    border-radius:10px;
    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%;
    height:auto;
}

.gallery__item--main {
    width: 100%;
    margin: 0;
    position: relative;
    min-height: 270px;
    position: relative;
}

.project__info {
    z-index: 1;
    min-height: 250px;
}

.project-prop__pricelist {
    padding: 10px 0 10px 0;
}

.project-prop__price-title {
    margin-bottom:10px
}

.project-prop__row {
    width: 100%
}

.project-prop__specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 30px;
    white-space: nowrap;
    padding: 10px 22px 30px 22px;
}

.project-prop__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center
}

.pricelist__label {
    width: 45%;
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 18px;
    font-weight:500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.project-prop__title {
    color: #777;
    font-size: 16px;
    margin-bottom: 20px;
    height: 47px;
    line-height: 47px;
    position: relative
}

.project-prop__title::before {
    content: url('../../images/price-bg.png');
    display: block;
    position: absolute;
    left: -32px;
    top: 0
}

.pricelist__value {
    width: 45%;
    margin-bottom: 20px;
    font-size: 24px;
    color:var(--accent-color);
    font-weight: bold;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
}

.project-options {
    padding: 0 40px 0 20px
}

.project-prop__row--order {
    margin-top: 30px;
}

.calc-alt {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom:30px
}

.calc-alt__data {
    margin-left:10px;
}

.calc-alt__data strong {
    font-size:24px;
    font-weight:normal;
    display:block;
    line-height:1
}

.project__description {
    padding-top: 50px
}

.project-prop__complect {
    margin: 30px 0 20px 0;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.project-prop__complect a {
    text-decoration: none;
    font-weight:bold;
    color:var(--accent-color)
}

.project-prop__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
}

.project-prop__button button {
    width:100%
}

.card-prop__row {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.card-prop__icon {
    width:40px;
    height:40px;
    background-position:50% 50%;
    background-repeat:no-repeat;
}

.card-prop__icon--size {
    background-image: url(../images/icon-prop-size.png);
}
.card-prop__icon--square {
    background-image: url(../images/icon-prop-square.png);
}
.card-prop__icon--floors {
    background-image: url(../images/icon-prop-floors.png);
}

.card-prop__info strong{
    font-weight:500;
}

@media(max-width:980px) {
    .project h1 {
        font-size: 24px;
        text-align: center;
        margin-top: 30px
    }

    .project__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start
    }

    .project__left {
        width: 70%
    }

    .project__right {
        width: 70%;
        padding-left: 0
    }

    .gallery__item {
        min-height: auto
    }

    .project__info {
        width: 100%;
        margin-left: 0;
        padding-top: 0
    }


}

@media(max-width:720px) {
    .project__left {
        width: 100%
    }

    .project__right {
        width: 100%
    }

    .pricelist__value,
    .project-additional__value {
        font-size: 18px
    }

    .pricelist__label,
    .project-prop__title {
        font-size: 16px
    }

    .project-prop__specs {
        gap: 20px;
        grid-gap: 20px;
        padding: 20px 32px 10px 32px;
    }
}

/* COMPLECT TABLE */
.complect {
    padding: 30px 0
}

.complect__title {
    text-align: center;
    margin-top:0;
}

.complect table {
    width: 100%;
    border-spacing: 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    table-layout: fixed;
}

.complect table td,.complect table th{
    width: 25%;
}

td[colspan="4"] {
    font-weight:500;
    font-size:130%;
}

.complect thead {
    background: url('../../images/complect-bg.png') 50% 100% / auto no-repeat #eee
}

tr.complect__heading {
    color: #FFF;
}

tr.complect__heading th {
    background-color: var(--accent-color);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight:normal;
    border-left: #FFF 1px solid
}

tr.complect__heading .complect__spec-title {
    padding-left: 30px;
    padding-right: 30px;
}

.complect-props {
    width:40%;
}

.complect-props__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 0 25px 25px;
    position: relative;
    white-space: nowrap;
}

.complect-props__icon {
    width: 39px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 20px;
}

.complect-props__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.complect-props__value strong {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.1;
}

.complect-props__description {
    font-size: 16px;
    line-height: 1.1;
    font-weight: normal
}

.complect-advantage {
    padding: 0 0 20px 50px;
    margin: 0;
    list-style: none;
}

.complect-advantage__item {
    margin: 1px 0;
    font-weight: normal
}

.complect-advantage__item:before {
    display: inline-block;
    margin-right: 10px
}

.complect-advantage__item--minus {
    color: red
}

.complect-advantage__item--plus {
    color: green
}

.complect-advantage__item--minus:before {
    content: '-'
}

.complect-advantage__item--plus:before {
    content: '+'
}

.complect tbody th {
    padding: 25px 40px;
}

.complect tbody td {
    padding: 25px;
    line-height: 1.3
}

.complect tbody tr td:first-child {
    padding: 25px 25px 25px 40px;
    border-left: none;
    font-weight:500;
}

.complect tbody th {
    text-align: left;
    font-size: 18px;
    border-bottom: rgba(0, 0, 0, .05) 1px solid;
}

.complect tbody td {
    vertical-align: top;
    border-left: rgba(0, 0, 0, .05) 1px solid;
    border-bottom: rgba(0, 0, 0, .05) 1px solid;
}

.complect__mobile-helper {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 50px 36px 50px;
    position:relative;
    display: none
}
.complect__mobile-helper::before {
    content:url('../../images/swipe.png');
    position:absolute;
    width:32px;
    height:32px;
    bottom:0;
    left:calc(50% - 16px);
}

@media only screen and (max-width: 1140px) {
    tr.complect__heading th {
        font-size: 16px
    }

    .complect-props__item {
        padding: 15px 0 15px 0;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .complect-props__value strong {
        font-size: 16px;
    }

    .complect-props__description {
        font-size: 20px;
    }

    .complect-props__value {
        -webkit-box-align: center;
            -ms-flex-align: center;
                    -ms-grid-row-align: center;
                align-items: center
    }

    .complect-props__icon {
        display: none
    }

    .complect tbody th {
        padding: 25px
    }

    .complect tbody td {
        font-size: 14px;
        padding: 15px
    }

    .complect tbody tr td:first-child {
        padding: 15px
    }
}

@media only screen and (max-width: 900px) {
    .complect__title {
        font-size: 24px
    }

    tr.complect__heading {
        -webkit-clip-path: none;
                clip-path: none;
    }

    .complect__spec-title {
        font-weight: normal;
        font-size: 14px
    }

    tr.complect__heading th {
        padding: 0 10px;
        border-left: rgba(255, 255, 255, .3) 1px solid
    }

    .complect-advantage {
        padding: 10px;
        font-size: 14px
    }

    .complect .complect__spec-title {
        padding-left: 10px;
        padding-right: 10px;
    }

    .complect table {
        width: 900px;
        border-radius: 0
    }

    .complect__content {
        padding: 0;
    }

    .complect__overscroll {
        overflow-x: scroll;
    }

    .complect__mobile-helper {
        display: block
    }
}







/* 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;
    border-radius:10px;
    margin-top: 5px;
    position: relative;
}

.checkbox__description {
    margin-left: 23px;
    font-size: 12px;
    line-height:1.2;
    font-weight:400;
}

.checkbox__switch label:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    margin: 3px;
    border-radius:3px;
    background: #FFF;
    transform: scale(0);
    transition: transform .3s ease
}

.checkbox__switch label:after {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius:4px;
    background-color: #FFF;
    box-shadow: var(--accent-color) 0 0 0 2px inset;
    transition: background-color .3s ease
}

.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:checked+label:after {
    background-color: #FFF
}

.checkbox__switch input:disabled+label {
    cursor: not-allowed
}



/* SCROLL UP BUTTON */
.scrollup {
    display: none;
    position: fixed;
    cursor: pointer;
    z-index: 200;
    bottom: 10px;
    left: 8px;
    width: 42px;
    height: 42px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: background-color .3s ease
}

.scrollup:hover {
    background-color: rgba(155, 155, 155, .3)
}

.scrollup svg {
    width: 42px;
    height: 42px;
    transform: scale(0.6)
}

.scrollup__arrow {
    transition: fill .3s ease;
    fill: rgba(0, 0, 0, .3)
}

.scrollup:hover .scrollup__arrow {
    fill: var(--accent-color)
}

/* COMPLECTATION */
.complectation {
    padding: 30px 0 70px 0;
    width: 100%;
    max-width: 1920px;
}

.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;
    border-radius:10px 10px 0 0;
    background-color: #eeeeee;
}

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: #000;
    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:30px 50px;
    background-color:#f7f7f7;
    border-radius:0 0 10px 10px;
}
.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 {
}
.table table td:first-child {
    padding: 20px 0 20px 0px;
    background-color:transparent;
}
.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;
    }

}

@media(max-width:700px) {
    .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: 10px;
        height: 30px
    }
    .table {
        padding:20px 5px;
    }

}


/* ADDONS */
.addons {
    padding:20px 0;
}
.addons__title {
    text-align:center;
}
.addons__table table{
    width:100%;
}
.addons .addons__value {
    border-left:none;
    text-align:right;
    font-weight:bold;
    color:var(--accent-color);
}

@media only screen and (max-width:900px) {
    .addons__title {
        font-size:24px;
        line-height:1.3
    }
}




/* ADVANTAGES */
.advantages {
    padding:70px 0;
    background:url('../images/advantages-bg.png') 100% 100% / auto no-repeat #f7f7f7;
}

.advantages--gift {
    background: #f7f7f7;
}

.advantages__title {
    padding: 0;
    margin: 0;
    line-height: 1.2;
}
.advantages__subtitle {
    padding: 0;
    margin: 0;
    line-height: 1.1;
    font-size:24px;
    font-weight:normal
}
.advantages__grid {
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px
}
.advantages__item {
    display:flex;
    flex-direction:column;
    align-items:center;
    border-radius: 10px;
    background-color: #FFF;
    padding:40px 0
}
.advantages__icon {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border-radius: 50%;
    width:76px;
    height:76px;
    margin-top:40px;
    background-color: var(--accent-color);
    outline:#f7f7f7 6px solid
}
.advantages__image img {
    display:block
}
.advantages__info {
    flex:1;
    width:100%;
    padding:20px 20px 24px 20px;
    text-align: center;
    font-weight:bold
}

.com-content-article__body .advantages__item{
    background-color: #f7f7f7;
}

.com-content-article__body .advantages__icon{
    outline: #FFF 6px solid;
}


@media (max-width: 900px) {
    .advantages {
        padding:30px 0;
    }
    .advantages__title {
        font-size: 34px;
        text-align: center;
        margin-bottom: 20px;
    }
    .advantages__grid {
        grid-template-columns:1fr;
        max-width:481px;
        margin:30px auto;
    }
    .advantages__item {
        text-align: center;
        align-items:center;
        padding: 20px 0;
    }
    .advantages__subtitle {
        font-size:18px;
    }
    .advantages__icon {
        width:48px;
        height:48px;
        margin-top:20px;
    }
    .advantages__image img {
        max-width:28px
    }
}

/* ALBUM */
.album {
    padding: 0 15px 70px 15px;
    margin-top: 50px;
    width: 100%;
    max-width: 1920px
}

.album__top {
    margin-bottom:20px
}

.album__title {
    padding: 0;
    margin: 0 0 50px 0;
    line-height: 1.2;
    text-align:center
}

.album__grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 30px;
    gap: 30px;
    padding: 0
}

.album__grid img {
    vertical-align: top
}

.album__grid-4 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 30px;
    gap: 30px;
    padding: 0
}

.album__grid-4 img {
    vertical-align: top
}

.albumone__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 30px;
    gap: 30px;
    padding: 0
}

.albumone__grid img {
    vertical-align: top
}

.photo__thumb a {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    max-height: 280px;
    border-radius:10px;
}

.photo__thumb a:before {
    content: '';
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    position: absolute;
    display: block;
    background: url(../images/zoom.png) 50% 50% / 32px 32px no-repeat transparent;
    opacity: 0;
    border-radius:30px;
    transform: scale(.9);
    z-index: 10;
    transition: opacity .3s ease, transform .3s ease;
}

.photo__thumb a:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: opacity .2s ease
}

.photo__thumb a:hover:before {
    opacity: 1;
    transform: scale(1)
}

.photo__thumb a:hover:after {
    opacity: .5;
}

.album__more {
    margin:40px auto 0 auto;
    max-width:840px;
    display:flex;
    justify-content: space-around;
}
.album__more a {
    text-decoration:none;
}

.vk {
    display:flex;
    align-items: center;
    justify-content: flex-start;
}
.vk img {
    margin-right:20px
}
.vk strong {
    line-height:1.4;
    font-weight: 500;
}

@media(max-width:1600px) {
    .album__grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:1150px) {
    .album {
        padding-left: 0;
        padding-right: 0
    }
}

@media(max-width:980px) {
    .album {
        margin-top: 0;
    }

    .album__title {
        text-align: center;
        font-size: 34px
    }
}

@media(max-width:900px) {
    .album__grid {
        grid-template-columns: repeat(3, 1fr)
    }
    
    .album__grid-4 {
        grid-template-columns: repeat(3, 1fr)
    }

    .album__toprow {
        flex-direction: column;
        justify-content: center;
        margin-bottom: 40px;
    }

    .album__title {
        text-align: center;
        margin-bottom: 20px
    }
}

@media(max-width:720px) {
    .album {
        padding-bottom:20px;
        padding-top:20px;
    }
    .album__grid {
        grid-template-columns: repeat(2, 1fr);
        gap:16px;
        padding:0 15px
    }
    
    .album__grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap:16px;
        padding:0 15px
    }
    
    .album__more {
        margin:30px auto 0 auto;
        max-width:840px;
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .vk {
        margin-top:10px;
    }
    .vk img {
        margin-right:10px
    }
    .vk strong {
        line-height:1.3;
        font-size:16px;
    }
}




/* EXTRA */
.extra {
    padding:50px 0;
    background:#fff;
}
.extra__grid {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows:150px;
    gap:30px
}
.extra__title {
    font-size:40px;
    padding:0;
    margin:0;
    line-height:1.2;
}
.extra__item {
    background-size:cover;
    background-position:50% 50%;
    background-repeat:no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}
.extra__item--paint,
.extra__item--fundament {
    justify-content:flex-end;
    align-items:flex-start;
    padding:20px 30px;
    background-color:#d7d7d7;
}
.extra__item--paint {
    background-image:url('../../images/extra-paint.jpg');
}
.extra__item--fundament {
    background-image:url('../../images/extra-fundament.jpg');
}
.extra__subtitle {
    font-size:22px;
    line-height:1.2;
    font-weight:300;
    color:#FFF;
    margin:0;
    padding:0;
}
@media (max-width: 900px) {
    .extra__title {
        font-size:24px;
        text-align:center;
        width:100%;
    }
    .extra__grid {
        max-width:380px;
        margin:0 auto;
        grid-template-columns: 1fr;
        grid-template-rows:auto
    }
    .extra__subtitle {
        font-size:20px;
    }
}


/* FILTER */
.filter {
    width:100%;
    max-width:1920px;
    padding:10px 0 50px 0;
    position:relative;
    z-index:20
}

.filter__wrapper {
    background:#fbfafa;
    border-radius:10px;
    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 40%;
}
.jlcontentfieldsfilter .jlmf-section:nth-of-type(2){
	flex:1 0 20%;
}
.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:18px;
}
[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:#000;
	background-color:#fff;
	padding:0 12px;
    min-width:57px;
    text-align:center;
    white-space:nowrap;
    line-height:32px;
    height:32px;
    font-size:16px;
	margin-bottom:8px;
    margin-right:7px;
    border-radius:10px;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
	transition:background-color .3s cubic-bezier(0.175, 0.885, 0.32, 1), color .2s cubic-bezier(0.175, 0.885, 0.32, 1);
}
  
[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: var(--accent-color);
    color: #fff;
    cursor: pointer;
}
.jlmf-button:hover {
    background-color: var(--accent-color);
}

.jlcontentfieldsfilter input {
    height: 32px;
    line-height: 32px;
	margin: 0;
}


/* CALL FORM */
.call {
    padding:30px 0 0 0;
    width:100%;
    color:#FFF;
}
.call__wrapper {
    width:100%;
    max-width: 1200px;
    min-height: 372px;
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:60px;
    padding:45px 45px 45px 70px;
    border-radius:10px;
    background:url('../images/call-bg.png') 50% 50% / cover no-repeat #312313;
}
.call__title {
    line-height:1.1;
    margin:30px 0 0 0;
    width:100%;
}
.call__description {
    font-size:18px;
}
.call_left {
    width:100%;
}
.call_right {
    width:100%;
    padding-top:30px;
}
.call_right .button {
    width:100%;
}
.call .form__grid{
    max-width:280px
}
.call .checkbox__description a {
    color:#fff;
}

@media(max-width:900px) {
    .call {
        padding:10px 0;
    }
    .call__title {
        font-size:24px;
        text-align: center;
    }
    .call__description {
        text-align: center;
    }
    .call__wrapper {
        min-height: 372px;
        height:auto;
        padding:25px 25px 30px 25px;
        grid-template-columns: 1fr;
        gap:0
    }
    .call .form__grid {
        max-width: initial;
    }
    .call {
        margin-top:0;
    }
    .call_left,
    .call_right {
        width:100%;
        max-width:400px;
        margin:0 auto
    }
    .call__wrapper {
        min-height: auto;
        padding:10px 40px 30px 40px;
    }
    .call__description {
        font-size:14px;
    }
}

.link-arrow svg {
    width:24px;
    height:24px;
    margin-left:10px;
}

.link-arrow {
    color: #000;
    text-decoration: none;
    display:flex;
    justify-content: flex-end;
    align-items: center;
}

.link-arrow svg {
    transition:all .25s ease;
    margin-top:2px;
    fill:#eeeeee
}

.link-arrow:hover svg {
    transform: translateX(5px);
    fill: var(--accent-color)
}

/* MODALS */
#callmeModal,
#signModal{
    max-width: 440px;
    width: 100%
}

#calcModal,
#calcModal2{
    max-width: 580px;
    width: 100%
}

#orderModal {
    max-width: 580px;
    width: 100%
}

body .fancybox-content {
    padding: 20px 30px 30px 30px;
    border-radius:10px;
    overflow: initial;
    background: #f8f9fa;
}


.modal-title {
    padding: 10px 0 0 0;
    text-align:center;
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight:500;
    text-transform: uppercase;
    font-weight: normal;
    z-index: 999;
    color:#000;
    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:32px;
    height: 32px;
    right: calc(50% - 16px);
    top: -20px;
    border-radius:50%;
    background-color:#f2f6ff;
    transition: all .25s ease;
}

body .fancybox-button svg {
    height: 100%;
    width: 100%;
}
@media(max-width:540px) {
    .modal-title {
        padding: 10px 0 0 0;
        margin: 0 0 20px 0;
        font-size: 20px;
    }
}
@media(max-height:720px) {
    body .fancybox-slide--html .fancybox-close-small {
        top: 5px;
    }
}

.mobile-header__callback a{
    text-decoration:none;
}


/* UPLOAD LIST */
.rf-filenames-list {
    font-size: 13px;
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.rf-filenames-list .file-name {
    background: rgba(255, 255, 255, .7);
    margin: 8px 8px 0 0;
    line-height: 1.87;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    border-radius: 14px;
    padding: 0 16px 0 16px;
    transition: all .25s ease;
    cursor: pointer;
    user-select: none;
    transition: background-color .25s ease, transform .15s ease
}

.rf-filenames-list .file-name:hover {
    background-color: rgba(255, 255, 255, 1);
}

.alert-info{
    margin: 0 auto;
    width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    font-stretch: condensed;
}


.com-content-category-blog__children{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px;
    margin:0 0 30px 0;
}

.com-content-category-blog__children div h3{
    margin:0;
    padding:0;    
}

@media(max-width:900px) {
    .com-content-category-blog__children{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}





