.itc-slider {
	position: relative;
	display: flex;
	justify-content: center;
	height: 100%;
}
.travel-hero .itc-slider-wrapper {
	overflow: hidden;
}
.itc-slider-items {
	display: flex;
	align-items: flex-end;
	transition: transform 0.5s ease;
	will-change: transform;
	--gap: 1px;
	gap: var(--gap);
	height: 100%;
}
.travel-hero .itc-slider-transition-none {
	transition: none;
}
.travel-hero .itc-slider-item {
	flex: 0 0 100%;
	user-select: none;
	will-change: transform;
	height: 100%;
}
.flex-slider-foto {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.travel-hero .flex-slider-foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}
/* Buttons for moving to the previous and next slide */
.itc-slider-btn-prev::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	content: "\F22D";
}
.itc-slider-btn-next::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	content: "\F231";
}
.itc-slider-btn {
	position: absolute;
	top: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	color: #ffffff;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	background: #28441e;
	border-radius: 10px;
	border: none;
	opacity:0.5;
	cursor: pointer;
}
.itc-slider-btn-prev {
	left: 10px;
}
.itc-slider-btn-next {
	right: 10px;
}
.itc-slider-btn:active {
	color: #28441e;
	background: #ffffff;
	opacity:1;
}
@media (hover: hover) and (pointer: fine) {
.itc-slider-btn:hover {
	color: #28441e;
	background: #ffffff;
	opacity:1;
}
}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
	position: relative;
	overflow: hidden;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.hero-title, .hero-subtitle, .hero-buttons {z-index: 1;}
.hero-text {
	padding: 60px 70px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
}
@media (min-width: 1500px) {
.travel-hero .flex-slider-foto img {
	max-width: 1300px;
	border-radius: 20px;
}
.hero-text {
	max-width: 1300px;
}
.itc-slider-btn-prev {
	left: 40px;
}
.itc-slider-btn-next {
	right: 40px;
}
}
.hero-title {
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.2), 1px 0 1px #36220B, 0 0 8px white, 0 0 8px white, 0 0 8px #28441e;
}
.hero-subtitle {
	color: #ffffff;
	font-size: 1.2rem;
	text-align: justify;
	line-height: 1.3;
	padding: 10px 10px 20px;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.2), 1px 0 1px #36220B, 0 0 8px white, 0 0 8px white, 0 0 8px #28441e;
}
@media (max-width: 992px) {
.hero-title {
	font-size: 2.2rem;
}
.hero-subtitle {
	font-size: 1.1rem;
}
}
@media (max-width: 701px) {
.flex-slider-foto {
	justify-content: flex-end;
}
.hero-text {
	padding: 60px 50px 10px;
}
.itc-slider-btn {
	width: 34px;
	height: 34px;
}
.hero-title {
	font-size: 2rem;
}
.hero-subtitle {
	font-size: 1rem;
	padding: 5px 10px 10px;
}
.travel-hero .flex-slider-foto img {
	height: calc(100% - 55px);
}
}