@font-face {
  font-family: "Times NR MT Pro";
  src: url('../fonts/Monotype-TimesNRMTPro-ExtraBold.woff2') format('woff2'),
    url('../fonts/Monotype-TimesNRMTPro-ExtraBold.ttf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
    url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
    url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 10px;
}
/*
@media (max-width: 340px) {
  html {
    font-size: 9px;
  }
}
*/
:root {
  --vh: 100vh;
  --color-primary-rgb: 242, 195, 47; /* #F2C32F */
  --color-text-rgb: 37, 40, 42; /* #25282A */
  --color-white-rgb: 255, 255, 255;
  --color-black-rgb: 0, 0, 0;
  --color-grey-bg-rgb: 242, 242, 242;
  --border-radius: 16px;

  --bs-gutter-x: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  position: relative;
  color: rgb(var(--color-text-rgb));
  overscroll-behavior: none;
}

html.no-scroll, body.no-scroll {
  overflow: hidden;
}

h1 {
  font-family: "Times NR MT Pro";
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

h2 {
  font-family: "Times New Roman";
  font-weight: 700;
  font-size: 3.0rem;
  line-height: 1.1;
  margin-bottom: 2.4rem;
}

h3 {
  font-family: "Times New Roman";
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

h2 strong, h3 strong {
  font-family: "Times NR MT Pro";
  font-weight: 800;
  line-height: 0.8;
}

.page-wrapper {
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-placeholder {
  flex: 1;
}

@media (max-width: 991px) {
  h1 {
    font-size: 3.9rem;
  }
}


/* BUTTONS */
a {
  text-decoration: none;
}
#ok-element button, .button {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  line-height: 1;
  background-color: rgb(var(--color-primary-rgb));
  margin: 0;
  min-height: 4.8rem;
  width: auto;
  max-width: 100%;
  color: rgb(var(--color-text-rgb)) !important;
  text-decoration: none !important;
  border-radius: 0;
  padding: .5rem 2.4rem .5rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: color 100ms ease-in-out, box-shadow 100ms ease-in-out;
  outline: none;
  box-shadow: inset 0px 0px 30px 200px rgba(var(--color-text-rgb), 0);
  background-position: center center;
  background-size: 22px;
  background-repeat: no-repeat;
  text-decoration: none !important;
  border: none;
  /* white-space: nowrap; */
}
.button.black {
  background-color: rgb(var(--color-text-rgb));
  border: 1px solid rgb(var(--color-text-rgb)) !important;
  color: rgb(var(--color-white-rgb)) !important;
  box-shadow: inset 0px 0px 30px 200px rgba(var(--color-white-rgb), 0);
}
.button:hover, #ok-element button:hover, .button:active {
  box-shadow: inset 0px 0px 30px 200px rgba(var(--color-text-rgb), 0.12);
}
.button.black:hover {
  box-shadow: inset 0px 0px 30px 200px rgba(var(--color-white-rgb), 0.12);
}
.confirm-btn {
  padding-right: 0 !important;
}
.confirm-btn::after {
  display: block;
  content: '';
  width: 4.8rem;
  height: 4.8rem;
  background-position: center center;
  background-size: 22px;
  background-repeat: no-repeat;
  padding: 0 !important;
  margin: -0.5rem 0 -0.5rem 2.4rem;
  background-image:  url('../images/arrow-right.svg');
  background-color: rgb(var(--color-text-rgb));
  color: rgb(var(--color-white-rgb)) !important;
}
.arrow-right-btn {
  width: 4.8rem;
  padding: 0 !important;
  background-image:  url('../images/arrow-right.svg');
}
.arrow-bottom-btn {
  width: 4.8rem !important;
  padding: 0 !important;
  background-image:  url('../images/arrow-black-bottom.svg') !important;
  transform: rotate(180deg);
}

/* BORDER BLOCK */

.border-block {
  background-color: rgb(var(--color-grey-bg-rgb));
  border: 1px solid rgb(var(--color-text-rgb));
  border-radius: var(--border-radius);
  padding: 3.2rem 2.4rem;
  font-size: 14px;
  line-height: 16px;
  color: rgb(var(--color-text-rgb));
}
.border-block .button {
  margin: 4.8rem auto 0 auto;
}
.border-block h2 {
  font-family: "Times NR MT Pro";
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

/* NAV */

.navbar {
  height: 88px;
  border-bottom: 1px solid #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 1.6rem 0;
  background-color: transparent;
}
.navbar::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-grey-bg-rgb), 0.2);
  -webkit-backdrop-filter: blur(1.3rem);
  backdrop-filter: blur(1.3rem);
  z-index: -1;
}
.navbar img.logo {
  height: 58px;
  width: auto;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}
.navbar img.logo-icon {
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: auto;
  opacity: 0;
  transition: opacity 450ms ease-in-out;
}
.navbar-brand {
  padding: 0 !important;
  position: relative;
}
.navbar.main-navbar.scrolled img.logo {
  opacity: 0;
}
.navbar.main-navbar.scrolled img.logo-icon {
  opacity: 1;
}

