@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@200;300;400;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@100;200;300;400;500;700;800&display=swap');

/* A variation on Eric Meyer's CSS Reset:
   This is disabled because the Blueprint framework already has it.
   You should enable it if you aren't using Blueprint.
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, span, button, text, input, section, footer {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box; 
  box-sizing: border-box;
}


:root {
  --blue: #010156;
  --gray-100: #f9fafb;
  --primary: #010156;
  --secondary: #6d757e;
  --success: #448344;
  --info: #30638d;
  --warning: #ad6200;
  --danger: #a51f18;
  --light: #f9fafb;
  --dark: #353b41;
  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --body-font-family: 'Sofia Sans', sans-serif;
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  
  /*--body-color: #818281;*/
  --body-color: black;
  --body-bg: white;

  --simplehrefcolor:  #0089b8;

  --header-height:  70px;

  --site-max-width:  1440px;

}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

.desktop-only {
  background-color: unset!important;
}

.mobile-only {
  display: none;
}

sup {
  font-size: 70%;
  vertical-align: super;
}  

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  text-align: var(--body-text-align);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding-top: var(--header-height);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;

  /*background-image: url(/images/multiplit-body-gray.svg);*/
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body > * {
  width: 100%;
}

body.mobile-menu-opened {
    overflow-y: hidden;
}

.template-filler {
  height: 1px;
  flex-grow: 1;
}

h1 {
    color: black;
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
    font-family: 'Sofia Sans';
    font-size: 54px;
    margin-top: 36px;
    margin-bottom: 36px;
}

h1:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background-image: linear-gradient(180deg, #d6d6d6, transparent);
    opacity: 74%;
}


header {
    padding: 10px 20px;
    text-transform: uppercase;
    /* margin-bottom: 20px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffffff;
    height: var(--header-height);
    border-bottom: 1px solid;
    z-index: 9999;
}

header .wrapper {
  max-width: var(--site-max-width);
  margin: 0 auto;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

header #logo {
  background-image: url(/images/multiplit.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 105px;
  height: 42px;
  display: block;

}

header .top-center {
    flex-grow: 1;
    border-left: 1px solid;
    padding-left: 30px;
}

header .top-center ul {
  list-style: none;
}

header .top-center a {
  color: #f19225;
  font-weight: bold;
}


header #mainmenu, header #catalog-menu {
  display: flex;
  gap: 0px;
  list-style: none;
  font-weight: 500;
  font-size: 1rem;
  text-transform: lowercase;
}

header #catalog-menu > li > a {
  font-size: 1.3rem;
}


header .mobile-menu-open-trigger {
    background-image: url(../images/icons/menu.svg);
    width: 40px;
    height: 40px;
    align-self: center;
    margin-right: 0px;
    position: relative;
}


body.mobile-menu-opened .mobile-menu-open-trigger  {
    display: none;
}

header .mobile-menu-close-trigger {
    background-image: url(../images/icons/close.svg);
    width: 40px;
    height: 40px;
    align-self: center;
    margin-right: 0px;
    position: relative;
    display: none;
}

body.mobile-menu-opened .mobile-menu-close-trigger  {
    display: block;
}

#dynamic-menu {
    display: none;
    position: fixed;
    z-index: 999999;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    overflow-y: auto;
}

.mobile-menu-opened #dynamic-menu {
    display: block;
}

.mobile-menu-button {
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

main {
  max-width: var(--site-max-width);
  margin: 0 auto; 
}

#mainmenu > li+li:before{
  content: "|";
  margin-left: 1rem;
  margin-right: 1rem;
  display: inline-block;
}

#mainmenu a {
  color: var(--body-color);
  text-decoration: none;
}

#mainmenu a:hover {
  color: #e10c1f;
}

#mainmenu .active > a {
  color: #f19225;
}

.header-menu > li > ul {
  position: absolute;
  background-color: white;
  display: none;
  border: 1px solid #cccccc66;
  border-top: 0;
  padding: 10px;
  font-size: 90%;
  list-style: none;
}

.header-menu > li:hover > ul {
  gap: 10px;
  display: flex;
  flex-direction: column;
}


footer {
  flex-grow: 0;
  width: 100%;
  
  display: flex;
  align-items: stretch;
  overflow: hidden;
  /* margin-top: -170px; */
  z-index: 9;
  margin: 40px auto 0px;
  background-color: #ececec;
}

