/*
Theme Name: Costa Oriental
Theme URI: https://bellop.io
Version: 1.0
Author: Bellop.io
Author URI: https://bellop.io
*/

:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 65px;	
	--header-fixed-min-height: 65px;
	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #002C5C; /* Azul 01*/
    --bs-body-bg: #fff;

	--bs-primary:  #DA001A; /* Rojo 01*/
	--bs-primary-rgb: 218,0,26; /*rgba(218, 0, 26, 1)*/
	--bs-primary-text-emphasis: #B00418; /* Rojo Hover*/

	--bs-secondary: #023367; /* Azul 02*/
	--bs-secondary-rgb: 2,51,103; /*rgba(2, 51, 103, 1)*/
	--bs-secondary-text-emphasis: #5AA1FF; /* Azul 05 */

    --bs-white: #fff;

    --bs-light: #f2f6f8;
    --bs-light-rgb: 229,233,240; /* Gris 03 */


    --bs-dark: #002C5C; /* Azul 01*/
    --bs-dark-rgb: 0,44,92;


    --bs-black: #000;

	--bs-gray: #cacaca; 

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
/*    --bs-border-color: #fc3f50;*/
    --bs-border-radius: 16px;

}



@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 90px;
		--header-fixed-min-height: 70px;
	}
}


/* Utilities */

.has-primary-color{ color: var(--bs-primary) !important;}

.has-secondary-color{ color: var(--bs-secondary) !important;}

.has-primary-background-color{ background: var(--bs-primary) !important;}

.has-secondary-background-color{ background: var(--bs-secondary) !important;}

.has-white-background-color{ background: var(--bs-white) !important; }

.has-dark-background-color{	background: var(--bs-dark) !important;}

.has-black-background-color{background: var(--bs-black) !important;}

.has-light-background-color{background: var(--bs-light) !important;}


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	line-height: 1.3em;
	font-weight: 400;
	font-family: "Neue Montreal", Helvetica, sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

body.header-fixed{
	padding-top: var(--header-min-height);
}

@media screen and (min-width: 992px) {
	body{
		font-size: 18px;
	}
}


a{
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 500;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.ratio-4x3 {
	aspect-ratio: 4 / 3;	
}
.ratio-4x3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 4. Structure > Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
}

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
}
.container-fluid{
	max-width: 1920px;
}

/*
[class^="col-"]{
	padding-left: 15px;
	padding-right: 15px;
}*/

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

@media screen and (min-width: 1440px){
	.container,
	.container-fluid{
		padding: 0 70px;
	}
}

/* Keyframes */

@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounce {
	0% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -100%);
		-webkit-transform: translate(0, -100%);
		-moz-transform: translate(0, -100%);
	}
	100% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}          
}

/* Structure > extras */

/*.wow{
	visibility: hidden;
}*/

.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	min-width: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 500;
	border-radius: 80px;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary-text-emphasis);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary-text-emphasis);

    --bs-btn-active-bg: var(--bs-primary-text-emphasis);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary-text-emphasis);
}
.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-secondary{
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}
.btn-outline-secondary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);
}


/* Btn Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 32px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    width: 70px;
	    height: 70px;
	    font-size: 40px;
	}
}

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}


/* Structure */

.section{
	position: relative;
	padding: 40px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}


/* Card */
.card {
	background: var(--bs-white);
	border: none;
	border-radius: 24px;
	color: inherit;
	padding: 32px 24px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.card.secondary{
	background: var(--bs-secondary);
}


@media screen and (min-width: 992px){
	.card p {
		font-size: 21px;
	}

	.home .services .card p{
		font-size: 16px;
	}
}


/* Dots List */
.dots-list{
  margin: 0;
  padding: 0;
}
.dots-list li{
  list-style: none;
  position: relative;
  padding: 10px 0 16px 28px;   
}
.dots-list li .dot{
   content: "";
   position: absolute; 
   width: 20px;
   height: 20px; 
   border-radius: 50%;
   border: 1px solid var(--bs-secondary-text-emphasis); 
   left: 0;
   top: 14px;
}
.dots-list li .dot:before{
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bs-secondary-text-emphasis);
  top: calc(50% - 6px);
  left: calc(50% - 6px);
    /*transform: translate(-50%, -50%);*/
}

