/*
Theme Name: Julia Wiśniewska
Author: Tomasz Kapcia / Recodeit sp. z o. o.
Author URI: https://recodeit.net/
Version: 1.1
*/

/*--- GLOBAL ---*/
:root {
  --lightgray: rgb(44, 44, 45);
  --darkgray: rgb(30, 30, 30);
}
/* @font-face
{
  	font-family: "Montserrat SemiBold";
 	src: url('fonts/Montserrat-SemiBold.ttf');
}
@font-face
{
  	font-family: "Montserrat Regular";
 	src: url('fonts/Montserrat-Regular.ttf');
}
@font-face
{
  	font-family: "Montserrat Medium";
 	src: url('fonts/Montserrat-Medium.ttf');
}
@font-face
{
  	font-family: "Montserrat Light";
 	src: url('fonts/Montserrat-Light.ttf');
} */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  /*font-family: Montserrat Light;*/
  /* font-family: "Montserrat Regular"; */
  font-family: "League Spartan" !important;
  font-size: 15.5px;
  line-height: 1.55;
  overflow-x: hidden;
  color: white !important;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "League Spartan" !important;
  font-weight: 700;
}
a {
  text-decoration: none !important;
}
img {
  margin: 1rem 0;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.velo-slide__title {
  font-weight: 400 !important;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1920px;
  }
}

/* --- NAVBAR --- */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1270px) {
  .navbar__desktop {
    display: none !important;
  }
  .navbar__mobile {
    display: block !important;
  }
}
.navbar--white {
  background-color: white;
  -webkit-box-shadow: -3px 4px 12.5px 3.5px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: -3px 4px 12.5px 3.5px rgba(0, 0, 0, 0.36);
  box-shadow: -3px 4px 12.5px 3.5px rgba(0, 0, 0, 0.36);
}
.navbar--black-text {
}
.navbar--half-black-text {
}
.navbar__top {
  width: 100%;
  height: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 4vw;
  padding: 0 6vw;
  font-size: 1.8rem;
  font-family: "League Spartan";
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  gap: 1rem;
}
@media (max-width: 1560px) {
  .navbar__top {
    font-size: 1.3rem;
  }
}
@media (max-width: 820px) and (max-height: 420px) {
  .navbar__top {
    margin-top: 0 !important;
  }
}