footer .wrapper {
  width: 100%;
  padding: 10px 0 10px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #cccccc44;
  margin: 0 auto;
  max-width: var(--site-max-width);
}

footer .wrapper > * {
  width: unset;   
  max-width: var(--site-max-width);
  flex-grow: 0;
  flex-shrink: 0;
}


footer h3 {
  font-size: 0px;
  background-image: url(/images/multiplit-short.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

footer .wrapper > div:nth-child(2) {
    width: 200px;
    flex-grow: 1;
    flex-shrink: 1;
}

footer .company {
  display: grid;
  grid-template-areas:
      "logo name"
      "logo descr";
  grid-template-columns: 60px 1fr;   
  grid-column-gap: 10px; 
  font-size: 0.666rem;
  line-height: 110%;
}

footer .company h3 {
    grid-area: logo;
}

footer .company .descr {
    grid-area: descr;
    color: #cccccc;
}

footer .company .name {
    grid-area: name;
}


.developer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #cccccc;
    font-size: 0.666rem;
    line-height: 110%;
    column-gap: 10px;
}

.developer a {
    background-image: url(https://uppersite.ru/logo-min.svg);
    background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    align-self: stretch;
    width: 24px;
}

span.initial-letter {
    display: inline-block;
    font-size: 123px;
    line-height: 120px;
    vertical-align: baseline;
    float: left;
    text-align: left;
    justify-content: left;
    margin-right: 0px;
    position: relative;
    left: -10px;
    top: -8px;
    height: 94px;
}

/*----  contacts  ----*/

.contacts .descr {
    text-align: center;
    font-weight: 700;
    color: #f19225;
    font-size: 36px;
    line-height: 130%;
    margin-top: 36px;
    margin-bottom: 36px;
}


.main-office {
    display: flex;
    justify-content: center;
    margin-top: 36px;
    margin-bottom: 36px;
}

.cities {
    column-count: 3;
    column-gap: 10em;
    margin-top: 36px;
}

.city {
    display: inline-block;
    min-width: 240px;
}


.city a.anchor {
    position: relative;
    top: -100px;
}

.org > * {
  display: block;
}

.map {
    width: 100vw;
    min-height: 650px;
    height: 650px;
}

.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-wrapper .adress {
  text-decoration: none;
  text-decoration-style: dashed;
  cursor: pointer;
  text-decoration-thickness: 1px;
  color: red;
  text-underline-offset: 2px;
  text-decoration-color: #00000088;
  font-weight: 500;
}

.map-wrapper .adress:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url(/images/icons/location.svg);
  background-size: contain;
  background-position: left center;
  margin-right: 5px;
  line-height: 16px;
  vertical-align: middle;
}

.map-wrapper .phone:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url(/images/icons/call.svg);
  background-size: contain;
  background-position: left center;
  margin-right: 5px;
  line-height: 16px;
  vertical-align: middle;
}

.map-wrapper .phones .phone {
  display: inline-block;
  margin-right: 10px;
}


.map-wrapper .adress[data-ll]{
  color: black;
}

.orgs .org {
  cursor: pointer;
  margin-bottom: 20px;
  padding: 5px;
  font-size: 16px;
  line-height: 130%;
  width: 100%;
  display: inline-block;
}

.orgs .org:hover {
  background-color: #cccccc22;;
}

.org h4 {
  font-weight: bold;
  color: black;
}

