.hamburger-box {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 32px;
}

.hamburger {
  top: 4px;
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner::after {
	top: 10px;
	right: 0;
	transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s;
}
.hamburger-inner::after {
	bottom: -10px;
}
.hamburger-inner::after, .hamburger-inner::before {
	display: block;
	content: "";
}
.hamburger--emphatic .hamburger-inner::before {
	left: 0;
	transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger--emphatic .hamburger-inner {
	/* transition: background-color .125s ease-in .175s; */
}
.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
	position: absolute;
	width: 40px;
	height: 1px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform;
	border-radius: 0px;
	background-color: #fff;
}
.scroll_menu .hamburger-inner, .scroll_menu .hamburger-inner::after, .scroll_menu .hamburger-inner::before {
	background-color: #000;
}
.open .hamburger-inner, .open .hamburger-inner::after, .open .hamburger-inner::before {
	background-color: #978C6F;
}
.hamburger--emphatic.open .hamburger-inner::before {
	top: -80px;
	left: -80px;
	transition: left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
	transform: translate3d(80px,80px,0) rotate(45deg);
}
.hamburger--emphatic.open .hamburger-inner::after {
	top: -80px;
	right: -80px;
	transition: right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
	transform: translate3d(-80px,80px,0) rotate(-45deg);
}

.hamburger--emphatic.open .hamburger-inner {
	transition-delay: 0s;
	transition-timing-function: ease-out;
	background-color: transparent !important;
}
.hamburger--emphatic {
	overflow: hidden;
}



.loader.hide {
  transform:translateY(-100%);
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1
 }

.nicescroll-rails-hr {
	display: none !important;
}


.fadeOutUp {
 animation-name:fadeOutUp
}

@keyframes fadeOutUp {
  0% {
   opacity:1
  }
  to {
   opacity:0;
   transform:translate3d(0,-100%,0)
  }
 }


.fadeOutUpSlow {
 animation-name:fadeOutUpSlow
}
@keyframes fadeOutUpSlow {
  0% {
   opacity:1
  }
  to {
   opacity:.2;
   transform:translate3d(0,-20%,0)
  }
 }

.fadeInDown {
 animation-name:fadeInDown
}
@keyframes fadeInDown {
  0% {
   opacity:0;
   transform:translate3d(0,-100%,0)
  }
  to {
   opacity:1;
   transform:translateZ(0)
  }
 }
@keyframes fadeInDownSlow {
 0% {
  opacity:.2;
  transform:translate3d(0,-20%,0)
 }
 to {
  opacity:1;
  transform:translateZ(0)
 }
}
.fadeInDownSlow {
 animation-name:fadeInDownSlow
}

.animated {
  animation-duration:var(--animate-duration);
  animation-fill-mode:both
 }
 .animated.infinite {
  animation-iteration-count:infinite
 }
 .animated.repeat-1 {
  animation-iteration-count:var(--animate-repeat)
 }
 .animated.repeat-2 {
  animation-iteration-count:calc(var(--animate-repeat) * 2)
 }
 .animated.repeat-3 {
  animation-iteration-count:calc(var(--animate-repeat) * 3)
 }
 .animated.delay-1s {
  animation-delay:var(--animate-delay)
 }
 .animated.delay-2s {
  animation-delay:calc(var(--animate-delay) * 2)
 }
 .animated.delay-3s {
  animation-delay:calc(var(--animate-delay) * 3)
 }
 .animated.delay-4s {
  animation-delay:calc(var(--animate-delay) * 4)
 }
 .animated.delay-5s {
  animation-delay:calc(var(--animate-delay) * 5)
 }
 .animated.faster {
  animation-duration:calc(var(--animate-duration) / 2)
 }
 .animated.fast {
  animation-duration:calc(var(--animate-duration) * .8)
 }
 .animated.slow {
  animation-duration:calc(var(--animate-duration) * 2)
 }
 .animated.slower {
  animation-duration:calc(var(--animate-duration) * 3)
 }
 @media print,(prefers-reduced-motion: reduce) {
  .animated {
   animation-duration:1ms!important;
   transition-duration:1ms!important;
   animation-iteration-count:1!important
  }
  .animated[class*=Out] {
   opacity:0
  }
 }

 @media (min-width: 1024px) {
  .aos-animate .topleft {
    width: 100%;
  }

  .aos-animate .topright {
    height: 100%;
  }

  .aos-animate .leftbot {
    height: 100%;
  }

  .aos-animate .botleft {
    width: 100%;
  }



}


.menushow .hovermenu::before {
  content: "";
  border-bottom: 5px solid #EE4630;
  width: 100%;
  position: absolute;
  top: 0px;
  left: auto;
  right: 0;
  animation: lineIn 0.2s ease-out forwards;
  display: block;
  z-index: 2;
  transform: none;
}

.mylineout::before {
  content: "";

  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  animation: lineOut 0.2s ease-out forwards !important;
  display: block;
  z-index: 3;
}
.bg1home .svg_path {
  stroke-dasharray: 2987.79px;
  stroke-dashoffset: 2987.79px;

}
.bg1home .svg_path.anim {
  stroke-dashoffset: 0px !important;
 
}

.svg_path2 {
	stroke-dasharray: 2977.44px;
	stroke-dashoffset: 2977.44px;
}
.aos-animate .svg_path2 {
  stroke-dashoffset: 0px;
}
.svg_path3 {
	stroke-dasharray: 2987.78px;
	stroke-dashoffset: 2987.78px;
}
.aos-animate .svg_path3 {
  stroke-dashoffset: 0px;
}

@-webkit-keyframes lineOut {
  0% {
      width: 100%;
      left: auto;
      right: 0
  }

  100% {
      width: 0;
      left: auto;
      right: 0
  }
}

@keyframes lineIn {
  0% {
      width: 0;
      left: 0;
      right: auto
  }

  100% {
      width: 100%;
      left: 0;
      right: auto
  }
}

.desc li::before {
    background-image: url('../images/template/lisvg.svg'); 
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: center;
}
.desc.white li::before {
  background-image: url('../images/template/lisvg_white.svg'); 
}
.biznes_text_onblue .box:hover .desc li::before {
  background-image: url('../images/template/lisvg.svg'); 
}

.home_hed2 {
	-webkit-background-clip: text !important;
	background-repeat: no-repeat;
	/* background-size: cover; */
	color: #085c7f;
	background-position: 8% 25%;
	background-size: 127%;
}
.home_hed2 .h1 {
  mix-blend-mode: overlay;
  color:#085c7f;
}

.hedslide {
	-webkit-background-clip: text !important;
	background-repeat: no-repeat;
	/* background-size: cover; */
	color: white;
	background-position: 0% 39%;
	background-size: 100%;
}
.hedslide .h1 {
  mix-blend-mode: overlay;
}
.hedslide2 {
  mix-blend-mode: difference;
  z-index: 60;
  width: 100%;
  position: relative;
}
.hedslide2 .h1 {
  color:white;
}
.bg1_arrow {
	position: absolute;
	bottom: 90px;
	left: 50%;
	transform: translate(-50%);
	overflow: visible;
	text-align: center;
	padding: 0 40px;
	animation: run 1s ease infinite alternate;
	-webkit-animation: run 1s ease infinite alternate;
  z-index: 30;
}
.swiper-pagination-current {
  padding-right:20px;
}
.swiper-pagination-total {
  padding-left:20px;
}
.sliderdown_img.pic_0 .sliderdown_img2 {
  -webkit-mask-image: linear-gradient(to bottom, transparent, black);
    mask-image: linear-gradient(to bottom, transparent, black);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.sliderdown_img .sliderdown_square {
  clip-path: circle(0% at 50% 50%);
  transition:1s all;
}
/* .sliderdown_img.active2 .sliderdown_square {
  clip-path:circle(50% at 50% 50%);
}
.sliderdown_img.stayactive .sliderdown_square {
  clip-path:circle(50% at 50% 50%);
} */
.slidercry_square {
  clip-path: circle(0% at 50% top);
  transition:1s all;
  pointer-events: none;
}
.slidercry_square.anim {
  clip-path:circle(100% at 50% top);
}

@keyframes run {
	0% {
		bottom: 50px;
	}

	100% {
		bottom: 85px;
	}
}

@-webkit-keyframes run {
	0% {
		bottom: 50px;
	}

	100% {
		bottom: 85px;
	}

}

.side_overlay {
	opacity: 0;
	visibility: hidden;
	transition: all .8s cubic-bezier(.6, 0, .2, 1);
	pointer-events: all;
	backdrop-filter: blur(0.2em);
	-webkit-backdrop-filter: blur(0.2em);
	transition-delay: 0.3s;
	background-color: #00000045;
  position: fixed;
  top:0;
  left:0;
  z-index: 70 !important;
}
.side_nav {
  transition: all .8s cubic-bezier(.6, 0, .2, 1);
}

#video-background {
	position: absolute;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
}

.gallery-container {

	grid-gap: 20px;
	/* position: relative; */
	z-index: 30;
	padding: 0;
	-ms-grid-columns: (minmax(250px,1fr)) [auto-fill];
	grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
	grid-auto-rows: 250px;
	grid-auto-flow: dense;
}
.gallery__box--main {
	-ms-grid-column: span 1;
	grid-column: span 1;
	-ms-grid-row: span 2;
	grid-row: span 2;
}
.gallery_h {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery__box--main + .gallery__box {
	-ms-grid-column: span 2;
	grid-column: span 2;
	-ms-grid-row: span 2;
	grid-row: span 2;
}
.gallery__box:not(.gallery__box--main):nth-of-type(3n) {
	-ms-grid-column: span 2;
	grid-column: span 2;
}
.site-gallery__holder {
	width: 100%;
	height: 100%;
}

.cvr-pic {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.cvr-pic__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.gallery__box a::before {
	z-index: 1;
	content: "";
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}
.gallery__box:hover a::before, .gallery__box:focus a::before {
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	visibility: visible;
	opacity: 1;
}

.slide_square_load {
	clip-path:circle(0% at top);
}
.bg1home.ready .slide_square_load {
	clip-path:circle(100% at top);
}

.grecaptcha-badge {
  opacity:0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.animmatrix.resize {
  opacity:1 !important;
  transform:none !important;
}

@media screen and (min-width: 1023px) {


}


@media screen and (max-width: 1771px) {


}
@media screen and (max-width: 1536px) {

  .hamburger-box {
 
    width: 30px;
    height: 22px;
  }

  
  .hamburger--emphatic .hamburger-inner::after {
    top: 7px;
  
  }
  .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    width: 30px;
  }
  .hamburger-inner::after {
    bottom: -7px;
  }

  .hamburger-inner::before {
    top: -7px;
  }

  @keyframes run {
    0% {
      bottom: 20px;
    }
  
    100% {
      bottom: 45px;
    }
  }
  
  @-webkit-keyframes run {
    0% {
      bottom: 20px;
    }
  
    100% {
      bottom: 45px;
    }
  
  }
 
}
@media screen and (min-width: 1023px) {
.animdesc.aos-animload p, .animdesc.aos-animload h3, .animdesc.aos-animload h2, .animdesc.aos-animload h3 strong, .animdesc.aos-animload li {
  background: none;
  background-size: 0% !important;
  -webkit-text-fill-color: unset !important;
  transition:0s all !important;
}
}

@media screen and (max-width: 1279px) {

 
}
@media screen and (max-width: 1023px) {

  .bg1_arrow {
 
    bottom: 30px;

    animation: none;
    -webkit-animation: none;

  }

  .side_nav ul.firstside li a {
    -webkit-touch-callout: none; /* Wyłącza menu kontekstowe na iOS */
      -webkit-user-select: none; /* Wyłącza selekcję tekstu na iOS */
      user-select: none; /* Wyłącza selekcję tekstu */
  }

 
 
}
@media screen and (max-width: 767px) {
  .desc li::before {
   
    top: -25px !important;
   
  }
  .desc_room2 table {
    display:block;
  }
  .desc_room2 tbody {
    display:block;
  }
  .desc_room2 table tr {
    display: flex;
    justify-content: center;
  }

}