.dots-list.lined li::after{
  	content: "";
  	position: absolute;
  	left: 28px;    
  	bottom: 5px;
  	height: 1px;
  	width: 90%;
  	/*background: var(--bs-primary);   */
  	border-bottom: 1px solid var(--bs-primary);
}
.dots-list.lined li:last-child::after{
	/*background: transparent;*/
}
.dots-list.primary li .dot{
   border: 1px solid var(--bs-primary); 
}
.dots-list.primary li .dot:before{
  background: var(--bs-primary);

}

@media screen and (min-width: 992px){
	ul.column-count-2{
		/*column-count: 2;*/
		display: grid;
		grid-template-columns: 1fr 1fr; /* 2 columnas iguales */
		gap: 0 15px;
	}

	.dots-list.lined li.is-column-end::after {
    	/*background: transparent;*/
    	/*border: 0;*/
  	}
}


/* Structure > Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: #fff;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 150px;
}

.header.fixed{
	position: fixed;
	background: var(--bs-white);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}


/**/
body.open-menu .header .nav-menu .menu-line:nth-child(1),
.header .nav-menu.active .menu-line:nth-child(1) { 
	transform: rotate(45deg); width: 40px; margin-top: 14px; 
}
body.open-menu .header .nav-menu .menu-line:nth-child(3),
.header .nav-menu.active .menu-line:nth-child(3) { 
	transform: rotate(-45deg); width: 40px; margin-top: -16px; 
}
body.open-menu .header .nav-menu .menu-line:nth-child(2),
.header .nav-menu.active .menu-line:nth-child(2) { 
	opacity: 0; 
}

body.open-menu .header .navigation,
.header .navigation.active {
	display: block;
}


/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--bs-dark);
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-white);
}
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 500;
}
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-primary);
}

.header .navigation .menu li.menu-contact a{
	padding: 8px 32px;
	color: var(--bs-white);
	background: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	border-radius: 50px;
	transition: 0.3s all;
}


.header .navigation .menu li.menu-contact a:hover{
	background: var(--bs-primary-text-emphasis);
	border-color: var(--bs-primary-text-emphasis);
}

.header .navigation .menu li .sub-menu{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .navigation .menu li.open-submenu > ul{
	display: block;
}

.header .navigation .language{

}
.header .navigation .language li {
	display: inline-block;
	vertical-align: middle;
}
.header .navigation .language li a{
	text-transform: uppercase;
	padding: 0 2px;
	font-size: 16px;
}
.header .navigation .language li.current-lang{
	font-weight: 700;
}

@media screen and (min-width: 1300px) {

	.header .logo {
		max-width: 209.5px;
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background: transparent;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}

	.header .navigation .menu {
		
	}

	.header .navigation .menu li:not(.menu-contact) a {
		padding: 34px 10px;
	}

	.header.fixed .navigation .menu li:not(.menu-contact) a{
		padding: 24px 10px;
	}

	.header .navigation .menu li a {
		font-size: 16px;
	}

	.header .navigation .menu li a {
		text-align: left;
	}
	.header .navigation .menu li.menu-contact{
		margin-left: 10px;
	}
	

	.header .navigation .socialmedia {
		margin-left: 25px;
	}
	.header .navigation .socialmedia li a{
		font-size: 20px;
	}

	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: var(--header-min-height);
		left: 0;
		width: 150px;
		background: var(--bs-white);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
	}
	.header .navigation ul li:hover > .sub-menu{
		display: block;
	}
	.header .navigation .menu li .sub-menu li{
		display: block;
		margin: 0;
	}
	.header .navigation .menu li .sub-menu li a{
		display: block;
		padding: 10px 15px;
		font-size: 15px;
		color: var(--bs-dark);
		border-bottom: 1px solid #eee;
	}
	.header .navigation .menu li .sub-menu li:last-child a{
		border-bottom: 0;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
		border-bottom-color: var(--bs-primary); 
	}

	.header .navigation .menu li .sub-menu li ul{
		top: 0;
		left: 150px;
		width: 200px;
	}
	.header .navigation .menu li .sub-menu li ul ul{
		left: 200px;
	}

	/* Fixed */
	.header.fixed{
		min-height: var(--header-fixed-min-height);
	}
	.header.fixed .logo{
		margin: 14px 0;
	}
	.header.fixed .navigation .menu li .sub-menu{
		top: var(--header-fixed-min-height);
	}

	.header .navigation .language {
		margin-left: 15px;
		font-size: 16px;
	}

}

