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

 Theme Name:   Divi Child Theme
 Description:  Child Theme Divi by latwastrona.com
 Author:       Latwastrona
 Author URI:   https://latwastrona.com
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

------------------------------ ADDITIONAL CSS HERE ------------------------------*/

body{background: #ffffff;}
::selection {
background: #2C8CF6; /* Safari */
color: white;
}
::-moz-selection {
background: #2C8CF6; /* Firefox */
color: white;
}
/*custom header START*/
.btn_main{
	height: 50px;
  display: -ms-inline-flexbox!important;
  display: inline-flex!important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Open Sans",sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 2px;
  color: #fff;
  transition: all .3s;
  padding: 0 25px!important;
  border: none!important;
  position: relative;
  overflow: hidden;
  /*background: linear-gradient(90deg,#d29911 0, #cd4c0d 100%) !important;*/
  background: #ed6075;
  transition: all .3s ease-in-out!important;
  min-width: 150px;
}
.btn_main span{
  position: relative;
  z-index: 1;
}
.btn_main::before{
  display: none;
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#094f8d 0,#05335c 100%);
  opacity: 0;
  transition: opacity .2s ease-in-out;
  display: block;
}
.btn_main:hover::before {
    opacity: 1;
    display: none;
}
.btn_main:hover, .btn_main:active, .btn_main:focus{
	color: #fff;
  text-decoration: none;
  background: #26A8E4;
}
.btn_main:after{
  display: none;
}

.phone{
  /*background: linear-gradient(90deg,#d29911 0, #cd4c0d 100%) !important;*/
  background: #ED6075 !important;
  border-radius: 2px !important;
  width: 50px;
  padding: 0 10px;
  transition: all .3s;
}
.phone:hover{
  background: #26A8E4 !important;
}
.phone:hover:before{
  display: none;
}
.phone:before{
  display: none;
}
.phone .icon-phone{
  margin-right: 0 !important;
}
.phone:focus, .phone:active{text-decoration: none;background: #c22328;}
.phone:focus span:before, .phone:active span:before{
  color: white;
}
.email:focus, .email:active{text-decoration: none; background: #212121;}
.email:focus span:before, .email:active span:before{
  color: white;
}
.btn_main_white{
  background: white;
  color: #d83b40;
  border: 1px solid #d83b40;
  height: 44px;
  margin-top: 0;
  margin-bottom: 10px;
}
.btn_main.btn_main_white:hover, .btn_main.btn_main_white:active, .btn_main.btn_main_white:focus{
  border-color: #d83b40;
  color: white;
  background: #d83b40;
}

/* interactive map */

.pulse {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(239, 22, 22, 0.4);
  animation: pulse 2s infinite;
}
@media screen and (max-width: 1023px){
  .pulse {
    width: 12px;
    height: 12px;
  }
}

.pulse-med{
  animation: pulse 3s infinite;
}

.pulse-slow{
  animation: pulse 4s infinite;
}

.pulse:hover {
  animation: none;
}

.rpin_content{
	position: absolute;
	bottom: 55px;
  left: 30px;
	width: 100%;
	max-width: 550px;
	backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /*background: rgba(255,255,255,.65);*/
  background: #f6f6f6;
  padding: 30px 30px;
  border: 1px solid rgba(30, 115, 168, 1);
  pointer-events: none;
  opacity: 0;
  transition: all .3s;
  font-size: 16px;
  /*color: white;*/
}
.rpin_content.active{
	opacity: 1;
	pointer-events: initial;
}
.rpin_content h4{
  font-size: 20px;
  font-weight: 600;
}
    
.map-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-line {
    stroke: rgba(30, 115, 168, .8);
    stroke-width: 1px;
    transform: skewX(-20deg);
    transform-box: fill-box;
    position: relative;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .map-line {
    transform: skewX(0deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(226, 226, 226, .65);
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(226, 226, 226, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(226, 226, 226, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(226, 226, 226, .65);
    box-shadow: 0 0 0 0 rgba(226, 226, 226, .65);
  }
  70% {
    -moz-box-shadow: 0 0 0 30px rgba(226, 226, 226, 0);
    box-shadow: 0 0 0 30px rgba(226, 226, 226, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(226, 226, 226, 0);
    box-shadow: 0 0 0 0 rgba(226, 226, 226, 0);
  }
}
.pulse_square {
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(24, 22, 239, 0.4);
  animation: pulse_square 2s infinite;
}
.pulse_square.pulse_square_mob{
  width: 44px;
  height: 44px;
}
.pulse_square-med{
  animation: pulse_square 3s infinite;
}

.pulse_square-slow{
  animation: pulse_square 4s infinite;
}

.pulse_square:hover {
  animation: none;
}
@-webkit-keyframes pulse_square {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(24, 22, 239, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(24, 22, 239, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(24, 22, 239, 0);
  }
}
@keyframes pulse_square {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(24, 22, 239, 0.4);
    box-shadow: 0 0 0 0 rgba(24, 22, 239, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(24, 22, 239, 0);
    box-shadow: 0 0 0 10px rgba(24, 22, 239, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(24, 22, 239, 0);
    box-shadow: 0 0 0 0 rgba(24, 22, 239, 0);
  }
}

.pulse_square_blue {
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(24, 22, 239, 0.4);
  animation: pulse_square_blue 2s infinite;
}

.pulse_square_blue-med{
  animation: pulse_square_blue 3s infinite;
}

.pulse_square_blue-slow{
  animation: pulse_square_blue 4s infinite;
}

.pulse_square_blue:hover {
  animation: none;
}
@-webkit-keyframes pulse_square_blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes pulse_square_blue {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/* kolory_modne */
.kolory_modne{
	display: flex;
	align-items: flex-start;
  flex-wrap: wrap;
	list-style: none !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
.kolory_modne li{margin-right: 9px;}
.kolory_modne li a{width: 44px; height: 44px; display: inline-flex; border-radius: 50%; overflow: hidden;border: 1px solid rgba(255,255,255,.4);}
.kolory_modne li a img{width: 100%; height: 100%; object-fit: cover; transition: all .3s;transform: scale(1);}
.kolory_modne li a:hover img{opacity: .8; transform: scale(1.5);}
/*.kolory_modne li:last-child a{background: #DA484C; color: white; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700;
  padding-bottom: 1px; transition: all .3s; border: 1px solid #DA484C;}*/
/*.kolory_modne li:last-child a:hover{background: transparent !important; text-decoration: none !important;}*/


.main_screen_big_img.et_pb_image{min-height: 615px;position: relative;}
.main_screen_big_img .et_pb_image_wrap{position: absolute; left:0; top: 0; width: 100%; height: 100%;}
.main_screen_big_img img{position:absolute; left:0; top: 0; width: 100%; height: 100%;object-fit: cover;}
.main_screen_big_img .et_pb_image_wrap::before{content:''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.15); z-index: 1;}

.main_screen_big{
  position: absolute;
  left: 50px;
  bottom: 40px; 
  width: calc(100% - 70px);
  padding-right: 40px;
  margin-left: -5px;
  z-index: 2;
}
.main_screen_big .et_pb_text_inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 20px 30px;
  background: rgba(0,0,0,0.15);
}
.main_screen_big h1{
  background-color: #d83b40; 
  padding: 10px 50px 10px 0; 
  display: inline-flex; 
  margin-bottom: 15px; 
  transform: skewx(-10deg); 
  position: relative;
  color: white;}
.main_screen_big h1 strong{position: relative; z-index:1;}
.main_screen_big h1:before{
  content: ''; 
  position: absolute; 
  left: -75px; 
  top: 0; 
  height: 100%; 
  width: 70%; 
  background: #d83b40;
  transform: skewx(10deg);
}
.main_screen_big p{margin: 0 !important;padding-bottom: 5px;}
.main_screen_big .btn_main{
  background: #ead222;
  color: #212121;
  border: 1px solid #ead222;
}
.main_screen_big .btn_main:after {
    mask: url(/wp-content/uploads/2024/10/arrow_right.svg) no-repeat center;
    -webkit-mask: url(/wp-content/uploads/2024/10/arrow_right.svg) no-repeat center;
    mask-size: contain;
    background-color: #212121;
    -webkit-mask-size: contain;
    transition: all .3s;
}
.main_screen_big .btn_main:hover, .main_screen_big .btn_main:active, .main_screen_big .btn_main:focus{
  background: transparent;
  border: 1px solid #ead222;
  color: #ead222;
}
.main_screen_big .btn_main:hover:after, .main_screen_big .btn_main:focus:after, .main_screen_big .btn_main:active:after {
    background-color: #ead222;
}

.main_screen_small_img.et_pb_image{min-height: 305px; position: relative;}
.main_screen_small_img .et_pb_image_wrap{position: absolute; left:0; top: 0; width: 100% !important; height: 100%;}
.main_screen_small_img img{position:absolute; left:0; top: 0; width: 100%; height: 100%;object-fit: cover;}
.main_screen_small_img .et_pb_image_wrap::before{content:''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.15); z-index: 1;}

.main_screen_small{
  position: absolute;
  left: 25px;
  bottom: 25px;
  width: calc(100% - 25px);
  z-index: 2;
}
.main_screen_small.main_screen_small__calc{
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.main_screen_small .et_pb_text_inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 20px 30px;
  background: rgba(0,0,0,0.25);
}
.main_screen_small.main_screen_small__calc .et_pb_text_inner{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 50px;
  background: #ead222;
  justify-content: flex-end;
  color: #212121;
  overflow: hidden; 
}
.main_screen_small.main_screen_small__calc .et_pb_text_inner a,
.main_screen_small.main_screen_small__calc .et_pb_text_inner p,
.main_screen_small.main_screen_small__calc .et_pb_text_inner h2,
.main_screen_small.main_screen_small__calc .et_pb_text_inner h3,
.main_screen_small.main_screen_small__calc .et_pb_text_inner h4,
.main_screen_small.main_screen_small__calc .et_pb_text_inner h5,
.main_screen_small.main_screen_small__calc .et_pb_text_inner h6,
.main_screen_small.main_screen_small__calc .et_pb_text_inner strong,
.main_screen_small.main_screen_small__calc .et_pb_text_inner span{
  z-index: 1;
}
.main_screen_small.main_screen_small__calc .et_pb_text_inner:before{
  content: '';
  position: absolute;
  left: -15px;
  top: -15px;
  width: 150px;
  height: 150px;
  transform: rotate(-25deg);
  mask: url('/wp-content/uploads/2024/10/kalkulator.svg') no-repeat center;
  -webkit-mask: url('/wp-content/uploads/2024/10/kalkulator.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: #212121;
  opacity: .12;
}
.main_screen_small.main_screen_small__calc .et_pb_text_inner:after{
  content: '';
  position: absolute;
  left: 25px;
  top: 25px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  border: 3px solid rgba(255,255,255,.5);
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .main_screen_small .et_pb_text_inner{
    padding: 20px 15px;
  }
}




.main_screen_small h2,
.main_screen_small h3,
.main_screen_small h4,
.main_screen_small h5,
.main_screen_small h6, 
.main_screen_small span{background-color: #d83b40; padding: 10px 35px 10px 0; display: inline-flex; margin-bottom: 15px; transform: skewx(-10deg); position: relative;color: white;}

.main_screen_small.main_screen_small_transparent h2,
.main_screen_small.main_screen_small_transparent h3,
.main_screen_small.main_screen_small_transparent h4,
.main_screen_small.main_screen_small_transparent h5,
.main_screen_small.main_screen_small_transparent h6, 
.main_screen_small.main_screen_small_transparent span{
  background-color: transparent;
  color: white;
  transform: skew(0deg);
  margin-bottom: 0;
}

.main_screen_small h2 strong,
.main_screen_small h3 strong,
.main_screen_small h4 strong,
.main_screen_small h5 strong,
.main_screen_small h6 strong, 
.main_screen_small span strong{position: relative; z-index:1;}

.main_screen_small h2:before,
.main_screen_small h3:before,
.main_screen_small h4:before,
.main_screen_small h5:before,
.main_screen_small h6:before, 
.main_screen_small span:before{content: ''; position: absolute; left: -55px; top: 0; height: 100%; width: 70%; background: #d83b40;transform: skewx(10deg);}
.main_screen_small p{margin: 0 !important;padding-bottom: 5px;}


.main_screen_small.main_screen_small_transparent h2:before,
.main_screen_small.main_screen_small_transparent h3:before,
.main_screen_small.main_screen_small_transparent h4:before,
.main_screen_small.main_screen_small_transparent h5:before,
.main_screen_small.main_screen_small_transparent h6:before, 
.main_screen_small.main_screen_small_transparent span:before{
  background: transparent;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .main_screen_small h2,
  .main_screen_small h3,
  .main_screen_small h4,
  .main_screen_small h5,
  .main_screen_small h6, 
  .main_screen_small span{
    padding-right: 20px;
  }
  .main_screen_small h2:before,
  .main_screen_small h3:before,
  .main_screen_small h4:before,
  .main_screen_small h5:before,
  .main_screen_small h6:before, 
  .main_screen_small span:before{
    left: -40px;
  }
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .symbol_title.et_pb_heading{margin-bottom: 25px !important; padding-left: 0;}
  .symbol_title h2:before,
  .symbol_title h3:before,
  .symbol_title h4:before,
  .symbol_title h5:before,
  .symbol_title h6:before {
      content: '';
      position: absolute;
      left: 3px;
      top: calc(100% + 5px);
      height: 12px;
      width: 48px;
      background: #d83b40;
      /*transform: skewx(-10deg);*/
  }
  .symbol_title h2:after,
  .symbol_title h3:after,
  .symbol_title h4:after,
  .symbol_title h5:after,
  .symbol_title h6:after {
      content: '';
      position: absolute;
      left: 0;
      top: 100%;
      height: 12px;
      width: 45px;
      /*background: #d83b40;*/
      background: lightgray;
      border-right: 2px solid white;
      border-bottom: 2px solid white;
      /*background: #1c6a95;
      transform: skewx(-10deg);*/
  }
}
@media screen and (min-width: 1024px){
  .symbol_title_subtitle{padding-left: 35px; margin-top: -10px; margin-bottom: 15px;}
  .symbol_title{position: relative; padding-left:35px}
  .symbol_title:before{
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    height: 100%;
    width: 15px;
    background: #d83b40;
    /*background: #ead222;*/
    /*background: url('/wp-content/uploads/2024/10/kolory_zlotydab.webp') center no-repeat;*/
    /*background-size: cover;*/
    /*background: #333333;
    transform: skewx(-10deg);*/
  }
  .symbol_title:after{
    content: '';
    position: absolute;
    left: 5px;
    top: -1px;
    height: 100%;
    width: 17px;
    /*background: #d83b40;*/
    /*background: #ead222;*/
    /*background: url('/wp-content/uploads/2024/10/kolory_zlotydab.webp') center no-repeat;
    background-size: cover;*/
    background: lightgray;
    border: 3px solid white;
    /*background: #1c6a95;
    transform: skewx(-10deg);*/
  }
}
.main_screen_icons .et-pb-icon{
  color: #212121 !important;
  background: #dadada;
  padding: 10px 15px;
  margin-right: 10px;
}
.main_screen_icons .et_pb_text{
  padding-right: 10px;
}
.main_screen_icons .et_pb_column{
  justify-content: flex-start;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .map {
    margin: 0 auto;
  }
  .map_desc{
    top: -7px;
    position: relative;
  }
  .rpin_content{
    left: 0;
    top: 0;
    bottom: auto;
    padding: 25px 15px;
    border: 1px solid rgba(0,0,0,.1);
    width: 100%;
    position: relative;
    display: none;
  }
  .rpin_content.active{
    display: block;
  }
  .rpin_content h4{
    font-size: 20px;
  }
  .main_screen_mobile .et_pb_row{
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% + 30px) !important;
  }
  .main_screen_big{
    left: 30px;
    bottom: 30px;
    width: calc(100% - 50px);
    padding-right: 0;
  }
  .main_screen_big_img .et_pb_image_wrap{
    height: calc(100% - 5px);
  }
  .main_screen_big h1{
    padding: 10px 30px 10px 0;
  }
  .main_screen_big .et_pb_text_inner{
    padding: 15px 20px;
  }
  .main_screen_mobile .et_pb_row{
    display: flex;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .main_screen_mobile .et_pb_row::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .main_screen_mobile_col_1{
    display: flex;
    min-width: 300px;
    overflow: hidden;
  }
  .main_screen_mobile_col_1 .main_screen_big_img.et_pb_image{
    min-height: 435px;
    min-width: 300px;
  }
  .main_screen_mobile_col_2{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .main_screen_mobile_col_2 .main_screen_small_img.et_pb_image{
    min-height: 440px;
  }
  .main_screen_mobile_col_2 .et_pb_row_inner{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
  }
  .main_screen_mobile_col_2 .et_pb_row_inner .et_pb_column{
    min-width: 300px;
    margin-left: 10px !important;
  }
  /* main_screen_icons */
  .main_screen_icons{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .main_screen_icons .et-pb-icon{
    margin-right: 0;
    margin-bottom: 4px;
    margin-top: 3px;
  }
  .main_screen_icons .et_pb_column.et_pb_column_1_5{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 49% !important;
    margin-bottom: 15px !important;
    border: 1px solid rgba(0,0,0,.08);
    margin-right: 0 !important;
    padding: 10px;
  }
  .main_screen_icons .et_pb_column.et_pb_column_1_5:first-child{
    width: 100% !important;
  }
  .main_screen_icons .et_pb_column.et_pb_column_1_5:first-child br{
    display: none;
  }
  .main_screen_icons .et_pb_column.et_pb_column_1_5.et-last-child{
    position: relative;
    right: -3px;
  }
  .main_screen_icons .et_pb_column .et_pb_text{
    text-align: center;
  }
}

.home_page_video video{
  max-height: 395px;
  object-fit: cover;
  width: 100%;
}
.light_gray_section{
  position: relative;
}
.light_gray_section:before, .light_gray_section:after{
  content: '';
  position: absolute;
  top: 0;
  width: 15px;
  height: 100%;
  background: #f4f4f4;
}
.light_gray_section.contrast_gray_section:before, .light_gray_section.contrast_gray_section:after{
  background: #f9f9f9;
}
.light_gray_section:before{
  left: -15px;
}
.light_gray_section:after{
  left: 100%;
}
.product_tags_list{

}
.product_tags_list ul{display: flex; list-style:none; flex-wrap: wrap;}
.product_tags_list ul li a{display:inline-flex; padding: 10px 25px !important; background:#d83b40; color: white; margin-right: 15px; margin-bottom: 15px; border: 1px solid #d83b40; transition: all .3s;}
.product_tags_list ul li a:hover{background: white; color: #d83b40; text-decoration: none;}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .product_tags_list ul li a{padding: 7px 15px !important; margin-right: 10px; margin-bottom: 10px;}
}

.section_page_title{
  display: flex;
  justify-content: center;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .page-template-page-produkt .et_builder_inner_content,
  body:not(.home).page-template-default .et_pb_section{
    overflow: hidden;
  }
}
.section_page_title .page_title_background.et_pb_row_0.et_pb_row, .section_page_title .et_pb_row.et_pb_row_0_tb_body.page_title_background{
  margin-left: -35px;
  margin-right: -35px;
  width: calc(100% + 70px);
  padding-left: 50px !important;
  padding-right: 50px !important;
  max-width: 1440px;
  padding-top: 60px;
  padding-bottom: 50px;
}
.page_title_background{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0,0,0,.3);
  position: relative;
}
.page_title_background .symbol_title:before{
  content: '';
  position: absolute;
  left: 0;
  top: -10px;
  height: 100%;
  width: 15px;
  background: white;
  /*transform: skewx(-10deg);*/
}
.page_title_background .symbol_title:after{
  content: '';
  position: absolute;
  left: 5px;
  top: -1px;
  height: 100%;
  width: 15px;
  background: #d83439;
  border: none;
  /*transform: skewx(-10deg);*/
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .page_title_background .symbol_title.et_pb_heading{margin-bottom: 25px !important; padding-left: 0;}
  .page_title_background .symbol_title:before{
      content: '';
      position: absolute;
      left: 5px;
      top: calc(100% + 5px);
      height: 7px;
      width: 50px;
      background: white;
      /*transform: skewx(-10deg);*/
  }
  .page_title_background .symbol_title:after {
      content: '';
      position: absolute;
      left: 0;
      top: 100%;
      height: 7px;
      width: 40px;
      background: #d83439;
      /*transform: skewx(-10deg);*/
  }
}
.yoast_breadcrumbs_style{
  color: rgba(255,255,255,.6);
  font-weight: 700;
  position: relative;
  margin-top: 20px;
  padding-top: 15px;
}
.yoast_breadcrumbs_style:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 1px;
  background: rgba(255,255,255,.4);
}
.yoast_breadcrumbs_style .breadcrumb_last{
  opacity: .5;
}
.yoast_breadcrumbs_style a{
  color: white;
  transition: all .3s;
}
.yoast_breadcrumbs_style a:hover, .yoast_breadcrumbs_style a:focus, .yoast_breadcrumbs_style a:active{
  text-decoration: none;
  color: #d83439;
}

.page_title_background .et_pb_module_heading{
  background: #d83b40;
  display: inline-flex;
  padding: 12px 30px 10px 50px;
  margin-left: -50px;
  position: relative;
}
.page_title_background .et_pb_module_heading:after{
  content: '';
  position: absolute;
  left: calc(100% - 10px);
  top: 0;
  width: 30px;
  height: 100%;
  background: #d83b40;
  transform: skewx(-8deg);
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .page_title_background .et_pb_module_heading{
    font-size: 32px !important;
    line-height: 1.4em;
    max-width: 100%;
    padding-right: 10px;
  }
  .page_title_background .et_pb_module_heading:after{
    left: calc(100% - 7px);
  }
}
/* et_pb_portfolio_filters */
.et_pb_portfolio_filters{
  display: flex;
  /*justify-content: center;*/
}
.realizacje_portfolio.et_pb_filterable_portfolio_0.et_pb_filterable_portfolio .et_pb_portfolio_filter a{
  border-radius: 0 !important;
  transition: all .3s !important;
  background-color: #d83439 !important;
  color: white !important;
  border: 1px solid #d83439 !important;
}
.realizacje_portfolio.et_pb_filterable_portfolio_0.et_pb_filterable_portfolio .et_pb_portfolio_filter a:hover,
.realizacje_portfolio.et_pb_filterable_portfolio_0.et_pb_filterable_portfolio .et_pb_portfolio_filter a:focus,
.realizacje_portfolio.et_pb_filterable_portfolio_0.et_pb_filterable_portfolio .et_pb_portfolio_filter a:active{
  text-decoration: none;
  opacity: .7;
}
.realizacje_portfolio.et_pb_filterable_portfolio .et_pb_portfolio_filters li a.active{
  background-color: white !important;
  color: #d83439 !important;
  pointer-events: none;
}
.realizacje_portfolio.et_pb_filterable_portfolio .et_pb_portofolio_pagination{
  border-top: none;
}
.et_portfolio_image{
  position: relative;
}
.et_portfolio_image img{
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.et_pb_filterable_portfolio .et_pb_portfolio_filters{margin-bottom: 10px;}
.et_pb_filterable_portfolio_grid .et_pb_portfolio_item{padding: 2px;}


/* galeria */
.et_pb_gallery_fullwidth .et_pb_gallery_image img, .et_pb_gallery_fullwidth .et_pb_gallery_item{
  width: 100%;
  max-height: 450px !important;
  min-height: 450px;
  object-fit: cover;
}

.product_color_list ul{
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
}
.product_color_list ul li{
  display: flex;
  flex-direction: column !important;
  align-items: center;
  width: 19%;
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .product_color_list ul li{
    width: 32%;
  }
}
.product_color_list.product_color_list_size ul li{
  width: 29%;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .product_color_list.product_color_list_size ul li{
    width: 33%;
  } 
}
.product_color_list.product_color_list_size ul li span{
  margin-top: 5px;
}
.product_color_list ul li strong{
  display: flex;
  flex-direction: column !important;
  align-items: center;
}
.product_color_list ul li img{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 10px;
}
.product_color_list.product_color_list_prowadnice ul li img{
  width: 90px;
  height: 90px;
  padding: 5px;
  border: 1px solid rgba(0,0,0,.12);
}

.sticky_galeria{
  position: sticky;
  top: 120px;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .sticky_galeria{
    position: relative;
    top: auto;
  }
}

footer .symbol_title:after{
  border-color: #f7f7f7; 
}

.about_numbers .et_pb_number_counter{
  border: 1px solid rgba(0,0,0,.12) !important;
  margin: 0 5px;
}

body:not(.et_pb_pagebuilder_layout) .et_pb_post_content{
  max-width: 1360px;
  margin: 0 auto;
}

.produkt-gallery {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.produkt-gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
  background: white;
  border: 1px solid #ededed;
  border-radius: 2px;
  padding: 2px;
}

.produkt-gallery-slider .swiper-slide {
  width: 100%;
  height: 480px;
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .produkt-gallery{
    margin-bottom: 20px;
    margin-top: -25px;
  }
  .produkt-gallery-slider .swiper-slide {
    height: 280px;
  }
}
.produkt-gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.produkt-gallery-thumbs {
  width: 100%;
  padding: 0;
}

.produkt-gallery-thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.45;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}

.produkt-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(0.95);
}

.produkt-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produkt-gallery-slider .swiper-button-next,
.produkt-gallery-slider .swiper-button-prev {
  top: auto;
  bottom: 135px;
  width: 44px;
  height: 44px;
  background: #DA484C;
  color: white;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produkt-gallery-slider .swiper-button-next::after,
.produkt-gallery-slider .swiper-button-prev::after {
  font-size: 20px; /* Уменьшаем размер иконок для лучшего отображения */
}

.produkt-gallery-slider .swiper-button-next:hover,
.produkt-gallery-slider .swiper-button-prev:hover,
.produkt-gallery-slider .swiper-button-next:focus,
.produkt-gallery-slider .swiper-button-prev:focus,
.produkt-gallery-slider .swiper-button-next:active,
.produkt-gallery-slider .swiper-button-prev:active {
  opacity: 0.6;
}

.produkt-gallery-slider .swiper-button-next {
  right: 25px;
}

.produkt-gallery-slider .swiper-button-prev {
  left: auto;
  right: 95px;
}
@media screen and (max-width: 1023px){
  .main_screen_calc_desktop_hidden{
    display: none;
  }
  .main_screen_calc_mobile_visible .et_pb_text_inner{
    padding: 25px;
    /*background: #ead222;*/
    background: #ebebeb;
    justify-content: flex-end;
    color: #212121;
    overflow: hidden;
  }
  .main_screen_calc_mobile_visible .et_pb_text_inner:before{
    content: '';
    position: absolute;
    left: -15px;
    top: -15px;
    width: 150px;
    height: 150px;
    transform: rotate(-25deg);
    mask: url(/wp-content/uploads/2024/10/kalkulator.svg) no-repeat center;
    -webkit-mask: url(/wp-content/uploads/2024/10/kalkulator.svg) no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: #212121;
    opacity: .07;
  }
  .main_screen_calc_mobile_visible .main_screen_icons{
    padding-top: 15px;
  }
}
@media screen and (min-width: 1024px){
  .main_screen_calc_mobile_visible{
    display: none;
  }
}

.realizacje_gallery.swiper .swiper-button-next::after, .realizacje_gallery.swiper .swiper-button-prev::after,
.produkty.swiper .swiper-button-next::after, .produkty.swiper .swiper-button-prev::after{
  color: #d83b40;
  transition: all .3s;
}
.realizacje_gallery.swiper .swiper-button-next:hover::after, .realizacje_gallery.swiper .swiper-button-prev:hover::after,
.produkty.swiper .swiper-button-next:hover::after, .produkty.swiper .swiper-button-prev:hover::after{
  color: white;
}


.realizacje_gallery_realizacje{
  flex-wrap: wrap;
}
.realizacje_gallery_realizacje .realizacje_gallery_item{
  margin-right: 1%;
  margin-bottom: 15px;
}
.realizacje_galeria_css ul.et_pb_tabs_controls{
  background: none;
}
.realizacje_galeria_css ul.et_pb_tabs_controls:after{
  border-top: none;
}
.realizacje_galeria_css .et_pb_tabs_controls li:not(.et_pb_tab_active){
  background: #ebebeb;
}
.realizacje_galeria_css .et_pb_tabs_controls li.et_pb_tab_active{
  border-right: none;
}
@media screen and (max-width: 1023px){
  .realizacje_gallery_realizacje{
    justify-content: space-between;
  }
  .realizacje_gallery_realizacje .realizacje_gallery_item{
    margin-right: 0;
    margin-bottom: 10px;
    width: 49%;
    min-height: 170px;
  }
}

@media screen and (min-width: 1024px){
  .header_main .menu_new_style li ul li a.submenu-has-sub-menu::after{
    content: '';
    background-color: #313131;
    background-image: none;
    mask-image: url('img/arrow_right.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url('img/arrow_right.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header_main .menu_new_style li ul li ul{
    border-left: none;
    top:-1px;
    border-radius: 2px;
    border: 1px solid #4a6fc3;
  }
  ul.menu_new_style > li{
    padding: 10px !important;
  }
  .menu_new_style > .menu-item-has-children > ul.sub-menu{
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 10px 15px rgba(0,0,0,.12);
    border: 1px solid #4a6fc3;
    /*border-right: 3px solid #4a6fc3;*/
  }
  .menu_new_style > .menu-item-has-children > ul.sub-menu li{
    margin: 0;
    padding: 0;
  }
  .menu_new_style > .menu-item-has-children > ul.sub-menu li:before{
    display: none;
  }
  .header_main .main_nav_style ul li{
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .header_main .main_nav_style ul li ul li{
    padding-bottom: 0;
    padding-top: 0;
  }
  .header_main .menu_new_style li a:hover, .header_main .menu_new_style li a:focus{
    color: #5e8aea !important;
    text-decoration: none !important;
  }
  .header_main .menu_new_style li ul li a:hover{
    background: #4a6fc3;
    color: white !important;
  }
  .menu_new_style > .menu-item-has-children > ul.sub-menu li a{
    border-radius: 0;
  }
  .menu_new_style > .menu-item-has-children > ul.sub-menu li.current-menu-item a {
    border: none;
  }
  .five_columns_main .et_pb_column{
    width: 19.6% !important;
    margin-right: .5% !important;
  }
  .four_columns_main .et_pb_column{
    width: 24% !important;
    margin-right: 1.333% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px){
  .rpin_content{
    max-width: 100%;
  }
  .produkty_item__img img{
    object-fit: cover;
  }
  .four_columns_main .et_pb_column:nth-last-child(-n+2){
    margin-bottom: 30px !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1150px){
  .produkty_item__desc{
    padding: 15px 15px 80px;
  }
  .produkty_item__desc h5{
    margin-bottom: 0;
  }
  .produkty_item__desc p{
    line-height: 24px;
  }
  .produkty_item__img img{
    object-fit: cover;
  }
}
.calc_result_form_group_full textarea{
  width: 100%;
  max-height: 120px;
  resize: none;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  padding: 10px 15px;
}
.calc_result_form_group_full label{
  margin-top: 0 !important;
}
.calc_pretitle_text{
  padding: 15px;
  margin-top: -10px;
  background: #f6f6f6;
  border-radius: 2px;
  border: 1px dashed #ababab;
}

.produkty_aside{
  margin-bottom: 25px !important;
}
.produkty_aside .et_pb_blog_grid .column{float: none;}
.produkty_aside article{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px !important;
  margin-bottom: 10px !important;
  background-color: #f9f9f9 !important;
  width: 100%;
  border-radius: 2px;
}
.produkty_aside article .et_pb_image_container{
  max-width: 90px;
  margin: 0 15px 0 0;
}
.produkty_aside article h2{
  margin-bottom: 0;
  padding-bottom: 0;
}
.produkty_aside article .et_pb_image_container a{
  margin-bottom: 0;
  border: 1px solid rgb(220 220 220);
  background: white;
  border-radius: 2px;
}
.produkty_aside article p{
  margin-bottom: 0;
}

.preheader {
  background: #1f1f1f;
  color: white;
  height: 36px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 50px;
  font-size: 14px;
}
@media (min-width: 320px) and (max-width: 767px){
  .preheader {
    margin-bottom: 10px;
  }
}

.preheader div {
  display: flex;
  gap: 3em;
}

.RightToLeft {
  display: flex;
  animation: RightToLeft 40s infinite linear; 
  white-space: nowrap;
  align-items: center;
}
.RightToLeft:hover {
  animation-play-state: paused;
}

.RightToLeft p {
  margin: 0 0 0 !important;
  padding-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: .2px;
}

.RightToLeft p a {
  color: white;
  font-weight: 600;
}

@keyframes RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.product_attr {
    /*margin-bottom: 40px;*/
}
.product_attr_item {
    display: grid;
    grid-template-columns: 50% 50%;
    border-bottom: 1px solid #e2e3e5;
}
.product_attr_item p {
    margin-block: unset;
    gap: 5px;
    margin: 5px 0;
    padding-bottom: 0 !important;
    font-size: 14px;
}
.product_attr_item p:last-child {
    font-weight: 600;
}
.product_attr_item p:first-child{
  position: relative;
  padding-right: 20px;
}
.product_attr_item p:first-child:after{
  content: '';
  position: absolute;
  right: 20px;
  top: 0;
  width: 1px;
  height: 100%;
  border-right: 1px dashed rgba(0,0,0,.2);
}
@media (min-width: 320px) and (max-width: 767px){
  .product_attr_item p {
    font-size: 14px;
    line-height: 18px !important;
    gap: 8px;
    margin: 8px 0;
  }
  .product_attr_item p:first-child{
    padding-right: 10px;
  }
  .product_attr_item p:first-child:after{
    right: 10px;
  }
}

.et_pb_contact_field.terms_accept {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.et_pb_contact_field.terms_accept label {
    margin-left: 10px;
    font-size: 14px;
    color: #333;
}

@media (min-width: 320px) and (max-width: 1023px){
  .kontakt_icons_mobile .et_pb_icon_0, 
  .kontakt_icons_mobile .et_pb_icon_1, 
  .kontakt_icons_mobile .et_pb_icon_2, 
  .kontakt_icons_mobile .et_pb_icon_3, 
  .kontakt_icons_mobile .et_pb_icon_4, 
  .kontakt_icons_mobile .et_pb_icon_5, 
  .kontakt_icons_mobile .et_pb_icon_6{
    margin-left: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .kontakt_icons_mobile .et_pb_column:first-child{
    margin-bottom: 0;
  }
  .kontakt_icons_mobile{
    margin-top: 5px;
  }
}


.et_pb_post a img{
  height: 290px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 320px) and (max-width: 767px){
  .et_pb_post a img{
    height: 170px;
  }
  .gtranslate_wrapper .gt_switcher-popup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px !important;
    padding-top: 4px !important;
  }
  .gtranslate_wrapper .gt_switcher-popup img{
    margin-right: 0 !important;
  }
  .gtranslate_wrapper .gt_switcher-popup span{
    margin-right: 0 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
  }
  .gtranslate_wrapper .gt_switcher-popup span:last-child{
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px){
  .phone{
    display: none;
  }  
}
.home_header{
  background: transparent !important; 
}
.home_header.active{
  background: #000000 !important;
}
.home_header:not(.active) .header_main .main_nav_style > ul > li > a,
.home_header .header_main .main_nav_style > ul > li > a{
  color: white;
}
body{
  background: white !important;
}
.header_main .main_nav_style ul li.current-menu-item ul li a{border:none;}

.header_main .main_nav_style ul li a{
  padding: 0;
  font-weight: 600;
  font-size: 15px;
}
.header_main .main_nav_style ul li {
  margin:0 10px;
  padding:0 10px;
}
.header_main .main_nav_style ul li:before{
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.12);
}
.header_main .main_nav_style ul li:first-child:before{
  display: none;
}
.main-section{
  max-width: 1380px;
}
.header_main .main_nav_style ul li.current-menu-item a{
  /*color: #1b68ad;*/
  border: none;
}

.et_pb_post_content .wp-block-list{
    padding-left: 25px !important;
}



.phone_mail_header_flex{
  display: flex;
}
.phone_mail_header_flex .email{
  background: #313131;
  margin-left: 20px;
  width: 50px;
  height: 50px;
  color: white;
}
.phone_mail_header_flex .email .icon-email{
  margin-right: 0;
}


/* tachometer START */
#tachometer{
    background: linear-gradient(288deg, #000000, transparent);
    margin: 0 auto;
    width: 300px;
    height: 300px;
    box-shadow: inset 0px 0px 9px 3px rgba(0, 0, 0, 1);
    border: 5px solid #171717;
    outline: 4px solid #2d7bcf;
    outline-offset: 0px;
    border-radius: 100%;
    display: block;
    position: relative;
    transform: scale(.8);
}
@media (min-width: 320px) and (max-width: 1023px){
  #tachometer{
    transform: scale(.5);
  }
}

.ii {
    position: absolute;
    width: 300px;
    height: 300px;
    left: -5px;
    top: -5px;
    z-index: 2;
}
.ii div {
    position: absolute;
    width: 300px;
    height: 300px;
    padding: 4px;
    box-sizing: border-box;
}
.ii div b {
    position: absolute;
    display: block;
    left: 50%;
    width: 5px;
    height: 20px;
    background: #FFF;
    margin: 0 -5px 0;
    
}
.ii div:nth-child(2n+1) b {
    width: 6px;
    height: 25px;
    margin: 0 -5px 0;
}

.ii div:nth-child(1) {
    transform: rotate(240deg);
}
.ii div:nth-child(2) {
    transform: rotate(255deg);
}
.ii div:nth-child(3) {
    transform: rotate(270deg);
}
.ii div:nth-child(4) {
    transform: rotate(285deg);
}
.ii div:nth-child(5) {
    transform: rotate(300deg);
}
.ii div:nth-child(6) {
    transform: rotate(315deg);
}
.ii div:nth-child(7) {
    transform: rotate(330deg);
}
.ii div:nth-child(8) {
    transform: rotate(345deg);
}
.ii div:nth-child(9) {
    transform: rotate(0deg);/*---*/
}
.ii div:nth-child(10) {
    transform: rotate(15deg);
}
.ii div:nth-child(11) {
    transform: rotate(30deg);
}
.ii div:nth-child(12) {
    transform: rotate(45deg);
}
.ii div:nth-child(13) {
    transform: rotate(60deg);
}
.ii div:nth-child(14) {
    transform: rotate(75deg);
}
.ii div:nth-child(15) {
    transform: rotate(90deg);
}
.ii div:nth-child(16) {
    transform: rotate(105deg);
}
.ii div:nth-child(17) {
    transform: rotate(120deg);
}


[class^="num_"] {
    color:#FFF;
    display: block;
    position: absolute;
    width: 1px;
    font-size:24px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-decoration:none;
      
}

.num_1 {transform: rotate(120deg); top:20px;}
.num_2 {transform: rotate(90deg); top:13px; left:5px}
.num_3 {transform: rotate(60deg); top:21px;}
.num_4 {transform: rotate(30deg); top:25px;}
.num_5 {transform: rotate(0deg);  top:30px;left:-8px}
.num_6 {transform: rotate(330deg); top:35px;left:-10px}
.num_7 {transform: rotate(300deg); top:35px;left:-7px;}
.num_8 {transform: rotate(270deg);top:30px; left: -3px;}
.num_9 {transform: rotate(240deg);top:30px;left:8px}

#redline{     
    width: 6px;
    height: 111px;
    position: absolute;
    top: 122px;
    right: -1px;
    border-width: 22px;
    border-radius: 50%;
    border-style: solid;
    border-color: #171717 #F14134 #171717 #171717;
    transform: rotate(15deg);
    z-index: 1;
    filter: blur(6px);
}


.line {
    background: #F14134;
    background-image: linear-gradient(to bottom, #F14134, #343536);
    height: 0;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 0;
    transform-origin: 50% 100%;
    margin: -85px -4px 0;
    padding: 85px 4px 0;
    z-index: 2;
    border-radius: 50% 50% 0 0;
    transform: rotate(-95deg);
    animation: pendulum;
    animation-iteration-count: infinite;
    animation-duration: 4s;
        
}

.pin {
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    margin: -8px 0 0 -10px;
    background-color: #343536;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(to bottom, #F14134, #343536);
    z-index: 4;
}


.inner {
    width: 10px;
    height: 10px;
    margin: 5px auto 0;
    background-color: #343536;
    border-radius: 100%;
    box-shadow: inset 0 8px 15px 0 rgba(167, 23, 10, 0.4);
    position: relative;
}

@keyframes pendulum {
    10% {
        transform:rotate(100deg);
    }   
    11% {
        transform:rotate(98deg);
    }
    12% {
        transform:rotate(96deg);
    }
    13% {
        transform:rotate(98deg);
    }
    14% {
        transform:rotate(96deg);
    }
    15% {
        transform:rotate(98deg);
    }
    16% {
        transform:rotate(96deg);
    }
    17% {
        transform:rotate(98deg);
    }
    18% {
        transform:rotate(96deg);
    }
    19% {
        transform:rotate(98deg);
    }  
}
/* tachometer END */


#page-container{
  overflow: initial !important;
}
.logo{position: absolute; height: 125px; width: 223px; top: -10px; left: -5px; transition: all .3s;}
.logo img{max-height: 125px; transition: all .3s; border-radius: 0 0 2px 2px;}
.logo_group{width: 223px;}
header.active .logo{height: 84px;}
header.active .logo img{max-height: 84px; border-radius: 0 0 0 0;}
@media (min-width: 1024px) and (max-width: 1140px){
  .logo_group{width: 150px;}
  .logo{height: 94px; width: 150px;}
  .logo img{max-height: 94px;}
  .mobile_ancore_moved .et_pb_text:nth-child(2){
    max-width: 80%;
  }
  .five_columns_main{
    justify-content: center;
  }
  .five_columns_main .et_pb_gutters2 .et_pb_column_1_5, .et_pb_gutters2.et_pb_row .et_pb_column_1_5{
    width: 32.8%;
    margin-bottom: 10px;
  }
}
@media (min-width: 320px) and (max-width: 1023px){
  .logo{height: 80px; width: 150px; left: 0;}
  .logo img{max-height: 80px;}
  .logo_group{width: 150px;}
  header.active .logo{height: 62px;}
  header.active .logo img{max-height: 62px;}

  .phone_mail_header_flex{
    width: 100%;
    justify-content: flex-end;
    padding-right: 115px;
  }
  .phone_mail_header_flex .email{
    display: none;
  }
  .home_header a.glink.gt_switcher-popup{
    top: 0;
  }
  .menu_mobile{
    border-radius: 2px;
    border: 1px solid #ffffff;
  }
  .menu_mobile span{
    background: white;
  }
  .menu_mobile span:nth-child(2){
    color: white;
  }
  .phone_mobile{
    border-radius: 2px;
    background: #ED6075;
  }
}

.gradient_font .et_pb_module_heading{
    background: linear-gradient(-108deg, #001428 0%, #0076d9 71%, #003b5c 90%, #140000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gradient_font_center .et_pb_heading_container{text-align: center;}
.gradient_font_center .et_pb_module_heading{
    background: linear-gradient(-108deg, #001428 0%, #0076d9 71%, #003b5c 90%, #140000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gradient_font .et_pb_module_heading, .gradient_font_center .et_pb_module_heading{
  margin-bottom: 0px !important;
}

.gradient_font_atuty .et_pb_module_heading{
  background: linear-gradient(-108deg, #ffffff 0%, #afd2f0 71%, #afdbf3 90%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.gradient_font_footer .et_pb_text_inner{
  background: linear-gradient(-108deg, #ffffff 0%, #afd2f0 71%, #afdbf3 90%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; 
}

#kontakt-sec ul{
  list-style: none;
}
#kontakt-sec ul > li{
  margin-bottom: 7px;
}
#kontakt-sec ul > li > a{
  color: white;
  font-size: 15px;
  color: white;
  transition: all .3s;
}
#kontakt-sec ul > li > a:hover{
  color: #1c7fef;
}
#kontakt-sec p{
  color: white;
}


.title_line{
  position: relative;
}
.title_line:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 75px;
  height: 3px;
  background: url('/wp-content/uploads/2025/04/title_line.svg') center no-repeat;
  background-size: contain;
}

.square_red, .square_blue{
  position: relative;
  padding-left: 33px;
}
.square_red:before, .square_blue:before{
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  height: 22px;
  width: 22px;
  border-radius: 1px;
}
.square_red:before{
  background: #ED6075;
}
.square_blue:before{
  background: #26A8E4;
}


.blue_btn_left{
  background: #26A8E4;
  height: 50px;
  color: white;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding-left: 70px;
  padding-right: 25px;
  border: none !important;
  font-size: 16px;
  border-radius: 2px;
}
.blue_btn_left:hover{
  padding-left: 70px !important;
  padding-right: 25px !important;
  background: #000000 !important;
  color: white !important;
  text-decoration: none !important;
}
.blue_btn_left:before{
  content: '';
  display: flex !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #000000;
  transform: translateX(0) !important;
  opacity: 1;
  margin-left: 0;
}
.blue_btn_left:after{
  content: '';
  position: absolute;
  width: 50px;
  height: 100%;
  left: 0;
  top: 0;
  mask-image: url('/wp-content/uploads/2025/04/plus.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 20px;
  -webkit-mask-image: url('/wp-content/uploads/2025/04/plus.svg');
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 20px;
  background-color: white;
  background-size: 20px 20px;
  background-position: center;
  z-index: 1;
  transform: translateX(0) rotate(0deg) !important;
  opacity: 1;
  margin-left: 0;
}
.blue_btn_left:hover:after{
  transform: translateX(0) rotate(90deg) !important;
}

.blue_btn_right{
  background: #26A8E4;
  height: 50px;
  color: white;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding-right: 70px;
  padding-left: 25px;
  border: none !important;
  font-size: 16px;
  border-radius: 2px;
}
.blue_btn_right:hover{
  padding-right: 70px !important;
  padding-left: 25px !important;
  background: #000000 !important;
  color: white !important;
  text-decoration: none !important;
}
.blue_btn_right:before{
  content: '';
  display: flex !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #000000;
  transform: translateX(0) !important;
  opacity: 1;
  margin-left: 0;
}
.blue_btn_right:after{
  content: '';
  position: absolute;
  width: 50px;
  height: 100%;
  right: 0;
  top: 0;
  mask-image: url('/wp-content/uploads/2025/04/plus.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 20px;
  -webkit-mask-image: url('/wp-content/uploads/2025/04/plus.svg');
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 20px;
  background-color: white;
  background-size: 20px 20px;
  background-position: center;
  z-index: 1;
  transform: translateX(0) rotate(0deg) !important;
  opacity: 1;
  margin-left: 0;
}
.blue_btn_right:hover:after{
  transform: translateX(0) rotate(90deg) !important;
}

.red_btn_right{
  background: #ED6075;
  height: 50px;
  color: white;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding-right: 70px;
  padding-left: 25px;
  border: none !important;
  font-size: 16px;
  border-radius: 2px;
}
.red_btn_right:hover{
  padding-right: 70px !important;
  padding-left: 25px !important;
  background: #000000 !important;
  color: white !important;
  text-decoration: none !important;
}
.red_btn_right:before{
  content: '';
  display: flex !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #000000;
  transform: translateX(0) !important;
  opacity: 1;
  margin-left: 0;
}
.red_btn_right:after{
  content: '';
  position: absolute;
  width: 50px;
  height: 100%;
  right: 0;
  top: 0;
  mask-image: url('/wp-content/uploads/2025/04/plus.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 20px;
  -webkit-mask-image: url('/wp-content/uploads/2025/04/plus.svg');
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 20px;
  background-color: white;
  background-size: 20px 20px;
  background-position: center;
  z-index: 1;
  transform: translateX(0) rotate(0deg) !important;
  opacity: 1;
  margin-left: 0;
}
.red_btn_right:hover:after{
  transform: translateX(0) rotate(90deg) !important;
}

.square_line_black {
  position: relative;
}

.square_line_black::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 20px;
  height: 20px;
  width: 100%; /* или фиксированная ширина */
  background: repeating-linear-gradient(
    to right,
    black 0px,
    black 20px,
    transparent 20px,
    transparent 40px
  );
}
.square_line_lightgray {
  position: relative;
}
.square_line_lightgray::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  height: 20px;
  width: 100%; /* или фиксированная ширина */
  background: repeating-linear-gradient(
    to right,
    #fbfbfb 0px,
    #fbfbfb 20px,
    transparent 20px,
    transparent 40px
  );
}
.square_line_lightgray_bottom {
  position: relative;
}
.square_line_lightgray_bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  height: 20px;
  width: 100%; /* или фиксированная ширина */
  background: repeating-linear-gradient(
    to right,
    #fbfbfb 0px,
    #fbfbfb 20px,
    white 20px,
    white 40px
  );
}

.square_line_white {
  position: relative;
}
.square_line_white::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  height: 20px;
  width: 100%; /* lub stała szerokość */
  background: repeating-linear-gradient(
    to right,
    white 0px,
    white 20px,
    transparent 20px,
    transparent 40px
  );
}

.brands_gallery_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.brands_gallery_item:after{
  content: '';
  position: absolute;
  top:0;
  right: -15px;
  height: 100%;
  border-right: 1px solid rgba(0,0,0,.12);
}
.brands_gallery_item__img{
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands_gallery_item__img img{
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}
.brands_gallery_item__title{
  font: 700 16px/22px 'Open Sans', sans-serif;
  text-align: center;
  max-width: 150px;
}
.brands_gallery.swiper .swiper-button-next, 
.brands_gallery.swiper .swiper-button-prev {
    top: -70px;
    width: 44px;
    height: 44px;
    color: white;
    border: none;
    transition: all .3s;
}
@media (max-width: 767px){
  .brands_gallery.swiper .swiper-button-next, 
  .brands_gallery.swiper .swiper-button-prev {
    top:-20px;
  }
  .brands_gallery_item:after{
    top: 20px;
    height: calc(100% - 20px);
  }
}
.brands_gallery.swiper .swiper-button-next{
  background: #000000;
}
.brands_gallery.swiper .swiper-button-prev{
  background: #26A8E4; 
}
.brands_gallery.swiper .swiper-button-next:hover{
  background: #26A8E4;
}
.brands_gallery.swiper .swiper-button-prev:hover{
  background: #000000;
}
.brands_gallery.swiper .swiper-button-next {
    right: 0;
}
.brands_gallery.swiper .swiper-button-prev {
    left: auto;
    right: 44px;
}
@media (max-width: 1023px){
  .brands_gallery{
    margin-left: -15px;
    margin-right: -15px !important;
    padding: 0 15px;
    width: calc(100% + 30px) !important;
  }
  .brands_gallery.swiper .swiper-button-next {
    right: 15px;
  }
  .brands_gallery.swiper .swiper-button-prev {
    right: 59px;
  }
  .brands_gallery_item:after{
    right: -10px;
  }
  .brands_gallery_item__title {
    font: 700 15px/22px 'Open Sans', sans-serif;
  }
}
.brands_gallery.swiper .swiper-button-next:after,
.brands_gallery.swiper .swiper-button-prev:after{
  font-size: 21px;
}
.brands_gallery.swiper {
    overflow: initial;
    overflow-x: clip;
}

/*CCM okienko */
@media (min-width: 768px) {
  .cky-consent-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 1000 !important;
  }
}
@media (max-width: 1023px){
  .mm-listitem__text{
    white-space: normal;
  }
}

