@charset 'utf-8';

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


html {
    line-height: 1.35;
    font-size: 16px;
    /* use this value for sizing all items */
    min-width: 320px;
}

body {
    margin: 0;
    height: 100%;
    word-wrap: break-word;
    background-color: #ebf2f7;
    color: #161616;
    transition: transform .5s cubic-bezier(0.68, -0.55, 0.265, 1)
}


body,
input,
textarea,
button {
    font-family: 'Circe', 'Helvetica Neue', 'Tahoma', sans-serif;
    font-weight: normal;
    letter-spacing: -0.5px;
}

a {
    color: #000;
    transition: color .2s ease
}

a:active,
a:hover {
    outline-width: 0;
    color: #76b82a
}

dialog{
    max-width: unset;
    max-height: unset;
}
body:has(dialog:open){
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Circe', 'Helvetica Neue', 'Tahoma', sans-serif;
    font-weight: bold;
    margin: 0;
    padding: 0
}

ul {
    list-style: circle
}

ol {
    list-style: decimal
}

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

li {
    margin-bottom: .8rem
}

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

textarea {
    overflow: auto
}

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

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

/* CORE */
h1 {
    font-size: 60px;
    margin: 0;
    padding: 0;
    line-height: 70px;
}

.blog_project h1{
    margin: 0 0 20px 0;
}    

@media only screen and (max-width:850px) {
    h1 {
        font-size: 40px;
        line-height: 40px
    }
}

h2 {
    font-size: 40px;
    line-height: 46px
}

@media only screen and (max-width:850px) {
    h2 {
        font-size: 30px;
        line-height: 32px
    }
}

.btn {
    background-color: #76b82a;
    color: #FFF;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    padding: 0 28px;
    line-height: 50px;
    height: 48px;
    border: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    transition: opacity .25s ease, color .25s ease, transform .1s ease,   background-color .25s ease;
    outline: none;
    position: relative;
    transform: translateZ(50px);
    border-radius: .5em;
}

.btn:hover {
    opacity: 0.8;
    color: #FFF;
}

.btn:active {
    transform: scale(0.95)
}

.btn--send-project,
.btn--order-call,
.btn--promo {
    background-color: transparent;
    color: #161616;
    line-height: 40px;
    height: 38px;
    border: #161616 1px solid;
    padding: 0 15px;
    font-size: 16px;
}

.btn--send-project {
    border-color: #f8ac08
}

.btn--send-project:hover {
    background-color: #f8ac08
}

.btn--order-call {
    border-color: #76b82a
}

.btn--order-call:hover {
    background-color: #76b82a
}

.btn--promo {
    border-color: #df2830
}

.btn--promo:hover {
    background-color: #df2830
}

.btn--transparent {
    background-color: transparent;
    box-shadow: #76b82a 0 0 0 1px inset;
    color: #161616
}

.btn--transparent:hover {
    background-color: #76b82a;
    color: #FFF
}

.btn--gray-color {
    color: #777777;
    font-size: 18px
}

.btn--gold {
    background-color: #f8ac08;
}

.btn--gold:hover {
    background-color: #da9500;
    opacity: 1
}

.project-preview__link .btn{
    /* background-color:#8dd33d; */
    /* border: #76b82a 1px solid; */
    /* color: #fff; */
    /* text-shadow: 1px 1px 2px rgba(0,0,0,.5); */
    /* box-shadow: inset 0 .25em .5em rgba(0,0,0,0); */
    background-color: transparent;
    border: #76b82a 1px solid;
    color: #76b82a;
    transition-property: all;
    font-weight: 400;
}
@media screen and (width <= 600px) {
    .project-preview__link .btn{
        line-height: 36px;
        height: 36px;
    }
}

.project-preview__link .btn:hover{
    /* background-color: #8ce429; */
    color: #548320;
}
.project-preview__link .btn:active{
    /* box-shadow: inset 0 .25em .5em rgba(0,0,0,.3); */
    color: #466b1b;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    background-color: #e8eef0;
    color: #FFF;
    outline: none;
    padding: 0;
    margin: 0;
    border: 0;
    transition: background-color .3s ease;
    min-height: 48px;
    padding: 4px 12px 0 12px;
    line-height: 20px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus {
    background-color: #dce3e9;
}

*::placeholder {
    color: #FFF;
}

::selection {
    background: #76b82a;
    color: #FFF
}

::-moz-selection {
    background: #76b82a;
    color: #FFF
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgb(204, 204, 204);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #76b82a;
}


/* FORMS */
.form-answer {
    padding-top: 0;
    margin-top: 0;
    text-align: center
}

.form__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between
}

.form-grid__field {
    margin-top: 15px;
}

.form-grid__field .btn {
    font-size: 100%
}

.form-grid__field--fullwidth {
    width: 100%;
}

.form-grid__field--halfwidth {
    width: 48%;
}

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

.form-grid__field--params {
    font-size: 90%;
    color: #808080;
    padding: 15px 15px 15px 50px;
    background-image: url('../images/gear.png');
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 42px auto
}

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

.form-grid__field input[type=text],
.form-grid__field input[type=email],
.form-grid__field input[type=password],
.form-grid__field input[type=tel],
.form-grid__field textarea {
    background-color: #dae3ec;
    color: #000
}

.form-grid__field input[type="text"]:focus,
.form-grid__field input[type="email"]:focus,
.form-grid__field input[type="password"]:focus,
.form-grid__field input[type="tel"]:focus,
.form-grid__field textarea:focus {
    background-color: #c3ccd6;
}

.form-grid__field *::placeholder {
    color: #000;
}

.form-grid__field input[type=text],
.form-grid__field input[type=email],
.form-grid__field input[type=password],
.form-grid__field input[type=tel],
.form-grid__field textarea,
.form-grid__field button {
    width: 100%
}