@media screen and (max-width: 1299px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}

	.header .navigation .menu li.menu-contact{
		margin-top: 10px;
		display: inline-block;
	}
}


/* Components > Forms */

label{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
	border-color: var(--bs-dark);
	border-radius: 80px;
}

.form-select:focus,
.form-control:focus{
    box-shadow: none !important;
    border-color: var(--bs-dark);
}
textarea.form-control{
	border-radius: 15px;
}

/* Form checkbox */

.form-check{
	display: inline-block;
}

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	margin: 0;
	font-weight: 400;
}

/* Form files */

.input-file-group{
	position: relative;
	display: block;
	padding: 30px 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}

.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}

/* Forms > Show password */

.show_password{
	position: absolute;
	bottom: 0;
	right: 15px;
	padding: 15px;
}
.show_password.active,
.show_password:hover{
	color: #f58426;
}

/* Components > modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}


/* Components > socialmedia */

.socialmedia h4{
	font-size: 18px;
	line-height: 24px;
}

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 10px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 18px;
}
ul.socialmedia li a:hover{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){	
	ul.socialmedia{
		justify-content: flex-start;
	}
	ul.socialmedia li a{
		font-size: 21px;
	}
}


/* Components > Slider  */

.slider{
	position: relative;
}

/* Components > Slider > Swiper */

.slider.swiper:has(.swiper-pagination){
    padding-bottom: 60px;
}
.slider.swiper .swiper-pagination {
	bottom: 0;
}
.slider.swiper .swiper-pagination-bullet{
	background: var(--bs-primary);
	opacity: 0.3;
}
.slider.swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

.slider.swiper .swiper-button-next,
.slider.swiper .swiper-button-prev{
	position: absolute;
	width: 45px;
	height: 45px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: contain;
}
.slider.swiper .circle.swiper-button-next,
.slider.swiper .circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}
.slider.swiper .swiper-button-next { background-image: url('assets/img/icons/icon-arrow-next.svg'); }

.slider.swiper .swiper-button-prev:after,
.slider.swiper .swiper-button-next:after{
	content: none;
}


/* Components > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
	line-height: 1em;
}

.title h1{
	font-size: 36px;
	
}
.title h2{
	font-size: 36px;
}
.title h3{
	font-size: 32px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}

.bg-dark .title span{
	color: var(--bs-secondary-text-emphasis);
}
.title p:not(.subtitle){
	margin: 0;
	margin-top: 8px;
	line-height: 1.3em;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 14px;
	color: var(--bs-primary);
}

.title p.description {
	font-size: 17px;
	line-height: 1.2em;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 550px;
}
.title.max-width-lg{
	max-width: 941px;
}

.title .p-sm{
	max-width: 450px;
}

.title .p-xs{
	max-width: 390px;
}

/*.title.max-width p:not(.subtitle) {
	max-width: 370px;
}*/

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 84px;
	}
	.title h2{
		font-size: 60px;
	}
	.title h3{
		font-size: 48px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p:not(.subtitle){
		font-size: 18px;
		margin-top: 16px;
	}
	.title p.description {
		font-size: 21px;
	}
	.title .btn{
		margin-top: 50px;
	}

}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: var(--bs-primary);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-primary);
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}

/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* Components > Share */

.share  {
	display: flex;
	align-items: center;
	gap: 20px;
}
.share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 21px;
	color: var(--bs-body-color);
}
.share ul li a:hover{
	color: var(--bs-primary);
}


/* Components > Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60dvh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	transform: rotate(90deg);
	color: var(--bs-primary);
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}



/* Map Bg */

.image.map {
	position: relative;
}
.map-bg{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  /* background: rgba(255,255,255,.25); */
  position: absolute;
  aspect-ratio: 1 / 1;
  top: 60px;
  right: -29px;
}

.map-bg::before,
.map-bg::after{
  content:"";
  position:absolute;
  inset: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.2);
  border: 25px solid rgba(255,255,255,.20);
  animation: pulse 2.2s ease-out infinite;
}

.map-bg::after{
  animation-delay: .7s;
}

@keyframes pulse{
  0%   { transform: translate(-50%, -50%) scale(.2); opacity: .35; }
  100% { transform: translate(-50%, -50%) scale(6); opacity: 0; }
}


/*
	Modules
*/

/* Module > Presentation */
.presentation{
    height: 100dvh;
    position: fixed;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 9999;
    background: var(--bs-body-bg);
}

