@charset "UTF-8";
/*
 * CSS
 * Global
 */
/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowoStarter
 * File: CSS Reset
 */
/* 
 * BOX MODEL
 * Universal Box Sizing - https://css-tricks.com/box-sizing/ 
 */
@import url("https://fonts.googleapis.com/css2?family=Gasoek+One&family=Montserrat:wght@400;500;600;700;800&display=swap");
*, *:before, *:after {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	
	font: inherit;
	vertical-align: baseline;
}
*/
/* COWOWO CSS RESET =============================================================== */
html, body,
div, span,
h1, h2, h3, h4, h5, h6,
p,
pre, code,
img,
dl, dt, dd,
ol, ul, li,
img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /* for headings, works */
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  /* The height is added to ensure the aspect ratio of the image is retained. */
  width: 100%;
  display: block;
}

picture {
  display: block;
}

a {
  background: transparent;
  /* Normalize.css - Remove the gray background color from active links in IE 10. */
  text-decoration: none;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. - Normalize.css
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ====================================================================================================================== */
/* FORMS                                                                                                                  */
/* ====================================================================================================================== */
/* INFO FRAMWEORK INPUT HOVER FOCUS ACTIVE ETC ----

Write CSS? 

Please don't forget to add :focus and :active styles along with :hover. :focus is important for keyboard and d-pad users.

Iinput ytops _ HOVER &  FOCUS  ar now ok in my framework (and infoOD & fart be)

BUT DSOES ACTIVE still apply to input typoes??????

*/
/* FORMS - iOS etc RESET ======================================= */
input[type=text],
input[type=email],
input[type=submit],
input[type=reset],
input[type=button],
input[type=image],
textarea,
select {
  -webkit-appearance: none;
  /* VIP - to override al i.e. iOS safari stryling */
  border-radius: 0px;
}

input[type=text],
textarea {
  width: 100%;
}

input[type=text],
textarea {
  border: none;
}

label,
input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

button {
  /* RESET */
  /* border-radius: 0px; */
  /* ALSO DO FOR IOS ETC */
  /* this cause sglitcthy border color thingee */
  border: 0;
  /* OK - THIS TAKES CARE OF THE BORDER ASPECT & RADIUS */
  /*outline: 0;*/
  /* DOES NOTHING */
  padding: 0;
  /* OK */
  /* margin: 0; */
  background: none;
  /* OK, TO DELETE BG COLOR */
}

/* oveflow:hidden; VS clearfix hack VS float:inline-block with font-size issues..... */
/*

I USE overflow:hidden, hwich works the same, UNLESS YOU GET FUCKED UP BY DELETED OVERFLOWING CONTENT.
view-source:http://mattbango.com/demos/hover-zoom/
http://css-tricks.com/snippets/css/clear-fix/

///
to avoid cleafix hack, use display inline block, and then add the vertcal align top..
but ther's the sapcing issue too... several ways to fix that

*/
textarea {
  resize: vertical;
  /* HAY QUE CONFIGURARLO !!!! */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/* TABLES */
/**
 * Remove most spacing between table cells. (Nomalize.css & Eric Meyer's Reset)
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 * CSS
 * Variables - Colors
 */
/* 
 * SASS - VARIABLES - Colors 
 */
/* GENERIC COLORS */
/*
$c_white: #fff; // white
$c_black: #000; // black 
*/
/* 
$c_accent: #03A9F4;

$c_white: #fff; // white
$c_text: #212121;
$c_text_2: #727272;
$c_divider: #B6B6B6;
*/
/*
 * STEP 1 - COLOR DEFINITIONS
 */
:root {
  --c-black: #212121;
  --c-black-alt: #131212;
  --c-white: #ffffff;
  --c-white-alt: antiquewhite;
  --c-test: antiquewhite;
  --c-gray-light: #B6B6B6;
  --c-gray-dark: #727272;
  --c-special: rgb(7 164 206);
}

/*
 * STEP 2 - COLOR USAGE,IMPLEMENTATION
 */
:root {
  --c-text: var(--c-black);
  --c-text-alt: var(--c-gray-dark);
  --c-text-inv: var(--c-white);
  --c-bg: var(--c-test);
  /* */
  --c-bg-light: var(--c-gray-light);
  --c-bg-dark: var(--c-gray-dark);
  --c-accent: var(--c-special);
  /*
  --c-bg-tails: red; // just a tets 
  --c-text-tails: red; // just a tets 
  */
  --c-bg-tails: var(--c-bg);
  --c-text-tails: var(--c-text);
  --c-accent: var(--fp-yellow);
}

:root {
  /* */
  color-scheme: light dark;
}

/* If user prefers a dark appearance */
@media (prefers-color-scheme: dark) {
  :root {
    /*
      background-color: #212121;
      background-color: black;
      color: white;
      */
    /* */
    /*
      --c-accent: #f06;
      */
  }
}

html[data-theme="light"] {
  color-scheme: light;
  --c-bg: var(--c-white);
  --c-bg-alt: var(--c-white-alt);
  --c-text: var(--c-black);
  --c-text-alt: var(--c-gray-dark);
  /*
  --c-bg-tails: red; // just a tets 
  --c-text-tails: yellow; // just a tets 
  */
  --c-bg-tails: var(--c-bg);
  --c-text-tails: var(--c-text);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --c-bg: var(--c-black);
  --c-bg-alt: var(--c-bg-dark);
  --c-text: var(--c-white);
  --c-text-alt: var(--c-gray-light);
  /*
  --c-bg-tails: blue; // just a tets 
  --c-text-tails: pink; // just a tets 
  */
  --c-bg-tails: var(--c-bg);
  --c-text-tails: var(--c-text);
}

/* IMPLEMENTATION, IS THEME AGOSTIC */
body {
  background: var(--c-bg-alt);
  color: var(--c-text);
  /* */
  transition: background-color 0.3s, color 0.3s;
  /* not good, because it loads on page load and makes a flash */
  /* OBS, BUT STIL HAS A FLASH ... */
}

header#header {
  transition: background-color 0.3s;
}

/*
 *
 * CSS Custom Properties aka CSS Variables
 * 
 * font-sizes
 * etc
 *
 */
/* 
 * VARIABLES - Font size - TODO - S&D !!!
 */
/*
$fs_xxl: 34px; // 
$fs_xl: 28px;
$fs_l: 20px;
$fs_m: 16px;
$fs_s: 12px;
*/
/*
 * STEP 1 - DEFINITIONS - DO GOLDEN RATIO SUSTE, 1.618 - CHECK IN THE STYLEGYUDIE FOR HEADERS !!! 
 */
:root {
  --fs-xxxl: 48px;
  --fs-xxl: 34px;
  --fs-xl: 28px;
  --fs-l: 1.2rem;
  --fs-m: 16px;
  --fs-s: 12px;
}

/*
 * STEP 2 - USAGE, IMPLEMENTATION
 */
/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: Sass - Layout
 */
/*
 * SASS - VARIABLES - LAYOUT - BREAK-POINTS 
 */
/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: Sass - Layout
 */
/*
 * SASS - VARIABLES - LAYOUT - SPACING
 */
/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: Sass - Layout
 */
blockquote, .m_htmleditor h1, .m_htmleditor h2, .m_htmleditor h3, .m_htmleditor h4, .m_htmleditor h5, .m_htmleditor h6, .card_blog .info h3, h1.post-title,
h1#post-title, .fp-section__title, #fp-intro-title:hover, .fp-intro__subtitle, .fp-actividades__name, .fp-invitados__name, .fp-horarios__day-name, .fp-ticket__name, .block_404 h1 {
  text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 2px 1px 0 #000, 2px -1px 0 #000, -2px 1px 0 #000, -2px -1px 0 #000, 1px 2px 0 #000, 1px -2px 0 #000, -1px 2px 0 #000, -1px -2px 0 #000, 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000, 3px 0 0 #000, -3px 0 0 #000, 0 3px 0 #000, 0 -3px 0 #000, 3px 1px 0 #000, 3px -1px 0 #000, -3px 1px 0 #000, -3px -1px 0 #000, 1px 3px 0 #000, 1px -3px 0 #000, -1px 3px 0 #000, -1px -3px 0 #000, 3px 2px 0 #000, 3px -2px 0 #000, -3px 2px 0 #000, -3px -2px 0 #000, 2px 3px 0 #000, 2px -3px 0 #000, -2px 3px 0 #000, -2px -3px 0 #000, 3px 3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, -3px -3px 0 #000;
}

label, input[type=text],
input[type=email],
input[type=password],
textarea,
select, option, nav#nav_footer_1 ul.menu li a,
nav#nav_footer_2 ul.menu li a,
nav#nav_footer_3 ul.menu li a, .card_blog .info .text, .post_author,
.post_date,
.post_categories, .block_location .info, .fp-section__subtitle, .fp-section__text, .fp-intro__body, .fp-actividades__role, .fp-invitados__role, .fp-horarios__day-date, .fp-horarios__event, .fp-ticket__price, .fp-ticket__badge, .fp-ticket__perks li, .fp-muro-creadores__grid span {
  /* -webkit-text-stroke: 0.05em #000; */
  text-shadow: 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000,  2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000,  2px 1px 0 #000, 2px -1px 0 #000, -2px 1px 0 #000, -2px -1px 0 #000,  1px 2px 0 #000, 1px -2px 0 #000, -1px 2px 0 #000, -1px -2px 0 #000;
}

.fp-header__nav a:hover, .fp-header__lang a:hover, nav#nav_header ul.menu li.current-menu-item a, nav#nav_header ul.menu li a:hover, nav#nav_footer_1 ul.menu li.current-menu-item a,
nav#nav_footer_2 ul.menu li.current-menu-item a,
nav#nav_footer_3 ul.menu li.current-menu-item a, nav#nav_footer_1 ul.menu li a:hover,
nav#nav_footer_2 ul.menu li a:hover,
nav#nav_footer_3 ul.menu li a:hover, .m_social ul li a:hover, #fp-intro-title, .fp-invitados__social a:hover {
  /* -webkit-text-stroke: 0.05em #000; */
  /*
  text-shadow:
  1px 1px 0 #000,
  2px 2px 0 #000,
  3px 3px 0 #000;
  */
  text-shadow: 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000, 2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000, 2px 1px 0 #000, 2px -1px 0 #000, -2px 1px 0 #000, -2px -1px 0 #000, 1px 2px 0 #000, 1px -2px 0 #000, -1px 2px 0 #000, -1px -2px 0 #000, 1px 1px 0 var(--fp-red), 2px 2px 0 var(--fp-red), 3px 3px 0 var(--fp-red), 4px 4px 0 var(--fp-red), 5px 5px 0 var(--fp-red), 6px 6px 0 var(--fp-red);
}

.fp-btn-tickets, .fp-btn-cta, input[type=submit],
input[type=reset] {
  /* -webkit-text-stroke: 0.05em #000; */
  /*
  text-shadow:
  1px 1px 0 #000,
  2px 2px 0 #000,
  3px 3px 0 #000;
  */
  box-shadow: 1px 1px 0 var(--fp-red), 2px 2px 0 var(--fp-red), 3px 3px 0 var(--fp-red), 4px 4px 0 var(--fp-red), 5px 5px 0 var(--fp-red), 6px 6px 0 var(--fp-red);
}

/* SPACINGS */
/* 
 * SASS - MIXINS - LAYOUT - line clamp / clamps // css clamps 
 */
/*
 * SASS - MIXINS - LAYOUT - RESPONSIVE
 */
/* 
 * SASS - MIXINS - LAYOUT - PADDING
 */
/* 
 * SASS - MIXINS - LAYOUT - MARGIN
 */
/* 
 * SASS - MIXINS - IMAGES
 */
/* 
 * SASS - MIXINS - IMAGES - ASPECT RATIOS
 */
/* 
 * SASS - MIXINS - SIMPLE SHAPES
 */
/* 
 * SASS - MIXINS - TEXT
 */
/* 
 *
 * CARDS
 *
 */
/* CSS Document - SASS */
/* Front-End */
/*
transition: opacity 0.2s ease;
&:hover {
    opacity: 0.7;
    text-decoration: underline;
}
*/
/*
transition: text-shadow 0.4s ease-in-out; // OUT SLOW
&:hover {@extend %ts-red;}
*/
blockquote {
  /*
	border-left: 3px solid #999;
	background-color: #ccc;
    padding: $spacing05;
    */
  border-left: 6px solid var(--c-accent);
  background-color: #ccc;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: wp-cowowo
 * File: Typography
 */
/*  TEXT: GENERAL TYPOGRAPHY ======================== */
/* 
 * FONTS - FONT-FACE
 */
/* 
 * SASS - VARIABLES - FONTS - "IMPORT" GOOGLE FONTS
 */
/*
// ideas de font size y line height
body{
  font-size:100%;
  line-height: 1.5;
}
*/
body {
  /*
	@include f_main;
	// color: $c_text;
	color: var(--c-text);
	*/
  font-family: var(--fp-font-body);
  color: var(--fp-yellow);
  font-size: 16px;
  /* line-height: $baseSpacing; */
}

a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 24px;
}

p:last-of-type {
  margin-bottom: 0px;
}

/*  Typography - Headers ======================== */
/*
h1, h2, h3, h4, h5, h6 {
	margin: 10px 0 5px 0;
	// font-family: Arial, Helvetica, sans-serif;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight : normal;
	margin-top: 0px;
	// letter-spacing: -1px;

	}


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

*/
/*
h1 {
	font-size:4rem;
	// font-family: Arial, Helvetica, sans-serif;
	line-height:1.4;
	color:#000;
	margin-bottom:0.2em;
	}

h2 {
	font-size:2.5rem;
	line-height:1.2;
	color: #222;
	margin-bottom:.5em;
	margin-top:.5em;
	}

h3 {
	font-size : 1.75rem;
	line-height : 1.3; 
	color: #333;
	margin-bottom : 0.3em;
	letter-spacing: -1px;
	}

h4 {
font-size:1.5rem;
	line-height:1.25; 
	color:#444;
	margin-bottom:0.5em;
	}

h5 {
font-size:1.25rem; 
	color:#555;
	margin-bottom:1.25em;
	}

h6 {
	// font-size:1rem; 
	color:#666;

	font-size: $fontsizeMedium; 
	}
*/
/*  TEXT: ANCHORS ======================== */
a {
  /*color : #cc1122; */
  /*
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
*/
}

/*
a:visited {color:#ee3344; }
a:focus {outline:thin dotted; color:rgb(0,0,0);}
a:hover, a:active {outline:0; color:#dd2233;}
*/
/** Text / TEXT FORMAT **/
/*
b, strong, .s {font-weight: bolder;} // VS bold ...
i, em, .i {font-style: italic;}
*/
/*  TEXT - PARAGRAPHS ======================== */
/* and do sth perhaps for p's firts line and first word stufff */
/* CSS HYPHENATION */
/*
p {
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}		
*/
/* ADD CODE, PRE, SMAPEL, XMP ETC ETC ETC */
/*

CSS FILE FOR TYPOGRAPHYS...

h headings

p ....

then, 

cursive

pre/code stuff

superscript, subscript ewtc

*/
/*
 * Project: elcatala.cat
 * Area: Front
 * File: TYPOGRAPHY - HTML-EDITOR
 */
.m_htmleditor {
  /*
		&.case_dark {
			// background-color: $c_black_2; // TEMP
			background-color: #252525;
			color: $c_white;
			a {color: inherit;} // TEST
			}
		*/
  /*
    * LISTS
    */
  /*
		 * MEDIA INSERTADO EN EL HTMLEDITOR
		 */
}

.m_htmleditor p {
  margin-bottom: 1lh;
}

.m_htmleditor a {
  font-weight: bold;
  text-decoration: dashed;
}

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

.m_htmleditor ul {
  margin-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}

.m_htmleditor ul li {
  margin-bottom: 10px;
}

.m_htmleditor ul li ul {
  margin-top: 10px;
}

.m_htmleditor h1, .m_htmleditor h2, .m_htmleditor h3, .m_htmleditor h4, .m_htmleditor h5, .m_htmleditor h6 {
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.4lh;
  margin-top: 1lh;
}

.m_htmleditor h1 {
  font-size: 2rem;
}

.m_htmleditor h2 {
  font-size: 1.8rem;
}

.m_htmleditor h3 {
  font-size: 1.6rem;
}

.m_htmleditor h4 {
  font-size: 1.4rem;
}

.m_htmleditor h5 {
  font-size: 1.2rem;
}

.m_htmleditor h6 {
  font-size: 1rem;
}

.m_htmleditor img {
  width: 100%;
  display: block;
  margin-top: 48px;
  margin-bottom: 48px;
  margin-block: 48px;
}

.m_htmleditor iframe {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 48px;
  margin-block: 48px;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: Dev temp stuff
 */
.dev_hide {
  display: none;
}

/*
*, *:before, *:after {
  // outline: 1px solid red; // TODO - CHOOSE A MORE NEUTRAL COLOR !!! 
  // outline: 1px solid red !important; // not all tags where getitng te outline for some odd reason... 
  outline: 1px solid #999 !important; // not all tags where getitng te outline for some odd reason... 
}

*, *:before, *:after {
  background-color: rgba(240,243,196,0.50)
}
*/
/* CSS Document - SASS */
/* Front-End */
/* STYLEGUIDE */
#demo_wrapper {
  background-color: #ccc;
}

#w_fonts {
  font-size: var(--fs-xl);
}

.fonts_item:nth-of-type(1) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

.fonts_item:nth-of-type(2) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.fonts_item:nth-of-type(3) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 300;
}

.fonts_item:nth-of-type(4) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.fonts_item:nth-of-type(5) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
}

.fonts_item:nth-of-type(6) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

.fonts_item:nth-of-type(7) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

