@charset "UTF-8";
/*
  Theme Name: Panek Klinika Piękna
  Theme URI: https://creativegen.pl
  Author: Damian Sochacki - Creativegen.pl
  Author URI: https://creativegen.pl
  Description: Szablon dedykowany
  Version: 1.0
  Text Domain: klinikapieknapanek
*/
#wrapper {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400;
  font-style: normal;
  color: #000000;
  font-size: 1.2rem;
  background-color: #ffffff;
}

a {
  transition: all ease-in-out 0.3s;
  text-decoration: none;
}

i {
  transition: all ease-in-out 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "montserrat-alternates", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 700;
  font-style: normal;
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2022 Animate.css
 */
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transform: translateZ(0) scaleY(0.95);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-name: headShake;
  animation-timing-function: ease-in-out;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  animation-name: swing;
  transform-origin: top center;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-name: heartBeat;
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    opacity: 0.7;
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    opacity: 0.7;
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    opacity: 0.7;
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    opacity: 0.7;
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateY(700px) scale(0.7);
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateX(-2000px) scale(0.7);
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateX(2000px) scale(0.7);
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateY(-700px) scale(0.7);
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
  }
  to {
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
.animate__animated.animate__flip {
  animation-name: flip;
  backface-visibility: visible;
}
@keyframes flipInX {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  animation-name: flipInX;
  backface-visibility: visible !important;
}
@keyframes flipInY {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  animation-name: flipInY;
  backface-visibility: visible !important;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutY;
  backface-visibility: visible !important;
}
@keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    transform: skewX(20deg);
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    transform: skewX(-20deg);
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(200deg);
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(45deg);
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(-45deg);
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(-45deg);
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(90deg);
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
  }
  40%, 80% {
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 700px, 0);
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
  to {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
  to {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

header {
  color: #fff;
  padding: 30px 0 30px 0;
  background-color: #000000;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

@media (max-width: 1199px) {
  .cgn-nav .toggle {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    background-color: rgba(0, 0, 0, 0.9);
    transition: right 0.3s;
    height: 100%;
    z-index: 998;
  }
  .cgn-nav .toggle li {
    width: 100%;
    line-height: 2rem;
  }
  .cgn-nav .toggle span.call {
    display: none;
  }
  .cgn-nav .icon {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .cgn-nav .icon {
    display: none;
  }
}
.cgn-nav .icon .close,
.cgn-nav .icon .hamburger {
  cursor: pointer;
}
.cgn-nav .close {
  z-index: 999;
  color: #fff;
}
.cgn-nav .submenu {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style-type: none;
  padding: 10px 20px 10px 0;
  margin: 0;
  border-radius: 5px;
  z-index: 999;
}
.cgn-nav .submenu li {
  padding: 10px;
  float: none !important;
}
.cgn-nav .submenu li a {
  color: #000 !important;
  text-decoration: none;
}
.cgn-nav li.dropdown-toggle::after {
  display: none;
}
.cgn-nav ul.nav {
  list-style: none;
}
.cgn-nav ul.nav i {
  color: #fdc908;
  font-size: 1.2rem;
}
.cgn-nav ul.nav li {
  float: left;
  padding-left: 30px;
  font-size: 0.9rem;
}
.cgn-nav ul.nav li a {
  color: #ffffff;
}
.cgn-nav ul.nav li a:hover {
  color: #fdc908;
}
.cgn-nav .sell {
  padding-top: 5px;
}
.cgn-nav .nav-1 {
  margin-bottom: 30px;
}

.call {
  position: relative;
  padding-right: 40px;
}
.call i {
  position: absolute;
  font-size: 1.6rem !important;
  top: -10px;
  right: 5px;
}

#hero {
  color: #ffffff;
  background-color: #000000;
}
#hero h1 {
  font-weight: 600;
  font-size: 4rem;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 50px;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #hero h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  #hero h1 {
    font-size: 2.5rem;
    padding-top: 300px;
  }
}
#hero h1 span {
  color: #fdc908;
  font-family: "montserrat-alternates", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
#hero p {
  margin-bottom: 50px;
}
#hero .hero-section {
  background-image: url("assets/img/hero-background.jpg");
  background-size: cover;
  background-position: center;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #hero .hero-section {
    background-position: 40% center;
  }
}
@media (max-width: 767.98px) {
  #hero .hero-section {
    background-position: 30% center;
  }
  #hero .hero-section::before {
    z-index: 1;
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8590029762) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
}
#hero .text-section {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  z-index: 2;
}
@media (max-width: 575px) {
  #hero .text-section {
    text-align: center;
  }
}
#hero .phone {
  margin-right: 20px;
}
#hero .btn {
  border: 2px solid #fdc908;
  border-radius: 150px;
  padding: 20px 40px;
  color: #fdc908;
  font-weight: 700;
  font-size: 1.2rem;
  background-color: #000000;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}
