/*! Oscanre production styles */
/* ------------------------------------------------*/
/* Oscanre Backgrounds Start */
/* ------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.media-image-1 {
  background-image: none;
}

.media-image-2 {
  background-image: none;
}

.media-full-1 {
  background-image: none;
}

.media-full-4 {
  background-image: url('../img/oscanre/oskar-hero.jpg');
}

.media-full-5 {
  background-image: none;
}

.media-full-video-1 {
  background-image: none;
}

.split-slide-1 {
  background-image: none;
}

.split-slide-2 {
  background-image: none;
}

.split-slide-3 {
  background-image: none;
}

.about-image {
  background-image: url("../img/oscanre/hero-oskarpytka.webp");
}

.contact-image {
  background-image: url("../img/oscanre/oskar-face.jpg");
}

/* ------------------------------------------------*/
/* Oscanre Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Fonts Start */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Base CSS Styles Start */
/* ------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

::-moz-selection {
  background-color: rgba(255, 255, 255, 0.6);
  color: #141414;
  text-shadow: none;
}

::selection {
  background-color: rgba(255, 255, 255, 0.6);
  color: #141414;
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 5px;
  background: #242424;
}
@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: #242424;
}

::-webkit-scrollbar-thumb {
  background-color: #555555;
  border-radius: 10px;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  min-width: 360px;
  overflow-x: hidden !important;
  font: normal 400 1.6rem/1.6 "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
  background-color: #0c0c0c;
}

section {
  position: relative;
  min-width: 360px;
}

a {
  text-decoration: none;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.container-mobile {
  padding: 0 3.4rem;
}

.container-desktop {
  padding: 0 6rem;
}
@media only screen and (min-width: 1400px) {
  .container-desktop {
    padding: 0 8rem;
  }
}

.fullheight {
  position: relative;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .fullheight {
    height: 100%;
  }
}

.fullheight-mobile {
  position: relative;
  height: 100%;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 360px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}

.color-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.layer-dark-03 {
  background-color: rgba(0, 0, 0, 0.3);
}

.layer-dark-06 {
  background-color: rgba(0, 0, 0, 0.6);
}

.block-rounded-s {
  -moz-border-radius: 0.4rem;
       border-radius: 0.4rem;
  overflow: hidden;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

@-webkit-keyframes blockMove {
  0% {
    -webkit-transform: translateY(102%);
            transform: translateY(102%);
  }
  35% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  55% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-102%);
            transform: translateY(-102%);
  }
}

@-moz-keyframes blockMove {
  0% {
    -moz-transform: translateY(102%);
         transform: translateY(102%);
  }
  35% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  55% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-102%);
         transform: translateY(-102%);
  }
}

@keyframes blockMove {
  0% {
    -webkit-transform: translateY(102%);
       -moz-transform: translateY(102%);
            transform: translateY(102%);
  }
  35% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
  55% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-102%);
       -moz-transform: translateY(-102%);
            transform: translateY(-102%);
  }
}
@-webkit-keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemsOpacity {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------------------------------*/
/* Base CSS Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Transitions Start */
/* ------------------------------------------------*/
body .header,
body .footer-desktop {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
body.loaded .header,
body.loaded .footer-desktop {
  opacity: 1;
}

.main::after {
  -webkit-transform: translateY(102%);
     -moz-transform: translateY(102%);
      -ms-transform: translateY(102%);
          transform: translateY(102%);
}
.main .footer-mobile {
  opacity: 0;
}
.main .headline__subtitle,
.main .headline__title,
.main .headline__btnholder,
.main .media__countdown {
  opacity: 0;
  -webkit-transform: translateY(1rem);
     -moz-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
}
.main .main__media,
.main .intro__background,
.main .fullscreen-bg {
  opacity: 0;
}
.main.animate-in:after {
  -webkit-animation: 0.8s 0.3s ease-in-out 1 both blockMove;
     -moz-animation: 0.8s 0.3s ease-in-out 1 both blockMove;
          animation: 0.8s 0.3s ease-in-out 1 both blockMove;
}
.main.animate-in .main__media,
.main.animate-in .footer-mobile,
.main.animate-in .intro__background,
.main.animate-in .fullscreen-bg {
  -webkit-animation: 0.8s 0.3s ease-in-out 1 both itemsOpacity;
     -moz-animation: 0.8s 0.3s ease-in-out 1 both itemsOpacity;
          animation: 0.8s 0.3s ease-in-out 1 both itemsOpacity;
}
.main.animate-in .headline__subtitle,
.main.animate-in .headline__title,
.main.animate-in .headline__btnholder,
.main.animate-in .media__countdown {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.main.animate-in .headline__subtitle {
  -webkit-transition: opacity 0.2s 0.8s, -webkit-transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 0.8s, -webkit-transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 0.8s, transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 0.8s, transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 0.8s, transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 0.8s, transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 0.8s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.main.animate-in .headline__title,
.main.animate-in .media__countdown {
  -webkit-transition: opacity 0.2s 0.9s, -webkit-transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 0.9s, -webkit-transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 0.9s, transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 0.9s, transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 0.9s, transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 0.9s, transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 0.9s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.main.animate-in .headline__btnholder {
  -webkit-transition: opacity 0.2s 1s, -webkit-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1s, -webkit-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.main.animate-out {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.inner {
  opacity: 0;
  visibility: hidden;
}
.inner::after {
  -webkit-transform: translateY(102%);
     -moz-transform: translateY(102%);
      -ms-transform: translateY(102%);
          transform: translateY(102%);
}
.inner .content-block {
  opacity: 0;
  -webkit-transform: translateY(1rem);
     -moz-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
}
.inner .inner__media {
  opacity: 0;
}
.inner.animate-in {
  opacity: 1;
  visibility: visible;
}
.inner.animate-in:after {
  -webkit-animation: 0.8s 0.3s ease-in-out 1 both blockMove;
     -moz-animation: 0.8s 0.3s ease-in-out 1 both blockMove;
          animation: 0.8s 0.3s ease-in-out 1 both blockMove;
}
.inner.animate-in .inner__media {
  -webkit-animation: 0.8s 0.3s ease-in-out 1 both itemsOpacity;
     -moz-animation: 0.8s 0.3s ease-in-out 1 both itemsOpacity;
          animation: 0.8s 0.3s ease-in-out 1 both itemsOpacity;
}
.inner.animate-in .content-block {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.inner.animate-in .content-block:nth-of-type(1) {
  -webkit-transition: opacity 0.2s 1s, -webkit-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1s, -webkit-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1s, transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.inner.animate-in .content-block:nth-of-type(2) {
  -webkit-transition: opacity 0.2s 1.1s, -webkit-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.1s, -webkit-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.inner.animate-in .content-block:nth-of-type(3) {
  -webkit-transition: opacity 0.2s 1.2s, -webkit-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.2s, -webkit-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.inner.animate-in .content-block:nth-of-type(4) {
  -webkit-transition: opacity 0.2s 1.3s, -webkit-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.3s, -webkit-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.inner.animate-out {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.nav {
  opacity: 0;
  visibility: hidden;
}
.nav::after {
  -webkit-transform: translateY(102%);
     -moz-transform: translateY(102%);
      -ms-transform: translateY(102%);
          transform: translateY(102%);
}
.nav .nav__background {
  opacity: 0;
}
.nav .navigation li {
  opacity: 0;
  -webkit-transform: translate(0, 1rem);
     -moz-transform: translate(0, 1rem);
      -ms-transform: translate(0, 1rem);
          transform: translate(0, 1rem);
}
.nav.animate-in {
  opacity: 1;
  visibility: visible;
}
.nav.animate-in:after {
  -webkit-animation: 0.8s 0.3s ease-in-out 1 both blockMove;
     -moz-animation: 0.8s 0.3s ease-in-out 1 both blockMove;
          animation: 0.8s 0.3s ease-in-out 1 both blockMove;
}
.nav.animate-in .nav__background {
  opacity: 1;
  -webkit-transition: opacity 0.8s 0.6s ease-in;
  -o-transition: opacity 0.8s 0.6s ease-in;
  -moz-transition: opacity 0.8s 0.6s ease-in;
  transition: opacity 0.8s 0.6s ease-in;
}
.nav.animate-in .navigation li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.nav.animate-in .navigation li:nth-of-type(1) {
  -webkit-transition: opacity 0.2s 1.1s, -webkit-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.1s, -webkit-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.1s, transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.1s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.nav.animate-in .navigation li:nth-of-type(2) {
  -webkit-transition: opacity 0.2s 1.2s, -webkit-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.2s, -webkit-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.2s, transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.2s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.nav.animate-in .navigation li:nth-of-type(3) {
  -webkit-transition: opacity 0.2s 1.3s, -webkit-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.3s, -webkit-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.3s, transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.3s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.nav.animate-in .navigation li:nth-of-type(4) {
  -webkit-transition: opacity 0.2s 1.4s, -webkit-transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.4s, -webkit-transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -o-transition: opacity 0.2s 1.4s, transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  -moz-transition: opacity 0.2s 1.4s, transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.4s, transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25);
  transition: opacity 0.2s 1.4s, transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25), -webkit-transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25), -moz-transform 0.2s 1.4s cubic-bezier(0.06, 0.71, 0.71, 1.25);
}
.nav.animate-out {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.popup {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s;
  -o-transition: visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s;
}
.popup .popup__content {
  opacity: 0;
  -webkit-transform: translateY(30px);
     -moz-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: opacity 0.6s, transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: opacity 0.6s, transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.6s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.popup.animate-in {
  opacity: 1;
  visibility: visible;
}
.popup.animate-in .popup__content {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.popup.animate-out {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0.6s, visibility 0s 0.9s;
  -o-transition: opacity 0.3s 0.6s, visibility 0s 0.9s;
  -moz-transition: opacity 0.3s 0.6s, visibility 0s 0.9s;
  transition: opacity 0.3s 0.6s, visibility 0s 0.9s;
}
.popup.animate-out .popup__content {
  opacity: 0;
  -webkit-transform: translateY(-30px);
     -moz-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
}

.popup-close {
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: color 0.3s, -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: color 0.3s, -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: color 0.3s, transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: color 0.3s, transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: color 0.3s, transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: color 0.3s, transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.popup-close.is-scaled-up {
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* ------------------------------------------------*/
/* Transitions End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Typography Start */
/* ------------------------------------------------*/
h1 {
  font: normal 400 4rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 6.6rem;
  }
}

.typed-cursor {
  font-weight: 200;
}

.headline__subtitle {
  display: block;
  font: normal 600 1.8rem/1.6 "Poppins", sans-serif;
  color: #ffffff;
  margin-bottom: 2.3rem;
}

.headline__btnholder {
  margin-top: 3.8rem;
}

.headline__text {
  font: normal 400 1.6rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
  max-width: 480px;
  margin-bottom: 4.4rem;
}
@media only screen and (min-width: 1400px) {
  .headline__text {
    max-width: 542px;
    margin-bottom: 4.8rem;
  }
}

h2 {
  font: normal 400 3rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 3.8rem;
  }
}
@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 5rem;
  }
}

.block__subtitle {
  display: block;
  font: normal 600 1.8rem/1.2 "Poppins", sans-serif;
  color: #aaaaaa;
  margin-bottom: 2.2rem;
}

.block__text {
  margin-top: 2.3rem;
}

h3 {
  font: normal 500 2rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
}

h4 {
  font: normal 500 1.8rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
}
h4 small {
  display: block;
  margin-top: 0.2rem;
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: #ffffff;
}
h4.opposite {
  font-weight: 600;
  color: #141414;
}
h4.opposite small {
  font-weight: 400;
  color: #141414;
}

h5 {
  font: normal 500 1.8rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
}

p {
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
}
p span {
  font-weight: 500;
  color: #ffffff;
}
p.copyright {
  font: normal 500 1.2rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
}
p.copyright a {
  font: normal 500 1.2rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
}
.no-touch p.copyright a:hover {
  color: #ffffff;
}
p.bright {
  color: #ffffff;
}
p.bright a {
  color: #ffffff;
}
.no-touch p.bright a:hover {
  color: #ffffff;
}
@media only screen and (min-width: 1400px) {
  p {
    font-size: 1.6rem;
  }
}

a {
  color: #444444;
}

.text-link {
  color: inherit;
  color: #aaaaaa;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3))), -webkit-gradient(linear, left top, right top, from(white), to(white));
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), -moz-linear-gradient(left, white, white);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), -o-linear-gradient(left, white, white);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(to right, white, white);
  -moz-background-size: 100% 1px, 0 1px;
       background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -o-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}
.no-touch .text-link:hover {
  color: #ffffff;
  -moz-background-size: 0 1px, 100% 1px;
       background-size: 0 1px, 100% 1px;
}

.contact-link {
  color: inherit;
  color: #aaaaaa;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, right top, from(white), to(white));
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), -moz-linear-gradient(left, white, white);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), -o-linear-gradient(left, white, white);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(to right, white, white);
  -moz-background-size: 100% 1px, 0 1px;
       background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -o-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}
.no-touch .contact-link:hover {
  color: #ffffff;
  -moz-background-size: 0 1px, 100% 1px;
       background-size: 0 1px, 100% 1px;
}

.image-caption p {
  font: normal 500 1.8rem/1.2 "Poppins", sans-serif;
  color: #141414;
}
.image-caption p span {
  display: block;
  font: normal 400 1.4rem/1.6 "Poppins", sans-serif;
  color: #141414;
  margin-top: 0.2rem;
}
.image-caption.opposite p {
  font-weight: 400;
  color: #ffffff;
}
.image-caption.opposite p span {
  display: block;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.popup-title__title {
  font: normal 400 3rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .popup-title__title {
    font-size: 4rem;
  }
}

.popup-title__text {
  font: normal 300 1.6rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
  margin-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .popup-title__text {
    margin-top: 2.3rem;
  }
}

/* ------------------------------------------------*/
/* Typography End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Buttons & Controls Start */
/* ------------------------------------------------*/
.menu-button {
  position: absolute;
  top: 0;
  right: 3.4rem;
  width: 2.4rem;
  height: 8rem;
  z-index: 12;
  padding: 2.8rem 0;
}
@media only screen and (min-width: 1200px) {
  .menu-button {
    position: absolute;
    top: 0;
    right: 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .menu-button {
    position: absolute;
    top: 0;
    right: 8rem;
    height: 9rem;
    padding: 3.3rem 0;
  }
}

.menu-trigger {
  display: block;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}
.menu-trigger .circle {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 4rem;
  height: 4rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  border: 2px solid #ffffff;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
     -moz-transform: translateX(-50%) translateY(-50%) scale(0);
      -ms-transform: translateX(-50%) translateY(-50%) scale(0);
          transform: translateX(-50%) translateY(-50%) scale(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.menu-trigger .burger {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.4rem;
  height: 2px;
  background-color: transparent;
  -moz-border-radius: 1px;
       border-radius: 1px;
}
.menu-trigger .burger::before, .menu-trigger .burger::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -moz-border-radius: 1px;
       border-radius: 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: all 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: all 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: all 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.menu-trigger .burger::before {
  -webkit-transform: translateX(-50%) translateY(-4px);
     -moz-transform: translateX(-50%) translateY(-4px);
      -ms-transform: translateX(-50%) translateY(-4px);
          transform: translateX(-50%) translateY(-4px);
}
.menu-trigger .burger::after {
  -webkit-transform: translateX(-50%) translateY(4px);
     -moz-transform: translateX(-50%) translateY(4px);
      -ms-transform: translateX(-50%) translateY(4px);
          transform: translateX(-50%) translateY(4px);
}
.no-touch .menu-trigger:hover .circle {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
     -moz-transform: translateX(-50%) translateY(-50%) scale(1);
      -ms-transform: translateX(-50%) translateY(-50%) scale(1);
          transform: translateX(-50%) translateY(-50%) scale(1);
}
.no-touch .menu-trigger:hover .burger::before, .no-touch .menu-trigger:hover .burger::after {
  -webkit-transform: translateX(-50%) translateY(0) rotate(0);
     -moz-transform: translateX(-50%) translateY(0) rotate(0);
      -ms-transform: translateX(-50%) translateY(0) rotate(0);
          transform: translateX(-50%) translateY(0) rotate(0);
  height: 4px;
  width: 4px;
  -moz-border-radius: 50%;
       border-radius: 50%;
}
.menu-trigger.menu-opened .burger::before {
  -webkit-transform: translateX(-50%) translateY(0) rotate(45deg);
     -moz-transform: translateX(-50%) translateY(0) rotate(45deg);
      -ms-transform: translateX(-50%) translateY(0) rotate(45deg);
          transform: translateX(-50%) translateY(0) rotate(45deg);
}
.menu-trigger.menu-opened .burger::after {
  -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
     -moz-transform: translateX(-50%) translateY(0) rotate(-45deg);
      -ms-transform: translateX(-50%) translateY(0) rotate(-45deg);
          transform: translateX(-50%) translateY(0) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-block;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}

.btn-l {
  display: block;
  margin-right: 0;
  margin-bottom: 1.4rem;
  height: 4rem;
  padding: 0 2rem;
  border: 2px solid #ffffff;
  -moz-border-radius: 2rem;
       border-radius: 2rem;
  font: normal 600 1.4rem/3.6rem "Poppins", sans-serif;
  color: #ffffff;
}
.btn-l:last-of-type {
  margin-bottom: 0;
  margin-right: 0;
}
.btn-l .btn-title {
  display: block;
  position: relative;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.btn-l .btn-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.no-touch .btn-l:hover .btn-title {
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.no-touch .btn-l:hover .btn-hover {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 576px) {
  .btn-l {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .btn-l:last-of-type {
    margin-right: 0;
  }
}

.btn-l-icon {
  display: block;
  position: relative;
  margin-right: 0;
  margin-bottom: 1.4rem;
  height: 4rem;
  padding: 0 4.5rem 0 2rem;
  -moz-border-radius: 2rem;
       border-radius: 2rem;
  font: normal 600 1.4rem/3.6rem "Poppins", sans-serif;
}
.btn-l-icon:last-of-type {
  margin-bottom: 0;
  margin-right: 0;
}
.btn-l-icon span,
.btn-l-icon i {
  display: inline-block;
}
.btn-l-icon .btn-icon-anim {
  display: block;
  position: absolute;
  top: 0;
  right: 2rem;
  width: auto;
  height: 3.6rem;
  overflow: hidden;
}
.no-touch .btn-l-icon:hover i {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
          animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
}
@media only screen and (min-width: 576px) {
  .btn-l-icon {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .btn-l-icon:last-of-type {
    margin-right: 0;
  }
}

.btn-outline-light {
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}

.btn-light {
  font-weight: 700;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #141414;
}

.btn-s-text {
  display: block;
  font: normal 600 1.4rem/1.6 "Poppins", sans-serif;
  color: #ffffff;
}
.btn-s-text .title {
  display: block;
  position: relative;
  font-size: 1.4rem;
  color: #ffffff;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.btn-s-text .hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  color: #ffffff;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.no-touch .btn-s-text:hover .title {
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.no-touch .btn-s-text:hover .hover {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.btn-s {
  position: absolute;
  top: 2.4rem;
  right: 5.8rem;
  width: 3.4rem;
  height: 3.4rem;
  margin-right: 2rem;
  font: normal 600 1.4rem/3.4rem "Poppins", sans-serif;
  color: #ffffff;
}
.btn-s i {
  display: inline-block;
}
.btn-s .title {
  display: none;
  position: relative;
  font-size: 1.4rem;
  color: #ffffff;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.btn-s .hover {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  color: #ffffff;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.no-touch .btn-s:hover .title {
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.no-touch .btn-s:hover .hover {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .btn-s {
    margin-right: 3.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-s {
    width: auto;
    position: absolute;
    top: 2.3rem;
    right: 8.4rem;
  }
  .btn-s i {
    display: none;
  }
  .btn-s .title {
    display: block;
  }
  .btn-s .hover {
    display: block;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-s {
    position: absolute;
    top: 2.8rem;
    right: 10.4rem;
  }
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(14px);
            transform: translateX(14px);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-14px);
            transform: translateX(-14px);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-moz-keyframes slideOutLeft {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(14px);
         transform: translateX(14px);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-14px);
         transform: translateX(-14px);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(14px);
       -moz-transform: translateX(14px);
            transform: translateX(14px);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-14px);
       -moz-transform: translateX(-14px);
            transform: translateX(-14px);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-14px);
            transform: translateX(-14px);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(14px);
            transform: translateX(14px);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes slideOutRight {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(-14px);
         transform: translateX(-14px);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(14px);
         transform: translateX(14px);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-14px);
       -moz-transform: translateX(-14px);
            transform: translateX(-14px);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(14px);
       -moz-transform: translateX(14px);
            transform: translateX(14px);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ------------------------------------------------*/
/* Buttons & Controls End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Forms and Forms Reply Groups Start */
/* ------------------------------------------------*/
.form-container {
  position: relative;
}

.form {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.form.is-hidden {
  opacity: 0;
}

form {
  position: relative;
  width: 100%;
}
form input, form textarea {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  padding: 1.3rem 0.2rem 1.2rem 0.2rem;
  font: normal 400 1.6rem/1.6 "Poppins", sans-serif;
  -webkit-transition: border 0.3s, background-color 0.3s ease-in-out;
  -o-transition: border 0.3s, background-color 0.3s ease-in-out;
  -moz-transition: border 0.3s, background-color 0.3s ease-in-out;
  transition: border 0.3s, background-color 0.3s ease-in-out;
}
form input.margin-s, form textarea.margin-s {
  margin: 0 0 0.6rem 0;
}
form input {
  height: 5rem;
  margin: 0 0 2.4rem 0;
}
form textarea {
  height: 10rem;
  resize: none;
  margin: 0 0 2.4rem 0;
}
form input.margin-s, form textarea.margin-s {
  margin: 0 0 0.6rem 0;
}
form input.margin-l, form textarea.margin-l {
  margin: 0 0 4.2rem 0;
}
@media only screen and (min-width: 1400px) {
  form input, form textarea {
    height: 5rem;
  }
  form textarea {
    height: 10rem;
  }
}

.form-light ::-webkit-input-placeholder {
  font-weight: 300;
  color: #ffffff;
}
.form-light :-moz-placeholder {
  font-weight: 300;
  color: #ffffff;
}
.form-light ::-moz-placeholder {
  font-weight: 300;
  color: #ffffff;
}
.form-light :-ms-input-placeholder {
  font-weight: 300;
  color: #ffffff;
}
.form-light input:focus:required:invalid,
.form-light textarea:focus:required:invalid {
  color: #ffffff;
}
.form-light input:required:valid,
.form-light textarea:required:valid {
  color: #ffffff;
}
.form-light input, .form-light textarea {
  border-bottom: 2px solid white;
  color: #ffffff;
}
.form-light input:focus, .form-light textarea:focus {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.form-light .inputs-description {
  color: rgba(255, 255, 255, 0.4);
}

.reply-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.reply-group.is-visible {
  opacity: 1;
}

.reply-group__icon {
  display: block;
  margin: 0 auto 1.7rem;
  font-size: 4rem;
  color: #ffffff;
}

.reply-group__title {
  font: normal 400 2rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.reply-group__text {
  display: block;
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
}

/* ------------------------------------------------*/
/* Forms and Forms Reply Groups End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animated Backgrounds Start */
/* ------------------------------------------------*/
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

#main-video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center center;
  -moz-background-size: contain;
       background-size: contain;
  -o-object-fit: cover;
     object-fit: cover;
}

#bgndKenburns,
#bgndKenburnsFull {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

#triangles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-color: transparent;
}

/* ------------------------------------------------*/
/* Animated Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Header Start */
/* ------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 360px;
  height: 8rem;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (min-width: 1200px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .header {
    height: 9rem;
  }
}

.header__left,
.header__right {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header.split {
  background-color: #0c0c0c;
}
.header.split .header__left,
.header.split .header__right {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header.split .header__left.menu-is-visible,
.header.split .header__right.menu-is-visible {
  background-color: #0c0c0c;
}
.header.split .header__left.menu-is-visible .header__left,
.header.split .header__left.menu-is-visible .header__right,
.header.split .header__right.menu-is-visible .header__left,
.header.split .header__right.menu-is-visible .header__right {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}
.header.split .header__left.inner-is-visible,
.header.split .header__right.inner-is-visible {
  background-color: #0c0c0c;
}
.header.split .header__left.inner-is-visible .header__left,
.header.split .header__left.inner-is-visible .header__right,
.header.split .header__right.inner-is-visible .header__left,
.header.split .header__right.inner-is-visible .header__right {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header.full {
  background-color: transparent;
}
.header.full .header__left,
.header.full .header__right {
  background-color: transparent;
  border-bottom: none;
}
.header.full.menu-is-visible {
  background-color: #0c0c0c;
}
.header.full.menu-is-visible .header__left,
.header.full.menu-is-visible .header__right {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
.header.full.inner-is-visible {
  background-color: #0c0c0c;
}
.header.full.inner-is-visible .header__left,
.header.full.inner-is-visible .header__right {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
@media only screen and (min-width: 1200px) {
  .header.split {
    background-color: transparent;
  }
  .header.split .header__left {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header.split .header__right {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }
  .header.split.menu-is-visible {
    background-color: transparent;
  }
  .header.split.menu-is-visible .header__left,
.header.split.menu-is-visible .header__right {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.1);
  }
  .header.split.inner-is-visible {
    background-color: transparent;
  }
  .header.split.inner-is-visible .header__left {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }
  .header.split.inner-is-visible .header__right {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
  }
  .header.full {
    background-color: transparent;
  }
  .header.full .header__left,
.header.full .header__right {
    background-color: transparent;
    border-bottom: none;
  }
  .header.full.menu-is-visible {
    background-color: transparent;
  }
  .header.full.menu-is-visible .header__left,
.header.full.menu-is-visible .header__right {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
  }
  .header.full.inner-is-visible {
    background-color: transparent;
  }
  .header.full.inner-is-visible .header__left {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }
  .header.full.inner-is-visible .header__right {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
  }
}

.header__content {
  position: relative;
  height: 100%;
  padding: 0 3.4rem;
}
@media only screen and (min-width: 1200px) {
  .header__content {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .header__content {
    padding: 0 8rem;
  }
}

.logo {
  position: absolute;
  top: 0;
  left: 3.4rem;
  height: 100%;
}
.logo img {
  width: auto;
  display: block;
  position: relative;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 1200px) {
  .logo {
    left: 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .logo {
    left: 8rem;
  }
}

/* ------------------------------------------------*/
/* Header End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Footer Start */
/* ------------------------------------------------*/
.footer-mobile {
  display: block;
  width: 100%;
  height: 8rem;
}
@media only screen and (min-width: 1200px) {
  .footer-mobile {
    display: none;
  }
}

.footer-mobile.split {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-mobile.full {
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: none;
}

.footer-desktop {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .footer-desktop {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    overflow: hidden;
    z-index: 2;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-desktop {
    height: 9rem;
  }
}

.footer-desktop__left,
.footer-desktop__right {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-desktop.split .footer-desktop__left {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-desktop.split .footer-desktop__right {
  background-color: rgba(0, 0, 0, 0.1);
}
.footer-desktop.split.menu-is-visible .footer-desktop__left,
.footer-desktop.split.menu-is-visible .footer-desktop__right {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}
.footer-desktop.split.inner-is-visible .footer-desktop__left {
  border-top: 1px solid rgba(255, 255, 255, 0);
  background-color: rgba(0, 0, 0, 0.2);
}
.footer-desktop.split.inner-is-visible .footer-desktop__right {
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-desktop.full .footer-desktop__left,
.footer-desktop.full .footer-desktop__right {
  background-color: transparent;
  border-bottom: none;
}
.footer-desktop.full.menu-is-visible .footer-desktop__left,
.footer-desktop.full.menu-is-visible .footer-desktop__right {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
.footer-desktop.full.inner-is-visible .footer-desktop__left {
  border-top: 1px solid rgba(255, 255, 255, 0);
  background-color: rgba(0, 0, 0, 0.2);
}
.footer-desktop.full.inner-is-visible .footer-desktop__right {
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ------------------------------------------------*/
/* Footer End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Main Section Start */
/* ------------------------------------------------*/
.main {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 8rem;
  background-color: #0c0c0c;
  z-index: 1;
}
.main::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.main.full {
  padding-top: 0;
}
@media only screen and (min-width: 1200px) {
  .main {
    overflow: hidden;
    padding-top: 0;
  }
}

.fullscreen-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.main__intro {
  position: relative;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .main__intro {
    height: 100%;
  }
}

.intro__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro__content {
  position: relative;
  padding: 10rem 0;
}
@media only screen and (min-width: 1200px) {
  .intro__content {
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 1400px) {
  .intro__content {
    padding: 9rem 0;
  }
}

.headline {
  padding: 0 3.4rem;
}
.headline.centered-mobile {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .headline {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .headline {
    padding: 0 8rem;
  }
}

.intro__dataline {
  position: relative;
  width: 100%;
  height: 8rem;
  padding: 0 3.4rem;
}
@media only screen and (min-width: 1200px) {
  .intro__dataline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .intro__dataline {
    height: 9rem;
    padding: 0 8rem;
  }
}

.main__media {
  position: relative;
  height: 80vh;
  min-height: 600px;
}
@media only screen and (min-width: 1200px) {
  .main__media {
    height: 100%;
  }
}

.media__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.media__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}

/* ------------------------------------------------*/
/* Main Section End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Menu Start */
/* ------------------------------------------------*/
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 360px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2;
  background-color: #0c0c0c;
}
.nav::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
@media only screen and (min-width: 1200px) {
  .nav {
    overflow: hidden;
  }
}

.nav__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  -moz-background-size: 150%;
       background-size: 150%;
  background-image: none;
}
@media only screen and (min-width: 1200px) {
  .nav__background {
    -moz-background-size: 100%;
         background-size: 100%;
  }
}

.nav__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.nav__content {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  padding: 0 3.4rem;
}
@media only screen and (min-width: 1200px) {
  .nav__content {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .nav__content {
    padding: 0 8rem;
  }
}

.navigation {
  display: block;
  overflow: hidden;
}
.navigation li {
  display: inline-block;
  overflow: hidden;
  font: normal 400 3rem/1.6 "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.4);
}
.navigation li::after {
  content: "/";
  display: inline-block;
  font-weight: 300;
}
.navigation li:last-of-type::after {
  display: none;
}
.navigation li a {
  display: inline-block;
  position: relative;
  font: normal 400 3rem/1.6 "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.4);
}
.navigation li a .link-title {
  display: block;
  position: relative;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  color: rgba(255, 255, 255, 0.4);
}
.navigation li a .link-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  color: #ffffff;
}
.no-touch .navigation li a:hover .link-title {
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.no-touch .navigation li a:hover .link-hover {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.navigation li a.active-link .link-title,
.navigation li a.active-link .link-hover {
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .navigation li {
    font-size: 4.4rem;
  }
  .navigation li a {
    font-size: 4.4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .navigation li {
    font-size: 6rem;
  }
  .navigation li a {
    font-size: 6rem;
  }
}

/* ------------------------------------------------*/
/* Menu End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Socials Start */
/* ------------------------------------------------*/
.socials {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font: normal 600 1.4rem/1.6 "Poppins", sans-serif;
  line-height: 0.9;
}
.socials li {
  display: inline-block;
  position: relative;
  font: normal 600 1.4rem/1.6 "Poppins", sans-serif;
  margin-right: 2rem;
}
.socials li:last-of-type {
  margin-right: 0;
}

/* ------------------------------------------------*/
/* Socials End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Countdown Start */
/* ------------------------------------------------*/
.media__countdown {
  position: relative;
}
.media__countdown #countdown {
  position: relative;
  font: normal 400 4rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
}
.media__countdown .countdown-period {
  display: inline-block;
  margin-left: 1rem;
  letter-spacing: normal;
  text-transform: lowercase;
}
@media only screen and (min-width: 768px) {
  .media__countdown #countdown {
    font-size: 5.6rem;
  }
  .media__countdown .countdown-period {
    margin-left: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .media__countdown #countdown {
    font-size: 6.6rem;
  }
  .media__countdown .countdown-period {
    margin-left: 1.6rem;
  }
}

/* ------------------------------------------------*/
/* Countdown End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Swiper Slider Start */
/* ------------------------------------------------*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
}

.split-slide {
  background-color: #0c0c0c;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
}

.split-slider-pagination-ignite {
  bottom: 0;
}
.swiper-dataline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .swiper-dataline {
    display: none;
  }
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  height: 8rem;
  bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 9rem;
    height: 9rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
}

.swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  width: 0.8rem;
  height: 0.8rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.4rem;
  left: -0.4rem;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #ffffff;
  -moz-border-radius: 50%;
       border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.no-touch .swiper-pagination-bullet:hover {
  background-color: #ffffff;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.split-slider-btn-ignite-prev,
.split-slider-btn-ignite-next {
  width: auto;
  height: 8rem;
  margin-top: 0;
  top: auto;
  bottom: 0;
  color: #ffffff;
  overflow: hidden;
}
.split-slider-btn-ignite-prev i,
.split-slider-btn-ignite-next i {
  margin: 0 1rem;
}
.split-slider-btn-ignite-prev::after,
.split-slider-btn-ignite-next::after {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .split-slider-btn-ignite-prev,
.split-slider-btn-ignite-next {
    bottom: 8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .split-slider-btn-ignite-prev,
.split-slider-btn-ignite-next {
    bottom: 9rem;
  }
}

.split-slider-btn-ignite-prev {
  left: 2.4rem;
}
@media only screen and (min-width: 1200px) {
  .split-slider-btn-ignite-prev {
    left: 5rem;
  }
  .no-touch .split-slider-btn-ignite-prev:hover i {
    -webkit-animation: 0.4s ease-in-out 0s 1 both slideOutRight;
       -moz-animation: 0.4s ease-in-out 0s 1 both slideOutRight;
            animation: 0.4s ease-in-out 0s 1 both slideOutRight;
  }
}
@media only screen and (min-width: 1400px) {
  .split-slider-btn-ignite-prev {
    left: 7rem;
  }
}

.split-slider-btn-ignite-next {
  right: 2.4rem;
}
@media only screen and (min-width: 1200px) {
  .split-slider-btn-ignite-next {
    right: 5rem;
  }
  .no-touch .split-slider-btn-ignite-next:hover i {
    -webkit-animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
       -moz-animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
            animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
  }
}
@media only screen and (min-width: 1400px) {
  .split-slider-btn-ignite-next {
    right: 7rem;
  }
}

/* ------------------------------------------------*/
/* Swiper Slider End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Popup Dialogs Start */
/* ------------------------------------------------*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 360px;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.popup__container {
  position: relative;
  padding: 3.4rem 3.4rem;
}
@media only screen and (min-width: 768px) {
  .popup__container {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    padding: 0;
  }
}

.popup__content {
  position: relative;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  padding: 3.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .popup__content {
    max-width: 510px;
    padding: 3.4rem 3.4rem;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .popup__content {
    padding: 6rem;
    max-width: 640px;
  }
}
@media only screen and (min-width: 1400px) {
  .popup__content {
    padding: 8rem;
    max-width: 700px;
  }
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  font-size: 1.6rem;
  text-align: center;
  line-height: 4rem;
  color: #ffffff;
}
.no-touch .popup-close:hover {
  color: rgba(255, 255, 255, 0.4);
}

@supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  .popup__content {
    background-color: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
}
@supports not ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  .popup__content {
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}
.popup-title {
  position: relative;
  margin-bottom: 4.2rem;
}

.mfp-bg {
  background: #000000;
}

/* ------------------------------------------------*/
/* Popup Dialogs End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Inner Sections Start */
/* ------------------------------------------------*/
.inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 360px;
  height: 100%;
  background-color: #0c0c0c;
  overflow-y: auto;
  z-index: 1;
}
.inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
@media only screen and (min-width: 1200px) {
  .inner {
    height: 100%;
    padding-top: 0;
    overflow: hidden;
  }
}

.inner__content {
  position: relative;
  padding-top: 80px;
}
@media only screen and (min-width: 1200px) {
  .inner__content {
    padding-top: 0;
  }
}

.inner__info,
.inner__media {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .inner__info,
.inner__media {
    height: 100%;
  }
}

.inner__media {
  height: 80vh;
  min-height: 600px;
}
@media only screen and (min-width: 1200px) {
  .inner__media {
    height: 100%;
  }
}

.blocks-container {
  padding: 80px 0;
}
@media only screen and (min-width: 1200px) {
  .blocks-container {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    padding: 0;
  }
}

.media-container {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.media-container.portfolio-container {
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .media-container {
    height: 100%;
  }
  .media-container.portfolio-container {
    height: 100%;
  }
}

.content-block {
  padding: 0 3.4rem;
  margin-bottom: 5rem;
}
.content-block:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .content-block {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .content-block {
    padding: 0 8rem;
  }
}

.image {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}

.image-caption {
  position: absolute;
  bottom: 3.4rem;
  left: 3.4rem;
  width: -moz-calc(100% - 6.8rem);
  width: calc(100% - 6.8rem);
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  -moz-border-radius: 4px;
       border-radius: 4px;
  padding: 2.4rem 3.4rem;
  text-align: center;
}
.image-caption.opposite {
  background-color: rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) {
  .image-caption {
    width: auto;
    text-align: left;
  }
}
@media only screen and (min-width: 1200px) {
  .image-caption {
    left: 6rem;
    bottom: 11rem;
    padding: 0;
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    border: none;
  }
}
@media only screen and (min-width: 1400px) {
  .image-caption {
    left: 8rem;
    bottom: 12rem;
  }
}

/* ------------------------------------------------*/
/* Inner Sections End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Skillbars Start */
/* ------------------------------------------------*/
.show-skillbar {
  display: block;
  padding: 0;
  margin-bottom: 2rem;
}
.show-skillbar:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) {
  .show-skillbar {
    margin-bottom: 2rem;
  }
  .show-skillbar:last-of-type {
    margin-bottom: 0;
  }
}

.skillbar {
  position: relative;
  width: 100%;
  height: 3.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 1400px) {
  .skillbar {
    height: 3.6rem;
  }
}

.skillbar-title {
  position: absolute;
  top: 0;
  left: 0;
  font: normal 500 2rem/1.6 "Poppins", sans-serif;
  color: #ffffff;
}

.skillbar-bar {
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0px;
  height: 1px;
  background-color: #ffffff;
}

.skill-bar-percent {
  display: block;
  position: absolute;
  top: 0;
  right: 2px;
  font: normal 500 2rem/1.6 "Poppins", sans-serif;
  -webkit-font-feature-settings: "lnum";
     -moz-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
  color: #ffffff;
}

/* ------------------------------------------------*/
/* Skillbars End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Start */
/* ------------------------------------------------*/
.features__item {
  display: block;
  position: relative;
  margin-bottom: 3.2rem;
}
.features__item:last-of-type {
  margin-bottom: 0;
}
.features__item img {
  width: 5rem;
  height: 4.6rem;
}
.features__item h3 {
  padding-left: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .features__item:nth-of-type(3) {
    margin-bottom: 0;
  }
}

/* ------------------------------------------------*/
/* Features End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Contact Data Start */
/* ------------------------------------------------*/
.contactdata__item {
  display: block;
  position: relative;
  margin-bottom: 3.2rem;
}
.contactdata__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .contactdata__item {
    margin-bottom: 0;
  }
}

.contactdata__title {
  color: #ffffff;
  margin: 0 0 1.2rem 0;
}

.contactdata__descr {
  margin-bottom: 1.1rem;
}
.contactdata__descr:last-of-type {
  margin-bottom: 0;
}

.contactdata__icon {
  margin-right: 1rem;
  min-width: 1.4rem;
}
.contactdata__icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.contactdata__text {
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
}
.contactdata__text p, .contactdata__text a {
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
}

.contactdata__socials {
  position: relative;
  display: block;
}
.contactdata__socials li {
  display: block;
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: #aaaaaa;
  margin-bottom: 0.2rem;
}
.contactdata__socials li:last-of-type {
  margin-bottom: 0;
}
.contactdata__socials li i {
  display: inline-block;
  font-size: 1.4rem;
  color: #ffffff;
  margin-right: 1rem;
  min-width: 1.4rem;
}
.contactdata__socials li a {
  display: inline-block;
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
}

/* ------------------------------------------------*/
/* Contact Data End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Gallery Start */
/* ------------------------------------------------*/
.my-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) {
  .my-gallery__item {
    height: 50vh;
  }
  .my-gallery__item img {
    width: auto;
    height: 50vh;
  }
}

@media only screen and (min-width: 1200px) {
  .my-gallery__link {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
  }
  .my-gallery__link .picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
         background-size: cover;
    -webkit-transition: background-position 0.5s;
    -o-transition: background-position 0.5s;
    -moz-transition: background-position 0.5s;
    transition: background-position 0.5s;
    -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.7s;
    transition: opacity 0.5s ease-in-out, -webkit-transform 0.7s;
    -o-transition: transform 0.7s, opacity 0.5s ease-in-out;
    -moz-transition: transform 0.7s, opacity 0.5s ease-in-out, -moz-transform 0.7s;
    transition: transform 0.7s, opacity 0.5s ease-in-out;
    transition: transform 0.7s, opacity 0.5s ease-in-out, -webkit-transform 0.7s, -moz-transform 0.7s;
  }
}

.my-gallery__image {
  opacity: 1;
}
@media only screen and (min-width: 1200px) {
  .my-gallery__image {
    opacity: 0;
  }
}

.my-gallery__description {
  position: absolute;
  bottom: 3.4rem;
  left: 3.4rem;
  width: -moz-calc(100% - 6.8rem);
  width: calc(100% - 6.8rem);
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  -moz-border-radius: 4px;
       border-radius: 4px;
  padding: 2.4rem 3.4rem;
  text-align: center;
}
.my-gallery__description.opposite {
  background-color: rgba(255, 255, 255, 0.05);
}
.my-gallery__description p {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .my-gallery__description {
    bottom: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -moz-border-radius: 0;
         border-radius: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .my-gallery__description h4 {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
}

@media only screen and (min-width: 1200px) {
  .no-touch .my-gallery__item:hover .my-gallery__description {
    opacity: 1;
  }
  .no-touch .my-gallery__item:hover .my-gallery__description h4 {
    opacity: 1;
  }
}

.pswp__caption__center {
  padding: 2.2rem;
}
.pswp__caption__center h4 {
  font: normal 500 1.8rem/1.2 "Poppins", sans-serif;
  color: #ffffff;
  margin-bottom: 1.4rem;
}
.pswp__caption__center h4 small {
  display: block;
  margin-top: 0.2rem;
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
.pswp__caption__center p {
  font: normal 300 1.4rem/1.6 "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}

.pswp__counter {
  font: normal 500 1.6rem/44px "Poppins", sans-serif;
  color: #ffffff;
}

.pswp__button--close {
  opacity: 1;
}

.pswp__button--arrow--left::before, .pswp__button--arrow--right::before {
  width: 44px;
  height: 44px;
}

.pswp__button--arrow--left:before {
  left: 0;
  background-position: -132px -44px;
}

.pswp__button--arrow--right:before {
  right: 0;
  background-position: -88px -44px;
}

.pswp__bg {
  background: #0d0d0d;
}

.pswp__caption, .pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.3);
}

.pswp__button--close {
  position: relative;
  background-color: #ffffff;
}
.pswp__button--close:active {
  opacity: 1;
}

/* ------------------------------------------------*/
/* Gallery End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Cursor Styles Start */
/* ------------------------------------------------*/
.cursor {
  display: block;
  position: fixed;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: #000;
  mix-blend-mode: multiply;
  pointer-events: none;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33);
  transition: -webkit-transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33);
  -o-transition: transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33);
  -moz-transition: transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33), -moz-transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33);
  transition: transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33);
  transition: transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33), -webkit-transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33), -moz-transform 0.4s cubic-bezier(0.75, -0.27, 0.3, 1.33);
  z-index: 9999;
}

@supports not (mix-blend-mode: multiply) {
  .cursor {
    opacity: 0.7;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cursor {
    visibility: hidden;
  }
}
.touch .cursor {
  display: none;
}

.cursor-s {
  -webkit-transform: scale(1.6);
     -moz-transform: scale(1.6);
      -ms-transform: scale(1.6);
          transform: scale(1.6);
}

.cursor-l {
  -webkit-transform: scale(3);
     -moz-transform: scale(3);
      -ms-transform: scale(3);
          transform: scale(3);
}

/* ------------------------------------------------*/
/* Cursor Styles End */
/* ------------------------------------------------*/

/* Oscanre premium adaptation */
.media-full-4{background-position:center right;background-size:cover;}
.about-image{background-position:center center;background-size:cover;}
.contact-image{background-position:center center;background-size:cover;}
.oscanre-note{font-size:1.35rem;line-height:1.55;color:rgba(255,255,255,.82);margin-top:2.2rem;max-width:640px;}
.oscanre-pill{display:inline-flex;align-items:center;gap:.65rem;margin:.35rem .5rem .35rem 0;padding:.7rem 1rem;border:1px solid rgba(255,255,255,.16);border-radius:999px;color:rgba(255,255,255,.88);background:rgba(255,255,255,.045);backdrop-filter:blur(10px);font-size:1.2rem;}
.my-gallery__item figcaption h4 small{opacity:.75;}
.logo img{max-width:152px;height:auto;}
.loader__logo img{max-width:152px;height:auto;}
@media(max-width:768px){.oscanre-note{font-size:1.15rem}.oscanre-pill{font-size:1.05rem}.logo img{max-width:128px}}


/* Oscanre final clean pass */
.headline__subtitle{display:inline-block;letter-spacing:.02em;}
.headline__title{font-size:clamp(4.6rem,7.4vw,10.8rem);line-height:.92;max-width:880px;}
.oscanre-note{font-size:clamp(1.12rem,1.25vw,1.28rem);line-height:1.55;max-width:560px;margin-top:1.7rem;}
.media-full-4{background-position:center right;background-size:cover;}
.loader__logo img,.logo img{max-width:142px;height:auto;}
.swiper [data-swiper-parallax],.swiper .swiper-slide{transform:none;}
@media(max-width:991px){.headline__title{font-size:clamp(4rem,13vw,7rem)}.media-full-4{background-position:center top}.oscanre-note{max-width:92%;}}


/* Oscanre final UX pass — Booksy / no parallax / mobile hero */
#particles-js, #triangles-js { display: none !important; }
.media-full-4 { background-position: 72% center !important; background-size: cover !important; }
.oscanre-note { font-size: clamp(1.05rem,1.15vw,1.2rem) !important; max-width: 480px !important; color: rgba(255,255,255,.78) !important; }
.oscanre-projects-grid { display:grid; grid-site-columns:1fr; gap:.85rem; margin-top:2rem; }
.oscanre-project-card { display:block; padding:1.15rem 1.25rem; border:1px solid rgba(255,255,255,.16); border-radius:1.25rem; background:rgba(255,255,255,.055); color:#fff; text-decoration:none; transition:transform .25s ease, background .25s ease, border-color .25s ease; }
.oscanre-project-card:hover { transform:translateY(-2px); background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.34); color:#fff; }
.oscanre-project-card strong { display:block; font-size:1.25rem; line-height:1.2; margin-bottom:.35rem; }
.oscanre-project-card span { display:block; font-size:.95rem; line-height:1.35; color:rgba(255,255,255,.68); }
.oscanre-pill { display:none !important; }
@media (min-width:768px){ .oscanre-projects-grid{ grid-site-columns:1fr 1fr; } .oscanre-project-card:last-child{ grid-column:1 / -1; } }
@media (max-width:991px){
  .media-full-4 { background-position: 74% top !important; }
  .headline__title { font-size: clamp(3.75rem,12.4vw,6.25rem) !important; line-height:.94 !important; max-width:92vw !important; }
  .headline__subtitle { margin-bottom:1.7rem !important; }
  .oscanre-note { max-width:80vw !important; margin-top:1.35rem !important; }
  .layer-dark-03 { opacity:.86 !important; }
}
@media (max-width:480px){
  .media-full-4 { background-position: 76% top !important; }
  .headline__title { font-size: clamp(3.6rem,12vw,5.6rem) !important; }
  .popup-title__title { font-size: clamp(2.7rem,11vw,4.2rem) !important; }
  .popup__content { max-height:82vh; overflow-y:auto; }
}


/* Oscanre micro final pass — clean hero, visible face, Booksy trigger */
.oscanre-note { display:none !important; }
.headline__subtitle {
  opacity:.82 !important;
  font-size:clamp(1.15rem,1.5vw,1.65rem) !important;
  margin-bottom:1.25rem !important;
}
.headline__title {
  font-size:clamp(4.35rem,7vw,10.2rem) !important;
  line-height:.94 !important;
  max-width:840px !important;
}
.media-full-4 {
  background-position:66% center !important;
  background-size:cover !important;
}

@media (min-width:768px){
  .oscanre-projects-grid { grid-site-columns:1fr 1fr !important; }
  .oscanre-project-card:last-child { grid-column:1 / -1 !important; }
}
@media (max-width:991px){
  .media-full-4 { background-position:68% top !important; }
  .headline__title {
    font-size:clamp(3.45rem,11.4vw,5.95rem) !important;
    line-height:.96 !important;
    max-width:88vw !important;
  }
  .headline__subtitle { margin-bottom:1.15rem !important; }
}
@media (max-width:480px){
  .media-full-4 { background-position:69% top !important; }
  .headline__title { font-size:clamp(3.25rem,11vw,5.25rem) !important; }
}


/* Oscanre final polish pass */
.headline__subtitle { display:none !important; }
.headline {
  transform: translateY(7vh) !important;
}
.headline__title {
  font-size:clamp(4.05rem,6.6vw,9.55rem) !important;
  line-height:.96 !important;
  max-width:830px !important;
}
.logo img {
  max-width:124px !important;
}
.loader__logo img {
  max-width:124px !important;
}
.media-full-4 {
  background-position:64% center !important;
}
.contact .inner__content .row {
  justify-content:center !important;
}
.contact-clean-info .blocks-container {
  max-width:920px !important;
  margin:0 auto !important;
}
.contact-image {
  display:none !important;
}
.oscanre-stats {
  display:grid;
  grid-site-columns:1fr;
  gap:.9rem;
  margin-top:2.5rem;
}
.oscanre-stat {
  padding:1.15rem 1.25rem;
  border:1px solid rgba(255,255,255,.14);
  border-radius:1.25rem;
  background:rgba(255,255,255,.045);
}
.oscanre-stat strong {
  display:block;
  color:#fff;
  font-size:1.55rem;
  line-height:1.1;
  margin-bottom:.35rem;
}
.oscanre-stat span {
  display:block;
  color:rgba(255,255,255,.72);
  font-size:1rem;
  line-height:1.35;
}
.features__item:nth-child(4) {
  display:none !important;
}
@media (min-width:768px){
  .oscanre-stats { grid-site-columns:repeat(3,1fr); }
}
@media (max-width:991px){
  .headline {
    transform: translateY(5.5vh) !important;
  }
  .headline__title {
    font-size:clamp(3.2rem,10.5vw,5.55rem) !important;
    max-width:88vw !important;
  }
  .logo img {
    max-width:118px !important;
  }
  .media-full-4 {
    background-position:66% top !important;
  }
}
@media (max-width:480px){
  .headline {
    transform: translateY(5vh) !important;
  }
  .headline__title {
    font-size:clamp(3.05rem,10.2vw,5rem) !important;
  }
  .logo img {
    max-width:112px !important;
  }
  .media-full-4 {
    background-position:67% top !important;
  }
}


/* Oscanre correction pass — restore project gallery feel + hero balance */
.headline {
  transform: translateY(3.5vh) !important;
}
.headline__title {
  font-size:clamp(4.35rem,7.05vw,10.05rem) !important;
  line-height:.95 !important;
  max-width:860px !important;
}
.headline__btnholder {
  margin-top:3.2rem !important;
}
@media (max-width:991px){
  .headline {
    transform: translateY(2.5vh) !important;
  }
  .headline__title {
    font-size:clamp(3.45rem,11.3vw,5.95rem) !important;
    line-height:.96 !important;
  }
  .headline__btnholder {
    margin-top:2.7rem !important;
  }
}
@media (max-width:480px){
  .headline {
    transform: translateY(2vh) !important;
  }
  .headline__title {
    font-size:clamp(3.28rem,10.9vw,5.25rem) !important;
  }
}


/* Oscanre final release pass */
.media-full-4 {
  background-position:61.5% center !important;
}
@media (max-width:991px){
  .media-full-4 {
    background-position:63.5% top !important;
  }
}
@media (max-width:480px){
  .media-full-4 {
    background-position:64.5% top !important;
  }
}








/* Oscanre final pass — minimal project visuals, caption links, Booksy widget scroll */
.works .features__item img {
  width:50px !important;
  height:50px !important;
  object-fit:contain !important;
  opacity:.82 !important;
  filter:none !important;
}
.works .features__item h3 {
  color:rgba(255,255,255,.88);
}
.works .my-gallery__image {
  object-fit:cover !important;
  width:100% !important;
  height:100% !important;
}
.project-card-link {
  display:inline-flex;
  align-items:center;
  margin-top:1.1rem;
  font-size:.92rem;
  letter-spacing:.01em;
  color:rgba(255,255,255,.74);
  border-bottom:1px solid rgba(255,255,255,.24);
  padding-bottom:.22rem;
}
.my-gallery__item:hover .project-card-link {
  color:#fff;
  border-bottom-color:rgba(255,255,255,.54);
}

/* Booksy widget: allow the official overlay/iframe to scroll, without changing hero/body layout. */
#booksy-widget-root {
  display:block !important;
  position:static !important;
  width:0 !important;
  height:0 !important;
  overflow:visible !important;
}
iframe[src*="booksy"],
iframe[id*="booksy"],
iframe[class*="booksy"] {
  max-height:100dvh !important;
  overflow:auto !important;
  -webkit-overflow-scrolling:touch !important;
}
div[class*="booksy"],
section[class*="booksy"] {
  -webkit-overflow-scrolling:touch !important;
}
div[class*="booksy"][style*="position: fixed"],
section[class*="booksy"][style*="position: fixed"] {
  overflow-y:auto !important;
  max-height:100dvh !important;
}


/* Oscanre icon refinement — sharper minimalist project symbols */
.works .features__item img {
  width:56px !important;
  height:56px !important;
  image-rendering:auto !important;
}
@media (max-width:768px){
  .works .features__item img {
    width:52px !important;
    height:52px !important;
  }
}


/* Oscanre final visual system — premium abstract project set */
.works .features__item img {
  width:58px !important;
  height:58px !important;
  opacity:.86 !important;
}
.works .my-gallery__image {
  object-position:center center !important;
}


/* TRUE FINAL PASS — hero lift + Oscanre-like premium project visuals */
.headline {
  transform: translateY(0.5vh) !important;
}
.headline__title {
  font-size:clamp(4.4rem,7.15vw,10.15rem) !important;
}
.headline__btnholder {
  margin-top:3rem !important;
}
@media (max-width:991px){
  .headline {
    transform: translateY(-2.2vh) !important;
  }
  .headline__title {
    font-size:clamp(3.45rem,11.4vw,5.95rem) !important;
  }
  .headline__btnholder {
    margin-top:2.55rem !important;
  }
}
@media (max-width:480px){
  .headline {
    transform: translateY(-3.2vh) !important;
  }
  .headline__title {
    font-size:clamp(3.25rem,10.9vw,5.25rem) !important;
  }
}

/* Projects: abstract white decorative icons, not literal app UI */
.works .features__item img {
  width:62px !important;
  height:62px !important;
  opacity:.74 !important;
  filter:none !important;
  object-fit:contain !important;
}
.works .features__item h3 {
  color:rgba(255,255,255,.90) !important;
}
.works .my-gallery__image {
  object-fit:cover !important;
  object-position:center center !important;
  width:100% !important;
  height:100% !important;
  filter:saturate(.88) contrast(1.04);
}
.works .my-gallery__description {
  background:linear-gradient(180deg, rgba(5,5,5,.18), rgba(5,5,5,.74)) !important;
}
.project-card-link {
  display:inline-flex !important;
  align-items:center;
  margin-top:1.1rem;
  font-size:.92rem;
  color:rgba(255,255,255,.78);
  border-bottom:1px solid rgba(255,255,255,.28);
  padding-bottom:.22rem;
}
.my-gallery__item:hover .project-card-link {
  color:#fff;
  border-bottom-color:rgba(255,255,255,.58);
}


/* FINAL FIX — projects copy, Oscanre-style abstract marks, hero photo slightly left */
.media-full-4 {
  background-position:63.5% center !important;
}
@media (max-width:991px){
  .media-full-4 { background-position:65.5% top !important; }
}
@media (max-width:480px){
  .media-full-4 { background-position:66.5% top !important; }
}
.works .features__item img {
  width:60px !important;
  height:60px !important;
  opacity:.76 !important;
  object-fit:contain !important;
}
.works .my-gallery__image {
  object-fit:cover !important;
  object-position:center center !important;
}


/* FINAL PROJECT ASSETS PASS — premium SVG icons + WEBP cards */
.works .features__item img {
  width:58px !important;
  height:58px !important;
  opacity:.82 !important;
  object-fit:contain !important;
}
.works .my-gallery__image {
  object-fit:cover !important;
  object-position:center center !important;
  width:100% !important;
  height:100% !important;
  filter:contrast(1.03) saturate(.92);
}
.works .my-gallery__description {
  background:linear-gradient(180deg, rgba(5,5,5,.16), rgba(5,5,5,.78)) !important;
}


/* OSCANRE FINAL FULL RELEASE PASS */
.oscanre-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  display: flex;
  justify-content: center;
  padding: .75rem 1.4rem;
  background: rgba(7,7,7,.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.oscanre-topbar a {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1.2;
}
.oscanre-topbar strong {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.header {
  top: 4.1rem;
}
.logo {
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.oscanre-newsletter-block {
  padding: 2.2rem 0 1.4rem;
}
.oscanre-newsletter-title {
  color: #fff;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.4rem;
  letter-spacing: -.03em;
}
.oscanre-newsletter-form {
  display: flex;
  gap: .8rem;
  max-width: 560px;
  margin-top: 2rem;
}
.oscanre-newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  color: #fff;
  border-radius: 999px;
  padding: 1.35rem 1.7rem;
  outline: none;
}
.oscanre-newsletter-form input::placeholder {
  color: rgba(255,255,255,.45);
}
.oscanre-newsletter-form button {
  border: 1px solid rgba(255,255,255,.22);
  background: #fff;
  color: #0b0b0b;
  border-radius: 999px;
  padding: 1.35rem 1.9rem;
  font-weight: 600;
  cursor: pointer;
}
.oscanre-newsletter-note {
  color: rgba(255,255,255,.48);
  font-size: 1.15rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .oscanre-topbar {
    padding: .7rem 1rem;
  }
  .oscanre-topbar a {
    font-size: 1.02rem;
    gap: .55rem;
  }
  .header {
    top: 3.65rem;
  }
  .oscanre-newsletter-form {
    flex-direction: column;
  }
  .oscanre-newsletter-form button {
    width: 100%;
  }
}

/* Keep hero/project final polish */
.headline {
  transform: translateY(-.4vh) !important;
}
@media (max-width:991px){
  .headline { transform: translateY(-2.6vh) !important; }
}
@media (max-width:480px){
  .headline { transform: translateY(-3.4vh) !important; }
}
.media-full-4 {
  background-position:63.5% center !important;
}
@media (max-width:991px){
  .media-full-4 { background-position:65.5% top !important; }
}
@media (max-width:480px){
  .media-full-4 { background-position:66.5% top !important; }
}


/* OSCANRE EBOOKS / STRIPE MODAL */
.oscanre-products-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:.95rem;
  margin-top:2rem;
}
.oscanre-product-card {
  display:block;
  padding:1.15rem 1.25rem;
  border:1px solid rgba(255,255,255,.16);
  border-radius:1.25rem;
  background:rgba(255,255,255,.055);
  color:#fff;
  text-align:left;
}
.oscanre-product-card strong {
  display:block;
  font-size:1.18rem;
  line-height:1.2;
  margin-bottom:.35rem;
}
.oscanre-product-card span {
  display:block;
  font-size:.95rem;
  line-height:1.35;
  color:rgba(255,255,255,.68);
  margin-bottom:.9rem;
}
.oscanre-product-card label {
  display:block;
  font-size:.82rem;
  color:rgba(255,255,255,.52);
  margin-bottom:.35rem;
}
.oscanre-product-card input {
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:#fff;
  border-radius:.85rem;
  padding:.85rem .95rem;
  margin-bottom:.75rem;
}
.oscanre-product-card button {
  width:100%;
  border:0;
  border-radius:999px;
  background:#fff;
  color:#0b0b0b;
  font-weight:700;
  padding:.9rem 1rem;
  cursor:pointer;
}
.ebooks-back-link {
  display:inline-flex;
  margin-top:1.4rem;
  color:rgba(255,255,255,.74);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.22);
}
.oscanre-newsletter-message {
  margin-top:1rem;
  color:rgba(255,255,255,.72);
  font-size:1rem;
}
@media (min-width:768px){
  .oscanre-products-grid { grid-template-columns:1fr 1fr; }
}


/* FINAL SECURE SHOP PASS — minimalist checkout/newsletter */
.oscanre-product-card label,
.oscanre-product-card input[type="email"] {
  display:none !important;
}
.oscanre-product-card {
  min-height: 190px;
  display:flex !important;
  flex-direction:column;
}
.oscanre-product-card button {
  margin-top:auto;
}
.oscanre-newsletter-minimal {
  margin-top: 1.6rem !important;
  padding: 1.25rem 0 !important;
}
.oscanre-newsletter-minimal .block__subtitle {
  margin-bottom: .9rem;
}
.oscanre-newsletter-minimal .oscanre-newsletter-form {
  display:flex;
  align-items:center;
  gap:.75rem;
  max-width:720px;
}
.oscanre-newsletter-minimal input[type="email"] {
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.045);
  border-radius:999px;
  color:#fff;
  padding:1.05rem 1.25rem;
  min-width:0;
  flex:1;
}
.oscanre-newsletter-minimal button {
  border-radius:999px;
  padding:1.05rem 1.35rem;
}
.oscanre-newsletter-minimal .oscanre-newsletter-note {
  margin-top:.75rem;
  color:rgba(255,255,255,.46);
  font-size:1rem;
}
@media(max-width:768px){
  .oscanre-newsletter-minimal .oscanre-newsletter-form {
    flex-direction:column;
    align-items:stretch;
  }
}


/* FINAL EBOOK SALES POLISH */
.ebooks-popup .popup__content {
  overflow-y:auto !important;
  max-height:calc(100dvh - 3rem) !important;
  -webkit-overflow-scrolling:touch;
}
.ebooks-popup__content {
  padding-bottom:2.6rem !important;
}
.ebooks-modal .popup-title__title {
  line-height:.98;
  margin-bottom:1.35rem;
}
.oscanre-products-grid-polished {
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
  margin-top:1.1rem;
}
.oscanre-bundle-card,
.oscanre-ebook-card {
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-radius:1.35rem;
  overflow:hidden;
}
.oscanre-bundle-card {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:flex-end;
  padding:1.25rem;
  margin:1.5rem 0 .7rem;
}
.oscanre-bundle-card strong,
.oscanre-ebook-card strong {
  display:block;
  color:#fff;
  font-size:1.2rem;
  line-height:1.15;
  margin:.35rem 0 .45rem;
}
.oscanre-bundle-card p,
.oscanre-ebook-card p,
.oscanre-ebook-card li {
  color:rgba(255,255,255,.68);
  font-size:.94rem;
  line-height:1.38;
}
.ebook-tag {
  color:rgba(255,255,255,.46);
  font-size:.78rem;
  letter-spacing:.02em;
}
.oscanre-bundle-card form,
.oscanre-ebook-card form {
  flex:0 0 auto;
}
.oscanre-bundle-card button,
.oscanre-ebook-card button {
  border:0;
  background:#fff;
  color:#0b0b0b;
  border-radius:999px;
  padding:.9rem 1.15rem;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}
.oscanre-ebook-card {
  display:grid !important;
  grid-template-columns:96px 1fr;
  min-height:0 !important;
}
.oscanre-ebook-card img {
  width:96px;
  height:100%;
  min-height:210px;
  object-fit:cover;
  border-right:1px solid rgba(255,255,255,.12);
}
.ebook-card-body {
  padding:1rem 1rem 1.05rem;
}
.ebook-card-body ul {
  margin:.7rem 0 .95rem 1.1rem;
  padding:0;
}
.ebook-card-body li + li {
  margin-top:.2rem;
}
.oscanre-newsletter-minimal {
  max-width:100% !important;
  overflow:hidden;
}
.oscanre-newsletter-minimal .oscanre-newsletter-form,
.oscanre-newsletter-form {
  width:100% !important;
  max-width:680px !important;
  margin:0 !important;
  box-sizing:border-box !important;
}
.oscanre-newsletter-form input,
.oscanre-newsletter-form button {
  box-sizing:border-box !important;
}
@media (max-width:768px){
  .oscanre-bundle-card {
    display:block;
  }
  .oscanre-bundle-card button {
    width:100%;
    margin-top:1rem;
  }
  .oscanre-ebook-card {
    grid-template-columns:82px 1fr;
  }
  .oscanre-ebook-card img {
    width:82px;
    min-height:260px;
  }
  .ebook-card-body {
    padding:.95rem;
  }
  .oscanre-ebook-card p,
  .oscanre-ebook-card li {
    font-size:.88rem;
  }
  .oscanre-ebook-card button {
    width:100%;
  }
  .oscanre-newsletter-minimal {
    padding-left:0 !important;
    padding-right:0 !important;
  }
  .oscanre-newsletter-minimal .oscanre-newsletter-form {
    width:100% !important;
    max-width:100% !important;
  }
}

/* Admin-like form safety if global CSS leaks */
textarea, input, button {
  max-width:100%;
}

/* FINAL LEGAL / NEWSLETTER / ADMIN PASS */
.oscanre-newsletter-minimal {
  max-width:620px !important;
  width:100% !important;
  margin-top:1rem !important;
  padding:0 !important;
}
.oscanre-newsletter-minimal .oscanre-newsletter-form {
  display:flex !important;
  gap:.7rem !important;
  max-width:620px !important;
}
.oscanre-newsletter-minimal input[type="email"] {
  font-size:1rem !important;
  padding:.95rem 1.15rem !important;
}
.oscanre-newsletter-minimal button {
  padding:.95rem 1.25rem !important;
  flex:0 0 auto !important;
}
.oscanre-newsletter-note {
  font-size:.92rem !important;
}
.oscanre-legal-links {
  position:relative;
  z-index:5;
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
  padding:2rem 1rem;
  font-size:.9rem;
  background:#080808;
}
.oscanre-legal-links a {
  color:rgba(255,255,255,.58);
  text-decoration:none;
}
@media(max-width:768px){
  .oscanre-newsletter-minimal .oscanre-newsletter-form {
    flex-direction:column !important;
  }
  .oscanre-newsletter-minimal button {
    width:100% !important;
  }
}


/* FINAL FIX: ebook covers not stretched/cropped + cleaner contact newsletter */
.oscanre-ebook-card {
  grid-template-columns:112px 1fr !important;
  align-items:stretch !important;
}
.oscanre-ebook-card img {
  width:112px !important;
  height:100% !important;
  min-height:230px !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:rgba(0,0,0,.36) !important;
  padding:.45rem !important;
  border-right:1px solid rgba(255,255,255,.12) !important;
}
.ebook-card-body {
  min-width:0 !important;
}
.ebook-card-body ul {
  margin-top:.55rem !important;
}
.ebook-card-body li {
  list-style-position:outside !important;
}
@media(max-width:768px){
  .ebooks-popup .popup__content {
    width:calc(100vw - 28px) !important;
    max-width:calc(100vw - 28px) !important;
  }
  .ebooks-modal .popup-title__title {
    font-size:clamp(3rem,12vw,5.4rem) !important;
  }
  .oscanre-ebook-card {
    grid-template-columns:98px 1fr !important;
  }
  .oscanre-ebook-card img {
    width:98px !important;
    min-height:245px !important;
    padding:.38rem !important;
  }
  .ebook-card-body ul {
    display:none !important;
  }
  .ebook-card-body p {
    margin-bottom:1rem !important;
  }
}
.oscanre-newsletter-minimal {
  max-width:560px !important;
  width:100% !important;
  margin-top:1.4rem !important;
}
.oscanre-newsletter-minimal .oscanre-newsletter-form {
  max-width:560px !important;
  width:100% !important;
}
.oscanre-newsletter-minimal input[type="email"] {
  font-size:.95rem !important;
  height:48px !important;
  padding:.75rem 1rem !important;
}
.oscanre-newsletter-minimal button {
  height:48px !important;
  padding:.75rem 1.25rem !important;
}
@media(max-width:768px){
  .oscanre-newsletter-minimal {
    max-width:calc(100vw - 3rem) !important;
  }
  .oscanre-newsletter-minimal .oscanre-newsletter-form {
    max-width:100% !important;
    gap:.55rem !important;
  }
  .oscanre-newsletter-minimal input[type="email"],
  .oscanre-newsletter-minimal button {
    height:46px !important;
    font-size:.92rem !important;
  }
  .oscanre-newsletter-note {
    max-width:100% !important;
  }
}

.oscanre-contact-legal {
  display:flex;
  flex-wrap:wrap;
  gap:.75rem 1rem;
  margin-top:1.6rem;
  font-size:.95rem;
}
.oscanre-contact-legal a {
  color:rgba(255,255,255,.54);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.16);
}
.oscanre-contact-legal a:hover {
  color:#fff;
  border-bottom-color:rgba(255,255,255,.42);
}


/* FINAL UI RESET: ebook modal centered, no horizontal overflow */
.popup {
  overflow-x:hidden !important;
}
.ebooks-popup .popup__container,
.newsletter-popup .popup__container {
  width:100% !important;
  max-width:100vw !important;
  display:flex !important;
  justify-content:center !important;
  align-items:flex-start !important;
  padding:5.8rem 1rem 2rem !important;
  box-sizing:border-box !important;
}
.ebooks-popup .popup__content,
.newsletter-popup .popup__content {
  width:min(760px, calc(100vw - 2rem)) !important;
  max-width:min(760px, calc(100vw - 2rem)) !important;
  margin:0 auto !important;
  left:auto !important;
  right:auto !important;
  transform:none !important;
  box-sizing:border-box !important;
  overflow-x:hidden !important;
}
.ebooks-popup__content {
  max-height:calc(100dvh - 7rem) !important;
  overflow-y:auto !important;
  -webkit-overflow-scrolling:touch;
}
.ebooks-modal .popup-title__title {
  font-size:clamp(3.2rem, 9.5vw, 6.8rem) !important;
  line-height:.95 !important;
  letter-spacing:-.055em !important;
}
.oscanre-bundle-card {
  padding:1.15rem !important;
  margin:1.3rem 0 .9rem !important;
}
.oscanre-products-grid-polished {
  gap:.9rem !important;
}
.oscanre-ebook-card {
  grid-template-columns:132px 1fr !important;
  min-height:auto !important;
  align-items:stretch !important;
  overflow:hidden !important;
}
.oscanre-ebook-card img {
  width:132px !important;
  height:100% !important;
  min-height:230px !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:rgba(0,0,0,.34) !important;
  padding:.55rem !important;
}
.ebook-card-body {
  padding:1.05rem !important;
}
.ebook-card-body ul {
  display:none !important;
}
.ebook-more {
  border:1px solid rgba(255,255,255,.18) !important;
  background:rgba(255,255,255,.06) !important;
  color:rgba(255,255,255,.84) !important;
  border-radius:999px !important;
  padding:.7rem .95rem !important;
  font-weight:600 !important;
  margin:.45rem 0 .75rem !important;
  cursor:pointer !important;
  width:auto !important;
}
.ebook-details {
  display:none;
  color:rgba(255,255,255,.66);
  font-size:.9rem;
  line-height:1.45;
  padding:.2rem 0 .8rem;
}
.ebook-details.is-open {
  display:block;
}
@media(max-width:640px){
  .ebooks-popup .popup__container,
  .newsletter-popup .popup__container {
    padding:5.5rem .85rem 1.8rem !important;
  }
  .ebooks-popup .popup__content,
  .newsletter-popup .popup__content {
    width:calc(100vw - 1.7rem) !important;
    max-width:calc(100vw - 1.7rem) !important;
  }
  .ebooks-modal .popup-title__title {
    font-size:clamp(3rem, 12vw, 5.15rem) !important;
  }
  .oscanre-ebook-card {
    grid-template-columns:96px 1fr !important;
  }
  .oscanre-ebook-card img {
    width:96px !important;
    min-height:240px !important;
    padding:.35rem !important;
  }
  .ebook-card-body p {
    font-size:.88rem !important;
  }
  .oscanre-ebook-card button[type="submit"] {
    width:100% !important;
    padding:.82rem .85rem !important;
  }
}

/* Topbar newsletter trigger */
.oscanre-topbar {
  gap:1rem !important;
}
.oscanre-topbar-newsletter {
  border:0;
  background:transparent;
  color:rgba(255,255,255,.74);
  border-bottom:1px solid rgba(255,255,255,.22);
  padding:0;
  font:inherit;
  cursor:pointer;
}
.oscanre-topbar-newsletter:hover {
  color:#fff;
}

/* Contact section cleanup after moving newsletter to modal */
#contact .oscanre-newsletter-block,
#contact .oscanre-newsletter-minimal {
  display:none !important;
}

/* Legal footer: subtle, not mixed into contact blocks */
.oscanre-legal-footer {
  position:relative;
  z-index:5;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1.05rem;
  flex-wrap:wrap;
  padding:2rem 1rem 2.4rem;
  background:#080808;
  font-size:.9rem;
}
.oscanre-legal-footer a {
  color:rgba(255,255,255,.48);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.oscanre-legal-footer a:hover {
  color:#fff;
  border-bottom-color:rgba(255,255,255,.4);
}

/* Newsletter modal */
.newsletter-popup__content {
  padding:clamp(2.2rem,5vw,4rem) !important;
}
.newsletter-modal .popup-title__title {
  font-size:clamp(3.2rem,8vw,6.2rem) !important;
  line-height:.96 !important;
}
.oscanre-newsletter-modal-form {
  display:flex;
  gap:.7rem;
  margin-top:1.6rem;
}
.oscanre-newsletter-modal-form input {
  flex:1;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.055);
  color:#fff;
  border-radius:999px;
  padding:1rem 1.2rem;
}
.oscanre-newsletter-modal-form button {
  border:0;
  background:#fff;
  color:#111;
  border-radius:999px;
  padding:1rem 1.25rem;
  font-weight:700;
}
@media(max-width:640px){
  .oscanre-newsletter-modal-form {
    flex-direction:column;
  }
  .oscanre-newsletter-modal-form button {
    width:100%;
  }
}


/* OSCANRE FINAL PASS — mobile polish, ebooks, newsletter, legal */
.popup { overflow-x:hidden !important; }
.ebooks-popup .popup__container,
.newsletter-popup .popup__container {
  width:100% !important;
  max-width:100vw !important;
  display:flex !important;
  justify-content:center !important;
  align-items:flex-start !important;
  padding:5.7rem .9rem 2rem !important;
  box-sizing:border-box !important;
}
.ebooks-popup .popup__content,
.newsletter-popup .popup__content {
  width:min(760px, calc(100vw - 1.8rem)) !important;
  max-width:min(760px, calc(100vw - 1.8rem)) !important;
  margin:0 auto !important;
  left:auto !important;
  right:auto !important;
  transform:none !important;
  box-sizing:border-box !important;
  overflow-x:hidden !important;
  border-radius:1.2rem !important;
}
.ebooks-popup__content { max-height:calc(100dvh - 7rem) !important; overflow-y:auto !important; -webkit-overflow-scrolling:touch; }
.ebooks-modal .popup-title__title,
.newsletter-modal .popup-title__title {
  font-size:clamp(3.1rem, 10vw, 6.8rem) !important;
  line-height:.95 !important;
  letter-spacing:-.055em !important;
}
.oscanre-bundle-card,
.oscanre-ebook-card {
  border:1px solid rgba(255,255,255,.16) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
  border-radius:1.25rem !important;
  overflow:hidden !important;
}
.oscanre-bundle-card { padding:1.15rem !important; margin:1.25rem 0 .9rem !important; }
.oscanre-bundle-card strong,
.oscanre-ebook-card strong { display:block; color:#fff; font-size:1.2rem; line-height:1.16; margin:.35rem 0 .45rem; }
.oscanre-bundle-card p,
.oscanre-ebook-card p { color:rgba(255,255,255,.68); font-size:.94rem; line-height:1.4; }
.ebook-tag { color:rgba(255,255,255,.48); font-size:.8rem; }
.oscanre-products-grid-polished { display:grid !important; grid-template-columns:1fr !important; gap:.9rem !important; margin-top:.9rem !important; }
.oscanre-ebook-card { display:grid !important; grid-template-columns:150px 1fr !important; align-items:stretch !important; min-height:auto !important; }
.oscanre-ebook-card figure { margin:0 !important; display:flex !important; align-items:center !important; justify-content:center !important; min-height:250px !important; background:rgba(0,0,0,.28) !important; border-right:1px solid rgba(255,255,255,.1) !important; }
.oscanre-ebook-card img { width:110px !important; height:auto !important; max-height:220px !important; object-fit:contain !important; object-position:center !important; padding:0 !important; background:transparent !important; border:0 !important; }
.ebook-card-body { padding:1.05rem !important; min-width:0 !important; }
.ebook-more {
  display:inline-flex !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:rgba(255,255,255,.06) !important;
  color:rgba(255,255,255,.85) !important;
  border-radius:999px !important;
  padding:.68rem .95rem !important;
  font-weight:700 !important;
  margin:.45rem 0 .75rem !important;
  cursor:pointer !important;
  width:auto !important;
}
.ebook-details { display:none; color:rgba(255,255,255,.68); font-size:.9rem; line-height:1.45; padding:.2rem 0 .8rem; }
.ebook-details.is-open { display:block; }
.oscanre-bundle-card button[type="submit"],
.oscanre-ebook-card button[type="submit"] {
  width:100% !important;
  border:0 !important;
  border-radius:999px !important;
  background:#fff !important;
  color:#0b0b0b !important;
  font-weight:800 !important;
  padding:.88rem 1rem !important;
}
.newsletter-popup__content { padding:clamp(2rem,5vw,3.8rem) !important; }
.oscanre-newsletter-modal-form { display:flex !important; gap:.7rem !important; margin-top:1.5rem !important; }
.oscanre-newsletter-modal-form input { flex:1 !important; border:1px solid rgba(255,255,255,.16) !important; background:rgba(255,255,255,.055) !important; color:#fff !important; border-radius:999px !important; padding:1rem 1.2rem !important; }
.oscanre-newsletter-modal-form button { border:0 !important; background:#fff !important; color:#111 !important; border-radius:999px !important; padding:1rem 1.25rem !important; font-weight:800 !important; }
.oscanre-topbar-newsletter { border:0; background:transparent; color:rgba(255,255,255,.78); border-bottom:1px solid rgba(255,255,255,.25); padding:0; font:inherit; cursor:pointer; }
#contact .oscanre-newsletter-block,
#contact .oscanre-newsletter-minimal { display:none !important; }
.oscanre-legal-footer {
  position:relative;
  z-index:5;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
  padding:2rem 1rem 2.4rem;
  background:#080808;
  font-size:.9rem;
}
.oscanre-legal-footer a { color:rgba(255,255,255,.48); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.12); }
.oscanre-legal-footer a:hover { color:#fff; border-bottom-color:rgba(255,255,255,.4); }
.oscanre-newsletter-message { color:rgba(255,255,255,.68); margin-top:.75rem; font-size:.95rem; }
@media(max-width:640px){
  .ebooks-popup .popup__container,
  .newsletter-popup .popup__container { padding:5.5rem .75rem 1.7rem !important; }
  .ebooks-popup .popup__content,
  .newsletter-popup .popup__content { width:calc(100vw - 1.5rem) !important; max-width:calc(100vw - 1.5rem) !important; }
  .oscanre-ebook-card { display:block !important; }
  .oscanre-ebook-card figure { min-height:auto !important; height:auto !important; padding:1rem !important; border-right:0 !important; border-bottom:1px solid rgba(255,255,255,.1) !important; }
  .oscanre-ebook-card img { width:min(210px, 72%) !important; max-height:none !important; }
  .ebook-card-body { padding:1rem !important; }
  .oscanre-newsletter-modal-form { flex-direction:column !important; }
  .oscanre-newsletter-modal-form button { width:100% !important; }
}


/* OSCANRE FINAL FIX — ebook read more, contact modal, legal in menu */
.nav__legal {
  position:absolute;
  left:0;
  right:0;
  bottom:clamp(2rem, 5vh, 4rem);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:.75rem 1rem;
  padding:0 1.5rem;
  z-index:3;
  font-size:.9rem;
}
.nav__legal a {
  color:rgba(255,255,255,.48);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.nav__legal a:hover {
  color:#fff;
  border-bottom-color:rgba(255,255,255,.42);
}
.oscanre-contact-title .popup-title__text {
  max-width:720px;
  color:rgba(255,255,255,.68);
}
.oscanre-contact-topics {
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:1.3rem 0 1.7rem;
}
.oscanre-contact-topics button {
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.055);
  color:rgba(255,255,255,.82);
  border-radius:999px;
  padding:.72rem 1rem;
  font-weight:600;
  cursor:pointer;
}
.oscanre-contact-topics button:hover,
.oscanre-contact-topics button.is-active {
  background:#fff;
  color:#0b0b0b;
  border-color:#fff;
}
.ebook-details {
  display:none !important;
}
.ebook-details.is-open {
  display:block !important;
}
.ebook-more {
  pointer-events:auto !important;
  position:relative;
  z-index:5;
}
@media(max-width:768px){
  .nav__legal {
    bottom:1.35rem;
    font-size:.82rem;
    gap:.55rem .8rem;
  }
  .oscanre-contact-topics {
    gap:.45rem;
    margin:1rem 0 1.2rem;
  }
  .oscanre-contact-topics button {
    width:auto;
    padding:.65rem .85rem;
    font-size:.92rem;
  }
}


/* OSCANRE FINAL SIMPLIFIED PASS */
.sayhello .popup__container,
.project-info-popup .popup__container,
.legal-popup .popup__container {
  width:100% !important;
  max-width:100vw !important;
  display:flex !important;
  justify-content:center !important;
  align-items:flex-start !important;
  padding:5.7rem .9rem 2rem !important;
  box-sizing:border-box !important;
}
.sayhello .popup__content,
.project-info-popup .popup__content,
.legal-popup .popup__content {
  width:min(760px, calc(100vw - 1.8rem)) !important;
  max-width:min(760px, calc(100vw - 1.8rem)) !important;
  margin:0 auto !important;
  left:auto !important;
  right:auto !important;
  transform:none !important;
  box-sizing:border-box !important;
  overflow-x:hidden !important;
  border-radius:1.2rem !important;
  max-height:calc(100dvh - 7rem) !important;
  overflow-y:auto !important;
  -webkit-overflow-scrolling:touch;
}
.sayhello-popup__content,
.project-info-popup__content,
.legal-popup__content {
  padding:clamp(2rem,5vw,3.8rem) !important;
}
.oscanre-contact-title .popup-title__title,
.project-info-popup .popup-title__title,
.legal-popup .popup-title__title {
  font-size:clamp(3.1rem, 10vw, 6.8rem) !important;
  line-height:.95 !important;
  letter-spacing:-.055em !important;
}
.oscanre-contact-title .popup-title__text,
.project-info-popup .popup-title__text,
.legal-popup .popup-title__text {
  max-width:720px;
  color:rgba(255,255,255,.68);
}
.oscanre-contact-topics {
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:1.3rem 0 1.7rem;
}
.oscanre-contact-topics button,
.oscanre-legal-grid a {
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.055);
  color:rgba(255,255,255,.82);
  border-radius:1.15rem;
  padding:.9rem 1rem;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
}
.oscanre-contact-topics button {
  border-radius:999px;
  padding:.72rem 1rem;
}
.oscanre-contact-topics button:hover,
.oscanre-contact-topics button.is-active {
  background:#fff;
  color:#0b0b0b;
  border-color:#fff;
}
.oscanre-legal-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.8rem;
  margin-top:1.5rem;
}
.oscanre-legal-grid a strong {
  display:block;
  color:#fff;
  margin-bottom:.25rem;
}
.oscanre-legal-grid a span {
  display:block;
  color:rgba(255,255,255,.58);
  font-size:.92rem;
  line-height:1.35;
}
.oscanre-info-actions {
  margin-top:1.6rem;
}
@media(max-width:640px){
  .sayhello .popup__container,
  .project-info-popup .popup__container,
  .legal-popup .popup__container {
    padding:5.5rem .75rem 1.7rem !important;
  }
  .sayhello .popup__content,
  .project-info-popup .popup__content,
  .legal-popup .popup__content {
    width:calc(100vw - 1.5rem) !important;
    max-width:calc(100vw - 1.5rem) !important;
  }
  .oscanre-legal-grid {
    grid-template-columns:1fr;
  }
  .oscanre-contact-topics button {
    width:auto;
    padding:.65rem .85rem;
    font-size:.92rem;
  }
}


/* OSCANRE PRODUCTION POLISH — unified project modal + nested project flow */
.projects-popup .popup__container {
  width:100% !important;
  max-width:100vw !important;
  display:flex !important;
  justify-content:center !important;
  align-items:flex-start !important;
  padding:5.7rem .9rem 2rem !important;
  box-sizing:border-box !important;
}
.projects-popup .popup__content,
.projects-popup__content {
  width:min(760px, calc(100vw - 1.8rem)) !important;
  max-width:min(760px, calc(100vw - 1.8rem)) !important;
  margin:0 auto !important;
  left:auto !important;
  right:auto !important;
  transform:none !important;
  box-sizing:border-box !important;
  overflow-x:hidden !important;
  border-radius:1.2rem !important;
  padding:clamp(2rem,5vw,3.8rem) !important;
}
.projects-modal .popup-title__title {
  font-size:clamp(3.1rem, 10vw, 6.8rem) !important;
  line-height:.95 !important;
  letter-spacing:-.055em !important;
}
.projects-modal .popup-title__text {
  color:rgba(255,255,255,.68);
  max-width:720px;
}
.oscanre-projects-grid-final {
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:.85rem !important;
  margin-top:1.5rem !important;
}
.oscanre-projects-grid-final .oscanre-project-card {
  border:1px solid rgba(255,255,255,.16) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
  border-radius:1.2rem !important;
  padding:1.15rem !important;
  text-align:left !important;
}
.oscanre-projects-grid-final .oscanre-project-card strong {
  color:#fff;
  font-size:1.2rem;
}
.oscanre-projects-grid-final .oscanre-project-card span {
  color:rgba(255,255,255,.62);
}
.project-back-link {
  display:inline-flex;
  margin:0 0 1.2rem;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.project-back-link:hover {
  color:#fff;
  border-bottom-color:rgba(255,255,255,.42);
}
@media(max-width:640px){
  .projects-popup .popup__container { padding:5.5rem .75rem 1.7rem !important; }
  .projects-popup .popup__content,
  .projects-popup__content {
    width:calc(100vw - 1.5rem) !important;
    max-width:calc(100vw - 1.5rem) !important;
  }
}


/* OSCANRE FINAL LAST POLISH */
.loader__content,
.loader-content,
.loading__content,
#loader .loader__content,
.loader .loader__content {
  left:50% !important;
  transform:translateX(-50%) !important;
  text-align:center !important;
}
.loader__caption,
.loader__title,
.loader-caption,
.loader-title {
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
#headline { text-align:left !important; }
.project-card-link.project-inline-trigger {
  border:0;
  background:transparent;
  color:#fff;
  padding:0;
  font:inherit;
  border-bottom:1px solid rgba(255,255,255,.28);
  cursor:pointer;
}


/* OSCANRE PREMIUM PASS — projects, ebooks, contact */
.oscanre-projects-premium {
  display:grid;
  grid-template-columns:1fr;
  gap:.9rem;
  margin-top:1.6rem;
}
.oscanre-project-premium {
  display:block;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-radius:1.35rem;
  padding:1.25rem;
  text-decoration:none;
  color:#fff;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.oscanre-project-premium:hover {
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.32);
  background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
}
.oscanre-project-premium--main {
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.oscanre-project-premium .project-kicker,
.ebook-tag {
  display:block;
  color:rgba(255,255,255,.48);
  font-size:.78rem;
  letter-spacing:.02em;
  margin-bottom:.45rem;
}
.oscanre-project-premium strong {
  display:block;
  font-size:clamp(1.5rem,4vw,2.35rem);
  line-height:1;
  letter-spacing:-.04em;
  color:#fff;
}
.oscanre-project-premium p {
  color:rgba(255,255,255,.68);
  line-height:1.42;
  max-width:560px;
  margin:.55rem 0 .95rem;
}
.oscanre-project-premium em {
  font-style:normal;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.24);
}
.ebook-premium-bundle {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  border:1px solid rgba(255,255,255,.18);
  border-radius:1.35rem;
  background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  padding:1.25rem;
  margin:1.5rem 0 1rem;
}
.ebook-premium-bundle strong {
  display:block;
  font-size:1.45rem;
  color:#fff;
  line-height:1.05;
}
.ebook-premium-bundle p {
  color:rgba(255,255,255,.68);
  margin:.45rem 0 0;
}
.ebook-premium-bundle button,
.ebook-actions form button {
  border:0 !important;
  background:#fff !important;
  color:#0b0b0b !important;
  border-radius:999px !important;
  padding:.9rem 1.1rem !important;
  font-weight:800 !important;
  white-space:nowrap;
}
.ebook-premium-list {
  display:grid;
  gap:.9rem;
}
.ebook-premium-card {
  display:grid;
  grid-template-columns:140px 1fr;
  gap:1rem;
  align-items:stretch;
  border:1px solid rgba(255,255,255,.16);
  border-radius:1.35rem;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  overflow:hidden;
  padding:0;
}
.ebook-premium-card figure {
  margin:0;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,.3);
  border-right:1px solid rgba(255,255,255,.1);
  padding:1rem;
}
.ebook-premium-card img {
  width:100%;
  max-width:105px;
  height:auto;
  object-fit:contain;
}
.ebook-premium-card > div {
  padding:1.05rem 1.05rem 1.05rem 0;
}
.ebook-premium-card strong {
  display:block;
  color:#fff;
  font-size:1.25rem;
  line-height:1.08;
  margin:.25rem 0 .45rem;
}
.ebook-premium-card p {
  color:rgba(255,255,255,.68);
  line-height:1.38;
  font-size:.95rem;
}
.ebook-actions {
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  align-items:center;
  margin-top:.8rem;
}
.ebook-actions form {
  margin:0;
}
.ebook-actions .ebook-more {
  margin:0 !important;
}
.contact-premium-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.75rem;
  margin:1.35rem 0 1.7rem;
}
.contact-premium-grid button {
  text-align:left;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  color:#fff;
  border-radius:1.2rem;
  padding:1rem;
  cursor:pointer;
}
.contact-premium-grid button strong {
  display:block;
  color:#fff;
  font-size:1rem;
  margin-bottom:.25rem;
}
.contact-premium-grid button span {
  display:block;
  color:rgba(255,255,255,.56);
  font-size:.9rem;
}
.contact-premium-grid button.is-active,
.contact-premium-grid button:hover {
  background:#fff;
  color:#0b0b0b;
}
.contact-premium-grid button.is-active strong,
.contact-premium-grid button.is-active span,
.contact-premium-grid button:hover strong,
.contact-premium-grid button:hover span {
  color:#0b0b0b;
}
@media(max-width:640px){
  .ebook-premium-bundle {
    display:block;
  }
  .ebook-premium-bundle button {
    width:100%;
    margin-top:1rem;
  }
  .ebook-premium-card {
    display:block;
  }
  .ebook-premium-card figure {
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .ebook-premium-card img {
    max-width:210px;
  }
  .ebook-premium-card > div {
    padding:1rem;
  }
  .ebook-actions {
    display:grid;
    grid-template-columns:1fr;
  }
  .ebook-actions form button,
  .ebook-actions .ebook-more {
    width:100% !important;
    justify-content:center !important;
  }
  .contact-premium-grid {
    grid-template-columns:1fr;
  }
}


/* OSCANRE HERO ALIGNMENT FIX — hero left, loader centered */
#headline,
.headline,
.headline__title,
.headline__subtitle,
.headline__btnholder,
.headline__content {
  text-align:left !important;
}
.headline__btnholder,
.headline .btnholder {
  justify-content:flex-start !important;
}
.loader__content,
.loader-content,
.loading__content,
#loader .loader__content,
.loader .loader__content,
.loader__caption,
.loader__title,
.loader-caption,
.loader-title {
  text-align:center !important;
}
@media(max-width:768px){
  #headline,
  .headline,
  .headline__title,
  .headline__subtitle,
  .headline__btnholder,
  .headline__content {
    text-align:left !important;
  }
  .headline__btnholder,
  .headline .btnholder {
    justify-content:flex-start !important;
  }
}


/* OSCANRE APPLE BOOKS PASS — Męska Perspektywa */
.ebooks-storefront {
  width:min(860px, calc(100vw - 1.8rem)) !important;
  max-width:min(860px, calc(100vw - 1.8rem)) !important;
}
.ebook-store-hero {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:1rem;
  align-items:end;
  position:relative;
  border:1px solid rgba(255,255,255,.18);
  border-radius:1.55rem;
  background:radial-gradient(circle at 80% 10%, rgba(255,255,255,.14), transparent 34%), linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  padding:1.25rem;
  margin:1.5rem 0 1rem;
  overflow:hidden;
}
.ebook-store-hero__copy strong {
  display:block;
  color:#fff;
  font-size:clamp(1.8rem,5vw,3rem);
  line-height:.95;
  letter-spacing:-.05em;
}
.ebook-store-hero__copy p {
  color:rgba(255,255,255,.68);
  max-width:460px;
  margin:.55rem 0 0;
}
.ebook-store-hero__covers {
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:-.8rem;
  min-height:190px;
}
.ebook-store-hero__covers img {
  width:86px;
  height:auto;
  object-fit:contain;
  border-radius:.45rem;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}
.ebook-store-hero__covers img:nth-child(1){ transform:rotate(-7deg) translateX(18px); }
.ebook-store-hero__covers img:nth-child(2){ transform:translateY(-8px); z-index:2; }
.ebook-store-hero__covers img:nth-child(3){ transform:rotate(7deg) translateX(-18px); }
.ebook-store-hero form {
  grid-column:1 / -1;
  margin:0;
}
.ebook-store-hero button,
.ebook-store-actions form button,
.ebook-detail-layout form button {
  border:0 !important;
  background:#fff !important;
  color:#0b0b0b !important;
  border-radius:999px !important;
  padding:.95rem 1.15rem !important;
  font-weight:850 !important;
}
.ebook-store-hero button {
  width:100%;
}
.ebook-store-list {
  display:grid;
  gap:.9rem;
}
.ebook-store-card {
  display:grid;
  grid-template-columns:126px 1fr;
  gap:1rem;
  align-items:stretch;
  border:1px solid rgba(255,255,255,.14);
  border-radius:1.35rem;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  overflow:hidden;
}
.ebook-store-card figure {
  margin:0;
  background:rgba(0,0,0,.28);
  border-right:1px solid rgba(255,255,255,.1);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:1rem;
}
.ebook-store-card figure img {
  width:92px;
  max-height:170px;
  object-fit:contain;
  filter:drop-shadow(0 14px 24px rgba(0,0,0,.4));
}
.ebook-store-card__body {
  padding:1rem 1rem 1rem 0;
}
.ebook-store-card__body strong {
  display:block;
  color:#fff;
  font-size:1.2rem;
  line-height:1.08;
  margin:.25rem 0 .4rem;
}
.ebook-store-card__body p {
  color:rgba(255,255,255,.66);
  font-size:.94rem;
  line-height:1.38;
}
.ebook-store-actions {
  display:flex;
  gap:.55rem;
  align-items:center;
  flex-wrap:wrap;
  margin-top:.8rem;
}
.ebook-store-actions form {
  margin:0;
}
.ebook-detail-trigger {
  border:1px solid rgba(255,255,255,.18) !important;
  background:rgba(255,255,255,.06) !important;
  color:rgba(255,255,255,.86) !important;
  border-radius:999px !important;
  padding:.82rem 1rem !important;
  font-weight:750 !important;
  cursor:pointer;
}
.ebook-detail-popup .popup__container {
  width:100% !important;
  max-width:100vw !important;
  display:flex !important;
  justify-content:center !important;
  align-items:flex-start !important;
  padding:5.7rem .9rem 2rem !important;
  box-sizing:border-box !important;
}
.ebook-detail-content {
  width:min(900px, calc(100vw - 1.8rem)) !important;
  max-width:min(900px, calc(100vw - 1.8rem)) !important;
  max-height:calc(100dvh - 7rem) !important;
  overflow-y:auto !important;
  padding:clamp(1.5rem,4vw,3rem) !important;
  border-radius:1.3rem !important;
}
.ebook-detail-layout {
  display:grid;
  grid-template-columns:minmax(220px, 320px) 1fr;
  gap:clamp(1.4rem,4vw,3rem);
  align-items:start;
}
.ebook-detail-layout figure {
  margin:0;
  position:sticky;
  top:1rem;
  display:flex;
  justify-content:center;
  align-items:center;
  border:1px solid rgba(255,255,255,.12);
  background:radial-gradient(circle at 50% 20%, rgba(255,255,255,.12), rgba(255,255,255,.03));
  border-radius:1.2rem;
  padding:1.25rem;
}
.ebook-detail-layout figure img {
  width:min(230px, 100%);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 22px 40px rgba(0,0,0,.5));
}
.ebook-detail-layout h2 {
  margin:.35rem 0 .55rem;
  color:#fff;
  font-size:clamp(2.4rem,7vw,5.2rem);
  line-height:.92;
  letter-spacing:-.06em;
}
.ebook-detail-lead {
  color:rgba(255,255,255,.78);
  font-size:1.08rem;
  line-height:1.45;
}
.ebook-detail-meta {
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  margin:1rem 0 1.2rem;
}
.ebook-detail-meta span {
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:.5rem .75rem;
  color:rgba(255,255,255,.68);
  font-size:.88rem;
}
.ebook-detail-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.8rem;
  margin:1.2rem 0;
}
.ebook-detail-grid div {
  border:1px solid rgba(255,255,255,.12);
  border-radius:1rem;
  padding:1rem;
  background:rgba(255,255,255,.04);
}
.ebook-detail-grid strong {
  display:block;
  color:#fff;
  margin-bottom:.35rem;
}
.ebook-detail-grid p,
.ebook-detail-layout p {
  color:rgba(255,255,255,.68);
}
.ebook-detail-layout form button {
  width:100%;
  margin-top:.7rem;
}
@media(max-width:720px){
  .ebooks-storefront {
    width:calc(100vw - 1.5rem) !important;
    max-width:calc(100vw - 1.5rem) !important;
  }
  .ebook-store-hero {
    grid-template-columns:1fr;
  }
  .ebook-store-hero__covers {
    min-height:150px;
    order:-1;
  }
  .ebook-store-hero__covers img {
    width:76px;
  }
  .ebook-store-card {
    grid-template-columns:1fr;
  }
  .ebook-store-card figure {
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .ebook-store-card figure img {
    width:150px;
    max-height:230px;
  }
  .ebook-store-card__body {
    padding:1rem;
  }
  .ebook-store-actions {
    display:grid;
    grid-template-columns:1fr;
  }
  .ebook-store-actions button,
  .ebook-store-actions form button {
    width:100% !important;
    justify-content:center !important;
  }
  .ebook-detail-content {
    width:calc(100vw - 1.5rem) !important;
    max-width:calc(100vw - 1.5rem) !important;
    padding:1.2rem !important;
  }
  .ebook-detail-layout {
    grid-template-columns:1fr;
  }
  .ebook-detail-layout figure {
    position:relative;
    top:auto;
  }
  .ebook-detail-layout figure img {
    width:min(210px, 72vw);
  }
  .ebook-detail-grid {
    grid-template-columns:1fr;
  }
}


/* OSCANRE FINAL PRODUCTION PASS — testimonials + schema-era polish */
.ebook-testimonials {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.75rem;
  margin:1.2rem 0;
}
.ebook-testimonials blockquote {
  margin:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:1rem;
  padding:1rem;
  color:rgba(255,255,255,.76);
  background:rgba(255,255,255,.04);
  font-size:.92rem;
  line-height:1.45;
}
.ebook-testimonials blockquote span {
  display:block;
  color:rgba(255,255,255,.46);
  margin-top:.65rem;
  font-size:.85rem;
}
@media(max-width:720px){
  .ebook-testimonials {
    grid-template-columns:1fr;
  }
}


/* OSCANRE FINAL CLEAN2 PATCH — minimal, mobile-safe */
.loader__content,
.loader-content,
.loading__content,
#loader .loader__content,
.loader .loader__content {
  left:50% !important;
  transform:translateX(-50%) !important;
  text-align:center !important;
}
.loader__caption,
.loader__title,
.loader-caption,
.loader-title {
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Keep hero untouched except CTA visibility */
#booksy-main-trigger,
#notify-trigger {
  pointer-events:auto;
}
@media(min-width:992px){
  #booksy-main-trigger,
  #notify-trigger {
    display:inline-flex;
    visibility:visible;
    opacity:1;
  }
}

/* Modal layering: prevent gallery/modals stacking under each other */
.popup.is-visible,
.popup.animate-in {
  z-index:9990 !important;
}
.pswp.pswp--open {
  z-index:9980 !important;
}
.popup-close {
  z-index:10020 !important;
}

/* Project captions on desktop: contain text/buttons without changing mobile */
@media(min-width:992px){
  .my-gallery__description {
    box-sizing:border-box;
    max-width:min(390px, calc(100% - 42px));
    overflow-wrap:anywhere;
  }
  .project-card-link.project-inline-trigger {
    display:inline-flex;
    width:auto;
    max-width:100%;
    white-space:nowrap;
    cursor:pointer;
  }
}

/* Między Nami */
.miedzy-nami-card {
  margin:1.5rem 0;
  padding:1.15rem;
  border:1px solid rgba(255,255,255,.14);
  border-radius:1.2rem;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.miedzy-nami-card span {
  display:block;
  color:rgba(255,255,255,.48);
  font-size:.85rem;
  margin-bottom:.35rem;
}
.miedzy-nami-card strong {
  display:block;
  color:#fff;
  font-size:clamp(1.5rem,4vw,2.4rem);
  line-height:1;
  letter-spacing:-.04em;
}
.miedzy-nami-card p {
  color:rgba(255,255,255,.68);
  margin:.65rem 0 0;
  line-height:1.45;
}

/* Newsletter desktop input/button stable */
.newsletter-popup .oscanre-newsletter-modal-form {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:.75rem;
  align-items:center;
}
.newsletter-popup .oscanre-newsletter-modal-form input {
  min-width:0;
  height:54px;
}
.newsletter-popup .oscanre-newsletter-modal-form button {
  width:auto;
  min-width:124px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}
@media(max-width:640px){
  .newsletter-popup .oscanre-newsletter-modal-form {
    grid-template-columns:1fr;
  }
  .newsletter-popup .oscanre-newsletter-modal-form button {
    width:100%;
  }
}

/* Small performance hints */
img {
  max-width:100%;
}


/* OSCANRE MIĘDZY NAMI STRIPE PASS — minimal */
.miedzy-nami-checkout {
  margin:0;
}
.miedzy-nami-checkout button {
  border:0;
  cursor:pointer;
}



/* Safe desktop-only CTA fix. Does not reposition hero text. */
@media(min-width:992px){
  .headline__btnholder {
    overflow:visible;
    min-height:54px;
  }
  #booksy-main-trigger,
  #notify-trigger {
    display:inline-flex;
    visibility:visible;
    opacity:1;
    pointer-events:auto;
  }
}

/* Keep loader centered without touching hero */
.loader__content,
.loader-content,
.loading__content,
#loader .loader__content,
.loader .loader__content {
  left:50%;
  transform:translateX(-50%);
  text-align:center;
}

@media(max-width:720px){
  






/* OSCANRE FINAL POLISH — loader timing, legal, projects */
.loader {
  transition-duration:.65s !important;
}
.loader__content,
.loader-content,
.loading__content,
#loader .loader__content,
.loader .loader__content {
  left:50% !important;
  right:auto !important;
  transform:translate3d(-50%,0,0) !important;
  text-align:center !important;
}
.loader__logo,
.loader__caption,
.loader__title,
.loader-caption,
.loader-title {
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}
@media(min-width:992px){
  .my-gallery__item {
    border-radius:1rem;
    overflow:hidden;
  }
  .my-gallery__image {
    filter:saturate(.92) contrast(.98);
  }
  .my-gallery__description {
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    background:rgba(8,8,8,.36);
    border:1px solid rgba(255,255,255,.1);
    border-radius:1rem;
  }
}


/* OSCANRE LOADER RESTORE — slower branded intro */
.loader {
  transition-duration:.9s !important;
}
.loader__logo {
  transition-duration:.75s !important;
}


/* OSCANRE FINAL LEGAL + PRODUCTION PASS */
.legal-modal-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.75rem;
  margin-top:1.25rem;
}
.legal-modal-list a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:58px;
  padding:.9rem 1rem;
  border:1px solid rgba(255,255,255,.13);
  border-radius:1rem;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
}
.legal-modal-list a:after {
  content:"↗";
  color:rgba(255,255,255,.42);
  font-size:.9rem;
}
.checkout-legal-note {
  margin:.65rem 0 0;
  color:rgba(255,255,255,.46);
  font-size:.72rem;
  line-height:1.35;
}
.checkout-legal-note a {
  color:rgba(255,255,255,.72);
}
@media(max-width:680px){
  .legal-modal-list {
    grid-template-columns:1fr;
  }
}


/* OSCANRE FINAL BRAND MANIFEST PASS */
.projects-manifest {
  display:block;
}
.projects-manifest.is-hidden {
  display:none;
}
.projects-list-step {
  display:none;
}
.projects-list-step.is-active {
  display:block;
}
.projects-manifest__quote {
  margin:1.35rem 0 0;
  padding:1rem 1.05rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:1rem;
  color:rgba(255,255,255,.72);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  line-height:1.48;
}
.projects-manifest__actions {
  margin-top:1.25rem;
}
.projects-manifest__actions button {
  border:0;
  cursor:pointer;
}
.legal-modal-groups {
  display:grid;
  gap:1rem;
  margin-top:1.35rem;
}
.legal-modal-groups section {
  border:1px solid rgba(255,255,255,.1);
  border-radius:1.2rem;
  padding:1rem;
  background:rgba(255,255,255,.025);
}
.legal-modal-groups section > span {
  display:block;
  color:rgba(255,255,255,.42);
  font-size:.82rem;
  margin:0 0 .75rem;
}
.legal-modal-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.65rem;
  margin-top:0;
}
.legal-modal-list a {
  position:relative;
  display:block;
  min-height:78px;
  padding:.9rem 2.35rem .9rem 1rem;
  border:1px solid rgba(255,255,255,.11);
  border-radius:1rem;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  transition:border-color .25s ease, transform .25s ease, background .25s ease;
}
.legal-modal-list a strong {
  display:block;
  color:#fff;
  font-size:1rem;
  letter-spacing:-.02em;
}
.legal-modal-list a small {
  display:block;
  color:rgba(255,255,255,.46);
  margin-top:.28rem;
  font-size:.82rem;
  line-height:1.25;
}
.legal-modal-list a:after {
  content:"";
  position:absolute;
  right:1rem;
  top:50%;
  width:.52rem;
  height:.52rem;
  border-top:1px solid rgba(255,255,255,.42);
  border-right:1px solid rgba(255,255,255,.42);
  transform:translateY(-50%) rotate(45deg);
  transition:transform .25s ease, border-color .25s ease;
}
.legal-modal-list a:hover {
  border-color:rgba(255,255,255,.28);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
}
.legal-modal-list a:hover:after {
  transform:translate(3px,-50%) rotate(45deg);
  border-color:rgba(255,255,255,.78);
}
@media(max-width:680px){
  .legal-modal-list {
    grid-template-columns:1fr;
  }
  .projects-manifest__quote {
    font-size:.95rem;
  }
}


/* OSCANRE FINAL PERSONAL MANIFEST COPY PASS */
.projects-manifest .popup-title__text + .popup-title__text {
  margin-top:.75rem;
}
.projects-manifest__quote {
  font-size:clamp(.98rem, 1.6vw, 1.08rem);
}
.projects-list-step .oscanre-projects-premium {
  margin-top:1.2rem;
}


/* OSCANRE FINAL MICRO POLISH — desktop safe */
.projects-manifest > .project-kicker,
.projects-modal .project-kicker {
  color:rgba(255,255,255,.58) !important;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.11);
  border-radius:999px;
  padding:.32rem .62rem;
  display:inline-flex;
  width:max-content;
  max-width:100%;
}
.mobile-break {
  display:inline;
}
@media(max-width:640px){
  .mobile-break {
    display:block;
  }
}

/* Desktop-only hero visibility fix. No mobile changes. */
@media(min-width:1200px){
  #headline {
    transform:translateY(-4.5vh);
  }
  #headline .headline__btnholder {
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    min-height:54px;
    overflow:visible;
    align-items:center;
    justify-content:flex-start;
    gap:.75rem;
    flex-wrap:wrap;
  }
  #booksy-main-trigger,
  #notify-trigger {
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;
    pointer-events:auto !important;
  }
}


/* OSCANRE FINAL TRUST + CONSENT PASS */
.projects-manifest > .project-kicker {
  margin-bottom:1rem;
}
.projects-manifest-title {
  margin-top:.25rem !important;
  line-height:.9 !important;
}
.oscanre-consent {
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  margin:.8rem 0 .2rem;
  color:rgba(255,255,255,.58);
  font-size:.78rem;
  line-height:1.38;
  text-align:left;
}
.oscanre-consent input {
  width:16px !important;
  min-width:16px !important;
  height:16px;
  margin:.12rem 0 0;
  accent-color:#fff;
}
.oscanre-consent a {
  color:rgba(255,255,255,.82);
  text-decoration:underline;
  text-underline-offset:2px;
}
.contact-consent {
  margin-top:.25rem;
}

/* Desktop-only hero adjustment. Mobile/tablet untouched. */
@media(min-width:1200px){
  #headline {
    transform:translateY(-8vh) !important;
  }
  #headline .headline__btnholder {
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    min-height:58px !important;
    overflow:visible !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:.75rem !important;
    flex-wrap:wrap !important;
    position:relative !important;
    z-index:30 !important;
  }
  #booksy-main-trigger,
  #notify-trigger {
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;
    pointer-events:auto !important;
    position:relative !important;
    z-index:31 !important;
  }
}


/* OSCANRE FINAL LAST POLISH */
.oscanre-consent {
  gap:.55rem !important;
  align-items:flex-start !important;
  font-size:.76rem !important;
  line-height:1.32 !important;
  color:rgba(255,255,255,.54) !important;
}
.oscanre-consent input[type="checkbox"] {
  width:14px !important;
  min-width:14px !important;
  height:14px !important;
  margin:.18rem 0 0 !important;
  border-radius:4px !important;
}
.oscanre-newsletter-modal-form .oscanre-consent {
  max-width:92%;
  margin:.72rem auto .25rem;
}
.checkout-legal-note,
.ebook-card .checkout-legal-note,
.ebook-item .checkout-legal-note,
.oscanre-ebook-card .checkout-legal-note,
form[action="api/checkout.php"] .checkout-legal-note {
  font-size:.72rem !important;
  line-height:1.28 !important;
  color:rgba(255,255,255,.42) !important;
  margin:.58rem 0 0 !important;
  max-width:100% !important;
  font-weight:400 !important;
  letter-spacing:0 !important;
}
.checkout-legal-note a {
  color:rgba(255,255,255,.62) !important;
  font-size:inherit !important;
}
.projects-manifest__quote {
  color:rgba(255,255,255,.74) !important;
}


/* OSCANRE FINAL NO-CHECKBOX CONSENT PASS */
.form-legal-note {
  margin:.72rem 0 .2rem;
  color:rgba(255,255,255,.44);
  font-size:.72rem;
  line-height:1.34;
  font-weight:400;
}
.form-legal-note a {
  color:rgba(255,255,255,.68);
  text-decoration:underline;
  text-underline-offset:2px;
}
.newsletter-legal-note {
  max-width:92%;
  margin:.76rem auto .2rem;
  text-align:left;
}
.contact-legal-note {
  margin-top:.1rem;
}


/* OSCANRE FINAL DESKTOP HERO FIX — desktop only, mobile untouched */
@media (min-width: 1024px) and (pointer: fine) {
  #main,
  .main,
  .main-content {
    min-height: 100vh;
  }

  #headline {
    transform: translateY(-10vh) !important;
    max-width: min(720px, 52vw) !important;
    z-index: 40 !important;
  }

  #headline .headline__title,
  #headline h1 {
    max-width: 720px !important;
  }

  #headline .headline__btnholder {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    min-height: 64px !important;
    margin-top: 28px !important;
    overflow: visible !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 45 !important;
  }

  #booksy-main-trigger,
  #notify-trigger {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 46 !important;
  }

  .media,
  .media-container,
  .main-image,
  .hero-image,
  .main__media,
  .image {
    max-height: 92vh !important;
  }
}

/* Wider desktop / laptop polish */
@media (min-width: 1280px) and (pointer: fine) {
  #headline {
    transform: translateY(-12vh) !important;
  }
}

/* Short laptop screens: pull hero content up a bit more */
@media (min-width: 1024px) and (max-height: 820px) and (pointer: fine) {
  #headline {
    transform: translateY(-15vh) !important;
  }

  #headline .headline__btnholder {
    margin-top: 22px !important;
  }
}


