@charset "UTF-8";
.reviews__wrap {
  margin-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.reviews__title {
  font-size: 4rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  color: #efefef;
  overflow-x: scroll;
  scroll-snap-type: mandatory;
}

.reviews-box::-webkit-scrollbar {
  height: 0;
}

.review-item {
  display: flex;
  flex: 1 0 33rem;
  flex-direction: column;
  gap: 2rem;
  scroll-snap-align: center;
  user-select: none;
  background-color: #efefef;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
}
.review-item:hover {
  transform: translateY(-5px);
}
@media (max-width: 575px) {
  .review-item {
    flex: 1 0 28rem;
  }
}

.review-header {
  display: flex;
  gap: 2rem;
  letter-spacing: 0.05rem;
  color: #2b2a2c;
}

.review-img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  overflow: hidden;
}
.review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-size: 1.7rem;
  font-weight: bold;
}

.review-date {
  font-size: 1.2rem;
  color: #6a696b;
}

.review-src_wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-src_wrap .review-source {
  font-size: 1.2rem;
  color: #6a696b;
}

.review-source-img {
  width: 2rem;
  height: 2rem;
}

.review-txt {
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
  color: #2b2a2c;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: #efefef;
  margin: 2rem 0;
}
.reviews-controls.hide {
  display: none;
}

.reviews-controls button {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  font-weight: 600;
  color: #efefef;
  cursor: pointer;
  padding: 0.5rem 1rem;
  background-color: #6a696b;
  border-radius: 0.5rem;
  border: transparent;
  transition: all 0.2s linear;
}
.reviews-controls button:hover {
  background-color: #2b2a2c;
}

.auth-section {
  margin-bottom: 5rem;
  padding: 50px 0 30px 0;
  background-color: #efefef;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
}

.auth-section p {
  font-size: 1.6rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 0 1rem;
}

/* Kontener na slider */
.auth_slider-container {
  width: 100%;
  overflow: hidden; /* Ukrywa wszystko poza widocznym obszarem */
  background-color: transparent;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); /* Efekt płynnego pojawiania się i znika na krawędziach */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Taśma z logo, która będzie się przesuwać */
.auth_slider-track {
  display: flex;
  gap: 60px; /* Odstęp między elementami */
  animation: scroll 30s linear infinite; /* Czas trwania animacji - dostosuj prędkość */
  width: max-content; /* Szerokość dopasowana do treści */
}
@media (max-width: 575px) {
  .auth_slider-track {
    gap: 30px;
  }
}

/* Pojedynczy element logo */
.logo-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9eef2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px; /* Minimalna szerokość */
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Styl dla obrazka logo */
.logo-item img {
  max-width: 120px;
  width: auto;
  height: 70px;
  margin-bottom: 12px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}
@media (max-width: 575px) {
  .logo-item img {
    height: 50px;
  }
}

.logo-item:hover img {
  filter: grayscale(0%); /* Kolor przy najechaniu */
}

/* Podpis pod logo */
.logo-caption {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a2b4c;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
  border-top: 1px dashed #cbd5e1;
  padding-top: 10px;
  width: 100%;
}

/* Klatki animacji */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Przesuwamy o połowę szerokości, bo mamy dwa identyczne zestawy */
    transform: translateX(calc(-50% - 30px)); /* 30px to połowa gap (60/2) */
  }
}
/* Responsywność */
@media (max-width: 768px) {
  .slider-track {
    gap: 30px;
    animation-duration: 25s; /* Nieco szybsze na małych ekranach */
  }
  .logo-item {
    padding: 15px 20px;
    min-width: 140px;
  }
  .logo-item img {
    max-width: 90px;
    max-height: 50px;
  }
  .logo-caption {
    font-size: 1.3rem;
  }
  @keyframes scroll {
    100% {
      transform: translateX(calc(-50% - 15px)); /* Połowa mniejszego gap */
    }
  }
}
.main {
  position: relative;
}

section {
  padding: 5rem 0;
}

.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  text-align: center;
  color: #efefef;
  max-width: 800px;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 8px;
}

.slide-content h1 {
  font-size: clamp(3rem, 4vw, 5rem);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: 30px;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #efefef;
  transform: scale(1.2);
}

.main-section-title {
  text-align: center;
  font-size: clamp(3rem, 4vw, 4rem);
  margin-bottom: 5rem;
  position: relative;
}
.main-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ea2020;
}

.gains_container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}
@media (max-width: 575px) {
  .gains_container {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
  }
}

.gains_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
  background-color: #efefef;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.gains_item:hover {
  transform: translateY(-10px);
}

.gains_counter {
  font-size: 4rem;
  font-weight: bold;
}

.gains_txt {
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-align: center;
  text-wrap: wrap;
  color: #6a696b;
}
@media (max-width: 575px) {
  .gains_txt {
    font-size: 1.7rem;
  }
}

.gains_img {
  width: 8rem;
  height: 8rem;
}

.links {
  background-color: #efefef;
}

.links__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.links__item {
  background-color: #efefef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.links__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.links__item a {
  text-decoration: none;
}
.links__item img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
}
.links__item .link__item-content {
  padding: 2.5rem;
}
.links__item .link__item-content h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #2b2a2c;
}
.links__item .link__item-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: gray;
}

.gallery__wrap {
  display: grid;
  grid-template: 50% 50%/50% 50%;
}
.gallery__wrap img {
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
}
/*# sourceMappingURL=home.min.css.map */