@media (max-width: 575px) {
  #hero .btn {
    font-size: 1rem;
    width: 100% !important;
    padding: 10px 10px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #hero .btn {
    font-size: 1rem;
    width: 100% !important;
    padding: 10px 10px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
}
#hero .btn:hover {
  border: 2px solid #ffffff;
  color: #ffffff;
}

#section-1 {
  position: relative;
  padding: 100px 0 100px 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(350deg, rgb(255, 255, 255) 24%, rgb(253, 201, 8) 24%);
  -webkit-border-top-left-radius: 50px;
  -webkit-border-top-right-radius: 50px;
  -moz-border-radius-topleft: 50px;
  -moz-border-radius-topright: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-1 {
    border-radius: 0;
  }
}
#section-1::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  height: 100px;
  background-color: #000000;
  z-index: -1;
}
@media (max-width: 767.98px) {
  #section-1 {
    border-radius: 0;
  }
}
#section-1 p {
  margin-top: 50px;
}
#section-1 h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 700;
  font-size: 2.5rem;
}
#section-1 h2 span {
  color: #ffffff;
}
@media (max-width: 767.98px) {
  #section-1 h2 {
    font-size: 2rem;
  }
}
#section-1 .dodaj-button {
  padding: 50px;
  background-color: #000000;
  border-radius: 25px;
  margin-top: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  #section-1 .dodaj-button {
    border-radius: 0;
  }
}
#section-1 .dodaj-button .btn-dodaj {
  background-color: #ffffff;
  padding: 10px 25px;
  font-size: 1rem;
  color: #000000;
  border-radius: 150px;
  width: 100%;
  float: left;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 767.98px) {
  #section-1 .dodaj-button .btn-dodaj {
    margin-top: 20px;
  }
}
#section-1 .dodaj-button .btn-dodaj:hover {
  background-color: #fdc908;
}

#section-1 .info-box {
  padding: 50px;
  background-color: #000000;
  border-radius: 30px;
  margin-top: 100px;
  color: #ffffff;
  position: relative;
}
@media (max-width: 767.98px) {
  #section-1 .info-box {
    border-radius: 0;
    margin-top: 0;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-1 .info-box {
    text-align: center;
  }
}
#section-1 .info-box h2 {
  position: absolute;
  bottom: 0;
  transform: rotate(180deg);
  transform-origin: left bottom;
  white-space: nowrap;
  writing-mode: vertical-lr;
  font-size: 3rem;
  bottom: 320px;
  left: 110px;
}
#section-1 .info-box h3.naglowek-2 {
  font-size: 2rem;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
  display: none;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-1 .info-box h2.naglowek-1 {
    display: none;
  }
  #section-1 .info-box h3.naglowek-2 {
    display: block;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  #section-1 .info-box h2.naglowek-1 {
    display: none;
  }
  #section-1 .info-box h3.naglowek-2 {
    display: block;
    text-align: center;
  }
}
#section-1 .info-box .card {
  background-color: #000000;
  color: #ffffff;
  border: 5px solid #fdc908;
  border-radius: 25px;
  padding: 25px;
  font-size: 1rem;
  height: 100%;
}
#section-1 .info-box .card img {
  height: 60px;
  width: auto;
}