.form-grid__field input[type="file"]::-webkit-file-upload-button {
    border: 0;
    border-radius: 3px;
    color: #FFF;
    background-color: #777;
    outline: none !important;
    cursor: pointer;
    text-transform: uppercase;
    padding: 5px 8px;
    font-size: 70%;
    transition: background-color .3s ease
}

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

.form-grid__field textarea {
    padding: 12px
}

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

.answer-bad {
    color: #b80909 !important
}


/* 
    TEHNODOM
    _____________________________________________________________
*/

/* socicons */
.socicons{
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: .25em;
    margin: 0;
    padding: 0;

    li{
        margin: 0;
        padding: 0;
    }
    svg{
        display: block;
        height: 1.5em;
        width: auto;
    }
}
/* socicons - END */

/* HEADER */
.header:not(.header:has(.index.header__content)) {
    background-color: #f8f8f8;
}

.header__content {
    padding-block: clamp(10px, 2vw, 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo,
.header__menu,
.header__contacts {
    
}

.header__logo {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 100%;
}

.header__logo a{
    display: inline-flex;
    text-decoration: none;
    align-items: baseline;
    gap: .25em;
    white-space: nowrap;
    position: relative;
    line-height: 100%;
}

.header__logo img {
    vertical-align: top
}

.header__logo svg{
    height: 1em;
    width: auto;
    fill: #76b82a;
}
.header__logo span{
    translate: 0 -.015em;
    line-height: 100%;
    font-family: 'Circe', 'Helvetica Neue', 'Tahoma', sans-serif;
    font-weight: bold;
    font-variant-caps: all-small-caps;
}
.header__logo__desc{
    position: absolute;
    inset: 0 0 auto auto;
    font-size: .32em;
    text-align: right;
    color: #f9ae0a;
    text-transform: lowercase;
    line-height: 100%;
}

.header__menu {
    flex: 0 1 auto;
}

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

.header__nav {
    padding-top: 18px
}

.header__nav li a {
    text-decoration: none
}

.header__nav li.active a {
    text-decoration: underline;
    color: #76b82a
}

.header__nav li {
    font-size: 18px
}

.header__nav > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

.header__nav ul>li>ul {
    position: absolute;
    z-index: 60;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    background-color: #fff;
    box-shadow: #d6e2ec 0 6px 6px;
    border-radius: 5px;
    margin-left: -20px;
    padding: 10px;
    transition: all .3s ease
}

.header__nav ul>li:hover>ul {
    visibility: visible;
    opacity: 0.9;
    transform: translateY(0);
}

.header__nav li>ul>li {
    display: block;
    margin: 4px 10px
}

.header__buttons {
    padding-top: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
}

.header__contacts {
    text-align: right;
}
.header__contacts .contact{
    margin-bottom: 9px;
}

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

.contact > ul > li {
    display: block;
    margin: 0 0 9px 0;
    line-height: 20px;
}

.contact ul li:last-child {
    margin-bottom: 0;
}

.contact__item {
    font-size: 20px;
    font-weight: bold
}

.contact__item a {
    text-decoration: none
}

.contact__item--email a {
    color: #808080;
    font-size: 16px;
    border-bottom: 1px dotted;
    display: inline-block;
    line-height: 100%;
}

@media only screen and (max-width: 1000px) {

    .header__contacts {
        margin-left: auto;

        .contact__item--email{
            display: none;
        }
        .contact, .contact ul li{
            margin-bottom: 0;
        }
    }
}

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

    .header__nav-data .btn {
        width: 90%
    }
}

.header__nav-data {
    display: none;
    text-align: center;
    margin-top: 7%;
    padding-top: 4%;
    border-top: #c0c0c0 1px dashed
}

body.nav-displayed .header__nav-data {
    display: block
}

.header__nav-data .contact__phone {
    text-align: center
}

.header__nav-data .btn {
    margin-top: 10px;
    width: 60%
}

.nav-mobile{
    display:none;
}


/* MOBILE MENU */
@media only screen and (max-width: 1000px) {
    .header__content{
        
    }
    .nav-trigger {
        display: block !important;
    }

    .header__menu,
    .header__buttons {
        display: none
    }
    
    
    .header__nav{
        display:none;
    }
    .nav-mobile{
        display:block;
    }

    .header__menu{
        position: fixed;
        z-index: 499;
        display: block !important;
        width: 70vw;
        left: 30vw;
        translate: 100vw 0;
        transition: translate .4s;
        opacity: 1;
        margin-top: 0;
        top: 0;
        height: 100dvh;
        background-color: #FFF;
        box-shadow: rgba(0, 0, 0, 0.17) -5px 0 5px 0;

        .header__nav{
            overscroll-behavior: contain;
            overflow: auto;
            scrollbar-width: none;
            height: 100%;
            padding-bottom: 1rem;
        }
    }
    .header__nav__socicons{
        margin-top: 1rem;
        text-align: center;
        font-size: 1.25rem;
        .socicons{
            gap: .5em;
        }
        li{
            font-size: 1.25rem;
            align-self: stretch;
        }
        a{
            box-shadow: 0 0 1rem rgba(0,0,0,.1);
            display: block;
            padding: .5em;
            border-radius: .5em;
            display: grid;
            place-items: center;
            background: #fff;
        }
    }
    
    
}

body.nav-displayed{
    overflow: hidden;
}
body.nav-displayed .header__menu {
    translate: 0 0;
}
body.nav-displayed .header__menu::before{
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    right: 100%;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(231, 238, 243, 0.75) 70%) ;
}
body.nav-displayed .header__nav>ul {
    display: flex;
    flex-direction: column
}

body.nav-displayed .header__nav>ul li {
    display: block !important;
    width: 100%;
    text-align: center;
    margin: 10px 0 0 0;
    font-size: 20px;
}

body.nav-displayed .header__nav ul ul {
    display: none;
}



body.nav-displayed .header__menu ul li:first-child {
    margin-left: 0 !important
}

