@charset "UTF-8";
.bounce-top {
  display: block;
  animation: bounce-top 2.1s infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-11-19 13:30:52
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@keyframes bounce-top {
  0% {
    transform: translate(-50%, -45px);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -24px);
    animation-timing-function: ease-in;
  }
  65% {
    transform: translate(-50%, -12px);
    animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    transform: translate(-50%, 0px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translate(-50%, 0px);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 74px;
}

.large-s {
  font-size: 2em;
  font-weight: bold;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

:root {
  --spring-color: white;
  --winter-color: white;
  --autumn-color: white;
  --summer-color: white;
  --winter2-color: white;
  --winter3-color: white;
  --winter5-color: white;
  --winter4-color: white;
  --winter6-color: white;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
}

.btn.btn-dark {
  background-color: #0565a1;
  color: white;
}

.btn.btn-dark:hover {
  background-color: #039dff;
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
}

.wrapper {
  display: flex;
  padding: 0.5em;
  max-width: 1000px; /* Zmiana na max-width, aby uniknąć problemów na mniejszych ekranach */
  width: 100%;
  background-color: #f3efef;
  border-radius: 10px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  margin: 0 auto; /* Ustawienie automatycznych marginesów po bokach */
}

.card {
  position: relative;
  flex-grow: 0.4;
  height: 400px;
  margin: 2px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  transition: flex-grow 0.8s;
  overflow: visible;
  cursor: pointer;
}

.card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.5s;
}

.spring {
  background-image: url("../img/3.JPG");
}

.summer {
  background-image: url("../img/4.JPG");
}

.autumn {
  background-image: url("../img/5.JPG");
}

.winter {
  background-image: url("../img/6.JPG");
}

.winter3 {
  background-image: url("../img/7.JPG");
}

.winter2 {
  background-image: url("../img/8.JPG.jpg");
}

.winter4 {
  background-image: url("../img/66.jpg");
}

.winter5 {
  background-image: url("../img/2.JPG");
}

.winter5 {
  background-image: url("../img/2.JPG");
}

.spring::before,
.summer::before,
.autumn::before,
.winter::before,
.winter2::before,
.winter3::before,
.winter4::before,
.winter5::before,
.winter6::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  content: "";
}

.text {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%) rotate(0);
  width: 80%;
  padding: 2em;
  color: #fff;
  border-radius: 6px;
  z-index: 5;
}

.text h3 {
  text-transform: uppercase;
  font-size: 20px;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.text p {
  display: none;
  opacity: 0;
  font-size: 12px;
}

.active {
  flex-grow: 10;
}

.active .text {
  animation: show-bg 1s 0.6 forwards;
}

.active .text h3 {
  display: none;
}

.active .text p {
  display: block;
  animation: show-text 3s 0.9s forwards;
}

@keyframes show-bg {
  to {
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateX(-300px);
  }
}
@keyframes show-text {
  to {
    opacity: 1;
  }
}
.shadow-bg {
  background-color: rgba(0, 0, 0, 0.8);
}

.section-title {
  text-align: center;
  text-transform: uppercase;
}

.underline {
  margin: 0 auto 40px;
  width: 60px;
  height: 4px;
  background-color: #039dff;
}

nav {
  text-transform: uppercase;
  transition: background-color 0.6s;
  z-index: 5;
}
nav .navbar-toggler {
  padding: 10px 15px;
}
nav .navbar-brand img {
  max-width: 30%;
  height: auto;
  opacity: 0.4;
  font-family: "YourChosenFont", sans-serif; /* Zmień 'YourChosenFont' na nazwę wybranej czcionki */
}
nav .navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000; /* Upewnij się, że navbar jest na wierzchu */
}
nav .nav-link,
nav .navbar-nav .show > .nav-link,
nav .navbar-brand,
nav .fa-bars {
  color: #fff;
}
nav .nav-link:focus,
nav .nav-link:hover,
nav .navbar-nav .nav-link.active,
nav .navbar-nav .show > .nav-link {
  color: #039dff;
}

header.hero-img {
  position: relative;
  height: 100vh;
  background-image: url("../img/1-big.JPG");
  background-position: center center;
  background-attachment: fixed;
  color: white;
  z-index: 0;
}

h1 {
  text-transform: uppercase;
}

.hero-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -5;
}

.hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.fa-chevron-down {
  position: absolute;
  bottom: 80px;
  font-size: 20px;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.aboutus i {
  margin-top: 20px;
  font-size: 30px;
}
.aboutus .aboutus-card-text {
  font-size: 14px;
}

.aboutus-hover {
  transition: color 0.3s;
}

.aboutus-hover:hover {
  color: #039dff;
}

.aboutus-hero {
  position: relative;
  background-image: url("../img/chess-1-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  z-index: 0;
}
.aboutus-hero .aboutus-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -5;
}
.aboutus-hero .aboutus-hero-item {
  margin: 10px 0;
}
.aboutus-hero .aboutus-hero-item i {
  font-size: 36px;
}
.aboutus-hero .aboutus-hero-item .aboutus-hero-title {
  font-size: 24px;
}

.projects .carousel-item {
  height: 400px;
}
.projects .carousel-caption {
  left: 0;
  right: 0;
  padding: 40px 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.projects .carousel-indicators {
  padding-bottom: 20px;
}

.prices .price-box {
  margin: 20px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  transition: scale 0.3s;
}
.prices .price-box span {
  font-weight: bold;
}
.prices .price-box button {
  padding: 10px 20px;
  text-transform: uppercase;
}
.prices .price-box .price-tag {
  font-weight: bold;
  font-size: 18px;
}
.prices .price-info {
  margin-top: 30px;
}
.prices .price-info a {
  text-decoration: none;
}
.prices .price-box:hover {
  scale: 1.05;
}
.prices .price-title {
  color: #039dff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}

.price-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.price-box {
  margin: 0 15px;
}

.slick-prev,
.slick-next {
  background: transparent;
  border: none;
  font-size: 0;
  line-height: 0;
  color: transparent;
  opacity: 0.5;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 1;
}

.slick-prev {
  transform: translateY(-20px);
}

.slick-next {
  transform: translateY(-20px);
}

.contact {
  position: relative;
  background-image: url("../img/4.JPG");
  background-position: bottom;
  background-attachment: fixed;
  background-size: cover;
  z-index: 0;
}
.contact .section-title {
  color: #ddd;
}
.contact .underline {
  background-color: #ddd;
}
.contact .contact-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 9, 27, 0.4);
  z-index: -5;
}
.contact .contact-us {
  color: #fff;
}
.contact .contact-us .contact-item {
  margin: 30px 0;
}
.contact .contact-us .contact-item h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact .contact-us .social-media {
  font-size: 26px;
}
.contact .contact-us .social-media a {
  padding: 10px;
  color: #fff;
  transition: color 0.3s;
}
.contact .contact-us .social-media a:hover {
  color: #039dff;
}

@media (max-width: 768px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
  @keyframes show-bg {
    to {
      background-color: rgba(0, 0, 0, 0.3);
    }
  }
}
@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-text p {
    font-size: 22px;
  }
}
@media (min-width: 920px) {
  html {
    scroll-padding-top: 72px;
  }
  .aboutus-hero {
    background-image: url("../img/1-small.jpg");
  }
  header.hero-img {
    background-image: url("../img/6.JPG");
    background-size: 100% auto;
    background-position: center center;
  }
  header.hero-img {
    background-image: url("../img/1-big.JPG");
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  header.hero-img {
    background-image: url("../img/1-big.JPG");
  }
}
/* Dodaj nowe style dla ekranów o szerokości mniejszej niż 768px */
@media screen and (max-width: 768px) {
  .carousel-item {
    width: 100%; /* Przywróć pierwotną szerokość dla głównego slajdu */
  }
  .wrapper {
    flex-direction: column; /* Wyświetl karty w kolumnie */
    align-items: center; /* Wyśrodkuj karty w kolumnie */
    width: calc(100% - 40px); /* Zmniejsz szerokość wrappera, uwzględniając marginesy */
    margin: 20px auto; /* Wycentruj wrapper na stronie */
  }
  .card {
    width: 100%; /* Pełna szerokość dla każdej karty */
    margin-bottom: 20px; /* Dodaj margines na dole każdej karty */
  }
  .card img {
    width: 100%; /* Zmniejsz szerokość zdjęcia do 100% szerokości karty */
    height: auto; /* Dostosuj wysokość proporcjonalnie */
  }
  .text {
    left: 0; /* Wyzeruj left, aby tekst był wyrównany do lewej krawędzi karty */
    transform: none; /* Usuń poprzednią transformację */
    width: 100%; /* Pełna szerokość dla tekstu */
    text-align: center; /* Wycentruj tekst */
  }
  .text h3 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero-text {
    height: 130%;
  }
}/*# sourceMappingURL=style.css.map */