#section-2 {
  position: relative;
  text-align: right;
  font-size: 1rem;
  background-color: #ffffff;
}
#section-2 h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  #section-2 h2 {
    font-size: 2rem;
  }
}
#section-2 img {
  height: 400px;
  width: auto;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-2 img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  #section-2 img {
    height: 100px;
    width: auto;
    position: absolute;
    top: -120px;
    left: 0;
  }
}

#section-3 {
  padding: 200px 0 0 0;
  text-align: left;
  font-size: 1rem;
  background-color: #fdc908;
  position: relative;
}
@media (max-width: 767.98px) {
  #section-3 {
    padding: 150px 0 0 0;
  }
}
#section-3 h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  #section-3 h2 {
    font-size: 2rem;
  }
}
#section-3 img {
  height: 400px;
  width: auto;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-3 img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  #section-3 img {
    height: 100px;
    width: auto;
    position: absolute;
    top: -120px;
    right: 0;
  }
}
#section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 200px;
  background: rgb(253, 201, 8);
  background: linear-gradient(355deg, rgb(253, 201, 8) 52%, rgb(255, 255, 255) 52%);
}

#section-4 {
  padding: 200px 0 0 0;
  position: relative;
  text-align: right;
  font-size: 1rem;
  background-color: #ffffff;
}
#section-4 h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  #section-4 h2 {
    font-size: 2rem;
  }
}
#section-4 img {
  height: 400px;
  width: auto;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-4 img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  #section-4 img {
    height: 100px;
    width: auto;
    position: absolute;
    top: -120px;
    left: 0;
  }
}
#section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 200px;
  background: rgb(255, 255, 255);
  background: linear-gradient(355deg, rgb(255, 255, 255) 52%, rgb(253, 201, 8) 52%);
}

#section-5 {
  padding: 200px 0 0 0;
  text-align: left;
  font-size: 1rem;
  background-color: #fdc908;
  position: relative;
}
@media (max-width: 767.98px) {
  #section-5 {
    padding: 160px 0 0 0;
  }
}
#section-5 h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  #section-5 h2 {
    font-size: 2rem;
  }
}
#section-5 img {
  height: 400px;
  width: auto;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-5 img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  #section-5 img {
    height: 100px;
    width: auto;
    position: absolute;
    top: -120px;
    right: 0;
  }
}
#section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 200px;
  background: rgb(253, 201, 8);
  background: linear-gradient(355deg, rgb(253, 201, 8) 52%, rgb(255, 255, 255) 52%);
}

#section-6 {
  padding: 200px 0 0 0;
  text-align: right;
  font-size: 1rem;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 767.98px) {
  #section-6 {
    padding: 160px 0 0 0;
  }
}
#section-6 h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  #section-6 h2 {
    font-size: 2rem;
  }
}
#section-6 img {
  height: 400px;
  width: auto;
}
@media (min-width: 768px) and (max-width: 1299.98px) {
  #section-6 img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  #section-6 img {
    height: 100px;
    width: auto;
    position: absolute;
    top: -100px;
    left: 0;
  }
}
#section-6::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 200px;
  background: rgb(255, 255, 255);
  background: linear-gradient(355deg, rgb(255, 255, 255) 52%, rgb(253, 201, 8) 52%);
}

