.section_title{
	display: flex;
    text-align: center;
    color: var(--colortitle);
    text-transform: uppercase;
    height: 60px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-size: 26px;
    margin-bottom: 6px;
    margin-top: 30px;
    text-wrap: balance;
}
.caja_carru_tour{
	display: flex;
	width: 100%;
	gap: 10px;
	overflow-x: scroll;
	padding: 5px;
	margin: 0 0 30px 0;
}
.caja_carru_tour .tour_opt{
	width: 100%;
	min-width: 300px;
	max-width: 500px;
	height: 400px;
	background: #212121;
	padding: 2px;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	margin: auto;
}
.tour_opt:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom,rgba(0,0,0,0.8) -20%,rgba(255,255,255,0),rgba(0,0,0,0.8) 93%);
	z-index: 5;
}
.tour_opt b{
	color: white;
	display: flex;
	width: fit-content;
	margin: 0 auto;
	height: fit-content;
	padding: 5px;
	font-size: 30px;
}
.tour_opt p{
	color: white;
	padding: 5px 10px;
	text-align: center;
}
.tour_opt .imagen_t{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.tour_opt .imagen_t img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1200ms ease
}
.tour_opt:hover .imagen_t img{
	transform: scale(1.1);
}
.tour_opt .sumary_tour{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 10;
	padding: 10px 5px;
}
.sumary_tour div{
	display: flex;
	gap: 10px;
	flex-direction: column;
}
.sumary_tour .btn_view_tour{
	background: var(--color1);
	color: white;
	display: flex;
	border-radius: 10px;
	padding: 5px 10px;
	width: fit-content;
	margin: auto;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: all 400ms ease;
}
.sumary_tour .btn_view_tour:after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: -100%;top: 0;
	transition: all 400ms ease;
	background: rgba(255, 255, 255, .2);
	border-radius: 6px;
}
.sumary_tour .btn_view_tour:hover:after{
	left: 0;
}
/*DEPARTAMENTOS*/
.caja_dep{
	width: 100%;
	max-width: 500px;
	min-width: 300px;
	background: linear-gradient(to top, #09324b 60%, #114C71);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 6px 2px rgba(0,0,0,.1);
	margin: 0 auto;
}
.img_dep_box{
	width: 100%;
	height: 200px;
	min-height: 200px;
}
.img_dep_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info_dep_box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 8px;
	gap: 10px;
}
.info_dep_box b{
	color: #00e900;
}
.info_dep_box p{
	color: white;
	font-size: 14px;
}
.info_dep_box a{
	padding: 8px;
	border: 1px solid #00e900;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	margin: auto;
	color: #00e900;
	text-decoration: none;
}
.info_dep_box a:hover{
	background: #00e900;
	color:white;
	cursor: pointer;
}