.presentation .container{
  	position: relative;
  	height: 100%;
  	align-content: end;
}

.presentation .mask{
  position: absolute;
  inset: 0;            
  z-index: 1;
  opacity: 0;
  clip-path: circle(205px at 50% 50%);
  -webkit-clip-path: circle(205px at 50% 50%);
  will-change: clip-path;
}


.presentation .mask video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.presentation .title{
  position: relative;
  z-index: 4;
}

.presentation .title h1 span{
  text-transform: uppercase;
  color: var(--bs-body-color);
  font-weight: 500;
  display: block;
}

.presentation .logo{
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translate(-50%, -50%);
  max-width: 410px;
  z-index: 3;
  will-change: opacity, transform;
  pointer-events: none; 
}


.presentation .arrow-down{
  display: block;
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 53px;
  height: 66px;
  background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
  background-size: contain;
  animation: bounce 3s infinite;
  z-index: 4;
}

.presentation .arrow-down.light {
	filter: brightness(20) saturate(0);
}

@media screen and (min-width: 992px) {
  .presentation .title h1{
    font-size: 140px;
  }

  .presentation .arrow-down {
  	left: 70px;
  }
}


@media screen and (max-width: 991.99px) {
	.presentation .title{
		margin-bottom: 120px;
	}

	.presentation .logo{
		bottom: auto;
		top: 50%;
	}
}


/* Modules > Banner */

.banner{
}

.banner .title{
	position: relative;
	max-width: 920px;
}

.banner .title p{
	max-width: 500px;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    left: calc(50% - 10px);
    bottom: 5%;
    width: 45px;
    height: 25px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
    background-size: contain;
    animation: bounce 3s infinite;
    z-index: 3;
}

.banner .shape{
	position: absolute;
	right: -70px;
	top: 100px;
}

.banner .shape.rings {
	right: -150px;
    top: 209px;
}

.banner .shape svg {
	overflow: visible;
}

.bannner .image img {
	aspect-ratio: 1.85 / 1;
	object-fit: cover;
}

@media screen and (max-width: 991.99px){
	.banner .shape.loops{
		top: 20px;
		right: auto;
	}
	.banner .shape.loops svg{
		max-height: 120px;
		max-width: 50%;
	}

	.banner .shape.rings{
		top: 0;
	}
	.banner .shape.rings svg{
		max-height: 150px;
	}

	.banner .shape.path{
		top: -50px !important;
        right: auto;
        left: -20px;
		transform: rotate(180deg);
	}
	.banner .shape.path svg{
		max-height: 220px;
		transform: translateX(36%);
	}

	.banner .title{
		padding-top: 120px;
	}
}
.banner .arrow-right{
	position: absolute;
    right: 12%;
    top: 13%;
}

@media screen and (max-width: 991.99px) {
	.banner .arrow-right{
		display: none;
	}
}


/* Module > Tab Menu */

.module-tabs .tabs {
	min-height: 55px;
}
.module-tabs .tabs ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    justify-content: center;
    border-bottom: solid 1px #CACACA;
}
.module-tabs .tabs ul li a {
    display: block;
    padding: 15px 12px;
    position: relative;
}
.module-tabs .tabs ul li a.active,
.module-tabs .tabs ul li a:hover{
	color: var(--bs-primary);
}

.module-tabs .tabs ul li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--bs-primary);
    transition: 0.3s all;
}
.module-tabs .tabs ul li.current-menu-item a:before,
.module-tabs .tabs ul li a.active:before,
.module-tabs .tabs ul li a:hover:before{
    left: 10%;
    width: 80%;
}
.module-tabs .tabs.fixed{
	position: fixed;
	top: 70px;
	width: 100%;
	z-index: 1;
	box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 0.05);
}


/* Modules > Faqs */
.module-accordion .items .item{
	position: relative;
	margin-bottom: 3px;
	border-bottom: solid 1px var(--bs-body-color);
	padding: 20px 0;
}

