*,
*:after,
*:before {
    box-sizing: border-box
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../../fonts/MyriadProRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro';
    src: url('../../fonts/MyriadProSemiBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geometria';
    src: url('../../fonts/GeometriaRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.cat-children{
    padding:0;
    margin:0;
}
.cat-children div{
    display:inline-block;
    margin:10px 10px 0 0;
}

.cat-children div h3{
    margin:0;
    padding:0;
    font-size:20px;
}

.project-card .work-img{
    max-height:285px;
    overflow:hidden;
}

.table span{
    color:#f8a500;
}

p,
.font-alt,
*::placeholder,
input,
.checkbox__description,
.contact__description,
.breadcrumbs,
.project-prop__title,
.pricelist__label,
.project-additional__label,
.table table td:last-child {
    font-family: 'Geometria', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal
}
.sigplus-gallery>ul>li{
    margin:6px 6px 0px 6px !important;
}

html {
    line-height: 1.6;
    font-size: 16px;
    min-width: 320px
}

body {
    margin: 0;
    height: 100%;
    word-wrap: break-word;
    background-color: #f8f9fa;
    color: #000;
    overflow-x: hidden;
}

body,
input,
textarea,
button {
    font-family: 'Geometria', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Geometria', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-weight:normal
}

h1 {
    font-size: 50px
}

h2 {
    font-size: 45px
}

h3 {
    font-size: 24px
}

h4 {
    font-size: 20px
}

figure {
    padding: 0;
    margin: 0
}

img {
    border: 0;
    max-width: 100%
}

a {
    color: #000;
    -webkit-transition: color .2s ease;
    transition: color .2s ease
}

body a:active,
body a:hover {
    outline-width: 0;
    color: #f8a500
}

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
}

button,
input,
optgroup,
select,
textarea {
    font-size: 100%;
    line-height: 1.15
}

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% !important
    }
}

*::placeholder {
    color: #777;
    font-size: 16px;
    text-transform: none;
}

::-moz-selection {
    background: #f8a500;
    color: #FFF
}

::selection {
    background: #f8a500;
    color: #FFF
}

::-moz-selection {
    background: #f8a500;
    color: #FFF
}

*::-webkit-scrollbar-track {
    background-color: transparent
}

*::-webkit-scrollbar {
    width: 10px;
    background-color: transparent
}

*::-webkit-scrollbar-thumb {
    background-color: #f8a500
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #c78a0f
}




/* BUTTON */
.button {
    height: 60px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    outline: none;
    border: 0;
    border-radius: 0;
    color: #FFF;
    cursor: pointer;
    user-select: none;
    background-color: #f8a500;
    white-space: nowrap;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.button:hover,
.button:active {
    background-color: #ffb92f;
    color: #FFF
}

.button:active {
    transform: scale(.96)
}

body .button--arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

body .button--arrow:hover .arrow-link {
    color: #FFF
}

body .button--arrow .arrow-link__arrow {
    fill: #FFF;
}

body .button--arrow:hover .arrow-link__arrow {
    fill: #FFF;
    transform: translateX(6px)
}

@media(max-width:900px) {
    .button {
        height: 55px;
        line-height: 55px;
    }
}


/* STICKY MENU */
.sticky-menu {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, .89);
    z-index: 120;
    width: 100%;
    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__wrapper::before {
    content: '';
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.sticky-menu--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.sticky-menu--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.sticky-menu--visible .sticky-menu__wrapper::before {
    display: block;
    backdrop-filter: blur(9px);
}

.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-left: 6px;
    width: 144px;
    flex-basis: 144px;
    flex-grow: 0;
    flex-shrink: 0;
    text-align:center
}

.sticky-menu__logo img {
    vertical-align: top;
    max-height: 42px;
}

.sticky-menu nav {
    width: 65%;
}

.sticky-menu nav>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    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;
}

.sticky-menu nav>ul>li.active>a {
    color: #f8a500;
    cursor: default;
}

.sticky-menu nav>ul ul {
    margin: 0;
    padding: 16px 16px 16px 16px;
    list-style: none;
    position: absolute;
    z-index: -1;
    top: 40px;
    left: -16px;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, .1) 0 5px 5px;
    border-radius: 3px;
    transform: translateY(-10px);
    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__phone-icon {
    width: 25px;
    height: 25px;
    fill: #000
}

@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 {
        margin: 0
    }

    .sticky-menu,
    .sticky-menu--hidden,
    .sticky-menu--visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    .sticky-menu__content {
        padding-left: 0;
    }
}

@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__mobile-callback {
        display: block;
        height: 25px;
        width: 25px;
    }

    .sticky-menu .contact--phone,
    .sticky-menu__contacts--email {
        display: none
    }
}

@media(min-width:720px) {
    .sticky-menu__mobile-callback {
        display: none
    }
}

@media(max-width:1430px) {
    .sticky-menu__contacts--email {
        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: 0;
    top: 100px;
    width:100%;
    z-index: 120;
    transition: opacity .3s cubic-bezier(0.7, 0.26, 0.49, 1), visibility .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;
    visibility: visible
}

.aside__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 30px;
    min-height: auto;
    overflow-y: auto
}


.aside__column {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding:70px 0 70px 0
}

.aside__links {
    margin: 20px 30px 0 0;
    width:30%;
    max-width:300px
}

.aside__title {
    font-size: 24px;
    font-weight: normal;
    padding: 0;
    margin: 0 0 15px 0
}

.aside__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside__links li {
    margin: 0 0 10px 0
}

.aside__links ul a {
    text-decoration: none
}