.navbar-toggler {
  outline: none !important;
  border: none;
  box-shadow: none !important;
  padding: 10px;
  height: 28px;
  width: 40px;
  margin: 3px 0;
  position: relative;
}
.navbar-toggler-line {
  display: block;
  width: 20px;
  height: 1px;
  background-color: rgb(var(--color-text-rgb));
  position: absolute;
  transition: transform 150ms ease-in-out, top 150ms ease-in-out;
}
.navbar-toggler.collapsed .navbar-toggler-line {
  top: 10px;
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .navbar-toggler-line + .navbar-toggler-line {
  top: 17px;
  transform: rotate(0deg);
}
.navbar-toggler .navbar-toggler-line {
  top: 13.5px;
  transform: rotate(45deg);
}
.navbar-toggler .navbar-toggler-line + .navbar-toggler-line {
  top: 13.5px;
  transform: rotate(-45deg);
}
.nav-link {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  color: rgb(var(--color-text-rgb)) !important;
  padding: 8px 16px !important;
}
.dropdown-menu .nav-link {
  line-height: 1.5;
  padding: 1rem 1.7rem !important;
}
.navbar-nav {
  padding: 0 8px;
}
.navbar-nav .dropdown-menu {
  min-width: 210px;
  position: fixed !important;
  top: 87px;
  left: auto !important;
  margin: 0;
  padding: 0;
  background-color: transparent !important;
  border: 1px solid #282828;
  border-radius: 0;
}
.navbar-nav .dropdown-menu::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(var(--color-grey-bg-rgb), 0.2);
  -webkit-backdrop-filter: blur(1.3rem);
  backdrop-filter: blur(1.3rem);
}
.nav-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .nav-item[class^='icon-'], .navbar .nav-item[class*=' icon-'] {
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  border-radius: 26px;
  display: block;
  margin: 5px 8px;
}
.icon-phone {
  background-image: url('../images/icon-phone.svg?3');
}
.icon-instagram {
  background-image: url('../images/icon-instagram.svg?3');
}
.icon-facebook {
  background-image: url('../images/icon-facebook.svg?3');
}
.icon-youtube {
  background-image: url('../images/icon-youtube.svg?3');
}
.menu-button {
  height: 4rem;
  min-height: 4rem;
  padding: .2rem 2rem .2rem 2rem;
  font-size: 1.6rem;
  margin: 0 2.4rem 0 0.9rem;
}

@media (max-width: 991px) {
  .navbar {
    height: 6.7rem;
    padding: 0.6rem 0;
    transition: height 200ms ease-in-out;
  }
  .navbar.main-navbar.scrolled {
    height: 5.2rem;
  }
  .navbar-brand {
    position: inherit;
  }
  .navbar img {
    position: absolute;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .navbar img.logo {
    height: 47px;
  }
  .navbar img.logo-icon {
    height: 32px;
  }
  .navbar .nav-item[class^='icon-'], .navbar .nav-item[class*=' icon-'] {
    background-color: rgb(var(--color-primary-rgb));
    border: 1px solid rgb(var(--color-text-rgb));
    width: 32px;
    height: 32px;
    background-size: 32px;
    border-radius: 36px;
  }
  .navbar-collapse {
    margin: 0 -1.6rem;
    position: absolute;
    top: 6.7rem;
    width: 100%;
    padding-top: 0rem;
    transition: all 200ms ease-in-out;
  }
  .navbar.main-navbar.scrolled .navbar-collapse {
    padding-top: 1.5rem;
    top: 5.2rem;
  }
  .navbar.main-navbar.scrolled .navbar-collapse::before {
    display: block;
    content: '';
    position: absolute;
    background-color: #FFF;
    width: 100%;
    top: 0;
    bottom: 8rem;
    z-index: -1;
  }
  .navbar-nav {
    height: calc(100dvh - 6.7rem - 8rem);
    padding: 2.1rem 1.6rem;
    background-color: #FFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: all 200ms ease;
  }
  .nav-link {
    font-family: 'Times New Roman', 'Times NR MT Pro';
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.3;
  }
  .nav-icons-wrapper {
    border-top: 1px solid rgb(var(--color-text-rgb));
    background: transparent url('/images/footer-mobile-bg.svg') no-repeat center top;
    background-size: cover;
    height: calc(100lvh - 100svh + 8rem);
    position: relative;
  }
  .nav-icons-wrapper::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(64, 64, 64, 0.2);
    mix-blend-mode: normal;
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    z-index: 0;
  }
  .nav-icons {
    height: 8rem;
    padding: 1rem;
    position: relative;
    z-index: 1;
  }
}

.button-more-small {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: underline;
  color: rgb(var(--color-text-rgb)) !important;
  display: flex;
  align-items: center;
}
.button-more-small .icon {
  width: 2.6rem;
  height: 2.4rem;
  margin-left: 1.6rem;
  background: rgb(var(--color-primary-rgb)) url('/images/chevron-right.svg') no-repeat center center;
}
.button-more-small:hover {
  text-decoration: none;
}

/* HOME */