.org h3, .city h3 {
  margin: 0;
  color: #f19225;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}

.org a {
  color: var(--simplehrefcolor);
  display: inline-block;
}

.city h2 {
    color: #f19225;
    margin: 0 0 10px;
}


.org > a:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url(/images/icons/www.svg);
  background-size: contain;
  background-position: left center;
  margin-right: 5px;
  line-height: 16px;
  vertical-align: middle;
}

.map-wrapper .email:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url(/images/icons/mail.svg);
  background-size: contain;
  background-position: left center;
  margin-right: 5px;
  line-height: 16px;
  vertical-align: middle;
}

.big-phones {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 100px;
  flex-grow: 1;
  position: relative;
  margin-right: 40px;
}


.big-phones .phone:before{
  content: none;
  display: none;
}

.big-phones .phones{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 54px;
  font-weight: 800;
  color: black;
  justify-content: space-between;
  flex-grow: 1;
}

.big-phones .phone {
   line-height: 100%;
   margin-right: 0!important;
}

.contacts.main.org {
    width: 300px;
    flex-grow: 1;
}

.big-phones:before {
  position: absolute;
  content: "";
  top: 8px;
  bottom: 8px;
  width: 1px;
  right: -20px;
  border-left: 1px solid;
}

.contacts h2 {
    margin-top: 46px;
    text-align: center;
    border-bottom: 1px solid black;
    text-transform: uppercase;
    color: black!important;
    font-weight: bold;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts h2:before {
    content: "";
    display: inline-block;
    width: 43px;
    height: 29px;
    background-size: contain;
    border: 1px solid #f0f0f0;
    margin-right: 10px;
    border-radius: 6px;
    position: relative;
    top: -2px;
    background-position: center;
}

h2.rus:before {
    background-image: url(/images/flag_rus.svg);
}

h2.kz:before {
    background-image: url(/images/flag_kz.svg);
}


#dealers span:before, #dealers a:before{
    display: none;
}

#dealers a {
  color: black;
}

/*----------------*/

#org_tree_wrapper {
    max-width: var(--site-max-width);
    margin: 20px auto 0px;
}

/*----------------*/

/*-----  Slider ----*/



.objects {
  overflow: hidden;
  border-radius: 0px;
  margin-bottom: 50px;
}

.objects .imgs img {
  height: 500px;
  margin-right: 1px;
  margin-left: 1px;
} 

.objects .imgs:after {
    display: block;
    content: "";
    height: 140px;
    width: 140px;
    position: absolute;
    background-color: white;
    border-radius: 500px;
    top: -45px;
    box-shadow: 9px 3px 12px -10px black;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: content-box;
    padding: 20px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
}

.objects h2 {
    margin-bottom: 60px!important;
}

.objects.bank .imgs:after {
  background-image: url(/images/org_tree/bank.png);
}

.objects.stadium .imgs:after {
  background-image: url(/images/org_tree/stadium.png);
}

.objects.medical .imgs:after {
  background-image: url(/images/org_tree/v2/health.png);
}

.objects.school .imgs:after {
  background-image: url(/images/org_tree/v2/school.png);
}

.objects.market .imgs:after {
  background-image: url(/images/org_tree/v2/market.png);
}

.objects .slick-list.draggable:before {
    position: absolute;
    left: 0;
    width: 200px;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, white, #ffffff77 50%, transparent);
    display: block;
    content: "";
    z-index: 1;
}

