.social_hover {
  transition: linear 0.2s;
}
.social_hover:hover {
  transform: scale(1.2);
  transition: linear 0.2s;
}

.container .container{
  width: 100%;
}

/* boxes_template_2   - boxy jako baner DO DOPRACOWNIA*/
.boxes_template_2-container,
.boxes_template_2-container-mobile {
  border: 1px solid grey;
  border-radius: 15px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.boxes_template_2__link-box:hover {
  text-decoration: none;
}
.boxes_template_2__item,
.boxes_template_2__link-box {
  margin: 35px 20px;
  width: 20%;
  max-width: 200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.boxes_template_2__item-img {
  max-width: 35px;
  max-height: 35px;
}
.boxes_template_2__title {
  font-size: 14px;
  font-weight: 500;
}
.boxes_template_2__content {
  max-width: 150px;
}

.boxes_template_2 .slick-next:before,
.boxes_template_2 .slick-prev:before {
  content: unset;
}

.boxes_template_2__link-box:hover .boxes_template_2__item-img,
.boxes-four-icons__link-box:hover .boxes-four-icons__img {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
@media only screen and (max-width: 768px) {
  .boxes_template_2__item,
  .boxes_template_2__link-box {
    flex-direction: column;
    justify-content: space-between;
    margin: 30px 10px 0 10px;
  }
  .boxes_template_2__title {
    text-align: center;
  }
}
/* boxes_template_5 */

.boxes-template-5__boxes-container {
  display: flex;
  justify-content: center;
}
.boxes-template-5__box {
  height: 600px;
  overflow: hidden;
  transition: 0.5s ease-in all;
  border: 5px solid transparent;
}
.boxes-template-5__box-tight {
  width: 5vw;
  cursor: pointer;
}
.boxes-template-5__box-tight .boxes-template-5__content {
  opacity: 0;
}
.boxes-template-5__box-wide {
  width: 80vw;
}
.boxes-template-5__box-wide .boxes-template-5__content {
  animation: showDesc 0.8s forwards;
}
.boxes-template-5__box-container {
  width: 80vw;
  position: relative;
}
.boxes-template-5__box:first-of-type {
  margin-left: 0;
  border-left: none;
}
.boxes-template-5__box:last-of-type {
  margin-right: 0;
  border-right: none;
}
.boxes-template-5__content {
  position: absolute;
  bottom: -100px;
  left: 50px;
}
.boxes-template-5__tittle {
  margin-bottom: 0;
}

.boxes-template-5__img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.boxes-template-5__image-bg {
  width: 100%;
  height: 600px;
  position: absolute;
}

@keyframes showDesc {
  0% {
    opacity: 0;
    bottom: -100px;
  }
  75% {
    opacity: 0;
    bottom: 40px;
  }
  100% {
    opacity: 1;
    bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .boxes-template-5__box-tight {
    height: 5vh;
    width: 100%;
  }
  .boxes-template-5__box-wide {
    height: 80vh;
    width: 100%;
  }
  .boxes-template-5__boxes-container {
    flex-flow: column;
  }
  .boxes-template-5__box-container {
    width: 100%;
  }
  .boxes-template-5__img {
    height: 80vh;
  }

  .boxes-template-5__box {
    border: 1px solid black;
    border-left: none;
    border-right: none;
  }
}
/* boxes_template_6 tooltip */
.boxes-template-6__content:before {
  content: "";
  display: block;
  background-color: #1d368f;
  width: 72px;
  height: 8px;
  margin: 30px auto;
}
.boxes-template-6__title {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  display: block;
  text-align: center;
  margin: 40px auto 100px auto;
}

.boxes-template-6__content:before {
  content: none;
}
.boxes-template-6__photo {
  height: 120px;
  max-width: 120px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.boxes-template-6__item {
  position: relative;
}
.clear-4-box {
  clear: both;
}
.clear-2-box {
  display: inline;
}
.boxes-template-6__tooltip-img {
  position: absolute;
  top: 0;
  right: 0;
}
.boxes-template-6__tooltip-text {
  width: 200px;
  padding: 10px;
  background-color: gray;
  color: white;
  font-size: 12px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 14px;
  text-align: center;
  position: absolute;
  bottom: 110%;
  right: -10px;
  z-index: 10;
}
.boxes-template-6__tooltip-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 90%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top-color: gray;
  border-bottom: 0;
  border-right: 0;
  margin-left: -15px;
  margin-bottom: -15px;
}
.boxes-template-6__tooltip {
  width: 100%;
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 480px) {
  .boxes-template-6__tooltip-text {
    width: 150px;
  }
}

.boxes_template_7__header{
  display: flex;
  justify-content: space-between;
}

/* gallery_5 */

.gallery-5__big-photo-img {
  width: 100%;
  height: 75vh;
  max-height: 519px;
  object-fit: cover;
  object-position: center;
}
.gallery-5__photo {
  padding-bottom: 30px;
}
.gallery-5--img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.gallery-5--img--xs-4 {
  height: 153px;
}
.gallery-5--img--xs-3 {
  height: 108px;
}
.gallery---5 .slick-next::before,
.gallery---5 .slick-prev::before {
  content: none;
}
@media only screen and (min-width: 991px) {
  .gallery-5__photos {
    width: 100%;
    height: 75vh;
    max-height: 517px;
  }
}
.gallery-5--img:hover {
  cursor: pointer;
}
.gallery-5__big-photo-full:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  vertical-align: middle;
  opacity: 0;
  width: 100%;
  transition: all 0.5s ease;
}
.gallery-active {
  position: relative;
}
.gallery-active:before,
.gallery-active:after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
}

.gallery-active::before {
  content: "";
  top: 0px;
  left: 0px;
  border-top: 4px solid black;
  border-left: 4px solid black;
  animation: show-border-top 0.4s forwards;
}
.gallery-active::after {
  content: "";
  bottom: 0px;
  right: 0px;
  border-bottom: 4px solid black;
  border-right: 4px solid black;
  animation: show-border-bottom 0.4s forwards;
}

@keyframes show-border-top {
  0% {
    opacity: 0;
    top: 0;
    left: 0;
  }
  100% {
    opacity: 1;
    top: -4px;
    left: -4px;
  }
}
@keyframes show-border-bottom {
  0% {
    opacity: 0;
    bottom: 0;
    right: 0;
  }
  100% {
    opacity: 1;
    bottom: -4px;
    right: -4px;
  }
}
.gallery-5__photos-mobile .gallery-5--img {
  margin-top: 25px;
  padding-top: 2px;
}

/* OGÓLNE dla headerów*/

.fixed-header {
  width: 100%;
  transition: ease 0.4s;
  position: fixed;
}
.header-template .rotated-arrow {
  transform: rotate(-270deg);
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
}
.header-template--subpage-arrow {
  transform: rotate(-90deg);
  height: 15px;
  margin-left: 8px;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
}
/* header-template-1 */

.fixed-header .header-template-1--logo__img {
  max-height: 100px;
}

.header-template-1 a {
  font-size: 15px;
  position: relative;
}
.header-template-1 .pagesTree-0 a:hover {
  text-decoration: none;
}
.header-template-1 .pagesTree-0 > li > a:hover::after {
  width: 100%;
}
.header-template-1 .pagesTree-0 > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  height: 30px;
  width: 0;
  border-bottom: 2px solid;
  margin-top: 0;
  transition: width 0.7s;
  -webkit-transition: width 0.7s;
}
.header-template-1--container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-template-1--nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-template-1--logo {
  margin-top: 15px;
  margin-bottom: 15px;
}
.header-template-1--logo__img {
  max-height: 200px;
}
.header-template-1--nav ul,
.header-template-1--burger ul {
  list-style: none;
  margin: 0;
}
.header-template-1--nav .pagesTree-0 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-flow: row wrap;
  align-items: center;
}
.header-template-1--nav ul li ul {
  position: absolute;
  top: 35px;
  left: 0;
  background: black;
  -webkit-box-shadow: 0px 10px 10px 2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 10px 2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 10px 2px rgba(0, 0, 0, 0.75);
  z-index: 2;
}
.header-template-1 ul li ul {
  padding-left: 0;
  text-align: center;
  display: none;
  z-index: 2;
}
.header-template-1 .has-subpage {
  position: relative;
}
.header-template-1--nav ul li {
  padding: 5px 12px;
}
.header-template-1 .subpage-has-subpage {
  position: relative;
}
.header-template-1 .header-template-1--nav .subpage-has-subpage ul {
  top: 0;
  left: 100%;
  position: absolute;
}
.header-template-1--social {
  display: flex;
  justify-content: flex-end;
}
.header-template-1--social__item {
  height: 45px;
  width: 45px;
  margin-left: 5px;
  margin-right: 5px;
}
.header-template-1--burger {
  position: fixed;
  right: -50%;
  overflow-x: hidden;
  top: 0;
  width: 50%;
  height: 100vh;
  border-left: 2px solid black;
  background-color: gray;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  animation: close-burger 0.5s backwards;
  z-index: 1;
}