.home-page .main-block {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: transparent;
  background-image: url('../images/home-bg.webp'), linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(236,236,236,1) 50%);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% auto;
  min-height: auto;
  height: calc(100svh - 13rem);
  min-height: calc(38vw + 13rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.home-page .main-block .container {
  padding: 0 2.4rem;
}
.home-page .main-block h1 {
  font-size: 6.4rem;
  line-height: 1.3;
  margin-bottom: 6.4rem;
  max-width: 54rem;
}
.home-page .main-block h1 span {
  border-bottom: 2px solid rgb(var(--color-text-rgb));
}
.home-page .main-block .button-more {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgb(var(--color-text-rgb)) !important;
  background-color: transparent;
}

@keyframes iconmove {
  0% {
    top: 0%;
    opacity: 1;
  }
  49.8% {
    top: 100%;
    opacity: 1;
  }
  49.9% {
    top: 100%;
    opacity: 0;
  }
  50.1% {
    top: -100%;
    opacity: 0;
  }
  50.2% {
    top: -100%;
    opacity: 1;
  }
  0% {
    top: 0%;
    opacity: 1;
  }
}

.home-page .main-block .button-more .icon {
  width: 5.2rem;
  height: 5.2rem;
  margin-right: 2.2rem;
  position: relative;
  background-color: rgb(var(--color-primary-rgb));
  overflow: hidden;
}
.home-page .main-block .button-more .icon::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  background: transparent url('/images/arrow-black-bottom.svg') no-repeat center center;
  background-size: 2.4rem auto;
  /* opacity: 1;
  transition: all 300ms ease-in-out; */
}
.home-page .main-block .button-more:hover {
  text-decoration: underline;
}
.home-page .main-block .button-more.animate .icon::before {
  animation-name: iconmove;
  animation-duration: 0.6s;
}




.subsidy-block {
  margin-top: -74px;
  position: relative;
  border-radius: 1.6rem;
  background-color: rgba(230,230,230,1);
  -webkit-box-shadow: 0px 99px 134px 8px rgba(0,0,0,0.17);
  -moz-box-shadow: 0px 99px 134px 8px rgba(0,0,0,0.17);
  box-shadow: 0px 99px 134px 8px rgba(0,0,0,0.17);
}
.subsidy-block .row {
  position: relative;
}
/* .subsidy-block .row::before {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 0px;
  width: 2px;
  background: transparent url('/images/subsidy-border.svg') no-repeat center center;
  background-size: 2px 100%;
  transform: translate(-50%, 0);
  z-index: 1l
} */
.subsidy-block .col-12 {
  display: flex;
  align-items: stretch;
}
.subsidy-block .col-12:first-child {
  border-radius: 1.6rem 0 0 1.6rem;
  background: #F2C32F url('/images/subsidy-border.svg') repeat-y right -1px top 13px;
  background-size: 2px auto;
  clip-path: polygon(0% 0%, calc(100% - 6px) 0%, 100% calc(0% + 6px), 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%);
}
.subsidy-block .col-12:last-child {
  border-radius: 0 1.6rem 1.6rem 0;
  background: #F2C32F url('/images/subsidy-border.svg') repeat-y left -1px top 13px;
  background-size: 2px auto;
  clip-path: polygon(calc(0% + 6px) 0%, 100% 0%, 100% 100%, calc(0% + 6px) 100%, 0% calc(100% - 6px), 0% calc(0% + 6px));
}
.subsidy-block h2 {
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.subsidy-block .text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 3rem 4.8rem 3.6rem 4.8rem;
  width: 100%;
}
.subsidy-block p {
  margin: 0;
}
.subsidy-block .logos {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 1.6rem;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: #FFF;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  min-height: 7.8rem;
}
.subsidy-block .logos img {
  width: auto !important;
  display: block;
  height: auto;
  max-height: 35px;
  max-width: 100%;
}
.subsidy-block a {
  color: #000 !important;
  font-weight: 700;
  text-decoration: underline;
}

.home-page .products-block {
  padding: 12rem 0 10rem 0;
}
.home-page .products-block h1 {
  margin-bottom: 2.6rem;
  font-size: 6rem;
}
.home-products {

}
.home-products .item {
  margin-top: 8.2rem;
}
.home-products .item-content {
  border-radius: 1.6rem;
  background-color: #EBE8E5;
  border: 2px solid #EBE8E5;
  padding: 3.8rem 4.3rem 3.5rem 4.6rem;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.home-products .item-content.empty {
  background-color: transparent;
}
.home-products .item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-products .item-link {
  width: 100%;
}
.home-products .item-text p {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8rem;
  min-height: 3.6rem;
  width: 100%;
  margin-bottom: 2.2rem;
}
.home-products .item h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  margin-bottom: 1.6rem;
}
.home-products .img-wrapper {
  margin-top: -8rem;
  margin-bottom: -3rem;
  position: relative;
}
.home-products .img-wrapper img {
  max-width: 20rem;
  position: relative;
  z-index: 1;
}
.home-products .img-wrapper:after {
  display: block;
  content: '';
  position: absolute;
  left: 10%;
  top: 70%;
  width: 85%;
  padding-top: 18%;
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.4);
  filter: blur(2.3rem);
  transform: rotate(4.98deg);
  z-index: 0;
}

.home-page .partners-block {
  /* margin-bottom: 18rem; */
}
.home-page .partners-block h1 {
  margin: 4rem 0;
}

@media (max-width: 991px) {
  .home-page .main-block {
    padding-top: 75px;
    padding-bottom: 14vh;
    background-image: url('../images/home-bg.webp'), linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(236,236,236,1) 50%);
    background-repeat: no-repeat;
    background-position: right 10% center;
    background-size: 160% auto;
    justify-content: flex-start;
  }
  .home-page .main-block .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-page .main-block .button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .home-page .main-block h1 {
    font-size: 3.7rem;
    font-weight: 800;
    line-height: 125%;
    max-width: 32rem;
    margin: 2.4rem 0 3.2rem 0;
  }
  .home-page .main-block .button-more {
    margin: 0 auto 4rem auto;
  }
  .home-page .main-block .button-more .icon {
    width: 4.8rem;
    height: 4.8rem;
  }

  .home-page .products-block {
    padding: 6.3rem 0;
  }
  .home-page .products-block h1 {
    font-size: 4rem;
    margin-bottom: 1.6rem;
  }
  .home-products .item {
    margin-top: 1.6rem;
  }
  .home-products .item-content {
    align-items: center;
    flex-direction: column;
    padding: 3.2rem 2.4rem;
  }
  .home-products .item-text {
    width: 100%;
  }
  .home-products .item-text p {
    margin-bottom: 3.6rem;
    min-height: auto;
  }
  .home-products .item-link {
    width: auto;
  }
  .home-products .img-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    height: 23.6rem;
  }
}

