/* ****  EVITAR EL SCROLL HORIZONTAL EN LA WEB ***************** */
	body {
		font-size: 100% !important; 
		max-width: 100% !important;
		overflow-x: hidden !important; 
        margin: 0px !important;  
		/* Remove the Gap below the Footer - CSS WordPress */
		height: 100%;
	}
	p { word-wrap: break-word; }
	.elementor-page {  display: flex; flex-direction: column; min-height: 100vh;}
	.elementor-location-footer {margin-top: auto;}
	/* REMOVE TEXT EXTRA RETURNS **************************************************** */
	.elementor-widget-text-editor p:last-child { margin-bottom: 0px !important;  }
	/* ******************************************************************************* */
	/* COLOREAR BARRA DE SCROLL NAVEGADOR -------------------------------------------- */
	::-webkit-scrollbar {
		width: 14px;
	}
	/* COLOR DE LA BARRA QUE SE MUEVE */
	::-webkit-scrollbar-thumb {
		background-color: #191A19;
		border-radius   : 0px;
	}
	/* COLOR DE LA BARRA DE FONDO */
	::-webkit-scrollbar-track {
		background-color: #B5B5B5;
		border-radius   : 0px;
	}
	/* FONDO FIJO PARA TABLET Y MÓVIL CON ELEMENTOR. ********************************* */ 
	@media screen and (max-width: 767px) {
	  .fondoFijo {
		background-attachment: fixed !important;
	  }
        html, body {
            background-attachment: fixed !important;
        }
	}

	/*** Title: Align Icon List items to the top, instead of the middle */
	.elementor-widget .elementor-icon-list-item,
	.elementor-widget .elementor-icon-list-item a {
		align-items: start !important;
	}
	.elementor-widget .elementor-icon-list-icon {
		padding-top: 5px !important;
	}	
    
    
    /*** Eliminar la opacidad del texto de entrada en el formulario Elementor  ***/
    .elementor-field-group .elementor-field-textual::placeholder {
    	opacity: 1 !important;
    }

    /* Square */
    .ratio-1-1 img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        max-width: 100%;
    }

    /* Landscape Orientation */
    .ratio-16-9 img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        max-width: 100%;
    }

    .ratio-1-91-1 img {
        aspect-ratio: 1.91 / 1; /* FB social share */
        object-fit: cover;
        max-width: 100%;
    }

    /* Portrait Orientation */
    .ratio-9-16 img {
        aspect-ratio: 9 / 16;
        object-fit: cover;
        max-width: 100%;
    }  

	/* variables (edit here)*/
/* https://lytboxacademy.com/fluid-containers-for-elementor-with-clamp/ */
:root {
    /* Global Padding Variables - Editable */
    /* Left and Right Padding All /Sections/Containers*/
    --fluid-side-padding-min: 1.25rem; /* 20px */
    --fluid-side-padding-max: 5rem;   /* 80px */

    /* Top and Bottom Padding All Containers*/
    --section-xxl-padding-min: 9.375rem; /* 150px */
    --section-xxl-padding-max: 10rem; /* 160px */ 
  
    --section-xl-padding-min: 6.875rem; /* 110px */
    --section-xl-padding-max: 7.5rem; /* 120px */
  
    --section-l-padding-min: 5.625rem; /* 90px */
    --section-l-padding-max: 6.25rem; /* 100px */
  
    --section-m-padding-min: 5rem; /* 80px */
    --section-m-padding-max: 5rem; /* 80px */
  
    --section-s-padding-min: 3.75rem; /* 60px */
    --section-s-padding-max: 3.75rem; /* 60px */
  
    --section-xs-padding-min: 2.5rem; /* 40px */
    --section-xs-padding-max: 2.5rem; /* 40px */
  
    --section-xxs-padding-min: 1.5rem; /* 24px */
    --section-xxs-padding-max: 1.5rem; /* 24px */
    
    --section-header-padding-min: 1.25rem; /* 20px */
    --section-header-padding-max: 1.25rem; /* 20px */

  
    /* Hero Sections Height Variable */
    --section-hero-height: 100vh; /* 100% the screen height */
  
    /* Offset Padding for Overlay Headers */
    --section-offset-header: 80px; /* Adjust to the overlay header's negative margin */

    /* Width For Narrow Sections*/
    --section-narrow: 62.5rem; /* 1000px */
    --section-narrow-xs: 45rem; /* 720px */
  }