/* OSCANRE REAL DESKTOP HERO FIX — final override, desktop only */
@media (min-width: 1024px) and (pointer: fine) {
  #main.main,
  section#main.main.full {
    height: 100vh !important;
    min-height: 680px !important;
    overflow: hidden !important;
  }

  #main .fullscreen-wrapper,
  #main .main__content,
  #main .container-fluid,
  #main .row,
  #main .main__intro,
  #main .intro__content {
    height: 100vh !important;
    min-height: 680px !important;
  }

  #headline.headline,
  #headline.headline.centered-mobile {
    position: absolute !important;
    top: 44% !important;
    bottom: auto !important;
    left: 0 !important;
    width: min(680px, 52vw) !important;
    max-width: min(680px, 52vw) !important;
    padding-left: clamp(4.5rem, 5.4vw, 8rem) !important;
    padding-right: 1.5rem !important;
    transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    z-index: 50 !important;
  }

  #headline .headline__title,
  #headline h1.headline__title {
    font-size: clamp(4rem, 5.4vw, 7.6rem) !important;
    line-height: .92 !important;
    letter-spacing: -0.065em !important;
    max-width: 660px !important;
    margin: 0 !important;
  }

  #headline .headline__btnholder {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin-top: 2rem !important;
    min-height: 58px !important;
    overflow: visible !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 60 !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  #headline .headline__btnholder .btn,
  #booksy-main-trigger,
  #notify-trigger {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 61 !important;
  }

  .media-full-4 {
    background-position: 64% center !important;
    background-size: cover !important;
  }
}