.nav-trigger {
    position: fixed;
    inset: 5px 10px auto auto;
    display: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    vertical-align: middle;
    padding: 22.5px 10px;
    cursor: pointer;
    z-index: 500;
    transition: translate .4s;

    &::before{
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        translate: -50% -50%;
        width: 120%;
        aspect-ratio: 1;
        background: rgba(255,255,255,.5);
        backdrop-filter: blur(10px);
        border-radius: 100%;
    }
}

.nav-trigger:focus {
    outline: 0;
}

.nav-trigger:hover span,
.nav-trigger:hover span:before,
.nav-trigger:hover span:after,
.nav-trigger.is-active span:before,
.nav-trigger.is-active span:after {
    background: #76b82a
}

.nav-trigger span {
    display: block;
    position: relative;
}

.nav-trigger span:before,
.nav-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-trigger span:before {
    top: -8px;
}

.nav-trigger span:after {
    bottom: -8px;
}

.nav-trigger span,
.nav-trigger span:before,
.nav-trigger span:after {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #181818;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav-trigger.is-active{
    translate: calc(-70vw);
}
.nav-trigger.is-active:before {
    opacity: 1;
    width: 49px;
    height: 49px;
}

.nav-trigger.is-active span {
    background: transparent;
}

.nav-trigger.is-active span:before {
    top: 0;
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.nav-trigger.is-active span:after {
    bottom: 0;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}






/* HEADER (INDEX ONLY) */
.header__content.index {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 10;
    position: relative
}

.index__main {
    padding-top: 60px;
    display: inline-block;
    vertical-align: top;
    width: calc(55% - 3px)
}

.index__main h1 {
    display: block;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 120%;
}

.index__main .index__subheading {
    font-size: 18px;
    font-weight: normal;
    color: #777777;
    display: block;
    position: absolute;
    transform: translateX(268px) translateY(-59px)
}

.index__main .btn {
    margin-top: clamp(1rem, 2vw, 30px);
    min-width: 225px
}

.index__image {
    display: inline-block;
    vertical-align: top;
    width: calc(45% - 3px);
}

.index__image img {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    transform: translateX(35px)
}

.index__categories {
    padding-top: 80px;
    display:flex;
}

.category__item {
    margin-right: 10px;
    width: 226px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.2);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #FFF;
    will-change: transform, background-shadow;
    box-shadow: rgba(0, 0, 0, 0) 0 0 0;
    transition: transform .3s ease, box-shadow .3s ease
}

.category__item:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0 3px 8px;
    transform: translateY(-6px);
}

.category__item--doma {
    background-image: url('../images/category-doma-bg.jpg')
}

.category__item--bani {
    background-image: url('../images/category-bani-bg.jpg')
}

.category__item--karkas {
    background-image: url('../images/category-karkas-bg.jpg')
}

.index__categories .category__item:last-child {
    margin-right: 0
}

.category__properties {
    position: absolute;
    width: 100%;
    padding: 0 24px;
    bottom: 18px
}

.category__properties strong {
    display: block;
    font-size: 20px
}

.category__properties span {
    font-size: 20px;
    color: #FFF
}


@media only screen and (max-width:1090px) {
    .index__main {
        width: calc(60% - 3px)
    }

    .index__image {
        width: calc(40% - 3px);
    }

    .index__image img {
        right: 0;
        z-index: -1;
    }
}

@media only screen and (max-width:980px) {
    .index__image img {
        width: 60%
    }
}

@media only screen and (max-width:850px) {
    .index__main {
        padding-top: 10px;
        width: 100%;
    }
    .index__main h1{
        line-height: 100%;
    }

    .index__main .index__subheading {
        position: relative;
        transform: none;
        padding-top: 1em;

        br{
            display: none;
        }
    }

    .index__image {
        display: none
    }
}

@media only screen and (max-width:550px) {
    .index__categories {
        flex-direction:column;
        width:226px;
        margin:0 auto;
        padding-top: 2rem;
    }
    .category__item {
        width: 100%;
        margin: 5px 0;
    }
}

/** Breadcrumbs */
.breadcrumbs {
    box-shadow: rgba(214, 226, 235, 0.4) 0 4px 8px inset;
    margin-bottom: .5rem;
}

.breadcrumbs__content {
    padding-top: 20px;
    font-size: 14px;
}

.breadcrumbs span {
    padding: 0 2px;
}

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

.breadcrumbs__content ul li{
    display:inline-block;
    margin-bottom:0;
}

.breadcrumbs__content a {
    color: #76b82a
}

.breadcrumbs__content a:last-child {
    color: #777777;
    text-decoration: none
}


/* ADVANTAGES */
.advantages {
    background: url('../images/advantages-noise-bg.png') 0 0 / 100px 100px repeat #dcc9b0;
    min-height: 350px;
    margin-top: -40px;
    z-index: 1
}

.advantages__content {
    padding-top: 140px;
    padding-bottom: 40px
}

.advantages__item {
    text-align: center;
    display: inline-block;
    vertical-align: top;
    width: calc(25% - 3px);
    padding: 0 10px;
    min-height: 100px
}

.advantages__item img {
    vertical-align: top
}

.advantages__item h4 {
    margin: 4px 0 0 0;
    font-size: 20px
}

.advantages__item p {
    margin: 4px 0 0 0;
    color: #918476
}

@media only screen and (max-width:850px) {
    .advantages__content {
        padding-top: 90px
    }

    .advantages__item {
        width: calc(50% - 3px);
        padding-bottom: 30px
    }
}

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

/* Общий фон для GIFT и GIFT-EXTENDED на главной */
.subsection-background-1 {
    background: url('../images/subsection-background-1.jpg') 50% 0 / cover no-repeat;
    /* padding-bottom: 50px; */
}

/* GIFT */
.gift__content {
    padding-top: 70px;
    padding-bottom: 60px;
}

.gift__heading {
    display: inline-block;
    width: calc(49% - 3px);
    vertical-align: middle
}

.gift__description {
    display: inline-block;
    width: calc(51% - 3px);
    vertical-align: middle;
    color: #777777;
    padding: 4px 0 0 32px;
    background: url('../images/quote.png') 0 0 / 25px 21px no-repeat;
}

