.gray-bg{
  background-color: #d7d7d7;
}

.abril-fatface-regular {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

input::placeholder {
  color: black;
  opacity: 1; /* ważne, by kolor był w pełni widoczny */
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: white;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.4;
  background-color: black; /* jeśli tło strony nie jest czarne */
}

/* Ukryj standardowy checkbox */
.custom-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid #b79853;
  border-radius: 2px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  margin-top: 2px;
}

/* Zaznaczenie */
.custom-checkbox input[type="checkbox"]:checked::after {
  content: "✔";
  color: #b79853;
  font-size: 20px;
  position: absolute;
  top: 0px;
  left: 6px;
}

.clip-content{
  clip-path: polygon(0 0, 70% 0, 52% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .clip-content{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  
  .slick-dots{
    right: 0px !important;
  }
}

.slick-dots{
  position: absolute;
  bottom: 36px;
  right: -44px;
}

.slick-dots li button:before {
  width: 25px;
  height: 25px;
  font-size: 16px;
  opacity: .5;
  color: white;
}

.slick-dots li.slick-active button:before {
  width: 25px;
  height: 25px;
  font-size: 16px;
  opacity: .9;
  color: white;
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}