/** Shopify CDN: Minification failed

Line 74:3 Expected "}" to go with "{"

**/
/* Podstawowy styl dla wersji desktopowej */
.video-container {
  position: relative;
  width: 100%;
  height: 660px;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(92, 108, 87, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-overlay .content {
  text-align: right;
  margin: 10%;
  color: #ccc;
}

.custom-overlay h2 {
  font-size: 24px;
}

.custom-overlay p {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .video-container {
    height: 56.25vw; /* Utrzymanie proporcji 16:9 dla wideo */
  }

  .video-container video {
    width: 100vw; /* Użycie szerokości widoku przeglądarki */
    height: auto; /* Automatyczna wysokość dla zachowania proporcji */
  }

  .custom-overlay {
    width: 100%; /* Pełna szerokość na urządzeniach mobilnych */
    height: 100%; /* Pełna wysokość na urządzeniach mobilnych */
  }

  .custom-overlay .content {
    text-align: center; /* Centrowanie tekstu dla urządzeń mobilnych */
    margin: 5%; /* Mniejszy margines dla urządzeń mobilnych */
  }

  .custom-overlay h1 {
    font-size: 3vw; /* Większe skalowanie czcionki dla urządzeń mobilnych */
  }

  .custom-overlay p {
    font-size: 2vw; /* Większe skalowanie czcionki dla urządzeń mobilnych */
  }