@charset "UTF-8";
/*
 Selector generator
 @access public
 @param {String} property - Css Property
 @param {String} min - Minimum value in px
 @param {String} max - Maximum value in px
 @requires $property, $min, $max
*/
/*
 Decor generator
 @access public
 @param {String} orientation - Orientation
 @param {String} color - Color in hex
 @param {String} min - Minimum font size value in px
 @param {String} max - Maximum font size value in px
 @requires $orientation, $color, $min, $max
*/
/*
 Responsive breakpoint manager
 @access public
 @param {String} $breakpoint - Breakpoint
 @requires $breakpoints
*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.heading-1 {
  font-size: 57px;
  line-height: 76px;
  font-weight: 700;
  letter-spacing: 1.14px;
}
@media (max-width: 768px) {
  .heading-1 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0.8px;
  }
}

.heading-2 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0.72px;
}
@media (max-width: 768px) {
  .heading-2 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.58px;
  }
}
.heading-2-medium {
  font-size: 36px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0.72px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .heading-2-medium {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.58px;
  }
}

.heading-4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 0.36px;
}
@media (max-width: 768px) {
  .heading-4 {
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0px;
  }
}
.heading-4-medium {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 0.36px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .heading-4-medium {
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0px;
  }
}

.heading-5 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.36px;
}
@media (max-width: 768px) {
  .heading-5 {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.btn-red {
  border-radius: 25px;
  padding: 12px 31px 13px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  background-color: #D8222B;
  color: #fff;
}
@media (max-width: 768px) {
  .btn-red {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
.btn-red:hover {
  background-color: #C7111A;
}

button.btn-red {
  outline: 0;
  border: none;
  cursor: pointer;
  font-family: poppins, sans-serif;
  transition: 0.25s;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.26px;
}

.btn-scroll {
  font-size: 11px;
  line-height: 15px;
  position: absolute;
  font-family: sofia-pro, sans-serif;
  padding-bottom: 40px;
  color: #000;
  text-decoration: none;
}
.btn-scroll:before {
  content: "";
  font-family: icomoon;
  font-size: 26px;
  line-height: 1;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 13px);
  animation: bounce 2s infinite;
}

.btn-swiper {
  position: relative;
  cursor: pointer;
  height: 50px;
}
.btn-swiper:before {
  font-family: icomoon;
  font-size: 60px;
  line-height: 50px;
  position: absolute;
  top: 0px;
  transition: 0.25s;
}
.btn-swiper.btn-prev:before {
  content: "";
  left: 0px;
}
.btn-swiper.btn-prev:hover:before {
  transform: translateX(-3px);
}
.btn-swiper.btn-next:before {
  content: "";
  right: 0px;
}
.btn-swiper.btn-next:hover:before {
  transform: translateX(3px);
}

.btn-arrow {
  color: #D8222B;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  font-family: sofia-pro, sans-serif;
  position: relative;
  padding-right: 12px;
}
.btn-arrow:hover:before {
  transform: translateX(3px);
}
.btn-arrow:before {
  content: url("../images/svg/arrow_red.svg");
  position: absolute;
  top: 0px;
  right: 0px;
  transition: 0.25s;
}

.link-plus {
  color: #D8222B;
  font-weight: 700;
}

form label {
  font-size: 9px;
  line-height: 10px;
  letter-spacing: 0.18px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 23px;
  width: 100%;
}
form br {
  display: none;
}

input:not(.wpcf7-submit) {
  padding: 8px 0px;
  border: none;
  border-bottom: 1px solid #000;
  outline: 0;
  font-family: poppins, sans-serif;
  width: 100%;
  background-color: transparent;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.26px;
  font-family: poppins, sans-serif;
}

textarea {
  padding: 8px 0px;
  border: none;
  border-bottom: 1px solid #000;
  height: 74px;
  resize: none;
  outline: 0;
  box-sizing: border-box;
  font-family: poppins, sans-serif;
  width: 100%;
  background-color: transparent;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.26px;
  font-family: poppins, sans-serif;
}

.wpcf7-form-control-wrap {
  margin-top: 5px;
  display: block;
}

.acceptance-694 {
  margin-top: 5px;
  margin-bottom: 14px;
  display: block;
}

::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.wpcf7-submit {
  border-radius: 25px;
  padding: 12px 31px 13px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  background-color: #D8222B;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}
@media (max-width: 768px) {
  .wpcf7-submit {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
.wpcf7-submit:hover {
  background-color: #C7111A;
}

.wpcf7-list-item {
  margin: 0px;
}

.wpcf7-not-valid-tip {
  font-size: 9px;
  margin-top: 6px;
}

[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

[type=checkbox]:not(:checked) + span, [type=checkbox]:checked + span {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
  font-size: 9px;
  line-height: 18px;
  letter-spacing: 0.18px;
  font-weight: 400;
}

[type=checkbox]:not(:checked) + span a, [type=checkbox]:checked + span a {
  color: #000;
}

[type=checkbox]:not(:checked) + span:before,
[type=checkbox]:checked + span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: transparent;
  box-sizing: border-box;
}

.wpcf7-not-valid [type=checkbox]:not(:checked) + span:before,
.wpcf7-not-valid [type=checkbox]:checked + span:before {
  border-color: #dc3232;
}

[type=checkbox]:not(:checked) + span:after, [type=checkbox]:checked + span:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  width: 10px;
  height: 10px;
  background-color: #D8222B;
  transition: all 0.2s;
  line-height: 0;
}

[type=checkbox]:not(:checked) + span:after {
  opacity: 0;
  transform: scale(0);
}

[type=checkbox]:checked + span:after {
  opacity: 1;
  transform: scale(1);
}

/*input number hide arrows*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*end input number hide arrows*/
* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  transition: 0.25s;
}
a:before {
  transition: 0.25s;
}
a:after {
  transition: 0.25s;
}