.objects .slick-list.draggable:after {
    position: absolute;
    right: 0;
    width: 200px;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(270deg, white, #ffffff77 50%, transparent);
    display: block;
    content: "";
    z-index: 1;
}

.to-top {
    background-color: white;
    width: 80px;
    height: 80px;
    border-radius: 200px;
    box-shadow: 9px 3px 12px -10px black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin: 0 auto;
    cursor: pointer;
}



label.active{
  color: #f19225;
}

.objects-group .slick-dots {
    background-color: black;
    padding: 0;
    margin: 0;
    height: 0px;
    visibility: hidden;
}

[itemprop="articleBody"] .objects h2, [itemprop="articleBody"] .files h2 {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.objects .slick-prev, .objects .slick-next {
  width: 60px;
  height: 60px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;

  transform: scale(0.5);
}

.objects .slick-prev:before {
  font-weight: bold;
    text-shadow: none;
    content: "<";
    color: #888;
    line-height: 100%;
    transform: scaleY(1.8);
    position: relative;
    top: -6px;
    left: -3px;
}

.objects .slick-next:before {
  font-weight: bold;
    text-shadow: none;
    content: ">";
    color: #888;
    line-height: 100%;
    transform: scaleY(1.8);
    position: relative;
    top: -6px;
    left: 3px;
}


/*------------------*/

/*-----  Продукция ----*/

a[name]{
  position: relative;
  top: -70px;
  width: 1px;
  height: 1px;
  display: block;
  background-color: transparent;
}

#production h2 {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}


.h-about {
    padding: 20px;
    border-bottom: 2px solid black;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    font-size: 120%;
}

.h-about .small{
  font-size: 90%; 
}

.h-about .small .images {
    margin-left: 10px;
}

.h-about .small img {
    max-height: 30px;
}

#production h4 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 130%;
}


.variants {
    display: grid;
    position: relative;
    column-gap: 20px;
    row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "n1 n1 n2 n2"
        "i1 i1 i2 i2"
        "i1 i1 s1 s2";
    margin-bottom: 40px;    
}

.variants.line:before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 60px;
  border-left: 1px solid #ccccccaa;
  left: 50%;
  display: none;
}


.variants .text-img {
    display: flex;
    flex-direction: column;
    display: contents;
}


.variants .mini-slider-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
}

.variants .mini-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}



.mini-slider .slick-dots {
    bottom: -40px;
    visibility: hidden;
}

.mini-slider:hover .slick-dots {
  visibility: visible;
}

.mini-slider button {
  visibility: hidden;
}

.mini-slider:hover button {
  visibility: visible;
}



.micro-slider {
    margin-bottom: 40px;
}

.micro-slider .slick-dots {
    bottom: -30px;
}

.micro-slider  .slick-dots li {
    width: 7px;
    height: 7px;
}

.variants .slick__item{
  max-width: 100%;
}

.variants .img {
    display: flex;
    align-items: stretch;
    padding-top: 20px;
    width: 100%;
    position: relative;
    justify-content: stretch;
    background-color: #f9f9f9;
    box-shadow: inset 20px 20px 30px -36px;
    margin-top: 40px;
}

.variants .img img{
  object-fit: contain;
}

.img.km0-wall, .img.km0-wall-ac, .img.km1-wall  {
    height: 760px;
}

.img.km1-wall  {
    height: 830px;
}

.img.km0-wall:before, .img.km0-wall-ac:before, .img.km1-wall:before {
    content: "";
    width: 240px;
    height: 240px;
    position: absolute;
    background-color: white;
    border-radius: 500px;
    top: -40px;
    left: 20px;
    background-position: center 10px;
    background-image: url(/images/articles/product/room-01.jpg);
    background-size: 420px;
    background-repeat: no-repeat;
    box-shadow: inset 20px 20px 30px -36px;
}

.km0-wall img, .km0-wall-ac img, .km1-wall img {
    object-position: right;
    margin: 50px;
    width: 10px;
    flex-grow: 1;
}

.km0-top img, .km0-top-ac img {
    object-position: right;
    margin: 50px 50px 50px 180px;
    width: 10px;
    flex-grow: 1;
}

.img.km0-top:before, .img.km0-top-ac:before {
    content: "";
    width: 240px;
    height: 240px;
    position: absolute;
    background-color: white;
    border-radius: 500px;
    top: -40px;
    left: 20px;
    background-position: center 10px;
    background-image: url(/images/articles/product/room-02.jpg);
    background-size: 420px;
    background-repeat: no-repeat;
    box-shadow: inset 20px 20px 30px -36px;
}