#karuzela {
  margin-top: 100px;
  background: #fff url("assets/img/karuzela-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 100px 0 100px 0;
  position: relative;
}
@media (max-width: 767.98px) {
  #karuzela {
    padding: 100px 0 200px 0;
  }
}
#karuzela::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 200px;
  background: rgb(255, 255, 255);
  background: linear-gradient(355deg, rgb(255, 255, 255) 52%, rgb(253, 201, 8) 52%);
}
#karuzela::before {
  position: absolute;
  top: -100px;
  left: 0;
  content: "";
  width: 100%;
  height: 100px;
  background: rgb(253, 201, 8);
  background: linear-gradient(9deg, rgb(253, 201, 8) 18%, rgb(255, 255, 255) 18%);
}
#karuzela .owl-dots {
  margin-top: -20px;
  padding-bottom: 20px;
}
#karuzela .owl-dots span {
  background-color: #000000;
}
#karuzela .owl-dots .active span {
  background-color: #ffffff;
}
#karuzela .header h2 {
  margin-bottom: 50px;
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
#karuzela .caption {
  padding-left: 40px;
}
#karuzela .caption h3 {
  font-size: 10rem;
  color: transparent;
  -webkit-text-stroke: 2px black;
  font-weight: bold;
}
#karuzela .caption h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
}
#karuzela img {
  border-radius: 25px;
  width: 100%;
  height: auto;
}
#karuzela .owl-carousel .item {
  position: relative;
  padding: 30px;
}
#karuzela .owl-carousel .item img {
  width: 100%;
  height: auto;
}

#accordion {
  background-color: #ffffff;
  -webkit-border-bottom-right-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  -moz-border-radius-bottomright: 50px;
  -moz-border-radius-bottomleft: 50px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
}
@media (max-width: 575px) {
  #accordion {
    -webkit-border-bottom-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
#accordion::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  height: 100px;
  background-color: #000000;
  z-index: -1;
}
#accordion h2,
#accordion h3 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin-bottom: 30px;
}
#accordion #accordion .accordion-body {
  background: transparent !important;
}
#accordion #accordion .accordion-flush .accordion-item {
  background: transparent !important;
}
#accordion .accordion-flush .accordion-item .accordion-button,
#accordion .accordion-flush .accordion-item .accordion-button.collapsed {
  background-color: #000 !important;
  border-radius: 150px;
  padding: 20px 30px !important;
  color: #fff !important;
  font-weight: bold !important;
  font-size: 1.2rem !important;
}
#accordion .accordion-flush .accordion-item {
  border-bottom: 0 !important;
}
#accordion #accordion h2,
#accordion #accordion h3 {
  margin-bottom: 30px;
}
#accordion .accordion-body {
  margin-bottom: 20px;
}
#accordion .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#contact {
  padding: 100px 0 100px 0;
  color: #ffffff;
  background-color: #000000;
}
#contact h2 {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
@media (max-width: 767.98px) {
  #contact h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#contact h2 span {
  color: #fdc908;
}
#contact .formularz {
  margin-top: 100px;
}
@media (max-width: 767.98px) {
  #contact .formularz {
    margin-top: 30px;
  }
}
#contact .formularz .zgody {
  font-size: 1rem;
}
#contact .formularz ::-moz-placeholder {
  color: #fff;
}
#contact .formularz ::placeholder {
  color: #fff;
}
#contact .formularz ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
#contact .formularz ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
#contact .formularz :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
#contact .formularz input.form-control {
  border-radius: 25px;
  border: 2px solid #fdc908;
  background-color: #000000;
  padding: 20px 40px;
  color: #fff !important;
  margin-bottom: 20px;
}
#contact .formularz textarea {
  border-radius: 25px;
  border: 2px solid #fdc908;
  background-color: #000000;
  padding: 20px 40px;
  color: #fff !important;
  margin-bottom: 20px;
}
#contact .cgn-submit {
  background-color: #fdc908;
  border: 0;
  font-weight: 700;
  font-family: "montserrat-alternates", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  color: #000000 !important;
  font-size: 1.2rem;
  border-radius: 150px;
  padding: 15px 40px;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 767.98px) {
  #contact .cgn-submit {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
    width: 100% !important;
  }
  #contact .cgn-submit:hover {
    background-color: #ffffff;
  }
}
#contact .administrator {
  margin-top: 30px;
  font-size: 1rem;
}