@media (max-width: 767px) {
  .home-page .main-block {
    height: calc(100svh - 5.4rem);
    min-height: 150vw;
  }
  .subsidy-block {
    display: block;
    margin-top: -105px;
    background-color: #f0f0f0;
  }
  .subsidy-block h2 {
    font-size: 2.2rem;
  }
  .subsidy-block .text {
    margin: 2.4rem;
    font-size: 1.4rem;
  }
  .subsidy-block {

  }
  .subsidy-block .col-12:first-child {
    border-radius: 1.6rem 1.6rem 0 0;
    background: #F2C32F url('/images/subsidy-border-mobile.svg') repeat-x left bottom -1px;
    background-size: auto 2px;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, calc(0% + 6px) 100%, 0% calc(100% - 6px), 0% 0%);
  }
  .subsidy-block .col-12:last-child {
    border-radius: 0 0 1.6rem 1.6rem;
    background: #F2C32F url('/images/subsidy-border-mobile.svg') repeat-x left top -1px;
    background-size: auto 2px;
    clip-path: polygon(calc(0% + 6px) 0%, calc(100% - 6px) 0%, 100% calc(0% + 6px), 100% 100%, 0% 100%, 0% calc(0% + 6px));
  }
  .subsidy-block .logos img {
    max-height: 26px;
    max-width: 100%;
  }
}