@media(max-width:1080px) {
    .aside {
        top: 60px;
    }
    .aside__column {
        padding:30px 0 30px 0
    }
}
@media(max-width:680px) {
    .aside__column {
        padding:0 0 30px 0
    }
    .aside__column {
        flex-direction:column
    }
    .aside__links {
        margin: 20px 0 0 0;
        width:100%;
        max-width:auto
    }
}




/* SOCIAL */
.social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.social__item {
    margin: 0 25px 0 0;
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
    transition: background-color .25s ease
}

.social .social__item:last-child {
    margin-right: 0
}

.social__icon {
    width: 24px;
    height: 24px;
    transition: transform .25s ease
}

.social__item:hover {
    background-color: #e9e9e9;
}

.social__item:hover .social__icon {
    transform: scale(1.1)
}

.social__item:active .social__icon {
    transform: scale(.9)
}

.social__icon--whatsapp {
    fill: rgb(0, 150, 64)
}

.social__icon--viber {
    fill: rgb(49, 39, 131)
}

.social__icon--telegram {
    fill: rgb(0, 105, 180)
}

/* CONTACT */
.contact {
    display: flex
}

.contact__email,
.contact__phone,
.contact__address,
.contact__other {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
}

/* SVG ICONS */
.contact__icon--message,
.contact__icon--address {
    width: 32px;
    height: 32px;
    fill: #f8a500;
    margin-right: 10px;
}

.contact__icon--address {
    width: 32px;
    height: 32px;
    fill: #f8a500;
    margin-right: 10px;
}

.contact__icon--phone {
    width: 24px;
    height: 24px;
    fill: #f8a500;
    margin-right: 6px;
}

.contact__data {
    margin-left: 5px
}

.contact__description {
    font-size: 16px;
    color: #777
}

.contact__link,
.contact__address {
    text-decoration: none;
    font-size: 20px;
    font-weight:bold;
    line-height: 1;
    font-style: normal
}




/* HEADER */
.header {
    width: 100%;
    max-width: 1920px;
    position:relative;
    z-index:130
}

.header__content {
    min-height:100px;
    display:flex;
    align-items: center;
    justify-content: space-between;
}



.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0
}

.header__logo img {
    vertical-align: top
}

.header__brand {
    font-weight: 300;
    color: #777;
    font-size: 14px
}

.header__contact {
    margin-left: 3%;
    min-width: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 35px
}

.header__social {
    margin-left: 3%;
}

.header__contact {
    color: #000
}

.header__contact a {
    
}

.header__contact .contact__icon--phone {
    fill: #f8a500;
}

.header__trigger button{
    display:flex;
    align-items:center;
    margin-right:30px
}

.header__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%
}
.header__left {
    width:calc(50% - 180px)
}
.header__middle {
    width:274px;
    display:flex;
    align-items: flex-start;
    justify-content: center;
    position:relative
}
.header__middle img {
    position:absolute;
    top:-50px;
    left:0;
    z-index:130;
}
.header__right {
    width:calc(50% - 180px)
}
.header__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__whatsapp {
    margin-right:10px;
    line-height:1;
    white-space:nowrap;
    color:#3d9e62;
    text-decoration:none
}
.header__whatsapp a{
    color:#3d9e62;
    text-decoration:none
}

.header__callback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 310px;
    height: 64px;
}

.header__call a{
    color:#777;
    font-size:14px;
    line-height:1
}

/* ARROW LINK */
.arrow-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    line-height: 1.1;
}

.arrow-link__arrow {
    width: 48px;
    height: 11px;
    fill: #FFF;
    margin-left: 30px;
    transition: fill .25s ease, transform .25s ease;
}

.arrow-link:hover .arrow-link__arrow {
    fill: #f8a500;
    transform: translateX(6px)
}

.arrow-link:hover {
    color: #f8a500
}


/* HEADER NAVIGATION */
.header__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10
}

.header__navigation,
.header__navigation nav {
    width: 100%;
}

.header__navigation a {
    font-size: 16px;
    color: #1c2836
}

.header__navigation nav>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center
}

.header__navigation nav>ul>li {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 20
}

.header__navigation nav>ul>li a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    vertical-align: top;
}

.header__navigation nav>ul>li.active>a {
    color: #f8a500;
    cursor: default;
}

.header__navigation nav>ul>li.active>a:hover {
    color: #f8a500;
}

.header__navigation nav>ul>li a:hover,
.header__navigation nav>ul>li.active {
    color: #f8a500;
}

.header__navigation nav>ul ul {
    margin: 0;
    padding: 11px 16px 7px 16px;
    list-style: none;
    position: absolute;
    z-index: -1;
    top: calc(100% + 12px);
    left: -16px;
    background-color: #fff;
    border: #ebebeb 1px solid;
    border-radius: 3px;
    transform: translateY(7px);
    box-shadow: rgba(0, 0, 0, .1) 0 5px 5px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

/* HOVER LOST FIX*/
.header__navigation nav>ul ul::before {
    content: '';
    width: 90%;
    height: 40px;
    position: absolute;
    top: -40px;
    left: 0;
    display: block;
}

.header__navigation nav>ul ul::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    left: 20px;
    top: -5px;
    width: 0;
    height: 0;
    width: 10px;
    height: 10px;
    background-color: #FFF;
    transform: rotate(45deg);
    box-shadow: rgba(0, 0, 0, .1) -1px -1px 0
}

.header__navigation nav>ul ul li {
    margin: 0 0 5px;
    white-space: nowrap
}

.header__navigation nav>ul>li:hover>ul {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}


