.drb-ipc,
.drb-ipc * {
	box-sizing: border-box;
}

.drb-ipc {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.drb-ipc-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.drb-ipc-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.drb-ipc-top {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.drb-ipc-subtitle {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.02em;
	color: #777777;
}

.drb-ipc-title {
	margin: 0 0 15px;
	font-size: 34px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.18em;
	color: #6b6b6b;
}

.drb-ipc-description {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	color: #b0164f;
}

.drb-ipc-carousel-wrap {
	width: 100%;
	position: relative;
}

.drb-ipc-stage {
	position: relative;
	width: 100%;
	height: 390px;
	overflow: hidden;
	--drb-ipc-speed: 550ms;
}

.drb-ipc-slide {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 20%;
	padding-left: 0;
	padding-right: 0;
	opacity: 0;
	transform: translateX(-50%);
	transition: transform var(--drb-ipc-speed) ease, opacity var(--drb-ipc-speed) ease;
	will-change: transform, opacity;
}

.drb-ipc-slide.is-visible {
	opacity: 1;
}

.drb-ipc-slide-card {
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0.38;
	transition: opacity var(--drb-ipc-speed) ease, transform var(--drb-ipc-speed) ease;
}

.drb-ipc-slide.is-active .drb-ipc-slide-card {
	opacity: 1;
	transform: scale(1);
}

.drb-ipc-slide-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border: 0;
}

.drb-ipc-nav {
	position: absolute;
	top: 50%;
	z-index: 30;
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 0;
	background-color: #ffffff;
	color: #777777;
	font-size: 34px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.drb-ipc-nav:hover,
.drb-ipc-nav:focus {
	background-color: #c99669;
	color: #ffffff;
	outline: none;
}

.drb-ipc-nav:active {
	transform: translateY(-50%) scale(0.96);
}

.drb-ipc-prev {
	left: 37%;
}

.drb-ipc-next {
	right: 37%;
}

.drb-ipc-content-panels {
	position: relative;
	max-width: 700px;
	min-height: 80px;
	margin: 12px auto 0;
	text-align: center;
}

.drb-ipc-panel {
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
}

.drb-ipc-panel.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.drb-ipc-name {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	color: #333333;
}

.drb-ipc-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #555555;
}

.drb-ipc-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 150px;
	margin-top: 30px;
}

.drb-ipc-button,
.drb-ipc-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding: 16px 34px;
	border: 0;
	border-radius: 0;
	background-color: #d0a079;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.drb-ipc-button:hover,
.drb-ipc-button:focus {
	background-color: #b7855f;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	transform: translateY(-1px);
}

@media (max-width: 1024px) {
	.drb-ipc-title {
		font-size: 28px;
	}

	.drb-ipc-description {
		font-size: 15px;
	}

	.drb-ipc-stage {
		height: 330px;
	}

	.drb-ipc-prev {
		left: 28%;
	}

	.drb-ipc-next {
		right: 28%;
	}

	.drb-ipc-buttons {
		gap: 35px;
	}
}

@media (max-width: 767px) {
	.drb-ipc {
		padding-left: 12px;
		padding-right: 12px;
	}

	.drb-ipc-subtitle {
		font-size: 16px;
	}

	.drb-ipc-title {
		font-size: 24px;
		letter-spacing: 0.08em;
	}

	.drb-ipc-description {
		font-size: 14px;
	}

	.drb-ipc-stage {
		height: 290px;
	}

	.drb-ipc-nav {
		width: 42px;
		height: 42px;
		font-size: 28px;
	}

	.drb-ipc-prev {
		left: 8px;
	}

	.drb-ipc-next {
		right: 8px;
	}

	.drb-ipc-name {
		font-size: 22px;
	}

	.drb-ipc-text {
		font-size: 14px;
	}

	.drb-ipc-buttons {
		gap: 14px;
		flex-direction: column;
	}

	.drb-ipc-button {
		width: 100%;
		max-width: 270px;
	}
}
