
/* 
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*/
























/* Default & normalize setter */
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
blockquote,
main,
details,
menu,
picture,
video {
  display: block;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
template,
[hidden] {
  display: none;
}
audio,
video,
canvas {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Normalize - Comerto specific 1  */
body,
html,
div,
img,
svg,
figure,
form,
iframe {
  padding: 0px;
  border: 0px;
  margin: 0px;
  box-sizing: border-box;
  border-style: none;
}
ul,
ol,
li,
a,
span {
  box-sizing: border-box;
}
div {
  position: relative;
  max-height: 9999999px;
}
main,
footer,
header,
section {
  width: 100%;
}

/* Normalize - Comerto specific 2 */
body {
  min-height: 101vh;
}
.form,
.form_submit,
div {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  box-sizing: border-box;
}
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
    line-height: 1;
}
iframe {
  max-width: 100%;
}
a,
.form_submit {
  cursor: pointer;
}

.fimg,
.fimg_wrp,
.fimg_pic,
.fimg_img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  line-height: 0;
}

.fimg_wrp,
.fimg_pic,
.fimg_img {
  max-height: inherit;
  max-width:inherit;
}


:root {
  --font-basic: 'Inter', sans-serif;
  --transition: ease-in-out 0.3s;
  --gray-bg: #F0F0F0;
  --gray-border: #D2D2D2;
  --yellow: #FEC700;
  --yellow-dark: #F6A800;
  --gradient: radial-gradient(circle, rgba(255,204,0,1) 0%, rgba(246,168,0,1) 90%);
  --container-width: 1400px;
  --container-width-small: 940px;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-margin-top: 150px;
}

a {
  scroll-margin-top: 150px;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #212121;
  margin: 0;
  font-family: var(--font-basic);
  padding-top: 100px;
}

body.id_page_1 {
  padding-top: 0;
}