/* PAGE CONTENT */
.content-container-wrapper {
  margin: 16.8rem 0 7.5rem 0;
  position: relative;
}
.container {
  max-width: 1190px;
  /* max-width: 1280px; */
}
.content-container {
  position: relative;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.content-container + .content-container {
  margin-top: 0;
}
.content-container.content-col {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.content-text-block {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  min-height: 20rem;
}
@media (max-width: 991px) {
  .content-container-wrapper {
    margin: 10.8rem 0 6.4rem 0;
    position: relative;
  }
  .content-text-block {
    padding-top: 2.4rem;
  }
}


.content-container p a {
  font-weight: 700;
  text-decoration: underline;
  color: #282828 !important;
}
.content-container img, .content-container iframe {
  max-width: 100%;
  height: auto;
}
.content-text-block img {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.content-container ul:not(.errors) {
  list-style: none !important;
  padding-left: 4.2rem;
}
.content-container ul:not(.errors) li {
  padding: 1.5rem 0;
}
.content-container ul:not(.errors) li:before {
  display: inline-block;
  content: '';
  border: 1px solid #282828;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  margin: -0.4rem 1.6rem -0.6rem -4.2rem;
  background-color: #FFF;
}
.content-container > table, .content-text-block > table {
  font-size: 1.2rem;
  max-width: 100% !important;
  border: 1px solid #000000;
  border-radius: 2.4rem;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  background-color: #FFF;
  color: rgb(var(--color-text-rgb));
}
.content-container > table tr td, .content-text-block > table tr td {
  padding: 1rem 1.4rem;
}
.content-container > table tr + tr td, .content-text-block > table tr + tr td {
  border-top: 1px solid rgba(40, 40, 40, 0.1);
}
.content-text-block > table tr:first-child td, .content-text-blockr > table tr:last-child td {
  padding: 2rem 1.4rem;
}
.content-container > table tr:first-child td, .content-container > table tr:last-child td {
  padding: 2rem 1.4rem;
  background-color: rgba(40, 40, 40, 0.1);
}

/* CONTACT */

.decorator-contact {
  background: transparent url('../images/map-sk.svg?1') center right no-repeat;
  position: absolute;
  background-size: auto 156px;
  width: 100%;
  height: 156px;
  right: 1.6rem;
  top: -1.6rem;
}
@media (max-width: 991px) {
  .decorator-contact {
    position: relative;
    background-size: auto 115px;
    width: auto;
    height: 115px;
    right: 0;
    top: 0;
    margin-left: -1.6rem;
  }
}

/* GDPR */
.gdpr-container {
  max-width: 76.8rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
.gdpr-container h1 {
  max-width: 50rem;
  text-align: center;
  margin: 0 auto 0 auto;
  padding-bottom: 4.6rem;
}
.decorator-gdpr {
  height: 12.2rem;
  width: 44rem;
  position: absolute;
  bottom: 3rem;
  right: -36rem;
  background: url('../images/gdpr-decorator.svg') center left no-repeat;

}
@media (max-width: 991px) {
  .gdpr-container h1 {
    text-align: left;
  }
  .decorator-gdpr {
    bottom: 1.8rem;
  }
}


/* BLOG */
.blog-items {
  margin-top: 4.8rem;
}
.blog-items .col-lg-3 {
  margin-bottom: 1.6rem;
}
.blog-item {
  background-color: #F1F1F1;
  border-radius: var(--border-radius);
  padding: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: rgb(var(--color-text-rgb));
  width: auto;
  height: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 200ms;
}
.blog-item:hover, .blog-item:active {
  transform: scale(1.055);
  color: rgb(var(--color-text-rgb));
}
.blog-item .text {
  padding: 2.4rem 1.2rem 1.2rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.66;
  display: flex;
  flex-direction: column;
}
.blog-item .date-reading-time {
  font-size: 1rem;
  line-height: 1.4rem;
  color: #828382;
}
.blog-item .title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 900;
  margin: 0.8rem 0;

  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-item img {
  border-radius: 1.2rem;
  object-fit: cover;
}
.blog-item .short-text {
  margin: 0;
  font-size: 10px;
  font-weight: 600;

  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.decorator-blog-1 {
  background: transparent url('../images/decorator-curve.svg?1') center right no-repeat;
  position: absolute;
  background-size: contain;
  width: 420px;
  height: 59px;
  right: -2px;
  top: 10px;
}
.decorator-blog-2 {
  background: transparent url('../images/decorator-curve.svg?1') center right no-repeat;
  position: absolute;
  background-size: contain;
  width: 420px;
  height: 59px;
  left: -194px;
  bottom: 45%;
}
.blog-title-block {
  background-color: #F1F1F1;
  border-radius: var(--border-radius);
  padding: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4;
  color: rgb(var(--color-text-rgb));
  width: 100%;
  display: flex;
  align-items: center;
  margin: -2.8rem 0 6.4rem 0;
}
.blog-title-block img {
  border-radius: 1.2rem;
  order: 2;
}
.blog-title-block .text {
  padding: 4rem;
}
.blog-title-block h1 {
  font-size: 4rem;
  line-height: 1.1;
}
.blog-title-block .date-reading-time {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #828382;
}
.social-icons.blog-icons {
  flex-direction: column;
  position: absolute;
  left: 3.6rem;
  top: -0.8rem;
}
.social-icons.blog-icons a {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.8rem;
  background-color: rgb(var(--color-primary-rgb));
  margin: 0.8rem;
}
.social-icons.blog-icons img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991px) {
  .blog-item {
    flex-direction: row;
  }
  .blog-item .text {
    padding: 0.8rem 1.2rem;
  }
  .blog-item img {
    width: 7.7rem;
    height: 7.7rem;
    border-radius: 0.8rem;
    order: 2;
  }
  .blog-item .title {
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 1.8rem;
    height: 3.6rem;
    overflow: hidden;
  }
  .blog-item .short-text {
    display: none;
  }
  .blog-item .date-reading-time {
    order: 2;
    color: #282828;
  }
  .blog-item .date-reading-time strong {
    font-weight: normal;
  }
  .decorator-blog-1 {
    width: 279px;
    height: 39px;
    right: -68px;
    top: 10px;
  }
  .decorator-blog-2 {
    width: 279px;
    height: 39px;
    left: -118px;
    bottom: -34px;
  }
  .blog-title-block {
    flex-direction: column;
    margin: -4rem -2.4rem 2.4rem -2.4rem;
    padding: 2.6rem 1.6rem calc(1.4rem + 3.2rem + 2.4rem) 1.6rem;
    width: auto;
    border-radius: 0 0 1.2rem 1.2rem;
  }
  .blog-title-block img {
    order: 0;
  }
  .blog-title-block .text {
    padding: 2.4rem 0.8rem 0.8rem 0.8rem;
  }
  .blog-title-block h1 {
    font-size: 2.4rem;
  }
  .social-icons.blog-icons {
    flex-direction: row;
    left: 0;
    top: -8.8rem;
    margin-bottom: 1.6rem;
    margin-left: -0.8rem;
  }
}

/* nase prace */
.gallery-header {
}
.gallery-block {
  margin: 4.4rem 0rem 4.4rem 0rem;
}
.gallery-block .gallery-img img {
  border-radius: 1.6rem;
  margin: 0.4rem 0;
  display: block;
}
.contact-us-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 4.8rem 0;
  font-family: "Times New Roman";
  font-weight: bold;
  font-size: 2.9rem;
  line-height: 1;

  background-color: #F1F1F1;
  border-radius: 1.6rem;
  padding: 6.4rem 2.4rem;
}
.contact-us-block p {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .gallery-block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
  }
  .gallery-block .gallery-img img {
    margin: 0.8rem 0;
  }
}
@media (max-width: 767px) {
  .gallery-block {
    margin: 4.4rem -0.8rem 4.4rem -0.8rem;
  }
  .gallery-block .gallery-img {
    padding: 0;
  }
  .contact-us-block-wrapper {
    padding: 0;
  }
  .contact-us-block {
    margin: 4.8rem -1.6rem;
  }
}

/* all in akcie */
.decorator-action {
  margin: 2rem auto;
  max-width: 36rem;
  width: 100%;
  padding: 6.4rem 3rem;
  background: transparent url('../images/star.svg?2') center center no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.decorator-action h2 {
  font-size: 2.4rem;
}
.decorator-action > *:last-child {
  margin-bottom: 0;
}


/* fotovolt */
.decorator-fotovolt {
  height: 13.4rem;
  width: 100.2rem;
  background: transparent url('../images/decorator-fotovolt.svg') center center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: 0; right: -15.6rem;
  z-index: -1;
}
.decorator-fotovolt-cyan {
  height: 60rem;
  width: 100%;
  background: transparent url('../images/decorator-cyan.svg') right top no-repeat;
  position: absolute;
  top: -1.8rem; right: -15rem;
  z-index: -1;
}
.decorator-fotovolt-green {
  height: 60rem;
  width: 100%;
  background: transparent url('../images/decorator-green.svg') right top no-repeat;
  position: absolute;
  top: -1.8rem; right: -15rem;
  z-index: -1;
}
.decorator-fotovolt-yellow {
  height: 60rem;
  width: 100%;
  background: transparent url('../images/decorator-yellow.svg') right top no-repeat;
  position: absolute;
  top: -18rem; right: -22rem;
  z-index: -1;
}
@media (max-width: 991px) {
  .decorator-fotovolt {
    height: 8.4rem;
    width: 81.7rem;
    background: transparent url('../images/decorator-fotovolt.svg') left center no-repeat;
    background-size: auto 100%;
    position: relative;
    top: 0;
    right: 0;
    left: 50%;
    margin: 0 -2.4rem;
    transform: translate(-50%, 0);
  }
  .decorator-heatpump {
    display: none;
  }
  h1:has(+ .decorator-fotovolt-cyan) {
    font-size: 3rem;
  }
  .decorator-fotovolt-cyan {
    height: 60rem;
    width: 50rem;
    background: transparent url('../images/decorator-cyan.svg') right top no-repeat;
    background-size: 40rem auto;
    position: absolute;
    top: 3.8rem; right: -8.6rem;
    transform: rotate(-12deg)
  }
  h1:has(+ .decorator-fotovolt-green) {
    font-size: 3rem;
  }
  .decorator-fotovolt-green {
    height: 60rem;
    width: 50rem;
    background: transparent url('../images/decorator-green.svg') right top no-repeat;
    background-size: 26rem auto;
    position: absolute;
    top: 3.6rem; right: -9.5rem;
    transform: rotate(-14deg)
  }
  h1:has(+ .decorator-fotovolt-yellow) {
    font-size: 3rem;
  }
  .decorator-fotovolt-yellow {
    height: 65rem;
    width: 65rem;
    background: transparent url('../images/decorator-yellow.svg') right top no-repeat;
    position: absolute;
    top: -18rem; right: -11.2rem;
  }
}

/* tepelne cerpadla */
.decorator-heatpump {
  height: 13.4rem;
  width: 100.2rem;
  background: transparent url('../images/decorator-fotovolt.svg') center center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: 0; right: -15.6rem;
}
@media (max-width: 991px) {
  .decorator-heatpump {
    display: none;
  }
}

/* solar */
h1:has(+ .decorator-solar) span {
  background-color: #FFF;
  padding: 1px 0;
}
.decorator-solar {
  height: 19.3rem;
  width: 65.1rem;
  background: transparent url('../images/decorator-solar.svg') right top no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: -0.8rem; right: 2rem;
  z-index: -1;
}
@media (max-width: 991px) {
  h1:has(+ .decorator-fotovolt-yellow) {
    font-size: 3rem;
  }
  .decorator-solar {
    height: 11.4rem;
    width: 50rem;
    background: transparent url('../images/decorator-solar.svg') right top no-repeat;
    background-size: auto 100%;
    top: -1.6rem; right: 2rem;
  }
}

/* rekuperacia */
.decorator-zzz {
  height: 14.2rem;
  width: 100%;
  background: transparent url('../images/decorator-zzz.svg') right top no-repeat;
  position: absolute;
  top: 0rem; right: 2.4rem;
  z-index: -1;
}
@media (max-width: 991px) {
  h1:has(+ .decorator-zzz) {
    font-size: 3rem;
  }
  .decorator-zzz {
    background: transparent url('../images/decorator-zzz-mobile.svg') right top no-repeat;
    top: -1.6rem; right: 1.6rem;
  }
}

/* zelena strecha */

.decorator-roof {
  height: 9.9rem;
  width: 95.4rem;
  background: transparent url('../images/decorator-green-roof.svg?1') left center no-repeat;
  background-size: 124.3rem auto;
  position: absolute;
  top: 1.6rem; right: -11rem;
  z-index: -1;
}
h1:has(+ .decorator-roof) span {
  background-color: #FFF;
  padding: 1px 0;
}
@media (max-width: 991px) {
  .postion-relative:has(> .decorator-roof) {
    overflow: hidden;
  }
  .decorator-roof {
    background: transparent url('../images/decorator-green-roof.svg?1') center center no-repeat;
    background-size: 124.3rem auto;
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    /* transform: translate(-25%, 0); */
  }
}

/* FORMS */
form dt {
  display: none;
}
form label {
  color: #282828 !important;
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
  line-height: 26px;
}
form dd {
  margin-bottom: 1.6rem;
}
dd#title1-element, dd#title2-element {
  font-weight: 700;
}
dd small {
  font-weight: 400;
}
.form-floating {
  margin-bottom: 1.6rem;
}
.form-control {
  background-color: #F1F1F1;
  border-radius: 1.6rem;
  min-height: 4.8rem;
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
  position: relative;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  color: rgb(var(--color-text-rgb));

  border: 1px solid  #F1F1F1 !important;
  box-shadow: none !important;
}
.form-control:focus {
  background-color: #F1F1F1;
  border: 1px solid rgb(var(--color-text-rgb)) !important;
}
.form-floating>.form-control {
  padding-top: 2.2rem !important;
  padding-bottom: 0.5rem !important;
}
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  opacity: 1;
  transform: scale(.77) translateY(-0.6rem) translateX(0.3rem);
}
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding-top: 2.2rem;
  padding-bottom: 0.5rem;
}
textarea.form-control {
  height: auto !important;
  min-height: 176px;
}

