:root {
    --bg: #141414;
    --bg_inv: #F6F6F6;
    --col: #fff;
    --bor: 1px solid #494949;
    --plc: #656565;
    --act: #1F1F1F;
    --swiper-pagination-bottom:4em;
}
html.light-theme {
    --bg: #F6F6F6;
    --bg_inv: #141414;
    --col: #141414;
    --plc: #9a9a9a
}
html.light-theme .landing {
    --bg: #fff;
}
.light_thm {
    display: none
}
.light-theme .light_thm {
    display: block
}
.light-theme .dark_thm {
    display: none
}
*::-webkit-input-placeholder {
	color: var(--plc);
	opacity: 1;
}
*:-moz-placeholder {
	color: var(--plc);
	opacity: 1;
}
*::-moz-placeholder {
	color: var(--plc);
	opacity: 1;
}
*:-ms-input-placeholder {
	color: var(--plc);
	opacity: 1;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.389vw;
    overflow-x: hidden;
    color: var(--col);
    font-weight: normal;
    background: var(--bg);
}

.visible-xs {
    display: none!important
}
body, html {
    overflow-x: hidden;
}
a {
	color: var(--col);
    outline: none;
    text-decoration: none
}
a:hover {
	text-decoration: none;
    color: var(--col);
}
a:focus {
    text-decoration: none;
    background-size: cover;
    background-position: center;
}
a:active {
	background: transparent;
    background-size: cover;
    background-position: center;
}

