#facilitiesSec {
	position: relative;
	margin-bottom: var(--space-between-sections);
	overflow: hidden;
}

#facilitiesSec span.verticalTitle {
	font-size: 14px;
	color: var(--color-black);
	line-height: 20px;
	text-transform: uppercase;
	position: absolute;
	top: 50%;
	left: 30px;
	z-index: 2;
	writing-mode: vertical-rl;
	transform: translateY(-50%) rotate(-180deg);
}

#facilitiesSec span.verticalTitle:before {
	content: '';
	width: 1px;
	height: 40px;
	background-color: var(--color-black);
	position: absolute;
	top: calc(100% + 17px);
	left: 50%;
}

#facilitiesSec span.verticalTitle:after {
	content: '';
	width: 1px;
	height: 40px;
	background-color: var(--color-black);
	position: absolute;
	bottom: calc(100% + 17px);
	left: 50%;
}

#facilitiesSec .bgBox {
	width: 55%;
	height: 380px;
	background: var(--color-grey);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}

#facilitiesSec .slider {
	padding-bottom: 125px;
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer {
	overflow: visible;
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer:before,
#facilitiesSec .slider .facilities-slider .owl-stage-outer:after {
	content: '';
	width: 215px;
	height: 100%;
	background: rgb(2 8 21 / 50%);
	position: absolute;
	top: 0;
	z-index: 1;
	pointer-events: none;
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer:before {
	background: linear-gradient(-90deg, rgba(2, 8, 21, 0) 5%, var(--color-white-transparent) 65%, var(--color-white) 95%);
	left: calc(0px - var(--container-padding));
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer:after {
	background: linear-gradient(90deg, rgba(2, 8, 21, 0) 5%, var(--color-white-transparent) 65%, var(--color-white) 95%);
	right: calc(0px - var(--container-padding));
}

#facilitiesSec .slider .facilities-slider .item {
	position: relative;
	overflow: hidden;
}

#facilitiesSec .slider .facilities-slider .item:after {
	pointer-events: none;
	content: '';
	width: 100%;
	height: 35%;
	background: rgb(2 8 21 / 50%);
	background: linear-gradient(180deg, rgba(2, 8, 21, 0) 0%, var(--color-white-transparent) 50%, var(--color-white) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
	animation-delay: 0s;
}

#facilitiesSec .slider .facilities-slider .center .item:after {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	animation-delay: 0.5s;
}

#facilitiesSec .slider .facilities-slider .item img {
	transform: scale(1.0);
	transition: all .7s ease-in-out;
}

#facilitiesSec .slider .facilities-slider .item:hover img {
	transform: scale(1.05);
}

/* Icono indicador al hover/focus: flecha (todas las imágenes llevan a una página,
   propia o al item correspondiente en la lista de servicios) */
#facilitiesSec .slider .facilities-slider .item a {
	display: block;
	position: relative;
}

#facilitiesSec .slider .facilities-slider .item a:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: rgb(2 8 21 / 35%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 32px 32px;
	transform: translate(-50%, -50%) scale(0.8);
	opacity: 0;
	transition: opacity .3s ease-in-out, transform .3s ease-in-out;
	pointer-events: none;
	z-index: 2;
	background-image: url('/themes/default/images/icons/facilities-arrow-white.svg');
}

#facilitiesSec .slider .facilities-slider .item a:hover:before,
#facilitiesSec .slider .facilities-slider .item a:focus-visible:before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

#facilitiesSec .slider .facilities-slider .item .info {
	pointer-events: none;
	position: absolute;
	bottom: 15px;
	right: 15px;
	left: 15px;
	z-index: 2;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
	animation-delay: 0s;
}

#facilitiesSec .slider .facilities-slider .center .item .info {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	animation-delay: 0.5s;
}

#facilitiesSec .slider .facilities-slider .item .info span.name {
	display: block;
	margin: 0;
	font-family: var(--font-title-family);
	font-size: var(--font-subtitle-size);
	color: var(--color-black);
	line-height: 32px;
	text-transform: uppercase;
}

#facilitiesSec .slider .facilities-slider .owl-dots {
	position: absolute;
	bottom: -85px;
	left: 0;
}

#facilitiesSec .seeall {
	float: right;
	width: 144px;
	margin-top: -78px;
	position: relative;
	z-index: 1;
}

#facilitiesSec .seeall a {
	display: inline-flex;
	align-items: center;
	grid-gap: 20px;
	margin: 0;
	font-size: 16px;
	color: var(--color-black);
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}

#facilitiesSec .seeall a:before,
#facilitiesSec .seeall a:after {
	content: '';
	width: 40px;
	border-top: 1px solid;
	transition: all .3s ease-in-out;
}

#facilitiesSec .seeall a:before {
	display: none;
}

#facilitiesSec .seeall a:hover {
	color: var(--color-black);
}

#facilitiesSec .seeall a:hover:before,
#facilitiesSec .seeall a:hover:after {
	width: 60px;
}

@media only screen and (min-width: 1180px) and (max-width: 1366px) {
        #facilitiesSec span.verticalTitle			{ left: 17px; }
}

@media only screen and (min-width: 959px) and (max-width: 1180px) {
        #facilitiesSec span.verticalTitle			{ left: 7px; }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
        #facilitiesSec span.verticalTitle			{ display: none; }
    #facilitiesSec .bgBox						{ width: 60%; height: 240px; }
    #facilitiesSec .slider						{ padding-bottom: 100px; }
    #facilitiesSec .slider .facilities-slider .item .info span.name { font-size: 20px; line-height: 20px; }
    #facilitiesSec .slider .facilities-slider .owl-dots { bottom: -66px; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot { width: 32px; height: 32px; margin: 0 5px; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:first-child { margin-left: 0; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:last-child { margin-right: 0; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:before, #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:after { display: none; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot span { width: 8px; height: 8px; }
    #facilitiesSec .seeall						{ margin-top: -65px; }
}

@media only screen and (max-width: 767px) {
        #facilitiesSec span.verticalTitle			{ display: none; }
    #facilitiesSec .bgBox						{ display: none; width: 60%; height: 240px; }
    #facilitiesSec .slider						{ width: calc(100% + 30px); margin-left: -15px; padding-bottom: 100px; }
    #facilitiesSec .slider .facilities-slider .owl-stage-outer:before, #facilitiesSec .slider .facilities-slider .owl-stage-outer:after { display: none; }
    #facilitiesSec .slider .facilities-slider .item .info span.name { font-size: 20px; line-height: 20px; text-align: center; }
    #facilitiesSec .slider .facilities-slider .owl-dots { bottom: -66px; right: 0; left: 0; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot { width: 32px; height: 32px; margin: 0 5px; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:first-child { margin-left: 0; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:last-child { margin-right: 0; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:before, #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot:after { display: none; }
    #facilitiesSec .slider .facilities-slider .owl-dots .owl-dot span { width: 8px; height: 8px; }
    #facilitiesSec .seeall						{ float: left; width: 100%; margin-top: 0px; text-align: center; }
    #facilitiesSec .seeall a:before				{ display: block; }
}