/* CSS Template (do not edit below) */
  /* Section/Container Padding - Fluid Variants */
  .section-xxl {
    padding-top: clamp(var(--section-xxl-padding-min), 1.087vw + 9.13rem, var(--section-xxl-padding-max));
    padding-bottom: clamp(var(--section-xxl-padding-min), 1.087vw + 9.13rem, var(--section-xxl-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-xl {
    padding-top: clamp(var(--section-xl-padding-min), 1.087vw + 6.63rem, var(--section-xl-padding-max));
    padding-bottom: clamp(var(--section-xl-padding-min), 1.087vw + 6.63rem, var(--section-xl-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-l {
    padding-top: clamp(var(--section-l-padding-min), 1.087vw + 5.38rem, var(--section-l-padding-max));
    padding-bottom: clamp(var(--section-l-padding-min), 1.087vw + 5.38rem, var(--section-l-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-m {
    padding-top: clamp(var(--section-m-padding-min), 0vw + 5rem, var(--section-m-padding-max));
    padding-bottom: clamp(var(--section-m-padding-min), 0vw + 5rem, var(--section-m-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-s {
    padding-top: clamp(var(--section-s-padding-min), 0vw + 3.75rem, var(--section-s-padding-max));
    padding-bottom: clamp(var(--section-s-padding-min), 0vw + 3.75rem, var(--section-s-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-xs {
    padding-top: clamp(var(--section-xs-padding-min), 0vw + 2.5rem, var(--section-xs-padding-max));
    padding-bottom: clamp(var(--section-xs-padding-min), 0vw + 2.5rem, var(--section-xs-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-xxs {
    padding-top: clamp(var(--section-xxs-padding-min), 0vw + 1.5rem, var(--section-xxs-padding-max));
    padding-bottom: clamp(var(--section-xxs-padding-min), 0vw + 1.5rem, var(--section-xxs-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  .section-header {
    padding-top: clamp(var(--section-header-padding-min), 0vw + 1.25rem, var(--section-header-padding-max));
    padding-bottom: clamp(var(--section-header-padding-min), 0vw + 1.25rem, var(--section-header-padding-max));
    padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
    padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max))!important;
  }
  
  /* Hero Container/Sections Height */
  .section-hero {
    min-height: var(--section-hero-height)!important;
  }

  .section-hero .e-con-inner {
    justify-content: center!important;
}
  
  /* Full Width Sections - No Side Padding */

  .section-full div {
    max-width: 100%!important;
  }
  

  /* Narrow Sections */
  .section-narrow .e-con-inner {
    max-width: var(--section-narrow)!important;
  }

  .section-narrow-xs .e-con-inner {
    max-width: var(--section-narrow-xs)!important;
  }


  /* Offset Padding for Overlay Headers */
  .section-offset {
    padding-top: calc(var(--section-offset-header) + var(--section-xxl-padding-min));
  }

    /* ELEMENTOS FLOTANTES */
.flotar { animation: float 2.5s ease-in-out infinite; }
@keyframes float {
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -50px); }
	100% { transform: translate(0, 0);}
}
/* ******** FONT SIZES ******************************************************* */
.xxxlarge :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(3.00rem, 2.54545rem + 1.93939vw, 4.00rem);
}
.xxlarge :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(2.50rem, 2.04545rem + 1.93939vw, 3.50rem);
}
.xlarge :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(2.00rem, 1.54545rem + 1.93939vw, 3.00rem);
}
.large :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.50rem, 1.04545rem + 1.93939vw, 2.50rem);
}
.xmedium :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.25rem, 0.90909rem + 1.45455vw, 2.00rem);
}
.medium :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.20rem, 1.06364rem + 0.58182vw, 1.50rem);
}
.small :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.10rem, 1.03182rem + 0.29091vw, 1.25rem);
}
.xsmall :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(1.00rem, 0.94545rem + 0.23273vw, 1.12rem);
}
.xxsmall :is(h1, h2, h3, h4, h5, h6, p) {
    font-size: clamp(0.82rem, 0.76545rem + 0.23273vw, 0.94rem);
}