.module-accordion .items .item .question{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 500;
	padding-right: 50px;

}
.module-accordion .items .item .question:after {
    content: '+';
    position: absolute;
    top: calc(50% - 10px);
    right: 0px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.module-accordion .items .item .question[aria-expanded="true"]{
	margin-bottom: 15px;
}
.module-accordion .items .item .question[aria-expanded="true"]:after{
	content: '-';
}

.module-accordion .items .item .answer{
	font-weight: 400;
	max-width: 1050px;
}

.module-accordion .items .item .answer a {
	text-decoration: underline;
}

/* Module > CTA */
.module-cta article {
	height: 60dvh;
	display: flex;
	align-items: center;
	padding: 50px 0;	
	background-size: cover;	
	border-radius: 16px;
	color: var(--bs-white);
}

.module-cta article .title {
	max-width: 845px;
	margin: 0 auto;
}
.module-cta article .title h2{
	font-size: 32px;
	font-weight: 400;
}

@media screen and (min-width: 992px) {
	.module-cta article {
		height: 90dvh;
	}
	.module-cta article .title h2{
		font-size: 42px;
	}
}

/* Module > Contact */
.module-contact .vias {
	font-size: 14px;
}
.module-contact .socialmedia {
	color: var(--bs-primary);
}

/* Module > RRHH */
.module-rrhh .title a:not(.btn){
	font-weight: 700;
}

.module-rrhh .shape {
	margin-top: 20px;
}

@media screen and (min-width: 992px) {
	.module-rrhh .shape {
		margin-top: -85px;
	}
}


/* Page > Home */
.page.home .proposal .images {
	position: relative;
}
.page.home .proposal .images .image-4{
	position: absolute;
	top: 80px;
	left: -80px;
	max-width: 220px;
}
.page.home .proposal .images .image-4 img{
	border-radius: 0 !important;
}

.page.home .about{
	background: var(--bs-dark) no-repeat center;
	background-size: cover;	
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page.home .about .image {
	position: absolute;
	top: 50px;
	left: 20px;
	max-width: 338px;
}

.page.home .about h2{
	font-size: 21px;
	font-weight: 400;
}
.page.home .about h2 strong{
	font-weight: 500;
}

@media screen and (min-width: 992px) {
	.page.home .about h2{
		font-size: 48px;
	}
}


.page.home .infrastructure .items {
	max-width: 422px;
}
.page.home .infrastructure .items .item:not(:last-child){
	border-bottom: solid 1px var(--bs-primary);
}

.page.home .infrastructure .items article .number{
	font-size: 28px;
	margin: 0;
	line-height: 1em;
	color: #194AA9;
}

@media screen and (min-width: 992px) {
	.page.home .infrastructure .items article .number{
		font-size: 42px;
	}
}


.page.home .solutions .images {
	position: relative;
}
.page.home .solutions .images .image-4{
	position: absolute;
	right: -70px;
	top: -90px;
	max-width: 230px;
}
.page.home .solutions .images .image-4 img{
	border-radius: 0  !important;
}


.page.home .free-zone .items h5{
	padding: 16px 24px;
	border: 1px solid #002C5C;
	border-radius: 80px;
	text-transform: uppercase;
	font-size: 15px;
}

.page.home .free-zone .items ul li:before{
	content: '';	
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	top: 20px;
}

.page.home .free-zone .items ul.check li:before{
	background: url('assets/img/icons/icon-check.svg') no-repeat center;
	background-size: contain;
}
.page.home .free-zone .items ul.uncheck li:before{
	background: url('assets/img/icons/icon-uncheck.svg') no-repeat center;
	background-size: contain;
}

.page.home .free-zone .items ul li {
	border-bottom: solid 1px var(--bs-body-color);
	padding: 18px 40px;
	font-size: 14px;
}
.page.home .free-zone .items ul li:last-child{
	border-bottom: none;
}
.page.home .free-zone .items ul li p{
	max-width: 440px;
}

@media screen and (min-width: 992px) {
	.page.home .free-zone .items h5{
		font-size: 19px;
	}
	.page.home .free-zone .items ul li{
		font-size: 18px;
	}
}

/* Page > About */
@media screen and (min-width: 992px) {
	.page.about .banner .shape{
	    right: -160px;
	    top: -150px;
	}
}
@media screen and (max-width: 991.99px) {
	.page.about .banner h1 br{
		display: none;
	}
}

.page.about .mission {
	border-bottom: solid 1px var(--bs-primary);
}
.page.about .mission .items .item:not(:last-child){
	border-bottom: solid 1px var(--bs-primary);
}
.page.about .mission .items .item:not(:first-child){
	padding-top: 50px;
}

.page.about .mission .items .item h3,
.page.about .values .title h3{
	position: relative;
	padding-left: 50px;
}
.page.about .mission .items .item .dot,
.page.about .values .title h3 .dot{
   content: "";
   position: absolute; 
   width: 40px;
   height: 40px; 
   border-radius: 50%;
   border: 1px solid var(--bs-secondary-text-emphasis); 
   left: 0;
   top: 50%;
   transform: translateY(-50%);
}
.page.about .mission .items .item .dot:before,
.page.about .values .title h3 .dot:before{
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bs-secondary-text-emphasis);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.page.about .mission .shape svg{
	max-width: 245px;
	position: absolute;
	right: 0;
	bottom: 0;
}

@media screen and (max-width: 991.99px){
	.page.about .mission .shape svg{
		max-width: 130px;
        max-height: 100px;
        bottom: -30px;
	}
}

.page.about .values .card p{
	max-width: 600px;
}

.page.about .image.map {
    max-height: 650px;
    overflow: hidden;
}


.page.about .history .items article{
	position: relative;
	padding-top: 38px;
}

.page.about .history .items article:before{
	content: '';
	width: 110%;
	height: 1px;
	background: var(--bs-secondary-text-emphasis);
	position: absolute;
	left: 30px;
	top: 15px;
}


.page.about .history .items article .year .dot{
   content: '';
   position: absolute; 
   width: 30px;
   height: 30px; 
   border-radius: 50%;
   background: var(--bs-body-bg);
   border: 1px solid var(--bs-secondary-text-emphasis); 
   left: 10px;
   top: 0;
}
.page.about .history .items article .year .dot:before{
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bs-secondary-text-emphasis);
  left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page.about .history .items article .year h5{
	font-size: 24px;
	font-weight: 400;
}

.page.about .history .items article .data{
	padding: 24px 12px 12px;
	border: 1px solid var(--bs-body-color);
	border-radius: 12px;
	margin-top: 70px;
	position: relative;
	margin-left: 20px;
}

.page.about .history .items article .data:before{
	content: '';
	width: 1px;
	height: 40px;
	position: absolute;
	top: -60px;
	left: 0px;
	background: var(--bs-secondary-text-emphasis);
}
.page.about .history .items article .data:after{
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: solid 1px var(--bs-secondary-text-emphasis);
	top: -22px;
	left: -5px;
	background: var(--bs-body-bg);
}

/* Page > Free Zone */


/* Page > Solutions */
.page.solutions .banner .shape{
	top: -100px;
}

@media screen and (min-width: 992px) {
	.page.solutions .solutions .items .card{
		padding: 60px 48px;
	}
}

.page.solutions .benefits .items article .number{
	color: var(--bs-secondary-text-emphasis);
	border-bottom: solid 1px var(--bs-primary);
	font-size: 36px;
	line-height: 36px;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.page.solutions .benefits .items article h4{
	color: #194AA9;
	font-size: 24px;
}

/*.page.solutions .benefits .items article p{
	max-width: 265px;
}*/


/* Page > Services */
.page.services .steps .items article .icon{
	position: relative;
}
@media screen and (min-width: 992px) {
	.page.services .steps .items .item:not(:last-child) article:before{
		content: '';
		width: 100%;
		height: 1px;
		position: absolute;
		background: var(--bs-primary);
		left: 50%;
		top: 57px;
	}	
}




.page.services .benefits .images .image-4{
	position: absolute;
	top: 50px;
	left: 30%;
	max-width: 243px;
}

.page.services .benefits .images .image-4 img{
	border-radius: 0 !important;
}

@media screen and (min-width: 992px) {
	.page.services .benefits {
		height: 100vh;
	}
	.page.services .benefits .images .image{
		position: absolute;
	}

	.page.services .benefits .images .image-1{
		top: 0;
		left: -70px;
	}

	.page.services .benefits .images .image-2{
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.page.services .benefits .images .image-3{
		right: -20px;
        top: 120px;
        max-width: 280px;
	}

	.page.services .benefits .images .image-4{
		top: auto;
		bottom: 150px;
		left: 30%;
		max-width: 243px;
	}

	.page.services .benefits .title.max-width {
		margin-left: 30% !important;
	}
}
@media screen and (min-width: 1920px) {
	.page.services .benefits {
		height: 80vh;
	}
}

@media screen and (max-width: 991.99px) {
	.page.services .benefits .images .image-4{
		display: none;
	}
}


/* Search Form */

.search-form {
	width: 415px;
	max-width: 100%;
}
.search-form .form-control{
	border-radius: 0;	
	border: 0;
	border-bottom: solid 1px #BECCDB;
	padding: 0;
}
.search-form .form-control::placeholder{
	color: #BECCDB;
}

.search-form .btn {
	padding: 0;
	color: #BECCDB;
	min-width: auto;
}


/* Page > Blog */
/*@media screen and (min-width: 992px) {
	.page.blog .banner .shape{
	    right: -160px;
	    top: -150px;
	}
}*/

@media screen and (min-width: 992px){
	.page.blog .banner .shape.rings{
		top: auto;
		bottom: 0;
	}
}
.page.blog .tab_menu{
	min-height: 42px;
	width: 100%;
	color: #fff;
	background: var(--bs-dark);
	transition: 0.3s all;
	align-content: center;
}

.page.blog .tab_menu ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    margin: 0;
    white-space: nowrap;
    overflow: auto;
}
.page.blog .tab_menu ul li a {
    display: block;
    font-size: 16px;
}
.page.blog .tab_menu ul li a:hover{
	color: var(--bs-primary);
}

body.header-fixed .page.blog .tab_menu {
	position: fixed;
	top: var(--header-fixed-min-height);
	z-index: 88;
	-webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}



body.header-fixed .page.blog:not(.is-archive) {
	padding-top: 42px;
}

@media screen and (min-width: 992px){
	.page.blog .tab_menu ul {
	    justify-content: center;
	    gap: 120px;
	}
}

@media screen and (min-width: 992px){
	.page.blog.is-archive .banner .title h1{
		font-size: 58px;
	}
}


/* Pages > Contact */

.page.contact #map{
	position: relative;
	background-color: #eee;
	width: 100%;
	height: 600px;
}
.page.contact .map .maparea{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#map .leaflet-control-attribution {
    display: none;
}

/* Pages > Thanks */

.page.page-thanks .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Internal */

.page.internal .content .title{
	text-align: center;
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page 404 */

.page.page-404 .content,
.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

.page.page-maintenance .content{
	min-height: 100vh;
}



/*
	CPT Feed
*/

/* Feed > General */

.feed article{
	position: relative;
}
.feed article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.feed article .thumbnail{
	display: block;
	aspect-ratio: 1.35 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	overflow: hidden;
	border-radius: 12px;
}
.feed article .thumbnail img{
	aspect-ratio: 1.35 / 1;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}

/* Feed > Blog */


.feed-blog article .data {
	padding: 24px 0;
}
.feed-blog article .data h2{
	font-size: 24px;
	font-weight: 500;
}


/* Single > Blog*/
.single.blog .intro .title{
	max-width: 1100px;
}

.single.blog .intro .thumbnail img{
	aspect-ratio: 1.83 / 1;
	object-fit: cover;
	border-radius: 12px;
}


.single .content article img{
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 30px 0;
}

.single .content article p strong{
	font-weight: 500;
	font-size: 18px;
}

.single .go-back {
	display: block;
}

@media screen and (min-width: 992px){
	.single.blog .intro .title h1 {
		font-size: 60px;
	}

	.single .content article p strong{
		font-size: 20px;
	}
}

/* Structure > Footer */

.footer a:hover{
	text-decoration: underline;
}

.footer .widgets{
	padding: 50px 0;
	text-align: center;
	font-size: 16px;
}
.footer .widgets h4{
	margin: 0;
	font-size: 15px;
	line-height: 28px;
	font-weight: 600;
	text-transform: uppercase;
}
.footer .widgets .logo{
	display: block;
	width: 179px;
	margin: 0 auto 30px;
}

.footer .widgets .menu{
	margin: 0 0 30px;
	font-size: 14px;
}
.footer .widgets .menu li a{
	display: inline-block;
	margin-bottom: 8px;
}


.footer .widgets .menu li.menu-contact a{
	padding: 8px 32px;
	color: var(--bs-white);
	background: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	border-radius: 50px;
	transition: 0.3s all;
}

.footer .copyright {
	padding: 80px 0 0 0;
}
.footer .copyright p{
	margin: 0;
	font-size: 13px;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 80px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}

	.footer .menu {
		display: flex;
		gap: 35px;
		align-items: center;
		justify-content: end;
	}

	.footer .widgets .menu li a{
		margin: 0;
	}	
}