a.active {
    background: var(--act);
}
.landing a.active {
    background: none;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
.flex-b {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.flex-s {
    display: flex;
    justify-content: flex-start;
    align-items: center
}
.flex-c {
    display: flex;
    justify-content: center;
    align-items: center
}

.w-100 {
    width: 100%
}
.w-50 {
    width: 49%
}
.w-48 {
    width: 47%
}

.but {
    height: 4em;
    width: 100%;
    background: var(--bg);
    color: var(--col);
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5em;
    border-top: var(--bor)
}
.but.link-but{
	border: var(--bor);
}
.but .link_arr2 {
    background: url(../img/icon/arr2.svg) center/98%;
    margin-left: .5em
}
.light-theme .but .link_arr2 {
    background: url(../img/icon/arr2_light.svg) center/98%;
}

.input {
    height: 4em;
    border-bottom: var(--bor);
    font-size: .8em;
    margin: 0 0 1.5em;
    background: none;
}
textarea.input {
    height: 7em;
}
.headline {
    font-size: 3em;
    margin: .8em 0;
    font-weight: normal;
    line-height: 110%
}
.headline_cont {
    margin: 0 0 3em;
}
.headline_cont .headline {
    margin: 0
}
.subtitle {
    font-size: 2em;
    margin: 0 0 1.2em;
    font-weight: normal
}
.subtitle_cont .subtitle {
    margin: 0
}
.subtitle_cont {
    margin: 0 0 2em;
}

.label-control {
    width: 0;
    height: 0;
    opacity: 0;
}
.label-control+label {
    position: relative;
    font-size: .6em;
    line-height: 140%;
    padding-left: 3.4em;
}
.label-control+label a {
    color: var(--col);
    text-decoration: underline
}
.label-control+label:before {
    position: absolute;
    content: '';
    width: 2em;
    height: 2em;
    background: var(--col);
    left: 0;
    cursor: pointer;
    top: .4em
}
.label-control:checked+label:before {
    background: var(--col) url(../img/icon/check_light.svg) center/60% no-repeat;
}
.light-theme .label-control:checked+label:before {
    background: var(--col) url(../img/icon/check.svg) center/60% no-repeat;
}

    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
        20%, 40%, 60%, 80% { transform: translateX(5px); }
    }
    input[type="checkbox"]:invalid + label {
        color: red;
    }

    .file-field {
        cursor: pointer;
        padding: 10px;
        border: 1px dashed #ccc;
        border-radius: 4px;
        transition: all 0.3s;
    }
    .file-field:hover {
        border-color: #000;
    }
    .file-list {
        margin-top: 5px;
        font-size: 14px;
        color: #555;
    }

.wrapper {
    padding: 4em 0 0 4em;
}
.wrapper .section {
    padding: 3em 
}
.wrapper .section_mod {
    padding: 2em 4em
}

.breadcrumbs-cont {
    padding: 35px 0
}
.breadcrumbs li {
    display: inline-block;
    font-size: .7em;
    color: var(--col)
}
.breadcrumbs a {
    color: var(--plc);
    text-decoration: none;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4em;
    width: 4em;
}
.icon img {
    width: 1.12em;
}

.header {
    max-height: 4em;
    height: 4em;
    align-items: stretch;
    border-bottom: var(--bor);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 5;
    background: var(--bg);
    box-sizing: content-box
}
.logo {
    background: var(--col);
    height: 100%;
    margin-right: 2.5em;
    width: 8em;
    flex-shrink: 0
}
.logo:focus, .logo:active {
    background: var(--col);
}
.logo img {
    width: 54%;
}
.main-title {
    margin: 0;
    font-size: .8em;
    font-weight: normal
}
.search-block form {
    align-items: stretch;
    border-left: var(--bor)
}
.search-block input {
    width: 20em;
    padding: 0 1.2em;
    display: none
}
.search-block.active {
    background: var(--act);
}
.light-theme .search-block.active {
    background: var(--bg)
}
.search-block.active input {
    display: block
}

.call {
    border-left: var(--bor)
}
.menu-btn {
    border-left: var(--bor);
    font-size: .9em;
    width: 7em;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}
.menu-btn:hover {
    background: var(--act);
    color: #fff;
}
.menu-btn img {
    display: none
}
.menu-btn.active span {
    display: none
}
.menu-btn.active img {
    display: block
}
.menu {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    height: calc(100vh - 4em);
    z-index: 3;
    margin: 4em 0 0 4em;
    padding: 3em 3em 1.2em 4em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
}
.light-theme .menu {
    background: rgba(246, 246, 246, 0.9);
}
.menu nav {
    flex-wrap: wrap
}
.menu nav a {
    width: 30%;
    font-size: 1.8em;
    text-transform: uppercase;
    margin-bottom: 1em;
    line-height: 2em;
    background: none;
}
.catalog_link img {
    width: .5em;
}
.catalog_link span {
    margin-left: .3em;
    display: inline-block
}
.catalog_link.active span {
    transform: rotate(180deg);
    
}
.nav-footer a {
    font-size: .8em
}
.nav-footer .dev img {
    width: 8em
}

.bottom-menu {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 1.4em;
    background: var(--bg_inv);
    display: none;
}
.bottom-menu_item {
    width: 30%;
    align-items: stretch;
    margin-right: 1.5em;
    padding-right: 1em
}
.bottom-menu_item a {
    color: var(--bg);
}
.bottom-menu_item-img {
    width: 10em;
    height: 8.75em;
    display: block;
    background-size: cover;
    background-position: center;
    margin-right: 1em;
    flex-shrink: 0;
}
.bottom-menu_item-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bottom-menu_item-title {
    font-size: .85em;
}
.bottom-menu_item-link {
    font-weight: 500;
    font-size: .9em
}
.link_arr2 {
    width: 1.2em;
    height: 1.2em;
    background: url(../img/icon/arr2_light.svg) center/98%;
}
.light-theme .link_arr2 {
    background: url(../img/icon/arr2.svg) center/98%;
}

.aside-panel {
    border-right: var(--bor);
    background: var(--bg);
    width: 4em;
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 4em);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 4em;
    z-index: 4;
    box-sizing: content-box
}
.aside-panel_mod {
    justify-content: space-between;
}
.aside-panel .icon {
    border-top: var(--bor)
}
.show-feedback.active .dark_thm {
    display: block !important
}
.show-feedback.active .light_thm {
    display: none !important
}

.show-filter {
    border-bottom: var(--bor)
}
.show-filter.active .dark_thm {
    display: block !important
}
.show-filter.active .light_thm {
    display: none !important
}

