/* Slider Inwestycji */
.inwestycje-slider {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 765 / 600;
  margin: 0 auto;
  overflow: hidden;
}

.inwestycje-slides {
  position: relative;
  height: 100% !important;
  width: 100%;
  cursor: grab;
  display: flex;
  transition: transform 1s ease;
  will-change: transform;
}

.inwestycje-slide {
  position: relative;
  z-index: 2;
  flex: 0 0 100%;
  width: 100%;
  height: 100% !important;
}

.inwestycje-slide:before {
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;

	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 52.4%, rgba(0, 0, 0, 0.8) 95.36%);
}

.inwestycje-slide:after {
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;

	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.4%, rgba(0, 0, 0, 0.8) 95.36%);
}

.inwestycje-slide.active {
	
}

.inwestycje-slide-bg {
	position: relative;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	display: block;
}

.inwestycje-slide-overlay {
  position: absolute;
  z-index: 5;
  left: 5%;
  top: 5%;
  opacity: 1;
  transition: opacity 1s ease;
}
	
	.inwestycje-slide-overlay .inwestycje-slide-title {
		font-size: 24px;
		font-weight: 700;
		color: #fff;
	}

.inwestycje-slide-logo {
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 5;
    background: #fff;
    width: 170px;
    height: 105px;
    padding: 15px;
    box-sizing: border-box;
	opacity: 1;
	transition: opacity 1s ease;
}

@media screen and (max-width: 1000px) {
	.inwestycje-slide-logo {
		width: 150px;
		height: 100px;
	}
}

@media screen and (max-width: 600px) {
	.inwestycje-slide-logo {
		width: 110px;
		height: 70px;
		padding: 10px;
	}
}

	.inwestycje-slide-logo img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: 50% 50%;
	}
	
.inwestycje-slide-title {
  font-size: 18px;
  font-weight: 600;
}

.inwestycje-slide-cta {
	display: inline-block;
	color: #FFA641;
	font-size: 16px;
	font-weight: 700;
	padding: 3px 1px;
	line-height: 1;
	text-decoration: none;
}

.inwestycje-slide-cta:hover {
	background: #06080D;
	color: #fff;
}
	
.inwestycje-pagination {
	position: absolute;
	z-index: 99;
	left: 5%;
	bottom: 5%;
	display: flex;
	align-items: center;
	gap: 20px;
}

.inwestycje-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.inwestycje-arrow {
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.inwestycje-arrow:hover {
	filter: brightness(0) saturate(100%) invert(76%) sepia(68%) saturate(2250%) hue-rotate(329deg) brightness(108%) contrast(101%);
}

.inwestycje-prev svg {
	transform: scaleX(-1);
}

.inwestycje-dot {
	width: 16px;
	height: 16px;
	border-radius: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	background: #fefefe;
	opacity: 0.5;
	transition: all 0.2s ease;
}
	
.inwestycje-dot.active {
	width: 32px;
	background: #FFA641;
	opacity: 1;
	transition: all 0.2s ease;
}

/* Swipe usability */
.inwestycje-slider {
  touch-action: pan-y;
}

.inwestycje-slider.dragging .inwestycje-slides {
  cursor: grabbing;
}

.inwestycje-slider.dragging {
  user-select: none;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
}
.inwestycje-slide-overlay.fading,
.inwestycje-slide-logo.fading {
  opacity: 0;
}

@media screen and (max-width: 700px) {
	.inwestycje-pagination {
		gap: 10px;
	}

	.inwestycje-dot {
		width: 12px;
		height: 12px;
	}
	
	.inwestycje-dot.active {
		width: 24px;
		height: 12px;
	}
}