.image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.section {
  max-width: 1400px;
  padding: 0 80px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.js-link {
  cursor: pointer;
}

.description a {
  text-decoration: none;
  font-weight: 700;
  color: #000;
}
.description a:hover {
  opacity: 0.7;
}

body {
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.26px;
  font-family: poppins, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.repeater-row {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 120px;
}
.repeater-row .heading-2 {
  margin-bottom: 60px;
}
.repeater-row .description {
  margin-bottom: 58px;
}
.repeater-row .left {
  width: 50%;
  box-sizing: border-box;
}
.repeater-row .right {
  width: 50%;
  box-sizing: border-box;
}
.repeater-row:nth-child(odd) .right {
  padding-left: calc(100% / 12);
}
.repeater-row:nth-child(even) .left {
  padding-right: calc(100% / 12);
}
.repeater-row .image {
  overflow: hidden;
}
.repeater-row .image:hover img {
  transform: scale(1.2);
}
.repeater-row .image img {
  transition: 0.45s;
}
.repeater-row .link-plus {
  display: none;
}

.repeater-wrapper {
  padding-bottom: 60px;
}

.parallax-banner-img {
  vertical-align: middle;
  width: 100%;
  transform-origin: right;
}

.parallax-banner {
  overflow: hidden;
  height: 660px;
}
.parallax-banner .simpleParallax {
  height: 660px;
}

.banner-image-wrapper {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 660px;
}
.banner-image-wrapper .line-1 {
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 75%;
  left: 50%;
}
.banner-image-wrapper .line-2 {
  width: 1px;
  background-color: #174489;
  position: absolute;
  bottom: 0px;
  left: 50%;
  opacity: 0.2;
  transform: translate(0, 100%);
}

.slider-numeric-wrapper {
  padding-top: 160px;
  padding-bottom: 180px;
  overflow: hidden;
  position: relative;
}
.slider-numeric-wrapper .heading-2-medium {
  margin: 0 auto;
  max-width: 300px;
}

.slider-numeric-nav {
  width: 100%;
  position: relative;
  transform: translate(0, -100%);
  display: flex;
  flex-flow: wrap;
  margin-bottom: -50px;
  justify-content: space-between;
}
.slider-numeric-nav.mobile {
  display: none;
}
.slider-numeric-nav .btn-next {
  right: 0px;
}

.slider-numeric {
  overflow: visible;
  padding-top: 90px;
  position: relative;
}
.slider-numeric .image {
  margin-bottom: 32px;
}
.slider-numeric .number {
  display: inline-block;
  font-size: 56px;
  line-height: 80px;
  letter-spacing: -1.68px;
  font-weight: 700;
  margin-bottom: 35px;
}
.slider-numeric .swiper-slide {
  width: 50%;
  padding-right: calc(100% / 12 * 2);
  box-sizing: border-box;
}
.slider-numeric .swiper-wrapper:before {
  content: "";
  position: absolute;
  top: 25%;
  transform: translate(0px, -50%);
  background-image: url(../images/svg/6-instalacja-sciezka.svg);
  background-size: contain;
  width: 10000%;
  height: 200px;
  background-position: center left;
}

.masonry-boxes {
  display: flex;
  flex-flow: wrap;
}
.masonry-boxes .box-grey {
  position: relative;
}
.masonry-boxes .box-grey:before {
  content: "";
  background-color: #F1F4F8;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 76%;
}
.masonry-boxes .box-text .btn-red {
  margin-top: 35px;
}
.masonry-boxes .col-4 {
  padding: 40px;
  width: calc(100% / 12 * 4);
  box-sizing: border-box;
}
.masonry-boxes .heading-2-medium {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
.masonry-boxes .col-5 {
  width: calc(100% / 12 * 5);
}
.masonry-boxes .col-5.box-text {
  padding: calc(100% / 12 * 1);
  box-sizing: border-box;
}
.masonry-boxes .col-5 .description {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}
.masonry-boxes .col-3 {
  width: calc(100% / 12 * 3);
}
.masonry-boxes .box-blue {
  background-color: #174489;
  color: #fff;
  padding: 0px;
  padding-bottom: 33%;
  position: relative;
}
.masonry-boxes .box-image {
  position: relative;
  overflow: hidden;
}
.masonry-boxes .box-image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-image: url("../images/png/Mask_Group_8.png");
  background-position: center;
  background-size: cover;
  transition: 0.25s;
}
.masonry-boxes .box-image:hover:before {
  transform: scale(1.1);
}

.masonry-boxes-wrapper {
  margin-bottom: 170px;
}

.slider-opinions-wrapper {
  overflow: hidden;
  position: relative;
}
.slider-opinions-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.slider-opinions-wrapper .section:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  transform: translate(-100%, 0);
  z-index: 2;
}
.slider-opinions-wrapper .left {
  width: calc(100% / 12 * 4);
  box-sizing: border-box;
  padding-right: calc(100% / 12);
  background: #fff;
  z-index: 2;
  position: relative;
}
.slider-opinions-wrapper .right {
  width: calc(100% / 12 * 8);
  margin-bottom: 35px;
}
.slider-opinions-wrapper .right .slider-opinions-nav {
  display: none;
}
.slider-opinions-wrapper .heading-4 {
  display: block;
}
.slider-opinions-wrapper .description {
  font-style: italic;
}

.slider-opinions-nav {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 15px;
}

.stars {
  display: flex;
  flex-flow: wrap;
  margin: 30px 0px;
}
.stars li {
  width: 22px;
  height: 21px;
  margin-right: 4.8px;
  background-image: url("../images/svg/star.svg");
  background-size: contain;
}
.stars li:last-child {
  margin-right: 0px;
}
.stars li.active {
  background-image: url("../images/svg/star-active.svg");
}

.slider-opinions {
  overflow: visible;
}
.slider-opinions .swiper-slide {
  width: 50%;
  padding-right: calc(100% / 8);
  box-sizing: border-box;
}

.faq-row {
  display: flex;
  flex-flow: wrap;
  padding-top: 67px;
  padding-bottom: 17px;
  position: relative;
}
.faq-row:nth-child(even) {
  background-color: #F1F4F8;
}
.faq-row:nth-child(even):after, .faq-row:nth-child(even):before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  background-color: #F1F4F8;
}
.faq-row:nth-child(even):before {
  left: 100%;
}
.faq-row:nth-child(even):after {
  right: 100%;
}