.fonts_item:nth-of-type(8) {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

#w_colors {
  overflow: hidden;
}

.colors_item {
  float: left;
  width: 10.75%;
  padding-top: 10.75%;
  margin-right: 2%;
  margin-bottom: 2%;
  /*
		&:nth-of-type(1) {background-color: $c_primary_dark;}	
		&:nth-of-type(2) {background-color: $c_primary;}	
		&:nth-of-type(3) {background-color: $c_primary_light;}	
		&:nth-of-type(4) {background-color: $c_white;}	
		&:nth-of-type(5) {background-color: $c_accent;}	
		&:nth-of-type(6) {background-color: $c_text;}	
		&:nth-of-type(7) {background-color: $c_text_2;}	
		&:nth-of-type(8) {background-color: $c_divider;}	
		*/
}

.colors_item:nth-of-type(8n) {
  margin-right: 0%;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: Buttons
 */
/* BELONGS HERE IN FORMS IN RESET FILE  / class="css_submit_button" */
/* USE css style for submit button (input) inseide generic_links */
.css_submit_button {
  cursor: pointer;
  border: none;
  border: 2px solid #000;
  padding: 0.2rem 0.5rem;
  background-color: #bdbec0;
  /* GRISACEO */
  font-family: 'Antonio', sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  color: #000;
}

.css_submit_button:hover {
  background-color: #000;
  color: #0d80a1;
}

input[type="submit"].css_submit_button:disabled {
  background: #dddddd;
  color: #F00;
  cursor: default;
}

/*
    // REPO - PILL BEHAVIOUR 
    display: block;
    padding: 0.4em 1em;
    border: 2px solid transparent;
    border-radius: 50vh;
    // transition: opacity 0.2s ease;
    transition: all 0.4s ease-in-out; // OUT SLOW
    &:hover {
      // opacity: 0.7;
      // text-decoration: underline;      
      border-color: var(--fp-yellow);
    }
    */
/* do sass for colors, and for interactiuon behaviours - UI */
/* do sass for interactiuon behaviours - UI */
/* UI ELEMENTS / move to buttons file ================================================================================== */
.buttonStyleX, .button, .buttonSmall, .card_blog_1 .info .category a, .card_blog_1 .info .tags a, .card_blog_2 .info .category a, .card_blog_2 .info .tags a, .card_blog .info .category a, .card_blog .info ul.tags a, .buttonMedium, .card_blog .info .link a, .buttonBig, .section_link_container a, a.section_link, .card_blog_1 .info .link a, .card_blog_2 .info .link a, .buttonChip, .card_blog .info ul.post_categories_list a {
  /*
	background-color:$c_primary_dark;
	&:hover {background-color: $c_primary;}		
	*/
  background-color: var(--fp-yellow);
  border: 2px solid var(--fp-yellow);
}

.buttonStyleX:hover, .button:hover, .buttonSmall:hover, .card_blog_1 .info .category a:hover, .card_blog_1 .info .tags a:hover, .card_blog_2 .info .category a:hover, .card_blog_2 .info .tags a:hover, .card_blog .info .category a:hover, .card_blog .info ul.tags a:hover, .buttonMedium:hover, .card_blog .info .link a:hover, .buttonBig:hover, .section_link_container a:hover, a.section_link:hover, .card_blog_1 .info .link a:hover, .card_blog_2 .info .link a:hover, .buttonChip:hover, .card_blog .info ul.post_categories_list a:hover {
  background-color: transparent;
  color: var(--fp-yellow);
}

.button, .buttonSmall, .card_blog_1 .info .category a, .card_blog_1 .info .tags a, .card_blog_2 .info .category a, .card_blog_2 .info .tags a, .card_blog .info .category a, .card_blog .info ul.tags a, .buttonMedium, .card_blog .info .link a, .buttonBig, .section_link_container a, a.section_link, .card_blog_1 .info .link a, .card_blog_2 .info .link a, .buttonChip, .card_blog .info ul.post_categories_list a {
  cursor: pointer;
  transition: width 1s linear;
  font-weight: bold;
  color: var(--c-black);
  padding: 0.6em 1em;
  border-radius: 50vh;
  text-transform: uppercase;
}

.buttonSmall, .card_blog_1 .info .category a, .card_blog_1 .info .tags a, .card_blog_2 .info .category a, .card_blog_2 .info .tags a, .card_blog .info .category a, .card_blog .info ul.tags a {
  font-size: var(--fs-s);
}

.buttonMedium, .card_blog .info .link a {
  font-size: var(--fs-m);
}

.buttonBig, .section_link_container a, a.section_link, .card_blog_1 .info .link a, .card_blog_2 .info .link a {
  font-size: var(--fs-l);
}

.buttonChip, .card_blog .info ul.post_categories_list a {
  padding: 0.2em 0.6em;
  font-size: var(--fs-s);
}

/* MUST BE CALLED BEFORE FORMS, AS CERTAIN FOMR ELEMENTS CALL BUTOTN STYLES */
/*
* cowoBoilerplate
* Built by cowowo.cat
* Author: Carl Johansson @carlwebdev 
* Project: XXX
* File: Forms
* Filename: _forms_layout.scss
*/
.l_gridBase_50_50 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.l_gridBase_50_50 .col {
  background-color: white;
  box-shadow: 0px 0px 8px 2px #ccc;
  padding: 24px;
}

.l_gridBase_50_50 .col:hover {
  cursor: pointer;
  box-shadow: 0px 0px 4px 0px #ccc;
  transition: box-shadow 0.4s linear;
}

form {
  /*
	max-width:400px;
	@include centered;
	*/
}

/* SASS PARTIAL - FORM LAYOUTS is not the ame as form elements */
.input_item {
  /*
	overflow:hidden; / if submit is floated (right)) // NOT GOOD FOR SOME SITUATIONS.. 
	margin-bottom: $spacing;
	&:last-of-type {margin-bottom: 0px;}	
	*/
  margin-bottom: 1rem;
}

/*
* cowoBoilerplate
* Built by cowowo.cat
* Author: Carl Johansson @carlwebdev 
* Project: XXX
* File: Forms
* Filename: _forms.scss
*/
/* ====================================================================================================================== */
/* FORMS                                                                                                                  */
/* ====================================================================================================================== */
/* INFO FRAMWEORK INPUT HOVER FOCUS ACTIVE ETC ----

Write CSS? 

Please don't forget to add :focus and :active styles along with :hover. :focus is important for keyboard and d-pad users.

Iinput ytops _ HOVER &  FOCUS  ar now ok in my framework (and infoOD & fart be)

BUT DSOES ACTIVE still apply to input typoes??????

*/
/* 
 * FORM ELEMENTS 
 */
label {
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  display: inline-block;
  margin-bottom: 0.5em;
  cursor: pointer;
  /* for lables triggering checkboxes and radio buttons :-) */
}

input[type=text],
input[type=email],
input[type=password],
textarea,
select {
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  width: 100%;
  background-color: transparent;
  border: 2px solid var(--fp-yellow);
  padding: 0.8em 1.2em;
  color: var(--fp-yellow);
}

/* PLACEHOLDER TEXT */
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  opacity: 1;
  color: var(--fp-yellow);
}

option {
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  padding: 0.8em 1.2em;
  display: inline-block;
  background-color: var(--fp-bg-mid);
  color: inherit;
}

option:hover {
  background-color: var(--fp-bg-mid);
  color: inherit;
}

input[type=submit],
input[type=reset] {
  border: none;
}

/*
input[type=reset] {
	@extend .buttonSmall;
	}
*/
/*
// THIS IS TOO BRAOD, CANNOT BE, NOW HAS CONFLICT WITH NMY HEADER BUTOTN S!!!
button { // necesita mismos tratamientos que input type submit // reset etc
	@extend .buttonMedium;
  // width:125px;
	}	
*/
/* UI 
 * FOCUS and ANIMATIONS +
 */
input[type=text],
input[type=email],
input[type=password],
select,
textarea {
  transition: width 1s linear;
}

/* UI
 * HOVER must be before ACTIVE 
 */
input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
select:hover,
textarea:hover {
  /* border: 1px solid #D3D3D3; */
}

/* UI
 * ACTIVE must be after HOVER 
 */
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--fp-yellow);
  outline-offset: 2px;
  background-color: transparent;
  border-color: black;
}

/* & meter lo de los checkboxes !!!!!!!!!!!!!!!!!!!!!! */
/* UI 
 * DISABLED FORM ELEMENTS 
 */
/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: Forms - file button hack
 */
/* 
 * FORM HACKS - input image / checkbox / select // SEEK AND DESTROOOY! - no creo que esté siendo usado en este cms, pspaaad !!! 
 */
/* FORM - label covering input[type=file] */
/* HTML FOR THIS:
<label class="filebutton">
Browse For File!
<span><input type="file" id="myfile" name="myfile"></span>
</label>
*/
label.filebutton {
  display: inline-block;
  margin-top: 1px;
  position: relative;
  overflow: hidden;
  height: 32px;
  padding: 6px 12px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  background-color: var(--c-accent);
}

label.filebutton span input {
  cursor: pointer;
  /* _cursor: hand; */
  z-index: 999;
  position: absolute;
  /* top: -2px; */
  top: -4px;
  left: -9999px;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
}

/* FRAMEWORK - input type image */
/* input[type=file] & label trick */
/* THE HTML
        <label class="filebutton">
        Seleccionar arxiu
        <span><input type="file" name="doiser" id="dosier" /></span>
        </label>
*/
label.filebutton_NOT {
  width: 120px;
  height: 40px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0 5px;
}

label.filebutton_NOT:hover {
  background-color: #ddd;
}

label_NOT span input {
  z-index: 999;
  line-height: 0;
  /* font-size: 50px; */
  font-size: 15px;
  position: absolute;
  /* top: -2px; */
  top: -4px;
  /* left: -700px; */
  left: -245px;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
  cursor: pointer;
  /* _cursor: hand; */
  margin: 0;
  padding: 0;
}

/* END OF - FORM - label covering input[type=file] */
/* CSS Document - FRONT-END */
/* ====================================================================================================================== */
/* TABLES                                                                                                                 */
/* ====================================================================================================================== */
/** Tables **/
/*

.p, table.p tr td {padding: 10px;}
.pmin, table.pmin tr td  {padding: 3px;}
.pt, table.pt tr td {padding-top: 10px;}
.pl, table.pl tr td {padding-left: 10px;}
.pr, table.pr tr td {padding-right: 10px;}
.pb, table.pb tr td {padding-bottom: 10px;}

.m, table.m tr td {margin: 10px;}
.mmin, table.mmin tr td  {margin: 3px;}
.mt, table.mt tr td {margin-top: 10px;}
.ml, table.ml tr td {margin-left: 10px;}
.mr, table.mr tr td {margin-right: 10px;}
.mb, table.mb tr td {margin-bottom: 10px;}

 */
table#customers {
  border-collapse: collapse;
  width: 100%;
}

table#customers td, table#customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

table#customers tr:nth-child(even) {
  background-color: #f2f2f2;
}

table#customers tr:nth-child(odd) {
  background-color: #fff;
}

table#customers tr:hover {
  background-color: #ddd;
}

table#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--c-accent);
  color: white;
}

/* 
Reference Source - STICKY FOOTER - SOLVED BY FLEXBOX 
https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
<body class="Site">
  <header>…</header>
  <main class="Site-content">…</main>
  <footer>…</footer>
</body>
.Site { // MY CASE - apply to #page, and or body
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.Site-content { // MY CASE - apply to #content
  flex: 1;
}
*/
/* body , */
#page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

#page_content {
  flex: 1;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Reset
 * File: Layout
 */
body {
  /*
  background-color: var(--c-bg);  // tets 
  */
  background-color: var(--fp-bg-mid);
}

#page {
  /* PLACEHOLDER */
}

/*
    header#header, 
    footer#footer {
      // background-color: $c_accent;  
      // background-color: #957DAD;  // tets 
      // background-color: var(--c-black);  // tets / chNGE TO VARIABLES, AFET R CIPYING DARK MODE FOMR OTHER PLACE
      
      // background-color: var(--c-bg); 
      background-color: var(--c-bg-tails);
      color: var(--c-text-tails);
    }
  */
/* 
 * BACKGROUNDS
 * 1) alternate bg colors (etc)
 * 2) scrolL snapping - obs issue with sticky footer flex !
 *
 * SYSTEM ALTERNATING BACKGROUND COLORS  // // DIDNT FIND THIS, SO I BUILT IT AGAIN:active
 */
.backgrounds .background:nth-of-type(odd) {
  background-color: var(--c-bg);
}

.backgrounds .background:nth-of-type(even) {
  background-color: var(--c-bg-alt);
}

/* 
 * VERTICAL SECTIONS
 */
section.pb4 {
  padding-block: 4em;
}

section {
  padding-block: 3rem;
}

section.hero_area {
  padding-block: unset;
}

/* 
 * HORIZONTAL SECTIONS - WIDTHS  -todo - renamer as wrapper or frame ..
 */
.frame,
.wrapper {
  margin-inline: auto;
  min-width: 320px;
  max-width: 1440px;
  /* HORIZONTAL PADDING */
  padding-left: 4rem;
  padding-right: 4rem;
  padding-inline: 4rem;
  /*
  @include transition(padding-left, $t_slow); // RWD EYE-CANDY
  @include transition(padding-right, $t_slow); // RWD EYE-CANDY
  */
  transition: padding-left 1s linear, padding-right 1s linear;
}

@media only screen and (max-width: 1024px) {
  .frame,
  .wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-inline: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  .frame,
  .wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-inline: 2rem;
  }
}

.frame.narrow,
.wrapper.narrow {
  max-width: 1024px;
}

.frame.medium,
.wrapper.medium {
  max-width: 1240px;
}

.frame.wide,
.wrapper.wide {
  max-width: 1660px;
}

.frame.full,
.wrapper.full {
  max-width: 1920px;
}

.frame.flush,
.wrapper.flush {
  padding-left: 0px;
  padding-right: 0px;
  padding-inline: 0px;
}

/*

// RENAME AS page_content (div id)

// in php start / end - really unnnecessary .... and should be class anywasy...
#content { // 
	// min-height:200px; 
	overflow:hidden; // ????????? 
	// background-color: #999;
	@include paddingv($spacing2);
	
	.inner {} // too unspecific, as there is a frame in between... but could be a different frame... 
	
	} // content

*/
/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Reset
 * File: Layout
 */
body.noscroll {
  overflow: hidden;
}

html {
  /* START OF BLOCK */
  scroll-behavior: smooth;
  /* END OF BLOCK */
  /* START OF BLOCK */
  /*
  scroll-padding-top: 100px; // AFTER "HEADER IS SMALLERS"
  */
  scroll-padding-top: var(--header-height);
  /* END OF BLOCK */
}

/* 
 * BACKGROUNDS
 * 1) alternate bg colors (etc)
 * 2) scrolL snapping - obs issue with sticky footer flex !
 *
 * SYSTEM ALTERNATING BACKGROUND COLORS  // // DIDNT FIND THIS, SO I BUILT IT AGAIN:active
 */
.backgrounds {
  /*

  // flex: 1;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  height: 100dvh; 


  .background {
    scroll-snap-align: start;
    // vs height there ...
  }

  */
}

/*
.backgrounds { // s_

  // CSS SCROLL SNAPPING
  // https://css-tricks.com/practical-css-scroll-snapping/
  
  // scroll-snap-type: y mandatory; // vs proximity 
  
  
    // START - COPIED FROM CJNET
    // 2 - DONE - TODO - ADD THE SCROLL SNAP BEHAVIOUR TO THE PAGE, AND SEE IF IT WORKS, AND IF IT WORKS, THEN COPY IT - FROM THE DIALOGUE, WOW...
    // TODO-NEXT NOW DO SCROLL, AKA SCROL SANP COPY FOMR DIALO, LAST IMPLEMETATION ANY GOOD - AS CJENT IS THE PERFCT USE CASE FOR VERTICAL SCROLS CNAP BEHAVIOUR ...
    // https://css-tricks.com/practical-css-scroll-snapping/
    // scroll-snap-type: mandatory;
    // scroll-snap-points-y: repeat(300px);
    // scroll-snap-type: y mandatory;

    // scroll-snap-type: y mandatory; // perhaps ony for desktop ??
    scroll-snap-type: y proximity; // LESS AGGRESIVE, VERY NICE, WHEN THERE IS MORE CONTENT THAN SCREEN HEIGHT - ELSE, MANDATORY IS NCE FOR CONTAINED CONTENT
    // height: 100%;
    height: 100dvh; // chatgpt - Ensure that: The height of #l_content is defined and not just 100%. It needs a definitive height to make the overflow content scrollable, or it should inherit a height from its parent that limits its size.
    overflow-y: scroll;
    // END - COPIED FROM CJNET
  
  
    .background { // ALL
      scroll-snap-align: start;
    } // ALL
    
  } // backgrounds
*/
.temp_page_padding_top {
  height: 6rem;
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
}

@media only screen and (max-width: 1024px) {
  .temp_page_padding_top {
    height: 4rem;
  }
}

@media only screen and (max-width: 576px) {
  .temp_page_padding_top {
    height: 4rem;
  }
}

/*
 * CONTENT
 *
 * page hero
 * page banner
 * hgroup
 * page title
 * secton title
 * section link
 */
/* 
 * PAGE HERO
 */