/* --- NAVBAR DESKTOP --- */
.navbar__desktop {
  height: 100%;
  width: 100%;
  padding-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar__logo {
  width: 40rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar__logo-img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1560px) {
  .navbar__logo {
    width: 30rem;
  }
}
.navbar__slogan,
.navbar--half-black-text .navbar__slogan {
  color: white;
  display: block;
}
.navbar--white .navbar__slogan,
.navbar--black-text .navbar__slogan {
  color: black !important;
}
.navbar__menu {
}
.navbar__menu-list {
  list-style-type: none;
}
.navbar__menu-list .menu-item {
  display: inline-block;
  margin: 0 1rem;
}
.navbar__menu-list .menu-item:first-child {
  margin-left: 0;
}
.navbar__menu-list .menu-item:last-child {
  margin-right: 0;
}
.navbar__menu-list .menu-item a {
  color: white;
}
.navbar__menu-list .menu-item a::before {
  content: "";
  position: absolute;
  /* background: #000000; */
  background: white;
  width: 20px;
  height: 1px;
  top: 77%;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.navbar__menu-list .menu-item:hover a::before {
  width: 7rem;
}
.navbar--white .navbar__menu-list .menu-item a,
.navbar--black-text .navbar__menu-list .menu-item a,
.navbar--half-black-text .navbar__menu-list .menu-item a {
  color: black !important;
}
.navbar--white .navbar__menu-list .menu-item a::before,
.navbar--black-text .navbar__menu-list .menu-item a::before,
.navbar--half-black-text .navbar__menu-list .menu-item a::before {
  background: black !important;
}
@media (max-width: 1560px) {
  .navbar__menu-list .menu-item:hover a::before {
    width: 5rem;
  }
}

/* --- NAVBAR MOBILE --- */
.navbar__mobile {
  display: none;
}
.navbar__mobile .menu-icon {
  height: 30px;
  width: 30px;
  z-index: 7;
  cursor: pointer;
  position: relative;
}
.navbar__mobile .menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #ffffff;
  margin-bottom: 4px;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.5s ease, -o-transform 0.2s ease;
  -moz-transition: transform 0.2s ease, background-color 0.5s ease,
    -moz-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease, -moz-transform 0.2s ease,
    -o-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}
.navbar--white .menu-icon__line,
.navbar--black-text .menu-icon__line,
.navbar--half-black-text .menu-icon__line {
  background: black !important;
}
@media (max-width: 991px) {
  .navbar--half-black-text .menu-icon__line {
    background: white !important;
  }
}
.navbar__mobile .menu-icon__line-left {
  width: 15px;
}
.navbar__mobile .menu-icon__line-right {
  width: 15px;
  float: right;
}
.navbar__mobile .nav {
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
}
.navbar__mobile .nav:before,
.nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(234, 234, 234, 0.2);
  z-index: -1;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -o-transition: -o-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -moz-transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s,
    -moz-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s,
    -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s,
    -moz-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s,
    -o-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s,
    -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -webkit-transform: translateX(0%) translateY(-100%);
  -moz-transform: translateX(0%) translateY(-100%);
  -o-transform: translateX(0%) translateY(-100%);
  transform: translateX(0%) translateY(-100%);
}
.navbar__mobile .nav:after {
  /*background: white;*/
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.navbar__mobile .nav:before {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.navbar__mobile .nav__content {
  position: fixed;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: -webkit-calc(2vw + 10px);
  font-size: -moz-calc(2vw + 10px);
  font-size: calc(2vw + 10px);
  font-weight: 200;
  cursor: pointer;
}
.navbar__mobile .nav__list {
  padding-left: 0;
}
.navbar__mobile .nav__list-item {
  position: relative;
  display: inline-block;
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
  -webkit-transform: translate(0%, 100%);
  -moz-transform: translate(0%, 100%);
  -o-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.2s ease, -o-transform 0.3s ease;
  -moz-transition: opacity 0.2s ease, transform 0.3s ease,
    -moz-transform 0.3s ease;
  transition: opacity 0.2s ease, transform 0.3s ease;
  transition: opacity 0.2s ease, transform 0.3s ease,
    -webkit-transform 0.3s ease, -moz-transform 0.3s ease,
    -o-transform 0.3s ease;
  transition: opacity 0.2s ease, transform 0.3s ease,
    -webkit-transform 0.3s ease;
  margin-right: 25px;
}
.navbar__mobile .nav__list-item:before {
  content: "";
  position: absolute;
  /*background: #000000;*/
  background: white;
  width: 20px;
  height: 1px;
  top: 100%;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.navbar__mobile .nav__list-item:hover:before {
  width: 100%;
}
body.nav-active .menu-icon__line {
  /*background-color: #000;*/
  -webkit-transform: translateX(0px) rotate(-45deg);
  -moz-transform: translateX(0px) rotate(-45deg);
  -o-transform: translateX(0px) rotate(-45deg);
  transform: translateX(0px) rotate(-45deg);
}
body.nav-active .navbar--white .menu-icon__line,
body.nav-active .navbar--black-text .menu-icon__line,
body.nav-active .navbar--half-black-text .menu-icon__line {
  background-color: #fff !important;
}
body.nav-active .menu-icon__line-left {
  -webkit-transform: translateX(1px) rotate(45deg);
  -moz-transform: translateX(1px) rotate(45deg);
  -o-transform: translateX(1px) rotate(45deg);
  transform: translateX(1px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  -webkit-transform: translateX(-2px) rotate(45deg);
  -moz-transform: translateX(-2px) rotate(45deg);
  -o-transform: translateX(-2px) rotate(45deg);
  transform: translateX(-2px) rotate(45deg);
}
body.nav-active .nav {
  visibility: visible;
}
body.nav-active .nav:before,
body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
  -moz-transform: translateX(0%) translateY(0%);
  -o-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
}
body.nav-active .nav:after {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease,
    -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, color 0.3s ease, -o-transform 0.3s ease;
  -moz-transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease,
    -moz-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease,
    -webkit-transform 0.3s ease, -moz-transform 0.3s ease,
    -o-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease,
    -webkit-transform 0.3s ease;
}
body.nav-active .nav__list-item a {
  color: white;
}
body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
body:not(.nav-active) .nav__content {
  top: -50%;
}
@media (max-width: 991px) {
  .navbar__mobile .nav__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .navbar__mobile .nav__list-item {
    margin: 1rem 0;
  }
  .navbar__mobile .nav__list-item a {
    font-size: 2.25rem;
  }
}

/* --- STRONA GŁÓWNA --- */
.home {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
  background: white;
  color: black;
}
.home__slider {
  width: 100%;
}
.home__slider .velo-slider__hint {
  position: absolute;
}
.home__slider .velo-slides {
  background: var(--darkgray);
  border: 1em solid var(--lightgray);
}
.home__slider .velo-slide .velo-slide__bg {
  color: white;
}
@media (min-width: 54em) {
  .home__slider .velo-slide:not(.is-hovering) .border,
  .home__slider .velo-slide:not(.is-hovering) .border span {
    height: 3vw;
  }
  .home__slider .velo-slide:not(.is-hovering) .border:before,
  .home__slider .velo-slide:not(.is-hovering) .border:after {
    width: 3vw;
  }
}
.home__slider .velo-slides-nav {
  position: absolute;
  right: 6%;
}
.home__about {
  width: 100%;
}
.home__about .container {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2.5rem 4rem;
  padding-top: 5rem;
}
.home__about-left {
  width: 40%;
  padding-top: 2rem;
  padding-right: 2rem;
}
.home__about-pretitle {
  font-weight: normal;
}
.home__about-title {
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "League Spartan";
  line-height: 1.4;
  width: 95%;
  margin: 1.1rem 0;
}
.home__about-text {
  font-family: "League Spartan";
  font-size: 1.3rem;
  line-height: 1.4;
}
.home__about-more {
  color: black;
  border-bottom: 1px solid black;
  font-size: 1.2rem;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}
.home__about-more:hover {
  border-bottom: 1px solid white;
}
.home__about-right {
  width: 60%;
}
.home__about-img {
  width: 100%;
}
@media (max-width: 1200px) {
  .home__about .container {
    padding: 2.5rem 2rem;
  }
  .home__about-left {
    padding: 0rem;
  }
  .home__about-right {
    padding: 1rem;
    padding-right: 0rem;
  }
}
@media (max-width: 991px) {
  .home__about .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .home__about-left,
  .home__about-right {
    width: 100%;
  }
  .home__about-right {
    padding: 0;
    margin-top: 2rem;
  }
}
@media (max-width: 380px) {
  .home__about-title {
    font-size: 2rem;
  }
}
.home__journal {
  width: 100%;
}
.home__journal .container {
  width: 100%;
  padding: 2.5rem 4rem;
}
.home__journal-title {
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "League Spartan";
  line-height: 1.4;
  width: 95%;
  margin: 1.1rem 0;
}
.home__journal-slider {
  width: -webkit-calc(100% + 2rem);
  width: -moz-calc(100% + 2rem);
  width: calc(100% + 2rem);
  margin-top: 1.5rem;
  margin-left: -1rem;
}
.home__journal-slide {
  padding: 0 1rem;
}
.home__journal-slide-img-cont {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.home__journal-slide-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.home__journal-slide-date {
  color: var(--lightgray);
}
.home__journal-slide-title {
  font-weight: bold;
  font-family: "League Spartan";
  margin-top: -0.5rem;
}
@media (max-width: 1200px) {
  .home__journal .container {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 991px) {
  .home__journal .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
@media (max-width: 380px) {
  .home__journal-title {
    font-size: 2rem;
  }
}
.home__projects {
  width: 100%;
  padding-bottom: 4rem;
}
.home__projects .container {
  width: 100%;
  padding: 2.5rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  /* display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}
@media (max-width: 768px) {
  .home__projects .container {
    grid-template-columns: 1fr;
  }
}
.home__projects .container:last-child {
  padding-bottom: 0;
}
.home__project {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
  height: 30vw;
  min-height: 310px;
  max-height: 575px;
  width: 100%;
  color: white;
  padding: 3vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.home__project--long {
  width: 100%;
  background-attachment: fixed;
}
.home__project-pretitle {
  font-weight: normal;
  margin: 0;
  line-height: 1.4;
}
.home__project-title {
  font-weight: 700;
  font-family: "League Spartan";
  font-size: 2.25rem;
  margin: 0;
  margin-top: 1.2rem;
  line-height: 1.4;
  width: 90%;
  overflow-x: hidden;
}
@media (max-width: 1280px) {
  .home__project-title {
    font-size: 1.6rem;
  }
}
.home__project .home__about-more {
  font-weight: bold;
  color: white;
  border-bottom: 1px solid white;
}
.home__project .home__about-more:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
@media (max-width: 1200px) {
  .home__projects {
    padding-bottom: 2.5rem;
  }
  .home__projects .container {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 991px) {
  .home__projects .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem 1rem;
  }
  .home__project {
    height: 20rem;
    width: 100%;
    margin: 1rem 0;
  }
  .home__project--long {
    margin: 0;
    height: 25rem;
  }
}
@media (max-width: 575px) {
  .home__project-pretitle {
    font-size: 1rem;
  }
  .home__project-title {
    font-size: 1.5rem;
  }
}
.home__contact {
  width: 100%;
}
.home__contact .container {
  width: 100%;
  padding: 2.5rem 4rem;
  padding-bottom: 4em;
}
.home__contact-container {
  width: 100%;
  height: 30vw;
  max-height: 45rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.home__contact-left {
  min-height: 20rem;
  height: 100%;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--lightgray);
  color: white;
  padding: 3vw;
}
.home__contact-title {
  font-weight: 700;
  font-family: "League Spartan";
  font-size: 2.5rem;
  line-height: 1.4;
  margin: 0;
}
.home__contact-text {
  font-size: 1.3rem;
  line-height: 1.4;
}
.home__contact-right {
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-image: url("img/home/contact-img.jpg");
}
.home__contact .home__about-more {
  color: white;
  border-bottom: 1px solid white;
}
.home__contact .home__about-more:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
@media (max-width: 1200px) {
  .home__contact .container {
    padding: 2.5rem 2rem;
  }
  .home__contact-title {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .home__contact .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 1rem;
    padding-bottom: 3rem;
  }
  .home__contact-container {
    height: auto;
  }
  .home__contact-left {
    height: auto;
    width: 100%;
  }
  .home__contact-right {
    display: none;
  }
}
@media (max-width: 380px) {
  .home__contact-title {
    font-size: 2rem;
  }
}

/* --- O MNIE --- */
.about {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
  background: white;
  color: black;
}
.about__header {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 4rem;
}
.about__title {
  font-family: "League Spartan";
  font-weight: 700;
  font-size: 3.5rem;
  color: white;
  width: 80%;
}
.about__content {
  width: 100%;
  padding-bottom: 2rem;
}
.about__content .container {
  font-size: 1.5rem;
  padding: 4rem;
}
.page__content .container {
  padding-top: 0 !important;
}
.about__content .wp-block-column {
  margin: 0;
}
@media (max-width: 1200px) {
  .about__header {
    height: -webkit-fill-available;
    max-height: 80vh;
    min-height: 0;
  }
  .about__content .container {
    padding: 3rem 1rem;
  }
  .about__title {
    font-size: 2.75rem;
    line-height: 1.4;
  }
}
@media (max-width: 991px) {
  .about__header {
    height: 100%;
    max-height: none;
    padding: 3rem;
  }
  .about__content {
    margin-top: 1rem;
  }
  .about__content .container {
    padding: 0rem 1rem;
  }
  .about__title {
    margin-top: 7rem;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .about__header {
    padding: 2rem;
  }
  .about__content .container {
    font-size: 1.25rem;
  }
  .about__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  .about__header {
    padding: 1rem;
  }
  .about__title {
    font-size: 2rem;
  }
}

/* --- PROJEKTY --- */
.projects {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
  background: white;
  color: black;

  padding-top: 10rem;
}
.projects__header {
  /* padding-top: 10rem; */
}
.projects__header .container {
  width: 100%;
  padding: 0 4rem;
}
.projects__title {
  font-weight: bold;
  font-family: "League Spartan";
  font-size: 3rem;
}
.projects__content {
  width: 100%;
  padding: 4rem 0;
}
.projects__content .container {
  padding: 0 4rem;
  width: 100%;
}
.projects__articles {
  width: 100%;
  /* margin-left: -1rem;
  width: -webkit-calc(100% + 2rem);
  width: -moz-calc(100% + 2rem);
  width: calc(100% + 2rem); */
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (33%) [3]; */
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.projects__article {
  width: 100%;
  /* padding: 1rem; */
}
.projects__article-img {
  width: 100%;
  height: 350px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
.projects__article-title {
  font-family: "League Spartan";
  font-weight: normal;
  margin-top: 1.2rem;
  color: black;
}
@media (max-width: 1200px) {
  .projects {
    padding-top: 7rem;
  }
  .projects__header .container,
  .projects__content .container {
    padding: 0 2rem;
  }
  .projects__articles {
    -ms-grid-columns: (50%) [2];
    grid-template-columns: repeat(2, 50%);
  }
  .projects__content {
    padding-top: 0rem;
  }
}
@media (max-width: 991px) {
  .projects__header {
    /*padding-top: 6rem;*/
  }
  .projects__title {
    font-size: 2.5rem;
  }
  .projects__header .container,
  .projects__content .container {
    padding: 0 1rem;
  }
}
@media (max-width: 820px) and (max-height: 420px) {
  .projects__header {
    /*padding-top: 4rem;*/
  }
}
@media (max-width: 768px) {
  .projects__header {
    /*padding-top: 4rem;*/
  }
}
@media (max-width: 575px) {
  .projects__articles {
    -ms-grid-columns: (100%) [1];
    grid-template-columns: repeat(1, 100%);
  }
}
@media (max-width: 380px) {
  .projects__title {
    font-size: 2rem;
  }
}

/* --- DZIENNIK --- */
.journal {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
  background: white;
  color: black;
}
.journal__header {
  padding-top: 10rem;
}
.journal__header .container {
  width: 100%;
  padding: 0 4rem;
}
.journal__title {
  font-weight: bold;
  font-family: "League Spartan";
  font-size: 3rem;
}
.journal__content {
  width: 100%;
  padding: 4rem 0;
}
.journal__content .container {
  padding: 0 4rem;
  width: 100%;
}
.journal__articles {
  width: 100%;
  /* margin-left: -1rem;
  width: -webkit-calc(100% + 2rem);
  width: -moz-calc(100% + 2rem);
  width: calc(100% + 2rem); */
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (33%) [3]; */
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.journal__article {
  width: 100%;
  /* padding: 1rem; */
}
.journal__article-img-cont {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.journal__article-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.journal__article-date {
  color: var(--lightgray);
}
.journal__article-title {
  font-weight: bold;
  font-family: "League Spartan";
  margin-top: -0.5rem;
}
@media (max-width: 1200px) {
  .journal__header {
    padding-top: 7rem;
  }
  .journal__header .container,
  .journal__content .container {
    padding: 0 2rem;
  }
  .journal__articles {
    /* -ms-grid-columns: (50%) [2]; */
    grid-template-columns: repeat(2, 1fr);
  }
  .journal__content {
    padding-top: 0rem;
  }
}
@media (max-width: 991px) {
  .journal__header {
    /*padding-top: 6rem;*/
  }
  .journal__title {
    font-size: 2.5rem;
  }
  .journal__header .container,
  .journal__content .container {
    padding: 0 1rem;
  }
}
@media (max-width: 820px) and (max-height: 420px) {
  .journal__header {
    /*padding-top: 4rem;*/
  }
}
@media (max-width: 768px) {
  .journal__header {
    /*padding-top: 4rem;*/
  }
}
@media (max-width: 575px) {
  .journal__articles {
    -ms-grid-columns: (100%) [1];
    grid-template-columns: repeat(1, 100%);
  }
}
@media (max-width: 380px) {
  .journal__title {
    font-size: 2rem;
  }
}

/* --- KONTAKT --- */
.contact {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
  background: black;
  color: white;
}
.contact__header {
  width: 100%;
  padding-top: 10rem;
}
.contact__header .container {
  width: 100%;
  padding: 0 4rem;
}
.contact__title {
  width: 60%;
  font-weight: 700;
  font-family: "League Spartan";
  font-size: 3.5rem;
  line-height: 1.4;
  margin-bottom: 0;
}
.contact__text {
  width: 60%;
  font-size: 1.3rem;
}
.contact__data {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 2rem;
}
.contact__data .container {
  width: 80%;
  margin: 0;
  max-width: none;
}
.contact__desc {
  width: 100%;
}
.contact__desc .wp-block-image {
  padding: 0;
  margin: 0;
  max-width: none;
}
.contact__desc img {
  width: -webkit-calc(100% + 1rem);
  width: -moz-calc(100% + 1rem);
  width: calc(100% + 1rem);
  height: 100%;
  max-height: 90vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  max-width: none !important;
}
.contact__data .footer__contact {
  margin: 5rem 0;
}
.contact__data .footer__contact p {
  text-align: left;
}
.contact__data .footer__contact p:nth-child(2) {
  text-decoration: underline;
}
.contact__footer {
  width: 100%;
  background: black;
}
.contact__footer .footer__bottom {
  margin-top: 0;
}
@media (max-width: 991px) {
  .contact__header {
    padding-top: 7rem;
  }
  .contact__header .container {
    padding: 0 2rem;
  }
  .contact__title,
  .contact__text {
    width: 80%;
  }
  .contact__data .footer__contact {
    margin: 4rem 0;
  }
}
@media (max-width: 768px) {
  .contact__header .container {
    padding: 0 1rem;
  }
  .contact__title,
  .contact__text {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .contact__header {
    /*padding-top: 4rem;*/
  }
  .contact__data .container {
    width: 90%;
  }
  .contact__title {
    font-size: 2.5rem;
  }
  .contact__text {
    font-size: 1.3rem;
  }
  .contact__data .footer__contact {
    margin: 2.5rem 0;
  }
}
@media (max-width: 340px) {
  .contact__title {
    font-size: 2rem;
  }
  .contact__text {
    font-size: 1.1rem;
  }
}

/* --- FOOTER --- */
.single {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
  background: white;
  color: black;
}
.single__header {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 53fr 47fr;
  /* max-height: 100vh; */
  /* overflow: hidden; */
  /* display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
}
.single__header-left {
  /* width: 53%; */
  width: 100%;
  /* height: -webkit-fill-available; */
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (min-width: 992px) {
  .single__header-left {
    height: -webkit-fill-available !important;
  }
}
.single__header-right {
  /* width: 47%; */
  width: 100%;
  height: 100%;
  /* margin-top: 4rem; */
  margin-top: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 5rem;
}
@media (max-width: 1720px) {
  .single__header-right {
    margin-top: 7rem;
  }
}
@media (max-width: 992px) {
  .single__header-right {
    margin-top: 0;
  }
}
.single__header-title {
  width: 100%;
  font-weight: normal;
  line-height: 1.4;
  margin-left: 0.25rem;
  margin-top: 0;
}
.single__header-short {
  width: 100%;
  font-size: 3rem;
  font-family: "League Spartan";
  font-weight: 700;
  line-height: 1.4;
  margin-top: -0.5rem;
}
.single__data {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media (max-width: 1280px) {
  .single__data {
    grid-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .single__data {
    grid-template-columns: 1fr;
  }
}
.single__data-pretitle {
  font-size: 1.5rem;
  font-family: "League Spartan";
  font-weight: 700;
  line-height: 1.4;
  margin: 0.4rem 0;
}
.single__data-title {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0.4rem 0;
}
/* .single__data tr:last-child td {
  padding-top: 1rem;
} */
.single__content {
  width: 100%;
  padding-bottom: 2rem;
}
.single__content .container {
  font-size: 1.5rem;
  padding: 4rem;
}
@media (max-width: 1200px) {
  .single__header {
    height: 100%;
    /* max-height: 80vh; */
    min-height: 0;
  }
  .single__header-short {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .single__data {
    padding: 3rem 0;
  }
  .single__content .container {
    padding: 3rem 1rem;
  }
}
@media (max-width: 991px) {
  .single__header {
    max-height: none;
    /* -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; */
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
  .single__header-left {
    width: 100%;
    max-height: 60vh;
  }
  .single__header-right {
    width: 100%;
    height: auto;
    padding: 2rem;
    padding-bottom: 0;
  }
  .single__data {
    width: 100%;
  }
  .single__content .container {
    padding: 0rem 1rem;
  }
}
@media (max-width: 768px) {
  /* .single__data {
    width: 90%;
  } */
  .single__content .container {
    font-size: 1.25rem;
  }
}
@media (max-width: 575px) {
  .single__header-title {
    margin-left: 0;
  }
  .single__header-short {
    font-size: 2rem;
  }
  .single__header-right {
    padding-top: 2rem 1rem;
  }
  /* .single__data {
    padding: 2rem 0;
  } */
  .single__data-pretitle,
  .single__data-title {
    font-size: 1.25rem;
  }
}

/* --- FOOTER --- */
.footer {
  width: 100%;
  background-color: black;
  color: white;
  position: fixed;
  bottom: 0;
  z-index: 1;
  padding: 5rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__top {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5vw;
}
.footer__logo {
  width: auto;
  height: 10.5rem;
  max-height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__logo-img {
  width: auto;
  height: 100%;
}
.footer__contact {
}
.footer__contact p {
  font-family: "League Spartan";
  text-align: right;
  font-size: 1.3rem;
  margin: 0;
  margin-bottom: 0.5rem;
}
.footer__contact p a {
  color: white;
}
.footer__contact p a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .footer .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    height: auto;
  }
  .footer__contact p {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer {
    padding: 3rem 0;
  }
}
.footer__bottom {
  color: gray;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5vw;
}
.footer__bottom p {
}
@media (max-width: 575px) {
  .footer__bottom {
    margin-top: 1.15rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__bottom p {
    text-align: center;
    margin: 0;
  }
}