.img.km1-wall {
  margin-top: 0;
}


.img .perf {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 208px
}

.perf .rect {
    display: block;
    height: 45px;
    width: 45px;
    background-color: white;
    box-shadow: 2px 3px 9px -5px;
    position: relative;
}

.perf > div {
    display: flex;
    gap: 15px;
    align-items: center;
    height: 10px;
    flex-grow: 1;
}

.perf > h6 {
    flex-grow: 0;
}

.perf .rect > span {
  --perfpad: 4px; 
  --perfradius: 10px; 
  position: absolute;
  height: var(--perfradius);
  width: var(--perfradius);
  display: block;
  background-color: #e4e4e2;
  border-radius: 50px;
  box-shadow: inset 3px 3px 3px -4px;
}

.perf .rect span:nth-child(1) {
    left: var(--perfpad);
    top: var(--perfpad);
}

.perf .rect span:nth-child(2) {
    right: var(--perfpad);
    top: var(--perfpad);
}

.perf .rect span:nth-child(3) {
    left: var(--perfpad);
    bottom: var(--perfpad);
}

.perf .rect span:nth-child(4) {
    right: var(--perfpad);
    bottom: var(--perfpad);
}

.perf .rect span:nth-child(5) {
    left: calc(50% - var(--perfradius)/2);
    top: calc(50% - var(--perfradius)/2);
}


.sz {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    row-gap: 2px;
}

#production .sz h6, #production .perf h6 {
    text-align: center;
    background-color: #8a8b8a;
    color: white;
    margin: 0;
    padding: 8px;
}

.sz span, .perf > div {
    text-align: center;
    background-color: #e4e4e2;
    padding: 8px;
}

.sz .custom {
    background-color: unset;
    text-align: left;
    line-height: 130%;
    padding: 40px 0 0 0;
}

.sz i {
  font-style: normal;
  display: inline-block;
  margin: 2px;
  font-size: 12px;
}

.text.nazn .sub > * {
    display: inline;
}

#production h6 {
    margin-bottom: 5px;
    margin-top: 0;
    font-size: 100%;
    font-weight: bold;
}



[itemprop="articleBody"] h2 {
  color: #f19225;
  margin-top: 40px;
  margin-bottom: 10px;
}

ul.oblasti {
    display: block;
    list-style: none;
    columns: auto;
    columns: 2;
    margin-top: 14px;
}

ul.oblasti li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 110%;
}

ul.oblasti li:before {
    content: "";
    display: block;
    border-radius: 100px;
    background-color: #f19225;
    height: 10px;
    width: 10px;
    position: relative;
    top: 0px;
    flex-shrink: 0;
}

.sv-va {
    margin-top: 60px;
    margin-bottom: 40px;
}

.sv-va h4 {
  text-align: center;
  margin-bottom: 40px;
}

ul.svoystva {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat( auto-fit, minmax(150px, 1fr) );
    grid-gap: 20px;
    list-style: none;
    line-height: 100%;
    align-items: baseline;
}

ul.svoystva li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  text-align: center;
  color: #989999;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 80%;
}

ul.svoystva li:before {
  content: "";
  width: 100px;
  max-width: 100px;
  height: 100px;
  /* padding-top: 100%; */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}

ul.svoystva li.noflame:before {
  background-image: url(/images/icons/no-flame.svg);
}

ul.svoystva li.waterproof:before {
  background-image: url(/images/icons/water-proof.svg);
}

ul.svoystva li.shockproof:before {
  background-image: url(/images/icons/shock-proof.svg);
}

ul.svoystva li.sunproof:before {
  background-image: url(/images/icons/sun-proof.svg);
}

ul.svoystva li.cleanproof:before {
  background-image: url(/images/icons/clean-proof.svg);
}

ul.svoystva li.eco:before {
  background-image: url(/images/icons/eco.svg);
}