.page_hero {
  height: calc(100dvh - var(--header-height));
  /* 
  margin-top: var(--header-height); // Ensure it starts below the header // !!!
  */
  /*
  top: var(--header-height); // Ensure it starts below the header
  position: relative; // Ensure it respects the top value
  */
  /*
  @media only screen and (max-width: $bp_l) {
    height: calc(100dvh - var(--header-height)); // JS CALCULATION
  } // MEDIA-QUERY
  */
  /* */
  overflow: hidden;
  /*
  display: grid;
  place-items: center;
  */
  display: grid;
  place-content: center;
  /*
  img {
    position: absolute;
    inset: 0;
    // height: 100%;
    object-fit: cover;
  }
  */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  /*
  .text {
    // font-size: clamp(1.5rem, 3vw, 3rem); // 1.5rem, 3vw, 3rem - for exampleÇ
    // font-size: clamp(1.5em, 7vw, 8em);
    // font-size: clamp(2.5em, 7vw, 8em);
    font-size: clamp(3em, 7vw, 8em);
    color: var(--c-theme-white);
    text-shadow: 0px 0px 2px var(--c-theme-beige);
  } // text 
  */
}

.page_hero h1 {
  font-size: clamp(4em, 10vw, 6em);
  color: var(--c-bg);
  text-shadow: 0px 0px 2px var(--c-theme-beige);
  text-align: center;
}

/* CSS Document */
/* CSS Document */
.hero_banner___NOT {
  height: calc(100dvh - var(--header-height));
  /* */
  overflow: hidden;
  /*
  display: grid;
  place-items: center;
  */
  display: grid;
  place-content: center;
}

.hero_banner___NOT > * {
  grid-area: 1 / 1;
}

.hero_banner___NOT img {
  height: 100%;
  object-fit: cover;
}

.hero_banner___NOT .text {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: var(--c-theme-white);
}

.hero_banner___TAMPOPCO {
  display: grid;
  align-items: center;
  /* Center items vertically */
  justify-content: center;
  /* Center items horizontally */
  height: calc(100dvh - var(--header-height));
  overflow: hidden;
}

.hero_banner___TAMPOPCO img {
  height: 100%;
  object-fit: cover;
  /* Ensure the image covers the container */
  grid-area: 1 / 1;
  /* Place the image in the first grid cell */
  height: calc(100dvh - var(--header-height));
}

.hero_banner___TAMPOPCO .text {
  grid-area: 1 / 1;
  /* Place the text in the same grid cell as the image */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /* Adjust text color for better visibility */
  background: rgba(0, 0, 0, 0.5);
  /* Optional: Add a semi-transparent background for readability */
  padding: 10px;
  /* Optional: Add padding for better appearance */
  border-radius: 5px;
  /* Optional: Add border-radius for smoother edges */
  z-index: 1;
  /* Ensure the text is above the image */
}

.page_banner {
  height: calc(62dvh - var(--header-height));
  /* */
  overflow: hidden;
  /*
  display: grid;
  place-items: center;
  */
  display: grid;
  place-content: center;
  /*
  img {
    position: absolute;
    inset: 0;
    // height: 100%;
    object-fit: cover;
  }
  */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /*
  .text {
    font-size: clamp(1.5rem, 3vw, 3rem); // 1.5rem, 3vw, 3rem - for example
    color: var(--c-theme-white);
    text-shadow: 0px 0px 2px var(--c-theme-beige);
  } // text 
  */
}

@media only screen and (max-width: 1024px) {
  .page_banner {
    height: calc(100dvh - var(--header-height));
  }
}

.page_banner h1 {
  font-size: clamp(2em, 8vw, 5em);
  /*
    color: var(--c-theme-white);
    text-shadow: 0px 0px 2px var(--c-theme-beige); 
    */
  color: var(--c-text-inv);
  text-shadow: 0px 0px 2px var(--c-text);
  text-align: center;
}

/*
 *
 *
 *
 * PAGE
 *
 *
 *
 */
/*
 *
 *
 *
 * SECTION
 *
 *
 *
 */
hgroup {
  /*
  // text-align: center;
  font-size: var(--fs-xl); // create intermediate, for main titles, etc, as h1, anyways.. 
  // padding-block: $spacing; 
  padding-bottom: 1em;
  */
  text-align: center;
  font-size: 2em;
}

hgroup h1 {
  font-size: 1.618em;
  font-weight: 500;
  margin-bottom: 0.5em;
  color: var(--c-accent);
}

hgroup p {
  font-size: 1em;
  font-weight: 300;
}

hgroup p:not(:last-of-type) {
  margin-bottom: 0.5em;
}

/*
 * PAGE - TITLE (h1)
 */
h1.page_title_dynamic {
  /*
  font-size: $fs_xl; // create intermediate, for main titles, etc, as h1, anyways.. 
  font-size: $fs_xxl;
  */
  /*
  padding-block: $spacing; 
  */
  margin-top: unset;
  margin-bottom: unset;
  font-size: var(--fs-xxxl);
  font-weight: normal;
  margin-bottom: 1lh;
}

/*
 * SECTION - TITLE (h2)
 */
h2.section_title_dynamic {
  margin-top: unset;
  margin-bottom: 1em;
  font-size: 2em;
  font-weight: normal;
  text-wrap: balance;
}

.section_link_container {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  font-size: 1.618em;
  /*
 // centrar el boton
 @media only screen and (max-width: $bp_s) {
  text-align: center;		
  } // MEDIA-QUERY	
*/
}

.section_link_container a {
  display: inline-block;
  font-size: 1em;
}

.section_link_container p {
  color: var(--c-text-alt);
  font-size: 0.618em;
}

a.section_link {
  border: var(--s-border);
  outline: 2px solid var(--c-accent);
  margin-inline: auto;
  display: inline-block;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Reset
 * File: Header
 */
/*
#w_headroom {
	
	}
*/
header#header {
  /*
  background: linear-gradient(
    to bottom,
    rgba(#101f3e, 0.9) 0%,
    rgba(#101f3e, 0.6) 60%,
    rgba(#101f3e, 0.0) 100%
  );
  */
  background: linear-gradient(to bottom, #101f3e 0%, rgba(16, 31, 62, 0.9) 40%, rgba(16, 31, 62, 0.9) 50%, rgba(16, 31, 62, 0.8) 60%, rgba(16, 31, 62, 0.4) 80%, rgba(16, 31, 62, 0) 100%);
  /*
   -webkit-backdrop-filter: blur(5px); // 10px
  backdrop-filter: blur(5px); // 10px
  */
  /*
  // position: relative;
  isolation: isolate;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(#101f3e, 0.9) 0%,
      rgba(#101f3e, 0.6) 60%,
      rgba(#101f3e, 0.0) 100%
    );
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 0;
  }
  */
  /*
  // background-color: #f0d83e;
  background-color: rgb(255, 210, 0);
  // border-bottom: 3px solid var(--c-accent); //
  */
  /* START - STICKY */
  /*
  position: -webkit-sticky;
	position: sticky;
	top: 0px; // VIP
  */
  /*
  background-color: var(--fp-bg-mid);
  // but not on the heomapge !!! untillscorled... 
  */
  /*
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  */
  z-index: 100;
  /*
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(29,35,39, 0.3) !important;
  */
  /*
  @media only screen and (max-width: $bp_l) {
		position: relative; // RESET
		} // MEDIA-QUERY	
  */
  /* END - STICKY */
  /* color: var(--c-white); */
  color: var(--fp-yellow);
}

header#header a, header#header a:visited {
  /* color: inherit; */
  color: var(--fp-yellow);
}

header#header .inner {
  /*
		// padding: $spacing025; 
    // // // padding-inline: $spacing025; // ???
    
		// @include paddingv($spacing05);
    // padding-block: $spacing025; 
    // padding-block: $spacing05; 
    padding-block: $spacing075; 
    */
  padding-block: 1em;
  position: relative;
  z-index: 1;
}

/*
 * HEADER BAR TOP
 */
.header_bar_top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

/*
 * HEADER BAR MAIN
 */
.header_bar_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  /* at the top, aka default ... to oveerdie interiort flex's that have align cenetr .. */
  gap: 2em;
}

/*
 * HEADER BAR BOTTOM
 */
.header_bar_bottom {
  border: 3px solid var(--c-accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Reset
 * File: Header - Components
 */
.header_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

/*
 * HEADER - LOGO
 */
.header_logo {
  flex-shrink: 0;
  margin-right: auto;
  width: 300px;
  max-width: 300px;
}

.header_logo img {
  width: 100%;
  display: block;
  /*
    // TEMP
    background-color: white;
    padding: 1em;
    border-radius: 0.5em; 
    */
}

.slogan {
  font-size: var(--fs-l);
}

.slogan a:hover {
  color: var(--c-accent);
}

.header_options_temp_mobile {
  display: none !important;
}

.header_options_temp_mobile .m_social ul li a i {
  font-size: 2em;
  font-size: 3em;
}

@media only screen and (max-width: 1640px) {
  /*
    nav#nav_header {
      display: none;
    }
    */
}

@media only screen and (max-width: 768px) {
  .header_options_temp {
    display: none !important;
  }
  .header_options_temp_mobile {
    display: flex !important;
  }
}

@media only screen and (max-width: 768px) {
  .slogan {
    /*
    position:relative;
		text-align:center;
		bottom: $spacing0125;						
    */
  }
}

/* LANGUAGE SELECTOR */
/* OPTIONS - SOCIAL MEDIA */
/* ncopy searech box de header de ssteinerskolen.. */
.fp-header__brand {
  margin-right: auto;
  display: flex;
  gap: 1em;
}

.fp-header__logo img {
  width: 240px;
}

.fp-header__bylogo {
  width: 180px;
}

.fp-header__bylogo .img_1 img {
  width: 100%;
}

.fp-header__bylogo .img_2 {
  margin-left: 1%;
}

.fp-header__bylogo .img_2 img {
  width: 54%;
}

.fp-header__nav {
  /* ul */
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  gap: 2em;
}

.fp-header__nav a {
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fp-yellow);
  font-size: 18px;
  line-height: 1.38;
  letter-spacing: 0;
  transition: text-shadow 0.4s ease-in-out;
}

.new_header_buttons {
  display: flex;
  gap: 1em;
  align-items: center;
}

/* Right side: language switcher + tickets button */
.fp-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.fp-header__lang {
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; */
  gap: 2px;
}

.fp-header__lang a {
  font-family: var(--fp-font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--fp-yellow);
  text-decoration: none;
  text-transform: uppercase;
  transition: text-shadow 0.4s ease-in-out;
}

.fp-btn-tickets {
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4em 2em;
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-size: 18px;
  /*
    color: var(--fp-bg-deep);
    color: black !important; */
  /* ??? */
  color: var(--fp-yellow) !important;
  /* ??? */
  border: 2px solid;
  transition: box-shadow 0.4s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.fp-btn-tickets:hover {
  box-shadow: 0px 0px 0px var(--fp-red);
  background-color: var(--fp-yellow);
  color: black !important;
  border-color: var(--fp-yellow);
}

/* ================================================================
   HAMBURGER BUTTON
   Visible only on mobile — 3-line icon matching Figma Menu_Mobile
   (39×24px with 3 horizontal lines)
   ================================================================ */
.fp-header__hamburger {
  display: none;
  /* shown via media query */
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.fp-header__hamburger img {
  width: 39px;
}

/* Mobile nav overlay (toggled by JS) */
.fp-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
  z-index: 200;
  background-color: var(--fp-bg-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /*
  a {
    font-family: var(--fp-font-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--fp-yellow);
    text-decoration: none;
    text-transform: uppercase;
  }
  */
}

.fp-mobile-nav.is-open {
  display: flex;
}

.fp-mobile-nav .fp-mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--fp-yellow);
  font-size: 52px;
  cursor: pointer;
  line-height: 1;
}

.w_header_actions_mobile {
  display: none;
}

.w_header_actions_mobile .fp-header__actions {
  flex-direction: column;
  gap: 2em;
}

.w_header_actions_mobile .fp-btn-tickets {
  font-size: 32px;
  padding: 0.4em 1em;
}

.w_header_actions_mobile .fp-header__lang ul {
  display: flex;
  gap: 1em;
}

.w_header_actions_mobile .fp-header__lang a {
  font-size: 1rem;
}

@media (max-width: 1640px) {
  /* Hide desktop nav and lang switcher on mobile */
  /*
  .fp-header__nav, */
  .nav_header_desktop {
    display: none;
  }
  /* Show hamburger */
  .fp-header__hamburger {
    display: flex;
  }
}

/* MEDIA-QUERY */
@media (max-width: 1024px) {
  /* --- HEADER -------------------------------------------------- */
  /*
  #fp-header {
    padding: 16px 20px;
    gap: 12px;
  }
  */
  .fp-header__logo img {
    /* height: 48px; */
  }
  .fp-header__bylogo {
    display: none;
  }
}

/* MEDIA-QUERY */
@media (max-width: 768px) {
  .w_header_actions_desktop {
    display: none;
  }
  .w_header_actions_mobile {
    display: flex;
  }
  .fp-header__logo img {
    /* height: 48px; */
    width: 160px;
  }
}

/* MEDIA-QUERY */
@media (max-width: 576px) {
  .fp-header__logo img {
    width: 120px;
  }
  .new_header_buttons {
    flex-direction: column;
    gap: 0.4em;
  }
  /*
  .fp-header__actions { // ES EL WRAPEPR DE LSO DE ABAJO QUE SCIONDEMSO 
    display: none;
  }
  */
  /* Hide desktop nav and lang switcher on mobile */
  /*
    .fp-header__lang,
    .fp-btn-tickets {
      display: none;
    }
    */
}

/* MEDIA-QUERY */
/* 
 * CSS 
 * Header
 * HEADER BUTTONS
 */
/*
 .header_options_temp {
  // border: 12px solid red; // 
  // border: $s_border; // 
  color: red; //
  display: flex;
  justify-content: center;
  align-items: center; // PRECAUTION
  gap: 1em;
} // header_buttons
*/
/*
// TETS MANUA OVVERDIDE:
button, button span {
    box-sizing: border-box;
  }
*/
/*
button, button span {
  display: inline-block;
  padding: 10px; // Adjust as needed
  border: 1px solid #000; // Adjust as needed 
}
*/
/*
 *
 * HEADER BUTTONS 
 *
 */
.header_buttons {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

button.headericon {
  display: block;
  /*
  // display: none; // UI 
  @media only screen and (max-width: $bp_m) { 
    display: block !important;	
  } // MEDIA-QUERY	
*/
  cursor: pointer;
  /* */
  font-size: 1em;
  /*
    border-color: var(--c-text);
    border-width: 2px;
    border-radius: 100vh; // 
    */
  /*
    // padding: 8px;
    padding:0.25em; // = 8px compared to 2em, whch is 32px, so 1/4, ok
    */
  /* OLÑD ICON FOTN, NOW IM USING MATERIUAL ICONS !!!! NI PROCESS !!!!!!!!!!!!!!!!!! */
  /*
  .icon { // esto aplica el icon font, solo aki, po rahora, pero lo he usado en otros sitios, y siempre uso el mismo style, osea que metelo como un mixin !!!!! @include icon, ah no!!!! no cal fer res, o no, si que hace falta !!!!!!!!!!
    // background-color: #ff0; // TEST
    display: block;
    height: 1em; // YES !!!!!!!!!!!!
    // font-size: 48px;
    font-size: 32px;
    // color: $c_green;
    color: #fff;
    // @include transition(color, 0.25s);
    // &:hover {color: $c_green_light;	}
    } // icon
  */
  /*
  .icon { // esto aplica el icon font, solo aki, po rahora, pero lo he usado en otros sitios, y siempre uso el mismo style, osea que metelo como un mixin !!!!! @include icon, ah no!!!! no cal fer res, o no, si que hace falta !!!!!!!!!!
    // background-color: #ff0; // TEST
    display: block;
    height: 1em; // YES !!!!!!!!!!!!
    // font-size: 48px;
    font-size: 32px;
    // color: $c_green;
    // color: #fff;
    color: var(--c-white); // TEMP !!!!!!!!!!!!
    // @include transition(color, 0.25s);
    // &:hover {color: $c_green_light;	}
  } // icon
  */
}

button.headericon span {
  display: block;
  /* */
  padding: 0.20em;
  color: var(--c-text);
  border-color: var(--c-text);
  border-width: 2px;
  border-style: solid;
  border-radius: 100vh;
  font-size: 1.6em;
  transition: all 0.5s ease-in-out;
}

button.headericon:hover {
  /*
        background-color: var(--c-text); // middle way gray - CHANGE THIS 
        border-color: var(--c-accent); // NEW
        */
}

button.headericon:hover span {
  background-color: var(--c-text);
  border-color: var(--c-accent);
  color: var(--c-accent);
}

[role=trigger_nav] {
  display: none;
}

@media only screen and (max-width: 768px) {
  [role=trigger_nav] {
    display: block !important;
  }
}

/* 
 * CSS 
 * Header
 * HEADER DROPDOWNS - obs, heigh tis defined by teh otyher script ... 
 */
.header_dropdowns {
  /*
  background-color: var(--c-bg-inv); // BETTER NAME, MORE AGNSOTIC
  color: var(--c-text-inv); // should be c-text-inv y punto ....
  */
  background-color: var(--c-bg);
  color: var(--c-text);
}

.header_dropdowns {
  border: 3px solid red;
  display: none;
  padding-block: 2em;
  border-bottom: 2px solid var(--c-text);
}

/*
.header_dropdowns.case-nav {
  border: 3px solid red; 
  display:none; // UI - jQuery
  
  padding-block: 2em;
  border-bottom: 2px solid var(--c-text);
}
.header_dropdowns.case-search {
  border: 3px solid red; 
  display:none; // UI - jQuery
  
  padding-block: 2em;
  border-bottom: 2px solid var(--c-text);
}
.header_dropdowns.case-language {
  border: 3px solid red; 
  display:none; // UI - jQuery
  
  padding-block: 2em;
  border-bottom: 2px solid var(--c-text);
}
*/
/* 
 * NAV MAIN..not, aka mobile, aka header_mobile or header.mobile or nav.header-mobile
 */
nav.mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

nav.mobile li {
  /*
       * LEVEL 2 
       */
  position: relative;
}

nav.mobile li:hover {
  /*
        background-color: white;
        color: black;
        */
  /*
        background-color: black;
        color: white;   
        */
  /*
        background-color: $c_black;
        color: $c_white_alt;
        */
  /* 
        background-color: $c_white_alt;          
        color: $c_black;
        */
  /*
        border: 3px solid $c_accent;
        
        a {
          background-color: $c_white_alt;          
          color: $c_black;
        } // a
        */
}

nav.mobile li a {
  /* PILL */
  display: block;
  padding: 0.4em 1.2em;
  /*
        
        
        border-radius: 2em; // TEST 



        */
  border: 3px solid;
  /*
        color: $c_white_alt; // PRECAUTION, BUT NEEDED...
        background-color: $c_black; // PRECAUTION, BUT NEEDED...   
        // border: 2px solid white;
        // border: 2px solid $c_white_alt;  
        */
  font-weight: bold;
  /*
        border: 1px solid $c_white_alt;
        font-weight: 500; // TEST - semibold ...
        */
}

nav.mobile li a:hover {
  text-decoration: none;
  /*
          background-color: white;
          color: black;
          */
  background-color: var(--c-accent);
}

nav.mobile li:hover > ul {
  display: flex;
}

nav.mobile li ul {
  display: none;
}

nav.mobile li ul {
  padding: 24px 12px 12px;
  /*
        
        
        
        position: absolute; 
        // left: -24px;
        left: -18px;
        left: -12px;
        



        */
  border-radius: 0px 0px 24px 24px;
  flex-wrap: nowrap;
  gap: 12px;
  flex-direction: column;
}

nav.mobile li ul li {
  white-space: nowrap;
  /* 
          &::before { // resetting the blue pseudo line     
            content: ''; // RESET 
            // position: relative; // RESET ??? - nt aa good reset at leats, if cerated those spaces below each anchor inside each li - so test now tihout this .
            right: auto; // RESET ???  
            top: auto; // RESET ??? 

            display: inline-block; 
            vertical-align: middle;
            // float: left;
          } // after	
          */
  /*
           * LEVEL 3 
           */
  position: relative;
}

nav.mobile li ul li a {
  /*
            background-color: white;
            color: black;
            */
  /*
            background-color: $c_white_alt;          
            color: $c_black;
            */
  /*            
            background-color: $c_black;
            color: $c_white_alt;            
            */
}

nav.mobile li ul li a:hover {
  /*
              background-color: white;
              color: black;
              */
  /*
              background-color: black;
              color: white;   
              */
  /*
              background-color: $c_black;
              color: $c_white_alt;
  	          */
  /*
              background-color: $c_white_alt;          
              color: $c_black;
              */
}

nav.mobile li ul li:hover ul {
  display: block;
}

nav.mobile li ul li ul {
  display: none;
}

nav.mobile li ul li ul {
  background-color: white;
  position: absolute;
  left: 100%;
  top: 0px;
}

/* 
 * CSS 
 * Header
 * HEADER BUTTONS
 */
.header_options_temp {
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

/*
// TETS MANUA OVVERDIDE:
button, button span {
    box-sizing: border-box;
  }
*/
/*
button, button span {
  display: inline-block;
  padding: 10px; // Adjust as needed
  border: 1px solid #000; // Adjust as needed 
}
*/
/*
 *
 * HEADER BUTTONS 
 *
 */
.dev_buttons {
  display: flex;
  align-items: center;
  gap: 1em;
}

.dev_buttons.is-vertical {
  flex-direction: column;
  gap: 0.5em;
}

button.devicon {
  display: block;
  /*
  // display: none; // UI 
  @media only screen and (max-width: $bp_m) { 
    display: block !important;	
  } // MEDIA-QUERY	
*/
  cursor: pointer;
  /* */
  font-size: 1em;
  /*
    border-color: var(--c-text);
    border-width: 2px;
    border-radius: 100vh; // 
    */
  /*
    // padding: 8px;
    padding:0.25em; // = 8px compared to 2em, whch is 32px, so 1/4, ok
    */
}

button.devicon span {
  border-color: white;
  border-width: 2px;
  border-style: solid;
  border-radius: 100vh;
  color: white;
  font-size: 2em;
  display: block;
  /* */
  padding: 0.25em;
  transition: all 0.5s ease-in-out;
}

button.devicon:hover {
  /*
        background-color: var(--c-text); // middle way gray - CHANGE THIS 
        border-color: var(--c-accent); // NEW
        */
}

button.devicon:hover span {
  background-color: var(--c-text);
  border-color: var(--c-accent);
  color: var(--c-accent);
}

body.debugging *, body.debugging *:before, body.debugging *:after {
  outline: 1px solid #999 !important;
}

/*
 * CSS
 * Header - Smaller (Plugin: Resize Header On Scroll - or is it just a script ?? )
 */
header {
  /*
  &#header {
    background-color: #101f3e; // TEST - but not working, as header is not sticky, so no background color to change ...  !!!!!!!!!!!!
  }
  */
  /*
   * 1 - LIST THE CLASSES WHERE TRANSITIONS SHOULD APPLY
   */
  /*
   * 2 - DEFINE WHAT ACTUALLY HAPPENS WHEN ACTIVATED
   */
}

header#header,
header .fp-header__logo img,
header .fp-header__bylogo img,
header .header_bar_main .inner,
header .header_logo,
header nav.main ul.menu li,
header nav.main ul.menu li a {
  transition: all 0.3s ease;
}

header.smaller {
  /*
     * Header - Bar - Main
     */
  /* MEDIA-QUERY */
}

header.smaller#header {
  /*
        background: linear-gradient(
          to bottom,
          rgba(#101f3e, 0.9) 0%,
          rgba(#101f3e, 0.8) 75%,
          rgba(#101f3e, 0.0) 100%
        );
        */
  /*
         -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px); 
        */
  /*        
         -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px); 
        */
}

header.smaller .fp-header__brand {
  gap: 0.7em;
}

header.smaller .fp-header__logo img {
  width: 120px;
}

header.smaller .fp-header__bylogo img {
  width: 0px;
}

@media (max-width: 576px) {
  header.smaller {
    /*
      &#header {
          -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px); 
        }
      */
  }
  header.smaller .fp-header__logo img {
    width: 100px;
  }
}

header.smaller .header_logo {
  width: 260px;
}

header.smaller nav.main ul.menu li {
  margin-right: 6px;
}

header.smaller nav.main ul.menu li a {
  font-size: 0.8rem;
}

/* PLUGINS */
/* carl demo */
.navbar {
  background-color: #f00;
}

.headroom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all .2s ease-in-out;
}

.headroom--unpinned {
  top: -300px;
}

.headroom--pinned {
  top: 0;
}

/*
	from DEMO css file
*/
/*
nav:not(.mm-menu)
{
	display: none;
}
*/
.navicon a {
  /*
	background: center center no-repeat transparent;
	background-image: url( data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADhJREFUeNpi/P//PwOtARMDHQBdLGFBYtMq3BiHT3DRPU4YR4NrNAmPJuHRJDyahEeT8Ii3BCDAAF0WBj5Er5idAAAAAElFTkSuQmCC );

	display: block;
	width: 40px;
	height: 40px;
	*/
  /*
	position: absolute;
	top: 0;
	left: 10px;
	*/
}

/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu,
.mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}

