@charset "UTF-8";
/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
	position: relative;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 1500px;
}
@media (min-width: 1500px) {
.travel-hero .flex-slider-foto img {
	max-width: 1350px;
	border-radius: 20px;
}
.hero-text {
	max-width: 1350px;
}
}
.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.itc-slider {
	position: relative;
	display: flex;
	justify-content: center;
	height: 100%;
}
.itc-slider-wrapper {
	overflow: hidden;
}
.travel-hero .itc-slider-items {
	display: flex;
	align-items: flex-end;
	transition: transform 0.5s ease;
	will-change: transform;
	--gap: 1px;
	gap: var(--gap);
	height: 100%;
}
.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;
}
.hero-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.hero-buttons .btn-prim {
	pointer-events: auto;
}
.hero-text {
	z-index: 1;
	pointer-events: none;
	padding: 80px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	animation: sweep .5s ease-in-out;
}
@keyframes sweep {
  0%    {opacity: 0;}
  100%  {opacity: 1;}
}
.hero-title {
	color: #ffffff;
	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 50px 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;
}
.itc-slider-btn {
	width: 34px;
	height: 34px;
}
.hero-title {
	font-size: 2rem;
}
.hero-subtitle {
	font-size: 1rem;
}
.travel-hero .flex-slider-foto img {
	height: calc(100% - 55px);
}
}
/* Testimonials Home Section */
.testimonials-home .itc-slider {
	padding-bottom: 50px;
}
.testimonials-home .itc-slider-items {
	display: flex;
	align-items: flex-end;
	transition: transform 0.5s ease;
	will-change: transform;
	--gap: 20px;
	gap: var(--gap);
	height: 100%;
	padding: 0 20px;
}
.testimonials-home .itc-slider-item {
	flex: 0 0 calc(33.3333333333% - var(--gap) * 2 / 3);
	max-width: 100%;
	user-select: none;
	will-change: transform;
	height: 100%;
}
@media (max-width: 1100px) {
.testimonials-home .itc-slider-item  {
	flex: 0 0 calc(50% - var(--gap) / 2);
	}
}
@media (max-width: 800px) {
.testimonials-home .itc-slider-item  {
	flex: 0 0 100%;
	}
}
.testimonial-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
	height: 100%;
}
.testimonial-img {
	width: 90px;
	border-radius: 50%;
	margin: 0 auto;
}
.name-testimonial {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #28441e;
	font-family: var(--heading-font);
}
.country-testimonial {
	font-size: 15px;
	color: #2f2a25;
	margin: 0;
	font-family: var(--heading-font);
}
.quote-icon-left,
.quote-icon-right {
	color: #2f2a25;
	font-size: 26px;
	line-height: 0;
}
.quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}
.quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}
.testimonial-quote {
	font-style: italic;
	padding: 15px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	border-radius: 10px;
	text-align: justify;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	hyphenate-limit-chars: 6 3 2;
	hyphenate-limit-lines: 2;
	hyphenate-limit-last: always;
	hyphenate-limit-zone: 8%;
}
/* Buttons for moving to the previous and next slide */
.itc-slider-btn-prev::before {
	display: inline-block;
	font-family: bootstrap-icons;
	content: "\F22D";
}
.itc-slider-btn-next::before {
	display: inline-block;
	font-family: bootstrap-icons;
	content: "\F231";
}
.itc-slider-btn {
	position: absolute;
	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;
}
.travel-hero .itc-slider-btn {
	top: 40%;
}
.testimonials-home .itc-slider-btn {
	top: 80%;
}
.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;
}
}
/* Indicators for transitions to slides */
.itc-slider-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 15;
	display: flex;
	justify-content: center;
	padding-left: 0;
	list-style: none;
}
.itc-slider-indicator {
	flex: 0 1 auto;
	width: 15px;
	height: 15px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	background-color: #ffffff;
	background-clip: padding-box;
	border-radius: 50%;
	box-shadow: 0 0 5px 5px rgba(34, 60, 80, 0.2);
	cursor: pointer;
}
.itc-slider-indicator-active, .itc-slider-indicator-active:active {
	background-color: #28441e;
}
.itc-slider-indicator:active {
	background-color: #916529;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (hover: hover) and (pointer: fine) {
.itc-slider-indicator:hover {
	background-color: #916529;
}
.itc-slider-indicator-active:hover {
	background-color: #28441e;
}
}