.header-template-1--burger-button {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-template-1--nav,
  .header-template-1--social {
    display: none;
  }
  .header-template-1--burger-button {
    display: block;
    position: absolute;
    right: 25px;
    top: 25px;
    width: 36px;
    height: 24px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 2;
  }
  .header-template-1--burger-button span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header-template-1--burger-button span:nth-child(1) {
    top: 0px;
  }
  .header-template-1--burger-button span:nth-child(2) {
    top: 12px;
  }
  .header-template-1--burger-button span:nth-child(3) {
    top: 24px;
  }
  .header-template-1--burger-button.burger-on span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .header-template-1--burger-button.burger-on span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  .header-template-1--burger-button.burger-on span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .header-template-1--container {
    justify-content: center;
  }
  .header-template-1--burger-nav {
    margin-top: 50px;
  }
  .header-template-1--burger-nav .pagesTree-0 {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header-template-1--burger-nav .pagesTree-0 > li {
    margin: 15px 0;
    text-align: center;
  }
  .header-template-1--burger-nav .pagesTree-0 > li > a {
    font-size: 18px;
  }
  .header-template-1--burger-nav .pagesTree-0 ul {
    padding: 0;
  }
  .header-template-1--burger-nav .pagesTree-0 ul li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .header-template-1--burger-nav .pagesTree-0 ul li:first-of-type {
    margin-top: 10px;
  }
  .header-template-1--burger-nav .pagesTree-0 ul li:last-of-type {
    margin-bottom: 0;
  }
  .header-template-1--burger-nav .pagesTree-0 ul li a {
    font-size: 12px;
  }
  .header-template-1--burger-social {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
  }
  .header-template-1 .open {
    animation: open-burger 0.5s forwards;
    opacity: 0;
  }

  @keyframes open-burger {
    0% {
      opacity: 1;
      right: -50%;
    }
    100% {
      opacity: 1;
      right: 0;
    }
  }
  @keyframes close-burger {
    0% {
      opacity: 1;
      right: 0;
    }
    99% {
      opacity: 1;
      right: -49.5%;
    }
    100% {
      opacity: 0;
      right: -50%;
    }
  }
}

@media only screen and (min-width: 992px) {
  .header-template-1--container {
    max-width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-template-1--container {
    max-width: 1200px;
  }
}

/* header-template-2 */
.fixed-header .header-template-2--logo__img {
  max-height: 100px;
}
.header-template-2 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.header-template-2__menu-button {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
}
.header-template-2 ul {
  list-style: none;
}
.header-template-2 a:hover {
  text-decoration: none;
}
.header-template-2--container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-template-2--logo-container {
  width: 20%;
}
.header-template-2--logo__img {
  margin: 0 auto;
}
.header-template-2--burger-container,
.header-template-2--data-container {
  width: 40%;
}
.header-template-2--data-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-template-2--svg {
  height: 30px;
}
.header-template-2--link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-template-2--link:hover .header-template-2--svg {
  animation: shake-ht2 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@keyframes shake-ht2 {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
.header-template-2--burger {
  position: fixed;
  right: 0;
  overflow-x: hidden;
  top: -100%;
  width: 100vw;
  height: 100vh;
  border-left: 2px solid black;
  background-color: gray;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  animation: close-burger-ht2 0.5s backwards;
  z-index: 1;
}
.header-template-2--burger-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.header-template-2--burger-button {
  display: block;
  position: relative;
  width: 36px;
  height: 24px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}
.header-template-2--burger-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header-template-2--burger-button span:nth-child(1) {
  top: 0px;
}
.header-template-2--burger-button span:nth-child(2) {
  top: 12px;
}
.header-template-2--burger-button span:nth-child(3) {
  top: 24px;
}
.header-template-2--burger-button.burger-on span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-template-2--burger-button.burger-on span:nth-child(2) {
  opacity: 0;
  top: 60px;
}
.header-template-2--burger-button.burger-on span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.header-template-2--burger-nav .pagesTree-0 {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.header-template-2--burger-nav .pagesTree-0 > li {
  margin: 15px 0;
  text-align: center;
}
.header-template-2--burger-nav .pagesTree-0 > li > a {
  font-size: 18px;
}
.header-template-2--burger-nav .pagesTree-0 ul {
  padding: 0;
}
.header-template-2--burger-nav .pagesTree-0 ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}
.header-template-2--burger-nav .pagesTree-0 ul li:first-of-type {
  margin-top: 10px;
}
.header-template-2--burger-nav .pagesTree-0 ul li:last-of-type {
  margin-bottom: 0;
}
.header-template-2--burger-nav .pagesTree-0 ul li a {
  font-size: 12px;
}
.header-template-2--burger-social {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.header-template-2 .open {
  animation: open-burger-ht2 0.5s forwards;
  opacity: 0;
}
.header-template-2 .has-subpage ul {
  display: none;
}

@keyframes open-burger-ht2 {
  0% {
    opacity: 1;
    top: -100%;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes close-burger-ht2 {
  0% {
    opacity: 1;
    top: 0;
  }
  99% {
    opacity: 1;
    top: -99%;
  }
  100% {
    opacity: 0;
    top: -100%;
  }
}
@media only screen and (max-width: 1200px) {
  .header-template-2--data-container {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .header-template-2--phone-container,
  .header-template-2--mail-container {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .header-template-2--container {
    max-width: 750px;
  }
}
@media only screen and (min-width: 992px) {
  .header-template-2--container {
    max-width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-template-2--container {
    max-width: 1200px;
  }
}

/* header-template-3 */
.fixed-header .header-template-3--logo__img {
  max-height: 100px;
}
.header-template-3 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.header-template-3 a:hover {
  text-decoration: none;
}

.header-template-3__menu-button {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
}
.header-template-3 ul {
  list-style: none;
}
.header-template-3--container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-template-3--burger-container,
.header-template-3--logo-container,
.header-template-3--social-container {
  width: 33%;
}
.header-template-3--logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-template-3--social-container {
  display: flex;
  justify-content: flex-end;
}
.header-template-3--social__item {
  height: 45px;
  width: 45px;
  margin-left: 10px;
}

.header-template-3--burger {
  position: fixed;
  right: 0;
  overflow-x: hidden;
  top: -100%;
  width: 100vw;
  height: 100vh;
  border-left: 2px solid black;
  background-color: gray;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  animation: close-burger-ht2 0.5s backwards;
  z-index: 1;
}
.header-template-3--burger-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.header-template-3--burger-button {
  display: block;
  position: relative;
  width: 36px;
  height: 24px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}
.header-template-3--burger-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header-template-3--burger-button span:nth-child(1) {
  top: 0px;
}
.header-template-3--burger-button span:nth-child(2) {
  top: 12px;
}
.header-template-3--burger-button span:nth-child(3) {
  top: 24px;
}
.header-template-3--burger-button.burger-on span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-template-3--burger-button.burger-on span:nth-child(2) {
  opacity: 0;
  top: 60px;
}
.header-template-3--burger-button.burger-on span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.header-template-3--burger-nav .pagesTree-0 {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.header-template-3--burger-nav .pagesTree-0 > li {
  margin: 15px 0;
  text-align: center;
}
.header-template-3--burger-nav .pagesTree-0 > li > a {
  font-size: 18px;
}
.header-template-3--burger-nav .pagesTree-0 ul {
  padding: 0;
}
.header-template-3--burger-nav .pagesTree-0 ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}
.header-template-3--burger-nav .pagesTree-0 ul li:first-of-type {
  margin-top: 10px;
}
.header-template-3--burger-nav .pagesTree-0 ul li:last-of-type {
  margin-bottom: 0;
}
.header-template-3--burger-nav .pagesTree-0 ul li a {
  font-size: 12px;
}
.header-template-3--burger-social {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.header-template-3 .open {
  animation: open-burger-ht3 0.5s forwards;
  opacity: 0;
}
.header-template-3 .has-subpage ul {
  display: none;
}

@keyframes open-burger-ht3 {
  0% {
    opacity: 1;
    top: -100%;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes close-burger-ht3 {
  0% {
    opacity: 1;
    top: 0;
  }
  99% {
    opacity: 1;
    top: -99%;
  }
  100% {
    opacity: 0;
    top: -100%;
  }
}
@media only screen and (min-width: 768px) {
  .header-template-3--burger-social {
    display: none;
  }
  .header-template-3--container {
    max-width: 750px;
  }
}
@media only screen and (max-width: 767px) {
  .header-template-3--social {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .header-template-3--container {
    max-width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-template-3--container {
    max-width: 1200px;
  }
}

/* header-template-4 */
.fixed-header .header-template-4--logo__img {
  max-height: 100px;
}
.header-template-4 {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}
.header-template-4 ul {
  list-style: none;
}
.header-template-4 a {
  font-size: 15px;
  position: relative;
}
.header-template-4 a:hover {
  text-decoration: none;
}
.header-template-4 .has-subpage ul {
  display: none;
}
.header-template-4 .has-subpage {
  position: relative;
}
.header-template-4--nav-container .has-subpage ul {
  position: absolute;
  top: 55px;
  z-index: 2;
}
.header-template-4 .header-template-4--nav .subpage-has-subpage ul {
  position: absolute;
  top: 0;
  left: 100%;
}
.header-template-4--nav ul li ul {
  box-shadow: 0 18px 20px rgb(255, 255, 255, 0.3);
}

.header-template-4--container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.header-template-4--top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-template-4--burger-container,
.header-template-4--logo-container,
.header-template-4--social-container {
  width: 33%;
}
.header-template-4--logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-template-4--social-container {
  display: flex;
  justify-content: flex-end;
}
.header-template-4--social__item {
  height: 45px;
  width: 45px;
  margin-left: 10px;
}
.header-template-4--nav-container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  border-bottom: 2px solid gray;
  border-top: 2px solid gray;
}
.header-template-4--nav .pagesTree-0 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-flow: row wrap;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}
.header-template-4--nav ul li {
  padding: 5px 12px;
}
.header-template-4--nav > ul > li {
  padding: 18px 12px;
}
.header-template-4 .subpage-has-subpage {
  position: relative;
}

.header-template-4--burger-button {
  display: block;
  position: relative;
  width: 36px;
  height: 24px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}
.header-template-4--burger-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header-template-4--burger-button span:nth-child(1) {
  top: 0px;
}
.header-template-4--burger-button span:nth-child(2) {
  top: 12px;
}
.header-template-4--burger-button span:nth-child(3) {
  top: 24px;
}
.header-template-4--burger-button.burger-on span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-template-4--burger-button.burger-on span:nth-child(2) {
  opacity: 0;
  left: 60px;
}
.header-template-4--burger-button.burger-on span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header-template-4--burger-nav {
  margin-top: 50px;
}
.header-template-4--burger-nav .pagesTree-0 {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-template-4--burger-nav .pagesTree-0 > li {
  margin: 15px 0;
  text-align: center;
}
.header-template-4--burger-nav .pagesTree-0 > li > a {
  font-size: 18px;
}
.header-template-4--burger-nav .pagesTree-0 ul {
  padding: 0;
}
.header-template-4--burger-nav .pagesTree-0 ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}
.header-template-4--burger-nav .pagesTree-0 ul li:first-of-type {
  margin-top: 10px;
}
.header-template-4--burger-nav .pagesTree-0 ul li:last-of-type {
  margin-bottom: 0;
}
.header-template-4--burger-nav .pagesTree-0 ul li a {
  font-size: 12px;
}
.header-template-4 ul li ul {
  padding-left: 0;
  text-align: center;
  display: none;
  z-index: 2;
}
.header-template-4--burger {
  position: fixed;
  left: -50%;
  overflow-x: hidden;
  top: 0;
  width: 50vw;
  height: 100vh;
  border-left: 2px solid black;
  background-color: gray;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  animation: close-burger-ht4 0.5s backwards;
  z-index: 1;
}
.header-template-4 .open {
  animation: open-burger-ht4 0.5s forwards;
  opacity: 0;
}

@keyframes open-burger-ht4 {
  0% {
    opacity: 1;
    left: -50%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes close-burger-ht4 {
  0% {
    opacity: 1;
    left: 0;
  }
  99% {
    opacity: 1;
    left: -49%;
  }
  100% {
    opacity: 0;
    left: -50%;
  }
}

@media only screen and (min-width: 768px) {
  .header-template-4--burger-button {
    display: none;
  }
  .header-template-4--nav-container,
  .header-template-4--container {
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .header-template-4--nav-container,
  .header-template-4--social {
    display: none;
  }
  .header-template-4--burger-button {
    position: absolute;
    top: 25px;
    left: 25px;
  }
  .header-template-4--burger-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .header-template-3--social {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .header-template-4--nav-container,
  .header-template-4--container {
    width: 940px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-template-4--nav-container,
  .header-template-4--container {
    width: 1170px;
  }
}
/* footer-template-1 */
.footer-template-1 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer-template-1--container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer-template-1--icons-container,
.footer-template-1--nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-template-1--nav-container-no-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-template-1--mail,
.footer-template-1--phone,
.footer-template-1--time {
  display: flex;
  justify-content: center;
}
.footer-template-1__details {
  padding-left: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer-template-1__details-info {
  margin: 0;
}
.footer-template-1--icons-container {
  margin-bottom: 15px;
  flex-flow: wrap;
}
.footer-template-1--nav-container,
.footer-template-1--nav-container-no-icons {
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  min-height: 80px;
}
.footer-template-1--nav {
  display: flex;
  justify-content: flex-start;
}
.footer-template-1--nav .pagesTree-0 {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  flex-flow: wrap;
}
.footer-template-1--nav ul li {
  padding: 5px 12px;
}
.footer-template-1--nav ul li:first-of-type {
  padding: 5px 12px 5px 0;
}
.footer-template-1 ul li ul {
  padding-left: 0;
  text-align: center;
  display: none;
}
.footer-template-1--social {
  display: flex;
  justify-content: flex-end;
}
.footer-template-1--social a {
  width: 45px;
  height: 45px;
  margin-left: 5px;
}
.footer-template-1--copyrights,
.footer-template-1--realization {
  text-align: center;
}
.footer-template-1--social__item {
  height: 45px;
  width: 45px;
}
@media only screen and (max-width: 991px) {
  .footer-template-1--nav .pagesTree-0 {
    justify-content: center;
  }
  .footer-template-1--mail,
  .footer-template-1--phone,
  .footer-template-1--time {
    flex-direction: column;
    align-items: center;
  }
  .footer-template-1__details {
    text-align: center;
  }
  .footer-template-1--svg {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-template-1--icons-container,
  .footer-template-1--nav-container {
    justify-content: center;
    flex-direction: column;
  }
  .footer-template-1--mail,
  .footer-template-1--phone {
    margin-bottom: 25px;
  }
  .footer-template-1--nav-container {
    margin-bottom: 25px;
  }
  .footer-template-1--social {
    margin-bottom: 10px;
  }
}
/* footer-template-2 */

.footer-template-2 {
  padding-top: 25px;
}
.footer-template-2--container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}
.footer-template-2--nav .pagesTree-0 {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  flex-flow: wrap;
}
.footer-template-2 ul li ul {
  padding-left: 0;
  text-align: center;
  display: none;
}
.footer-template-2--nav ul li {
  padding: 5px 12px;
}
.footer-template-2--nav ul li:last-of-type {
  padding: 5px 0 5px 12px;
}
.footer-template-2 .pagesTree-0 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1200px) {
  .footer-template-2--container {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-template-2--container {
    flex-direction: column;
    justify-content: center;
  }
  .footer-template-2--nav {
    margin-top: 25px;
  }
  .footer-template-2--nav .pagesTree-0 {
    justify-content: center;
  }
}
.footer-template-2--bottom {
  margin-top: 15px;
  padding-bottom: 25px;
}
.footer-template-2--copyrights,
.footer-template-2--realization,
.footer-template-2--logo-olicom,
.footer-template-2--social {
  text-align: center;
}
.footer-template-2--social {
  margin-top: 15px;
}
.footer-template-2--social a,
.header-template-2--social__item {
  width: 45px;
  height: 45px;
  margin-left: 2px;
  margin-right: 2px;
}
.footer-template-2--logo__img {
  max-height: 200px;
}
.footer-template-2--social__item {
  height: 45px;
  width: 45px;
}

/* footer_template_3 */
.footer-template-3 {
  padding-top: 30px;
}
.footer-template-3--container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer-template-3--logo__img {
  max-height: 200px;
}
.footer-template-3--adress-logo svg,
.footer-template-3--contact-logo svg {
  height: 75px;
  width: 75px;
}
.footer-template-3--icons-container,
.footer-template-3--nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-template-3--nav-container-no-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-template-3--adress-container,
.footer-template-3--contact-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer-template-3--contact,
.footer-template-3--adress {
  margin-left: 10px;
}
.footer-template-3--adress p {
  margin: 0;
}
.footer-template-3--nav .pagesTree-0 {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  flex-flow: wrap;
}
.footer-template-3 ul li ul {
  padding-left: 0;
  text-align: center;
  display: none;
}
.footer-template-3--nav ul li {
  padding: 5px 12px;
}
.footer-template-3--nav ul li:first-of-type {
  padding: 5px 12px 5px 0;
}
.footer-template-3--nav-container {
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  min-height: 80px;
}
.footer-template-3--nav-container-no-icons {
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  min-height: 80px;
}
.footer-template-3--copyrights,
.footer-template-3--realization {
  text-align: center;
}
.footer-template-3--bottom {
  margin-top: 10px;
  padding-bottom: 25px;
}
.footer-template-3--social__item {
  height: 45px;
  width: 45px;
}
.footer-template-3 .pagesTree-0 a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .footer-template-3--nav-container {
    flex-direction: column;
    justify-content: center;
  }

  .footer-template-3--nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer-template-3--social {
    padding-bottom: 10px;
  }
  .footer-template-3--nav .pagesTree-0 {
    justify-content: center;
  }
  .footer-template-3--icons-container {
    flex-direction: column;
    flex-flow: wrap;
  }
  .footer-template-3--logo-container {
    width: 100%;
  }
  .footer-template-3--logo__img {
    margin: 0 auto;
  }
  .footer-template-3--adress-container,
  .footer-template-3--contact-container {
    width: 50%;
    justify-content: center;
    flex-direction: column;
  }
  .footer-template-3--logo-container,
  .footer-template-3--adress-container,
  .footer-template-3--contact-container {
    margin-bottom: 15px;
  }
  @media only screen and (max-width: 600px) {
    .footer-template-3--adress-container,
    .footer-template-3--contact-container {
      width: 100%;
    }
  }
}

/* footer_template_4 */
.footer-template-4--main {
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer-template-4--container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-template-4--container ul {
  list-style: none;
  padding-left: 0;
}
.footer-template-4 ul li ul {
  padding-left: 0;
  text-align: center;
  display: none;
}
.footer-template-4--container .page-1,
.footer-template-4--col-title {
  font-size: 24px;
  font-weight: bold;
}
.footer-template-4--logo__img {
  max-height: 200px;
}
.footer-template-4--social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer-template-4--copyrights,
.footer-template-4--realization {
  text-align: center;
}
.footer-template-4--bottom {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 2px solid gray;
}
.footer-template-4--social__item {
  height: 45px;
  width: 45px;
}
@media only screen and (max-width: 991px) {
  .footer-template-4--container {
    flex-direction: column;
    flex-flow: wrap;
  }
  .footer-template-4--logo-container {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer-template-4--logo-container img {
    margin: 0 auto;
  }
  .footer-template-4--nav-container,
  .footer-template-4-col,
  .footer-template-4--social {
    width: 33%;
    margin-bottom: 15px;
  }
  .footer-template-4--social {
    flex-direction: row;
    justify-content: space-around;
  }
  .footer-template-4--container .pagesTree-0,
  .footer-template-4-col ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer-template-4--col-title {
    text-align: center;
  }
}
@media only screen and (max-width: 550px) {
  .footer-template-4--nav-container,
  .footer-template-4-col,
  .footer-template-4--social {
    width: 50%;
  }
}

/* footer_template_5 */
.footer-template-5--logo__img {
  max-height: 200px;
}
.footer-template-5--main {
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer-template-5--social__item {
  height: 45px;
  width: 45px;
}
.footer-template-5 ul li ul {
  padding-left: 0;
  text-align: center;
  display: none;
}
.footer-template-5--container {
  max-width: 1170px;
  /*    padding-left: 15px;
        padding-right: 15px;*/
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  padding-bottom: 15px;
  padding-top: 15px;
}
.footer-template-5--nav-left,
.footer-template-5--nav-right {
  width: 40%;
}
.footer-template-5--nav-left .pagesTree-0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  padding-left: 0;
}
.footer-template-5--nav-right .pagesTree-0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
}
.footer-template-5 .pagesTree-0 li {
  padding: 5px 12px;
  text-align: center;
}
.footer-template-5 .pagesTree-0 li:first-of-type {
  padding: 5px 12px 5px 0;
}
.footer-template-5 .pagesTree-0 li:last-of-type {
  padding: 5px 0 5px 12px;
}
.footer-template-5 .pagesTree-0 a:hover {
  text-decoration: none;
}
.footer-template-5--copyrights,
.footer-template-5--realization,
.footer-template-5--social {
  text-align: center;
}
.footer-template-5--social {
  padding-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .footer-template-5--container {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-template-5--nav-left .pagesTree-0,
  .footer-template-5--nav-right .pagesTree-0 {
    flex-direction: column;
  }
  .footer-template-5 .pagesTree-0 li:first-of-type,
  .footer-template-5 .pagesTree-0 li:last-of-type {
    padding: 5px 12px;
  }
}

/* COOKIES BAR */

#cookie-policy-banner #cclose {
  font-weight: 600;
  display: inline-block;
  padding: 6px 15px;
  background: black;
  color: white;
  float: right;
  cursor: pointer;
  margin-bottom: 15px;
}
#cookie-policy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #d0d0d0;
  z-index: 99999999;
}

/* MENU PO LEWEJ STRONIE */

.left-menu-box > ul {
  list-style: none;
  padding-left: 0;
}
.left-menu-box > ul > li {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  border-bottom: 1px solid #cbcbcb;
  padding-top: 15px;
  padding-bottom: 15px;
}
.left-menu-box > ul > li > a{
    padding-top: 15px;
    padding-bottom: 15px;
}
.left-menu-box a:hover {
text-decoration: none;
}
.left-menu-box > ul > li > ul {
  list-style: none;
  font-size: 14px;
  font-weight: 400;
}
.left-menu-box > ul > li > ul > li {
    padding-top: 15px;
    padding-bottom: 5px;
}