.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-panel.mm-highest {
  z-index: 1;
}

.mm-menu > .mm-panel {
  background: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.mm-menu > .mm-panel.mm-hasheader {
  padding-top: 40px;
}

.mm-menu > .mm-panel:before, .mm-menu > .mm-panel:after {
  content: '';
  display: block;
  height: 20px;
}

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}

.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}

.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent;
}

.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block;
}

.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto;
}

.mm-vertical .mm-listview > li > .mm-next:after,
.mm-listview > li.mm-vertical > .mm-next:after {
  top: 16px;
  bottom: auto;
}

.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-header {
  border-bottom: 1px solid transparent;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mm-header > a {
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.mm-header .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-header .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.mm-header .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}

.mm-header .mm-btn:last-child {
  padding-right: 20px;
  right: 0;
}

.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-listview {
  font: inherit;
  /* font-size: 14px; */
  font-size: 24px;
  font-size: 18px;
}

.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}

.mm-listview > li {
  position: relative;
}

.mm-listview > li > a,
.mm-listview > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}

.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.mm-listview > li:not(.mm-divider):after {
  left: 20px;
}

.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px;
}

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}

.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0;
}

.mm-menu > .mm-panel > .mm-listview {
  margin-left: -20px;
  margin-right: -20px;
}

.mm-menu > .mm-panel > .mm-listview.mm-first {
  margin-top: -20px;
}

.mm-menu > .mm-panel > .mm-listview.mm-last {
  padding-bottom: 20px;
}

.mm-prev:before,
.mm-next:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}

.mm-next:after {
  border-top: none;
  border-left: none;
  right: 20px;
}

.mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}

.mm-listview > li.mm-spacer {
  padding-top: 40px;
}

.mm-listview > li.mm-spacer > .mm-next {
  top: 40px;
}

.mm-listview > li.mm-spacer.mm-divider {
  padding-top: 25px;
}

.mm-menu {
  /* background: #f3f3f3; */
  color: rgba(0, 0, 0, 0.7);
  color: var(--c-text);
  /* color: #fff;  */
}

.mm-menu .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-header > a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-header .mm-btn:before,
.mm-menu .mm-header .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview > li:after {
  border-color: rgba(0, 0, 0, 0.1);
  /* border-color: #fff;  */
  border-color: var(--c-accent);
}

.mm-menu .mm-listview > li > a.mm-prev, .mm-menu .mm-listview > li > a.mm-next {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview > li > a.mm-prev:before, .mm-menu .mm-listview > li > a.mm-next:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview > li > a.mm-prev:after, .mm-menu .mm-listview > li > a.mm-next:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5);
}

.mm-menu.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}

/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative;
}

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-opened {
  overflow: hidden;
  position: relative;
}

html.mm-opened body {
  overflow: hidden;
}

html.mm-opened .mm-page {
  min-height: 100vh;
}

html.mm-background .mm-page {
  background: inherit;
}

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}

.mm-menu.mm-current {
  display: block;
}

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}

/*
	jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-top.mm-autoheight, .mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}

.mm-menu.mm-top.mm-autoheight.mm-fullscreen, .mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}

.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}

/*
	jQuery.mmenu buttonbars addon CSS
*/
.mm-buttonbar {
  border: 1px solid transparent;
  border-radius: 5px;
  text-align: center;
  line-height: 20px;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
}

.mm-buttonbar:after {
  content: '';
  display: block;
  clear: both;
}

.mm-buttonbar > * {
  border-left: 1px solid transparent;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  float: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-buttonbar > a {
  text-decoration: none;
}

.mm-buttonbar > input {
  position: absolute;
  left: -1000px;
  top: -1000px;
}

.mm-buttonbar > input:checked + label {
  border-color: transparent  !important;
}

.mm-buttonbar > *:first-child,
.mm-buttonbar > input:first-child + * {
  border-left: none;
}

.mm-buttonbar.mm-buttonbar-2 > * {
  width: 50%;
}

.mm-buttonbar.mm-buttonbar-3 > * {
  width: 33.33%;
}

.mm-buttonbar.mm-buttonbar-4 > * {
  width: 25%;
}

.mm-buttonbar.mm-buttonbar-5 > * {
  width: 20%;
}

.mm-header .mm-buttonbar {
  margin-top: 0px;
  margin-left: -30px;
  margin-right: -30px;
}

.mm-footer .mm-buttonbar {
  border: none;
  border-radius: none;
  line-height: 40px;
  margin: -10px -10px 0 -20px;
}

.mm-footer .mm-buttonbar > * {
  border-left: none;
}

.mm-listview > li > .mm-buttonbar {
  margin: 10px 20px;
}

.mm-menu .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.7);
  background: #f3f3f3;
}

.mm-menu .mm-buttonbar > * {
  border-color: rgba(0, 0, 0, 0.7);
}

.mm-menu .mm-buttonbar > input:checked + label {
  background: rgba(0, 0, 0, 0.7);
  color: #f3f3f3;
}

/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 50px;
  top: 50%;
}

em.mm-counter + a.mm-next {
  padding-left: 40px;
}

em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
  margin-right: 90px;
}

em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}

.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0;
}

.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px;
}

.mm-nosubresults > .mm-counter {
  display: none;
}

.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/*
	jQuery.mmenu footer addon CSS
*/
.mm-footer {
  background: inherit;
  border-top: 1px solid transparent;
  text-align: center;
  line-height: 20px;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-hasfooter > .mm-panel {
  bottom: 40px;
}

.mm-menu .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu header addon CSS
*/
.mm-menu > .mm-header {
  background: inherit;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu > .mm-header .mm-close:after {
  content: 'x';
}

.mm-menu.mm-hassearch > .mm-header {
  top: 40px;
}

.mm-menu.mm-hasheader .mm-panel .mm-header {
  display: none;
}

.mm-menu.mm-hasheader .mm-panel,
.mm-menu.mm-hasheader .mm-fixeddivider {
  top: 40px;
}

.mm-menu.mm-hasheader.mm-hassearch .mm-panel,
.mm-menu.mm-hasheader.mm-hassearch .mm-fixeddivider {
  top: 80px;
}

/*
	jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}

.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}

.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}

.mm-hasdividers .mm-fixeddivider {
  display: block;
}

.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}

/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box;
}

.mm-menu > .mm-search {
  background: inherit;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-search {
  height: 40px;
  width: 100%;
  padding: 10px 10px 0 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.mm-search input {
  border: none;
  border-radius: 25px;
  font: inherit;
  font-size: 14px;
  line-height: 25px;
  outline: none;
  display: block;
  width: 100%;
  height: 25px;
  margin: 0;
  padding: 0 10px;
}

.mm-search input::-ms-clear {
  display: none;
}

.mm-panel.mm-hassearch {
  padding-top: 40px;
}

.mm-panel.mm-hassearch.mm-hasheader {
  padding-top: 80px;
}

.mm-panel.mm-hassearch.mm-hasheader .mm-search {
  top: 40px;
}

.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}

.mm-noresults .mm-noresultsmsg {
  display: block;
}

.mm-noresults .mm-indexer {
  display: none !important;
}

.mm-menu li.mm-nosubresults > a.mm-next {
  display: none;
}

.mm-menu li.mm-nosubresults > a.mm-next + a,
.mm-menu li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px;
}

.mm-menu.mm-hassearch .mm-panel,
.mm-menu.mm-hassearch .mm-fixeddivider {
  top: 40px;
}

.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}

.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.71%;
}

.mm-indexer ~ .mm-panel.mm-hasindexer {
  padding-right: 40px;
}

.mm-hasindexer .mm-indexer {
  right: 0;
}

.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}

.mm-hasheader .mm-indexer {
  top: 50px;
}

.mm-hasfooter .mm-indexer {
  bottom: 50px;
}

.mm-hassearch .mm-indexer {
  top: 50px;
}

.mm-hassearch.mm-hasheader .mm-indexer {
  top: 90px;
}

.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}

label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  bottom: 50%;
  z-index: 2;
}

label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-bottom: -15px;
}

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}

label.mm-check {
  width: 30px;
  height: 30px;
  margin-bottom: -15px;
}

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}

label.mm-toggle,
label.mm-check {
  right: 20px;
}

label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px;
}

label.mm-check + a,
label.mm-check + span {
  padding-right: 60px;
}

a.mm-next + label.mm-toggle, a.mm-next + label.mm-check {
  right: 60px;
}

a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span, a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  margin-right: 50px;
}

a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px;
}

a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px;
}

em.mm-counter + a.mm-next + label.mm-toggle, em.mm-counter + a.mm-next + label.mm-check {
  right: 100px;
}

em.mm-counter + a.mm-next + label.mm-toggle + a,
em.mm-counter + a.mm-next + label.mm-toggle + span, em.mm-counter + a.mm-next + label.mm-check + a,
em.mm-counter + a.mm-next + label.mm-check + span {
  margin-right: 90px;
}

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}

.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}

/*
	jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none;
}

.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important;
}

/*
	jQuery.mmenu effects extension CSS
*/
html.mm-effect-slide .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-slide.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

html.mm-effect-slide.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

html.mm-effect-slide.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

html.mm-effect-slide.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}

html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-zoom-panels .mm-menu .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-property: -webkit-transform, left;
  -moz-transition-property: -moz-transform, left;
  -ms-transition-property: -ms-transform, left;
  -o-transition-property: -o-transform, left;
  transition-property: transform, left;
}

html.mm-effect-zoom-panels .mm-menu .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-zoom-panels .mm-menu .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}

