:root {
  --theme-primary: #1e1e1e;
  --theme-black: #161616;
  --theme-grey: #aaaaaa;
  --lightgrey: #f0f0f0;
}

html{
  font-size: 16px;
}

body{
  font-family: "Questrial", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size:1rem;
  font-weight: 400;
  line-height: 1.6;
}

.container {
  max-width: 1600px;
}



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

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

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;
}


.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(--theme-black);
}

#main-header.fixed .custom-logo{
  width: 96px;
   transition: all 300ms ease;
}



/* Headers */

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
  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: transparent;
  position: relative;
  margin-left: 15px;
}
.menu-icon__line {
  height: 3px;
  width: 36px;
  display: block;
  background-color: #aaaaaa;
  margin-top: 10px;
  float: right;
  margin-left: 9px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}

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

.menu-icon__text{
  display: none;
  position: absolute;
  width: 90px;
  font-size: 11px;
  top: 50%;
  margin-top: -10px;
  color: #aaa;
  right: 100%;
  text-align: right;
}



.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(30, 30, 30, 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(30, 30, 30, 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(--theme-primary);
  transition-delay: 0.1s;
}
.nav-before {
  transition-delay: 0.2s;
}

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

.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__line {
   width: 46px;
  transform: translate(1px, -7px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  transform: translate(0px, 6px) rotate(45deg);
}

body.nav-active .menu-icon__text{
  display: block;
}


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 .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(--theme-black);
}

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

 .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(--theme-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;
  font-size: 26px;
  color: var(--theme-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(5px);
  transform: translateX(5px);
}

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

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

.footer-menu .menu{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.footer-menu .menu li a{
  color: var(--theme-grey);
  font-size: 18px;
  position: relative;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.footer-menu .menu li a:hover,
.footer-menu .menu li a:focus{
  text-decoration: none;
  color: #FFF;
}

.footer-sygnet{
  opacity: 0.1;
}

/* Main menu links */

.site-menu li{
  margin-bottom: 10px;
}


.site-menu li a{
  display: inline-block;
  overflow: hidden;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 36px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.2;
  position: relative;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg,currentColor 0,currentColor 100%);
  background-position: 100% calc(100% - 5px);
  background-size: 0 2px;
  -webkit-transition: background-size .5s cubic-bezier(.25,.46,.35,.94),color .2s ease-out, padding-left .3s ease;
  transition: background-size .5s cubic-bezier(.25,.46,.35,.94),color .2s ease-out ,padding-left .3s ease;
}

.site-menu li a::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  border-radius: 50%;
  height: 4px;
  background: #AAA;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.site-menu li a:hover,
.site-menu li a:focus{
  text-decoration: none;
  color: #FFF;
  padding-left: 15px;
  background-size: 100% 2px;
  background-position: 0 calc(100% - 5px);
}

.site-menu li a:hover::before,
.site-menu li a:focus::before{
  opacity: 1;
}

.menu-logo{
  position: absolute;
  top: 80px;
}

.after-menu-wrapper a{
  transition: all .3s ease;
}

.after-menu-wrapper a:hover,
.after-menu-wrapper a:focus{
  color: #FFF;
}

.after-menu-wrapper{
  padding-right: 100px;
  color: var(--theme-grey);
  font-size: 1.125rem;
}

.after-menu-wrapper > div{
  margin-bottom: 15px;
}

.after-menu-wrapper > div:last-child{
  margin-bottom: 0;
}

.menu-links{
  display: flex;
  gap: 10px;
}

.menu-links a{
  color: var(--theme-grey);
  position: relative;
  padding-right: 10px;
}

.after-menu-wrapper .menu li:last-child a:after,
.menu-links a:last-child::after{
  display: none;
}

.after-menu-wrapper .menu li a:after,
.menu-links a:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  border-radius: 50%;
  height: 2px;
  background: var(--theme-grey);
}

.after-menu-wrapper .menu{
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.after-menu-wrapper .menu li a{
  color: var(--theme-grey);
  position: relative;
  padding-right: 10px;
}


/* button */

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

.button{
  display: inline-block;
    color: #FFF;
    background: var(--theme-primary);
    padding: 0 30px;
    min-width: 250px;
    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(--theme-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(--theme-black);
    box-shadow: 0 0 40px rgba(228, 71, 21, 0.4);
}

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

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

.top-right .button:hover,
.top-right .button:focus{
  background: #FFF;
  color: var(--theme-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(--theme-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(--theme-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);
}


.dark-bg{
  background: var(--theme-primary);
}

.wpcf7-submit{
  border: 1px solid #fcf3e7;
  font-family: "Playfair Display", Sans-serif!important;
  margin-top: 10px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fcf3e7;
  padding: 0!important;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus{
  background:#fcf3e7;
  color:  var(--theme-primary)
}

.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: 0;
  border-width: 1px;
  color: #FFF;
}

.wpcf7 form.invalid .wpcf7-response-output{
  border-color: #FFF;
}

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

.wpcf7-spinner {display: none!important}

.wpcf7-list-item-label a,
.wpcf7-list-item-label{
   color: #88847e;
}


.form-control {
  height: auto;
  padding: 15px 0;
  border: 1px solid var(--theme-primary);
  border-bottom-color: #88847e;
  background: var(--theme-primary);
  color: #FFF;
  font-size: 18px;
  border-radius: 0;
  margin-bottom: 20px;
}

textarea.form-control{
  height: 80px;
}

.form-control::placeholder {
  color: #88847e;
}

.form-control:focus{
  border-color: var(--theme-primary)!important;
  border-bottom-color: #FFF!important;
  background: var(--theme-primary);
  box-shadow: none!important;
}

.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(--theme-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(--theme-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;
}


/* New home hero */

.main-hero{
  contain: paint;
  height: 250vh;
  width: 100%;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.hero-wrapper{
  z-index: 1000;
  top: 0;
  position: sticky;
  height: 100vh;
  width: 100%;
  min-height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  pointer-events: none;
}

.hero-bg{
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero-txt{
  text-rendering: optimizeLegibility;
  padding-left: 10vw;
  font-size: 12vw;
  white-space: nowrap;
  line-height: 1.5;
  color: #ff9b00;
  height: 100vh;
  max-height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  margin: 0px 0px 0;
  mix-blend-mode: hard-light !important;
  transform: translate3d(0);
  will-change: transform;
}

/* Lenis */

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Elnis end */

/* Slider header */

.home-slider-header{
  background-color: var(--theme-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(--theme-primary);
}

.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(--theme-primary);
  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(--theme-primary);
}


/* 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(--theme-primary);
}

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

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

/* Back to top */

#back_top {
  display: inline-block;
  background-color: #fef3e6;
  color: var(--theme-primary);
  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{
  background-color: var(--theme-primary);
  background: #FFF;
}

#back_top svg{
  fill: #FFF;
}

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

#back_top span{
  display: block;
  transform: rotate(-90deg);
}





/* 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(--theme-primary);
}

.section-header h2{
  font-size: 74px;
  color: var(--theme-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(--theme-black);
}


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

/* Home projects */

.home-projects{
  background-color: var(--theme-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;
}


.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(--theme-primary);}

.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: var(--theme-black);

}

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

.location{
  color: #bbb;
}

.page-header{
  background-color: var(--theme-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{
  padding: 150px 0;
}

.go-back-url{
  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(--theme-black);
}

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

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

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

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

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

.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(--theme-primary);
}

.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(--theme-black);
}

.section-kontakt .section-header h2 {
  margin-bottom: 50px;
}
.section-kontakt .section-header h2 span{ display: inline-block;}

/* Alt kontakt */

.page-id-25 .section-kontakt{
  background: var(--theme-black);
  color: #FFF;
}

.page-id-25 .kontakt-text a,
.page-id-25 .socials-list li a,
.page-id-25 .section-kontakt .section-header h2{color: #FFF}

.page-id-25 .form-control{
  background: #2c2c2c;
  border-color: #2c2c2c;
}

.page-id-25 .form-control::placeholder {color: #FFF}


/* 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(--theme-black);
  color: #FFF;
}



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

/* Footer */



.footer-area-1{
  text-align: center;
  padding: 30px 0;
  color: #9c756a;
  background: #fcf3e7;
}

.site-footer .widget{
  margin: 0;
}



/* Elementor */
.container-lines-wrapper{
  height: 100%;
}

.container-lines{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container-lines .container-line.line-2,
.container-lines .container-line.line-1{
  position: absolute;
  top: 0;
  left: 33.33333%;
  width: 1px;
  height: 100%;
  background: #343332;
}

.container-lines .container-line.line-2{
  left: 66.66666%;
}



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

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

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

.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(--theme-primary);
  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(--theme-primary);
}

.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(--theme-primary);
}

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

.bg-granat{background: var(--theme-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%;
}

.about-counter,
.about-counter .elementor-widget-container{
	height: 100%;
}


.about-counter:hover .elementor-counter-number-wrapper{
	color: #FFF!important;
}

/* Elementor aos */

.fadeIn {
  animation-timing-function:ease;
  animation-name:myaos!important;
  -webkit-transition:opacity .4s ease;
  transition:opacity .4s ease
}
.fadeIn.animated {
  animation-duration:.45s;
  opacity:1
}
@keyframes myaos {
  from {
    opacity:0;
    transform:translate3d(0,100px,0)
  }
  to {
    transform:translate3d(0,0,0);
    opacity:1
  }
}

/* Newsletter  */

.newsletter-agavin .mailpoet_submit{
	  border-color: transparent;
	  background: #bcb2a5;
	  min-width: 220px;
	  color: #fcf3e7;
	  font-weight: 600;
	  padding: 10px;
	  transition: all 200ms ease;
}

.newsletter-agavin .mailpoet_text{
	background: transparent;
  border: 1px solid #bcb2a5;
  padding: 9px!important;
	outline: none!important;

}

.newsletter-agavin .mailpoet_form_columns{
	margin-bottom: 0!important;
}


/* 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);
    }

}

@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;
  }

  .site-menu li{
    margin-bottom: 0;
  }

  .after-menu-wrapper {
    padding-right: 50px;
    color: var(--theme-grey);
    font-size: 1rem;
  }

  .widget-title {font-size: 18px;}
  .nav-container .socials-list li a {font-size: 24px;}
}

/* 1400px */
@media (max-width:1400px){
  .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;}
  .site-menu li a{
    font-size: 34px;
  }
}

/* 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;}

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


}



/* 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;
  }

  .top-right{
    padding-right: 0;
  }

  .hero-txt{
    font-size: 200px;
  }

  .section-kontakt .section-header h2 span{ display: inline;}


}

/* 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: 65%;}

  .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}

  .custom-logo {
    width: 124px;
   
  }


}

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

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

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

  .after-menu-wrapper {
    padding-right: 0;
  }

  .after-menu-wrapper .menu,
  .menu-links {
    justify-content: end;
    margin-right: -10px;
  }

  .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: 50px;
  }

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

   .slider_main-title {padding-left: 0}

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

  .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: 96px;
  }

  .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;
  }
	
	.menu-logo{
		position: absolute;
  		top: 30px;
  		width: 150px;
	}

   .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;
  }


  .hero-txt{
    font-size: 150px;
    line-height: 2;
  }

  .znak-logo img {margin-top: 30px}

   .hero-bg{background-position: 70%;}




}

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



  /* Replacing anims for elementor */

@keyframes fadeInUpAos {
  from {
    opacity:0;
    -webkit-transform: translate3d(0,100px,0);
    transform: translate3d(0,100px,0);
  }
  to {
    opacity:1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}
.fadeInUp {
  animation-name:fadeInUpAos!important;
}

.fadeInUp.animated{
    animation-duration: 0.5s!important;
}

.fadeInDown,
.fadeInRight,
.fadeInLeft{
    opacity: 0;
}


.elementor-editor-active .fadeInDown,
.elementor-editor-active .fadeInRight,
.elementor-editor-active .fadeInLeft{
    opacity: 1;
}


.fadeInLeft{
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0s!important;
}


.fadeInRight{
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0s!important;
}

.fadeInDown{
     animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0s!important;
}


 /* Animations */

  .img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    opacity: 0;
  }

  @keyframes img-anim-right {
    0% {
      transform: translateX(5%);
      clip-path: inset(0 0 0 100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
  }
  .img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
  }

  @keyframes img-anim-left {
    0% {
      transform: translateX(-5%);
      clip-path: inset(0 100% 0 0);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
  }
  .img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
  }

  @keyframes img-anim-top {
    0% {
      transform: translateY(-5%);
      clip-path: inset(0 0 100% 0);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
  }

/* Age gate */

body.age-gate-active {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(22, 22, 22, 1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.age-gate.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}

.age-gate__inner {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  background: var(--theme-black);
  padding: 40px 28px;
  transform: translateY(14px) scale(0.99);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.age-gate.is-visible .age-gate__inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.age-gate__logo {
  margin-bottom: 24px;
}

.age-gate__logo .custom-logo-link {
  display: inline-block;
}

.age-gate__logo .custom-logo {
  max-width: 155px;
  width: auto;
  height: auto;
}

.age-gate__logo-text {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 32px;
}

.age-gate__title {
  color: #fff;
  margin: 0 0 12px;
}

.age-gate__text {
  color: var(--lightgrey);
  margin: 0 0 30px;
}

.age-gate__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.age-gate__button {
  min-width: 120px;
  height: 46px;
  border: 1px solid var(--theme-grey);
  padding: 0 20px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: all 0.25s ease;
}

.age-gate__button:hover,
.age-gate__button:focus {
  text-decoration: none;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.age-gate__button--yes {
  background: var(--theme-primary);
}

@media (prefers-reduced-motion: reduce) {
  .age-gate,
  .age-gate__inner,
  .age-gate__button {
    transition: none;
  }
}