.faq-name {
  width: calc(100% / 12 * 4);
  padding-left: calc(100% / 12);
  box-sizing: border-box;
  text-align: right;
  margin-bottom: 50px;
}
.faq-name .btn-red {
  margin-top: 30px;
}

.faq-questions {
  margin-bottom: 50px;
  width: calc(100% / 12 * 8);
}
.faq-questions > li {
  border-bottom: 1px solid #000000;
  position: relative;
  overflow: hidden;
}
.faq-questions > li:first-child {
  border-top: 1px solid #000000;
}
.faq-questions > li li {
  list-style: circle;
  margin-bottom: 10px;
}
.faq-questions > li li:last-child {
  margin-bottom: 0px;
}
.faq-questions > li.active .description {
  opacity: 1;
  height: auto;
  padding-bottom: 43px;
  padding-top: 12px;
}
.faq-questions > li.active span:after {
  transform: translate(0, -50%) rotate(-90deg);
}
.faq-questions span {
  padding-top: 26px;
  padding-bottom: 30px;
  display: block;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.faq-questions span:before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
}
.faq-questions span:after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%) rotate(0deg);
  transition: 0.5s;
}
.faq-questions .description {
  transition: 0.5s;
  opacity: 0;
  height: 0px;
  padding: 0;
  padding-left: calc(100% / 8);
  box-sizing: border-box;
}