.feedback {
    position: fixed;
    top: 4em;
    left: 4em;
    width: calc(50% - 2em);
    height: calc(100vh - 4em);
    background: rgba(20, 20, 20, 0.99);
    backdrop-filter: blur(20px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
    border-right: var(--bor);
    overflow-y: scroll;
}
.light-theme .feedback {
    background: rgba(246, 246, 246, 0.99);
}

.close-feedback {
    position: absolute;
    right: 1.5em;
    top: 1.5em;
    cursor: pointer
}
.close-feedback img {
    width: 1.1em
}
.feeback-title {
    font-size: 1.5em;
    margin: .7em 2em
}
.feeback-title+.subtitle {
    margin: 0 3.8em 1em;
    font-size: 0.8em;
}
.feilds-container {
    padding: 0em 3em;
    flex-wrap: wrap
}



.head-section {
    height: calc(100vh - 4em);
    overflow: hidden
}
.landing .head-section {
    background: #FDFBFC;
    padding: 0 0 0 3em
}
.head-section_content {
    width: 48%;
    position: relative;
    z-index: 1
}
.head-section_title {
    font-size: 3em;
    margin: 0 0 .5em;
    font-weight: normal;
    line-height: 100%
}
.head-section_desc {
    font-size: 1em
}

.head-section_img {
    /* width: 48%; */
    /* height: 95%; */
    /* background: url(../img/banner-ct400.png) center/100% no-repeat; */
    position: relative;
}
.head-land_img {
    width: 60%;
    height: 100%;
    flex-shrink: 0;
}
.head-section_img img {
    width:100%;
    /* display: none; */
}


.head-land_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}
.head-section_img:after {
    position: absolute;
    content: '';
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.08;
}

.invers_style {
    background: var(--bg_inv);
    color: var(--bg)
}
.invers_style a {
    color: var(--bg)
}

.link_arr1 {
    width: 1.2em;
    height: 1.2em;
    background: url(../img/icon/arr1.svg) center/98%;
    margin-left: .5em
}
.invers_style .link_arr1 {
    background: url(../img/icon/arr1_light.svg) center/98%;
}
.light-theme .link_arr1 {
    background: url(../img/icon/arr1_light.svg) center/98%;
}
.light-theme .invers_style .link_arr1 {
    background: url(../img/icon/arr1.svg) center/98%;
}
.invers_style .link_arr2 {
    background: url(../img/icon/arr2_light.svg) center/98%;
}
.light-theme .invers_style .link_arr2 {
    background: url(../img/icon/arr2.svg) center/98%;
}
.card .link_arr2 {
    background: url(../img/icon/arr2_light.svg) center/98% !important;
}

.catalog {
    flex-wrap: wrap;
    align-items: stretch;
}
.card a {
    color: #141414
}
.card {
    width: 27.5%;
    padding: 1em 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    color: #141414;
    margin-bottom: 2em;
}

.light-theme .category_block .card.card-gray{
    background:#ededed;
}

.category_block .card {
    background: var(--act);
    color: var(--col);
}
.category_block .card:hover {
    background: #fff;
    color: #141414;
}
.light-theme .category_block .card {
    background: #fff
}
.category_block .card .card_img {
    filter: grayscale(100%);
}
.category_block .card:hover .card_img {
    filter: grayscale(0%);
}
.card_big {
    width: 40%;
    height: 22em;
    margin-right: 2em;
    display: flex;
    flex-direction: column;
    background: #fff;
    justify-content: space-between;
    padding: 2em 2em 1em;
    margin-bottom: 2em;
    position: relative;
}
.card_big-cat {
    position: absolute;
    top: 2em;
    left: 2em;
    font-size: .6em;
    background: #141414;
    border-radius: 5px;
    color: #fff;
    padding: .5em .9em;
}
.catalog {
    margin: 0 -2.9%;
}
.catalog .card {
    margin: 0 2.9% 3em;
}

.card_img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
    height: 13em;
    margin-bottom: 1em
}

.card_img:focus, .card_img:active {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
}
.card_title {
    text-align: center;
    font-size: .8em
}
.card_name {
    flex-wrap:wrap;
    gap: 1em 0;
}
.card_name a {
    font-weight: bold;
    font-size: .9em
}
.card_price {
    font-size: 1.1em;
    line-height: 100%
}
.card_big_img {
    height: 80%;
    width: 100%;
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat
}
.card_big_img:focus, .card_big_img:active {
    background-size: 90%;
    background-repeat: no-repeat
}
.card_big-name {
    font-weight: bold;
}
.row-catalog .flickity-page-dots {
    bottom: -.5em;
    display: flex;
}
.row-catalog .flickity-page-dots .dot {
    height: .1em;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: var(--bg_inv)
}
.invers_style .row-catalog .flickity-page-dots .dot {
    background: var(--bg)
}
.row-catalog .flickity-page-dots .dot.is-selected {
    height: .2em;
}
.row-catalog .flickity-viewport {
    /* overflow: visible */
}


.filter {
    border: var(--bor);
    background: #fff;
    width: 25%;
    position: fixed;
    top: 4em;
    left: 4em;
    height: calc(100% - 4em);
    z-index: 4;
    padding: 1em .4em 1em 0;
    color: #141414;
    display: flex;
    display: none;
}
.filter form {
    width: 100%;
    min-height: 100%;
    overflow-y: scroll;
}
.filter-block {
    padding: 0 1.2em 2em;
    min-height: 100%;
    width: 100%;
}