ul.svoystva li.noecho:before {
  background-image: url(/images/icons/no-echo.svg);
}

ul.svoystva li.isolate:before {
  background-image: url(/images/icons/isolate.svg);
}


.variants.km1 {

    display: grid;
    grid-template-areas:
    "i1 i1 nz sz"
    "i1 i1 op op"
    "i1 i1 sv sv";

    margin-top: 80px;
}

.km1 .nazn {
    grid-area: nz;
}

.km1 .sizes {
    grid-area: sz;
}

.km1 .oblast-prim {
  grid-area: op;
}

.km1 .sv-va {
  grid-area: sv;
  margin-top: 0;
}




.variants.km1 .img{
  grid-area: i1;
}


.panno {
  --baseoffset: 360px;
  --circlesize: 240px;
  margin-bottom: 60px;
}

.panno .content .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  text-align: left;
}

.panno .content .info span{
  display: block;
}

h4 > span {
  display: inline-block!important;
}

.panno img {
    width: 100%;
    max-width: 600px;
}

.panno .sz{
  margin-top: 20px;
}

.panno .img {
    text-align: right;
    position: relative;
}

.panno .circle {
  position: absolute;
  display: block;
  width:  var(--circlesize);
  height: var(--circlesize);
  background-color: #fafafa;
  border-radius: 500px;
  box-shadow: inset 20px 20px 30px -36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
/*
.circle.c1 {
    left: calc(50% - 120px);
    bottom: 10%;
    z-index: 90;
    background-image: url(/images/articles/product/panno/panno_sq_06.jpg);
}

.circle.c2 {
    left: calc(50% - (2.5 * 120px));
    bottom: 10%;
    z-index: 80;
    background-image: url(/images/articles/product/panno/panno_sq_05.jpg);
}

.circle.c3 {
    left: calc(50% - (4 * 120px));
    bottom: 10%;
    z-index: 70;
    background-image: url(/images/articles/product/panno/panno_sq_04.jpg);
}

.circle.c4 {
    left: 0;
    bottom: 10%;
    z-index: 60;
    background-image: url(/images/articles/product/panno/panno_sq_03.jpg);
}

.circle.c5 {
    left: calc(50% - 2 * 120px);
    bottom: calc(10% + 160px);
    z-index: 50;
    background-image: url(/images/articles/product/panno/panno_sq_02.jpg);
}

.circle.c6 {
    left: calc(50% - 3.5 * 120px);
    bottom: calc(10% + 160px);
    z-index: 40;
    background-image: url(/images/articles/product/panno/panno_sq_01.jpg);
}
*/

.circle.c1 {
    right: calc(var(--baseoffset));
    bottom: 10%;
    z-index: 90;
    background-image: url(/images/articles/product/panno/panno_sq_06.jpg);
}

.circle.c2 {
    right: calc(var(--baseoffset) + (1.5 * var(--circlesize) / 2 ));
    bottom: 10%;
    z-index: 80;
    background-image: url(/images/articles/product/panno/panno_sq_05.jpg);
}

.circle.c3 {
    right: calc(var(--baseoffset) + (3 * var(--circlesize) / 2 ));
    bottom: 10%;
    z-index: 70;
    background-image: url(/images/articles/product/panno/panno_sq_04.jpg);
}

.circle.c4 {
    right: calc(var(--baseoffset) + 5 * var(--circlesize) / 2 );
    bottom: 10%;
    z-index: 60;
    background-image: url(/images/articles/product/panno/panno_sq_03.jpg);
}

.circle.c5 {
    right: calc(var(--baseoffset) + var(--circlesize) / 2 );
    bottom: calc(10% + var(--circlesize)*0.66 );
    z-index: 50;
    background-image: url(/images/articles/product/panno/panno_sq_02.jpg);
}

.circle.c6 {
    right: calc(var(--baseoffset) + (2.5 * var(--circlesize) / 2 ));
    bottom: calc(10% + var(--circlesize)*0.66 );
    z-index: 40;
    background-image: url(/images/articles/product/panno/panno_sq_01.jpg);
}

.others {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}

.others.repair {
    grid-template-columns: 1fr 1.7fr;
    margin-top: 100px;
    border-top: 1px solid;
    padding-top: 60px;
}

.others.repair .other:nth-child(2) .img {
    margin-right: 30px;
}

#production .others.repair h2 {
    line-height: 110%;
    text-align: left;
    margin-top: 0;
}

