.elementor-kit-6{--e-global-color-primary:#F6F6F6;--e-global-color-secondary:#F6F6F6;--e-global-color-text:#2C2C2C;--e-global-color-accent:#D3EFD5;--e-global-color-54f6f0d:#D3EFD5;--e-global-color-9fd1ecf:#FAFAFA;--e-global-typography-primary-font-family:"Nohemi";--e-global-typography-primary-font-size:70px;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:72px;--e-global-typography-secondary-font-family:"Nohemi";--e-global-typography-secondary-font-size:40px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-line-height:42px;--e-global-typography-secondary-letter-spacing:0.5px;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:17px;--e-global-typography-text-font-weight:500;--e-global-typography-text-line-height:22px;--e-global-typography-accent-font-family:"Nohemi";--e-global-typography-accent-font-size:14px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-text-decoration:none;--e-global-typography-accent-line-height:16px;--e-global-typography-accent-letter-spacing:1.2px;--e-global-typography-11ff7d3-font-family:"Nohemi";--e-global-typography-11ff7d3-font-size:28px;--e-global-typography-11ff7d3-font-weight:700;--e-global-typography-11ff7d3-line-height:32px;--e-global-typography-11ff7d3-letter-spacing:0.5px;--e-global-typography-9144d77-font-family:"Montserrat";--e-global-typography-9144d77-font-size:16px;--e-global-typography-9144d77-font-weight:400;--e-global-typography-9144d77-line-height:22px;--e-global-typography-dae39bb-font-family:"Montserrat";--e-global-typography-dae39bb-font-size:14px;--e-global-typography-dae39bb-font-weight:400;--e-global-typography-dae39bb-line-height:20px;text-decoration:none;}.elementor-kit-6 a{color:#7E7E7E;text-decoration:none;}.elementor-kit-6 a:hover{color:var( --e-global-color-primary );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-primary-font-size:45px;--e-global-typography-primary-line-height:50px;--e-global-typography-secondary-font-size:40px;--e-global-typography-secondary-line-height:42px;--e-global-typography-secondary-letter-spacing:1px;--e-global-typography-accent-font-size:15px;--e-global-typography-accent-line-height:18px;--e-global-typography-11ff7d3-font-size:25px;--e-global-typography-11ff7d3-line-height:1em;--e-global-typography-11ff7d3-letter-spacing:1.1px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html {
    overflow-x: hidden;
}
	
	
.cursor {
  position: fixed;
  pointer-events: none;
  opacity: 0;
}

.cursor-small {
  top: 0px;
  left: 0px;
  z-index: 1;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background-color: red;
}

	.cursor-big {
	top: 0px;
  left: 0px;
	height: 100px;
	width: 100px;
	align-items: center;
  background-color: red;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 15px;
  justify-content: center;
  padding: 10px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: color 0.5s ease;
  z-index:9999;
	}

	p{
		margin-top: 10px;
	}

   /*	disable custom cursor on tablet & mobile */
   @media only screen and (max-width: 768px) {
    .cursor-small{
        display:none;
     }
    
   }

.fx-card{ position: relative; overflow: hidden; border-radius: 16px; /* borde neutro sutil (sin glow) */ border: 1px solid rgba(44,44,44,.18); background: rgba(239,239,251,.35); /* opcional: quítalo si no quieres fondo */ } /* capa líquida principal */ .fx-card::before{ content:""; position:absolute; inset: 0; /* <-- clave: ya no gigante */ pointer-events:none; opacity: 0; background: radial-gradient(120% 90% at 20% 30%, rgba(242,184,172,.22) 0%, rgba(242,184,172,0) 55%), radial-gradient(110% 80% at 80% 70%, rgba(242,184,172,.16) 0%, rgba(242,184,172,0) 60%), radial-gradient(90% 70% at 55% 45%, rgba(44,44,44,.10) 0%, rgba(44,44,44,0) 62%); filter: blur(14px); transform: translate3d(-10%, 10%, 0) scale(1.25); transition: opacity .35s ease, transform .8s ease; } /* highlight interior (da sensación “wet glass”) */ .fx-card::after{ content:""; position:absolute; inset: 1px; border-radius: 15px; pointer-events:none; opacity: 0; background: linear-gradient(135deg, rgba(242,184,172,.18), rgba(242,184,172,0) 55%), linear-gradient(0deg, rgba(255,255,255,.10), rgba(255,255,255,0) 60%); transition: opacity .35s ease; } /* hover: aparece y se mueve */ .fx-card:hover::before{ opacity: 1; transform: translate3d(10%, -10%, 0) scale(1.25); } .fx-card:hover::after{ opacity: 1; } /* Mantener texto del botón blanco siempre */ .fx-card .elementor-button, .fx-card .elementor-button:visited, .fx-card .elementor-button:hover, .fx-card .elementor-button:focus{ color: #ffffff !important; } .fx-card .elementor-button .elementor-button-text{ color: #ffffff !important; } /* Blindar botón dentro de la card */ .fx-card .elementor-button, .fx-card .elementor-button:link, .fx-card .elementor-button:visited, .fx-card .elementor-button:hover, .fx-card .elementor-button:active, .fx-card .elementor-button:focus{ color: #ffffff !important; } .fx-card .elementor-button .elementor-button-text{ color: #ffffff !important; } /* Si Elementor aplica color al wrapper */ .fx-card:hover .elementor-button, .fx-card:hover .elementor-button *{ color: #ffffff !important; }/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 100;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-Thin-BF6438cc57e2011.woff') format('woff');
}
@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 200;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-ExtraLight-BF6438cc581502c.woff') format('woff');
}
@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-Light-BF6438cc5702321.woff') format('woff');
}
@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-Medium-BF6438cc57ddecd.woff') format('woff');
}
@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-Regular-BF6438cc579d934.woff') format('woff');
}
@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-SemiBold-BF6438cc57db2ff.woff') format('woff');
}
@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-Bold-BF6438cc577b524.woff') format('woff');
}
@font-face {
	font-family: 'Nohemi';
	font-style: normal;
	font-weight: 800;
	font-display: auto;
	src: url('https://www.elopez.co.uk/wp-content/uploads/2026/02/Nohemi-ExtraBold-BF6438cc5761ae2.woff') format('woff');
}
/* End Custom Fonts CSS */