.filter-title {
    font-weight: bold;
    line-height: 150%;
    border-bottom: 1px solid #CECECE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    cursor: pointer;
}
.filter-title b {
    padding: .7em 0;
    position: relative;
    font-size: .7em;
    line-height: normal;
}
.filter-title b:after {
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
    background: #141414;
    content: '';
}
.filter-title span {
    width: 1.2em;
    height: 1.2em;
    background: url(../img/icon/arr1_light.svg) center/cover;
    transform: rotate(90deg);
    flex-shrink: 0;
}
.filter-it.op .filter-title span {
    transform: rotate(-90deg)
}

.filter-it {
    margin-bottom: 1.5em;
}
.filter-fields {
    padding-left: .5em
}

.filter-fields:not(.range-field) input {
    width: 0;
    height: 0;
    opacity: 0;
    display: none
}
.filter-fields input+label {
    position: relative;
    font-weight: normal;
    padding-left: 2em;
    cursor: pointer;
    display: block;
    font-size: .7em;
    margin-bottom: 1em;
}

.filter-fields input+label:before {
    position: absolute;
    content: '';
    width: 1.3em;
    height: 1.3em;
    background: #fff;
    left: 0px;
    top: -.1em;
    cursor: pointer;
    border: 1px solid #C4C4C4;
}
.filter-fields input:checked+label:before {
    background: #fff url(../img/icon/plus_light.svg) center center/ 70% no-repeat;
}

.for-price input {
    max-width: 100%;
    border: 1px solid #494949;
    font-size: .7em;
    padding: .7em 1em;
}

.for-price {
    width: 47%;
    margin: .5em 0;
}
.reset {
    font-size: .9em;
    width: 100%;
    margin-top: 2em
}
.reset img {
    margin-left: .5em
}

.product {
    align-items: stretch;
    border-bottom: var(--bor)
}
.product>div {
    width: 50%;
    flex-shrink: 0
}
.product_info {
    border-right: var(--bor);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
.product_info-text {
    padding: 2em 4em;
}

.product_info p {
    font-size: .8em;
    line-height: 145%
}
.product_headline {
    margin: .5em 0;
    font-size: 1.8em;
}
.product_desc {
    margin: .8em 0 2em;
}
p.product_price {
    font-size: 2em
}

.product_gallery {
    background: #fff;
    padding: 1em 2em 2em 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product_big-img {
    position: relative;
    margin: 0 auto 1.2em;
    width: 100%;
}
.product_big-img .main-img {
    max-width: 75%;
    display: block;
    margin: 0 auto;
    cursor: zoom-in;
    height: 20em;
    background-size: cover;
    background-position: center
}
.main-img img {
    display: none
}
.product_big-img .control {
    position: absolute;
    top: calc(50% - .6em);
    cursor: pointer;
    width: 1.2em;
    height: 1.2em;
}
.control#right {
    right: 0;
    background: url(../img/icon/arr2_light.svg) center/cover;
}
.control#left {
    left: 0;
    background: url(../img/icon/arr2_light.svg) center/cover;
    transform: rotate(180deg)
}
.product_gallery-control {
    justify-content: flex-start;
    margin: 0 -1%
}
.product_gallery-control li {
    width: 24%;
    cursor: pointer;
    border: 1px solid #CECECE;
    margin: 0 1%;
    height: 7em;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.product_gallery-control li img {
    width: 90%;
}
.product_gallery-control li.active {
    background: #CECECE;
}
.product_gallery-control a {
    display: none
}
.more-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    color: #141414;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: .7em
}
.more-photo span {
    font-size: 2em
}


.product-char {
    border-bottom: var(--bor)
}
.tab-nav {
    border-bottom: 1px solid var(--plc);
    margin-bottom: 1.5em
}
.tab-nav a {
    padding: 1em 0;
    margin-right: 5em;
    font-size: 1.1em;
    line-height: 100%;
    position: relative
}
.tab-nav a.active-tab:after {
    position: absolute;
    content: '';
    width: 100%;
    height: .1em;
    left: 0;
    bottom: -.1em;
    background: var(--col)
}