.gift__grid {
    margin-top: 70px
}

.gift__item {
    width: calc(33.3333% - 23px);
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
    min-height: 430px;
    background-color: #e7eef3;
    background-position: 50% 0;
    background-size: 360px auto;
    background-repeat: no-repeat
}

.gift__item:last-child {
    margin-right: 0
}

.gift__item--brus100x150 {
    background-image: url('../images/gift-brus100x150.jpg')
}

.gift__item--brus150x150 {
    background-image: url('../images/gift-brus150x150.jpg')
}

.gift__item--brus200x150 {
    background-image: url('../images/gift-brus200x150.jpg')
}

.gift__name {
    display: block;
    width: 140px;
    height: 140px;
    font-size: 26px;
    line-height: 40px;
    border-radius: 50%;
    margin: 100px auto 0 auto;
    padding-top: 30px;
    text-align: center;
    box-shadow: rgba(55, 70, 80, 0.17) 0 6px 6px;
    background: url('../images/gift-name-bg.png') 50% 50% / cover no-repeat #e3ebf0;
}

.gift-option {
    list-style: none;
    padding: 20px 40px;
    margin: 0
}

.gift-option li {
    font-weight: bold;
    min-height: 20px;
    padding-left: 26px;
    background: url('../images/gift-option-true.png') 0 0 / 20px 20px no-repeat;
}

.gift-option li.gift-option__not-included {
    background-image: url('../images/gift-option-false.png');
}