@media(max-width:1080px) {
    .header {
        display: none
    }
}





/* MAIN */
.main {
    background: url('../../images/main-bg.jpg') 50% 50% / auto no-repeat #314359;
    width: 100%;
    max-width: 1920px
}

.main__title {
    line-height: 1;
    padding: 0;
    margin: 50px 0 60px 0;
    font-size: 55px;
    font-weight:normal;
    text-align:center;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-shadow: 0px 3px 10px rgba(0, 0, 0, .3);
}

.main__title strong {
    color:#f8a500;
    font-weight:normal;
    display: block;
    margin:25px 0 20px 0
}

.main__title span{
    text-transform: none;
}

.main__content {
    min-height: 796px;
    padding-top: 115px
}

.main__catalog {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.catalog-card {
    background-color:#FFF;
    margin:0 10px;
    padding:5px 5px 30px 5px;
    display:flex;
    flex-direction:column;
    align-items: center;
    text-decoration: none;
    min-height:308px;
    overflow:hidden;
    position:relative;
    text-align:center;
    transition:background-color .25s ease, transform .25s ease;
    clip-path: polygon(50% 0%, 100% 0, 100% 90%, 50% 100%, 50% 100%, 0 90%, 0 0);
}
.catalog-card--calculator {
    position:relative;
    user-select:none;
}
.catalog-card--calculator .catalog-card__title {
    color:#FFF
}
.calc-wrapper {
    background-color:#3d9e62;
    display:flex;
    flex-direction:column;
    align-items: center;
    flex:1;
    min-height:294px;
    color:#FFF;
    margin-bottom:-23px;
    clip-path: polygon(50% 0%, 100% 0, 100% 90%, 50% 100%, 50% 100%, 0 90%, 0 0);
}
.catalog-card__image img {
    vertical-align:top
}
.catalog-card__title {
    font-size:24px;
    margin-top:10px;
    color:#000
}
.catalog-card:hover {
    background-color: #f8a500;
    transform: translateY(10px);
}
.catalog-card__price {
    color:#f8a500;
    font-size:24px;
    transition:color .25s ease
}
.catalog-card:hover .catalog-card__price{
    color: #FFF;
}
.catalog-card__description {
    line-height:1.3;
    margin:10px 0 15px 0
}

.catalog-card__button {
    width:100%;
    max-width:230px;
}

.catalog-card__button .button {
    width:100%;
    text-align: center;
}

@media(max-width:900px) {
    .main__content {
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: initial
    }

    .catalog-card__title {
        line-height:1.2;
        font-size:18px;
    }

    .catalog-card__price {
        font-size:16px
    }

    .catalog-card {
        min-height:auto
    }

    .main__title {
        line-height: 1.2;
        font-size: 40px;
        margin-top:0;
    }
}

@media(max-width:760px) {
    .main {
        background-color:#f0f2f5;
        background-image:none;
        clip-path: polygon(50% 0%, 100% 0, 100% 95.5%, 50% 100%, 50% 100%, 0 95.5%, 0 0);
    }
    .main__title {
        color:#000;
        text-shadow:none
    }
    .main__catalog {
        flex-direction:column;
        max-width:280px;
        margin:0 auto
    }
    .main__content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .catalog-card {
        margin-bottom:15px
    }
}

@media(max-width:680px) {
    .main__title {
        font-size: 24px;
        text-align: center;
    }
}


/* COLLECTION */
.collection {
    padding:50px 0
}
.toprow {
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.tip {
    background-color: #fff;
    padding:20px 30px;
    display: flex;
    align-items: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    position:relative
}

.tip::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    left: 50px;
    bottom: -10px;
    width: 0;
    height: 0;
    width: 20px;
    height: 20px;
    background-color: #FFF;
    transform: rotate(45deg);
    box-shadow: rgba(0, 0, 0, 0.025) 6px 6px 6px;
}

.tip__icon {
    width: 62px;
    flex-basis: 62px;
    flex-grow: 0;
    flex-shrink: 0;
}

.tip__icon img {
    display: block
}

.tip__text {
    padding-left: 30px;
    line-height: 1.5;
}

.tip__title {
    font-size:35px;
    line-height: 1.3;
}

.collection__more {
    margin:30px 50px;
    display:flex;
    justify-content: center;
}

@media(max-width:1200px) {
    .tip__text {
        padding-left: 15px;
        padding-right: 10px
    }
}

@media(max-width:900px) {
    .toprow {
        flex-direction:column
    }
}

@media(max-width:800px) {
    .toprow__title {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 10px
    }
    .tip__text {
        padding-left: 10px;
    }

    .tip__icon {
        width: 50px;
        flex-basis: 50px;
    }
}

/* GIFT's */
.gift {
    width:100%;
    max-width:1920px;
    background-color:#FFF;
    background-image: url('../../images/gift-bg.png');
    padding:60px 0 30px 0
}
.gift__top {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align:center
}
.gift__title {
    padding:0;
    margin:0 0 30px 0;
    line-height:1.2
}
.gift__description {
    font-size:18px;
    text-align:center;
    line-height:1.5
}
.gift__description span{
    background-color:#f8a500
}
.gift__grid {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap:30px;
    width:100%;
    margin:50px 0 50px 0
}
.gift__item {
    padding:10px;
    min-height:170px;
    background-color:#3d9e62;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center
}
.gift__item h4 {
    color:#FFF;
    line-height:1.5;
    padding:0;
    margin:0;
    font-size:24px;
    font-weight:normal
}
@media (max-width: 1140px) {
    .gift__title {
        font-size: 26px;
        margin:0 0 20px 0;
        line-height: 1.2;
    }
    .gift__description {
        font-size:16px;
    }
    .gift__item h4 {
        font-size:20px;
    }
    .gift__item {
        min-height:130px;
    }
}
@media (max-width: 780px) {
    .gift__grid {
        grid-template-columns: 1fr;
        margin:0 auto;
        max-width:220px;
        margin:30px 0 30px 0
    }
}




/* QUESTION */
.question {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:0;
    width:100%;
    max-width:1920px;
    background-color:#FFF;
}
.question__left {
    display:flex;
    justify-content: flex-end;
    background:url('../../images/question-left.jpg') 50% 0 / cover no-repeat #cab6a7
}
.question__right {
    display:flex;
    justify-content: flex-start;
    background-color:#3d9e62
}
.question__info,
.question__form {
    width:100%;
    max-width:600px;
}
.question__info {
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding:50px 0
}
.question__form {
    padding:50px 10px 70px 100px
}
.question__title {
    padding:0;
    margin:0 0 20px 0;
    line-height:1.1;
    color:#FFF
}
.question__description {
    color:#b1d8c0;
    line-height:1.4
}
.question__wrapper {
    max-width:380px;
    margin-top:30px
}
body .question__wrapper input {
    color:#FFF
}
.question__wrapper input::placeholder {
    color: #FFF;
    font-size: 16px;
}
.question__shield {
    display:flex;
    justify-content: center;
    width:100%;
    grid-column: span 2;
}
.question__shield img {
    vertical-align: top;
    margin-top:-80px;
    position:absolute
}

@media (max-width: 1040px) {
    .question__title,
    .question .tip__title {
        font-size:24px
    }
    .question__info {
        padding-left:15px
    }
    .question__form {
        padding:50px 10px 40px 40px
    }
}

@media (max-width: 900px) {
    .question {
        grid-template-columns: 1fr;
        gap:30px;
        padding:0 15px;
        max-width:640px;
        margin:0 auto;
        background-color: transparent;
    }
    .question__wrapper {
        max-width:100%;
    }
    .question__left {
        justify-content: flex-start;
        background:none
    }
    .question__info {
        padding-bottom:0;
        padding-left:0
    }
    .question__form {
        padding:30px
    }
    .question__shield {
        display: none;
    }
}






/* ADVANTAGES */
.advantages {
    padding: 130px 0 30px 0;
    background:#FFF;
    width:100%;
    margin:0 auto
}

.advantages__title {
    text-align: center;
    margin: 0;
    line-height: 1.3
}

.advantages__description {
    text-align: center;
    font-size: 24px;
    padding: 0;
    margin: 0;
}

.advantages__grid {
    padding: 50px 0 20px 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: min-content;
    grid-gap: 20px;
    gap: 20px;
}

.advantages__item {
    background-color: rgb(248, 249, 250);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding:10px 30px 30px 30px
}
  

.advantages__icon {
    width: 83px;
    flex-basis: 83px;
    flex-grow: 0;
    flex-shrink: 0;
}

.advantages__icon img {
    display: block
}

.advantages__text {
    font-size: 18px;
    line-height: 1.3;
    text-align:center;
    margin-top:20px
}

@media(max-width:1200px) {
    .advantages__text {
        font-size: 16px;
    }

    .advantages__icon {
        width: 50px;
        flex-basis: 50px;
    }
}

@media(max-width:1024px) {
    .advantages__grid {
        padding: 40px 0;
        grid-template-columns: repeat(3, 1fr);
    }
    .advantages__item {
        padding:20px
    }
}
@media(max-width:800px) {
    .advantages__title {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 10px
    }
    .advantages__grid {
        padding: 40px 0;
    }
    .advantages__item {
        padding:15px
    }
}

@media(max-width:480px) {
    .advantages__grid {
        padding: 30px 0;
        grid-template-columns: 1fr 1fr;
    }
}


/* ABOUT */
.about {
    background:#FFF;
    width:100%;
    max-width:1920px
}
.about__content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px
}