/*
	jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}

.mm-menu.mm-fullscreen.mm-top, .mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}

/*
	jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal;
}

/*
	jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}

.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}

.mm-menu.mm-pageshadow.mm-next:after, .mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}

.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu.mm-right {
  left: auto;
  right: 0;
}

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}

/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}

.mm-menu.mm-front {
  z-index: 1;
}

.mm-menu.mm-front, .mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-front.mm-right, .mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}

/*
	jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-header {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-header > a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-header .mm-btn:before,
.mm-menu.mm-theme-dark .mm-header .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview > li:after {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview > li > a.mm-prev, .mm-menu.mm-theme-dark .mm-listview > li > a.mm-next {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview > li > a.mm-prev:before, .mm-menu.mm-theme-dark .mm-listview > li > a.mm-next:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview > li > a.mm-prev:after, .mm-menu.mm-theme-dark .mm-listview > li > a.mm-next:before {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark .mm-buttonbar {
  border-color: rgba(255, 255, 255, 0.8);
  background: #333333;
}

.mm-menu.mm-theme-dark .mm-buttonbar > * {
  border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-buttonbar > input:checked + label {
  background: rgba(255, 255, 255, 0.8);
  color: #333333;
}

.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-footer {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}

.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-white {
  background: white;
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-header > a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-header .mm-btn:before,
.mm-menu.mm-theme-white .mm-header .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview > li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview > li > a.mm-prev, .mm-menu.mm-theme-white .mm-listview > li > a.mm-next {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview > li > a.mm-prev:before, .mm-menu.mm-theme-white .mm-listview > li > a.mm-next:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview > li > a.mm-prev:after, .mm-menu.mm-theme-white .mm-listview > li > a.mm-next:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: white;
}

.mm-menu.mm-theme-white .mm-buttonbar > * {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-buttonbar > input:checked + label {
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}

.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-black {
  background: black;
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-header {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-header > a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-header .mm-btn:before,
.mm-menu.mm-theme-black .mm-header .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview > li:after {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview > li > a.mm-prev, .mm-menu.mm-theme-black .mm-listview > li > a.mm-next {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview > li > a.mm-prev:before, .mm-menu.mm-theme-black .mm-listview > li > a.mm-next:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview > li > a.mm-prev:after, .mm-menu.mm-theme-black .mm-listview > li > a.mm-next:before {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-buttonbar {
  border-color: rgba(255, 255, 255, 0.6);
  background: black;
}

.mm-menu.mm-theme-black .mm-buttonbar > * {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-buttonbar > input:checked + label {
  background: rgba(255, 255, 255, 0.6);
  color: black;
}

.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-footer {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}

.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}

.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}

/* Mmenu - Side menu */
.swiper-slider,
.swiper-carousel-posts,
.swiper-carousel-logos {
  overflow: hidden;
  width: 100%;
}

.swiper-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 18px;
  /* */
  padding-inline: 62px;
  /*
	.swiper-button-prev {
		left: -24px; // TEST, APPROX, IT DOES T EJOB, BUT NEVER PERFECT
	}
	
	.swiper-button-next {
		right: -24px; // TEST, APPROX, IT DOES T EJOB, BUT NEVER PERFECT
	}
	*/
}

.swiper-carousel .swiper-button-prev,
.swiper-carousel .swiper-button-next {
  z-index: 10;
  top: 30%;
}

/* */
.swiper-slider.case-hero .swiper-button-prev,
.swiper-slider.case-hero .swiper-button-next {
  top: unset;
  bottom: 24px;
  width: 120px;
  height: auto;
  margin-top: 0;
  /* MEDIA-QUERY */
}

@media only screen and (max-width: 576px) {
  .swiper-slider.case-hero .swiper-button-prev,
  .swiper-slider.case-hero .swiper-button-next {
    width: 60px;
  }
}

.swiper-slider.case-hero .swiper-button-prev::after,
.swiper-slider.case-hero .swiper-button-next::after {
  content: '';
  width: 100%;
  height: auto;
  aspect-ratio: 1653 / 467;
  display: block;
  font-size: 0;
  line-height: 0;
  background-image: url("../../img/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.swiper-slider.case-hero .swiper-button-prev {
  left: unset;
  left: 24px;
}

.swiper-slider.case-hero .swiper-button-prev::after {
  transform: rotate(180deg);
}

.swiper-slider.case-hero .swiper-button-next {
  right: unset;
  right: 24px;
}

.swiper-slider.case-intro {
  /* */
}

.swiper-slider.case-intro .swiper-button-prev,
.swiper-slider.case-intro .swiper-button-next {
  width: 120px;
  height: auto;
  margin-top: 0;
}

.swiper-slider.case-intro .swiper-button-prev::after,
.swiper-slider.case-intro .swiper-button-next::after {
  content: '';
  width: 100%;
  height: auto;
  aspect-ratio: 1653 / 467;
  display: block;
  font-size: 0;
  line-height: 0;
  background-image: url("../../img/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.swiper-slider.case-intro .swiper-button-prev {
  left: unset;
  left: 24px;
}

.swiper-slider.case-intro .swiper-button-prev::after {
  transform: rotate(180deg);
}

.swiper-slider.case-intro .swiper-button-next {
  right: unset;
  right: 24px;
}

/*
// Swiper container 
.swiper {
	width: 100%;
	height: 100%;
  }
  
  // Swiper slides
  .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto; // Ensure slides do not overflow
	height: auto; // Adjust height as needed
	box-sizing: border-box; // Include padding and border in the element's total width and height
  }
  
  // Example styling for the content inside the slides
  .hero_banner {
	width: 100%;
	height: auto;
	background-size: cover;
	background-position: center;
	aspect-ratio: 3 / 1; // Maintain aspect ratio
  }
*/
/* 
  * SWIPER.JS - CUSTOM STYLES - move here form footer.php - re-view and clean up
  *
  */
.swiper {
  /* overflow: hidden; */
  /* VIP FOR THE SCRIPTTO WORK, CANNOT BE REMOVED */
  /*
	
	
	
	padding-block: 3em; // TO AVOID OVERFLWO HIDDEN EFFECT IN COVERLFOW MODE.
   



	*/
}

/* VSCODE COPILOT CHAT - SOLUTION TO MAKE SWIPER FLEXY */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
  /* border: 3px solid orange; */
  /*
	padding-bottom: 2em; // left here to accomodate teh pagination below 
	*/
}

.swiper-slide {
  /*
	  display: flex;
	  flex-direction: column;
	  //border: 3px solid purple;
	  // height: 100%;
	  height: auto;
	  */
}

/* 
 * SWIPER.JS - CUSTOM STYLES 
 *
 */
/*
  * SWIPER - NAVIGATION ARROWS 
  */
.swiper-button-prev,
.swiper-button-next {
  color: var(--fp-yellow) !important;
}

/*
 * SWIPER - PAGINATION 
 */
.swiper-pagination {
  /*
	bottom: 0; // OBS, LAYOUT WITH ABOSOLUE & BOTTOM */
  /* AND EHCK ISSUE WOTH OVERLFOW HIDDEN !!!
	// VS
	// position: static; // TO AVOID OVERFLOW HIDDEN EFFECT IN COVERLFOW MODE. .. wf ?! 
	*/
  padding-top: 0.5em;
}

.swiper-pagination-bullet {
  background: var(--fp-yellow) !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--fp-yellow) !important;
}

/*
.swiper-slide .card_project {
	height: 100%;
}
*/
/*
.card_project {
	height: 100%;
}
*/
/*
 * CSS
 * Footer
 */
footer#footer {
  /*
  border-top: 3px solid var(--c-accent); //
  */
  --footer-gap-v: 3em;
}

footer#footer .inner {
  display: flex;
  flex-direction: column;
  gap: var(--footer-gap-v);
  padding-block: var(--footer-gap-v);
  color: var(--fp-yellow);
}

/*
 * FOOTER BAR TOP
 */
.footer_bar_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
 * FOOTER BAR MAIN
 */
.footer_bar_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
 * FOOTER BAR BOTTOM
 */
.footer_bar_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: Footer - Components
 */
.footer_social {
  margin-top: 2rem;
}

/*
 * Atom
 * Scroll To Top
 */
a.scrollToTop {
  color: inherit;
  cursor: pointer;
  /*
    .icon {
      font-size: 32px;
    }
    */
}

a.scrollToTop:hover {
  color: var(--c-accent);
}

a.scrollToTop span {
  display: block;
  font-size: 3em;
}

.footerContent {
  font-size: var(--fs-l);
}

.footerContent span {
  font-size: var(--fs-m);
}

.footerContent img {
  width: 86px;
  vertical-align: middle;
}

.gridFooter {
  overflow: hidden;
}

.gridFooter .col {
  float: left;
  width: 25%;
  border: 1px solid red;
}

/*
 * WP NATIVE - NAVIGATION
 */
/* 
nav#main, 
nav.main, 
*/
nav#nav_header {
  /* */
}

nav#nav_header ul.menu {
  display: flex;
  gap: 1.4em;
}

nav#nav_header ul.menu li {
  /*
       *  2nd LEVEL - build it alwasy 3 levesl deep, as precaution, just in case, ya sti sabes 
       */
}

nav#nav_header ul.menu li a {
  display: block;
  font-family: var(--fp-font-body);
  font-weight: 700;
  line-height: 1.38;
  text-transform: uppercase;
  text-wrap: nowrap;
  color: var(--fp-yellow);
  font-size: 16px;
  letter-spacing: 0.3ch;
  text-decoration: none;
  transition: text-shadow 0.4s ease-in-out;
}

nav#nav_header ul.menu li:hover > ul {
  display: block;
}

nav#nav_header ul.menu li ul {
  display: none;
  position: absolute;
  background-color: var(--c-black);
}

@media only screen and (max-width: 1640px) {
  nav#nav_header ul.menu {
    flex-direction: column;
  }
  nav#nav_header ul.menu li a {
    text-align: center;
    font-size: 32px;
    /*
          
          
          letter-spacing: unset;


          */
    /*
          font-family: var(--fp-font-display);          
          font-weight: 400;
          */
    /*
          color: var(--fp-yellow);
          text-decoration: none;
          text-transform: uppercase;
          */
  }
}

nav#nav_footer_1,
nav#nav_footer_2,
nav#nav_footer_3 {
  /*
	@media only screen and (max-width: $bp_m) { 				
		display: none;
  } // MEDIA-QUERY	
  */
}

nav#nav_footer_1 ul.menu,
nav#nav_footer_2 ul.menu,
nav#nav_footer_3 ul.menu {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

nav#nav_footer_1 ul.menu li,
nav#nav_footer_2 ul.menu li,
nav#nav_footer_3 ul.menu li {
  /*
       *  2nd LEVEL - build it alwasy 3 levesl deep, as precaution, just in case, ya sti sabes 
       */
}

nav#nav_footer_1 ul.menu li a,
nav#nav_footer_2 ul.menu li a,
nav#nav_footer_3 ul.menu li a {
  display: inline-block;
  padding: 0.4em 0;
  font-weight: bold;
  font-size: 1.4em;
  text-wrap: nowrap;
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-weight: 500;
  /*  font-size: 18px;*/
  font-size: 16px;
  line-height: 1.38;
  color: var(--fp-yellow);
  text-decoration: none;
  letter-spacing: 0;
  text-transform: uppercase;
  /* text-wrap: nowrap; */
  /*
        &:hover,
        &.is-current {text-decoration: underline;}
        */
  /*
         
         
         color: var(--c-bg); // NEW



         */
  /*
         
         transition: all 0.4s ease-in-out; // OUT SLOW

        &:hover {
          // background-color: var(--c-black);
          // background-color: var(--c-accent);
          // background-color: var(--c-black);
          // background-color: var(--c-text);
          // background-color: var(--c-accent);
          // color: var(--c-white);

          border-color: var(--fp-yellow);
          transition-duration: 0.2s; // IN FAST
          }
        */
  transition: text-shadow 0.4s ease-in-out;
}

nav#nav_footer_1 ul.menu li:hover > ul,
nav#nav_footer_2 ul.menu li:hover > ul,
nav#nav_footer_3 ul.menu li:hover > ul {
  display: block;
}

nav#nav_footer_1 ul.menu li ul,
nav#nav_footer_2 ul.menu li ul,
nav#nav_footer_3 ul.menu li ul {
  display: none;
  position: absolute;
  background-color: var(--c-black);
}

nav#nav_footer_3 {
  max-width: 7em;
}

nav#nav_footer_3 ul.menu li a {
  text-wrap: wrap;
  /*
    @media only screen and (max-width: $bp_m) { 				
      display: none;
    } // MEDIA-QUERY	
    */
}

/*
 * CSS
 * WP SUBMENU - WORDPRESS
 *
 * MENU - SUBMNEU - 2 BOXES SYSTEMN, NICE COLOR & CENETERD TEXT ETC ...
 */
nav.submenu ul.submenu {
  display: grid;
  gap: 24px;
  --auto-grid-min-size: 20rem;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
}

nav.submenu ul.submenu li {
  aspect-ratio: 1 / 1;
}

nav.submenu ul.submenu li a {
  display: block;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--c-text);
  font-size: 2em;
  /*
        
        
        @include transitionGeneral;


        */
  /*
        background-color: $c_accent;
        &:hover {background-color: $c_accent_dark;}        
        */
  /*
        background-color: var(--primary-color);
        &:hover {background-color: var(--dark-primary-color);}
        */
  background-color: var(--c-accent);
}

nav.submenu ul.submenu li a:hover {
  background-color: var(--c-accent-dark);
}

nav.submenu ul.submenu li.current_page_item a {
  background-color: var(--accent-color);
}

nav.submenu ul.submenu li ul {
  display: none;
}

/*
 * CSS
 * WP Pagination
 */
.w_pagination {
  margin-top: 4rem;
  text-align: center;
}

.pagination {
  display: inline-block;
  overflow: hidden;
}

.pagination .page-numbers {
  float: left;
  margin-right: 12px;
  margin-bottom: 12px;
  display: block;
  padding: 12px 12px;
  font-size: 16px;
  font-family: var(--fp-font-body);
  font-weight: 700;
  width: 48px;
  /* UI */
  transition: all 0.2s ease-in-out;
}

.pagination .page-numbers {
  border: 2px solid var(--fp-yellow);
  color: var(--fp-yellow);
}

.pagination .page-numbers:hover {
  background-color: var(--fp-yellow);
  color: var(--c-black);
}

.pagination .page-numbers.current {
  background-color: var(--fp-yellow);
  color: var(--c-black);
}

.pagination .page-numbers.current:hover {
  background-color: inherit;
  color: inherit;
  background-color: var(--fp-yellow);
  color: var(--c-black);
}

/*
 * CSS
 * WP Post Nav
 *
 * add as molecule as its standalone form blog posts, as it can be used for any kind of posts I guess....
 */
.post_nav {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-block: 12px;
  overflow: hidden;
  font-size: 13px;
  line-height: 15px;
  position: relative;
}

.post_nav img {
  width: 32px;
}

.post_nav span {
  display: inline-block;
  vertical-align: middle;
}

.post_nav span.material-icons {
  font-size: 24px;
}

.post_nav .left {
  float: left;
}

.post_nav .left a span:first-of-type {
  -webkit-transition: left 0.3s ease;
  -moz-transition: left 0.3s ease;
  -ms-transition: left 0.3s ease;
  -o-transition: left 0.3s ease;
  transition: left 0.3s ease;
  position: relative;
  left: -6px;
  top: 3px;
}

.post_nav .left img {
  width: 32px;
  /* display: block; */
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Safari 3-8 */
  transform: rotate(180deg);
}

.post_nav .left a:hover span:first-of-type {
  left: -36px;
  left: -12px;
}

.post_nav .right {
  float: right;
}

.post_nav .right a span:last-of-type {
  -webkit-transition: right 0.3s ease;
  -moz-transition: right 0.3s ease;
  -ms-transition: right 0.3s ease;
  -o-transition: right 0.3s ease;
  transition: right 0.3s ease;
  position: relative;
  right: -6px;
  top: 3px;
}

.post_nav .right a:hover span:last-of-type {
  right: -12px;
}

.post_nav.case-hero {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-block: 0px;
}

.post_nav.case-hero .left {
  position: relative;
  top: 32px;
  left: -140px;
}

.post_nav.case-hero .right {
  position: relative;
  top: 32px;
  right: -140px;
}

@media only screen and (max-width: 1200px) {
  .post_nav.case-hero {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-block: 24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-inline: 24px;
  }
  .post_nav.case-hero .left {
    position: relative;
    top: 0px;
    left: 0px;
  }
  .post_nav.case-hero .right {
    position: relative;
    top: 0px;
    right: 0px;
  }
}

nav#lateral {
  display: none;
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--c-accent);
  border-top-left-radius: 0.4em;
  border-bottom-left-radius: 0.4em;
  padding: 1em;
  font-size: 0.8em;
  z-index: 1;
  /*
  img {
      // width: 3em; // 
      width: 4em; //
      margin-inline: auto; 
  }
  */
}

nav#lateral ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

nav#lateral li {
  align-self: center;
}

/*
 * CSS
 * search
 * grid_results VS the other ne that is simpler
 */
/*
desde eimoe, hacia cowoow
rename blog grid as grid_blog, not grid_posts // nor w_gridPosts
*/
/*
INSTRUCTIONS FOR ANY GRID: 
separate grid behavior (wrapper & cols) from item behavior (and its own rwd behavior)
*/
.grid_results {
  display: grid;
  gap: 48px;
  perspective: 1000px;
  /*
  transform-style: preserve-3d;
  // transform: rotateX(45deg);
  // transform: rotateY(45deg);
  transform: rotateZ(45deg);
  */
}

.card_result {
  /* START - ROTATION */
  transform: rotateX(5deg);
  transition: transform 0.5s ease;
  /* END - ROTATION */
  background-color: white;
  /* PRECAUTION */
  box-shadow: 0px 4px 4px 2px #999;
  border-radius: 6px;
  overflow: hidden;
  /* new placement */
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  /* padding: $spacing075; */
}

.card_result:hover {
  transform: rotateX(0deg);
}

.card_result .image {
  background-color: green;
  /* border-radius: 3px; */
  /* overflow: hidden; */
  /* */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*
    // case-no-image con su padding system, aka use aspect ratio testing css !!!!!!!!!!!!
    &.case-no-image {
      // @include bg_img;
      @include ar_4_3;
    } // case-no-image
    */
}

.card_result .image img {
  width: 100%;
  display: block;
}

.card_result .image a {
  display: block;
  height: 100%;
}

.card_result .info {
  /*
    padding-top: 1em;
    padding: $spacing075;
    */
  padding: 18px;
}

.card_result .info .category {
  margin-bottom: 1em;
  /*
      
      
      
      font-size: $fs_card_small; // TEST - NICE SYSTEM !!!! HAVE A GENERIDC FIEL FOR CRDS-




      */
  color: var(--c-gray);
}