.faq-wrapper {
  padding-bottom: 70px;
  overflow: hidden;
}
.faq-wrapper .section {
  padding-top: 105px;
}
.faq-wrapper .section:before {
  content: url("../images/svg/faq.svg");
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.faq-banner {
  padding-top: 50px;
  padding-bottom: 40px;
}
.faq-banner .image {
  position: relative;
}
.faq-banner .btn-scroll {
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

.img-mobile {
  display: none;
}

.page-faq .faq-wrapper .section {
  padding-top: 109px;
}
.page-faq .faq-wrapper .section:before {
  display: none;
}

.slider-logotype-wrapper {
  padding-bottom: 80px;
  overflow: hidden;
}
.slider-logotype-wrapper .section {
  padding-left: 0px;
  padding-right: 0px;
}
.slider-logotype-wrapper .heading-2-medium {
  text-align: center;
  margin-bottom: 40px;
}

.slider-logotype {
  width: calc(100% + 100px);
  left: -50px;
}
.slider-logotype .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}
.slider-logotype li {
  margin-right: 90px;
  width: auto;
}

.footer-contact-wrapper {
  padding-bottom: 30px;
  padding-top: 100px;
  background-color: #F5F5F5;
  overflow: hidden;
}
.footer-contact-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.footer-contact-wrapper .col-4 {
  width: 33.33%;
  margin-bottom: 40px;
}
.footer-contact-wrapper .col-4:first-child {
  padding-right: calc(100% / 12);
  box-sizing: border-box;
}
.footer-contact-wrapper .col-4:last-child {
  padding-left: calc(100% / 12);
  box-sizing: border-box;
}
.footer-contact-wrapper .heading-2-medium {
  margin-bottom: 20px;
}

.image-btn {
  width: 213px;
  position: relative;
  margin-top: 39px;
}
.image-btn .btn-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
}

.map-wrapper {
  height: 300px;
}