a {
  color: #f6a800;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin-bottom: .8em;
  margin-top: 1.6em;
  line-height: 1.3;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

.def-section {
  padding: 80px 20px;
  scroll-margin-top: 150px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.container.small {
  max-width: var(--container-width-small);
}

.block-price-info{
  width: 100%;
  max-width: 930px;
  margin: 30px auto;

  display: flex;
  gap: 15px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.block-price-info p{
  margin: 0;
}
.block-price-info .img-wrap{
  flex: 0 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-price-info .text-wrap{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn,
.articles_small_more a,
.form_submit {
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: var(--gradient);
  position: relative;
  transition: color var(--transition);
  cursor: pointer;
  color: #000;
  text-decoration: none;
  width: fit-content;
  border: none;
}
.form_submit{
    background: transparent;
    transition: .3s color;
    z-index: 10;
}
.form_submit:hover{
    color: var(--yellow);
}

.btn.white::before {
  background-color: #fff;
  opacity: 1;
  transition: opacity var(--transition);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: " ";
  height: 100%;
}

.btn.white:hover::before {
  opacity: 0;
  height: 100%;
}

.btn.white:hover {
  color: #000;
}

.btn.white .text {
  position: relative;
}

.btn.white-w-line {
  background: #fff;
}

.btn.black {
  background: #000;
  color: #fff;
}

.form-fixed{
    max-width: 300px;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 30px;
    z-index: 100;
}
.form-fixed .cform_name{
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-fixed .cform_name::before{
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("/gfx/svg/phone-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.form-fixed .cform_name::after{
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("/gfx/svg/arrow-down-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: auto;
    transition: transform .3s;
    transform: rotate(180deg);
}
.form-fixed .cform_container.open .cform_name::after{
    transform: rotate(0deg);
}

.form-fixed .cform_container{
    background-color: #fff;
    border-radius: 0px 25px 0px 0px;
    overflow: auto;
    border: 1px solid var(--gray-border);
    border-bottom: none;
}
.form-fixed .cform_container form{
    display: none;
    background-color: #fff;
    padding: 15px;
}
.form-fixed .cform_container .cform_name{
    background: #005ec4;
    transition: background-color .3s;
    padding: 15px;
    color: #fff;
    cursor: pointer;
}
.form-fixed .cform_container .cform_name:hover{
    background: #004086;
}

.form-fixed label{
    color: #666;
}
.form-fixed .cform_item_type_cleartext{
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: unset;
    font-size: 16px;
}
.form-fixed .form {
    padding: 10px;
    border: 1px solid var(--gray-border);
    background-color: rgba(0,0,0,0);
    margin-bottom: 10px;
    resize: none;
    width: 100%;
    transition: var(--transition);
    border-radius: 5px;
}
.form-fixed .form::placeholder{
    color: #666;
}


.form-fixed .form-label.visible{
    display: none;
}




.btn.border {
  color: var(--yellow);
  padding: 2px;
}

.btn.border::before {
  display: none;
}

.btn.border .inner-btn {
  background-color: #000;
  padding: 13px 28px;
  transition: var(--transition);
}

.btn.border .inner-btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
}

.btn.big {
  min-width: 255px;
}

.btn .inner-btn,
.articles_small_more a .inner-btn {
  position: relative;
}

.btn:hover,
.articles_small_more a:hover {
  color: var(--yellow);
}

.btn::before,
.articles_small_more a::before,
.cform_form_submit::before{
  position: absolute;
  content: " ";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #000;
  transition: height var(--transition);
}

.cform_form_submit::before{
    z-index: 1;
}

.btn:hover::before,
.articles_small_more a:hover::before,
.cform_form_submit:hover::before{
  height: calc(100% - 7px);
}



.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.col-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.col-span-3 {
  grid-column: span 3;
}

.def-section:nth-child(2n) {
  background-color: var(--gray-bg);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 100px;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 666;
  background-color: #fff;
  border-bottom: 1px solid var(--gray-border);
}

header .sub_0 {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

header .sub_0_li {
  list-style-type: none;
}

header .sub_0_a {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

header .sub_0_a::after {
  position: absolute;
  top: 0;
  background: linear-gradient(#fc0 0%, #fec800 6.76%, #f6a800 100%);
  height: 7px;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  content: " ";
  transition: var(--transition);
}

header .sub_0_a:hover::after,
header .sub_0_a.active::after,
header .sub_0_a.parent::after {
  width: 100%;
}

#small_menu {
  display: none;
}

.header-cta-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.phone {
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  display: flex;
  font-size: 20px;
  font-weight: 700;
    transition: .3s color;
}
.phone:hover,
.products-wrap .phone:hover {
    color: var(--yellow-dark);
}

.top-hp-cont {
  height: auto;
  min-height: 100vh;
  max-height: 1080px;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 150px;
}

.top-hp-claim {
  background: linear-gradient(#fc0 0%, #fec800 6.76%, #f6a800 100%);
  width: 600px;
  position: relative;
  text-align: center;
  padding: 40px 60px;
  padding-bottom: 50px;
}

.top-hp-claim span {
  display: inline-block;
}

.top-hp-claim .az {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
}

.top-hp-claim .number {
  font-weight: 700;
  font-size: 10rem;
  letter-spacing: -1rem;
  line-height: 1;
}

.top-hp-claim .uspora {
  font-weight: 700;
  font-size: 5rem;
  color: #fff;
  line-height: 1.1;
  margin: 20px 0;
}

.top-hp-claim .main-text {
  font-weight: 400;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}

.top-hp-claim::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 25px;
  content: " ";
}

.top-hp-cont .slider-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top-hp-cont .splide__track,
.top-hp-cont .splide__list {
  height: 100%;
}

.top-hp-cont .gallery_item,
.top-hp-cont .gallery_img {
  height: 100%;
}

.top-hp-cont .gallery_img a,
.top-hp-cont .gallery_img picture {
  display: block;
  height: 100%;
  width: 100%;
}

.top-hp-cont .gallery_img img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.top-hp-cont .slider-wrapper .gallery_name {
  display: none;
}

.top-hp-cont .slider-wrapper .cont-in-slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.top-hp-cont.new .slider-wrapper .cont-in-slider {
  max-width: calc(var(--container-width) / 2);
  left: 0;
  transform: translateY(-50%);
}

.top-hp-cont .slider-wrapper .cont-in-slider .gallery_info {
  background-color: rgba(255,255,255,.8);
  border-top: 5px solid var(--yellow);
  padding: 30px;
  max-width: 340px;
}

.top-hp-cont .slider-wrapper .cont-in-slider .gallery_name {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}

.dev-mode .top-hp-cont .splide__pagination {
  display: flex;
}

.top-hp-cont .splide__pagination {
  display: none;
  display: flex;
  justify-content: flex-end;
  left: 50%;
  transform: translateX(-50%);
  bottom: auto;
  padding: 0;
}

.top-hp-cont.new .splide__pagination {
  max-width: calc(var(--container-width) / 2);
  left: 0;
  transform: translate(0);
}

.claim-side-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 90px;
}

.claim-text-prepare {
  height: 0;
  overflow: clip;
}

.claim-text-prepare ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.claim-text-prepare ul li,
.claim-item {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.claim-item {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: var(--transition) .3s;
}

.claim-item.active {
  opacity: 1;
}

.top-hp-cont .splide__pagination li button {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255,255,255,.7);
  transition: var(--transition);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  opacity: 1;
}

.top-hp-cont .splide__pagination li button.is-active {
  border-width: 4px;
  border-color: #fff;
  transform: scale(1, 1);
  box-sizing: border-box;
}

.top-hp-cont .dotace {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(40%, -40px);
}

.claim-header {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.25;
}

.top-hp-cont.new {
  display: flex;
  padding: 0;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
}

.top-hp-claim-side,
.top-hp-cont.new .slider-wrapper {
  flex: 0 0 50%;
  position: relative;
  width: 50%;
}

.top-hp-claim-side {
  background: var(--gradient);
  height: 100%;
}

.claim-text-wrap {
  margin-bottom: 120px;
}

@media(max-width: 1680px) {
  .claim-header {
    font-size: 2.8rem;
  }
}

@media(max-width: 1400px) {
  .claim-side-inner {
    padding: 60px 40px;
  }

  .claim-text-wrap {
    margin-bottom: 80px;
  }

  .claim-header {
    font-size: 2.4rem;
  }

  .claim-text-prepare ul li, .claim-item {
    font-size: 2rem;
  }

  .top-hp-cont.new .slider-wrapper .cont-in-slider,
  .top-hp-cont.new .splide__pagination {
    padding-right: 20px;
  }
}


.def-section h2 {
  margin-top: 0;
  position: relative;
  padding: 25px 0;
  text-align: center;
}

.def-section h2::before {
  position: absolute;
  top: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: linear-gradient(#fc0 0%,#fec800 6.76%,#f6a800 100%);
  left: 50%;
  transform: translateX(-50%);
}

.def-section h2::after {
  position: absolute;
  bottom: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: #000;
  left: 50%;
  transform: translateX(-50%);
}

.def-section.benefits-cont.hp {
  padding: 0 20px;
  background-color: #fff !important;
}

.about-us-cont {
  padding: 50px 20px;
  position: relative;
}

.about-us-inner .text {
  grid-column: 2;
  padding-left: 120px;
}

.def-section.left-head h2,
.def-section.left-head h1 {
  margin-top: 0;
  position: relative;
  padding: 25px 0;
  text-align: left;
}

.def-section.left-head h2::before,
.def-section.left-head h1::before {
  position: absolute;
  top: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: linear-gradient(#fc0 0%, #fec800 6.76%, #f6a800 100%);
  left: 0;
  transform: translateX(0);
}

.def-section.left-head h2::after,
.def-section.left-head h1::after {
  position: absolute;
  bottom: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: #000;
  left: 0;
  transform: translateX(0);
}

.logo-claims {
  margin: 30px 0;
}

.logo-claim-line {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-border);
}

.logo-claim-line:last-child {
  border-bottom: none;
}

.logo-claim-line .logo-wrap {
  flex: 0 0 140px;
}

.about-us-cont .page_image_main_img {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
}

.about-us-cont .page_image_main_img .fimg_pic {
  height: 100%;
}

.about-us-cont .page_image_main_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.benefits-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
}

.benefits-wrap.hp {
  grid-template-columns: repeat(6,1fr);
}

.benefits-wrap .item {
  height: 240px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  position: relative;
}

.benefits-wrap.hp .item {
  transform: translateY(-45%);
}

.top-hp-cont.new + .benefits-cont.hp {
  padding: 60px 20px;
}

.top-hp-cont.new + .benefits-cont.hp .benefits-wrap.hp .item {
  transform: translateY(0);
}

.benefits-wrap .item .benefit-top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  background: linear-gradient(#fc0 0%, #fec800 6.76%, #f6a800 100%);
  position: relative;
}

.benefits-wrap .item .benefit-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
  height: 50%;
}

.steps-cont {
  padding: 80px 20px;
}

.steps-wrapper.text-page {
  padding: 80px 0;
}

.steps-wrapper h2 {
  max-width: 410px;
  margin: 0 auto;
}

.steps-wrapper ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  counter-reset: my-li-counter;
  margin-top: 100px;
}

.steps-wrapper ul li {
  list-style-type: none;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding-top: 35px;
  text-align: center;
  line-height: 1.3;
}

.steps-wrapper ul li a {
  color: #000;
  text-decoration: none;
  transition: var(--transition);
}

.steps-wrapper ul li a:hover {
  color: var(--yellow-dark);
}

.steps-wrapper ul li::before {
  counter-increment: my-li-counter;
  content: "0"counter(my-li-counter);
  color: var(--yellow);
  font-size: .85rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps-wrapper ul li::after {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('/gfx/svg/chevron-right-big.svg');
  height: 100px;
  width: 26px;
  background-repeat: no-repeat;
  background-size: cover;
  content: " ";
}

.steps-wrapper ul li:last-child::after {
  display: none;
}

.products-cont {
  background: var(--gradient);
  padding: 80px 20px;
}

.products-cont h2 {
  margin-top: 0;
  position: relative;
  padding: 25px 0;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 50px;
}

.products-cont h2::before {
  position: absolute;
  top: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.products-cont h2::after {
  position: absolute;
  bottom: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: #000;
  left: 50%;
  transform: translateX(-50%);
}

.lines-wrap {
  display: flex;
  text-align: center;
  margin-bottom: 35px;
  justify-content: space-between;
}

.lines-wrap .headline {
  text-transform: uppercase;
  line-height: 1.25;
  display: inline-block;
}

.lines-wrap .left-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75%;
}

.lines-wrap .right-side {
  width: calc(25% - 12px);
}

.lines-wrap .line {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
}

.lines-wrap .line.long::before {
  position: absolute;
  left: 0;
  top: 100%;
  width: 1px;
  height: 20px;
  background-color: #000;
  content: " ";
}

.lines-wrap .line.long::after {
  position: absolute;
  right: 0;
  top: 100%;
  width: 1px;
  height: 20px;
  background-color: #000;
  content: " ";
}

.lines-wrap .line.long {
  width: 66.6666%;
}

.lines-wrap .middle-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  width: 1px;
  background-color: #000;
  top: 100%;
}

.products-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

.products-wrap .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: #fff;
  padding: 55px 25px;
  color: #000;
  border-radius: 0px 50px;
  height: auto;
  min-height: 470px;
  line-height: 1.3;
}

.products-wrap .item.custom {
  padding: 55px 35px;
}

.products-wrap .item .top-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-wrap .item .top-wrap .desc {
  margin-top: 10px;
}

.products-wrap .item .bottom-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.products-wrap .item .bottom-wrap .price-inner {
  font-weight: 700;
}

.products-wrap .item .middle-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-wrap .item .middle-wrap a {
  color: #000;
}

.products-wrap .item .bold-desc {
  font-weight: 700;
}

.products-wrap .person-wrap {
  margin-bottom: 35px;
}

.products-wrap .name {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.products-wrap .name .unit {
  text-transform: none;
}

.products-wrap .name.custom {
  position: relative;
  top: -2px;
  margin-bottom: 30px;
}

.products-wrap .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.products-text-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}

.products-text-info h3 {
  margin-top: 0;
  margin-top: 15px;
  margin-bottom: 30px;
}

.products-text-info ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
}

.products-text-info ul li {
  flex: 0 0 225px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.products-text-info ul li::before {
  content: " ";
  background-image: url('/gfx/svg/ok-black.svg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 16px;
  height: 13px;
  display: inline-block;
}

.dotation-cont {
  text-transform: uppercase;
  background-color: var(--gray-bg);
  text-align: center;
}

.dotation-cont h2 {
  margin-top: 0;
  font-size: 3.6rem;
  margin-bottom: 0;
  line-height: 1.1;
  padding: 0;
}

.dotation-cont h2::before {
  display: none;
}

.dotation-cont h2::after {
  display: none;
}

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

.dotation-cont .subhead {
  font-size: 1.5rem;
}

.dotation-cont .nzu-img {
  margin: 50px 0;
}

.ref-cat-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.ref-cat-list .item {
  padding: 12px 25px;
  transition: var(--transition);
  font-size: .9rem;
  border: 1px solid var(--gray-border);
  color: #000;
  text-decoration: none;
  line-height: 1.2;
  background: var(--gradient);
  position: relative;
}

.ref-cat-list .item span {
  position: relative;
}

.ref-cat-list .item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: " ";
  transition: opacity var(--transition);
}

.ref-cat-list .item:hover::before {
  opacity: 0;
}

.ref-cat-list .item.active {
  font-weight: 700;
}

.ref-cat-list .item.active::before {
  opacity: 0;
}

.ref-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 50px;
}

.ref-list .item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.ref-list .item .shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
  opacity: 0.8;
  transition: var(--transition);
}

.ref-list .item:hover .shadow {
  height: 100%;
  opacity: 1;
}

.ref-list .item .ref-name {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 40px;
  bottom: 35px;
  line-height: 1.3;
}

.ref-list .item .ref-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.show-all-wrap {
  justify-content: center;
  margin-top: 50px;
  display: flex;
}

.customers-slider-wrap {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
}

.customers-slider-wrap.hp {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.ref-people-cont .customers-slider-wrap {
  margin-top: 0;
}

.customers-slider-wrap .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.customers-slider-wrap .item .person-wrap {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.customers-slider-wrap .item .person-wrap .name {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.15;
}

.customers-slider-wrap .item .person-wrap .location {
  font-size: .9rem;
  line-height: 1.15;
}

.customers-slider-wrap .customer-text {
  color: #666;
  font-size: .9rem;
  margin-bottom: 30px;
  font-style: italic;
}

.customers-slider-wrap .customer-text p {
  margin: 0;
}

.customers-slider-wrap .varef_items.image {
  width: 55px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.customers-slider-wrap .item .stars {
  margin-top: 30px;
  margin-bottom: 10px;
}

.customers-slider-wrap .varef_items.image .fimg_wrp,
.customers-slider-wrap .varef_items.image .fimg_pic {
  width: 100%;
  height: 100%;
}

.customers-slider-wrap .varef_items.image .fimg_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*.news-cont {
  background-color: var(--gray-bg);
}*/


.articles_small_item,
.articles_list_item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.articles_small_item img {
  width: 100%;
  height: 100%;
}

.articles_small_container,
.articles_list_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.articles_small_more {
  grid-column: span 3;
  display: flex;
  justify-content: center;
}

.articles_small_more a {
  grid-column: span 3;
  display: flex;
  justify-content: center;
}

.articles_small_title,
.articles_list_title {
  margin: 15px 0;
  flex-grow: 1;
}

.articles_small_title h3,
.articles_list_title h2 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  text-align: left;
  padding: 0;
}

.articles_list_title h2::after,
.articles_list_title h2::before {
  display: none;
}


.articles_small_title h3 a,
.articles_list_title h2 a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.articles_small_item:hover h3 a,
.articles_list_item:hover h2 a {
  text-decoration: underline;
}

.articles_small_date,
.articles_list_date {
  font-size: .7rem;
  display: flex;
  align-items: center;
}

.articles_small_item .articles_small_date::after,
.articles_list_item .articles_list_date::after {
  content: '';
  background: url("/gfx/svg/arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: block;
  position: relative;
  margin: 0 0 0 auto;
  opacity: 0;
  left: 10px;
  transition: var(--transition);
}

.articles_small_item:hover .articles_small_date::after,
.articles_list_item:hover .articles_list_date::after {
  opacity: 1;
  left: 0;
}

.articles_small_item .articles_list_link,
.articles_list_item .articles_list_link {
  position: initial;
}

.articles_small_item .articles_list_link a,
.articles_list_item .articles_list_link a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.breadcrumbs-wrap {
  padding: 10px 20px;
  border-bottom: 1px solid #D8D8D8;
}

.breadcrumbs-wrap .container > span {
  display: flex;
  column-gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  font-size: .8rem;
  line-height: 1.5;
}

.breadcrumbs-wrap a {
  color: #000;
}

.page-content h1 {
  margin-top: 0;
  font-size: 1.8rem;
  position: relative;
  padding: 25px 0;
  text-align: center;
  line-height: 1.2;
}

.page-content h1::before {
  position: absolute;
  top: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: linear-gradient(#fc0 0%,#fec800 6.76%,#f6a800 100%);
  left: 50%;
  transform: translateX(-50%);
}

.page-content h1::after {
  position: absolute;
  bottom: 0;
  height: 6px;
  width: 110px;
  content: " ";
  background: #000;
  left: 50%;
  transform: translateX(-50%);
}

.page-content.top {
  padding-top: 30px;
  padding-bottom: 30px;
}

.page_perex {
  max-width: 750px;
  margin: 30px auto;
  margin-bottom: 50px;
  text-align: center;
}

.main-img-wrap {
  margin: 40px auto;
  width: 100%;
  max-width: 960px;
}

.main-img-wrap .page_image_main_img {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 50%;
}

.main-img-wrap .page_image_main_img .fimg_wrp {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.main-img-wrap .page_image_main_img .fimg_pic {
  width: 100%;
  height: 100%;
}

.main-img-wrap .page_image_main_img .fimg_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dotace */
.id_page_10 .page_submenu li:first-child {
  grid-column: 2;
}

.page_submenu,
.full_care_submenu {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.page_submenu li,
.full_care_submenu li {
  list-style-type: none;
  position: relative;
  height: 160px;
  border: 1px solid #d1d1d1;
  border-top: none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.07);
}

.page_submenu li a,
.full_care_submenu li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  position: relative;
  padding: 30px;
  overflow: hidden;
  color: #000;
  text-decoration: none;
  transition: color var(--transition);
}

.page_submenu li a::after,
.full_care_submenu li a::after {
  width: 100%;
  height: 3px;
  background-color: var(--yellow);
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
}

.page_submenu li a:hover,
.full_care_submenu li a:hover {
  color: #fff;
}

.page_submenu li a .inner-text,
.full_care_submenu li a .inner-text {
  font-size: 1.15rem;
  font-weight: 600;
}

.page_submenu li figure,
.full_care_submenu li figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page_submenu li figure .fimg_wrp,
.full_care_submenu li figure .fimg_wrp{
  height: 100%;
  width: 100%;
}

.page_submenu li figure .fimg_pic,
.full_care_submenu li figure .fimg_pic {
  height: 100%;
  width: 100%;
}

.page_submenu li figure img,
.full_care_submenu li figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter var(--transition);
}

.page_submenu li figure::after,
.full_care_submenu li figure::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,.85);
  content: " ";
  transition: background-color var(--transition);
}

.page_submenu a:hover figure::after,
.full_care_submenu a:hover figure::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.page_submenu li a:hover figure img,
.full_care_submenu li a:hover figure img {
  filter: grayscale(0);
}

.page_submenu li a span,
.full_care_submenu li a span {
  position: relative;
  font-size: .85rem;
  line-height: 1.2;
}

.page_submenu .more-info,
.full_care_submenu .more-info {
  position: relative;
}

.page_submenu .more-info::after,
.full_care_submenu .more-info::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: " ";
  width: 13px;
  height: 11px;
  background-image: url('/gfx/svg/arrow-right-yellow.svg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  filter: brightness(0);
  transition: filter var(--transition);
}

.page_submenu a:hover .more-info::after,
.full_care_submenu a:hover .more-info::after {
  filter: brightness(1);
}

.page-text-main {
  /* margin-top: 50px; */
  margin: 50px 0;
}

.page-text-main > table{
  margin: 0 auto;
}
.table-wrap{
  overflow: auto;
}
table{
  border-collapse: collapse;
}
table.col-4{
  width: 100%;
  display: table;
}
table.col-2{
    display: table;
}
table.col-4 tr,
table.col-2 tr{
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
table.col-4 tr td{
  width: 25%;
  padding: 0 10px;
  min-width: 100px;
}
table.col-2 tr td{
    width: 50%;
    padding: 0 10px;
    min-width: 100px;
}

table.col-4 tr:last-child,
table.col-2 tr:last-child{
  border-bottom: none;
}
table.col-4 tr td,
table.col-2 tr td{
  border-left: none;
  border-right: 1px solid rgba(0,0,0,0.25);
}
table.col-4 tr td:first-child,
table.col-2 tr:last-child{
  background: var(--gradient);
}
table.col-4 tr td:last-child,
table.col-2 tr td:last-child{
  border-right: none;
}

.page-text-main > p,
.page-text-main > h2,
.page-text-main > h3,
.page-text-main > h4,
.page-text-main > ul,
.page-text-main > ol,
.page-text-main > .house-wrap {
  width: 100%;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.articles_art_text > p,
.articles_art_text > h2,
.articles_art_text > h3,
.articles_art_text > h4,
.articles_art_text > ul,
.articles_art_text > ol,
.articles_art_text > .house-wrap  {
  width: 100%;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.articles_art_text > figure {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.articles_art_text > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-gallery {
  --loc-col-number: 3;
  --loc-col-gap: 15px;
 
  display: flex;
  flex-wrap: wrap;
  gap: var(--loc-col-gap);
  margin: 40px auto;
  max-width: 1280px;
  justify-content: center;
}

@media(max-width: 1024px) {
  .text-gallery {
    --loc-col-number: 2;
  }
}

@media(max-width: 500px) {
  .text-gallery {
    --loc-col-number: 1;
  }
}

.text-gallery .gallery_header {
  flex: 0 0 100%;
}

.text-gallery .gallery_item {
  flex: 0 0 calc((100% / var(--loc-col-number)) - (((var(--loc-col-number) - 1) * var(--loc-col-gap)) / var(--loc-col-number)));
  position: relative;
}

.text-gallery .gallery_item .gallery_img {
  width: 100%;
  aspect-ratio: 420 / 385;
}

.text-gallery .gallery_item .gallery_img a,
.text-gallery .gallery_item .gallery_img picture {
  width: 100%;
  height: 100%;
}

.text-gallery figcaption {
  position: absolute;
  bottom: 20px;
  width: max-content;
  max-width: calc(100% - 40px);
  color: #fff;
  font-size: .8rem;
  line-height: 1.2;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  border-radius: 15px;
  padding: 10px 15px;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  pointer-events: none;
}

.text-gallery figcaption p {
  margin: 0;
}

.text-gallery img {
  transition: var(--transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-gallery .gallery_item:hover img {
  transform: scale(1.05, 1.05);
}

.why-choose-cont {
  padding: 100px 20px;
}

.choose-text-side {
  padding-left: 80px;
  text-align: left;
}

.choose-text-side .customers-slider-wrap .item {
  text-align: left;
  align-items: flex-start;
  position: relative;
}

.customers-slider-wrap .item .client-ref-link {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.customers-slider-wrap.in-item .item .client-ref-link {
  display: none;
}

.customers-slider-wrap .item .client-ref-link img {
  position: relative;
  left: 0;
  transition: ease-in-out .2s;
}

.customers-slider-wrap .item .client-ref-link:hover {
  text-decoration: underline;
}

.customers-slider-wrap .item .client-ref-link:hover img {
  left: 4px;
}

.customers-slider-wrap.clients-list {
  --col-gap: 40px;

  max-width: 100%;
  display: grid;
  grid-template-columns: calc(50% - var(--col-gap) / 2) calc(50% - var(--col-gap) / 2);
  gap: var(--col-gap);
}

.solar-products-wrap {
  --loc-col-number: 3;
  --loc-col-gap: 20px;
 
  display: flex;
  flex-wrap: wrap;
  gap: var(--loc-col-gap);
  justify-content: center;
}

.solar-products-wrap.num_1 {
  --loc-col-number: 1;
}

@media (max-width: 1200px) {
  .solar-products-wrap {
    --loc-col-number: 2;
  }
}

@media (max-width: 768px) {
  .solar-products-wrap {
    --loc-col-number: 1;
  }
}

.solar-products-wrap .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  position: relative;
  height: auto;
  min-height: 450px;
  border-radius: 0px 50px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  align-items: center;
  max-width: 750px;
  flex: 0 0 calc((100% / var(--loc-col-number)) - (((var(--loc-col-number) - 1) * var(--loc-col-gap)) / var(--loc-col-number)));
}

.solar-products-wrap .item figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.solar-products-wrap .item figure .fimg_wrp,
.solar-products-wrap .item figure .fimg_pic {
  width: 100%;
  height: 100%;
}

.solar-products-wrap .item figure .fimg_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solar-products-wrap .item .nzl {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 60px;
  height: auto;
}

.solar-products-wrap .item figure::after {
  background-color: rgba(0, 0, 0, 0.7);
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.solar-products-wrap .item .pre-head {
  font-size: .9rem;
  line-height: 1.15;
  color: var(--yellow);
}

.solar-products-wrap .item .name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height:1.15;
}

.solar-products-wrap .item .item-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.solar-products-wrap .item:hover .inner-btn {
  background-color: rgba(0,0,0,0);
  color: #000;
}

.custom-assembly {
  width: 100%;
  max-width: 575px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto;
  text-align: center;
}

.btns-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.phone-btn {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  gap: 10px;
  border: 1px solid var(--gray-border);
  height: 56px;
}

.phone-btn:hover {
  border-color: #000;
  color: var(--yellow-dark);
}

.product-detail-top {
  padding-top: 60px;
  background-color: var(--gray-bg);
}

.product-top-wrap {
  column-gap: 50px;
  row-gap: 20px;
}

.product-img-wrap {
  position: relative;
}

.product-img-wrap .slider-wrapper {
  width: 100%;
  aspect-ratio: 640 / 480;
}

.product-img-wrap .slider-wrapper .splide__track {
  height: 100%;
}

.product-img-wrap .slider-wrapper .fimg_wrp {
  width: 100%;
  height: 100%;
}

.product-img-wrap .slider-wrapper .fimg_pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.product-img-wrap .slider-wrapper .fvideo_wrp {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

.product-img-wrap .slider-wrapper .fvideo_wrp iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.product-img-wrap .add-imgs-wrap {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-img-wrap figure img {
  mix-blend-mode: darken;
}

.product-img-wrap figure.video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-thumbs-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.product-thumbs-wrap figure {
  flex: 0 0 clamp(40, 20%, 100px);
  flex: 0 1 auto;
  min-width: 40px;
  max-width: 100px;
  cursor: pointer;
  border: 1px solid var(--gray-border);
}

.product-thumbs-wrap figure.video {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumbs-wrap figure img {
  filter: grayscale(.7) opacity(.4);
  transition: var(--transition);
}

.product-thumbs-wrap figure:hover img,
.product-thumbs-wrap figure.is-active img {
  filter: grayscale(0) opacity(1);
}

.product-short-desc {
  /* font-size: .9rem; */
}

.params table,
table.params,
table.ref-info {
  border-collapse: separate;
  
  
  
  font-size: .8rem;
  font-weight: 500;
  width: 100%;
}

.params table td, .params table th{
  border-bottom: 1px solid var(--gray-bg);
}

.params table tr:last-of-type td, .params table tr:last-of-type th{
  border-bottom: 0px solid transparent;
}

.params td,
.params th {
  background-color: #fff;
  padding: 10px 25px;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.3;
}

.params td:first-child,
.params th:first-child {
  width: 180px;
}

.params .hidden {
  display: none;
}

table.ref-info td,
table.ref-info th {
  background-color: var(--gray-bg);
  padding: 10px 25px;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.3;
}

table.ref-info td:first-child,
table.ref-info th:first-child {
  width: 180px;
}

.control-help-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: flex-start;
}

.show-params {
  border: 1px solid var(--yellow-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: 5px 20px;
  color: var(--yellow-dark);
  transition: .3s;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.show-params:hover {
  background-color: var(--yellow);
  color: #000;
}

.show-params::after {
  content: "+";
  display: inline-block;
}

.show-params.less::after {
  content: "-";
}

.help-wrap {
  display: flex;
  background-color: #fff;
  align-items: center;
  gap: 30px;
}

.help-wrap .fimg_img{
  width: 74px;
  height: 80px;
  object-fit: cover;
}

.ref-detail-cont {
  padding-top: 30px;
}

.ref-detail-cont .help-wrap {
  background-color: var(--gray-bg);
}

.ref-detail-cont .help-wrap .fimg_img {
  width: 74px;
  height: auto;
}

.ref-detail-cont .ref-main-wrap.bottom {
  display: grid;
  grid-template-columns: 1fr;
}

.help-wrap .phone-ico {
  position: absolute;
  left: -45px;
  bottom: 0;
}

.person-info-wrap {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: .8rem;
  min-width: 200px;
}

.scroll-menu-wrap {
  position: sticky;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  z-index: 99;
}

.product-detail-menu {
  display: flex;
  padding: 0;
  margin: 0;
}

.product-detail-menu li {
  flex: 1 1 auto;
  list-style-type: none;
  text-align: center;
}

.product-detail-menu li a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  color: #000;
  transition: color var(--transition);
  padding: 10px;
  display: block;
  line-height: 1.3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-menu li a:hover {
  color: var(--yellow-dark);
}

.tech-specs,
.steps-cont .page-text-main {
  padding-top: 80px;
  border-top: 1px solid var(--gray-border);
  margin-top: 80px;
}

.inner-tech-wrap {
  gap: 50px;
  margin-top: 40px;
}

.files-side-wrap h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  margin-bottom: 20px;
}

.files-wrap .item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  background-color: var(--gray-bg);
  margin-bottom: 10px;
  border-radius: 6px;
  transition: background-color var(--transition);
  height: auto;
  min-height: 60px;
}

.files-wrap .item:hover {
  background-color: var(--yellow-dark);
}

.files-wrap .item .img-wrap {
  flex: 0 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.files-wrap .item .img-wrap svg {
  width: 27px;
  height: auto;
}

.files-wrap .item .file_content {
  fill: var(--yellow);
}

.files-wrap .item .file_corner {
  fill: var(--yellow-dark);
}

.files-wrap .item .pdf .file_content {
  fill: #e1142e;
}

.files-wrap .item .pdf .file_corner {
  fill: #EA5A6C;
}

.files-wrap .item .xlsx .file_content {
  fill: #007c00;
}

.files-wrap .item .xlsx .file_corner {
  fill: #31be7d;
}

.files-wrap .item .docx .file_content {
  fill: #285192;
}

.files-wrap .item .docx .file_corner {
  fill: #2c78cf;
}

.files-wrap .item .file-type {
  color: #fff;
  font-size: .4rem;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
}

.files-wrap .item .file-name {
  flex: 1 1 auto;
  font-size: .85rem;
  font-weight: 600;
}

.files-wrap .item .file-size {
  flex: 0 1 90px;
  font-size: .75rem;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
  padding-right: 15px;
}

.files-wrap .item .file-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.videos-wrap {
  gap: 15px;
}

.videos-wrap .d-upper-wrap .video .fvideo_wrp {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

.videos-wrap .d-upper-wrap .video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.videos-wrap .d-bottom-wrap {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.videos-wrap .d-bottom-wrap .d-file {
  color: #888;
}

.czech-made-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--gray-bg);
  padding: 20px;
  margin-top: 40px;
  border-radius: 6px;
}

.inner-tech-wrap .text-wrap :first-child {
  margin-top: 0;
}

.inner-tech-wrap .text-wrap :last-child {
  margin-bottom: 0;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

.faq-container{
  width: 100%;
}

.faq-side-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-wrap .question {
  font-weight: 600;
  border-top: 1px solid var(--gray-border);
  padding-top: 20px;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  line-height: 1.45;
}

.faq-wrap .answer {
  display: none;
}

.faq-wrap .answer_text {
  padding: 30px 0;
}

.faq-wrap .answer .answer_text > *:first-child {
  margin-top: 0;
}

.faq-wrap .answer .answer_text > *:last-child {
  margin-bottom: 0;
}

.faq-wrap .question::after {
  position: absolute;
  right: 7px;
  top: 22px;
  height: 36px;
  width: 36px;
  content: " ";
  background-image: url('/gfx/svg/plus-icon.svg');
  background-size: cover;
  filter: brightness(0);
  opacity: .15;
  transition: var(--transition);
}

.faq-wrap .question:hover::after {
  filter: brightness(1);
  opacity: 1;
}

.faq-wrap .question.open::after {
  background-image: url('/gfx/svg/minus-icon.svg');
  filter: brightness(1);
  opacity: 1;
}

.faq-wrap .faq-item:first-child .question {
  border-top: none;
}

.ref-main-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

.ref-main-wrap .info-side {
  display: flex;
  flex-direction: column;
 /* justify-content: space-between; */
}

.ref-thumbs-wrap {
  display: flex;
  flex-wrap: wrap;
}

.ref-thumbs-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.ref-thumbs-wrap .ref-thumb {
  flex: 1 1 auto;
  max-width: 125px;
  min-width: 90px;
  cursor: pointer;
}

.ref-thumbs-wrap .ref-thumb img {
  opacity: .5;
  transition: opacity var(--transition);
}

.ref-thumbs-wrap .ref-thumb.is-active img,
.ref-thumbs-wrap .ref-thumb:hover img {
  opacity: 1;
}

.ref-detail-cont .steps-wrapper {
  margin-top: 100px;
}

.dotation-logo-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  margin: 50px 0;
  line-height: 1.25;
}

.dotation-logo-wrap .item {
  position: relative;
}

.dotation-logo-wrap .item:nth-child(2)::before {
  position: absolute;
  left: -15px;
  height: 100%;
  width: 1px;
  top: 0;
  background-color: #DDD;
  content: " ";
}

.dotation-logo-wrap .item:nth-child(2)::after {
  position: absolute;
  right: -15px;
  height: 100%;
  width: 1px;
  top: 0;
  background-color: #DDD;
  content: " ";
}

.dotation-logo-wrap .img-wrap {
  display: flex;
  height: 85px;
  height: 110px;
  align-items: center;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
}

.btn-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.contact-wrap {
  column-gap: 80px;
}

.contact-wrap .text-wrap a {
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-wrap .address .text-wrap a {
  font-size: .7rem;
}

.contact-wrap h2 {
  text-align: left;
  padding: 0;
}

.contact-wrap h2::before,
.contact-wrap h2::after {
  display: none;
}

.contact-info-wrap .item {
  display: flex;
  gap: 15px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-border);
}

.contact-info-wrap .item:last-child {
  border-bottom: 1px solid var(--gray-border);
}

.contact-info-wrap .item .img-wrap {
  flex: 0 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info-wrap .item p {
  margin: 0;
}

.right-contact {
  padding: 50px 80px;
  position: relative;
  border-radius: 0px 50px;
  overflow: hidden;
  color: #fff;
  background-image: url('/gfx/img/form-bg.jpg');
  background-size: cover;
}

.right-contact::before {
  background-color: rgba(0,0,0,0.95);
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.cform_item {
  margin-bottom: 15px;
}

.form {
  padding: 10px 15px;
  background-color: rgba(255,255,255,.9);
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid;
}

.form:focus {
  border-color: var(--yellow);
  outline: none;
  background-color: rgba(255,255,255,1);
}

.form.form_textarea {
  resize: vertical;
  height: 100px;
}

.cform_item_type_submit {
  display: flex;
  justify-content: flex-end;
}

.pop-up-form .cform_item_type_submit{
    width: fit-content;
    margin-left: auto;
}
.pop-up-form .cform_cleartext {
    width: 66.666%;
    display: inline-flex;
    line-height: 1.4;
    position: absolute;
    margin-bottom: 15px;
    font-size: 14px;
}

.cform_form_submit{
    background: var(--gradient);
}

.legal-info {
  font-size: .7rem;
  max-width: 260px;
  margin-top: 40px;
}

.page-content.top.contact-cont {
  padding-bottom: 160px;
}

.map-cont {
  position: relative;
}

.map-link {
    display: block;
    width: 100%;
}
.map-link img{
    margin: 0 auto;
    width: 100%;
}

.map-cont .benefits-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*
.nzu-banner {
  display: flex;
  margin: 50px 0;
}

 */

.btn-text{
    margin: 30px auto 50px auto;
}


.banner-grant{
    display: flex;
    margin: 50px 0;
    padding: 30px 50px;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}
.banner-grant-text{
    font-size: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-wrap: balance;
}
.banner-grant-text p{
    margin: 0;
    line-height: 1.4;
}
.banner-grant h2 {
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding: 0;
    text-align: left;
    font-size: 3.4rem;
    line-height: 1.2;
}
.banner-grant h2::before,
.banner-grant h2::after {
    display: none;
}
.banner-grant .black{
    color: #000;
}
.banner-grant .btn{
    background: #fff;
    position: relative;
    margin-left: auto;
    margin-top: auto;
    z-index: 3;
    text-wrap: nowrap;
}
.banner-grant .solar{
    position: absolute;
    top: -374px;
    right: -40px;
    mix-blend-mode: multiply;
}
.banner-grant .nzu{
    object-fit: contain;
    margin: 0 90px;
    width: 210px;
    z-index: 1;
}

.banner-grant:hover .btn {
    color: var(--yellow);
}
.banner-grant:hover .btn::before {
    height: 100%;
}



.solar-products-wrap.in-cat .vacat_items img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* House schema */
.house-wrap {
  position: relative;
}

.house-wrap figcaption {
  text-align: center;
  font-style: italic;
}

.points-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.point-item {
  position: absolute;
}

.point-item.one {
  left: 70%;
  top: 30%;
}

.point-item.two {
  left: 19%;
  top: 72%;
}

.point-item.three {
  left: 30%;
  top: 62%;
}

.point-item.four {
  left: 39%;
  top: 71%;
}

.point-item.five {
  left: 38%;
  top: 50%;
}

.point-item.six {
  left: 51%;
  top: 58%;
}

.point-item.seven {
  left: 23%;
  top: 34%;
}

.point-item.seven-b {
  left: 41%;
  top: 35%;
}

.point-circle {
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
}

.point-circle-inner {
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  position: relative;
  z-index: 5;
}

.point-circle::before {
  width: 100%;
  height: 100%;
  content: " ";
  animation-name: point-pulse;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  background-color: var(--yellow);
  border-radius: 50%;
  opacity: .7;
  z-index: 1;
}

@media (max-width: 900px) {
  .point-circle::before {
    display: none;
  }

  .point-circle {
    width: 26px;
    height: 26px;
  }

  .point-circle-inner {
    font-size: .8rem;
  }
}

@keyframes point-pulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: .9;
    background-color: var(--yellow);
    background-color: #000;
  }
  80% {
    width: 200%;
    height: 200%;
    opacity: 0;
    background-color: var(--yellow);
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: var(--yellow);
  }
}

.point-content-wrap {
  position: absolute;
  top: 100%;
  left: -25px;
  overflow: hidden;
  height: 0;
  transition: var(--transition);
}

.point-item.one .point-content-wrap {
  left: auto;
  right: -25px;
}

.point-item.one .point-inner-content::after {
  left: auto;
  right: 25px;
}

.point-item.one .point-inner-content::before {
  left: auto;
  right: 25px;
}

.point-inner-content {
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  font-size: .7rem;
  box-shadow: 0px 1px 2px rgba(11,29,58,0.3);
  border: 2px solid #000;
  width: 80vw;
  max-width: 450px;
  position: relative;
  top: 18px;
}

.point-inner-content::before {
  content: " ";
  position: absolute;
  left: 25px;
  bottom: calc(100% + 2px);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 18px 15px;
  border-color: transparent transparent #000000 transparent;
  transform: rotate(0deg);
}

.point-inner-content::after {
  content: " ";
  position: absolute;
  left: 25px;
  bottom: calc(100% - 1px);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 18px 15px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(0deg);
}

.point-name {
  font-weight: 600;
  font-size: .85rem;
}

.point-place {
  font-style: italic;
}

.point-inner-content > *:first-child {
  margin-top: 0;
}

.point-inner-content > *:last-child {
  margin-bottom: 0;
}

.point-close {
  position: absolute;
  top: 10px;
  right: 5px;
  opacity: .4;
  transition: var(--transition);
  cursor: pointer;
  z-index: 9;
  width: 26px;
  height: auto;
}

.point-close:hover {
  opacity: 1;
}

.form-label {
  position: absolute;
  font-size: .85rem;
  color: #fff;
  transition: ease-in-out .3s;
  opacity: 0;
  pointer-events: none;
  padding: 2px 6px;
  background-color: #000;
  left: 5px;
  transform: translateY(-50%);
  top: 0;
  line-height: 1;
  border-radius: 4px;
}

.form-label.visible {
  font-size: .85rem;
  opacity: 1;
  pointer-events: auto;
}







.customers-slider-wrap.bubbles .person-ref-outer {
  padding-left: 40px;
}

.customers-slider-wrap.bubbles .person-ref-outer .item {
  padding: 40px;
  border-radius: 16px;
  border-top-left-radius: 0;
  border: 1px solid var(--gray-border);
  background-color: #fff;
}

.customers-slider-wrap.bubbles .person-ref-outer .item::before {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 35px 0px 0 40px;
  border-color: var(--gray-border) transparent transparent transparent;
  transform: rotate(0deg);
  position: absolute;
  right: 100%;
  top: -1px;
  content: " ";
}

.customers-slider-wrap.bubbles .person-ref-outer .item::after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 33px 0px 0 38px;
  border-color: #fff transparent transparent transparent;
  transform: rotate(0deg);
  position: absolute;
  right: calc(100% - 1px);
  top: 0;
  content: " ";
}

.customers-slider-wrap.bubbles .item {
  align-items: flex-start;
  text-align: left;
}

.customers-slider-wrap.bubbles .item .client-ref-link {
  right: 40px;
  bottom: 40px;
}

.customers-slider-wrap .item .person-info {
  padding-right: 40px;
}

@media(max-width: 1279px) {
  .customers-slider-wrap.clients-list {
    --col-gap: 20px;
  }

  .customers-slider-wrap.bubbles .person-ref-outer .item {
    padding: 20px;
  }

  .customers-slider-wrap.bubbles .item .client-ref-link {
    bottom: 20px;
    right: 20px;
  }

  .customers-slider-wrap.bubbles .item .person-info {
    padding-right: 60px;
  }
}

@media(max-width: 1023px) {
  .customers-slider-wrap.clients-list {
    display: flex;
    flex-direction: column;
  }

  .customers-slider-wrap.bubbles .person-ref-outer {
    padding-left: 25px;
  }

  .customers-slider-wrap.bubbles .person-ref-outer .item::before {
    border-width: 30px 0px 0 25px;
  }

  .customers-slider-wrap.bubbles .person-ref-outer .item::after {
    border-width: 28px 0px 0 23px;
  }
}









/* Footer */
.top-footer-cont .footer-left {
  background: var(--gradient);
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  text-align: center;
}

.top-footer-cont .footer-claim {
  color: #fff;
  line-height: 1.15;
  text-transform: uppercase;
}

.top-footer-cont .footer-claim.big {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.top-footer-cont .footer-claim.big .black {
  color: #000;
}

.top-footer-cont .footer-claim.small {
  font-size: 2.8rem;
}

.top-footer-cont .footer-right {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding: 100px 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.footer-cta-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-cta-links .btn {
  font-size: 1rem;
  height: 55px;
}

.footer-cta-links .footer-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 800;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  padding: 0 25px;
  transition: color var(--transition);
  height: 55px;
}

.footer-cta-links .footer-phone:hover {
  color: var(--yellow-dark);
}

footer {
  position: relative;
  padding: 0 20px;
}

footer::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 25px;
  background-color: #000;
  content: " ";
}

.footer-top {
  padding: 30px 0;
  padding-top: 55px;
  border-bottom: 1px solid var(--gray-border);
    display: flex;
}

.footer-top-inner {
  display: flex;
    gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.socials-wrap {
  display: flex;
    justify-content: flex-end;
  gap: 20px;
    margin-top: auto;
}

.socials-wrap a {
  border: 1px solid var(--gray-border);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  position: relative;
}

.socials-wrap a::before {
  background-color: #fff;
  transition: opacity var(--transition);
  content: " ";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.bottom_menu,
#footer_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
    flex-wrap: wrap;
  gap: 30px;
    row-gap: 10px;
  margin: 0;
  padding: 0;
}

.bottom_menu li,
#footer_menu li {
  list-style-type: none;
}

.bottom_menu a {
  color: #000;
  font-weight: 500;
  font-size: .85rem;
}

#footer_menu a {
  color: #000;
}

.socials-wrap a:hover::before {
  opacity: 0;
}

.socials-wrap a img {
  position: relative;
}

.footer-bottom {
  padding: 30px 0 90px 0; /* 90px for fixed form */
  font-size: .7rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comerto a {
  display: flex;
}

.comerto a img {
  opacity: .4;
  transition: opacity var(--transition);
}

.comerto a:hover img {
  opacity: 1;
}


.logo-claim-wrap a{
    width: fit-content;
    display: block;
}
.logo-claim-wrap .claim{
    max-width: 400px;
    display: block;
    margin: 20px 0;
}

footer .logo-claim-wrap .claim {
  font-size: 14px;
}

.socials-menu-wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;

  padding: 20px 0;
  overflow: hidden;
}

/* Pop-up */
.pop-up-form {
  position: fixed;
  width: 100%;
  height: 101vh;
  display: none;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  z-index: 999;
}

.pop-up-bg {
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.pop-up-form .form-wrap {
  height: 90%;
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.pop-up-form .form-wrap .form-inner-wrap {
  height: auto;
  width: 100%;
  max-width: 600px;
  max-height: 100%;
  overflow: auto;
  pointer-events: auto;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.pop-up-form .form-wrap .form-inner-wrap .cform_container {
  padding: 50px;
  padding: 26px;
  background-image: url('/gfx/img/form-bg.jpg');
  background-size: cover;
  color: #fff;
}

.pop-up-form .form-wrap .form-inner-wrap .cform_container::before {
  background-color: rgba(0,0,0,0.95);
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.pop-up-form .form-wrap .form-inner-wrap .bg-for-close {
  position: absolute;
  background-color: #000;
  width: 30px;
  height: 30px;
  display: block;
  right: 15px;
  right: 58px;
  top: 15px;
  top: 33px;

    right: 0;
    top: 0;
    position: relative;
    transition: .3s background-color;
}

.pop-up-form .form-wrap .close-btn {
  z-index: 9;
  cursor: pointer;
  position: absolute;
  width: 38px;
  height: 38px;
  right: 26px;
  top: 30px;
}

.pop-up-form .form-wrap .close-btn .inner-close,
.pop-up-form .form-wrap .close-btn .inner-close-hover {
  opacity: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  background-color: #fff;
  clip-path: url('#close-x-mask');
  z-index: 5;
}

.pop-up-form .form-wrap .close-btn .inner-close-hover {
  background: var(--gradient);
  z-index: 1;
}

.pop-up-form .form-wrap .close-btn:hover .inner-close {
  opacity: 0;
}

.svg-wrap {
  height: 0;
  overflow: hidden;
}

/*
.pop-up-form .form-wrap .form-inner-wrap .close-form {
  position: absolute;
  top: 5px;
  top: 25px;
  right: 5px;
  right: 50px;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
  z-index: 8;
}

 */

.pop-up-form .form-wrap .form-inner-wrap h2 {
  font-size: 40px;
  font-size: 32px;
  margin-top: 0;
  margin-top: 3px;
  color: #fff;
  position: relative;
}

/* SPECIAL */
.pop-up-form .cform_item_id_20 ,
.pop-up-form .cform_item_id_13 {
  margin-top: 40px;
}

.pop-up-form .form {
  min-height: 50px;
}

.pop-up-form .cform_cleartext.select-info_item {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 50px;
  background-image: url('/gfx/svg/info-icon-white.svg');
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: 0 4px;
}

.pop-up-form .cform_form_submit::before {
  position: absolute;
  content: " ";
  bottom: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #000;
  opacity: 1;
  transition: opacity var(--transition);
}

.pop-up-form .cform_form_submit:hover::before {
  height: calc(100% - 8px);
  opacity: 0;
}

.pop-up-form .cform_form_submit input {
  color: var(--yellow);
  transition: color var(--transition);
}

.pop-up-form .cform_form_submit input:hover {
  color: #000;
}




/* POP-UP OZNÁMENÍ */
.pop-up-news{
  position: fixed;
  width: 100%;
  height: 101vh;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  z-index: 999;
  display: none;
}
.form-inner-wrap > *:first-child {
  margin-top: 0;
}
.form-inner-wrap > *:last-child{
  margin-bottom: 0;
}
.pop-up-news.visible{
  display: flex;
}
.pop-up-news .form-wrap{
  background: #fff;
  border-radius: 5px;
  padding: 60px;
  border: 1px solid var(--yellow);
  max-width: 700px;
  margin: 0 10px;
}
.pop-up-news .form-wrap .bg-for-close {
  position: absolute;
  background-color: #000;
  width: 30px;
  height: 30px;
  display: block;
  right: 24px;
  top: 24px;
}

.pop-up-news .form-wrap .close-form {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
  z-index: 8;
  line-height: 1;
}

.pop-up-news .form-inner-wrap{
  overflow: hidden;
}


.id_page_10 #menu_5_a.sub_0_a.parent::after{
  width: 0;
}
.id_page_10 #menu_5_a.sub_0_a.parent:hover::after{
  width: 100%;
}


.ui-datepicker {
  background-color: #fff;
  font-size: 15px;
  padding: 10px;
}

.ui-datepicker-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ui-datepicker-title {
  flex: 0 0 100%;
}

.img_bcg {
  height: 150px;
  overflow: hidden;
}

.img_bcg .fimg_wrp,
.img_bcg .fimg_pic {
  height: 100%;
  width: 100%;
}

.img_bcg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media(max-width: 1500px) {
  header {
    height: 75px;
    padding: 0 20px;
  }
  header .sub_0_a {
    font-size: 14px;
    height: 75px;
  }

  .phone {
    font-size: 14px;
  }

  header .btn {
    padding: 10px 25px;
  }

  header .logo-wrap img {
    max-width: 110px;
    height: auto;
  }

  body {
    padding-top: 75px;
  }

  .top-hp-claim .number {
    font-size: 7rem;
  }

  .top-hp-claim .uspora {
    font-size: 4rem;
  }

  .scroll-menu-wrap {
    top: 75px;
  }

  .top-footer-cont .footer-claim.big {
    font-size: 4rem;
  }

  .top-footer-cont .footer-claim.small {
    font-size: 2rem;
  }

  .footer-cta-links .btn,
  .footer-cta-links .footer-phone {
    font-size: 1rem;
    line-height: 1;
  }
}

@media(max-width: 1279px) {

    .banner-grant .nzu{
        margin: 0 45px;
        width: 160px;
    }
    .banner-grant h2{
        font-size: 3rem;
    }


  .benefits-wrap .item {
    font-size: 1rem;
    height: 200px;
  }

  .products-wrap .item,
  .products-wrap .item.custom {
    padding: 35px;
  }

  header .sub_0_a {
    font-size: 13px;
  }

  header .phone {
    display: none;
  }

  .page_submenu li a .inner-text, .full_care_submenu li a .inner-text, .submenu li a .inner-text{
    font-size: .95rem;
  }

  .product-detail-menu li a {
    font-size: .8rem;
  }

  .czech-made-wrap {
    font-size: .85rem;
  }

  .faq-wrap .answer {
    font-size: .85rem;
  }

  .control-help-wrap {
    flex-direction: column;
    gap: 10px;
  }
}

@media(max-width: 1100px) {
    header .sub_0{
        gap: 20px;
    }
}








/* Mobile CSS */



@media(max-width: 1400px) {
  .banner-grant .solar{
    right: -374px;
  }
}


@media(max-width: 1200px) {
  .form-fixed{
    max-width: 250px;
  }
  .form-fixed .cform_container .cform_name,
  .form-fixed .cform_container form {
    padding: 10px;
  }

}


@media(max-width: 1024px) {
  html {
    font-size: 15px;
  }


  .banner-grant{
    padding: 50px;
  }

  .main-wrap {
    overflow: hidden;
  }

  .top-hp-cont {
    max-height: 700px;
    min-height: unset;
  }

  .benefits-wrap .item {
    height: 160px;
  }

  #small_menu {
		font-size: 18px;
		font-weight: 700;
		background-color: transparent;
		border: none;
		outline: none;
    display: block;
    width: 45px;
    height: 45px;
    z-index: 9;
    cursor: pointer;
    transition: ease-in-out .5s;
    border: 1px solid #000;
    background-color: #000;
    border-radius: 3px;
	}

  #small_menu .line.first {
		transform: rotate(0deg);
		top: 15px;
	}
	#small_menu .line.second {
	  display: block;
	  top: 23px;
	}
	#small_menu .line.third {
	  transform: rotate(0deg);
	  top: 31px;
	}
	#small_menu .line {
	  width: 25px;
	  height: 2px;
	  background-color: #fff;
	  position: absolute;
	  right: 10px;
	  transition: all 0.3s;
	}
	#small_menu.opened .line.first {
	  top: 22px;
	  transform: rotate(45deg);
	}
	#small_menu.opened .line.second {
	  display: none;
	}
	#small_menu.opened .line.third {
	  top: 22px;
	  transform: rotate(-45deg);
	}

  .header-cta-wrap {
    gap: 15px;
  }

  header .menu-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    border-bottom: 1px solid var(--gray-border);
  }

  header .sub_0 {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  header .phone {
    display: flex;
  }

  header .phone .number {
    display: none;
  }

  header .sub_0_a {
    height: 50px;
  }

  .top-hp-claim .az {
    font-size: 2.7rem;
  }

  .top-hp-claim .number {
    font-size: 4.5rem;
  }

  .top-hp-claim .number {
    letter-spacing: -.4rem;
  }

  .top-hp-claim .uspora {
    font-size: 3rem;
  }

  .top-hp-claim .main-text {
    font-size: 1.5rem;
  }

  .benefits-wrap.hp {
    grid-template-columns: repeat(3,1fr);
  }

  .top-hp-claim {
    width: 400px;
  }

  .about-us-inner .text {
    padding-left: 30px;
  }

  .about-us-inner .text h2 {
    font-size: 1.6rem;
  }

  .steps-wrapper ul {
    flex-direction: column;
    display: flex;
    gap: 50px;
    margin-top: 40px;
  }

  .steps-wrapper ul li::before {
    font-size: 1.2rem;
  }

  .steps-wrapper ul li::after {
    top: calc(100% - 20px);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .lines-wrap {
    display: none;
  }

  .products-wrap,
  .ref-list {
    grid-template-columns: 1fr 1fr;
  }

  .products-wrap .item {
    min-height: 320px;
  }

  .ref-list .item .ref-name {
    font-size: 1rem;
  }

  .ref-list .item .ref-name {
    left: 0;
    bottom: 15px;
    padding: 0 15px;
  }

  .top-footer-cont .footer-claim.big {
    font-size: 2.5rem;
  }

  .footer-cta-links {
    flex-direction: column;
  }

  /*
  .footer-top-menu-wrap {
    flex: 0 0 100%;
  }

   */

  .socials-menu-wrap{
    height: auto;
    padding: 0;
  }

  .footer-top-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .logo-claim-wrap a{
    margin: 0 auto;
  }
  .socials-wrap{
    justify-content: center;
  }

  .bottom_menu {
    justify-content: space-between;
    margin-top: 25px;
  }

  .ref-list .item .fimg_img {
    object-fit: cover;
    width: 100%;
  }

  .page_submenu, .full_care_submenu {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .benefits-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .choose-text-side {
    padding-left: 25px;
  }

  .id_page_10 .page_submenu li:first-child {
    grid-column: 1;
  }

  .product-top-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .def-section.left-head h2, .def-section.left-head h1,
  .def-section h2 {
    padding: 15px 0;
  }

  .def-section {
    padding: 40px 20px;
    scroll-margin: 75px;
  }

  .faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .faq-wrap .question::after {
    top: 13px;
  }

  .inner-tech-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .faq-wrap .faq-item:first-child .question {
    border-top: 1px solid var(--gray-border);
  }

  .scroll-menu-wrap {
    display: none;
  }

  .download-wrap,
  .articles_small_container, .articles_list_container {
    grid-template-columns: 1fr 1fr;
  }

  .articles_small_more {
    grid-column: span 2;
  }

  .contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .contact-info-wrap .item {
    padding: 10px 0;
  }

  .legal-info {
    font-size: .9rem;
    margin-top: 15px;
  }

  .map-cont .benefits-wrap {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0);
    padding: 30px 20px;
  }

  .map-cont .map-link {
    height: 400px;
    display: block;
    width: 100%;
  }

  .map-cont .map-link img {
    object-fit: cover;
    display: block;
    height: 100%;
    width: auto;
  }

  .map-cont {
    display: flex;
    flex-direction: column-reverse;
  }

  .page-content.top.contact-cont {
    padding-bottom: 40px;
  }

  .ref-main-wrap {
    display: flex;
    flex-direction: column;
  }

  .img_bcg {
    /* height: 90px; */
    overflow: hidden;
  }



  .banner-grant h2{
    padding: 0;
    font-size: 2.5rem;
  }
  .banner-grant-text{
    font-size: 16px;
  }
}


@media(max-width: 950px) {
  .banner-grant{
    padding: 50px 30px;
  }
}

@media(max-width: 800px) {
  .banner-grant .nzu{
    margin: 0 20px;
    width: 120px;
  }

  .benefits-wrap.hp .item {
    transform: translateY(0);
  }

  .claim-cont-wrap {
    display: flex;
    justify-content: center;
    margin-top: -30px;
    margin-bottom: 30px;
  }

  .top-hp-claim {
    min-width: 300px;
  }
}



@media(max-width: 767px) {


  .pop-up-news .form-wrap{
    padding: 70px 20px;
  }


  header {
    padding: 0 10px;
  }

  .benefits-wrap.hp {
    grid-template-columns: 1fr 1fr;
  }

  .col-2,
  .products-wrap, .ref-list,
  .download-wrap, .articles_small_container, .articles_list_container {
    display: flex;
    flex-direction: column;
  }

  .about-us-cont .page_image_main_img {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .about-us-inner .text {
    padding-left: 0;
    margin-top: 40px;
  }

  .socials-wrap {
    margin-top: 30px;
  }

  .bottom_menu,
  .page_submenu, .full_care_submenu {
    display: flex;
    flex-direction: column;
  }

  .footer-top-inner {
    justify-content: center;
  }

  .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .choose-text-side {
    padding-left: 0;
    margin-top: 40px;
  }

  header .btn {
    padding: 10px 15px;
  }

  .top-hp-claim {
    width: 66%;
    padding: 25px 20px;
    padding-bottom: 60px;
  }

  .top-hp-claim .uspora {
    font-size: 2rem;
  }

  .top-hp-claim .az {
    font-size: 1.7rem;
  }

  .top-hp-claim .number {
    font-size: 2.7rem;
  }

  .top-hp-claim .main-text {
    font-size: 1.1rem;
  }

  .top-hp-cont .dotace {
    top: auto;
    bottom: 0;
    transform: translate(40%, 40px);
    z-index: 9;
    width: 130px;
  }

  .right-contact {
    padding: 20px;
  }

  .pop-up-form .form-wrap .close-btn{
    right: 15px;
  }

  .pop-up-form .form-wrap .form-inner-wrap .close-form{
    right: 15px;
    top: 15px;
  }
  .pop-up-form .form-wrap .form-inner-wrap .bg-for-close{
    right: 24px;
  }

  .pop-up-form .form-wrap .form-inner-wrap h2 {
    font-size: 2rem;
    margin-top: .5em;
  }

  .top-footer-cont .footer-left {
    padding: 40px;
  }

  .top-footer-cont .footer-claim.big {
    font-size: 2rem;
  }

  header .sub_0_a::after {
    height: 3px;
  }

  .img_bcg {
    /* height: 60px; */
    overflow: hidden;
  }

  .top-hp-cont.new {
    flex-direction: column;
  }

  .top-hp-claim-side, .top-hp-cont.new .slider-wrapper {
    width: 100%;
    flex: 0 0 auto;
  }

  .top-hp-claim-side {
    height: auto;
  }

  .claim-side-inner {
    padding-top: 120px;
  }

  .top-hp-cont .slider-wrapper {
    height: auto;
  }

  .top-hp-cont.new {
    min-height: unset;
    max-height: unset;
    height: auto;
  }

  .top-hp-cont.new .splide__pagination {
    bottom: 20px;
  }
}


@media (max-width: 700px){
  .form-fixed{
    right: 10px;
  }

  .banner-grant{
    flex-direction: column;
    padding: 30px 25px;
  }
  .banner-grant .nzu{
    margin: 30px auto;
    width: 160px;
  }
  .banner-grant .btn{
    margin: 0 auto;
  }
  .banner-grant-text,
  .banner-grant h2 {
    text-align: center;
  }
  .banner-grant .solar{
    right: -200px;
    top: unset;
    bottom: 0;
  }

}

@media(max-width: 550px){
  .pop-up-form .form-wrap .form-inner-wrap h2{
    margin-top: 1.5em;
    margin-top: 0;
    font-size: 1.2rem;
  }
}


@media(max-width: 500px){
  .pop-up-form .cform_cleartext{
    position: relative;
    width: 100%;
  }

  .btns-wrap .btn{
    padding: 15px 20px;
  }
  .phone-btn{
    padding: 0 10px;
    font-size: 0.9rem;
  }
  .phone-btn img{
    width: 14px;
  }

  .dotation-logo-wrap{
    display: flex;
    flex-direction: column;
  }
  .dotation-logo-wrap .item:nth-child(2){
    padding: 30px 0;
  }
  .dotation-logo-wrap .item:nth-child(2)::before {
    height: 1px;
    width: 100%;
    left: 0;
  }
  .dotation-logo-wrap .item:nth-child(2)::after {
    height: 1px;
    width: 100%;
    top: unset;
    bottom: 0;
    right: 0;
  }

  header .btn {
    padding: 10px;

    font-size: .7rem;
  }

  .claim-side-inner {
    padding: 30px 20px;
    padding-top: 120px;
  }

  .claim-text-wrap {
    margin-bottom: 40px;
  }

  .claim-header {
    font-size: 2rem;
  }

  .claim-text-prepare ul li, .claim-item {
    font-size: 1.7rem;
  }
}








.producttop-block{
  display:flex;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  
  line-height: 1.2;
  
  border: 1px solid #ddd;
  background-color: #FFFFFF;
  
  padding: 1.5rem;
  margin: 1.5rem 0;
  
}


.producttop-block .tags{
  display:flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.producttop-block .tag{
  background-color: #f0f0f0;
  line-height: 1.2;
  padding: 0.25em 0.5em;
  font-weight: 600;
  text-transform: uppercase;
}
.producttop-block .tag.supplier{
  text-transform: none;
}


.producttop-block .priceline, .producttop-block .contactline{
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


.producttop-block .pricebox{
  display:flex;
  gap: 0.25rem;
  flex-direction: column;
  width: max-content;  
  align-items: flex-start;
  line-height: 1.2;
}

.producttop-block .pricebox .price{
  font-weight: 700;
  font-size: 1.4rem;
}


.producttop-block .delivery{
  margin-top: 0.5rem;
  line-height: 1.2;
  padding: 0.15em 0.5em;
  font-weight: 600; 
}
.producttop-block .delivery.available{
  background-color: #e6f9eb;
  color: #00ba31;
}


.producttop-block .text > p{
  margin-top: 0px;

}
.producttop-block .text p:last-child{
  margin-bottom: 0px;
}


.card-person{
  display:flex;
  flex-wrap: nowrap;
  gap: 1em;
  
  line-height: 1.2;
  
}
.card-person .person-face{
  border-radius: 100%;
  overflow: hidden;
  height: 5rem;
  aspect-ratio: 1 / 1;
  
}
.card-person .person-face img{
    
}
.card-person .infoblock{
  display:flex;
  gap: 0rem;
  flex-direction: column;  
}
.card-person .spacer{
  flex-grow: 1;
}
.card-person .name{
  font-weight: 700;
}

.card-person .position{
  font-style: italic;
  font-size: 0.9rem;
}

.card-person .tel a{
  display:inline-flex;
  gap: 0.5em;
}





.producttop-block button{
  display: inline-flex;
  align-items: center;
  gap: 1em;
  
  padding: 0.5em 1em;
  transition: var(--transition);
  font-size: 1rem;
  border: 1px solid var(--gray-border);
  color: #000;
  text-decoration: none;
  line-height: 1.2;
  
  background: #FFFFFF;
  cursor: pointer;
  
  position: relative;
}
.producttop-block button:hover{
  background: var(--gradient); 
}



.producttop-block .btn, .producttop-block button{
  box-shadow: 0px 2px 5px rgba(0,0,0,0.07);
}




































/* **************************************** LEAVE THIS LINE AND DONT CHANGE ANYTHING AFTER  ************************************* */


/***END_INLINED***/


















/* This must remain here, but will not be shown */
.nothing_to_loose{ content:" Pokud si toto prohlizis, kontaktuj Comerto, urcite pro tebe misto najdeme ! "; }























/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwoT9mIzF59cK0sL.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCm3FwrK3iLTcvnUwQT9mIzF59cKw.woff2) format('woff2');
  unicode-range:ÿ +0羇0-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcvsYwYZ90A2N59MKw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCo3FwrK3iLTcviYwYZ90A2N58.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}