.card_result .info .category a {
  color: inherit;
}

.card_result .info .category a:hover {
  text-decoration: underline;
}

.card_result .info .title {
  margin-bottom: 0.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*
      
      
      // TODO - mixin for font_card_title - size, color, wwierght.... - SPECIALLY NOW QUE LO ESTOY REPLICANBDO EN grid_staff . . . . . . . . . .s
      font-size: $fs_card_title;



      */
  font-weight: bold;
}

.card_result .info .title a:hover {
  text-decoration: underline;
}

.card_result .info .specs {
  margin-bottom: 1em;
  color: var(--c-gray);
  display: flex;
  gap: 18px;
}

.card_result .info .text {
  color: var(--c-gray);
  line-height: 1.7em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card_result .info .link {
  margin-top: 1.5em;
  display: flex;
}

.card_result .info .link a {
  /*
        
        
        @extend .buttonSmall; // extend anchor style butotn simpe systems....   



        */
}

/*
 * CSS
 * search
 * grid_results_simple VS the other ne that is more complex, comeplete

 as separator, just have an organge line ..... 
  and so some anchor ui inteactivity 

 */
/* 
 * GRID - RESULTS
 */
.grid_results_simple {
  display: grid;
  gap: 24px;
  background-color: white;
}

/* 
 * CARD - RESULTS - SIMPLE - BUT THIS IS NOT SIMPLE ENOUGH, DO I TMORE GOOGLE-LIKE 
 */
.card_result_simple {
  /*
  @include card;
  padding: $spacing075;
  */
  padding-block: 1em;
}

.card_result_simple .category {
  margin-bottom: 1em;
  color: var(--c-gray);
}

.card_result_simple .category a {
  color: inherit;
}

.card_result_simple .category a:hover {
  text-decoration: underline;
}

.card_result_simple .title {
  margin-bottom: 0.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: bold;
}

.card_result_simple .title a:hover {
  text-decoration: underline;
}

.card_result_simple .text {
  color: var(--c-gray);
  line-height: 1.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: a grid ... 


 * INSTRUCTIONS FOR ANY GRID: 
 * separate grid behavior (wrapper & cols) from item behavior (and its own rwd behavior)

 */
/*
 * Grid - Blog
 */
.grid_blog_special {
  border: 3px solid var(--c-accent);
  display: grid;
  grid-template-columns: 1.618fr 1fr;
  gap: 2em;
}

/*
 * Card - Blog - 1
 */
.card_blog_1 {
  grid-row: span 2;
  --card-padding: 16px;
  background-color: var(--c-bg);
  box-shadow: 0px 0px 2px #ccc;
  color: var(--c-text);
  padding: var(--card-padding);
}

.card_blog_1 a {
  color: inherit;
}

.card_blog_1 .image_OBSOLETE {
  /*
    @include bg_img; // not anymore !!!!!!!! do, oif not size, aspect ratio and object firt !!! and dysnamic object fot etc ... 
    @include ar_4_3;
    */
}

.card_blog_1 picture {
  border: 3px solid var(--c-accent);
  background-color: #957DAD;
  overflow: hidden;
}

.card_blog_1 picture img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: scale 0.5s ease-in-out;
}

.card_blog_1 picture img:hover {
  scale: 1.1;
}

.card_blog_1 .info {
  padding-top: var(--card-padding);
}

.card_blog_1 .info .category {
  display: flex;
  flex-wrap: wrap;
}

.card_blog_1 .info .category a {
  display: inline-block;
}

.card_blog_1 .info h3 {
  margin-block: 0.4em;
  font-size: 1.618em;
}

.card_blog_1 .info .text {
  font-size: 1em;
}

.card_blog_1 .info .tags {
  margin-block: 1em;
  display: flex;
  flex-wrap: wrap;
}

.card_blog_1 .info .tags a {
  display: inline-block;
}

.card_blog_1 .info .link {
  display: flex;
  flex-direction: column;
}

.card_blog_1 .info .link a {
  align-self: flex-end;
  display: inline-block;
}

/*
 * Card - Blog - 2
 */
.card_blog_2 {
  --card-padding: 16px;
  background-color: var(--c-bg);
  box-shadow: 0px 0px 2px #ccc;
  color: var(--c-text);
  padding: var(--card-padding);
}

.card_blog_2 a {
  color: inherit;
}

.card_blog_2 .image_OBSOLETE {
  /*
    @include bg_img; // not anymore !!!!!!!! do, oif not size, aspect ratio and object firt !!! and dysnamic object fot etc ... 
    @include ar_4_3;
    */
}

.card_blog_2 picture {
  border: 3px solid var(--c-accent);
  background-color: #957DAD;
  overflow: hidden;
}

.card_blog_2 picture img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: scale 0.5s ease-in-out;
}

.card_blog_2 picture img:hover {
  scale: 1.1;
}

.card_blog_2 .info {
  padding-top: var(--card-padding);
}

.card_blog_2 .info .category {
  display: flex;
  flex-wrap: wrap;
}

.card_blog_2 .info .category a {
  display: inline-block;
}

.card_blog_2 .info h3 {
  margin-block: 0.4em;
  font-size: 1.618em;
}

.card_blog_2 .info .text {
  font-size: 1em;
}

.card_blog_2 .info .tags {
  margin-block: 1em;
  display: flex;
  flex-wrap: wrap;
}

.card_blog_2 .info .tags a {
  display: inline-block;
}

.card_blog_2 .info .link {
  display: flex;
  flex-direction: column;
}

.card_blog_2 .info .link a {
  align-self: flex-end;
  display: inline-block;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: a grid ... 


 * INSTRUCTIONS FOR ANY GRID: 
 * separate grid behavior (wrapper & cols) from item behavior (and its own rwd behavior)

 */
/*
 * Grid - Blog
 */
.grid_blog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4em;
}

@media only screen and (max-width: 1024px) {
  .grid_blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 768px) {
  .grid_blog {
    grid-template-columns: 1fr;
  }
}

/*
 * Card - Blog
 */
.card_blog {
  --card-padding: 16px;
  --card-radius: 48px;
  /*
  border-radius: var(--card-radius);
  */
  /*
  // padding: $spacing025;
  // padding: 1em;
  padding: var(--card-padding);
  */
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
  border-radius: 36px;
  overflow: hidden;
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  gap: var(--card-padding);
  padding-bottom: var(--card-padding);
}

.card_blog a {
  color: inherit;
}

.card_blog > *:not(a:has(picture)),
.card_blog > .info > * {
  padding-inline: var(--card-padding);
}

.card_blog picture {
  /*
    background-color: var(--fp-purple-light); // PRECAUTION - TEMP PLACEHOLDER 
    // border-radius: calc(var(--card-radius) - var(--card-padding)); 
    border-radius: 12px; // 
    */
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  border-bottom: 2px solid var(--fp-yellow);
  /*
    border: $s_border;
    border-width: 1px; // 
    */
  /*
    box-shadow: 0px 0px 2px #ccc; // TODO
    */
  overflow: hidden;
}

.card_blog picture img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: scale 0.5s ease-in-out;
}

.card_blog picture img:hover {
  scale: 1.1;
}

.card_blog .info {
  display: contents;
  /*
    > * {
      padding-inline: var(--card-padding);
    }
    */
  /*
    padding-top: var(--card-padding);
    */
  padding-inline: var(--card-padding);
  /*
    display: flex;
    flex-direction: column;
    gap: var(--card-padding); 
    */
}

.card_blog .info .category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}

.card_blog .info .category a {
  display: inline-block;
}

.card_blog .info ul.post_categories_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}

.card_blog .info ul.post_categories_list a {
  display: inline-block;
}

.card_blog .info .post_categories_plain {
  font-size: var(--fs-s);
  text-transform: uppercase;
  color: var(--fp-yellow);
  font-weight: bold;
}

.card_blog .info h3 {
  /*
      // margin-block: 0.4em; // MIXIN 
      margin-block: 1em; // MIXIN 
      */
  margin-block: var(--card-padding);
  font-size: 1.618em;
  font-family: var(--fp-font-body);
  color: var(--fp-yellow);
  text-transform: uppercase;
}

.card_blog .info .text {
  font-size: 1em;
  font-family: var(--fp-font-body);
  color: var(--fp-yellow);
  text-transform: uppercase;
  font-weight: 700;
}

.card_blog .info ul.tags {
  margin-block: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  font-weight: bold;
}

.card_blog .info ul.tags a {
  display: inline-block;
}

.card_blog .info .link {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.card_blog .info .link a {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.post_featured_image {
  /*
  // BUILD MIXINS FOR THSI 2 THINGES
  border: 2px solid var(--fp-yellow);
  border-radius: 12px;
  
  box-shadow: 6px 6px 0px var(--fp-yellow); // 
  */
  margin-bottom: 2rem;
  object-fit: cover;
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
  position: relative;
}

.post_featured_image img {
  border-radius: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post_featured_image::before, .post_featured_image::after {
  content: '';
  background-image: url("../../img/frikiing/star-stroke.png");
  background-size: contain;
  width: 72px;
  height: 72px;
  position: absolute;
  pointer-events: none;
}

.post_featured_image::before {
  bottom: 0;
  left: -36px;
}

.post_featured_image::after {
  top: -36px;
  right: 0px;
}

h1.post-title,
h1#post-title {
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 72px);
  font-size: 2rem;
}

.post_meta {
  font-family: var(--fp-font-body);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.post_author,
.post_date,
.post_categories {
  display: inline-flex;
  align-items: center;
}

.post_author::after,
.post_date::after {
  content: '•';
  color: var(--fp-yellow);
  margin-left: 1rem;
}

@media only screen and (max-width: 576px) {
  .post_meta {
    font-size: 0.85rem;
    gap: 0.4rem 0.75rem;
  }
  .post_author::after,
  .post_date::after {
    margin-left: 0.75rem;
  }
}

/* Two-column: image block left, text right */
.block_location {
  display: grid;
  gap: 4rem;
  grid-template-columns: 951fr 629fr;
  /*
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--fp-content-max);
  margin: 0 auto;
  padding: 0 var(--fp-gutter);
  */
  align-items: center;
}

.block_location.mono_column_temp {
  grid-template-columns: unset;
  max-width: 1024px;
  margin-inline: auto;
}

.block_location.mono_column_temp .info_wrapper {
  display: none;
}

.block_location .media {
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.block_location .media iframe {
  border-radius: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: auto;
  height: auto;
  width: 100%;
  display: block;
}

.block_location .info {
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.38;
  font-size: 18px;
}

.block_location .info .info__title {
  font-size: 24px;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 1024px) {
  /* $bp_l */
  .block_location {
    grid-template-columns: 1fr;
  }
}

/* MEDIA-QUERY */
.block_contact {
  max-width: 576px;
  margin-inline: auto;
}

/*
 * Author: Carl Johansson @carlwebdev
 * Project: cowo-Boilerplate
 * File: UI-SOCIAL
 */
/* DO SOME UI - CHANGE SCALE OR STH !!! */
.m_social {
  /*
  outline: 12px solid blue;
  outline-offset: 3px;
  */
}

.m_social ul {
  display: flex;
  gap: 12px;
}

.m_social ul li {
  flex-shrink: 0;
}

.m_social ul li a {
  /* CASE = SQUARED BOXES, NOT GON TO USE THAT RIGHT NOW ... 
        display: block;
        padding: 4px;
        // ui_color_change
        background-color: var(--c-white);
        &:hover {background-color: var(--c-accent);}
        */
  /*
        color: var(--c-text); 
        &:hover {color: var(--c-accent);}
        */
  transition: text-shadow 0.4s ease-in-out;
}

.m_social ul li a img {
  width: 32px;
}

.m_social ul li a i {
  display: block;
  font-size: 2em;
  /*
          color: var(--c-text); 
          &:hover {color: var(--c-accent);}  
          */
  color: var(--fp-yellow);
}

/* OPTIONS - SOCIAL MEDIA */
.header_social {
  /*
  .m_social ul {
      // display: flex;
      // gap: 18px;
      gap: 6px;
  }
  */
}

.footer_social {
  /*
  // NO NEED FORE THI MM_SOCIAL LAYER...WAIT, NED SOME INETRMEDIATE LAYER, FOR 1 IS FOR THE BASICS, JUST DO UL WITH CLASS, AND THEN HAVE L_'s for situations..
  .m_social ul {
      // display: flex;
      // gap: 18px;
      gap: 6px;
  }
  */
}

/* WP COOKIES POPUP */
.cookie-notice-container {
  border-top: 4px solid white;
  background-color: var(--c-accent) !important;
}

#cookie-notice .cn-button {
  margin-left: 10px;
  background-color: white !important;
  color: var(--c-accent);
  cursor: pointer;
  background-color: var(--c-white);
  font-size: var(--fs-m);
  color: #D92E3E;
  text-transform: uppercase;
  /* PREACUTION */
  background-image: linear-gradient(to bottom, white, white) !important;
  border-radius: 0px !important;
  text-shadow: none !important;
}

/* CSS Document - FRONT-END */
/* =================================================================== */
/* TABS - Simple jQuery tabs                         				   */
/* =================================================================== */
/*
 * TABS WRAPPER ....    
 */
/*
 * TABS MENU   - design it materlia styla, like the one in the cowoCMS ..  
 */
.jq_tabsMenu ul {
  overflow: hidden;
}

.jq_tabsMenu li {
  float: left;
  width: 100px;
  /* !!!!!!!!!!!!! */
  text-align: center;
  margin-right: 8px;
  color: #fff;
}

.jq_tabsMenu li a {
  color: inherit;
  display: block;
  /* */
  padding: 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #E64A19;
}

.jq_tabsMenu li.active a {
  background: #FFCCBC;
  color: #E64A19;
}

.jq_tabsMenu li.active a:hover {
  background: #FFCCBC;
  color: #E64A19;
}

.jq_tabsMenu li a:hover {
  background: #999;
  color: var(--c-white);
}

/*
 * THE TABS
 */
#tabs .tab {
  clear: both;
  /* ????????????? */
  background: #FFCCBC;
  padding: 15px;
  /* min-height: 200px; */
  min-height: 200px;
  /* DEMO */
  color: var(--c-white);
}

@media only screen and (max-width: 600px) {
  /* width is inclusive */
  .jq_tabsMenu li {
    width: 23.5%;
    margin-right: 2%;
    color: #FF0 !important;
  }
  .jq_tabsMenu li:last-of-type {
    margin-right: 0%;
  }
}

@media only screen and (max-width: 380px) {
  /* width is inclusive */
  .jq_tabsMenu li a {
    font-size: 0.75rem;
  }
}

/* CSS Document */
/* ============================================ */
/* COWOWO ACCORDION                             */
/* ============================================ */
/* CONTAINER */
/* EACH PAIR OF TRIGGER AND HIDDEN SECTION */
.accordion_item {
  background-color: #999;
  margin-bottom: 5px;
}

/* TRIGGER */
.accordion_top {
  background-color: #FFCCBC;
}

.accordion_top.active {
  background-color: #0f0 !important;
}

/* HIDDEN SECTION */
.accordion_bottom {
  background-color: #E64A19;
  height: 50px;
  /* display:none; */
}

/* CSS Document */
/* ============================================ */
/* COWOWO DROPDOWN                              */
/* ============================================ */
/* DESIGN */
.genericDropdownItem {
  clear: both;
  overflow: hidden;
  margin-bottom: 10px;
}

.genericDropdownItem:last-of-type {
  margin-bottom: 0px;
}

/* TOP */
.genericDropdownItem_top {
  position: relative;
  /* for the trigger */
  padding-top: 5px;
  background-color: #999;
  min-height: 50px;
}

.genericDropdownItem_top_trigger {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #999;
  font-weight: bold;
}

.genericDropdownItem_top_trigger:hover,
.genericDropdownItem_top_trigger.is_active {
  background-color: #999;
  /* TESTING NEW THING */
  /* SASS IT !!!!!!!!!!!!!! */
  color: var(--c-white);
}

/* BOTTOM */
.genericDropdownItem_bottom {
  background-color: #E64A19;
  min-height: 100px;
}

/* FUNCTION */
.jq_dropdown {
  /* THE PARENT OF EACH DROPDOWN TOP/BOTTOM PAIR */
}

.jq_dropdown_shown.is_active {
  background-color: #999;
}

.jq_dropdown_trigger {
  cursor: pointer;
}

.jq_dropdown_trigger.is_active {
  background-color: #E64A19;
  color: var(--c-white);
}

.jq_dropdown_trigger.is_active:hover {
  color: #000;
}

.jq_dropdown_hidden {
  display: none;
}

/*
 * cowo-Boilerplate
 * CSS
 * cowo-gridlist // NOT ANYMORE 
 * ui_gridlist
 */
/* MIXIN TO DECLARE-CSS-COUNTER */
.ui_gridlist_items ul li::before {
  counter-increment: gridlist;
  /* Increment the value of section counter by 1 */
  /* content: "# " counter(section) ": "; */
  /* Display the word 'Section ', the value of section counter, and a colon before the content of each h3 */
  /* content: "# " counter(section); */
  /* content: counter(section);  */
  content: "Item " counter(gridlist);
}

.ui_gridlist {
  /* PLACEHOLDER */
}

/*
   * cowo-gridlist
   * menu
   */
.ui_gridlist_menu {
  display: flex;
  margin-bottom: 12px;
}

.ui_gridlist_menu ul {
  display: flex;
  gap: 1em;
}

.ui_gridlist_menu li {
  text-align: center;
  color: var(--c-text);
  border: 3px solid var(--c-accent);
}

.ui_gridlist_menu li a {
  display: block;
  /* */
  padding: 0.6em 1em;
  background: #E64A19;
  color: inherit;
}

.ui_gridlist_menu li.is-active a {
  background: #FFCCBC;
  color: #E64A19;
}

.ui_gridlist_menu li.is-active a:hover {
  background: #FFCCBC;
  color: #E64A19;
}

.ui_gridlist_menu li a:hover {
  background: #999;
  color: var(--c-text);
}

.ui_gridlist_menu li button {
  background-color: red;
}

.ui_gridlist_menu li button.is-active {
  background-color: green;
}

/*
   * cowo-gridlist
   * items
   */
.ui_gridlist_items {
  border: 12px solid black;
}

.ui_gridlist_items ul li {
  background-color: var(--c-bg-dark);
  color: var(--c-text-inv);
  border: 3px solid var(--c-accent);
  padding: 24px;
  padding: 3em;
}

.ui_gridlist_items ul.is-list {
  display: grid;
  gap: 1em;
}

.ui_gridlist_items ul.is-list li {
  /* LAYOUT */
  /*
		  margin-bottom: $spacing05;
				  :last-of-type {margin-bottom: 0px;}
		  */
}

.ui_gridlist_items ul.is-grid {
  /* LAYOUT - CSS GRID */
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* 6 COLUMNS */
  gap: 1em;
}

.ui_gridlist_items ul.is-grid li {
  /* PLACEHOLDER */
}

/* CSS Document - FRONT-END */
/* =================================================================== */
/* LIGHTBOX ME                                       				   */
/* =================================================================== */
.lightboxme_trigger {
  cursor: pointer;
  background-color: #999;
  float: left;
  padding: 24px;
  color: #fff;
}

.lightboxme_trigger:hover {
  background-color: #E64A19;
}

.lightboxme_content {
  clear: right;
  display: none;
  background-color: #FFCCBC;
  color: #fff;
  /* width:700px; */
  width: 62%;
  padding: 24px;
}

.lightboxme_content .close {
  cursor: pointer;
  text-align: right;
  margin-bottom: 24px;
}

.lightboxme_content .close:hover {
  color: #999;
}

.demo_item {
  background-color: #000;
  float: left;
  width: 32%;
  margin-right: 2%;
  padding-top: 32%;
  padding-top: 42.8%;
  position: relative;
}

.demo_item:nth-of-type(3n) {
  margin-right: 0%;
}

.demo_item_content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

#transformers-rule {
  width: 100%;
  height: 100%;
  position: relative;
}