.red {
  color: #DC1404;
}
.errors {
  color: #DC1404;
  font-size: 1.3rem;
}
#fieldset-col1 dl {
  display: flex;
  flex-wrap: wrap;
}
#fieldset-col1 dt {
  padding: 0;
  margin: 0;
  height: auto;
}
form fieldset {
  margin-top: 0.8rem;
}
.checkbox-item {
  background-color: #F1F1F1;
  margin: 0 0.8rem 0.8rem 0;
  border-radius: var(--border-radius);
  position: relative;
}
.checkbox-item label {
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 0.5rem 1.6rem;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  border-radius: var(--border-radius);
  /* */
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  user-select: none;
}
.checkbox-item label:hover {
  background-color: rgba(var(--color-text-rgb), 0.1); !important;
}
.checkbox-item input[type="checkbox"]:checked + label {
  -webkit-text-stroke: 0.08rem rgb(var(--color-text-rgb));
  text-stroke: 0.08rem rgb(var(--color-text-rgb));
}
.checkbox-item input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  border-radius: var(--border-radius);
}
.checkbox-item input[type="checkbox"]:checked {
  background-color: rgb(var(--color-primary-rgb));
}
#hidden-element {
  display: none;
}
#Kontakt .col-lg-7 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#Kontakt #description-element {
  float: left;
  flex-basis: calc(90% - 220px);
  font-size: 1.4rem;
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  #Kontakt #description-element {
    order: 10;
    flex-basis: 100%;
    text-align: center;
    padding-right: 0;
  }
  #Kontakt #ok-element {
    margin-top: 1.6rem;
  }
}