.about__text {
    width: 48%;
    line-height: 1.5;
    font-size: 16px;
    color:#777
}

.about__more {
    margin:0 0 70px 0;
    display:flex;
    justify-content: center;
}

@media(max-width:900px) {
    .about__content {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px
    }

    .about__text {
        width: 100%;
        line-height: 1.4;
        font-size: 16px
    }
}


/* POPULAR */
.popular {}

.popular__content {
    display: flex;
    justify-content: space-between;
}

.popular__title {
    line-height: 1.2
}

.popular__controls {
    width: 250px;
    margin-right: 110px;
}

.popular__controls .button {
    width: 100%;
    margin-bottom: 30px;
    height: 60px;
    line-height: 60px;
    background-color: #f0f2f5;
    color: #000
}

.popular__controls .button .arrow-link__arrow {
    flex: 1;
    width: 45px;
    flex-basis: 45px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-left: 0;
    fill: #b5b9be
}

.popular__controls .button:hover .arrow-link__arrow,
.popular__controls .button--active .arrow-link__arrow {
    transform: translateX(6px);
    fill: #FFF
}

.popular__controls .button--active,
.popular__controls .button:hover {
    background-color: #e52639;
    color: #FFF
}

.popular__right {
    background-color: #314359;
    flex: 1;
    position: relative;
    max-width: 820px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.popular__wrapper {
    overflow: hidden;
}

.popular__right::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1180px;
    background: url('../../images/texture-bg.jpg') 50% 50% / auto repeat fixed #314359;
}

