@charset "UTF-8";
/* Zmienne */
/* Resetowanie domyślnych marginesów i paddingów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0 !important;
}

html,
.main {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /* Blokuje przewijanie */
  font-family: Arial, sans-serif;
}
@media screen and (max-width: 991px) {
  html,
  .main {
    height: auto;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

.container1 {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: row;
  flex-wrap: nowrap;
}
.container1 .store {
  position: relative;
  width: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.container1 .store:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}
.container1 .store:hover:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0px;
}
.container1 .store:hover .overlay {
  background-color: transparent;
}
.container1 .store .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgb(248, 44, 44);
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  transition: 0.3s ease-in-out;
}
.container1 .store .overlay h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #fff;
}
.container1 .store .overlay .logo img {
  height: 140px;
}
.container1 .store .overlay .button1 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  background-color: rgb(2, 166, 227);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.container1 .store .overlay .button1:hover {
  background-color: #0057b0;
}
@media screen and (max-width: 991px) {
  .container1 .store {
    width: 100%;
    height: 90vh;
  }
  .container1 .store:after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
  }
  .container1 .store .overlay {
    background-color: transparent;
  }
}
@media screen and (max-width: 991px) {
  .container1 {
    flex-direction: column;
    height: auto;
  }
}/*# sourceMappingURL=theme-style.css.map */