/* FOOTER */
footer {
  background: transparent url('/images/footer-desktop-bg.svg') no-repeat center bottom;
  background-size: cover;
  padding: 2.4rem 0 3rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 2.2rem;
}
footer .arrow-bottom-btn {
  margin: -4rem auto 4rem auto !important;
}
footer .content-wrapper {
  background: rgba(0, 0, 0, 0.15);
  mix-blend-mode: normal;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  min-height: 383px;
  /* min-height: 528px; */
}

@media (max-width: 991px) {
  footer {
    background: transparent url('/images/footer-mobile-bg.svg') no-repeat center top;
    background-size: cover;
  }
}

footer .content-wrapper > .row {
  padding: 3.3rem 6.4rem 3.3rem 6.4rem;
}
footer .line {
  opacity: 0.3;
  border: 1px solid #A29073;
  margin-bottom: 3.8rem;
  margin-top: 1.1rem;
}
footer h2 {
  font-size: 2.4rem;
}
footer .social-icons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 2.6rem;
  margin: 0.3rem 0;
}
footer .social-icons img {
  width: 2.6rem;
  height: auto;
}
footer .social-icons a + a {
  margin-top: 16px;
}
footer .contact-links {
  display: flex;
}
footer .contact-address {
}
footer .contact-links a {
  font-weight: 900;
  font-size: 1.6rem;
  align-items: center;
}
footer a {
  color: #fff !important;
  text-decoration: underline;
}
footer a:hover {
  color: rgb(var(--color-primary-rgb)) !important;
}
footer .contact-links a + a {
  margin-left: 1.6rem
}
footer .contact-links img {
  width: 2.4rem;
  height: auto;
  margin-right: 0.8rem;
}
footer .contact-links a.text img {
  margin-right: 0.8rem;
}
footer .contact-links a.text {
  margin-right: 1.6rem;
}
footer .col p:last-child {
  margin: 0;
  line-height: 26px;
}
footer .contact-email-form {
  margin: 0 auto;
  text-align: center;
}
footer .contact-email-form h2 strong {
  color: rgb(var(--color-primary-rgb));
}

@media (max-width: 991px) {
  footer .content-wrapper > .row {
    padding: 48px 20px;
  }
  footer .contact-links {
    flex-direction: column;
  }
  footer .contact-links a + a {
    margin-left: 0;
    margin-top: 1.6rem;
  }
  footer .social-icons img, footer .contact-links img {
    width: 30px;
  }
  .contact-address .row {
    align-items: center;
  }
}

.contact-email-form .form-control {
  background-color: rgb(var(--color-grey-bg-rgb));
  width: 100%;
  margin: auto;
}
.contact-email-form form {
  margin: 2rem auto 0.8rem auto;
  position: relative;
  width: 100%;
  max-width: 458px;
}
.contact-email-form .form-control {
  padding-right: 4.8rem;
}
.contact-email-form #ok-element button {
  position: absolute;
  right: 1.6rem;
  top: 0;
  background-color: rgb(var(--color-text-rgb));
  border: 1px solid rgb(var(--color-text-rgb)) !important;
  color: rgb(var(--color-white-rgb));
  box-shadow: inset 0px 0px 30px 200px rgba(var(--color-white-rgb), 0);
  min-width: 4.8rem;
  min-height: 4.8rem;
  padding: 0 !important;
  background-image:  url('../images/arrow-right.svg');
}

#ok-label {
  display: none;
}

@media (max-width: 991px) {
  .contact-email-form h2 br {
    display: none;
  }
}

/* product categories */
.product-categories {
  margin: 7rem -1.2rem 1.2rem -1.2rem;
}
.category-block {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  padding: 0.8rem 1.2rem;
}
.category-block .category-block-content {
  z-index: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3.2rem 3.2rem;
  border-radius: 1.6rem;
  min-height: 34rem;
  position: relative;
  background-color: rgba(242, 242, 242, 0.60);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
}
.category-block h2, .product-block h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.category-block h2 {
  font-size: 2.4rem;
}
.category-block .text-content {
  flex: 1;
  width: 100%;
  margin-bottom: 2.4rem;
}
.category-block .text-content p:first-child {
  margin-bottom: 2rem;
}
.category-block .button, .product-block .button {
  margin: 2.4rem 0 0 0;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  min-height: 4.4rem;
}