/* MacBook / lower-height desktop: guarantee CTA above dock/browser edge */
@media (min-width: 1024px) and (max-height: 820px) and (pointer: fine) {
  #main.main,
  section#main.main.full,
  #main .fullscreen-wrapper,
  #main .main__content,
  #main .container-fluid,
  #main .row,
  #main .main__intro,
  #main .intro__content {
    min-height: 620px !important;
  }

  #headline.headline,
  #headline.headline.centered-mobile {
    top: 40% !important;
  }

  #headline .headline__title,
  #headline h1.headline__title {
    font-size: clamp(3.7rem, 4.9vw, 6.65rem) !important;
    line-height: .91 !important;
  }

  #headline .headline__btnholder {
    margin-top: 1.55rem !important;
  }
}

/* Keep mobile and tablets exactly as before */
@media (max-width: 1023px), (pointer: coarse) {
  /* no desktop hero override here */
}

/* Contact modal legal note spacing */
.contact-legal-note {
  margin-top: 1.15rem !important;
  margin-bottom: 1.15rem !important;
}


/* SAME AS INLINE: FORCE DESKTOP HERO FIX */


/* FORCE DESKTOP HERO FIX — loaded in HTML to beat cache/order. Mobile untouched. */
@media only screen and (min-width: 1024px) and (pointer: fine) {
  section#main.main.full,
  #main .fullscreen-wrapper,
  #main .main__content,
  #main .container-fluid,
  #main .row,
  #main .main__intro,
  #main .intro__content {
    height: 100vh !important;
    min-height: 620px !important;
    overflow: hidden !important;
  }

  #headline.headline,
  #headline.headline.centered-mobile {
    position: absolute !important;
    left: 0 !important;
    top: 41% !important;
    bottom: auto !important;
    width: min(620px, 48vw) !important;
    max-width: min(620px, 48vw) !important;
    padding-left: clamp(4.25rem, 5vw, 7rem) !important;
    padding-right: 1rem !important;
    transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    z-index: 80 !important;
  }

  #headline h1.headline__title,
  #headline .headline__title {
    font-size: clamp(3.55rem, 4.55vw, 6.15rem) !important;
    line-height: .91 !important;
    letter-spacing: -0.065em !important;
    max-width: 620px !important;
    margin: 0 !important;
  }

  #headline .headline__btnholder {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    margin-top: 1.45rem !important;
    min-height: 56px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 90 !important;
  }

  #headline .headline__btnholder a,
  #headline .headline__btnholder .btn,
  #booksy-main-trigger,
  #notify-trigger {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 91 !important;
  }

  .media-full-4 {
    background-position: 64% center !important;
  }
}