.popular__data {
    visibility: hidden;
    height: 0;
    margin-left: 30px;
    overflow: hidden;
}

.popular__data--visible {
    height: auto;
    visibility: visible;
    overflow: visible
}

.popular .owl-stage-outer {
    overflow: visible !important
}

.popular__arrows {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0;
    position: relative;
    z-index: 355;
    transform: translateY(-233px);
}

.popular__arrow-right,
.popular__arrow-left {
    background-color: #f0f2f5;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: background-color .25s ease;
    cursor: pointer
}

.popular__arrow-right {
    margin-right: -30px
}

.popular__arrow-left svg,
.popular__arrow-right svg {
    fill-rule: evenodd;
    stroke: #777;
    stroke-width: 1px;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    fill: none;
    height: 12px;
    width: 30px;
    transition: stroke .25s ease
}

.popular__arrow-left svg {
    margin-right: 3.5px;
    transform: rotate(-135deg);
}

.popular__arrow-right svg {
    transform: rotate(45deg);
}

.popular__arrow-left:hover,
.popular__arrow-right:hover {
    background-color: #e52639
}

.popular__arrow-left:hover svg,
.popular__arrow-right:hover svg {
    stroke: #FFF;
}


@media(max-width:1200px) {
    .popular__controls {
        width: auto;
        margin-right: 40px;
    }

    .popular__arrows {
        margin: 0 auto;
        justify-content: center;
        transform: translateY(20px);
    }

    .popular__arrow-right,
    .popular__arrow-left {
        width: 50px;
        height: 50px;
        background-color: transparent
    }

    .popular__arrow-left svg {
        fill: #FFF
    }

    .popular__arrow-right svg {
        fill: #FFF
    }

    .popular__arrow-left:hover,
    .popular__arrow-right:hover {
        background-color: transparent
    }
}

@media(max-width:1140px) {
    .popular__content {
        flex-direction: column;
    }

    .popular__right {
        max-width: auto;
    }

    .popular__controls {
        margin-right: 0
    }

    .popular__title {
        text-align: center;
        font-size: 26px;
        line-height: 1.2;
        margin: 0 0 30px 0;
        padding: 0;
    }

    .popular__switches {
        display: flex
    }
}

@media(max-width:900px) {
    .popular__switches .button {
        font-size: 14px;
        height: 40px;
        line-height: initial;
        padding: 0 8px;
        justify-content: center;
    }

    .popular__switches .button .arrow-link__arrow {
        display: none
    }

    .popular__right,
    .popular__wrapper,
    .popular__right::before {
        width: calc(100vw - 30px)
    }

    .popular__data {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    .popular__arrows {
        margin-left: -30px
    }
}

@media(max-width:720px) {
    .popular__switches {
        flex-wrap: wrap;
    }

    .popular__switches .button {
        width: calc(50% - 10px);
        margin: 10px 5px 0 5px
    }

    .popular__right::before {
        display: none;
    }

    .popular__right .project-card__image {
        width: 100%
    }

    .popular__right .project-card {
        background-color: #f0f2f5
    }

    .popular__right {
        background-color: transparent
    }
}






/* CONSULTATION */
.consultation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 0;
    border-bottom: #2c3d51 10px solid;
    background-color: #FFF
}

.consultation__text {
    width: 380px;
    padding-left: 80px;
}

.consultation__form {
    flex: 1;
    max-width: 710px;
    padding: 40px 80px 0 0;
}

.consultation__title {
    line-height: 1.1;
    padding: 0;
    margin: 0 0 10px 0;
}

.consultation__form .button {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.consultation__form .checkbox__switch {
    margin-left: 30px;
    margin-top: -10px;
}

.privacy-mc {
    color: #b1d8c0;
    font-size: 14px;
    line-height: 1.3;
}

.privacy-mc a {
    color: #b1d8c0
}
.privacy-fc {
    color: #777;
    font-size: 14px;
    line-height: 1.3;
}

.privacy-fc a {
    color: #777
}

@media(max-width:1024px) {
    .consultation__text {
        padding-left: 20px;
    }

    .consultation__form {
        padding: 40px 20px 0 0;
    }
}

@media(max-width:900px) {
    .consultation {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 30px;
    }

    .consultation__text {
        text-align: center;
        width: auto
    }

    .consultation__title {
        font-size: 26px;
        line-height: 1.1
    }

    .consultation__description {
        line-height: 1.2;
        font-size: 14px
    }

    .privacy-mc {
        padding-left: 0;
        text-align: center
    }

    .consultation__text {
        padding-left: 0;
    }

    .consultation__form {
        padding: 30px 0 0 0;
    }
}





/* ALBUM */
.album {
    padding: 0 15px 80px 15px;
    margin-top: 50px;
    width: 100%;
    max-width: 1920px
}

.album__top {
    margin-bottom:20px
}

.album__title {
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.2
}

.album__grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 20px;
    gap: 20px;
    padding: 0
}

.album__grid img {
    vertical-align: top
}

.photo__thumb a {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    max-height: 290px;
}

.photo__thumb a:before {
    content: '';
    width: 70px;
    height: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    position: absolute;
    display: block;
    background: url(../../images/zoom.png) 50% 50% / 40px 32px no-repeat #f8a500;
    opacity: 0;
    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: #FFF;
    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:50px 0 0 0;
    display:flex;
    justify-content: center;
}


@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 {
        font-size: 24px
    }
}