.tab_container {
    display: none
}
.tab_container table, .chars table {
    width: 100%;
}
.tab_container table td, .chars table td {
    font-size: .9em;
    padding: .7em 1em .7em 0;
    width: 50%;
}
.chars table td {
    padding: 1em;
}
.chars table tr:nth-child(2n+1) {
    background: #F1F1F1;
}
.table-responsive.phone table {
    width: 100% !important;
}

.manual {
    width: 36%;
    height: 30em;
    margin-right: 2em;
    background-position: center;
    background-size: cover;
    margin-bottom: 2em
}

.about .product_info-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}
.pay .product_info {
    border-right: none
}
.about .but {
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2
}
.about .head-section_img {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .head-section_img img {
    display: block;
    width: 77%
}
.pay .head-section_img {
    width: 52%;
    flex-shrink: 0;
    padding-right: 2em
}
.pay .head-section_img img {
    display: block;
    width: 100%
}
.parnters .head-section_img {
    height: 100%
}
.parnters .head-section_img img {
    width: 100%;
    height: 100%
}

.delivery .product_info {
    border-right: none
}
.delivery .head-section_img {
    width: 54%;
    flex-shrink: 0;
    padding-right: 0em
}
.delivery .head-section_img img {
    display: block;
    width: 100%
}

.our_prod {
    align-items: center
}
.our_prod .headline {
    margin-top: 0
}
.our_prod .product_info-text {
    padding-right: 10%
}
.our_prod p {
    line-height: 150%
}
.our_prod img {
    width: 50%;
    flex-shrink: 0
}

.contact {
    margin-bottom: 2.5em
}
.contact .icon {
    width: 1.5em;
    height: 1.5em;
    margin-right: .7em;
}
p.contact_prop {
    margin-top: .4em
}
p.contact_prop {
    font-size: 1.5em;
    line-height: 180%
}
.map {
    filter: grayscale(100%)
}



.question {
    align-items: stretch;
    border-top: var(--bor);
}
.question>div {
    width: 50%;
}
.question-cont {
    border-right: var(--bor);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.question-text {
    padding: 6em 6em 0;
}
.landing .question-text {
    padding-right: 4em;
    padding-left: 4em;
}
.big-text {
    font-size: 4em;
    line-height: 100%;
    margin-bottom: .5em;
}
.subline {
    font-size: 1.2em;
}

.question-form .feilds-container {
    padding-top: 6em;
    padding-bottom: 3em;
}
.whatsapp {
    height: 4em;
    width: 100%;
    background: var(--bg);
    color: var(--col);
    cursor: pointer;
    margin-top: 2.5em;
    border-top: var(--bor)
}
.whatsapp span {
    margin-left: 1em
}
.search_close, .light_thm.search_close {
    display: none
}

.thx {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    z-index: 9;
    padding: 2em;
    color: #fff;
    display: none;
}
.thx>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.thx .headline {
    margin-top: 0;
}
.close-thx {
    position: absolute;
    right: 1.5em;
    top: 1.5em;
    cursor: pointer
}
.close-thx img {
    width: 2em;
    display: block !important
}



.link {
    font-size: .9em
}
.light-theme .link .link_arr2 {
    background: url(../img/icon/arr2_light.svg) center/98%;
    margin-left: .8em;
}

.section.land_content {
    align-items: center;
    padding-top: 5em;
    padding-bottom: 5em
}
.land_content_rev {
    flex-direction: row-reverse;
}
.land_content-text .headline {
    margin: 0 0 .5em;
}
.land_content-text .subline {
    margin-bottom: 1.5em
}
.parag,.p-parag {
    font-size: .8em;
    line-height: 175%;
}
.p-parag p.parag{
	font-size:unset;
	line-height:unset;
}
.land_content_img {
    width: calc(50% + 3em);
    flex-shrink: 0;
    margin-left: 2em;
    margin-right: -3em
}
.land_content_rev .land_content_img {
    margin-right: 3em;
    margin-left: -3em
}
.land_content_img img {
    width: 100%;
}
.center {
    text-align: center
}

.brands_block {
    flex-wrap: wrap;
}
.brands_item {
    width: calc(100%/6);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7em;
    border: var(--bor);
    border-right: none;
    border-top: none
}
.brands_item img {
    min-width: 50%
}
.brands_item:nth-child(n+7) {
    border-bottom: none
}
.preym_land {
    padding: 5em 0 0;
}
.preym_item {
    width: 100%;
    height: 14em;
    background: #141414;
    color: #fff;
    padding: 1.75em 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.preym_item:nth-of-type(1) img {
    width: 3.25em;
}
.preym_item:nth-of-type(2) img {
    width: 2.55em;
}
.preym_item:nth-of-type(3) img {
    width: 3.05em;
}
.preym_item:nth-of-type(4) img {
    width: 3.25em;
}
.preym_item-top {
    align-items: flex-start;
}
.preym_item p {
    font-size: .8em;
    line-height: 150%;
}
.preym_item span {
    opacity: 0.3;
    font-size: .8em;
    font-weight: 600;
}
.list_item {
    position: relative;
    padding-left: 1em;
    margin-bottom: 1.5em
}
.list_item:before {
    content: '';
    position: absolute;
    left: 0;
    width: .2em;
    height: .2em;
    background: #000;
    border-radius: 50%;
    top: .7em;
}

.section.land_info {
    padding-top: 0;
    padding-bottom: 0;
    align-items: stretch;
}
.land_info .land_content-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 10%
}

.land_info_item {
    align-items: flex-start;
}
.land_info_item:first-child {
    margin-bottom: 2.6em;
    padding-bottom: 2.6em;
    border-bottom: var(--bor)
}
.land_info_item span {
    font-weight: 600;
    font-size: 1.2em;
    opacity: .3;
    margin-right: 1.5em;
    width: 1.2em;
    flex-shrink: 0;
}
.land_info_item p {
    font-size: 1.2em;
}

#file {
    display: none;
}
.file-field {
    height: 4rem;
    border-bottom: var(--bor);
    cursor: pointer;
}
.file-field span {
    color: var(--plc);
    font-size: .8em
}
.file-field img {
    width: 1.2em;
}
.file-list {
   margin: 1em 0;
    flex-wrap: wrap;
}
.file-list span {
    font-weight: 500;
    font-size: .7rem;
    margin: 0 .6rem .5rem 0;
    padding: .2rem .5rem;
    background: #f7f7f7;
    border-radius: .2rem
}

.section.section_brnds {
    padding-top: 6em;
}
.brands_block2 {
    flex-wrap: wrap;
    margin-top: 1.5em
}
.brands_block2 img {
    width: 11em;
    margin-bottom: 1.2em
}

.land_prod_block {
    margin-top: 3em;
    flex-wrap: wrap;
    gap: 3.5%;
}
.land_product {
    width: 31%;
    padding-bottom: 1.5em;
    border-bottom: var(--bor);
    margin-bottom: 3em
}
.land_product_img {
    width: 100%;
    height: 14em;
    margin-bottom: 1.6em;
}
.land_product_img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}
.land_product_info {
    margin-bottom: 1.2em
}
.land_product_info .name {
    font-size: .9em;
    font-weight: 700;
}
.land_product_info .price {
    font-size: .9em;
    white-space: nowrap;
    margin-left: 1rem;
}