.others.repair .other {
    align-items: flex-start;
}

.others .other {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.others .other > * {
  width: 200px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.others .other .img {
  max-width: 200px;
  align-self: flex-end;
}

.others.repair .other .img {
    align-self: center;
}

.others .other .img img{
  width: 100%;
  object-fit: contain;
  max-height: 200px;
  object-position: bottom;
}

.big-other {
    grid-column: span 2;
}

.other h3 {
    font-weight: bold;
    text-transform: uppercase;
}

.other p.small {
    font-size: 70%;
}

.szs {
    display: flex;
    gap: 2px;
    margin-top: 6px;
}

.szs .sz > * {
  padding-left: 20px;
  padding-right: 20px;
}

/*-----  // Продукция ----*/

.onmain ul.branded {
  margin: 60px 36px 60px 36px;
}


/*
ul.branded {
    margin: 0;
    margin-block-start: 0;
    padding-inline-start: 0;
    list-style-position: inside;
    list-style-type: none;
    font-family: 'Sofia Sans Condensed', sans-serif;
    line-height: 100%;
    font-size: 0.75rem;
}
*/

ul.branded {
    margin: 0;
    margin-block-start: 0;
    padding-inline-start: 0;
    list-style-position: inside;
    list-style-type: none;
    font-family: 'Sofia Sans', sans-serif;
    line-height: 100%;
    font-size: 1rem;
}

ul.branded > li:before {
  content: "";
  display: block;
  width:  .6em;
  height: .6em;
  background-color: black;
  border-radius: 0.1em;
  transform: rotate(45deg);
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  top: .2em;
}

ul.branded > li:nth-child(3n-2):before {
  background-color: #ffcc00;
}

ul.branded > li:nth-child(3n-1):before {
  background-color: #f39300;
}

ul.branded > li:nth-child(3n):before {
  background-color: #e30411;
}


ul.branded > li {
  display: flex;
  column-gap: 1em;
  margin-bottom: 1em;
}

.onmain .nav-images ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.onmain .nav-images ul > li {
  width: auto;
  padding-left: 36px;
  padding-right: 36px;
  margin-bottom: 26px;
}

.onmain .nav-images ul > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.onmain .nav-images ul {
  text-align: center;
  margin: 0;
  padding: 0;
}

.onmain .nav-images ul img{
  display: block;
  /*max-height: 148px;*/
  max-height: 248px;
  margin-bottom: 8px;
  transition: 1s;
}

.onmain .nav-images:hover a img {
    filter: grayscale(1) contrast(0.3) brightness(1.5);
}

.onmain .nav-images a:hover img {
    filter: none;
}

.onmain .nav-images ul a {
  color: inherit;
  text-decoration: none;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
  font-size: 1.2rem;
  display: inline-block;
  color: #989898;
  font-weight: 400;
}

.nav-images span:before {
    content: "";
    /* border-bottom: 1px solid; */
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    height: 12px;
    background-image: linear-gradient(0deg, #00000003, transparent);
    transform: translate(0px, -20px);
}

.onmain .nav-images .center img {
    padding-bottom: 20px;
}


.downloads {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 60px;
}


.downloads a {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  gap: 20px;
  color: black;
  text-align: center;
}  


.downloads a:before {
  content: "";
  height: 160px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-grow: 0;
  flex-shrink: 0;
}

.downloads a[href$=".pdf"]:before {
  background-image: url('/images/icons/pdf-file.svg');
} 
