
/* ===================================
    splide
====================================== */
.icon-slide {
     height: 115px;
}
.splide-grad-one {background: linear-gradient(180deg, #035AA6 0%, #0B467A 70%, #ffffff 30%);}
.splide-grad-two {background: linear-gradient(180deg, #17A8BF 0%, #078599 70%, #ffffff 30%);}
.splide-grad-three {background: linear-gradient(180deg, #27BDBE 0%, #088F8F 70%, #ffffff 30%);}
.splide-grad-four {background: linear-gradient(180deg, #7A2DB1 0%, #4C0083 70%, #ffffff 30%);}
.splide-grad-five {background: linear-gradient(180deg, #512D88 0%, #24005A 70%, #ffffff 30%);}
.splide-grad-six {background: linear-gradient(180deg, #303083 0%, #000069 70%, #ffffff 30%);}

.splide-box-img {
     height: 60px;
}
.splide-box-content {
     background-image: -webkit-linear-gradient(180deg, #FFFFFF 0%, #F5F6F6 100%);
     background-image: -moz-linear-gradient(180deg, #FFFFFF 0%, #F5F6F6 100%);
     background-image: -o-linear-gradient(180deg, #FFFFFF 0%, #F5F6F6 100%);
     background-image: linear-gradient(180deg, #FFFFFF 0%, #F5F6F6 100%);
     border-radius: 6px;
     padding: 60px 10px 20px 10px;
     /* min-height: 13rem; */
}

.splide__pagination {
     bottom: -30px;
}

.splide__pagination__page.is-active {
     background: #035AA6;
     transform: scale(1.2);
}

/* ===================================
    gallery
====================================== */
/*----------------------------------------------
5. Gallery
----------------------------------------------*/

/* #region Gallery */

.gallery.scrolling-grid {
	margin-top: 5rem !important;
	margin-bottom: 5rem !important;
}

.gallery .item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery.has-gap:not(.slider) .item {
	padding: 10px;
}
/* xs */ @media (max-width: 575px) {
	.gallery.has-gap:not(.slider) .item {
		padding: 5px;
	}
}

.gallery .item .image-wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: auto;
	display: block;
}

.gallery .item .image {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	transition: transform 2s cubic-bezier(0.2, 1, 0.2, 1);
}

.gallery .item .image-wrapper .overlay {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: var(--color); */
	background: rgba(3,90,166,0.7);
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.gallery .item.active .overlay,
.gallery .item:hover .overlay {
	opacity: 1;
}

.gallery .item .image-wrapper .overlay.has-border {
	background-color: transparent;
	border: 1px solid;
	border-color: var(--color);
	opacity: 0.5;
}

.gallery .item .image-wrapper .overlay.has-border.top-item {
	border-top: 0
}

.gallery .item .image-wrapper .overlay.has-border.right-item {
	border-right: 0;
}

.gallery .item .image-wrapper .overlay.has-border.bottom-item {
	border-bottom: 0;
}

.gallery .item .image-wrapper .overlay.has-border.left-item {
	border-left: 0;
}

.gallery .item .gallery-icon {
	position: absolute;
	z-index: 2;
	font-size: 5rem;
	color: var(--color);
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.gallery .item.active .gallery-icon {
	opacity: 0.75;
}

.gallery .item:hover .gallery-icon {
	font-size: 6rem;
	opacity: 0.75;
}

.gallery .item .text-wrapper {
	position: absolute;
	z-index: 2;
	width: 100%;
	padding: 2.5rem 3.5rem;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.gallery .item.active .text-wrapper,
.gallery .item:hover .text-wrapper {
	opacity: 1;
}

.gallery .item .text-wrapper .title {
	margin: 0;
	color: var(--color);
}

.gallery .item .text-wrapper .description {
	margin: 1.5rem 0 0;
	color: var(--color);
}

@media (max-width: 991px) {

	.gallery .item .gallery-icon {
		font-size: 3rem;
	}
	
	.gallery .item:hover .gallery-icon {
		font-size: 3.5rem;
	}

	.gallery .item .text-wrapper {
		padding: 1rem;
	}
}

@media (max-width: 767px) {

	.gallery.scrolling-grid {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
	}
}

/* #endregion Gallery */


/*----------------------------------------------
6. Hover
----------------------------------------------*/

/* #region Hover */

.hover-show {
	opacity: 0 !important;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.hover-show:hover,
.parent:hover .hover-show {
	opacity: 1 !important;
}

.hover-opacity {
	opacity: 0.5 !important;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.hover-opacity:hover,
.parent:hover .hover-opacity {
	opacity: 1 !important;
}

.hover-grayscale {
	filter: grayscale(1);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.hover-grayscale:hover {
	filter: grayscale(0);
}

.hover-rotate:hover {
	display: block;
	-moz-transition: all 0.6s cubic-bezier(0.99, 0, 0.57, 0.94);
	-o-transition: all 0.6s cubic-bezier(0.99, 0, 0.57, 0.94);
	-webkit-transition: all 0.6s cubic-bezier(0.99, 0, 0.57, 0.94);
	transition: all 0.6s cubic-bezier(0.99, 0, 0.57, 0.94);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

.button .hover-rotate {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.button .hover-rotate:hover {
	display: flex;
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-webkit-transform: rotate(0);
	transform: rotate(0);
	animation: rotate-animation 0.6s forwards ease-in-out;
}

.parent:hover .hover-scale {
	transform: scale(1.05);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hover-zoom:hover .image,
.parent:hover .hover-zoom .image {
	transform: scale(1.1);
	transition-duration: 2s;
}

/* hover gallery */
/* .hover-zoom-rotate:hover .image,
.parent:hover .hover-zoom-rotate .image {
	transform: scale(1.1) rotate(3deg);
	transition-duration: 3s;
} */
/* hover gallery */
.hover-up {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.hover-up:hover {
	transform: translateY(-10px);
}

.hover-up-down:hover,
.parent:hover .hover-up-down {
	animation: hover-up-down 0.4s forwards ease-in-out;
}

.image-hover-scroll {
  max-height: 365px;
  overflow: hidden;
}

.image-hover-scroll .image {
  width: 100%;
	-webkit-transition: top 11s;
	-o-transition: top 11s;
	-moz-transition: top 11s;
	transition: transform 1.5s cubic-bezier(0.4, 0, 1, 1);
}

.image-hover-scroll:hover .image {
  transform: translateY(calc(-100% + 365px));
  -webkit-transition: all 11s;
  -o-transition: all 11s;
  -moz-transition: all 11s;
	transition: transform 3s cubic-bezier(0.4, 0, 1, 1);
}

@keyframes hover-up-down {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	0% {
		transform: translateY(0);
	}
}

/* #endregion Hover */

/* #Hover with symbol */

/* .content-overlay {
	background: rgba(3,90,166,0.7);
	position: absolute;
	z-index: 3;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
   }
   
.item:hover .content-overlay{
	opacity: 1;
   } */

.content-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
   }
.item:hover .content-details{
	top: 50%;
	left: 50%;
	opacity: 1;
	position: absolute;
	z-index: 4;
   }
/* ===================================
    scrolling text
====================================== */
.containerR {
     position: relative;
     width: 100vw;
     overflow: hidden;
   }
   
   .scrolling-text {
     display: inline-block;
     transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
     will-change: transform;
     backface-visibility: hidden;
   }
   
   .scrolling-text .scrolling-text-content {
     white-space: nowrap;
     transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
     line-height: 1em;
     /* margin: 50px 0; */
   }

/* ===================================
    Cobertura
====================================== */

.coverage-title {
     position: relative;
     top: 35px;
     z-index: -1;
}
/* xs */ @media (max-width: 575px) {
	.coverage-title {
		position: relative;
		top: 0px;
		z-index: -1;
	}
  }
ul.map-list {
     padding-left: 12px;
     list-style-type: none;
}

   ul.map-list li {
     /* position: relative; */
     display: flex;
     margin-bottom: 10px;
   }
   
   ul.map-list li:before {
     content: '';
     position: relative;
     display: block;
     left: -12px;
     top: 5px;
     width: 16px;
     height: 16px;
     background: url(../img/record-circle.svg);
}

/* ===================================
    lightbox
====================================== */
.lg-sub-html {
	bottom: 0;
	color: #EEE;
	font-size: 14px;
	left: 0;
	padding: 10px 40px;
	position: fixed;
	right: 0;
	text-align: center;
	z-index: 1080;
 }
