@charset "UTF-8";
body {
  font-family: "Roboto", Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
}
body .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(43, 43, 43, 0.8);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 5rem;
  transition: background-color 0.3s ease ease-in-out;
}
body .menu.small {
  padding: 5px 20px;
  height: 50px;
  background-color: rgb(43, 43, 43);
}
body .menu .logo {
  display: flex;
  align-items: center;
}
body .menu .logo img {
  height: 3rem;
  margin-right: 0.5rem;
}
body .menu .logo strong a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}
body .menu .nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}
body .menu .nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s ease ease-in-out;
}
body .menu .nav-links li a:hover {
  color: #FFD700;
}
@media (max-width: 768px) {
  body .menu .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 3rem;
    right: 0;
    background-color: rgba(43, 43, 43, 0.9);
    width: 100%;
    height: 100vh;
    text-align: center;
    margin-right: 0;
  }
  body .menu .nav-links li {
    margin: 0.5rem 0;
  }
}
body .menu .nav-links .nav-item.dropdown .dropdown-menu {
  background-color: rgba(43, 43, 43, 0.8);
  color: #fff;
  padding: 0.5rem;
}
body .menu .nav-links .nav-item.dropdown .dropdown-menu .dropdown-list-item {
  padding: 0.5rem 1rem;
}
body .menu .nav-links .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease-in-out;
}
body .menu .nav-links .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: #FFD700;
  background-color: unset;
}
body .menu .nav-links .nav-item.dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  margin-bottom: 0.25rem;
}
body .menu .nav-links .nav-item.dropdown .dropdown-toggle {
  padding: 0.5rem;
}
body .menu .nav-links .nav-item.dropdown .dropdown-toggle::after {
  margin-left: 0.5rem;
  color: #fff;
}
body .menu .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 0vh;
}
body .menu .hamburger span {
  height: 0.2rem;
  width: 2rem;
  background: white;
  margin: 0.25rem 0;
  transition: all 0.3s ease ease-in-out;
}
@media (max-width: 768px) {
  body .menu .hamburger {
    display: flex;
  }
}
body .menu .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.25rem, 0.25rem);
}
body .menu .hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}
body .menu .hamburger.active span:nth-child(3) {
  opacity: 0;
}
body .menu.active .nav-links {
  display: flex;
}
body #parallax {
  margin-top: 5rem;
  height: 75vh;
  color: #fff;
  position: relative;
  overflow: hidden;
}
body #parallax .parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url("/static/img/broken-phone-2.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
body #parallax .container {
  position: absolute; /* Ustawia kontener w odniesieniu do #parallax */
  top: 50%; /* Przesuwa kontener na środek osi Y */
  left: 50%; /* Wycentrowanie na osi X */
  transform: translate(-50%, -50%); /* Wyśrodkowanie względem środka */
  z-index: 1;
  color: #fff;
  text-align: left;
  flex-direction: column;
}
body #parallax .container h1, body #parallax .container h3, body #parallax .container p {
  margin: 0;
  padding: 0.5em 0;
}
body #parallax .container .quote-button {
  background-color: #28a745;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.3s ease-in-out;
}
body #parallax .container .quote-button:hover, body #parallax .container .quote-button:focus {
  background-color: #218838;
  cursor: pointer;
}
body #parallax .container h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
}
body #parallax .container h3, body #parallax .container p {
  color: #fff;
  margin-bottom: 1rem;
}
body section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  margin-bottom: 0;
  overflow: hidden;
  /* Sekcje, które mają się płynnie pojawiać */
  /* Klasa, która jest dodawana po wejściu sekcji w viewport */
  /* Video and Placeholder Transition */
}
body section .container p {
  text-align: justify;
}
body section.transform {
  opacity: 0; /* Sekcja początkowo niewidoczna */
  transform: translateY(50px); /* Przesunięcie w pionie */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animacja */
}
body section.section-visible {
  opacity: 1; /* Sekcja staje się widoczna */
  transform: translateY(0); /* Przesunięcie wraca do normy */
}
body section:nth-of-type(even) {
  background-color: #fff;
}
body section .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #111;
}
@media (max-width: 768px) {
  body section {
    padding: 40px 15px;
  }
}
@media (max-width: 480px) {
  body section {
    padding: 30px 10px;
  }
  body section .section-title {
    font-size: 1.5rem;
  }
}
body section div form textarea {
  margin-bottom: var(--spacing);
}
body .fade {
  /* opacity: 1; */
  transition: opacity 1s ease-in-out;
}
body .fade-out {
  opacity: 0;
}
body .fade-in {
  opacity: 1;
}
body .show {
  display: block;
}
body #how-it-works {
  background-color: black;
  margin-top: 5rem;
}
body #how-it-works video {
  width: 100%;
  width: -moz-available; /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
  width: fill-available;
}
body #quote {
  text-align: center;
}
body #quote .brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
body #quote .brands-grid .brand-item {
  background-color: #f7f7f7;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  transition: transform 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100px;
}
body #quote .brands-grid .brand-item img {
  max-width: 6rem;
  max-height: 3rem;
  height: auto;
}
body #quote .brands-grid .brand-item:hover {
  transform: scale(1.1);
  border-color: #28a745;
  background-color: #ffffff;
}
body #quote .brands-grid .brand-item:hover img {
  filter: brightness(1.2);
}
@media (max-width: 480px) {
  body #quote .brand-item {
    width: 120px;
    height: 80px;
  }
  body #quote .brand-item img {
    max-width: 5rem;
  }
}
body .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
body .services-grid .service-item {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1rem;
}
body .services-grid .service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}
body .services-grid .service-item img {
  margin: 1rem;
  height: 9.375rem;
  object-fit: cover;
  border-bottom: 0.125rem solid #e0e0e0;
}
body .services-grid .service-item .service-content {
  padding: 0.9375rem;
}
body .services-grid .service-item .service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  color: #333;
  transition: color 0.3s ease-in-out;
}
body .services-grid .service-item .service-content p {
  font-size: 1rem;
  color: #555;
}
body .services-grid .service-item .service-content:hover h3 {
  color: #28a745;
}
@media (max-width: 480px) {
  body .services-grid {
    grid-template-columns: 1fr;
  }
}
body .why-we-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
body .why-we-content .why-we-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
}
body .why-we-content .why-we-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
body .why-we-content .why-we-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
  color: #020402;
}
body .why-we-content .why-we-item p {
  color: #132d13;
  line-height: 1.6;
  text-align: justify;
}
body .why-we-content .why-we-item ul li {
  color: #132d13;
}
body .why-we-content .why-we-item:hover h3 {
  color: #28a745;
}
body .why-we-content .why-we-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
}
@media (max-width: 480px) {
  body .why-we-content {
    flex-direction: column;
  }
  body .why-we-content .why-we-item {
    flex: 1 1 100%;
  }
}
body #map {
  width: 100%;
  height: 400px;
  margin: 0 auto;
}
body > footer {
  background-color: #2b2b2b;
  color: #fff;
  padding-bottom: 0rem;
  font-family: "Roboto", Arial, sans-serif;
  position: relative;
}
body > footer .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  body > footer .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
body > footer .footer-container .footer-section {
  flex: 1;
  margin: 0 1rem;
  text-align: left;
}
@media (max-width: 768px) {
  body > footer .footer-container .footer-section {
    margin: 1rem 0;
    text-align: center;
  }
}
body > footer .footer-container .footer-section h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
body > footer .footer-container .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body > footer .footer-container .footer-section ul li {
  margin-bottom: 0.75rem;
}
body > footer .footer-container .footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
body > footer .footer-container .footer-section ul li a:hover {
  color: #FFD700;
}
body > footer .footer-container .footer-section p {
  text-align: center;
}
body > footer .footer-container .footer-section p img {
  max-height: 11rem;
}
body > footer .footer-container .footer-section.social-media .social-links {
  display: inline-flex;
  justify-content: center;
}
body > footer .footer-container .footer-section.social-media a {
  margin-right: 1rem;
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s;
}
body > footer .footer-container .footer-section.social-media a:hover {
  color: #FFD700;
}
body > footer .footer-container .footer-section.social-media a:last-child {
  margin-right: 0;
}
body > footer .footer-container .language-switcher select {
  background-color: #fff;
  color: #28a745;
  border: 1px solid #ddd;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  appearance: none;
}
body > footer .footer-container .language-switcher select:hover {
  border-color: #28a745;
}
@media (max-width: 480px) {
  body > footer .footer-container {
    flex-direction: column;
    text-align: center;
  }
  body > footer .footer-container .footer-section {
    margin-bottom: 1.5rem;
  }
  body > footer .social-media {
    justify-content: center;
  }
}
body > footer .footer-text-center {
  text-align: center;
  padding-top: 20px;
}
body > footer .footer-text-center p:last-child {
  font-size: 0.7rem;
}
body > footer .deployment-info {
  font-size: 10px;
  color: #3b3838;
  text-align: right;
  margin-top: 20px;
  /* Obsługa przeglądarek Firefox */
}
body > footer .deployment-info::selection {
  background-color: #ffffff !important; /* Kolor tła zaznaczonego tekstu */
  color: #000000 !important; /* Kolor tekstu zaznaczonego */
}
body > footer .deployment-info::-moz-selection {
  background-color: #ffffff !important;
  color: #000000 !important;
}
body .cookie-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 10px;
  background-color: #f8f9fa;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