.footer-wrapper {
  overflow: hidden;
  z-index: 99999999999;
  background: #fff;
  position: relative;
}
.footer-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.footer-wrapper .left {
  width: calc(100% / 12 * 3);
  padding: 30px 42px 30px 0px;
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.footer-wrapper .right {
  width: calc(100% / 12 * 9);
  background-color: #000;
  color: #fff;
  padding: 37px 0 7px calc(100% / 9 * 0.7);
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-flow: wrap;
}
.footer-wrapper .right:before {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  transform: translate(100%, 0);
  right: 2px;
  position: absolute;
  z-index: 6;
  top: 0;
}
.footer-wrapper .right div {
  width: 33.33%;
  padding-bottom: 30px;
  padding-right: 15px;
  box-sizing: border-box;
}
.footer-wrapper .logo img {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}
.footer-wrapper .social-icons {
  display: flex;
  flex-flow: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.footer-wrapper .social-icons a {
  display: inline-block;
}
.footer-wrapper .social-icons img {
  vertical-align: middle;
}

.calculator-banner-wrapper {
  color: #fff;
  margin-bottom: 200px;
}
.calculator-banner-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.calculator-banner-wrapper .left {
  width: calc(100% / 12 * 8);
  background-color: #174489;
  border: solid 1px #707070;
  border-right: none;
  box-sizing: border-box;
  padding: 74px calc(100% / 12) 57px 56px;
  display: flex;
  flex-flow: wrap;
}
.calculator-banner-wrapper .right {
  width: calc(100% / 12 * 4);
  background-color: #D8222B;
  border: solid 1px #707070;
  box-sizing: border-box;
  padding: 45px calc(100% / 12);
  position: relative;
}
.calculator-banner-wrapper .right:before {
  content: "";
  font-family: icomoon;
  position: absolute;
  font-size: 60px;
  top: 50%;
  left: 0px;
  transform: translate(-50%, -50%);
  color: #fff;
}
.calculator-banner-wrapper .right span {
  display: block;
}
.calculator-banner-wrapper .power {
  margin-bottom: 24px;
}
.calculator-banner-wrapper .heading-2-medium {
  width: 50%;
  padding-right: 20px;
  box-sizing: border-box;
  align-self: center;
  margin-bottom: 15px;
}
.calculator-banner-wrapper form {
  width: 50%;
}
.calculator-banner-wrapper input:not(.wpcf7-submit) {
  border-bottom-color: #fff;
  color: #fff;
  padding-right: 15px;
}
.calculator-banner-wrapper .form-field {
  margin-bottom: 20px;
  position: relative;
}
.calculator-banner-wrapper .form-field:before {
  content: "zł";
  color: #fff;
  position: absolute;
  right: -15px;
  bottom: 15px;
  line-height: 1;
}
.calculator-banner-wrapper ::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.calculator-banner-wrapper :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.calculator-banner-wrapper ::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.list-icon-text {
  display: flex;
  flex-flow: wrap;
}
.list-icon-text li {
  width: 33.33%;
  padding-right: calc(100% / 12 * 0.5);
  box-sizing: border-box;
  position: relative;
  margin-bottom: 50px;
}
.list-icon-text .description {
  position: relative;
}
.list-icon-text .image {
  margin-bottom: 30px;
  height: 84px;
}
.list-icon-text img {
  position: relative;
  transition: 0.25s;
  top: 50%;
  transform: translate(0, -50%);
}

.list-icon-text-wrapper {
  padding-bottom: 110px;
  overflow: hidden;
}
.list-icon-text-wrapper .heading-2-medium {
  margin-bottom: 110px;
  display: block;
  padding-left: 50%;
  position: relative;
}
.list-icon-text-wrapper .heading-2-medium.animated:before {
  width: 100%;
}
.list-icon-text-wrapper .heading-2-medium:before {
  content: "";
  background-color: #174489;
  opacity: 0.2;
  width: 0px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: calc(-100% / 12 * 7);
  transform: translate(0%, -50%);
  transition: 1s;
}

.seo-text-wrapper {
  padding-bottom: 100px;
}
.seo-text-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.seo-text-wrapper .left {
  width: 50%;
  padding-right: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.seo-text-wrapper .right {
  width: 50%;
  margin-bottom: 30px;
  display: flex;
  flex-flow: wrap;
}
.seo-text-wrapper .right div {
  width: 50%;
  box-sizing: border-box;
  padding-right: calc(100% / 6 * 0.5);
  margin-bottom: 30px;
}
.seo-text-wrapper .right .btn-red {
  margin-top: 30px;
}

.slider-banner {
  overflow: visible;
}
.slider-banner .heading-1 {
  display: block;
  margin-bottom: 21px;
}
.slider-banner .heading-5 {
  display: block;
  margin-bottom: 40px;
}
.slider-banner .swiper-slide {
  display: flex;
  flex-flow: wrap;
  opacity: 0 !important;
}
.slider-banner .swiper-slide .left {
  width: 50%;
  padding-top: 150px;
  padding-bottom: 115px;
  z-index: 99;
}
.slider-banner .swiper-slide .right {
  width: 50%;
}
.slider-banner .swiper-slide .right div {
  height: 100%;
  width: calc(100% + (100% / 6) + 80px);
  left: calc(-100% / 6);
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}
.slider-banner .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.slider-banner .simpleParallax:before {
  content: url(../images/svg/trojkat.svg);
  position: absolute;
  top: -5px;
  left: -3px;
  width: calc(100% + 15px);
  height: calc(100% + 10px);
  z-index: 9;
}
.slider-banner .simpleParallax img {
  max-width: 100%;
  height: 100%;
  vertical-align: middle;
  position: absolute;
  object-fit: cover;
  transform-origin: right top;
}

.banner-wrapper {
  padding-bottom: 116px;
  overflow: hidden;
}
.banner-wrapper .btn-scroll {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}

.slider-banner-nav {
  width: 170px;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  right: 80px;
  bottom: 60px;
}
.slider-banner-nav .btn-swiper:before {
  color: #fff;
}

.header-info-box-wrapper {
  overflow: hidden;
}

.header-wrapper {
  padding: 32px 0px 14px;
  top: 0px;
  width: 100%;
  background: #fff;
  position: sticky;
  z-index: 3;
  transition: 0.25s;
}
.header-wrapper.scroll {
  padding: 13px 0 14px;
  border-bottom: solid 1px #D0D9E7;
}
.header-wrapper.scroll .image img {
  width: 75px;
}
.header-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.header-wrapper .logo {
  width: calc(100% / 12 * 3);
}
.header-wrapper .logo img {
  transition: 0.25s;
}
.header-wrapper .menu-menu-container {
  width: calc(100% / 12 * 9);
}

.menu {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  position: relative;
  top: 50%;
  transform: translate(0px, -50%);
}
.menu a {
  font-weight: 700;
  text-decoration: none;
  color: #000;
  position: relative;
  font-size: 15px;
}
.menu a:hover {
  color: #D8222B;
}
.menu a:hover:before {
  opacity: 1;
}
.menu a:before {
  content: "";
  width: 100%;
  height: 5px;
  border-radius: 13px;
  background: #D8222B;
  position: absolute;
  left: 0px;
  bottom: -9px;
  opacity: 0;
}
.menu a.active {
  color: #D8222B;
}
.menu a.active:before {
  opacity: 1;
}

.header-info-box-wrapper .textwidget {
  background-color: #D8222B;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  width: calc(100% / 12 * 5);
  color: #fff;
  font-weight: 300;
  padding: 7px 30px 8px;
  font-size: 11px;
  line-height: 20px;
  box-sizing: border-box;
  position: relative;
  left: 100%;
  transform: translate(-100%, 0);
}
.header-info-box-wrapper .textwidget:before {
  content: "";
  width: 81px;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  background-color: #D8222B;
}
.header-info-box-wrapper a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.header-info-box-wrapper a:hover {
  opacity: 0.7;
}

.hamburger {
  width: 30px;
  height: 24px;
  text-align: center;
  margin: 0 auto;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  position: absolute;
  cursor: pointer;
  right: 40px;
  top: 4px;
  display: none;
  z-index: 3;
}
.hamburger.open span:first-child {
  top: 0px;
  width: 0;
  left: 50%;
}
.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger.open span:nth-child(4) {
  top: 24px;
  width: 0;
  left: 50%;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #D8222B;
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}
.hamburger span:first-child {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 12px;
}
.hamburger span:nth-child(3) {
  top: 12px;
}
.hamburger span:nth-child(4) {
  top: 24px;
}

iframe#tidio-chat-iframe {
  bottom: 10px !important;
}

@media (min-width: 1601px) {
  .slider-banner .simpleParallax img {
    height: auto;
  }
}
@media (max-width: 1280px) {
  .footer-wrapper .right div {
    width: 50%;
  }
}
@media (max-width: 1700px) {
  .parallax-banner-img {
    height: 100%;
    width: auto;
  }
}
@media (max-width: 1200px) {
  .calculator-banner-wrapper .left {
    width: 100%;
    border-left: solid 1px #707070;
    border-bottom: none;
  }
  .calculator-banner-wrapper .right {
    width: 100%;
    text-align: center;
  }
  .calculator-banner-wrapper .right:before {
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (max-width: 1000px) {
  .seo-text-wrapper .right {
    width: 100%;
  }
  .seo-text-wrapper .left {
    width: 100%;
  }

  .section {
    padding-right: 60px;
    padding-left: 60px;
  }

  .list-icon-text li {
    width: 50%;
  }

  .slider-numeric .swiper-slide {
    padding-right: calc(100% / 12 * 1);
  }

  .masonry-boxes .col-5 {
    width: calc(100% / 12 * 7);
  }
  .masonry-boxes .col-4 {
    width: calc(100% / 12 * 5);
  }
  .masonry-boxes .box-grey, .masonry-boxes .box-empty {
    display: none;
  }
  .masonry-boxes .col-3 {
    width: calc(100% / 12 * 5);
  }

  .slider-opinions-wrapper .left {
    width: 70%;
    padding-right: 0px;
    margin-bottom: 30px;
  }
  .slider-opinions-wrapper .left .slider-opinions-nav {
    display: none;
  }
  .slider-opinions-wrapper .right {
    width: 100%;
    margin-bottom: 0px;
  }
  .slider-opinions-wrapper .right .slider-opinions-nav {
    display: flex;
  }

  .faq-questions {
    width: 100%;
    order: 2;
  }

  .faq-name {
    width: 100%;
    order: 1;
    padding-left: 0px;
    text-align: left;
  }

  .footer-contact-wrapper .col-4 {
    width: 50%;
  }
  .footer-contact-wrapper .col-4:nth-child(2) {
    padding-left: 0px;
    order: 3;
  }
  .footer-contact-wrapper .col-4:last-child {
    padding-left: 0px;
    order: 2;
  }

  .footer-wrapper .left {
    width: 100%;
  }
  .footer-wrapper .right {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .footer-wrapper .right:after {
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    transform: translate(-100%, 0);
    left: 0px;
    position: absolute;
    top: 0;
  }
  .footer-wrapper .right:before {
    right: 1px;
  }
  .footer-wrapper .social-icons li {
    margin-bottom: 15px;
  }
  .footer-wrapper .social-icons li:last-child {
    margin-bottom: 0px;
  }

  .header-info-box-wrapper .textwidget {
    width: 70%;
  }

  .slider-banner .swiper-slide .left {
    width: 70%;
  }
  .slider-banner .swiper-slide .right {
    width: 30%;
  }
  .slider-banner .swiper-slide .right div {
    width: calc(100% + (100% / 6 * 8) + 80px);
    left: calc(-100% / 6 * 8);
  }

  .parallax-banner {
    height: 357px;
  }
  .parallax-banner .simpleParallax {
    height: 357px;
  }
}
@media (max-width: 768px) {
  .seo-text-wrapper {
    padding-bottom: 5px;
  }
  .seo-text-wrapper .right div {
    width: 100%;
    margin-bottom: 15px;
  }
  .seo-text-wrapper .right .btn-red {
    margin-top: 10px;
  }

  .list-icon-text .image {
    margin-bottom: 10px;
    height: auto;
  }
  .list-icon-text img {
    top: 0px;
    transform: translate(0, 0);
  }

  .img-mobile {
    display: block;
  }

  .img-desktop {
    display: none;
  }

  .list-icon-text-wrapper {
    padding-bottom: 0px;
  }
  .list-icon-text-wrapper .heading-2-medium {
    margin-bottom: 32px;
    text-align: center;
    padding: 0;
  }
  .list-icon-text-wrapper .heading-2-medium:before {
    left: calc(-100% / 12 * 7 - 60px);
  }

  .section {
    padding-right: 40px;
    padding-left: 40px;
  }

  .list-icon-text li {
    width: 100%;
  }

  .calculator-banner-wrapper {
    margin-bottom: 50px;
  }
  .calculator-banner-wrapper .left {
    padding: 20px calc(100% / 12) 27px;
  }
  .calculator-banner-wrapper .right {
    padding-bottom: 19px;
    padding-top: 26px;
    text-align: left;
  }
  .calculator-banner-wrapper .right:before {
    font-size: 26px;
    font-weight: 600;
  }
  .calculator-banner-wrapper .heading-2-medium {
    width: 100%;
    padding-right: 0px;
  }
  .calculator-banner-wrapper form {
    width: 100%;
  }
  .calculator-banner-wrapper .power {
    margin-bottom: 12px;
  }

  .repeater-row {
    position: relative;
    padding: 30px 0 20px;
    margin-bottom: 0px;
  }
  .repeater-row:nth-child(odd) .right {
    padding-left: 0px;
  }
  .repeater-row:nth-child(even) {
    background-color: #F1F4F8;
  }
  .repeater-row:nth-child(even):before, .repeater-row:nth-child(even):after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #F1F4F8;
    top: 0px;
  }
  .repeater-row:nth-child(even):before {
    left: 100%;
  }
  .repeater-row:nth-child(even):after {
    right: 100%;
  }
  .repeater-row:nth-child(even) .right {
    order: 1;
  }
  .repeater-row:nth-child(even) .left {
    order: 2;
  }
  .repeater-row.active .s-h-content {
    height: auto;
    margin-bottom: 40px;
  }
  .repeater-row .left {
    width: 100%;
  }
  .repeater-row .right {
    width: 100%;
  }
  .repeater-row .image {
    margin-bottom: 20px;
  }
  .repeater-row .image img {
    height: 240px;
    width: 100%;
    object-fit: cover;
  }
  .repeater-row .heading-2 {
    margin-bottom: 30px;
  }
  .repeater-row .s-h-content {
    height: 0px;
    transition: 0.25s;
    overflow: hidden;
  }
  .repeater-row .link-plus {
    position: absolute;
    bottom: 20px;
    display: block;
  }
  .repeater-row .description {
    margin-bottom: 30px;
  }

  .repeater-wrapper {
    overflow: hidden;
  }

  .slider-numeric {
    padding-top: 45px;
  }
  .slider-numeric .swiper-slide {
    width: calc(100% + 40px);
  }
  .slider-numeric .swiper-wrapper:before {
    top: 19%;
    height: 110px;
  }

  .slider-numeric-nav {
    transform: translate(0, 0%);
    z-index: 2;
    margin-top: 10px;
    display: none;
  }
  .slider-numeric-nav.mobile {
    display: flex;
    margin-bottom: -20px;
  }

  .masonry-boxes {
    overflow: hidden;
  }
  .masonry-boxes .col-5 {
    width: 100%;
  }
  .masonry-boxes .col-5.box-image {
    order: 6;
  }
  .masonry-boxes .col-5.box-image .image {
    width: 117%;
  }
  .masonry-boxes .col-5.box-text {
    padding: 30px 0px 0px;
  }
  .masonry-boxes .col-4 {
    width: 100%;
  }
  .masonry-boxes .col-3 {
    width: 100%;
  }
  .masonry-boxes .col-3.box-text {
    padding: 20px 0 30px;
  }
  .masonry-boxes .box-blue {
    padding-bottom: 100%;
  }
  .masonry-boxes .box-text .btn-red {
    margin-top: 20px;
  }

  .slider-opinions-wrapper {
    padding-bottom: 50px;
  }
  .slider-opinions-wrapper .left {
    width: 100%;
  }
  .slider-opinions-wrapper .heading-1 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.56px;
  }

  .stars {
    margin: 25px 0px;
  }

  .slider-opinions .swiper-slide {
    width: 100%;
  }

  .footer-contact-wrapper .col-4 {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer-contact-wrapper .col-4:first-child {
    padding-right: 0px;
  }
  .footer-contact-wrapper .col-4:nth-child(2) {
    order: 2;
  }
  .footer-contact-wrapper .col-4:last-child {
    order: 3;
  }

  .wpcf7 .ajax-loader {
    position: absolute;
    bottom: -10px;
  }

  .footer-wrapper .right {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-wrapper .right div {
    width: 100%;
    padding-right: 0px;
  }
  .footer-wrapper .right div:last-child {
    padding-bottom: 0px;
  }
  .footer-wrapper .left {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0px;
    order: 2;
  }
  .footer-wrapper .logo img {
    width: 73px;
  }
  .footer-wrapper .social-icons {
    display: flex;
    flex-flow: wrap;
  }
  .footer-wrapper .social-icons li {
    margin-bottom: 0px;
    margin-right: 31px;
  }
  .footer-wrapper .social-icons li:last-child {
    padding-right: 0px;
  }

  .header-info-box-wrapper .textwidget {
    width: 100%;
    padding: 2px 0px 1px;
    position: relative;
  }
  .header-info-box-wrapper .textwidget:after {
    content: "";
    width: 81px;
    height: 100%;
    position: absolute;
    top: 0;
    right: calc(100% - 1px);
    background-color: #D8222B;
  }
  .header-info-box-wrapper p {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-wrapper {
    padding: 20px 0px 11px;
  }
  .header-wrapper.scroll .menu-menu-container {
    top: 61px;
  }
  .header-wrapper.scroll .image img {
    width: 67px;
  }
  .header-wrapper.open {
    z-index: 9999999999;
  }
  .header-wrapper.open .menu-menu-container {
    display: block;
  }
  .header-wrapper .menu-menu-container {
    display: none;
    width: 100%;
    padding-top: 20px;
    height: 100vh;
    z-index: 2;
    background: #fff;
    top: 134px;
    left: 0;
    box-sizing: border-box;
  }
  .header-wrapper .image img {
    width: 61px;
  }

  .menu {
    top: 0;
    transform: translate(0px, 0%);
  }

  .menu-menu-container li {
    width: 100%;
    border-bottom: 1px solid #F1F4F8;
  }

  .menu a {
    padding: 15px 0px;
    display: block;
  }
  .menu a:before {
    bottom: -2px;
  }

  .slider-banner .swiper-slide .left {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 33px;
  }
  .slider-banner .swiper-slide .right {
    width: 100%;
  }
  .slider-banner .swiper-slide .right div {
    width: calc(100% + 40px);
    left: 0px;
  }
  .slider-banner .simpleParallax img {
    height: auto;
    position: relative;
  }
  .slider-banner .heading-1 {
    margin-bottom: 12px;
  }
  .slider-banner .heading-5 {
    display: block;
    margin-bottom: 28px;
  }

  .slider-banner-nav {
    right: auto;
    left: 40px;
    bottom: 35px;
    width: calc(100% - 80px);
  }
  .slider-banner-nav .btn-prev:before {
    color: #000;
  }

  .hamburger {
    top: 1px;
  }

  .banner-wrapper {
    padding-bottom: 40px;
  }
  .banner-wrapper .btn-scroll {
    display: none;
  }

  .banner-image-wrapper {
    height: 257px;
  }

  .parallax-banner {
    height: 257px;
  }
  .parallax-banner .simpleParallax {
    height: 257px;
  }

  .parallax-banner-img {
    transform-origin: center;
  }

  .slider-numeric-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .slider-numeric-wrapper .heading-2-medium {
    margin-left: 0px;
  }

  .slider-numeric .image {
    margin-bottom: 8px;
  }
  .slider-numeric .number {
    font-size: 36px;
    line-height: 50px;
    letter-spacing: -1.08px;
    margin-bottom: 9px;
  }
  .slider-numeric img {
    width: 63px;
  }

  .masonry-boxes-wrapper {
    margin-bottom: 50px;
  }

  .faq-wrapper {
    background-color: #F1F4F8;
    padding-bottom: 35px;
  }
  .faq-wrapper .section {
    padding-top: 0px;
  }
  .faq-wrapper .section:before {
    display: none;
  }
  .faq-wrapper .btn-red {
    position: absolute;
    bottom: -12px;
  }

  .faq-name {
    margin-bottom: 30px;
  }
  .faq-name .heading-2-medium br {
    display: none;
  }

  .faq-row {
    padding-top: 30px;
  }

  .slider-logotype-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .slider-logotype-wrapper .heading-2-medium {
    margin-bottom: 20px;
  }

  .footer-contact-wrapper {
    padding-top: 30px;
  }

  .slider-logotype img {
    width: 80%;
    left: 50%;
    position: relative;
    transform: translate(-50%, 0);
  }
  .slider-logotype li {
    margin-right: 15px;
    margin-left: 15px;
  }

  .map-wrapper {
    height: 320px;
  }

  .page-faq .faq-wrapper {
    background-color: transparent;
  }
  .page-faq .faq-wrapper .section {
    padding-top: 30px;
  }
}
@media (max-width: 500px) {
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .slider-banner-nav {
    left: 20px;
    bottom: 10px;
  }

  .slider-banner-nav {
    width: calc(100% - 40px);
  }

  .repeater-row .image img {
    height: 240px;
  }

  .hamburger {
    right: 20px;
  }
}

/*# sourceMappingURL=main.css.map */
