@font-face {
  font-family: Roboto-Black;
  src: url('/front/fonts/Roboto/Roboto-Black.ttf');
  font-display: swap;
}
@font-face {
  font-family: Roboto-BlackItalic;
  src: url('/front/fonts/Roboto/Roboto-BlackItalic.ttf');
  font-display: swap;
}
@font-face {
  font-family: Roboto-Bold;
  src: url('/front/fonts/Roboto/Roboto-Bold.ttf');
  font-display: swap;
}
@font-face {
  font-family: Roboto-BoldItalic;
  src: url('/front/fonts/Roboto/Roboto-BoldItalic.ttf');
  font-display: swap;
}
@font-face {
  font-family: Roboto-Italic;
  src: url('/front/fonts/Roboto/Roboto-Italic.ttf');
  font-display: swap;
}
@font-face {
  font-family: Roboto-Light;
  src: url('/front/fonts/Roboto/Roboto-Light.ttf');
  font-display: swap;
}
@font-face {
  font-family: Roboto-LightItalic;
  src: url('/front/fonts/Roboto/Roboto-LightItalic.ttf');
  font-display: swap;
}
@font-face {
  font-family: Roboto-Medium;
  src: url('/front/fonts/Roboto/Roboto-Medium.ttf');
  font-display: swap;
}
body {
  font-family: Roboto-Light, sans-serif;
  margin: 0;
  padding: 0;
  font-size: .9vw;
  box-sizing: border-box;
}

nav{
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  max-height: 3em;
  color:#333;
  z-index: 99;
  transition-duration: .3s;
  transition-timing-function: ease-in;
  padding: .3em;
}
.nav-scrolled{
  background: rgba(255, 255, 255, 0.375);
  box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}