@media only screen and (max-width:850px) {
    .gift__content {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .gift__heading,
    .gift__description {
        width: 100%;
        text-align: center
    }

    .gift__description {
        padding-left: 0;
        background: none
    }

    .gift__grid {
        margin-top: 40px
    }

    .gift__item {
        width: 100%;
        margin-right: 0;
        background-color: transparent;
        margin-bottom: 10px
    }

    .gift-option {
        max-width: 360px;
        margin: 0 auto;
        padding: 10px 0 30px 0;
    }
}

/* GIFT-EXTENDED */
.gift-extended__grid {
    padding: 30px 0 10px 0
}

.gift-extended__item {
    width: calc(50% - 18px);
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 17px 0;
    height: 168px;
    background-color: #d5beaa;
    background-position: 100% 50%;
    background-repeat: repeat-x;
    background-image: url('../images/gift-extended-bg.png');
}


.gift-extended__image,
.gift-extended__text {
    display: inline-block;
    vertical-align: top;
}

.gift-extended__image {
    width: 209px
}

.gift-extended__text {
    padding: 34px 10px 34px 28px;
    width: calc(100% - 215px)
}

.gift-extended__text h4 {
    font-size: 22px
}

.gift-extended__text p {
    margin: 6px 0 0 0;
    line-height: 24px
}

@media only screen and (max-width:850px) {
    .gift-extended__item {
        width: 100%;
        display: block;
        margin: 15px 0;
    }

    .gift-extended__item:nth-of-type(2) {
        margin-left: 0;
    }

    .gift-extended__heading {
        width: 100%;
        text-align: center
    }
}

@media only screen and (max-width:540px) {
    .gift-extended__text {
        padding-top: 10px;
        padding-left: 10px;
        font-size: 80%
    }
}


/* PROJECT-CAROUSEL */
.project-carousel__content {
    overflow: hidden;
    padding-bottom: clamp(2rem,4vw,4rem);
    padding-top: clamp(2rem,4vw,4rem);
}

.project-carousel__heading {
    display: inline-block;
    width: calc(49% - 3px);
    vertical-align: middle
}

.project-carousel__description {
    display: inline-block;
    width: calc(51% - 3px);
    vertical-align: middle;
    color: #777777;
    padding: 4px 0 0 32px;
    background: url('../images/quote.png') 0 0 / 25px 21px no-repeat;
}

.project-carousel__carousel {
    margin-top: 40px
}


.project-preview__thumb {
    display: block;

    a{
        display: block;
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    img {
        display: block;
        width: 100%;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }
}


.project-preview__name {
    padding: .75rem var(--content-paddding) 0;
    margin-bottom: auto;
}

.project-preview__name h2{
    padding:0;
    margin:0;
    font-size: 16px;
    font-weight: normal;
}

.project-preview__name a {
    text-decoration: none;
    border-bottom: #e7eef3 1px solid;
    transition: border-bottom-color .25s ease, color .25s ease
}

.project-preview__name a:hover {
    border-bottom-color: #cdd5db
}

.project-preview__props {
    padding: 2em var(--content-paddding) 1em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}


.property__item {
    position: relative;
    border-radius: .5em;
    border: #e7eef3 1px solid;
    /* box-shadow: rgba(231, 238, 243, 0.75) 0 6px 6px; */
    font-weight: bold;
    padding: .4em .75em .2em;
    color: #404040;
}

.property__price {
    position: relative;
    align-self: flex-end;
    margin-right: auto;
    order: -1;
}
.property__price .price__label {
    font-size: .75em;
    color: #777777;
    position: absolute;
    left: 0;
    bottom: 100%;
}
.property__price .price__value {
    font-weight: 400;
    white-space: nowrap;
    font-size: 1.125em;
}

@media screen and (width <= 1200px) {
    .project-preview__props{
        font-size: 14px;
    }
}
@media screen and (width <= 800px) {
    .project-preview__props{
        flex-wrap: wrap;
        padding-block: 1rem;
    }
    .property__price {
        margin-top: .5em;
        order: 10;
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .price__label{
            font-size: 1em;
            position: relative;
            inset: auto;
        }
    }
}

.property__item sup {
    font-size: 60%;
    transform: translateY(-4px);
    position: absolute
}

.project-preview__link {
    padding: 0 var(--content-paddding) var(--content-paddding);

    p{
        margin: 0;
    }
}

.project-preview__link .btn {
    vertical-align: top;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}

.project-carousel__buttons {
    text-align: center;
    padding: 50px 0 0 0
}

.project-carousel__buttons .btn:first-child {
    margin: 0 9px 0 -3px;
}

.project-carousel__buttons .btn:last-child {
    margin: 0 0 0 9px;
}

@media only screen and (max-width:850px) {

    .project-carousel__heading,
    .project-carousel__description {
        text-align: center;
        width: 100%;
    }

    .project-carousel__description {
        background: none
    }

    .project-carousel__buttons {
        text-align: center;
        padding: 30px 0 0 0
    }

    .project-carousel__buttons .btn:first-child {
        margin: 0 0 10px 0;
    }

    .project-carousel__buttons .btn:last-child {
        margin: 0 0 0 0;
    }
}




/* WORKS */
.works {
    background: url('../images/works-bg.jpg') 50% 0 / contain no-repeat #ddeaf2;
    background-size:cover;
    padding: 90px 0 30px 0;
}

.works__heading {
    display: inline-block;
    width: calc(49% - 3px);
    vertical-align: middle
}

.works__description {
    display: inline-block;
    width: calc(51% - 3px);
    vertical-align: middle;
    color: #777777;
    padding: 4px 0 0 32px;
    background: url('../images/quote.png') 0 0 / 25px 21px no-repeat;
}

.works__grid {
    margin-top: 70px;
}

.work__item {
    display: inline-block;
    width: calc(33.3333% - 23px);
    margin-right: 30px;
    margin-bottom: 30px;
    vertical-align: top;
    position: relative
}

.work__item:before {
    content: '';
    background-color: rgba(108, 172, 52, 0.85);
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .2s ease
}

.work__item:after {
    content: url('../images/zoom.png');
    position: absolute;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    opacity: 0;
    transform: translateY(-20%) rotate(90deg);
    transition: opacity .2s .2s ease, transform .3s .15s ease
}

.work__item:hover:before {
    opacity: 1
}

.work__item:hover:after {
    opacity: 1;
    transform: translateY(0) rotate(0)
}

.work__item:nth-of-type(3n) {
    margin-right: 0;
}

.work__item img {
    width: 100%;
    vertical-align: top
}

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

@media only screen and (max-width:850px) {

    .works__heading,
    .works__description {
        text-align: center;
        width: 100%;
    }

    .works__description {
        background: none
    }
}

/* CONSULTATION */
.consultation {
    background: radial-gradient(400px 400px ellipse at 30% 50%, #90bd1a, #76b82a);
    padding: 80px 0;
    color: #FFF
}

.consultation__description {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 3px);
}

.consultation__description p {
    font-size: 18px;
    margin-top: 28px;
}

.consultation__description p a {
    color: #FFF;
    font-weight: bold;
    text-decoration: none
}

.consultation__description p a:hover {
    color: #e1f0d1
}

.consultation__form {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 3px);
    text-align: center
}

.consultation__form-wrapper {
    display: inline-block;
    width: 61%;
    padding: 0 30px 30px 30px;
    margin-top: 57.5px;
    background-color: #6fab26;
    min-height: 270px
}

.consultation__manager {
    margin-top: -57.5px;
}

.consultant__avatar {
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    width: 115px;
    height: 115px;
    background-color: #6fab26;
    box-shadow: rgba(65, 106, 14, 0.17) 0 6px 6px
}

.consultant__avatar img {
    vertical-align: top;
    width: 100%;
    object-fit: cover
}

.consultant__name {
    margin-top: 18px
}

.consultation__form form {
    margin-top: 20px
}

.consultation__form form input[type=tel] {
    width: 100%;
    display: block;
    background-color: #76b82a;
    color: #dcdedb;
    margin-bottom: 10px
}

.consultation__form form input[type=tel]::placeholder {
    color: #dcdedb
}

.consultation__form form button[type=submit] {
    width: 100%;
    padding-left: 0;
    padding-right: 0
}

.consultation__privacy {
    font-size: 12px;
    margin-top: 10px
}

.consultation__privacy a {
    color: #FFF
}

@media only screen and (max-width:850px) {
    .consultation__description {
        vertical-align: top;
        width: 100%;
        text-align: center
    }

    .consultation__form {
        vertical-align: top;
        margin-top: 20px;
        width: 100%;
    }
}

@media only screen and (max-width:540px) {
    .consultation__description p {
        font-size: 16px;
    }

    .consultation__form-wrapper {
        width: 100%
    }
}

/* Общий фон для ABOUT и REVIEWS на главной */
.subsection-background-2 {
    background: url('../images/subsection-background-2.jpg') 50% 0 / cover no-repeat
}

/* ABOUT */
.about__content {
    padding-top: 90px;
    padding-bottom: 90px
}

.about__text {
    width: calc(40% - 3px);
    display: inline-block;
    vertical-align: top
}

.about__text p {
    color: #777777;
    line-height: 24px;
    margin-top: 30px
}

.about__text a {
    color: #777777
}

.about__images {
    position: relative;
    width: calc(60% - 3px);
    display: inline-block;
    vertical-align: top;
    min-height: 200px;
}

.about__images img {
    position: absolute
}

.about__images img:nth-of-type(1) {
    top: 30%;
    left: 30px
}

.about__images img:nth-of-type(2) {
    top: -10%;
    left: 33%
}

.about__images img:nth-of-type(3) {
    right: 0;
    top: 87%
}

.about__subtitle {
    width: 140px;
    padding-top: 80px;
    position: absolute;
    right: 7%;
    top: 6%;
    background: url('../images/about-icon.png') 50% 0 / auto no-repeat;
    font-size: 20px;
    text-align: center;
}

@media only screen and (max-width:1120px) {
    .about__text {
        width: calc(60% - 3px);
    }

    .about__subtitle {
        right: calc(50% - 70px);
    }

    .about__images {
        width: calc(40% - 3px);
    }

    .about__images img:nth-of-type(1),
    .about__images img:nth-of-type(2) {
        display: none
    }
}

@media only screen and (max-width:850px) {
    .about__text {
        width: 100%;
        text-align: center
    }

    .about__subtitle {
        display: none
    }

    .about__images {
        width: 100%;
        text-align: center;
        overflow: hidden;
    }

    .about__images img {
        position: relative
    }

    .about__content {
        padding-top: 50px;
        padding-bottom: 30px
    }
}


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

.reviews__grid {
    margin: 10px 0
}

.review-short__item {

    padding: 20px 0;
    display: inline-block;
    vertical-align: top;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow-y: hidden;
    transition: box-shadow .35s ease-out
}

.reviews__grid .review-short__item:nth-of-type(1) {
    width: calc(48.75% - 3px);
    margin-right: 1.25%
}

.reviews__grid .review-short__item:nth-of-type(2) {
    width: calc(48.75% - 3px);
    margin-left: 1.25%
}

.review-short__photo {
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    width: 115px;
    height: 115px;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: rgba(28, 60, 83, 0.17) 0 6px 6px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
}


.review-short__photo .review__image img{
    width:auto;
    height:115px;
    margin-left:-25%;
}

.review-short__heading {
    display: inline-block;
    vertical-align: middle;
}

.review-short__heading strong {
    display: block;
    font-weight: normal;
    margin-bottom: 5px
}

.review-short__heading span {
    color: #777777;
}

.review-short__text {
    margin-top: 24px;
    color: #777777;
    font-size: 14px;
    line-height: 26px;
    padding-right: 50px
}

.reviews__button-more {
    text-align: center;
}

@media only screen and (max-width:850px) {
    .reviews__heading {
        text-align: center;
        width: 100%
    }

    .reviews__heading {
        text-align: center;
        width: 100%
    }

    .reviews__grid .review-short__item:nth-of-type(1) {
        width: 100%;
        margin-right: 0;
        text-align: center
    }

    .reviews__grid .review-short__item:nth-of-type(2) {
        display: none
    }

    .review-short__text {
        font-size: 16px;
        padding-right: 0;
    }
}


/* PROJECT */
.project {
    padding: 0 0 0px 0
}

.project__heading {
    font-size: clamp(1.5rem, 3vw, 3rem);
    margin: 0 0 .5em 0;
    line-height: 110%;
}

.project__gallery {
    display: inline-block;
    width: calc(51% - 3px);
    padding-right: 2%;
    vertical-align: top
}

.project-image__item {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    margin: 12px 1.45% 0 0;
    width: calc(24% - 3px);
    box-shadow: #FFF 0 0 0 0;
    transition: box-shadow .3s ease;
    border-radius: .5rem;
}

.project-image__item {
    position: relative;
}

.project-image__item a:before {
    content: '';
    position: absolute;
    background: url('../images/zoom.png') 50% 50% / 30px 30px no-repeat rgba(108, 172, 52, 0.85);
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .2s ease
}

.project-image__item:hover {
    box-shadow: #FFF 0 0 0 2px
}

.project-image__item a:hover:before {
    opacity: 1
}

.project-image__item:nth-of-type(5n) {
    margin-right: 0;
}

.project-image__item:first-child {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
}

.project-image__item img {
    max-width: 100%;
    width: 100%;
    vertical-align: top
}

.project__data {
    display: inline-block;
    vertical-align: top;
    width: calc(49% - 3px);
}

.project-property__item {
    width: calc(33.333% - 3px);
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.project-property {
    padding: 1rem 1rem .5rem;
    background: #fff;
    border-radius: 1rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.project-property__description {
    color: #777777;
}

.project-property__value {
    margin-top: .4rem;
    margin-bottom: 12px;
    padding: .5em .75em;
    border-radius: .5em;
    background-color: #FFF;
    border: #e7eef3 1px solid;
    box-shadow: #d6e2ec 0 6px 6px;
    font-weight: bold;
    font-size: 1.25rem;
}

.project-property__value sup {
    font-size: 60%;
    transform: translateY(-4px);
    position: absolute;
}

.project__pricelist {
    width: calc(50% - 3px);
    display: inline-block;
    vertical-align: bottom;
    background: url('../images/pricelist-bg.png') 50% 50% / cover no-repeat #e3ebf0;
    min-height: 160px;
    padding: 20px 20px;
}

.project-price__name,
.project-price__value {
    display: inline-block;
    vertical-align: baseline;
    margin: 3px 0;
    white-space: nowrap;
}

.project-price__name {
    color: #777777;
    width: calc(45% - 3px);
}

.project-price__value {
    width: calc(55% - 3px);
    font-size: 26px;
    font-weight: bold;
    text-align: right
}

.project__sub {
    width: calc(50% - 3px);
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    padding-left: 24px;
}

.project__sub a {
    font-size: 18px;
}

.project__sub .btn {
    margin-top: 22px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.project__changes {
    width: calc(50% - 3px);
    display: inline-block;
    vertical-align: bottom;
    padding-top: 40px;
    position: relative;
}

.project__changes a {
    text-decoration: none;
    color: #76b82a
}

.project__changes p {
    font-size: 18px;
    padding: 0;
    margin: 0;
}

.project__changes:after {
    content: 'или';
    position: absolute;
    right: 0;
    top: 57%;
    font-size: 18px;
    color: #777;
}

.project__calcbutton {
    width: calc(50% - 3px);
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    padding-left: 24px;
}

.project__calcbutton .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    color: #131313;
    font-weight: normal;
    font-size: 16px;
    border: #f8ac08 1px solid
}

@media only screen and (max-width:1100px) {

    .project__pricelist {
        width: 100%;
        vertical-align: top;
    }

    .project__sub {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
}

@media only screen and (max-width:850px) {

    .project__gallery {
        display: block;
        width: 100%;
        padding-right: 0;
    }

    .project__data {
        width: 100%
    }

    .project-property {
        margin-top: 1rem;
    }
}

@media only screen and (max-width:540px) {

    .project__changes,
    .project__calcbutton {
        width: 100%;
        text-align: center
    }

    .project__changes:after {
        display: none
    }

    .project__changes {
        margin-bottom: 10px
    }
}

/* COMPLECT */
.color-red {
    color: #e4032e;
}

.complect__content {
    padding-top: 45px;
    padding-bottom: 0;
}

ul.tabs {
    list-style: none;
    padding: 0;
    margin: clamp(1rem, 3vw, 4rem) 0 0 0;
    display: grid;
    grid-auto-flow: column;
    gap: 3px;
}

ul.tabs li {
    flex-grow: 1;
    padding: 0;
    margin: 0;
    background-color: #e7eef3;
    font-size: clamp(.875rem, 2vw, 1.25rem);
    font-weight: bold;
    text-align: center;
}

ul.tabs li a {
    color: #777;
    text-decoration: none;
    display: block;
    padding: clamp(.5em, 3vw, 1em) .5em;
}

ul.tabs li a.active {
    background-color: #FFF
}

.table {
    background: #FFF;
    width: calc(100% - 3px);
    padding-block: clamp(1rem, 2vw, 2rem);
    padding-inline: clamp(.25rem, 2vw, 4rem);
    border: 0;
    box-shadow: rgba(214, 226, 236, 0.55) 0 6px 6px;
}

.tabs-content h3 {
    font-size: 28px;
    margin: 45px 0
}

th {
    text-align: left;
    font-size: 20px;
    font-weight: bold
}

td,
th {
    padding: 14px 0;
    margin: 0;
}

tr {
    box-shadow: #e7eef3 0 -1px 0 0 inset
}

tr td:first-child {
    font-weight: bold;
    width: 30%
}

table.option tr td:first-child {
    font-weight: normal;
    width: 90%;
    padding:0 20px 0 0;
}


/* PROJECT-LIST */
.project-list {
    padding-bottom: clamp(1rem, 2vw, 2rem);
}

.blog_project, .blog_reviews{
    display: grid;
    gap: clamp(1px, 2vw, 2rem);
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: dense;
}

.project-preview__item {
    position: relative;
    border-radius: 1rem;
    --content-paddding: 10px;
    background-color: #FFF;
    overflow: hidden;
    transition: box-shadow .3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &:hover {
        box-shadow: rgba(207, 218, 226, 0.75) 0 7px 18px 6px;
    }

    .page-header{
        margin: 0;
        padding: 0;

        h2{
            line-height: 100%;
        }
    }
}

@media screen and (width <= 900px) {
    .blog_project, .blog_reviews{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (width <= 640px) {
    .blog_project, .blog_reviews{
        margin-inline: -15px;
        padding-inline: 1px;
        gap: 1px;
        grid-template-columns: 1fr 1fr;
    }
}

.project-list__heading {
    margin-bottom: 25px
}


/* BOTTOM-NAV */
.bottom-nav {
    min-height: 75px;
    background-color: #e7eef3;
    text-align: center
}

.bottom-nav__nav ul {
    list-style: none;
    padding: 26px 0 0 0;
    margin: 0
}

.bottom-nav__nav li {
    display: inline-block;
    margin: 0 21px
}

.bottom-nav__nav a {
    text-decoration: none;
    font-size: 18px
}

.bottom-nav__nav li.active a {
    text-decoration: underline;
    color: #76b82a
}

@media only screen and (max-width:760px) {
    .bottom-nav__nav li {
        display: block;
        margin: 0 0 10px 0
    }

    .bottom-nav__nav ul {
        padding: 26px 0 26px 0;
    }
}


/* FOOTER */
.footer {
    background-color: #f0f4f7
}

.footer__content {
    padding-top: 30px;
    padding-bottom: 20px;
}

.footer__logo,
.footer__menu,
.footer__contacts {
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

.footer__logo {
    width: calc(23% - 3px);
    min-width: 165px;
    min-height: 101px;
    text-align: left;
}

.footer__logo img {
    vertical-align: top
}

.footer__menu {
    width: calc(55% - 3px)
}

.footer__buttons {
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.footer__contacts {
    padding-top: 8px;
    width: calc(22% - 3px)
}

@media only screen and (max-width: 1000px) {
    .footer__logo {
        width: 100%;
        text-align: center
    }

    .footer__menu {
        width: 100%
    }

    .footer__buttons {
        padding-top: 24px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center
    }

    .footer__buttons .btn {
        width: 60%;
        margin-bottom: 20px
    }

    .footer__contacts {
        width: 100%;
    }

    .footer__contacts ul {
        text-align: center
    }
}


.w50{
    display: inline-block;
    width: calc(50% - 18px);
    vertical-align: top;
    margin-right: 30px;
    margin-bottom:30px;
    position: relative;
}
.w50:nth-of-type(2n+2){
   margin-right:0; 
}
.complect h2.complect__heading{
    margin-top: clamp(2rem,3vw,3rem);
    margin-bottom: clamp(1rem,2vw,2rem);
}

.reviews__grid .review-short__item .project-preview__link{
    padding:0;
}

.page-header{
    margin-top:35px;
    margin-bottom:25px;
}

@media only screen and (max-width:760px) {
    .w50{
        width:100%;
        margin-bottom:20px;
    }
}

.whatsapp{
    width:20px;
    height:auto;
    margin-left:3px;
}

.vk{
  width:26px;
  height:auto;
  margin:10px 0 0 0;
}

.gift-extended{
    margin-top:20px;
}

.blog-reviews__page{
    display: block;
}

.blog-reviews__item{
    display: inline-block;
    width: calc(50% - 12px);
    vertical-align: top;
    margin:0 10px 8px 0;
    position: relative; 
}

.blog-reviews__item iframe{
    width:100%;
}

@media only screen and (max-width:760px) {
    
   .blog-reviews__item{
        width:100%;   
   }
    
}

.cat-children{
    display: flex;
    gap: 1em;
    font-size: clamp(.875rem, 1vw, 1rem);
    margin-bottom: 1em;
    white-space: nowrap;
    overflow: auto;
    scrollbar-width: none;

    h3{
        margin: 0;
    }
}

/* FILTER */
.filter {
    margin:0;
    position:relative;
    z-index:20;
    padding-bottom: clamp(1.5rem, 3vw, 3rem);

    &:has(.filter__wrapper:empty){
        display: none!important;
    }

    details{
        background-color: rgb(255, 255, 255);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.03);
        border: 1px solid #fff;
        
        summary{
            cursor: pointer;
            padding: .5rem 1rem;
        }
        &:open{
            box-shadow: inset 0 .2rem .5rem rgba(0,0,0,.1);
            summary{
                color: #777;
            }
        }

        .jlmf-section{
            margin-top: clamp(1rem, 2vw, 2rem);
            padding-right: 0;
        }
    }
}
.filter__wrapper {
    padding: 0 1rem;
}

.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 33%;
}
.jlcontentfieldsfilter .jlmf-section:nth-of-type(3){
	flex:1 0 33%;
}
.jlcontentfieldsfilter .jlmf-section:nth-of-type(4){
	flex:1 0 33%;
}


.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 8px 4px;
    font-size:16px;
}
[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;
    border-radius:8px;
	padding:0 10px;
    min-width:57px;
    text-align:center;
    white-space:nowrap;
    line-height:31px;
    height:33px;
    font-size:16px;
    font-weight: 300;
	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:rgba(0,0,0,0.2);
}
[class*="jlmf-list"] > div input[type='checkbox']:checked + label{
	background-color:#76b82a;
	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;
}

.blog-reviews__video {
	aspect-ratio:16/9;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    position:relative;
    background-color:rgba(0,0,0,.06);
    background-position:50% 50%;
    background-repeat:no-repeat;
    background-size:cover
}
.blog-reviews__video img{
	position:absolute;
    transition:all .25s ease
  
}
.blog-reviews__video:hover img{
	transform:scale(1.08)
}

/* gift26 */
.gift-extended:has(.gift26__wrap){
    margin-top: clamp(.5rem, 1.5vw, 1.5rem);
}
.gift26__wrap{
    --gap: clamp(1rem, 2vw, 2rem);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    padding: .5em;
    border-radius: 1em;
    background-color: rgba(255,255,255,1);

    .gift26__title{
        font-weight: bold;
        font-size: 1.75em;
        padding-left: .5rem;
    }
    .gift26__desc{
        font-size: .75em;
        font-style: italic;
        padding: .5em;
        border-radius: .5em;
        background-color: #f2faff;
        color: #707070;
    }

    .gift26__flex{
        flex-grow: 1;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: var(--gap);
        
        .gift26__item{
            position: relative;
            flex: 0 1 15rem;
            padding-right: 3rem;

            .gift26__item__title{
                position: absolute;
                font-size: 1.125rem;
                right: 0;
                bottom: .25rem;
                font-weight: bold;
                display: flex;
                gap: .2em;
                flex-direction: column;
                align-items: start;

                span{
                    border: 1px solid rgba(255,255,255,.1);
                    line-height: 1em;
                    padding: .2em .5em;
                    background: rgba(0,0,0,.25);
                    color: #fff;
                    text-shadow: 1px 1px #000;
                    backdrop-filter: blur(10px);
                    border-radius: .5em;
                }
            }
            
            .gift26__item__img{
                height: 100%;
                aspect-ratio: 5 / 4;
                overflow: hidden;
                border-radius: .5rem;
                
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }
        }
    }

    .gift26__btn{
        flex-shrink: 0;
        cursor: pointer;
        text-align: center;
        align-self: stretch;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
        gap: .5rem;
        padding-inline: .5rem;
        border-radius: .5rem;
        background: #f4f4f4;
        color: #181818;

        b{
            display: block;
            font-size: 1.125em;
            text-transform: uppercase;
        }
        span{
            color: #133801;
            font-weight: bold;
            background: radial-gradient(#90bd1a 30%, #76b82a );
            color: #fff;
            padding: .5rem;
            border-radius: .5rem;
            text-shadow: 1px 1px #303030;
        }
    }
    .gift26__mobilebr{
        display: none;
    }
}
.blog_project__gifts{
    grid-column: 1 / -1;
    position: relative;
    z-index: 10;

    .gift26{
        margin-inline: 0!important;
    }
    .gift26__wrap{
        padding-block: 1rem;
        gap: 1rem;
        background: linear-gradient(135deg, #5e99f1, #004c79);
        color: #fff;

        .gift26__title{
            text-shadow: 1px 1px #000;
        }
        .gift26__desc, .gift26__btn{
            background: rgba(255,255,255,.1);
            color: #efefef;
        }
    }
}
@media screen and (width <= 1000px) {
    .gift26{
        margin-inline: -15px;
    }
    .gift26__wrap{
        flex-direction: column;
        gap: .5rem;

        .gift26__titles{
            align-self: stretch;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .gift26__title{
                font-size: 1.25em;
            }
            .gift26__desc{
                text-align: right;
                line-height: 100%;
            }
        }
        
        .gift26__flex{
            overflow: auto;
            min-width: 0;
            align-self: stretch;
            gap: .5rem;
            margin-inline: -.5rem;
            padding: 0 .5rem;
            
            .gift26__item{
                min-width: 0;
                flex-shrink: 0;
                flex-basis: 9rem;
                padding-right: 1.5rem;

                .gift26__item__img{
                    /* width: 100%; */
                    /* height: auto; */
                }

                .gift26__item__title{
                    /* white-space: normal; */
                    font-size: .875rem;
                }
            }
        }

        .gift26__btn{
            font-size: .875rem;
            flex-shrink: 0;
        }

        .gift26__mobilebr{
            display: block;
        }
    }
}
@media (pointer: coarse) {
    .gift26__flex{
        scrollbar-width: none;
    }
}
/* gift26 - END */