/* Even shorter laptop windows */
@media only screen and (min-width: 1024px) and (max-height: 760px) and (pointer: fine) {
  #headline.headline,
  #headline.headline.centered-mobile {
    top: 38% !important;
  }

  #headline h1.headline__title,
  #headline .headline__title {
    font-size: clamp(3.25rem, 4.25vw, 5.55rem) !important;
    line-height: .9 !important;
  }

  #headline .headline__btnholder {
    margin-top: 1.15rem !important;
  }
}

@media only screen and (max-width: 1023px), (pointer: coarse) {
  /* no mobile override */
}

.contact-legal-note {
  margin-top: 1.25rem !important;
  margin-bottom: 1.2rem !important;
}



/* OSCANRE CORRECT BASE MOBILE FIX — applied to FINAL_PRODUCTION_READY */
@media (max-width: 991px){
  #about .about-image{
    background-image:url('../img/oscanre/hero-oskarpytka.webp') !important;
    background-position:78% center !important;
    background-size:cover !important;
    min-height:calc(100dvh - 10rem) !important;
  }
  #works.inner,
  #works .inner__content,
  #works .container-fluid,
  #works .row,
  #works .inner__info,
  #works .blocks-container{
    height:auto !important;
    min-height:0 !important;
  }
  #works .inner__media{
    display:none !important;
    height:0 !important;
    min-height:0 !important;
    overflow:hidden !important;
  }
  #works .inner__content{
    padding-bottom:clamp(2.5rem, 8vw, 4rem) !important;
  }
  #works .content-block:last-child{
    margin-bottom:0 !important;
  }
  #works .features__item.project-mini-link{
    margin-bottom:1.35rem !important;
  }
}
@media (max-width: 520px){
  #about .about-image{
    background-position:82% center !important;
  }
}

/* FINAL 2026: Dla Ciebie mobile vertical scroll fix */
@media (max-width:1199px){
  #works.inner.active,
  #works.inner.animate-in{
    height:100dvh !important;
    max-height:100dvh !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    overscroll-behavior-y:contain;
  }
  #works .inner__content,
  #works .container-fluid,
  #works .row,
  #works .inner__info,
  #works .blocks-container{
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    overflow:visible !important;
  }
  #works .inner__info{min-height:100dvh !important;}
  #works .blocks-container{padding-bottom:calc(3.25rem + env(safe-area-inset-bottom)) !important;}
  #works .inner__media{display:none !important;}
}