.container {
  width: 100%;
  height: 100%;
  -webkit-perspective: 1000px;
  /* 100 =  VERY COOL EFFECT !!! */
  -moz-perspective: 1000px;
  perspective: 1000px;
}

.container:hover .card {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.face {
  position: absolute;
  -webkit-backface-visibility: hidden;
  /* COOL! - HIDES THE BACK OF THE CARD (THE NEGATIVE SIDE */
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.megatron {
  /* float: left;  */
  /* position: absolute;  */
  /* -webkit-transform: rotate(5deg); */
}

.megatron .front {
  width: 100%;
  height: 100%;
}

.megatron .back {
  width: 100%;
  height: 100%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  padding: 20px;
  /* DEMO */
  background-color: #ccc;
}

/*
 * INTERSECTION OBSERVER - copying fomr dialog - the script, plusthe clas name, and the css and the fadin csss...
 *
 * 
 *
 *
 */
.io_fadein_below {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1s, opacity 1s;
}

.fadeIn {
  opacity: 1;
  transform: translateY(0px);
}

.io_fadein_left {
  opacity: 0;
  transform: translateX(100px);
  transition: transform 1s, opacity 1s;
}

.fadeInLeft {
  opacity: 1;
  transform: translateX(0px);
}

/* 
 * Z - OBSOLETE 
 */
/* FOR THE RESPONSIVE BEHAVIOUR */
/* 
 * COMPONENTS - UI 
 */
/* MODULES */
/* 
 * COMPONENTS - ATOMS 
 */
/* 
 * FIGMA
 */
/* ================================================================
   FRIKIING FESTIVAL — LANDING PAGE
   Source: Figma > Frikiing V2 > Page 1 > Home > Desktop (1920px)
   Scope:  All selectors prefixed with #fp-main or .fp- to prevent
           conflicts with global.css
   ================================================================ */
/* GOOGLE FONTS
   - Gasoek One  : display headings
   - Montserrat  : body / ui
   ---------------------------------------------------------------- */
/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  /* Colors */
  --fp-bg:            #0d1a2a;
  --fp-bg-deep:       #0a0b24;
  --fp-bg-mid:        #101f3e;
  --fp-yellow:        #f9e100;
  --fp-purple:        #6803ff;
  --fp-purple-light:  #9a57ff;
  --fp-blue:          #232163;
  --fp-blue-mid:      #393ee2;
  --fp-red:           #ee1800;
  --fp-white:         #ffffff;
  --fp-gray:          #d9d9d9;
  /* Typography */
  --fp-font-display:  'Gasoek One', sans-serif;
  --fp-font-body:     'Montserrat', sans-serif;
  /* Layout */
  --fp-content-max:   1640px;
  --fp-gutter:        clamp(1.5rem, 7.3vw, 140px);
  --fp-section-gap:   clamp(60px, 8vw, 100px);
}

/* ================================================================
   GLOBAL HEADER — positioning context for #fp-header
   ================================================================ */
/* 
header#header {
  position: relative;
}
*/
/* ================================================================
   BASE
   ================================================================ */
#fp-main {
  /*
  background-color: var(--fp-bg-mid);
  */
  overflow-x: clip;
}

.fp-container {
  width: 100%;
  max-width: calc(var(--fp-content-max) + var(--fp-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--fp-gutter);
}

@media (max-width: 768px) {
  /* --- SHARED HELPERS ----------------------------------------- */
  .fp-container {
    padding: 0 20px;
  }
}

/* end @media (max-width: 768px) */
/* --- SHARED HELPERS ----------------------------------------- */
/* Separator ornament used between sections */
.fp-section-separator {
  display: block;
  width: 390px;
  max-width: 100%;
  margin: 0 auto 12px;
}

@media (max-width: 768px) {
  .fp-section-separator {
    width: 100%;
  }
}

/* ================================================================
   HERO
   Full-viewport image section with overlaid header
   Figma: Home group — 1920×1080
   ================================================================ */
section#fp-hero {
  padding-block: unset;
}

#fp-hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background-color: var(--fp-bg-mid);
}

.fp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dark vignette / shadow layer on top of the photo */
.fp-hero__shadow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.fp-hero__video {
  min-height: 100dvh;
}

.fp-hero__video video {
  width: 100%;
  min-height: 100dvh;
  object-fit: cover;
  display: block;
}

.fp-btn-cta, input[type=submit],
input[type=reset] {
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--fp-font-display);
  font-weight: 400;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2em 1.4em;
  background-color: var(--fp-yellow);
  color: black !important;
  border: 2px solid;
  /*
    // box-shadow: 6px 6px 0px var(--fp-red);
    // transition: opacity 0.2s ease;
    // transition: box-shadow 0.4s ease-in-out, opacity 0.2s ease;
    
    &:hover {
      box-shadow: 0px 0px 0px var(--fp-red);
    }
    */
  transition: box-shadow 0.4s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.fp-btn-cta:hover, input:hover[type=submit],
input:hover[type=reset] {
  box-shadow: 0px 0px 0px var(--fp-red);
  background-color: var(--fp-yellow);
  color: black !important;
}

.fp-btn-cta.is-center, input.is-center[type=submit],
input.is-center[type=reset] {
  /*
      display:block;
      margin-inline:auto;
      */
  /*
      width:420px;
      text-align:center;
      */
  display: inline-block;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .fp-btn-cta, input[type=submit],
  input[type=reset] {
    min-width: 0;
    font-size: 20px;
  }
}

/* MEDIA-QUERY */
.fp-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 3rem;
  text-align: center;
}

.fp-section__title {
  max-width: 1024px;
  /* TODO */
  margin: 0;
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.26;
}

.fp-section__subtitle {
  /* max-width: 1221px; */
  max-width: 776px;
  margin: 0;
  /*
    font-family: var(--fp-font-body);
    font-weight: 700;
    */
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.38;
  font-size: clamp(14px, 1.5vw, 24px);
}

.fp-section__text {
  max-width: 920px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

@media (max-width: 768px) {
  /* Title: 48px on mobile (was 72px desktop) */
  .fp-section__title {
    font-size: 48px;
  }
  /* Subtitle: 18px on mobile (was 24px desktop) */
  .fp-section__subtitle {
    font-size: 18px;
  }
}

/* end @media (max-width: 768px) */
/* ================================================================
   3D LINES DECORATION
   Wide decorative image at the base of the page
   Figma: Lineas_3D — y:6128, w:6744, h:1067
   ================================================================ */
.fp-lineas-3d {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 60px;
  pointer-events: none;
}

/* ================================================================
   RESPONSIVE — MOBILE
   Breakpoint: 768px (matches Figma mobile canvas 375px with margin)
   All values taken directly from Figma Mobile frame measurements
   ================================================================ */
@media (max-width: 768px) {
  /* --- HERO ---------------------------------------------------- */
  /*
  #fp-hero {
    min-height: 500px;
    max-height: 667px; // typical phone height 
  }
  */
}

/* end @media (max-width: 768px) */
.hero_area {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* */
  background-image: url(../../img/login/bg-landscape.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* */
}

.block_hero_vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
}

.block_hero_vertical picture {
  max-width: 280px;
  margin-bottom: -2rem;
  position: relative;
  z-index: 1;
}

.block_hero_vertical .fp-section__header {
  margin-bottom: unset;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 1024px) {
  .block_hero_vertical picture {
    max-width: 240px;
  }
}

@media only screen and (max-width: 768px) {
  .block_hero_vertical picture {
    max-width: 80%;
    margin-bottom: unset;
    margin-bottom: 2rem;
  }
}

.block_hero_horizontal {
  --hero-pic-width: 39%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(auto, var(--hero-pic-width)) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  /*
    h1 { }

    P {}
    */
  /*
    .fp-section__header {
    margin-bottom: unset;
    margin-bottom: 3rem; // ?? 
    }
    */
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
  /* MEDIA-QUERY */
}

.block_hero_horizontal .block_hero_horizontal__title {
  min-width: 0;
}

.block_hero_horizontal .block_hero_horizontal__title img {
  margin-inline: auto;
}

.block_hero_horizontal picture {
  width: 100%;
  position: relative;
  z-index: 1;
}

.block_hero_horizontal .block_hero_horizontal__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block_hero_horizontal .block_hero_horizontal__title,
.block_hero_horizontal .block_hero_horizontal__content {
  width: 100%;
  flex: 1 1 auto;
}

@media only screen and (max-width: 1440px) {
  .block_hero_horizontal .block_hero_horizontal__title img {
    max-width: unset;
  }
}

@media only screen and (max-width: 1024px) {
  .block_hero_horizontal {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .block_hero_horizontal picture {
    max-width: 420px;
    width: 100%;
    order: -1;
    margin-bottom: -1rem;
  }
  .block_hero_horizontal .block_hero_horizontal__title img {
    max-width: 320px;
    margin-inline: auto;
  }
  .block_hero_horizontal .block_hero_horizontal__content {
    max-width: 50%;
    margin-inline: auto;
  }
  .block_hero_horizontal .block_hero_horizontal__content .fp-section__header {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .block_hero_horizontal picture {
    max-width: 80%;
    margin-bottom: -2rem;
  }
}

@media only screen and (max-width: 576px) {
  .block_hero_horizontal picture {
    max-width: 100%;
  }
  .block_hero_horizontal .block_hero_horizontal__content {
    max-width: unset;
  }
}

/* ================================================================
   INTRO — THE REAL FREAKS
   Left: yellow placeholder image block
   Right: decorative icon + subtitle + body text + CTA
   Figma: INTRO-THE REAL FREAKS group — y:1039, h:882
   ================================================================ */
#fp-intro {
  /*  
  position: relative;
  padding: var(--fp-section-gap) 0;
  background-color: var(--fp-bg-mid); // ?????????
  overflow: hidden;
  */
}

/* Full-width title graphic */
.fp-intro__title-img {
  display: block;
  width: 100%;
  max-width: 768px;
  max-width: 768px;
  height: auto;
  margin-inline: auto;
}

/* MAKE IT TIN TO TEXT, WITH HOVER FX !!! */
#fp-intro-title {
  margin: 0 auto 60px;
  text-align: center;
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3.5vw;
  letter-spacing: 0.1em;
  /* Adjust letter spacing as needed */
  transition: text-shadow 0.2s ease-in-out;
}

#fp-intro-title:hover {
  transition-duration: 0.4s;
  /* Make the transition faster on hover */
}

/* Two-column: image block left, text right */
.fp-intro__content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 4rem;
  /*
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--fp-content-max);
  margin: 0 auto;
  padding: 0 var(--fp-gutter);
  */
}

.fp-intro__content > * {
  min-width: 0;
}

/* Yellow placeholder block for left-side visual */
.fp-intro__image-wrap {
  position: relative;
  margin-top: 5rem;
  align-self: flex-start;
}

.fp-intro__image-wrap::before, .fp-intro__image-wrap::after {
  content: '';
  background-image: url("../../img/frikiing/star-stroke.png");
  background-size: contain;
  width: 72px;
  height: 72px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.fp-intro__image-wrap::before {
  bottom: 0;
  left: -35px;
}

.fp-intro__image-wrap::after {
  top: -35px;
  right: 0px;
}

.fp-intro__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
}

