:root {
  --orange: #ff4d15;
  --black: #161616;
  --lightgrey: #f0f0f0;
}

html{
  font-size: 16px;
}

body{
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size:1rem;
  font-weight: 400;
  line-height: 1.6;
}

.container {
  max-width: 1600px;
}



/* Links
--------------------------------------------- */
a {
	color: var(--orange);
}

a:hover,
a:focus,
a:active {
	color: var(--orange);
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

#masthead{
  position: relative;
  z-index: 99;
}

.site-logo{
  display: inline-block;
  position: relative;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.logo-col{text-align: center;}

.logo-alt{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

img.custom-logo{
  width: 280px;
}

.admin-bar #main-header{
  top: 32px;
}

#main-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}


#main-header.fixed{
  background: var(--black);
}




/* Headers */

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.h1,
h1 {
 font-size:calc(1.375rem + 1.5vw)
}
@media(min-width:1200px) {
 .h1,
 h1 {
  font-size:2.5rem
 }
}
.h2,
h2 {
 font-size:calc(1.325rem + .9vw)
}
@media(min-width:1200px) {
 .h2,
 h2 {
  font-size:2rem
 }
}
.h3,
h3 {
 font-size:calc(1.3rem + .6vw)
}
@media(min-width:1200px) {
 .h3,
 h3 {
  font-size:1.75rem
 }
}
.h4,
h4 {
 font-size:calc(1.275rem + .3vw)
}
@media(min-width:1200px) {
 .h4,
 h4 {
  font-size:1.5rem
 }
}
.h5,
h5 {
 font-size:1.25rem
}
.h6,
h6 {
 font-size:1rem
}

.text-center{
  text-align: center;
}

/* Navigation - Main menu */

.menu-icon {
  height:  54px;
  width: 54px;
  z-index: 2;
  cursor: pointer;
  background: var(--orange);
  margin-left: 15px;
  border-radius: 50%;
}
.menu-icon__line {
  height: 3px;
  width: 36px;
  display: block;
  background-color: #ffffff;
  margin-top: 6px;
  margin-left: 9px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}

.menu-icon__line-left{
  margin-top: 20px;
}


.navigation {
  position: fixed;
  display: flex;
  align-items: end;
  opacity: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transform: translateX(0%) translateY(-100%);
}


.nav-before, .nav-after {
  content: "";
  position: fixed;
  width: 33%;
  height: 100vh;
  right: 0;
  background: rgba(0, 0, 0, 0.44);
  z-index: -1;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transform: translateX(0%) translateY(-100%);
}

.nav-bg{
  content: "";
  position: fixed;
  width: 100%;
  height: 100vh;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transform: translateX(0%) translateY(-100%);
}

.nav-container{
  width: 33%;
  margin-left: auto;
  padding-left: 50px;
}

.nav-after {
  background: var(--orange);
  transition-delay: 0.1s;
}
.nav-before {
  transition-delay: 0.2s;
}

.nav__content {
  width: 100%;
  padding-bottom: 80px;
}

.nav__list-item {
  position: relative;
  display: inline-block;
  transition-delay: 0.8s;
  opacity: 0;
  transform: translate(0%, 100%);
  transition: opacity 0.2s ease, transform 0.3s ease;
  margin-right: 25px;
}
.nav__list-item:before {
  content: "";
  position: absolute;
  background: #000000;
  width: 20px;
  height: 1px;
  top: 100%;
  transform: translate(0%, 0%);
  transition: all 0.3s ease;
  z-index: -1;
}
.nav__list-item:hover:before {
  width: 100%;
}

body.nav-active .menu-icon{
  background: var(--black);
}

body.nav-active .menu-icon__line {
  transform: translate(1px, -4px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  transform: translate(0px, 6px) rotate(45deg);
}


body.nav-active .navigation,
body.nav-active .nav-bg,
body.nav-active .nav-before,
body.nav-active .nav-after {
  transform: translateX(0%) translateY(0%);
}

body.nav-active .navigation {
  opacity: 1;
}

body.nav-active .nav-after{
  transition-delay: 0.1s;
}
body.nav-active .nav-before {
  transition-delay: 0s;
}

body.nav-active .custom-logo-link {
  opacity: 0;
}

body.nav-active .logo-alt {
  opacity: 1;
  z-index: 1;
  transition-delay: 0.3s;
}

body.nav-active #main-header.fixed {
  background: transparent;
}