.but-more {
    width: 30%;
    margin: 0 auto;
    border: var(--bor);
    height: 3.2em;
    font-size: .9em
}
.but-more .link_arr2 {
    transform: rotate(90deg);
}
.footer.section {
    padding-top: 0;
    padding-bottom: 0;
    height: 5em;
    font-size: .8em;
    border-top: var(--bor)
}
.footer a {
    text-decoration: underline;
}

.land_products {
    align-items: stretch;
}

.product-gallery {
    width: 42%;
    margin-right: 4em;
    flex-shrink: 0;
}
.product_slider {
    margin-bottom: 1em
}
.product_slider .swiper-slide {
    background: #fff;
    height: 21em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_slider img {
    object-fit: contain;
    width:100%;
    height:100%;
}
.product_slider_thumb .swiper-slide {
    height: 5em;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}
.product_slider_thumb img {
    object-fit: cover;
    width:100%;
    height:100%;
}
.product-gallery .swiper-button-next, 
.product-gallery .swiper-button-prev {
    color: #141414;
}
.product-gallery .swiper-button-next:after, 
.product-gallery .swiper-button-prev:after {
    font-size: 1.2em
}
.product-gallery .swiper-button-next {
    right: 1em
}
.product-gallery .swiper-button-prev {
    left: 1em
}

.land_products_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
.land_products_info .headline {
    font-size: 3em;
    margin: 0 0 .7em
}
.land_products_info .subline {
    margin: 0;
    font-weight: normal;
}
.land_products_info .price {
    font-size: 1.5em;
}
.send_feed {
    width: 16em;
    height: 3.2em;
    font-size: .9em;
    border: var(--bor)
}