.fp-intro__slider_item {
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  border-radius: 32px;
  /*
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  // @include card_border;
  @include card_box;
  @include card_bg; // PRECAUTION
  */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.fp-intro__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fp-intro__edelweiss {
  /*
    width: 81px;
    height: 80px;
    */
  width: 64px;
  object-fit: contain;
}

.fp-intro__subtitle {
  margin: 0;
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.26;
  /* font-size: clamp(28px, 4vw, 64px); */
  font-size: clamp(28px, 3.9vw, 48px);
}

.fp-intro__divider {
  display: block;
  width: 110px;
  height: auto;
  margin-block: 1rem;
}

.fp-intro__body {
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.38;
  font-size: 18px;
  margin: 0;
  margin-bottom: 0.9em;
}

@media only screen and (max-width: 1440px) {
  .fp-intro__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

/* MEDIA-QUERY */
@media only screen and (max-width: 1200px) {
  .fp-intro__content {
    margin-top: 2rem;
  }
  .fp-intro__image,
  .fp-intro__slider_item {
    aspect-ratio: 4 / 3;
  }
}

/* MEDIA-QUERY */
@media only screen and (max-width: 1024px) {
  .fp-intro__content {
    grid-template-columns: 1fr;
  }
  .fp-intro__image-wrap {
    margin-top: unset;
  }
}

/* MEDIA-QUERY */
/* MEDIA-QUERY */
/* MEDIA-QUERY */
@media (max-width: 480px) {
  .fp-intro__image,
  .fp-intro__slider_item {
    aspect-ratio: 1 / 1;
  }
}

/* MEDIA-QUERY */
@media (max-width: 768px) {
  /*
  .fp-intro__title-img {
    max-width: 100%;
    // margin-bottom: 24px;
  }


  .fp-intro__content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }


    .fp-intro__subtitle {
      font-size: 48px;
    }

    .fp-intro__body {
      font-size: 16px;
    }

*/
}

/* MEDIA-QUERY */
/* ================================================================
   ACTIVIDADES
   Section header + 3×2 grid of activity cards
   Figma: ACTIVIDADES group — y:2004, h:1109
   ================================================================ */
/*
#fp-actividades {
  // padding: var(--fp-section-gap) 0;
  // text-align: center;
}


  #fp-actividades .fp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

*/
/* 3-column grid */
.fp-actividades__grid {
  margin-top: 4rem;
  /* */
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

@media only screen and (max-width: 1200px) {
  .fp-actividades__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 768px) {
  .fp-actividades__grid {
    grid-template-columns: 1fr;
  }
}

.fp-actividades__card {
  position: relative;
  /* overflow: clip; */
  /* to allow the icon to overflow outside the card */
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
  border-radius: 36px;
  /* Star ornament above first card only */
}

.fp-actividades__card::before {
  content: '';
  background-image: url("../../img/frikiing/star-stroke.png");
  background-size: contain;
  width: 48px;
  height: 48px;
  position: absolute;
  z-index: 1;
  bottom: -18px;
  bottom: 0;
  left: -26px;
}

.fp-actividades__card:hover .fp-actividades__info {
  /*
      background: linear-gradient(
        to top,
        rgba(190, 46, 72, 0.72) 0%,
        rgba(110, 56, 168, 0.52) 100%
      );
      */
  /*
      background: linear-gradient(
        to top right,
        rgba(190, 46, 72, 0.40) 0%,
         rgba(190, 46, 72, 0.40) 55%,
         rgba(110, 56, 168, 0.40) 65%,
        rgba(110, 56, 168, 0.40) 100%
      );
      */
  background: linear-gradient(55deg, rgba(190, 46, 72, 0.4) 0%, rgba(190, 46, 72, 0.4) 60%, rgba(110, 56, 168, 0.4) 70%, rgba(110, 56, 168, 0.4) 100%);
  visibility: visible;
  opacity: 1;
}

/* Activity icon overlaid at bottom-left of each card */
.fp-actividades__card-icon {
  position: absolute;
  z-index: 1;
  top: -58px;
  right: -58px;
  /* aka half of width */
  width: 116px;
  height: 116px;
  object-fit: contain;
  /* ??? */
}

.fp-actividades__card-img {
  border-radius: 36px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: #232163;
  overflow: hidden;
  /* for the opacity on the info layer !!! */
}

.fp-actividades__info {
  border-radius: 32px;
  position: absolute;
  inset: 0;
  /*
    display: grid;
    place-items: center;
    */
  /* .temp {} */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem 1rem;
  visibility: hidden;
  /* hide the text but keep the space for it, so the card doesn't jump when it appears on hover */
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  /* fade in the text + overlay */
  /* background-color: rgba(0, 0, 0, 0.5); */
  /* TEMP, semi-transparent overlay to improve text readability */
  /*
    &:hover {
      visibility: visible;
      opacity: 1;
    }
    */
  /*
    @media only screen and (max-width: $bp_l) { // shoudl do query de device withiut hover, osea touch device .. peor no lapro 
      visibility: visible;
      opacity: 1;
    } // MEDIA-QUERY
    */
}

.fp-actividades__name {
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.26;
  /* font-size: clamp(20px, 2vw, 38px); */
  font-size: 36px;
  margin: 0;
}

.fp-actividades__role {
  /* was being originally aplied to a p tag, but i changed it to div as the:excerpt cerated a p tag within - unless i can learn to change it, whatver ... */
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.26;
  /* font-size: 21px; */
  /*  font-weight: 400; */
  letter-spacing: 4.2px;
  margin: 0;
  /* */
  text-wrap: balance;
  /* */
}

@media (max-width: 1024px) {
  .fp-actividades__card-img {
    aspect-ratio: 1 / 1;
  }
  .fp-actividades__card-icon {
    top: -36px;
    right: -36px;
    /* aka half of width */
    width: 72px;
    height: 72px;
  }
}

/* MEDIA-QUERY */
/* ================================================================
   INVITADOS
   Header text + 4-column guest card grid
   Figma: invitados group — y:3209, h:913
   ================================================================ */
/*
  #fp-invitados {
    padding: 48px 0 60px;
  }
  */
/* 4-column grid of guest cards */
.fp-invitados__grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* 2-column grid on mobile (4-col on desktop) */
  /*
  .fp-invitados__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  */
}

@media only screen and (max-width: 1024px) {
  .fp-invitados__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  .fp-invitados__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media only screen and (max-width: 576px) {
  .fp-invitados__grid {
    grid-template-columns: 1fr;
  }
}

.fp-invitados__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  /* Center-align text within each card */
}

.fp-invitados__card::before {
  content: '';
  background-image: url("../../img/frikiing/star-2.png");
  background-size: contain;
  /*
        width: 48px;
        height: 48px;
        */
  position: absolute;
  /*
        top: -12px;
        left: -24px; // half of the size of the star to center it ...vertically...        
        */
  width: 84px;
  height: 84px;
  top: -21px;
  left: -42px;
}

/* Star ornament above each card */
/*
    .fp-invitados__star {
      width: 84px;
      height: 84px;
      object-fit: contain; // ??? 
      position: absolute;
      z-index:1; // REQUIRED FOR THE HOVER SCALE FX ON THE IMAGE
      // top: -42px;
      top: -21px; // halfway, so, a fourth
      left: -42px; // half of the size of the star to center it horizontally (84px / 2 = 42px)
     
      // width: 48px;
      // height: 48px;
     
    }
    */
.fp-invitados__photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
  border-radius: 36px;
  display: block;
  overflow: hidden;
}

.fp-invitados__photo img {
  object-fit: cover;
  height: 100%;
  transition: scale 0.2s ease;
}

.fp-invitados__photo:hover img {
  /*
        box-shadow: 12px 12px 0px var(--fp-yellow);
        transition: box-shadow 0.2s ease;
        cursor: pointer;
        */
  /* Optional: slight scale-up on hover */
  /* transform: scale(1.05); */
  scale: 1.10;
}

.fp-invitados__name {
  margin: 0;
  margin-top: 1rem;
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.26;
  font-size: 24px;
}

.fp-invitados__role {
  /* was being originally aplied to a p tag, but i changed it to div as the:excerpt cerated a p tag within - unless i can learn to change it, whatver ... */
  /*
      font-family: var(--fp-font-body);
      text-transform: uppercase;
      font-weight: 400;
      */
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.26;
  letter-spacing: 4.2px;
  margin: 0;
  /* */
  text-wrap: balance;
  /* */
  text-align: center;
  /* WEIRD, REQUIERD FOT EH ARCHIVE PAG EOPNLYE ?!?!     . . seguro que por elmage wrapper !!!!  */
}

.fp-invitados__social a {
  transition: text-shadow 0.4s ease-in-out;
}

.fp-invitados__social a i {
  display: block;
  font-size: 2em;
  color: var(--fp-yellow);
}

@media (max-width: 768px) {
  .fp-invitados__star {
    width: 56px;
    height: 56px;
    top: -12px;
    left: -28px;
  }
  /* Name: keep Gasoek One but scale down */
  /* Role: reduce letter-spacing and size for small screens */
  /*
  .fp-invitados__header {
    margin-bottom: 40px;
  }
  */
}

@media (max-width: 576px) {
  .fp-invitados__photo {
    width: 100%;
    /*
      // aspect-ratio: 3 / 4;
      aspect-ratio: 1 / 1;
      */
  }
}

/* ================================================================
   HORARIOS
   3-column schedule grid (Viernes / Sábado / Domingo)
   Figma: horarios group — y:4195, h:1055
   ================================================================ */
.fp-horarios__download {
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 21px;
  color: var(--fp-yellow);
  /* text-decoration: underline;
  text-underline-offset: 4px; */
  /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
  transition: opacity 0.2s ease;
  margin-inline: auto;
  display: block;
  width: fit-content;
  text-align: center;
  margin-top: 3rem;
  border: 2px solid var(--fp-yellow);
  border-radius: 50vh;
  padding: 0.4em 1em;
  transition: all 0.2s ease;
}

.fp-horarios__download:hover {
  /* opacity: 0.7; */
  background-color: var(--fp-yellow);
  color: black;
}

/* 3 columns, one per day */
.fp-horarios__grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
  /*
  @media only screen and (max-width: $bp_l) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  } // MEDIA-QUERY

  @media only screen and (max-width: $bp_m) {
      grid-template-columns: 1fr;
  } // MEDIA-QUERY
  */
}

@media only screen and (max-width: 1200px) {
  .fp-horarios__grid {
    grid-template-columns: 1fr;
  }
}

.fp-horarios__day {
  position: relative;
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
  border-radius: 36px;
  /* Star ornament above first card only */
}

.fp-horarios__day::before {
  content: '';
  background-image: url("../../img/frikiing/star-stroke.png");
  background-size: contain;
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: -28px;
  right: 50%;
  translate: 50%;
}

.fp-horarios__day:first-of-type::before {
  bottom: 0;
  left: -26px;
  translate: unset;
}

.fp-horarios__day-header {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  border-bottom: 2px solid var(--fp-yellow);
  /*
  display: flex;
  justify-content: space-between;
  */
  position: relative;
  /* align-items: baseline; */
  gap: 1rem;
  padding-block: 1rem;
  padding-inline: 2rem;
}

.fp-horarios__day-name {
  margin: 0;
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.26;
  font-size: 40px;
}

.fp-horarios__day-date {
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  position: absolute;
  /*
    top: 6px;
    right: 12px;
    top: 8px;
    right: 14px;    
    */
  top: 10px;
  right: 16px;
}

.fp-horarios__event {
  /*
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px 16px; // ?????????????
  align-items: start;
  */
  padding-block: 1rem;
  padding-inline: 2rem;
  /*
  outline: 3px solid red; 
  outline-offset: 3px;
  */
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.fp-horarios__event:not(:last-of-type) {
  border-bottom: 2px solid var(--fp-yellow);
}

.fp-horarios__event-specs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0em 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.fp-horarios__event-venue {
  display: block;
}

.fp-horarios__event-name {
  font-size: 21px;
  line-height: 1.26;
  margin: 0 0 4px;
}

/* ================================================================
   RESPONSIVE — MOBILE
   Breakpoint: 768px (matches Figma mobile canvas 375px with margin)
   All values taken directly from Figma Mobile frame measurements
   ================================================================ */
@media (max-width: 768px) {
  .fp-horarios__day-name {
    font-size: 32px;
  }
  .fp-horarios__day-date {
    font-size: 20px;
  }
  .fp-horarios__event-name {
    font-size: 18px;
  }
  .fp-horarios__header {
    margin-bottom: 40px;
  }
  .fp-horarios__subtitle {
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .fp-horarios__event-specs {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   ENTRADAS
   3-ticket pricing section: Día / Full Pass / VIP
   Figma: ENTRADAS group — y:5319, h:1495
   ================================================================ */
/* Ticket cards grid: Día + Full Pass (left column) — VIP (right) */
.fp-entradas__grid {
  display: grid;
  /* 3 cards per full row (each card spans 2 of 6 tracks) */
  grid-template-columns: repeat(6, minmax(0, 1fr));
  /* gap: 28px; */
  gap: 4rem;
  align-items: start;
  /* If the last row has 2 cards, center them */
  /* */
}

.fp-entradas__grid > * {
  grid-column: span 2;
}

.fp-entradas__grid > :nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}

.fp-entradas__grid > :last-child:nth-child(3n + 2) {
  grid-column: 4 / span 2;
}

@media only screen and (max-width: 1024px) {
  .fp-entradas__grid {
    /* 4-track grid — each card spans 2 = visually 2 columns */
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* Reset desktop 3-col centering overrides */
    /* Center lone last card (odd position in 2-per-row layout) */
  }
  .fp-entradas__grid > * {
    grid-column: span 2;
  }
  .fp-entradas__grid > :nth-last-child(2):nth-child(3n + 1) {
    grid-column: span 2;
  }
  .fp-entradas__grid > :last-child:nth-child(3n + 2) {
    grid-column: span 2;
  }
  .fp-entradas__grid > :last-child:nth-child(2n + 1) {
    grid-column: 2 / span 2;
  }
}

@media only screen and (max-width: 768px) {
  .fp-entradas__grid {
    grid-template-columns: 1fr;
    /* Reset all span/centering overrides */
  }
  .fp-entradas__grid > *,
  .fp-entradas__grid > :last-child:nth-child(2n + 1),
  .fp-entradas__grid > :nth-last-child(2):nth-child(3n + 1),
  .fp-entradas__grid > :last-child:nth-child(3n + 2) {
    grid-column: auto;
  }
}

/* Individual ticket card */
.fp-ticket {
  position: relative;
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  box-shadow: 6px 6px 0px var(--fp-yellow);
  background-color: #232163;
  border-radius: 36px;
  background-color: #101F3E;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  /* Star ornament above first card only */
}

.fp-ticket:first-of-type::before {
  content: '';
  background-image: url("../../img/frikiing/star-2.png");
  background-size: contain;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -12px;
  left: -24px;
}

.fp-ticket__price {
  position: absolute;
  top: -36px;
  right: -42px;
  background-image: url("../../img/frikiing/artwork/red-star.svg");
  background-size: contain;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.fp-ticket__icon {
  /* TODO - ACF */
  width: 84px;
  /* height: 84px; */
  object-fit: contain;
  /* ??? */
}

.fp-ticket__name {
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-size: 32px;
  margin: 0;
}

.fp-ticket__badge {
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* opacity: 0.8; */
  margin-bottom: 1rem;
}

/* Toggle button for perks */
.fp-ticket__toggle {
  background: none;
  border: none;
  color: var(--fp-yellow);
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.fp-ticket__toggle:hover {
  transform: scale(1.2);
}

/* Perks list */
.fp-ticket__perks {
  flex: 1;
  margin-top: 2rem;
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  overflow: hidden;
}

.fp-ticket__perks.is-hidden {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.fp-ticket__perks > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-ticket__perks li {
  font-family: var(--fp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  /* font-size: 21px; */
  font-size: 16px;
  padding-left: 0.6em;
  position: relative;
}

.fp-ticket__perks li::before {
  content: '/';
  position: absolute;
  left: 0;
}

.fp-ticket__perks li ul {
  padding-top: 12px;
}

.fp-ticket__perks li ul li {
  padding-left: 1.2em;
}

/* Buy button */
.fp-ticket__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  /* font-family: var(--fp-font-display); */
  font-family: var(--fp-font-body);
  font-weight: bold;
  /* !!!! */
  /* font-size: 24px; */
  font-size: 21px;
  /* font-weight: 400; */
  color: var(--fp-bg-deep);
  color: black !important;
  text-transform: uppercase;
  text-decoration: none;
  /* border: none; */
  cursor: pointer;
  /* transition: opacity 0.2s ease; */
  /* align-self: flex-start; */
  width: 100%;
  background-color: var(--fp-yellow);
  border: 2px solid var(--fp-yellow);
  border-radius: 50vh;
  transition: all 0.2s ease;
  /*
    width: 100%;
    justify-content: center;
    align-self: stretch;
    */
}

.fp-ticket__btn:hover {
  background-color: transparent;
  color: var(--fp-yellow) !important;
}

/* ================================================================
   RESPONSIVE — MOBILE
   Breakpoint: 768px (matches Figma mobile canvas 375px with margin)
   All values taken directly from Figma Mobile frame measurements
   ================================================================ */
@media (max-width: 768px) {
  /* --- ENTRADAS ----------------------------------------------- */
  /* Stack tickets in single column on mobile */
  .fp-entradas__grid {
    grid-template-columns: 1fr;
  }
  /* Price: keep large but rein in for small screens */
  .fp-ticket__name {
    font-size: 20px;
  }
  .fp-ticket__perks li {
    font-size: 16px;
  }
  /*
  .fp-ticket__btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  */
}

/* end @media (max-width: 768px) */
@media (max-width: 576px) {
  .fp-ticket__price {
    right: 50%;
    transform: translate(50%);
  }
  .fp-ticket {
    padding-top: 4rem;
  }
}

/* MEDIA-QUERY */
.fp-muro-creadores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  /*
    &.case_flex {
        display: flex;
        flex-wrap: wrap;
    }
    */
}

@media (max-width: 1200px) {
  .fp-muro-creadores__grid {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .fp-muro-creadores__grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .fp-muro-creadores__grid {
    gap: 1rem;
  }
}

.fp-muro-creadores__grid span {
  display: block;
  padding: 0.8em 1.2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--fp-yellow);
  border-radius: 36px;
  border-radius: unset;
  background-color: #232163;
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.26;
  font-size: 1.2rem;
  position: relative;
  /* Star ornaments around each card */
}

.fp-muro-creadores__grid span::before, .fp-muro-creadores__grid span::after {
  content: '';
  background-image: url("../../img/frikiing/star-stroke.png");
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
}

.fp-muro-creadores__grid span::before {
  bottom: -12px;
  left: -12px;
}

.fp-muro-creadores__grid span::after {
  top: -12px;
  right: -12px;
}

.block_404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.block_404 h1 {
  font-family: var(--fp-font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 4rem;
}

.block_404 picture {
  margin-top: 1rem;
  max-width: 320px;
}

.block_404 a {
  margin-top: 1rem;
}

@media only screen and (max-width: 1024px) {
  .block_404 h1 {
    font-size: 3rem;
  }
  .block_404 picture {
    margin-top: unset;
    max-width: 320px;
  }
}

@media only screen and (max-width: 768px) {
  .block_404 h1 {
    font-size: 2rem;
  }
  .block_404 picture {
    max-width: 32%;
  }
}

@media only screen and (max-width: 576px) {
  .block_404 picture {
    max-width: 50%;
  }
}

/* ================================================================
   FOOTER
   Logo + tagline (left) / Nav links (right)
   Figma: FOOTER frame — y:6354, w:1580, h:303
   ================================================================ */
#fp-footer {
  padding: 60px 0 40px;
  /*
  border-top: 1px solid rgba(249, 225, 0, 0.2);
  */
}

.fp-footer__inner {
  border-top: 1px solid var(--fp-yellow);
  padding-top: 6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 40px;
}

.fp-footer__logo {
  display: block;
  /*  height: 56px;*/
  width: auto;
  width: 28px;
  margin-bottom: 12px;
}

.fp-footer__title {
  font-family: var(--fp-font-body);
  font-weight: 700;
  font-size: 28px;
  color: var(--fp-yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fp-footer__tagline {
  font-family: var(--fp-font-body);
  font-size: 16px;
  font-weight: 400;
  /* color: rgba(249, 225, 0, 0.55); */
  color: var(--fp-yellow);
  margin: 0;
}

.fp-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: flex-end;
}

.fp-footer__nav a {
  font-family: var(--fp-font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--fp-yellow);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.fp-footer__nav a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.fp-footer__copy {
  font-family: var(--fp-font-body);
  font-weight: 400;
  font-size: 14px;
  /*  color: rgba(249, 225, 0, 0.35);*/
  text-align: center;
  margin: 0;
  padding-top: 24px;
  /* border-top: 1px solid rgba(249, 225, 0, 0.1); */
  border-top: 1px solid var(--fp-yellow);
  margin-top: 6rem;
}

.footer_menus {
  display: flex;
  gap: 4rem;
}

.footer_menu_box__title {
  color: var(--fp-yellow);
  text-transform: uppercase;
  font-family: var(--fp-font-body);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .fp-footer__inner {
    grid-template-columns: 1fr;
  }
  .footer_menus {
    justify-content: space-between;
  }
}

/* MEDIA-QUERY */
@media (max-width: 768px) {
  .fp-footer__inner {
    display: flex;
    flex-direction: column;
    /*
      align-items: center;
      */
  }
  .fp-footer__brand {
    display: flex;
    flex-direction: column;
    /*
        align-items: center;
        text-align: center; // to center the text under the logo
        */
  }
  .footer_menus {
    flex-direction: column;
  }
}

/* MEDIA-QUERY */
@media (max-width: 768px) {
  .fp-footer__logo {
    height: 44px;
  }
  .fp-footer__nav {
    justify-content: flex-start;
    gap: 10px 20px;
  }
}

/* MEDIA-QUERY */