.animate {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

footer {
  background: #231f20;
  color: #fff;
  padding: 0 0 40px 0;
  background-image: url(https://ratajczaknieruchomosci.pl/assets/footer-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
footer a {
  color: #c4c4c4 !important;
}
footer a:hover {
  color: #fdc908 !important;
}
footer .container {
  z-index: 2;
  position: relative;
}
footer::after {
  content: "";
  background-image: url(https://ratajczaknieruchomosci.pl/assets/r.png);
  background-size: cover;
  background-position: center;
  width: 200px;
  height: 282px;
  position: absolute;
  left: -30px;
  bottom: -96px;
  z-index: 1;
}
@media (max-width: 575px) {
  footer::after {
    display: none !important;
  }
}
footer .footer-top-buttons ul li a {
  padding: 7px 15px;
  color: #fff;
  border: 1px solid #6b6b6b;
  border-radius: 0px 0px 15px 15px;
  display: block;
  font-weight: 600;
}
footer .proprtycityfooter {
  font-family: "montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  text-align: center;
  margin: 40px 0 40px 0;
  font-size: 1rem;
}

footer .footer-box {
  /* width: 90%; */
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 30px; /* border: 1px solid #dddddd40; */
  padding-left: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
}

footer .footer-box-contact {
  /* padding-left: 40px; */
}

footer .footer-address {
  position: relative; /* padding-left: 40px; */
}

footer .footer-address:before {
  content: "";
  color: #ffc829;
  background-image: url("https://ratajczaknieruchomosci.pl/assets/svg/pin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -28px;
  top: 8px;
}

footer .footer-hours {
  position: relative; /* padding-left: 40px; */
}

footer .footer-hours:before {
  content: "";
  color: #ffc829;
  background-image: url("https://ratajczaknieruchomosci.pl/assets/svg/clock.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -28px;
  top: 6px;
}

footer .footer-phone {
  position: relative;
  padding-left: 0px;
}

footer .footer-phone:before {
  content: "";
  color: #ffc829;
  background-image: url("https://ratajczaknieruchomosci.pl/assets/svg/phone2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 17px;
  height: 17px;
  position: absolute;
  left: -26px;
  top: -1px;
}

footer .footer-mail {
  position: relative;
  padding-left: 0px;
}

footer .footer-mail:before {
  content: "";
  color: #ffc829;
  background-image: url("https://ratajczaknieruchomosci.pl/assets/svg/mail2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 19px;
  height: 19px;
  position: absolute;
  left: -27px;
  top: -1px;
}

footer h4 {
  text-transform: uppercase;
  font-size: 1rem;
}

footer .footer-title-separator {
  background-color: #fff;
}

footer .footer-separator {
  height: 1px;
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  width: 100%;
}

footer .footer-title-separator {
  height: 1px;
  position: relative;
  margin-top: 16px;
  margin-bottom: 56px;
  width: 100%;
}

footer .footer-title-separator::after {
  content: "";
  top: -1px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  position: absolute;
  z-index: 1;
  background: #ffc829;
}

footer p {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3rem;
}

footer .footer-menu {
  margin-top: 20px;
}

footer .footer-menu ul {
  list-style: none;
  text-align: center;
  margin: 0px;
  padding: 0px;
}

footer .footer-menu ul li {
  display: inline-block;
  padding: 0px;
  margin: 0px;
  position: relative;
}

footer .footer-menu ul li:first-child:before {
  display: none;
}

footer .footer-menu ul li:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 20px;
  background: #ffc82a;
  /* top:13px; */
  /* left:-20px; */
  left: -5px;
  top: 6px;
  border-radius: 5px;
}

footer .footer-menu ul li a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3rem;
  padding: 9px;
}

footer .footer-top-buttons {
  /* margin-bottom: 20px; */
}

footer .footer-top-buttons ul {
  text-align: center;
  margin-bottom: 0px;
  padding: 0px;
}

footer .footer-top-buttons ul li {
  display: inline-block;
}

footer .footer-top-buttons ul li a {
  padding: 7px 15px;
  color: #fff;
  border: 1px solid #6b6b6b;
  border-radius: 0px 0px 15px 15px;
  display: block;
  font-weight: 600;
}

footer .footer-top-buttons ul li a span {
  color: #ffc82a;
}

footer .footer-top-buttons ul li a:hover {
  border-color: #ffc82a;
  background: #ffc82a;
}

footer .footer-top-buttons ul li a:hover span {
  color: #000;
}

footer .footer-brand {
  display: block;
  /* float: left; */
  margin-left: -10px;
  /* padding: 8px; */
  text-align: center;
  margin: 50px 0px;
}

footer .logotype-footer {
  width: 247px;
  padding: 19px 23px;
}

footer .ui-widget {
  font-family: inherit;
}

footer .footer-tabs {
  margin-bottom: 20px;
  margin-top: 20px;
}

footer .footer-tabs.ui-widget-content {
  border: none;
  background: transparent;
}

footer .ui-tabs .ui-tabs-nav {
  background: transparent;
  border: 0px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

footer .ui-tabs .ui-tabs-panel {
  padding: 10px;
  margin-left: 50px;
}

footer .ui-tabs .ui-tabs-nav li {
  /* padding:5px 12px; */
  color: #fff;
  background: none;
  border: 1px solid transparent;
  border-radius: 8px; /* width: 50%; */
}

footer .ui-tabs .ui-tabs-nav li.ui-tabs-active {
  color: #c4c4c4;
  border-color: rgba(255, 255, 255, 0.4705882353);
}

footer .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  display: block;
  text-align: center;
  float: none;
  padding: 0.7rem 1.4rem;
}

footer .ui-tabs .ui-tabs-nav .ui-tabs-anchor span {
  font-weight: 600;
}

footer .ui-tabs .ui-tabs-nav .ui-tabs-anchor:hover {
  color: #ffc82a;
}

footer .ui-tabs .ui-widget-content a {
  color: #fff;
  word-break: break-all;
}

footer .ui-tabs .ui-widget-content a span {
  /* color:#ffc82a; */
}

footer .ui-tabs .ui-widget-content a:hover {
  color: #ffc82a;
}

footer .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
  position: relative;
}

footer .ui-tabs .ui-tabs-nav li.ui-tabs-active:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  display: block;
  border-top: 10px solid #fdc906;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
}

footer .footer-socials {
  text-align: center;
  margin-bottom: 40px;
}

footer .footer-socials a {
  transition: 0.4s;
  padding: 8px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4588235294);
}

footer .footer-socials a:hover {
  color: #ffc82a;
}

footer .footer-socials a:before {
  transition: 0.4s;
}

footer .footer-socials a:hover:before {
  transform: scale(1.2);
}

footer .footer-socials a span {
  display: none;
}

footer .footer-copyright {
  text-align: center;
  margin-top: 10px;
}

footer .footer-copyright p {
  color: #666;
}

.footer-tabs ul li a.active {
  background-color: #f0f0f0;
  color: #000;
}

#tabs-2 {
  display: none;
}

.footer-tabs .col-md-4 {
  display: flex;
  justify-content: center;
}

.footer-tabs ul {
  padding: 40px 0 20px 0;
  display: flex;
  justify-content: center;
  list-style: none;
}
.footer-tabs ul span {
  font-weight: bold;
  font-size: 1rem;
}
.footer-tabs ul a {
  color: #c4c4c4;
  border-color: rgba(255, 255, 255, 0.4705882353);
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 5px;
  font-size: 1rem;
}
.footer-tabs ul a.active {
  color: #c4c4c4 !important;
  border: 1px solid #c4c4c4 !important;
  background: transparent !important;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 5px;
  position: relative;
}
.footer-tabs ul a.active::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fdc908;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.footer-test{
    display:none;
}/*# sourceMappingURL=style.css.map */