nav .logo{
  max-height: 100%;
  margin-left: 5em;
  padding: .2em;
  width: 10em;
}
nav .logo img{
  max-height: 100%;
}
nav .logo a::after{
  display: none!important;
}
.menu-list{
  list-style: none;
  display: flex;
  width: 100%;
    justify-content: flex-end;
    margin-right: 5em;

}
.menu-list li{
  text-align: center;
  font-weight: 600;
  padding-left: 1em;
  padding-right: 1em;
}
img{
  height: auto;
}
a{
  text-decoration: none;
  color: #000;
  transition-duration: .3s;
  transition-delay: .2s;
}
a::after{
  content: '';
  display: block;
  background: linear-gradient( 90deg , #3c67e3 1%, #4e00c2); /* Twój gradient */
  height: 3px;
  border-radius: 2px;
  width: 0%;
  transition-duration: .3s;
  margin-top: 3px;
}
a:hover::after{
  width: 100%;
}
a:hover{
  color:#3c67e3;
}

.submenu a::after{
  display: none;
}
.submenu ul{
  list-style: none;
  padding-left: 0;
  margin-top: .55em;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(5px);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    padding: .5em;
    transition-duration: .3s;
  position: absolute;
  margin-left: -1.5em;
  height: 0;
  opacity: 0;
  transition-duration: .3s;
  overflow: hidden;

}
.submenu:hover ul{
  height: 6.5em;
  opacity: 1;
  display: block;
}
.submenu ul li{
  text-align: left;
  padding-top: .5em;
  padding-right: .5em;
  padding-bottom: 0.5em;
}
.lang-menu{
  display: flex;
}
.lang-menu .nice-select{
  margin-top: -.65em;
  margin-left: .5em;
}
.content-box{
  width: 65%;
  margin: auto;
}

.left-separator{
  display: flex;
}
.right-separator{
  display: flex;
  flex-direction: row-reverse;
}
h2{
  margin-block: .5em;
}
.separator *{
  transition-duration: .3s;
  transition-delay: .1s;
  transition-timing-function: ease-in;
}
.separator .dot1{
  width: .50em;
  height: .50em;
  border-radius: .5em;
  background: #000;
  margin-right: .2em;
}
.separator .dot2{
  width: .50em;
  height: .50em;
  border-radius: .5em;
  background: #000;
  margin-right: .2em;

}
.separator .dot3{
  width: .50em;
  height: .50em;
  border-radius: .5em;
  background: #000;
  margin-right: .2em;

}
.separator .dot4{
  width: .50em;
  height: .50em;
  border-radius: .4em;
  background: #000;
  margin-right: .2em;

}
.separator.is-visible .dot1{
  background: #4e77ed;
}
.separator.is-visible .dot2{
  width: .75em;
  background: #436de6;
}
.separator.is-visible .dot3{
  width: 1.25em;
  background: #3c67e3;
}
.separator.is-visible .dot4{
  width: 12em;
  background: linear-gradient( 90deg , #3c67e3 1%, #4e00c2);
}
.right-separator.is-visible .dot4{
  background: linear-gradient( 90deg , #4e00c2 1%, #3c67e3);
}
.right-header{
  text-align: right;
}


footer .top-footer{
  background: #333333;
}
footer .top-footer .content-box{
  display: flex;
  padding-top: 3em;
  padding-bottom: 3em;
}
footer .top-footer .box{
  padding: .5em;
  color:#FFF;
  width: 25%;
}
.footer-link-list, .footer-link-list ul{
  list-style: none;
  padding-left: .4em;
}
.footer-link-list li, .footer-link-list ul li{
  margin-bottom: .6em;
}
.footer-link-list a{
  color:#fff;
  transition-delay: .0s;
}
.footer-link-list a:hover{
  padding-left: .5em;
}
.footer-link-list a::after{
  display: none;
}
footer .bottom-footer{
  background: #1c1c1c;
  
  color:#FFF;
  padding: .9em;
}
footer .bottom-footer .content-box{
  text-align: right;
}

.gradient-border {
  --borderWidth: 3px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}


@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.row-half-2{
  display: flex;
}
.row-half-2 .box{
  width: 50%;
  padding: 1em;
}
.text-alg-right{
  text-align: right;
}
.row-half-2 .box{
  line-height: 1.6em;
  font-size: 1.05em;
}
.button-menu-mobile{
  display: none;
}
.cookie-alert{
    position: fixed;
    bottom: 1em;
    left: 1em;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: #FFF;
    padding: 2em;
    width: 25em;
    z-index: 99999;
    max-width: 75.5vw;
}
.cookie-alert h3{
  margin-top: 0;
}
.cookie-alert a{
  color:#FFF;
  display: inline-block;
  float: right;
  font-weight: 600;
}
.cookie-alert a::after{
  display: none;
}
.popup-cta-bg{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    width: 100vw;
    height: 130vh;
    z-index: 99999;
    display: none;
}
.close-cta-p{
  background-image: url(/front/images/close-ico.svg);
  background-size: cover;
  width: 2em;
  height: 2em;
  position: fixed;
  top: 5em;
  right: 25vw;
  z-index: 9;
  display: block;
}
.close-cta-p::after{
  display: none!important;
}
.content-cta-p{
  position: fixed;
  top: 22.5vh;
  width: 50vw;
  left:25vw;
  display: flex;

}
.content-cta-p .box{
  width: 50%;
  color:#FFF;
  padding: 1.5em;
}
.content-cta-p .box:nth-child(2){
  padding-top: 5em;
}
.content-cta-p .box a{
  color:#FFF;
  padding: .75em;
  border: solid .1em #FFF;
  border-radius: 2em;
  margin-top: .5em;
  margin-bottom: .5em;
  display: block;
  width: 13em;
  transition-delay: 0s;
}
.content-cta-p .box a:hover{
  background: #FFF;
  color:rgba(0, 0, 0, 0.7);
}
.content-cta-p .box a::after{
  display: none;
}
.content-cta-p .box img{
  width: 100%;
}
.blob-mask-cta{
  mask-image: url('/front/images/masks/blob1.svg');
  /* Powtarzanie maski */
  mask-repeat: no-repeat;
  /* Wycentrowanie maski */
  mask-position: center;
  /* Skalowanie maski do rozmiaru elementu */
  mask-size: contain;
  -webkit-mask-image: url('/front/images/masks/blob1.svg');
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}
.bottom-footer .content-box{
  display: flex;
  justify-content: space-between;
}
#pf-open-consent-settings{
  color:#FFF;
  padding: 0!important;
}
@media (max-width: 1024px){
  body{
    font-size: 1.6vw;
  }
  nav .logo{
    margin-left: .5em;
  }
  .content-box{
    width: 90%;
  }
  .menu-list{
    margin-right: .5em;
  }
}

@media (max-width: 767px){
  body{
    font-size: 4vw;
  }
  .content-box{
    width: 95%;
  }
  footer .top-footer .content-box{
    flex-direction: column;
  }
  footer .top-footer .content-box .box{
    width: 100%;
    box-sizing: border-box;
  }
  .row-half-2{
    flex-direction: column;
  }
  .row-half-2 .box{
    width: 100%;
    box-sizing: border-box;
  }
  header .end-layer{
    margin-bottom: 2.5em;
  }
  .reverse-column{
    flex-direction: column-reverse;
  }
  nav * {
    box-sizing: border-box;
  }
  nav{
    position: fixed;
    width: 70%;
    height: 130vh;
    max-height: 130vh;
    flex-direction: column;
    padding: 1em;
    background: rgba(255, 255, 255, 0.375);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    left:-90vw;
    transition-duration: .3s;
  }
  .open-nav{
    left:0;
  }
  nav .logo, nav .logo a, nav .logo img{
    width: 95%;
  }
  nav .menu-list{
    flex-direction: column;
    padding-left: 0;
    text-align: left;
  }
  .menu-list li{
    text-align: left;
    margin-bottom: 1.5em;
  }
  .submenu ul{
    display: block;
    margin-left: .5em;
    position: relative;
    background:transparent;
    backdrop-filter: none;
    box-shadow: none;
    height: auto;
    opacity: 1;
    margin-bottom: -1.5em;
  }
  .submenu:hover ul{
    height: auto;
  }
  .button-menu-mobile{
    display: block;
    position: fixed;
    top: 1em;
    right: .8em;
    height: 2.5em;
    width: 2.5em;
    background: rgba(255, 255, 255, 0.375);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: 99;
    padding: .5em;
  }
  .button-menu-mobile .hamburger-row{
    display: block;
    width: 100%;
    height: .31em;
    background: #000;
    margin-bottom: .75em;
    border-radius: .30em;
    transition-duration: .2s;
  }
  .show-close-mobile .hamburger-row{
    opacity: 0;
  }
  .show-close-mobile .hamburger-row:first-child{
    opacity: 1;
    transform: rotate(45deg) translate(0.8em, 0.8em);
  }
  .show-close-mobile .hamburger-row:last-child{
    opacity: 1;
    transform: rotate(-45deg) translate(0.7em, -0.7em);
  }
  .close-cta-p{
    top: 1.5em;
    right: 1.5em;
    display: block;
    z-index: 2;
  }
  .content-cta-p{
    top: 2.5vh;
    width: 95vw;
    left: 2.5vw;
    flex-direction: column;
  }
  .content-cta-p .box{
    width: 100%;
    box-sizing: border-box;
  }
  .content-cta-p .box:nth-child(2){
    padding-top: 0em;
  }
}