body .cookie-banner button {
  background-color: #28a745;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  max-width: 10rem;
  margin: 0.5rem 2rem;
}
body .cookie-banner p {
  margin-bottom: unset;
}
body .cookie-banner button:hover {
  background-color: #218838;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

input.input-form {
  margin-bottom: 0;
}
input.input-form.warning {
  border: 0.15rem solid #ed913b !important; /* zielone obramowanie */
}
input.input-form.error {
  border: 0.15rem solid #e74c3c !important; /* Czerwone obramowanie */
  background-color: #ffe6e6 !important; /* Delikatne tło błędu */
}
input.input-form.valid {
  border: 0.15rem solid #0c9739 !important; /* zielone obramowanie */
}

.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 0;
}

.phone-input-container {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .phone-input-container {
    flex-direction: column;
  }
}

.country-dropdown {
  font-size: 1rem;
  padding: 0.5rem;
  width: auto;
  appearance: none;
}

@media (max-width: 480px) {
  .dropdown-menu.show {
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: 44% !important;
    left: 50% !important;
    transform: translate(-50%, -40%) !important;
    width: 90%;
    height: auto;
    padding: 1rem;
    border-radius: 0;
    flex-direction: column;
    display: flex;
    padding-top: 0vh !important;
    margin-top: 1vh !important;
    background-color: rgba(43, 43, 43, 0.97) !important;
  }
}
.hidden {
  display: none;
}

.confirmation-message {
  background-color: #e9f8ee;
  border: 0.0625rem solid #c1e4c8;
  border-radius: 0.5rem;
  padding: 1.25rem;
  color: #1f3f2b;
  font-size: 1rem;
  line-height: 1.6;
}
.confirmation-message h2 {
  color: #237a3d;
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.confirmation-message p {
  margin-bottom: 0.75rem;
  color: cadetblue;
}
.confirmation-message p:last-child {
  margin-bottom: 0;
}
.confirmation-message strong {
  font-weight: 600;
}

/*# sourceMappingURL=style.css.map */