@media (max-width: 767px) {
  .product-categories {
    margin: 4rem -1.2rem 1.2rem -1.2rem;
  }
}

/* products */

.products-container-wrapper .content-container {
  margin-bottom: 0;
}

/* breadcrumbs */
.breadcrumbs {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2.4rem;
  color: #282828;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.breadcrumbs-link {
  color: #282828 !important;
  text-decoration-line: underline !important;
  text-underline-offset: 2px;
}
.breadcrumbs-link:hover {
  color: #282828 !important;
  text-decoration-line: none !important;
}
.breadcrumbs-item:last-child {
  color: #828382;
}
.breadcrumbs-item:first-child {
  color: #282828;
}
.breadcrumbs-arrow {
  background: transparent url('/images/arrow-right-black.svg?1') no-repeat center center;
  background-size: 1.6rem 1.6rem;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}

.products {
  margin: 7rem -1.2rem 1.2rem -1.2rem;
}
.product-block {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  padding: 0.8rem 1.2rem;
}
.product-block .product-block-content {
  z-index: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2.4rem;
  border-radius: 1.6rem;
  min-height: 34rem;
  position: relative;
  background-color: rgba(242, 242, 242, 0.60);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
}
.product-block .text-content {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
}
.product-block .text-content table {
  width: 100% !important;
  margin-top: 2rem;
}
.product-block .text-content > p:last-child {
  margin: 0;
}
.product-block .image-wrapper, .category-block .image-wrapper {
  min-height: 27.8rem;
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
}
.product-block .image-block, .category-block .image-block {
  margin: 0 0 2.4rem 0;
  position: relative;
  width: 100%;
}
.product-block .image-wrapper img, .category-block .image-wrapper img {
  position: relative;
  margin: 0 auto;
  max-height: 23rem;
  width: auto;
  max-width: 80%;
  display: block;
}
.product-block .image-block:before, .category-block .image-block:before {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: 84%;
  width: 75%;
  padding-top: 18%;
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.3);
  filter: blur(2.3rem);
  transform: translate(-50%, 0) rotate(4.98deg);
}
.product-block table td {
  padding: 2rem 0 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.16;
}
.product-block table tr:first-child td {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.product-text-block-colored {
  border-radius: 2.4rem;
  margin-bottom: -2.4rem;
  padding: 8rem 0 10rem 0;
  /* width: 100%;
  max-width: 144rem;
  margin-left: auto;
  margin-right: auto; */
}
.cyan-bg {
  background-color: #9DCDD4;
}
.yellow-bg {
  background-color: #F2C32F;
}
.green-bg {
  background-color: #476D51;
  color: #FFF;
}

@media (max-width: 767px) {
  .products {
    margin: 4rem -1.2rem 1.2rem -1.2rem;
  }
  .product-block {
    padding: 0.8rem 0.4rem;
  }
  .breadcrumbs {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  .breadcrumbs-arrow, .breadcrumbs-link {
    display: none;
  }
  .breadcrumbs-item {
    color: #282828 !important;
    flex: 1;
  }
}

.footer-contact-form-wrapper {
  margin: 4.8rem 0;
}

.footer-phone {
  padding: 8rem 0;
  text-align: center;
}
.footer-phone a {
  text-decoration: underline !important;
  color: #fff !important;
}
#product_link-label, #product_link-element {
  display: none;
}



/* fotovolt */
.grey-bg {
  background-color: #282828;
  color: #FFF;
}
.grey-block {
  border: 1px solid #828382;
  border-radius: 2.4rem;
  padding: 5rem 2.4rem 3.2rem 2.4rem;
  position: relative;
}
.grey-block:before {
  background: #282828 url('/images/color-logo-symbol.svg') center center no-repeat;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.1rem;
  height: 4.4rem;
}
.grey-bg h2, .grey-bg h3 {
  font-family: "Times NR MT Pro";
  font-weight: 800;
}
.grey-bg h2 strong, .grey-bg h3 strong {
  color: rgb(var(--color-primary-rgb));
}
.icon-heading {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
  margin-top: 6rem;
}
.icon-heading img {
  display:  block;
  width: 8.1rem;
  margin-right: 2.4rem;
}
.icon-heading h2 {
  font-family: "Times NR MT Pro";
  font-weight: 800;
  margin-bottom: -1rem;
}
.bottom-image {
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 2.4rem 2.4rem 0 0;
  overflow: hidden;
}
.grey-bg .line {
  margin: 4.8rem 0;
  border-top: 1px solid rgba(128, 130, 134, 0.1);
}
.light-grey-bg {
  background-color: rgba(130, 131, 130, 0.1);
  border-radius: 2.4rem 2.4rem 0 0;
  margin-bottom: -2.4rem;
  padding: 4.8rem 0 8rem 0;
}
.light-grey-bg li {
  margin-bottom: 1.8rem;
}

@media (min-width: 768px) {
  .bottom-image {
    display: none;
  }
}


/* maps autocomplete */
.pac-container {
  border: none;
  border-radius: 1.6rem;
  padding: 0;
}
.pac-container .pac-item {
  padding: 0 2.1rem;
}
.pac-container:after {
  margin-right: 1.5rem;
}

/* */

.button.black.m-auto {
  max-width: 40rem;
}