@media(max-width:900px) {
    .album__grid {
        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__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MORE*/
.more {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:0;
    width:100%;
    max-width:1920px;
    padding:0 0 80px 0
}
.more__left {
    display:flex;
    justify-content: flex-end;
}
.more__right {
    display:flex;
    justify-content: flex-start;
}
.more__info,
.more__form {
    width:100%;
    max-width:600px;
}
.more__info {
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.more__form {
    padding:50px;
    background: #FFF;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .05);  
}
.more__title {
    padding:0;
    margin:0 0 20px 0;
    line-height:1.1;
}
.more__description {
    color:#777;
    line-height:1.4
}
.more__wrapper {
    max-width:380px;
    margin-top:30px
}
body .more__wrapper input {
    color:#000
}
.more__wrapper input::placeholder {
    color: #000;
    font-size: 16px;
}
.reviews {
    width:100%
}
.reviews__top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width:100%;
    margin-bottom:20px
}
.reviews__title {
    padding:0;
    margin:15px 0 20px 0;
    line-height:1.1;
}
.reviews__arrows {
    display:flex;
    margin-left:15%
}
.reviews__arrow {
    background-color:#FFF;
    transition: background-color .25s ease;
    width:72px;
    height:90px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor:pointer;
    user-select: none;
}
.reviews__arrow svg{
    width:12px;
    height:72px;
    stroke:rgb(119, 119, 119);
    transition:stroke .25s ease, right .25s ease
}

.reviews__arrow:hover {
    background-color:#f8a500
}
.reviews__arrow:hover svg {
    stroke:#FFF;
}

/* REVIEW */
.review {

}

.review__top {
    display:flex;
    align-items: center;
    margin-bottom:25px;
}

.review__icon {
    margin-right:30px;
    width: 70px;
    flex-basis: 70px;
    flex-grow: 0;
    flex-shrink: 0;
}

.review__icon img {
    vertical-align:top;
    width:70px
}

.review__title {
    line-height:1.2;
    margin:5px 0 2px 0;
    padding:0;
    font-size:24px
}

.review__location {
    font-size:14px;
    color:#777;
    line-height:1.4
}

.review__text {
    max-width:80%
}

@media (max-width: 1040px) {
    .more__title,
    .more .tip__title,
    .reviews__title {
        font-size:24px
    }
    .more__info {
        padding-left:15px
    }
    .more__form {
        padding:50px 10px 40px 40px
    }
    .reviews__arrow {
        transform: scale(.4);
    }
    .review__title {
        font-size:20px
    }
}

@media (max-width: 900px) {
    .more {
        grid-template-columns: 1fr;
        gap:30px;
        padding:0 15px 30px 25px;
        max-width:640px;
        width:100%;
        margin:0 auto;
        background-color: transparent;
    }
    .more__wrapper {
        max-width:100%;
    }
    .more__left {
        justify-content: flex-start;
        background:none
    }
    .more__right {
        display:none
    }
    .more__info {
        padding-bottom:0;
        padding-left:0
    }
    .more__form {
        padding:30px
    }
    .more__shield {
        display: none;
    }
}


/* PROJECT-CARD */
.project-card {
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration:none
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow:0px 5px 10px 0px rgb(0 0 0 / 5%);
}

.project-card__data {
    width: 100%;
    padding: 30px 0 30px 30px;
    display: flex;
    position:relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.project-card__image img {
    display: block;
    width: 100%
}

.project-card__arrow {
    position:absolute;
    width:12px;
    height:72px;
    right:15%;
    top:15%;
    stroke:rgb(119, 119, 119);
    transition:stroke .25s ease, right .25s ease
}

.project-card:hover .project-card__arrow {
    stroke:#f8a500;
    right:10%
}

.project-card__link, .project-card__link h2{
    text-decoration: none;
    padding: 0;
    margin: 0;
    line-height: 1.2;
    font-size: 18px;
    color:#000;
    font-weight: normal
}

.newsflash-title{
    text-decoration: none;
    padding: 0;
    margin: 0;
    line-height: 1.2;
    font-size: 18px;
    color:#000;
    font-weight: normal
}

.project-card__link, .project-card__link h2 a{
    text-decoration:none;
}

.newsflash-title, .newsflash-title a{
    text-decoration:none;
}

.project-card__price {
    color: #3d9e62;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    padding-top: 10px;
    display: flex;
    align-items: center;
}
.project-card__price span{
    color:#777;
    font-size:16px;
    font-weight:normal;
    margin-right:10px
}

.project-card__props {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    white-space: nowrap;
}

.card-prop__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 30%;
    white-space:nowrap
}

.card-prop__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    flex-grow: 0;
    flex-shrink: 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin-right: 10px;
}

.card-prop__icon--size {
    background-image: url('../../images/project-card-size.png');
}

.card-prop__icon--square {
    background-image: url('../../images/project-card-square.png');
}

.card-prop__icon--time {
    background-image: url('../../images/project-card-time.png');
}

.card-prop__icon--height {
    background-image: url('../../images/project-card-height.png');
}

.card-prop__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    color:#000
}

.card-prop__info span {
    color: #777;
    line-height: 1.2;
    padding-top: 3px;
    font-size: 14px
}

.card-prop__info strong {
    font-size: 18px;
    font-weight:normal;
    line-height: 1
}


/* PROJECT GRID */
.catalog {
    width: 100%
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 30px;
    grid-gap: 30px;
    padding: 30px 0 30px 0
}

.catalog__grid .card-prop__icon {
    filter: brightness(1.1);
}