body.nav-active .top-right .button{
  background-color: var(--black);
}

.top-right{
  display: flex;
  justify-content: end;
}

 .site-menu{
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;

}


.socials-title{
  display: block;
  color: #FFF;
  margin-bottom: 20px;
  font-size: 24px;
}

.menu-social-media a{
  display: inline-block;
  margin-right: 20px;
  color: #FFF;
  font-weight: 700;
  position: relative;
  font-size: 18px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-social-media a:after{
  content: '';
  width: 42px;
  height: 3px;
  background: currentcolor;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: left;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-social-media a:hover,
.menu-social-media a:focus{
  text-decoration: none;
  color: var(--black);
}

.menu-social-media a:hover:after{
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* End main menu */

/* Socials list */

.socials-list{
  padding: 0;
  margin: 0;
  list-style: none;
}

.socials-list li a{
  display: inline-block;
  overflow: hidden;
  margin-left: -30px;
  font-size: 26px;
  color: var(--black);
  position: relative;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.socials-list li a:hover{
  text-decoration: none;
  font-weight: 700;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

.socials-list li a span{
  display: inline-block;
   opacity: 0;
  -webkit-transform: translateX(-30px);
  transform:  translateX(-30px);
  color: var(--orange);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu-socials{
  margin-bottom: 50px;
}

.nav-container .socials-list li a{
  font-size: 30px;
}

.nav-container .socials-list li a span{
  color: var(--black);
}

.nav-container .socials-list li a,
.site-footer .socials-list li a{
  color: #FFF;
}

.site-footer .socials-list li a{
  margin-left: -20px;
  font-size: 1rem;
}

.site-footer .socials-list li a:hover{
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}

.site-footer  .socials-list li a span{
  -webkit-transform: translateX(-20px);
  transform:  translateX(-20px);
}

.nav-container .socials-list li a span{
  color: var(--black);
}

.socials-list li a:hover span{
  opacity: 1;
  -webkit-transform:  translateX(0);
  transform: translateX(0);
}

/* Main menu links */


.site-menu li a{
  display: inline-block;
  overflow: hidden;
  margin-left: -60px;
  color: #FFF;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.site-menu li a:hover,
.site-menu li a:focus{
  font-weight: 700;
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
  text-decoration: none;
}

.site-menu li a:before{
  content: '\e80f';
  font-family: "pueoiconpack";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black);
  opacity: 0;
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.site-menu li a:hover:before{
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* button */

.icon-strzalka:before{
  margin-left: 0;
  margin-right: 0;
}

.button{
  display: inline-block;
    color: #FFF;
    background: var(--orange);
    padding: 0 30px;
    min-width: 200px;
    font-size: 18px;
    position: relative;
    text-align: center;
    font-weight: 400;
    height: 54px;
    line-height: 54px;
    font-size: 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 50px;

}

.button:hover,
.button:focus{
  background: var(--black);
  color: #FFF;
  text-decoration: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}


.button.on_black_bg:hover,
.button.on_black_bg:focus{
    background: #FFF;
    color: var(--black);
    box-shadow: 0 0 40px rgba(228, 71, 21, 0.4);
}

.button.white-button{
  background: #FFF;
  color: var(--black);
}

.button.white-button:hover,
.button.white-button:focus{
  background: var(--orange);
  color: #FFF;
}

.top-right .button:hover,
.top-right .button:focus{
  background: #FFF;
  color: var(--black);
  box-shadow: 0 0 40px rgba(228, 71, 21, 0.4);
}

.single-portfolio .top-right .button:hover,
.single-portfolio .top-right .button:focus{
  background:var(--black);
  color: #FFF;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.single-portfolio #main-header.fixed .top-right .button:hover,
.single-portfolio #main-header.fixed .top-right .button:focus,
body.nav-active .top-right .button:hover,
body.nav-active .top-right .button:focus{
  background: #FFF;
  color: var(--black);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.hero-btn{
  height: 62px;
  line-height: 64px;
  overflow: hidden;
  padding: 0 52px;
  box-shadow: 0 4px 20px rgba(249,175,49,.6);
}


.wpcf7-submit{
  border: none;
  margin-top: 10px;
  border-radius: 0;
  border-radius: 30px;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus{
  background:var(--black);
  color:  #FFF;
}

.wpcf7-form p{margin: 0}

/* hero */


.wpcf7-not-valid-tip {
  margin-top: -10px;
  margin-bottom: 10px;
  text-align: left;
}


.wpcf7 form .wpcf7-response-output {
  padding: 15px;
  border-radius: 30px;
}

.form-control.wpcf7-not-valid{
  border-color: #dc3232;
}

.wpcf7-spinner {display: none!important}

.form-control {
  height: auto;
  padding: 15px 30px;
  border: 1px solid #FFF;
  background: #FFF;
  border-radius: 30px;
  margin-bottom: 20px;
  color: var(--black);
}

textarea.form-control{
  padding: 30px;
  height: 250px;
}

.form-control::placeholder {
  opacity: 0.6;
}

.form-control:focus{
  box-shadow: 0 4px 20px rgba(255, 77, 21, 0.4);
  border-color: var(--orange);
}

.form-col{ padding-left: 5px; padding-right: 5px}
.form-row{margin-left: -5px;margin-right: -5px;}


.home-hero{
  height: 620px;
  /* height: 60vh; */

  position: relative;
  overflow: hidden;
}


.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.swiper-slide .entity-img {
  display: none;
}

 .swiper-container {
   width: 100%;
  float: left;
  transition: opacity 0.6s ease, transform 0.3s ease;
}

.slide-bgimg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.slider-overlink{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}

.slide-bgimg:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 134, 196, 0.2); */
}

.hero-text{
  padding-left: 100px;
  transform: translateY(50px);
  opacity: 0;
  transition: all .3s ease;
}

.hero-text.show{
  transform: translateY(0);
  opacity: 1;
}

.hero-content{
  color: #FFF;
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content h2{
  font-size: 80px;
  line-height: 74px;
  font-weight: 400;
  letter-spacing: 2px;
}

.hero-desc{
  width: 50%;
  margin: 30px 0;
}

.slider_main-description{margin: 0}

.hero-subtitle{
  display: block;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
}

.hero-content .button{
  margin-top: 10px;
}

.slider-navigator{
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 5;
  color: #FFF;
}

.slider-buttons{
  display: flex;
  /* border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35); */

}

.slider-buttons .slide-nav-btn{
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1;
  width: 25%;
  padding: 28px 30px 28px 30px;
  position: relative;
  background: #FFF;
  color: var(--black);
  margin: 0px 8px;
  position: relative;
}

.slide-nav-btn:after{
  content: '\e811';
  font-family: "pueoiconpack";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  opacity: .8;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  position: absolute;
  bottom: 30px;
  right: 15px;

}

.slider-buttons .slide-nav-btn .nr{
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
}

.pagin-text{
  font-weight: 700;
  font-size: 26px;
}

.slider-buttons .slide-nav-btn:first-of-type{
  border: none;
}

.pad_0{padding: 0}

.slide-nav-btn{
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.slide-nav-btn:hover,
.slide-nav-btn:focus,
.slide-nav-btn.active{
  background: var(--black);
  color: #FFF;
  cursor: pointer;
}

/* .swiper-slide .hero-content .caption {
  transform: translateX(50px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.7s ease;
}
.swiper-slide .hero-content .caption.show {
  transform: translateX(0);
  opacity: 1;
} */

.home-slider-wrapper .hero-icon-left{
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.home-slider-wrapper .hero-icon-right{
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}

.home-slider-wrapper .hero-icon-left,
.home-slider-wrapper .hero-icon-right{
  opacity: 0;
  transition: all 0.7s;
}


.home-slider-wrapper:hover .hero-icon-left,
.home-slider-wrapper:hover .hero-icon-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.home-slider-wrapper {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-icon-left,
.hero-icon-right{
  position: absolute;
  top: 50%;
  color: #FFF;
  background: transparent;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  margin-top: -22px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.33);
  /* border-radius: 50%; */
  -webkit-transition:  all 250ms;
  transition:  all 250ms;
}

.hero-icon-left{
  left: 85px;
}

.hero-icon-right{
  right: 85px;
}

.hero-icon-left:after,
.hero-icon-right:after{
  content: '';
}

.hero-icon-left:hover,
.hero-icon-right:hover{
  background: #294a96;
  border-color: #294a96;
}

/* Slider header */

.home-slider-header{
  background-color: var(--black);
  background-image: url('https://studioznak.pl/wp-content/uploads/2024/03/bg_hero.jpeg');
  background-position: center;
  background-size: cover;
  color: #FFF;
  padding: 200px 0 30px 0;
}

.slider_main-title{
  font-size: 74px;
}

.slider_main-title span{
  color: var(--orange);
}

.scroll-down-wrap{
  text-align: right;
}

.scroll-down{
  color: #FFF;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.scroll-down:hover,
.scroll-down:focus{
  text-decoration: none;
}

.scroll-down span{
  color: var(--orange);
  display: inline-block;
  margin-right: 3px;
}

/* Video */

.rel-video{
  display: block;
  width: 100%;
  height: 650px;
  height: 35vw;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-bottom: -200px;
  margin-top: 50px;
  border-radius: 50px;
}

#rel-video{
   position: absolute;
   object-fit: cover;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   height: 100%;
   width: 100%;
}

/* After slider title */

.after-hero-slogan{
  padding: 300px 0 100px 0;
}

.section-title{
  font-size: 74px;
}

.section-title span{
  color: var(--orange);
}


/* Lines */

.pos-relative{
  position: relative;
}

.section-lines{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-lines .container,
.section-lines .row{
  height: 100%;
}

.section-lines .sec-line{
  height: 100%;
  position: relative;
  border-left: 1px solid rgba(255,255,255,.1);
}

.section-lines .sec-line.line-4{
  border-right: 1px solid rgba(255,255,255,.1);
}

/* For white bg */
.section-lines.lines-alt .sec-line{border-left: 1px solid rgba(0,0,0,.1);}
.section-lines.lines-alt .sec-line.line-4{border-right: 1px solid rgba(0,0,0,.1);}

.section-lines.blue-lines .line-1:after,
.section-lines.blue-lines .line-3:after{
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  height: 150px;
  width: 1px;
  background: var(--orange);
}

.section-lines.blue-lines.dark-lines .line-1:after,
.section-lines.blue-lines.dark-lines .line-3:after{
  background: var(--black);
}

.section-lines.blue-lines .line-3:after{
  top: auto;
  bottom: 0;
}

/* Back to top */

#back_top {
  display: inline-block;
  background-color: var(--orange);
  color: #FFF;
  width: 54px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  height: 54px;
  text-align: center;
  position: fixed;
  font-size: 20px;
  bottom: 30px;
  right: 30px;
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
  z-index: 900;
}

#back_top:hover{
  box-shadow: 0 0 30px rgba(255, 77, 21, 0.4);
}

#back_top svg{
  fill: #FFF;
}

#back_top.show {
  opacity: 1;
  visibility: visible;
}





/* About */

.about_us{
  padding: 150px 0;
  background-color: var(--lightgrey);
}

.about_us .section-title{
  margin-bottom: 50px;
}

.section-header.centered{
  text-align: center;
}

.section-header span{
  color: var(--orange);
}

.section-header h2{
  font-size: 74px;
  color: var(--black);
  margin-bottom: 20px;
}


.about__item{
  padding: 70px 50px;
  height: 100%;
  border-radius: 50px;
}

.about__item:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
  z-index: -1;
  border-radius: 50px;
}

.about__item:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: -1;
  border-radius: 50px;
  box-shadow: 0 0 50px rgba(0,0,0,0.15);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about__item:hover:before{
  opacity: 1;
}

.block-title-wrapper{
  -webkit-display: flex;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}

.title-cont{
  padding-left: 30px;
  width: calc(100% - 75px);
}

.about__item .icon{
    border-radius: 40px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 90px;
}

.about__item:hover .icon{
  box-shadow: 0 0 40px rgba(228, 71, 21, 0.4);
}


.about__item h3{
  font-size: 30px;
  position: relative;
  font-weight: 400;
  color: var(--black);
}


.about__item p{
  margin: 0;
  color: var(--black);
}

/* Home projects */

.home-projects{
  background-color: var(--black);
  padding: 100px 0;
}


.all-projects{
  text-align: center;
  margin-top: 50px;
}

.archive-post{
  margin-bottom: 30px;
}

.archive-post .image-wrap{
  overflow: hidden;
  position: relative;
  border-radius: 50px;
}


.archive-post .image-wrap span{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 100px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin-top: -25px;
  margin-left: -25px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateX( -50px );
  transform: translateX( -50px );
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.archive-post:hover .image-wrap span{
  opacity: 1;
  -webkit-transform: translateX( 0 );
  transform: translateX( 0 );
}

.archive-post .hover-thumb img{
  opacity: 0;
  -webkit-transition: all 650ms ease;
  transition: all 650ms ease;
}

.archive-post:hover .hover-thumb img,
.archive-post:focus .hover-thumb img{
  opacity: 1;
}

.kontakt-text span{color: var(--orange);}

.archive-post .hover-thumb{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.archive-post .hover-thumb img{
  object-fit: cover;
}

.archive-post h2{
  margin-bottom: 5px;
  margin-top: 20px;
}

.archive-post h2 a{
  color: #FFF;
}

.page-header{
  background-color: var(--black);
  background-image: url('https://studioznak.pl/wp-content/uploads/2024/03/bg_hero.jpeg');
  background-position: center;
  background-size: cover;
  color: #FFF;
  padding: 150px 0 150px 0;
}

.elementor-title h1,
.archive-title{
  text-transform: lowercase;
  font-size: 250px;
  text-align: right;
  line-height: 1;
  margin-bottom: 20px;
}

.archive-header .section-title{
  margin-bottom: 50px;
}

.archive-header-right{
  font-size: 20px;
}

.archive-bg{
  background: var(--black);
  padding: 150px 0;
}

.go-back-url{
  color: #FFF;
  font-size: 20px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.go-back-url span{
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
  margin-right: 10px;
}

/* Single project */

.single-header{
  padding-top: 150px;
  padding-bottom: 150px;
}

.single-header .go-back-url{
  color: var(--black);
}

.single-header .go-back-url span{
  color: var(--orange);
}

.single-title{
  font-size: 70px;
  margin: 100px 0;
}

.single-title span{color: var(--orange)}

.project-details{font-size: 20px}

.project-details-title{color: var(--orange)}

.project-logo{text-align: center;}

.project-description{padding: 150px 0}

.description-left{
  padding-right: 80px;
}

.description-right{
  padding-left: 80px;
}

.project-image_3,
.project-images1and2{
  padding: 100px 0;
  text-align: center;
}

.project-image_3{
	padding: 100px 0 50px 0;
}


.project-external{ margin-top: 50px;}


/* Underline anim */
.tags a,
.go-back-url,
.archive-post h2 a{
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg,currentColor 0,currentColor 100%);
  background-position: 100% calc(100% - 1px);
  background-size: 0 2px;
  -webkit-transition: background-size .5s cubic-bezier(.25,.46,.35,.94),color .2s ease-out;
  transition: background-size .5s cubic-bezier(.25,.46,.35,.94),color .2s ease-out;
}

.go-back-url:hover,
.tags a:hover,
.archive-post h2 a:hover{
  text-decoration: none;
  background-size: 100% 2px;
  background-position: 0 calc(100% - 1px);
}

/* End anim */

.archive-post h2 a span{
  color: var(--orange);
}

.tags{display: block}

.tags a{
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
  color: #FFF;
  font-size: 18px;
}

.grecaptcha-badge{display: none!important}

/* Section contact */

.section-kontakt{
  padding: 100px 0;
  background: var(--lightgrey);
}

.kontakt-text{
  font-size: 26px;
  margin-bottom: 50px;
}

.kontakt-text a{
  color: var(--black);
}

.section-kontakt .section-header h2 {
  margin-bottom: 50px;
}


/* Swiper */

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}

.swiper-pagination-bullet-active {
  background: #f9af31;
}


.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 60px;
}

.swiper-button-next, .swiper-button-prev {
  cursor: pointer;
  color: #f9af31;
}

.button-prev,
.button-next{
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 45px;
  margin-top: -22px;
  z-index: 3;
}

.button-prev:before,
.button-next:before{
  content: '';
  display: block;
  background: #f9af31;
  /* box-shadow: 0 4px 20px rgba(249,175,49,.6); */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -7px;
  z-index: -1;
  transition: .3s;
}

.button-prev:hover:before{
  box-shadow: 0 4px 20px rgba(249,175,49,.6);
  transform: translateX(10px);
}

.button-next:hover:before{
  box-shadow: 0 4px 20px rgba(249,175,49,.6);
  transform: translateX(-10px);
}

.button-prev:before{ left: -30px;}
.button-next:before{ right: -30px;}

.button-prev svg,
.button-next svg{
  fill: #1f1f1f;
}

.button-prev{
  left: 30px;
}

.button-prev svg{
  margin-right: -15px;
}

.button-next svg{
  margin-left: -15px;
}

.button-next{
  right: 30px;
}

.error-404{
  padding: 150px 0;
  padding: 150px 0;
  background: var(--black);
  color: #FFF;
}

.cmplz-cookiebanner .cmplz-links .cmplz-link,
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {font-weight: 700!important}

.slide-bgimg.klima-slide{
  background-position: top;
}

/* Footer */

.site-footer{
  background: var(--black);
  color: #FFF;
}

.footer-widgets{
  padding: 100px 0;
  position: relative;
}

.footer-slogan{
  font-size: 74px;
  margin-bottom: 100px;
}

.footer-slogan a{
  font-weight: 700;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg,currentColor 0,currentColor 100%);
  background-position: 100% calc(100% - 3px);
  background-size: 0 4px;
  transition: background-size .5s cubic-bezier(.25,.46,.35,.94),color .2s ease-out;
}

.footer-slogan a:hover{
  text-decoration: none;
  background-size: 100% 4px;
  background-position: 0 calc(100% - 3px);
}

.footer-area-1{
  text-align: right;
}

.footer-area-1 img{
  margin-top: 20px;
  width: 270px !important;
  max-width: 90% !important;
}

.copyrights{
  background: var(--black);
  padding: 30px 0;
  color: #FFF;
}

.copy-center{text-align: center;}



.copy-right a{font-weight: 700;}

.widget-title{
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 30px;
}

.social-icons a{
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  font-size: 22px;
  color: var(--black);
  transition: all 300ms ease;
}


.footer-widgets .menu{
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-widgets .menu li a{
  display: block;
  color: #FFF;
  padding: 2px 0;
  transition: all 300ms ease;
}

.footer-widgets .menu li a:hover,
.social-icons a:hover{
  text-decoration: none;
  color: var(--orange);
}

/* Elementor */

.elementor-white-title{
  color: #FFF;
}

.elementor-lines-section{
  position: relative;
}

.hover-block{
  padding: 50px 40px;
  height: 100%;
  border-radius: 50px;
}

.hover-block.full-w-block{
	height: auto;
	margin-top: 30px;
}

.hover-title h3{
  margin-bottom: 15px;
  position: relative;
  margin-left: -30px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hover-title h3:before{
  content: '\e80f';
  font-family: "pueoiconpack";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--orange);
  opacity: 0;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hover-title:hover h3{
  font-weight: 700;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

.hover-title:hover h3 span{
  color: var(--orange);
}

.hover-title:hover h3:before {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.hover-block h3 span{
  font-weight: 700;
}

.hover-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: -1;
  border-radius: 50px;
  box-shadow: 0 0 50px rgba(0,0,0,0.15);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hover-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
  z-index: -1;
  border-radius: 50px;
}

.hover-block:hover:before {
  opacity: 1;
}

.hover-block.home-offer-block::after {
	border-color: #EEE;
}

.after-hero-slogan .section-title{
	margin-bottom: 50px;
}

.elementor-lines-section > .elementor-container >  .elementor-column > .elementor-widget-container > .elementor-widget-wrap > .elementor-element > .elementor-widget-container {
  height: 100%;
  position: relative;
}

.elementor-lines-section .elementor-container,
.elementor-lines-section .elementor-column ,
.elementor-lines-section .elementor-widget-container,
.elementor-lines-section .elementor-widget-wrap,
.elementor-lines-section .elementor-element{
  height: 100%;
}

.blue-line-slogan .elementor-heading-title{
  position: relative;
  padding-left: 15px;
  display: block;
}

.blue-line-slogan .elementor-heading-title:before{
  content: '';
  width: 4px;
  height: 18px;
  background: currentcolor;
  position: absolute;
  top: 6px;
  left: 0;
}

.blue-bold b,
.blue-bold strong,
.blue-txt{
  color: var(--orange);
}

.wpcf7-form p:last-of-type{text-align: right;}

.bg-granat{background: var(--black)}
.color-white{color: #FFF;}

.project-image_3_img{
	margin-bottom: 50px;
}

.yt-video-wrapper {
	overflow: hidden;
	position: relative;
	max-width: 100%;
	height: auto;
	padding-bottom: 56.25%;
}

.project-video{
	padding-bottom: 100px;
}

.yt-video-wrapper iframe,
.yt-video-wrapper object,
.yt-video-wrapper embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* Responsive */

/* 1700px */
@media (max-width:1700px){
    .elementor-section.elementor-section-boxed > .elementor-container,
    .container{max-width: 1450px!important}
    .slider_main-title, .section-title,  .section-header h2, .footer-slogan {font-size: 56px;}
    .archive-title, .elementor-title h1 {font-size: 200px}
    .pagin-text {font-size: 22px;}
    .go-back-url, .archive-header-right {font-size: 17px}
    .about__item .icon {width: 80px}
    .about__item {padding: 50px 40px;}
    .about__item h3 {font-size: 26px;}
    .block-title-wrapper {margin-bottom: 40px}
    .title-cont {
      padding-left: 20px;
      width: calc(100% - 80px);
    }

    img.custom-logo {width: 268px;}
}

@media (max-width:1500px){
  .elementor-section.elementor-section-boxed > .elementor-container,
  .container{max-width: 1380px!important}
  .rel-video{
    height: 500px;
    height: 30vw;
    min-height: 500px;
  }

  .socials-list li a,
  .kontakt-text {
    font-size: 20px;
  }

  .widget-title {font-size: 18px;}
  .site-menu li a {font-size: 50px; margin-left: -50px}
  .nav-container .socials-list li a {font-size: 24px;}
}

/* 1400px */
@media (max-width:1400px){
  .site-menu li a {font-size: 48px}
  .elementor-section.elementor-section-boxed > .elementor-container,
  .container{max-width: 1300px!important}
  .archive-post h2{font-size: 26px}
  .tags a {font-size: 16px}
  .about__item .icon {width: 72px;}
  .title-cont {
   padding-left: 15px;
   width: calc(100% - 72px);
 }

 .single-title {
    font-size: 56px;
    margin: 70px 0;
  }
}

/* 1350px */
@media (max-width:1350px){
  .nav__content{padding-left: 60px;}
}

/* 1300px */
@media (max-width:1300px){
  .slider_main-title {
    font-size: 56px;
    padding-left: 15px;
  }

  .pagin-text, .slider-buttons .slide-nav-btn .nr  {font-size: 20px;}
  .section-header h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .about__item img {width: 80px}
  html{font-size: 15px;}

  .section-slogan h2 {
    font-size: 42px;
    padding-left: 50px;
  }

  .kontakty-left{padding-left: 30px;}
  .kontakty-right{padding-right: 30px;}
}



/* 1200px */
@media (max-width:1200px){
  .rel-video{
    height: 400px;
     height: 30vw;
    min-height: 400px;
  }

  .about__item{
    margin: 7px 0;
    height: auto;
  }

}


@media (max-width:1024px){
  .hover-block {
    height: auto;
    margin-bottom: 15px;
  }
	
	.hover-block.full-w-block{
		margin-top: 0;
	}


}

/* 991px */
@media (max-width:991px){

  .rel-video{
    height: 340px;
    min-height: 340px;
  }

  .scroll-down-wrap {
    text-align: center;
    margin-top: 30px;
  }

  .nav-before, .nav-after,
  .nav-container {width: 50%;}

  .archive-post .image-wrap span {font-size: 70px}

  /* .footer-area-1 {
    text-align: center;
  } */

  .logo-col {text-align: left;}
  .nav__content{padding-left: 40px;}
  .slider_main-description{padding: 30px 15px 30px 15px;}
  .slider-buttons .slide-nav-btn {
    margin: 0 5px;
    padding: 20px 15px 20px 15px;
  }
  .slider-navigator {bottom: 15px}
  .pagin-text{font-size: 18px;}
  .top-right .button{display: none;}
  .section-slogan img {
    width: 300px;
    max-width: 75%;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .sec-line.line-2{display: none}

  .sec-line{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  /* .footer-widgets,
  .footer-area-4,
  .copy-right,
  .section-kontakt{text-align: center;} */

  .copy-right{padding-top: 15px}


  .section-slogan h2 {
     padding-left: 0;
     /* text-align: center; */
   }

  .kontakty-right{padding-top: 50px}

  .footer-widgets{
    font-size: 17px;
  }

  .home-slider-header {padding-top: 100px}
  .about_us {
    padding: 100px 0;
  }

  .kontakty-right {
    padding-right: 15px;
  }

  .archive-title, .elementor-title h1 {
    font-size: 150px;
  }

  .archive-bg,
  .page-header {
    padding: 100px 0;
  }

  .kontakty-left {
    padding-left: 15px;
  }

  .project-details-title {
    display: block;
    margin-bottom: 15px;
  }

  .description-left {
    padding-right: 15px;
  }

  .description-right {
    padding-left: 15px;
  }
	
  .project-external{ margin-top: 0px; margin-bottom: 20px}


}

/* 767px */
@media (max-width:767px){

  .hover-title h3 {margin-left: -20px}

  .archive-title, .elementor-title h1 {
    font-size: 80px;
  }

  .single-title {
    font-size: 42px;
    margin: 50px 0;
  }

  /* .archive-header-left, .archive-header-right{text-align: center;} */

  .archive-header-left .scroll-down{
    margin-bottom: 30px;
    display: inline-block;
  }

  .project-details {
    font-size: 17px;
    /* text-align: center; */
  }

  /* .single-title {text-align: center;} */

  .project-description,
  .single-header {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .first-image{margin-bottom: 15px;}

  .project-logo img{max-width: 85%}



  .nav-before, .nav-after,
  .nav-container {width: 100%;}
  .nav-container{
    text-align: right;
    padding-left: 30px;
    padding-right: 80px;
  }

  .rel-video{
    height: 500px;
    min-height: 500px;
  }

   .slider_main-title {padding-left: 0}

  .site-menu li a {font-size: 36px}

  .sec-line.line-4{display: none}

  .sec-line{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .slider-buttons {display: block;}
  .pagin-text {font-size: 12px; line-height: 16px;}
  .slider-buttons .slide-nav-btn {font-size: 14px; margin: 5px 0;}
  .slide-nav-btn::after {
    bottom: 20px;
    right: 10px;
  }



  .home-hero {height: 500px;}

  img.custom-logo {
    width: 203px;
  }

  .after-hero-slogan {
    padding: 250px 0 100px 0;
  }
}

/* 575px */
@media (max-width:575px){
  .nav__content{padding-left: 0;}
  .site-menu li a {
    display: block;
    padding: 6px 0;
  }
	
	.hover-title h3:before{
		position: absolute;
		  left: -2px;
		  top: 2px;
	}
	
	.hover-title h3{padding-left: 20px;}

   .block-title-wrapper {display: block;margin-bottom: 25px}
   .about__item p {text-align: center;}

   .title-cont {
     padding-left: 0;
     width: 100%;
     text-align: center;
     margin-top: 30px;
   }

   .about__item img {
     width: 90px;
   }

   .about__item .icon {
      width: 90px;
      margin: 0 auto;
    }

  .footer-slogan{font-size: 42px;}
  .footer-slogan a{font-size: 34px;}

  .slide-bgimg.klima-slide,
  .slide-bgimg.pompa-slide{
    background-position: left;
  }

  .home-slider-header .section-lines.blue-lines .line-1:after,
  .footer-widgets .section-lines.blue-lines .line-1:after{
    display: none;
  }


  .slider_main-title {
    font-size: 46px;
  }

  .section-header h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .slider-buttons .slide-nav-btn {width: 33%}
  .home-slider-header {padding-top: 130px}
  #back_top {right: 10px}
  .footer-area-1 img {
    margin-top: 0;
    width: 200px !important;
    max-width: 90% !important;
  }

  .slider_main-title, .section-title, .section-header h2, .footer-slogan {
    font-size: 44px;
  }

}

  @media (max-width:420px){
    .footer-slogan{font-size: 32px;}
    .footer-slogan a{font-size: 26px;}
  }