@media(max-width:900px) {
    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:760px) {
    .catalog {
        width: auto
    }

    .catalog__grid {
        padding: 30px 0;
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    padding: 50px 0;
    width:100%;
    max-width:1920px;
    background:#FFF
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__column--company {
    width: 15%
}

.footer__column--links {
    width: 39%
}

.footer__logo {
    margin-top: 30px
}

.footer .contact--address .contact__data {
    font-size:16px !important;
    font-weight:normal;
    line-height:1.5
}

.footer__logo img {
    vertical-align: top
}

.webhail {
    
}

.webhail a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: #a3a3a3;
    font-size: 14px
}

.webhail img {
    vertical-align: top;
    margin-right: 18px
}

.footer__column--links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer__links {
    margin-right: 10px;
    margin-top: 20px
}

.footer__contacts {
    margin-top:20px
}

.footer__title {
    font-size: 24px;
    font-weight: normal;
    padding: 0;
    margin: 0 0 15px 0
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin: 0 0 10px 0
}

.footer__links ul a {
    text-decoration: none
}

.footer__privacy {
    display:flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.footer__privacy a {
    color: #a3a3a3;
    font-size: 14px
}

.footer__bottom {
    width:100%;
    margin-top:40px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
    white-space:nowrap
}
@media(max-width:960px) {
    .footer__bottom {
        grid-template-columns: 1fr;
        gap:20px
    }
    .webhail,
    .footer__privacy {
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}





.contact-vidget__list .contact__icon {
    width: 26px;
    height: 26px;
    margin-right: 5px;
    margin-top: 0px
}

.contact-vidget__list .contact--phone .contact__link {
    white-space: nowrap;
}

.contact-vidget__list .contact--phone {
    margin-bottom: 25px
}

.contact-vidget__list .contact--email {
    margin-bottom: 25px
}

.contact-vidget__list .contact__email,
.contact-vidget__list .contact__phone,
.contact-vidget__list .contact__address {
    align-items: flex-start;
}

.contact-vidget__list .contact--email .contact__link {
    font-size:16px !important;
    font-weight:normal;
    line-height:1.5
}

.contact-vidget__list .contact--address .contact__data {
    font-size: 18px;
    padding-top: 3px
}

.contact-vidget__social .social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 20px;
    grid-gap: 20px
}

.contact-vidget__social .social__item {
    margin: 0;
    width: auto;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
    transition: background-color .25s ease
}

.contact-vidget__social .social .social__item:last-child {
    margin-right: 0
}

.contact-vidget__social .social__icon {
    width: 28px;
    height: 28px;
    transition: transform .25s ease
}

.footer__copyright {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    font-size: 14px;
}

@media(max-width:960px) {
    .footer__column--links {
        display: none
    }
}

@media(max-width:800px) {
    .footer__content {
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .footer__column--company {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 30px
    }

    .footer {
        padding: 20px 0;
    }
}


/* COMPLECTATION */
.complectation {
    padding: 50px 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;
    background-color: #3d9e62;
}

ul.tabs li {
    margin: 0;
    padding: 0;
    flex: 1
}

ul.tabs a {
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
    transition: color .25s ease, background-color .25s ease
}

ul.tabs a:hover {
    color: #000;
    background-color: #e6e6e6
}

ul.tabs a.active {
    color: #FFF;
    background-color: #348954
}

div.tabs-content {
    padding: 0;
}

.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 {
    background-color:#FFF;
    border-bottom:rgba(0, 0, 0, .06) 1px solid;
}
.table table td:first-child {
    padding: 20px 0 20px 0px;
    background-color:transparent;
    min-width:230px
}

.table table td {
    text-align: left;
}

.table table td:first-child {
    max-width: 15%;
    padding-right: 0px;
    font-weight: bold
}

@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
    }

}

/* TOP */
.top__title {
    padding: 0;
    margin: 0;
    text-align: center;
    line-height: 1.2
}

@media(max-width:900px) {
    .top__title {
        font-size: 26px
    }
}


/* PROJECT */
.project {
    padding: 0 0 80px 0;
    margin: 0 0 0 0;
    width: 100%;
    max-width: 1920px;
    background: #f0f2f5;
}

.project__content {
    position: relative
}


.project h1 {
    font-size: 40px;
    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;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}

  

.gallery {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: 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__info {
    z-index: 1;
    min-height: 250px;
}

.project-prop__pricelist {
    padding: 30px 32px 10px 32px;
    border-top:#f8f9fa 2px solid;
    border-bottom:#f8f9fa 2px solid;
}


.project-prop__row {
    width: 100%
}

.project-prop__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 30px;
    grid-gap: 30px;
    white-space: nowrap;
    padding: 40px 32px 30px 32px;
}

.project-prop__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center
}

.pricelist__label {
    width: 45%;
    margin-bottom: 25px;
    line-height: 1.2;
    font-size: 16px;
    display: flex;
    align-items: center;
    color:#666;
    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: 30px;
    font-size: 24px;
    color: #3d9e62;
    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;
    display: flex;
    justify-content: center;
}

.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 30px 0;
    text-align: center;
}

.project-prop__complect a {
    color: #f8a500;
    text-decoration: none;
}

.project-prop__button {
    display: flex;
    align-items: center;
    justify-content: center;
}


@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: 20px
    }


}

@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;
    }
}










/* BREADCRUMBS */
.breadcrumbs {
    padding: 80px 0 5px 0;
    background-color: #f0f2f5;
    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;
    font-size: 16px
}

.breadcrumbs a {
    color: #000;
    text-decoration: none;
}

.breadcrumbs li:not(:last-child):after {
    content: '-';
    letter-spacing: -3.2px;
    padding: 0 7px;
    color: #000;
}

.breadcrumbs li:first-child{
    display:none;
}

.breadcrumbs li:first-child:after{
    content: '';
    padding:0;
}

@media only screen and (max-width:900px) {
    .breadcrumbs {
        background: #FFF;
        box-shadow: rgba(0, 0, 0, .05) 0 -1px 1px;
        width: 100%;
        padding: 20px 0 5px 0;
    }

    .breadcrumbs ul {
        justify-content: center;
    }

    .breadcrumbs li {
        font-size: 16px
    }
}


/* PAGE */
.page {
    width: 100%;
    max-width: 1920px;
    background-color: #f0f2f5;
    padding-bottom:30px
}

.page h1 {
    font-size: 40px;
    text-align: left;
    line-height: 1.1;
    padding: 0;
    margin: 0 0 35px 0
}

.page__data {
    padding: 0 0 90px 0
}

@media(max-width:900px) {
    .page {
        padding-bottom:0
    }
    .page h1 {
        font-size: 26px;
        line-height: 1.2;
        margin: 20px 0;
        text-align: center
    }
}

.color-highlight {
    color: #f8a500
}

/* FILTER */
.filter {
    width:100%;
    max-width:1920px;
    padding:80px 0 50px 0;
    position:relative;
    z-index:20
}

.filter__wrapper {
    background:#FFF;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
    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 100%;
}
.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:20px;
}
[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:#f8f9fa;
	padding:0 12px;
    min-width:57px;
    text-align:center;
    white-space:nowrap;
    line-height:35px;
    height:35px;
    font-size:16px;
	margin-bottom:10px;
    margin-right:7px;
	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:#f8a500;
    color:#FFF
}
[class*="jlmf-list"] > div input[type='checkbox']:checked + label{
	background-color:#f8a500;
	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;
}


/* MODALS */
#callmeModal,
#signModal {
    max-width: 440px;
    width: 100%
}

#calcModal {
    max-width: 580px;
    width: 100%
}

#orderModal {
    max-width: 580px;
    width: 100%
}

body .fancybox-content {
    border-radius: 0;
    padding: 20px 30px 30px 30px;
    overflow: initial;
    border-radius: 0;
}

.modal-title {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
    z-index: 999;
    transition: transform .3s .5s ease
}

body .fancybox-slide--html .fancybox-close-small {
    padding: 6px;
    right: 20px;
    top: 15px
}

/* FORMS */
.form-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap
}

.form-grid .form-grid__field,
.form-grid__field--sizes {
    width: calc(50% - 15px);
    margin-bottom: 20px;
}

.form-grid .form-grid__field--4 {
    width: calc(25% - 10px);
}

.form-grid .form-grid__field label,
.form-grid__field--sizes label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px
}

.form-grid__field--sizes label {
    white-space: nowrap
}

.form-grid .form-grid__field--12 {
    width: 100%
}

.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
}

body .form-grid .form-grid__field .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;
    font-weight: 400;
    cursor: pointer
}

.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
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
select,
textarea {
    background-color: rgba(0, 0, 0, .05);
    height: 60px;
    width: 100%;
    padding: 0 28px;
    color: #000;
    font-size: 16px;
    border: 0;
    outline: none;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, .0) 0 0 0 1px inset;
    transition: background-color .25s ease, box-shadow .25s ease;
    will-change: background-color, box-shadow
}

@media(max-width:900px) {

    input[type=text],
    input[type=tel],
    input[type=email],
    input[type=search],
    select,
    textarea {
        height: 55px;
        line-height: 55px;
    }
}

textarea {
    min-height: 90px;
    padding: 16px !important;
    width: 100% !important
}

input[type=text]:hover,
input[type=tel]:hover,
input[type=email]:hover input[type=search]:hover textarea:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 0 0 1px inset
}

input[type=text]:active,
input[type=text]:focus,
input[type=tel]:active,
input[type=tel]:focus,
input[type=email]:active,
input[type=email]:focus,
input[type=search]:active,
input[type=search]:focus,
textarea:hover,
textarea:active,
textarea:focus {
    background-color: rgba(0, 0, 0, .1);
    box-shadow: rgba(0, 0, 0, .15) 0 0 0 1px inset, rgba(0, 0, 0, .1) 0 2px 5px
}

.form-answer {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    opacity: 0;
    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;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto 18px
}

.answer-good {
    background-image: url(../../images/ajax-ok.svg)
}

.answer-bad {
    background-image: url(../../images/ajax-error.svg)
}

.form-answer--show {
    opacity: 1;
    transform: translateY(0);
    min-height: 18px;
    padding-left: 28px;
    margin-bottom: 20px
}

.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: 400;
    -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
}

.privacy-dc {
    padding: 5px 20px 5px 42px;
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.2;
    background: url(../../images/lock.png) 0 50% / auto no-repeat
}

.privacy-dc a {
    color: #717171
}

.privacy-nc {
    font-size: 14px;
    color: #a18e79;
    line-height: 1.1;
}

.privacy-nc a {
    color: #a18e79
}

@media only screen and (max-width:960px) {
    .form-grid .form-grid__field--4 {
        width: calc(50% - 10px);
        margin-bottom: 20px
    }
}

@media only screen and (max-width:700px) {
    .form-grid .form-grid__field {
        width: 100%
    }
}



/* 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: 10px;
    font-size: 16px;
}

.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: rgba(0, 0, 0, .2) 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
}


/* 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
}

input[type="tel"] + span {
display: inline-block;
    position: absolute;
    margin-left:5px;
    color:red;
}

input[type="tel"] + span+p {
    color:red
}
