/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/* ---------------------------------- */
/* Fuentes */

/*
@font-face {
    font-family: "Helvetica";
    src: url('/wp-content/themes/woko-theme-child/fonts/helvetica-roman-webfont.woff2') format('woff2'), url('/wp-content/themes/woko-theme-child/fonts/helvetica-roman-webfont.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica";
    src: url('/wp-content/themes/woko-theme-child/fonts/helvetica-bold-webfont.woff2') format('woff2'), url('/wp-content/themes/woko-theme-child/fonts/helvetica-bold-webfont.woff') format('woff');
    font-weight: 700;
}
*/


/* ---------------------------------------- */
/* Predefinidos */

/* Variables */
:root {
    --breakpoint-xxs: 320px;
    --breakpoint-xs: 570px;
    --breakpoint-s: 980px;
    --breakpoint-m: 1110px;
    --breakpoint-l: 1440px;
}

/* Limpieza */
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
body {
    position: relative;
}
a {
    color: inherit;
}
figure {
    margin: 0;
}
p:empty {
    display: none;
}

/* Antialiasing */
body, input, textarea, select, button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Apariencia por defecto de campos de formulario */
input, textarea, select, button {
    appearance: none;
    background: none;
    outline: none;
    border: none;
}

iframe {
    max-width: 100%;
}

/* ---------------------------------- */
/* Scroll */

html {
    scroll-padding-top: 200px;
}


/* ---------------------------------------- */
/* Mostrar y ocultar elementos */

@media (max-width: 1440px) {

    .hide--l {
        display: none !important;
    }

}
@media (max-width: 1110px) {

    .hide--m {
        display: none !important;
    }

}
@media (max-width: 980px) {

    .hide--s {
        display: none !important;
    }

}
@media (max-width: 570px) {

    .hide--xs {
        display: none !important;
    }

}
@media (max-width: 320px) {

    .hide--xxs {
        display: none !important;
    }

}

@media (min-width: 1441px) {

    .show--l {
        display: none !important;
    }

}
@media (min-width: 1111px) {

    .show--m {
        display: none !important;
    }

}
@media (min-width: 981px) {

    .show--s {
        display: none !important;
    }

}
@media (min-width: 571px) {

    .show--xs {
        display: none !important;
    }

}
@media (min-width: 321px) {

    .show--xxs {
        display: none !important;
    }

}


/* ---------------------------------------- */
/* Posicionamiento */

.position {
    top: 0;
}

/* Posición */
.position--relative {
    position: relative;
}
.position--absolute {
    position: absolute;
    width: 100%;
}
.position--sticky {
    position: sticky;
    width: 100%;
}
.position--fixed {
    position: fixed;
    width: 100%;
}

/* Tamaño */
.position--fullscreen {
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
}

/* Z-index */
.position--zindex-100 {
    z-index: 100;
}
.position--zindex-200 {
    z-index: 200;
}
.position--zindex-300 {
    z-index: 300;
}
.position--zindex-400 {
    z-index: 400;
}
.position--zindex-500 {
    z-index: 500;
}
.position--zindex-600 {
    z-index: 600;
}
.position--zindex-700 {
    z-index: 700;
}
.position--zindex-800 {
    z-index: 800;
}
.position--zindex-900 {
    z-index: 900;
}
.position--zindex-1000 {
    z-index: 1000;
}


/* ---------------------------------------- */
/* Section */

.section {
    position: relative;
    width: 100%;
}

/* Margen */
.section--margin-none {
    margin-block: 0;
}
.section--margin-s {
    margin-block: clamp(60px, 10vw, 100px);
}
.section--margin-m {
    margin-block: clamp(80px, 12vw, 150px);
}
.section--margin-l {
    margin-block: clamp(100px, 14vw, 250px);
}

.section--margin-top-none {
    margin-top: 0;
}
.section--margin-top-s {
    margin-top: clamp(60px, 10vw, 100px);
}
.section--margin-top-m {
    margin-top: clamp(80px, 12vw, 150px);
}
.section--margin-top-l {
    margin-top: clamp(100px, 14vw, 250px);
}

.section--margin-bottom-none {
    margin-bottom: 0;
}
.section--margin-bottom-s {
    margin-bottom: clamp(60px, 10vw, 100px);
}
.section--margin-bottom-m {
    margin-bottom: clamp(80px, 12vw, 150px);
}
.section--margin-bottom-l {
    margin-bottom: clamp(100px, 14vw, 250px);
}

/* Relleno */
.section--padding-none {
    padding-block: 0;
}
.section--padding-s {
    padding-block: clamp(60px, 10vw, 100px);
}
.section--padding-m {
    padding-block: clamp(80px, 12vw, 150px);
}
.section--padding-l {
    padding-block: clamp(100px, 14vw, 250px);
}

.section--padding-top-none {
    padding-top: 0;
}
.section--padding-top-s {
    padding-top: clamp(60px, 10vw, 100px);
}
.section--padding-top-m {
    padding-top: clamp(80px, 12vw, 150px);
}
.section--padding-top-l {
    padding-top: clamp(100px, 14vw, 250px);
}

.section--padding-bottom-none {
    padding-bottom: 0;
}
.section--padding-bottom-s {
    padding-bottom: clamp(60px, 10vw, 100px);
}
.section--padding-bottom-m {
    padding-bottom: clamp(80px, 12vw, 150px);
}
.section--padding-bottom-l {
    padding-bottom: clamp(100px, 14vw, 250px);
}

/* Ajuste para que funcionen los fondos */
.section > .background {
    position: static;
}

/* Padding-top obligatorio en primera sección cuando tiene header transparente */
@media (max-width: 980px) {

    .offset--transparent + main > *:first-child .section--padding-s.section--padding-top-default,
    .offset--transparent + main > *:first-child .section--padding-m.section--padding-top-default,
    .offset--transparent + main > *:first-child .section--padding-l.section--padding-top-default,
    .offset--transparent + main > *:first-child .section--padding-top-s,
    .offset--transparent + main > *:first-child .section--padding-top-m,
    .offset--transparent + main > *:first-child .section--padding-top-l {
        padding-top: 160px;
    }

}


/* ---------------------------------------- */
/* Fondo */

.background--red {
    background: #DF231D;
}
.background--black {
    background: #1C1C1C;
}
.background--white {
    background: white;
}
.background--grey {
    background: #ededed;
}


/* ---------------------------------------- */
/* Contenedor */

.container {
    margin-inline: auto;
    padding-inline: 0;
    width: 100%;
}

.container + .container {
    margin-top: clamp(50px, 7vw, 60px);
}

/* Anchura */
.container--full {
    padding-inline: 30px;
}
.container--l {
    padding-inline: 30px;
    width: min(100%, var(--breakpoint-l));
}
.container--m {
    padding-inline: 30px;
    width: min(100%, var(--breakpoint-m));
}
.container--s {
    padding-inline: 30px;
    width: min(100%, var(--breakpoint-s));
}
.container--xs {
    padding-inline: 30px;
    width: min(100%, var(--breakpoint-xs));
}
.container--xxs {
    padding-inline: 30px;
    width: min(100%, var(--breakpoint-xxs));
}

@media (max-width: 570px) {

    .container--full {
        padding-inline: 20px;
    }
    .container--l {
        padding-inline: 20px;
    }
    .container--m {
        padding-inline: 20px;
    }
    .container--s {
        padding-inline: 20px;
    }
    .container--xs {
        padding-inline: 20px;
    }
    .container--xxs {
        padding-inline: 20px;
    }

}


/* ---------------------------------------- */
/* Grid */

.grid {
    display: grid;
    width: 100%;
}

/* Columnas */
.grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid--cols-5 {
    grid-template-columns: repeat(5, 1fr);
}
.grid--cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1440px) {

    .grid--cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid--cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid--cols-6 {
        grid-template-columns: repeat(4, 1fr);
    }

}
@media (max-width: 1110px) {

    .grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid--cols-6 {
        grid-template-columns: repeat(3, 1fr);
    }

}
@media (max-width: 980px) {

    .grid--cols-2 {
        grid-template-columns: none;
    }
    .grid--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid--cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid--cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }
  
    .last--videos .grid--cols-3 {
        grid-template-columns: none;
    }

}
@media (max-width: 570px) {

    .grid--cols-3 {
        grid-template-columns: none;
    }
    .grid--cols-4 {
        grid-template-columns: none;
    }
    .grid--cols-5 {
        grid-template-columns: none;
    }
    .grid--cols-6 {
        grid-template-columns: none;
    }

}

/* Separación entre filas */
.grid--rows-gap-10 {
    row-gap: 10px;
}
.grid--rows-gap-20 {
    row-gap: 20px;
}
.grid--rows-gap-30 {
    row-gap: 30px;
}
.grid--rows-gap-40 {
    row-gap: 40px;
}
.grid--rows-gap-50 {
    row-gap: 50px;
}
.grid--rows-gap-60 {
    row-gap: clamp(50px, 8vw, 60px);
}
.grid--rows-gap-70 {
    row-gap: clamp(50px, 8vw, 70px);
}
.grid--rows-gap-80 {
    row-gap: clamp(50px, 8vw, 80px);
}
.grid--rows-gap-90 {
    row-gap: clamp(50px, 8vw, 90px);
}
.grid--rows-gap-100 {
    row-gap: clamp(60px, 9vw, 100px);
}
.grid--rows-gap-110 {
    row-gap: clamp(60px, 9vw, 110px);
}
.grid--rows-gap-120 {
    row-gap: clamp(60px, 9vw, 120px);
}
.grid--rows-gap-130 {
    row-gap: clamp(60px, 9vw, 130px);
}
.grid--rows-gap-140 {
    row-gap: clamp(70px, 10vw, 140px);
}
.grid--rows-gap-150 {
    row-gap: clamp(70px, 10vw, 150px);
}
.grid--rows-gap-160 {
    row-gap: clamp(70px, 10vw, 160px);
}
.grid--rows-gap-170 {
    row-gap: clamp(70px, 10vw, 170px);
}
.grid--rows-gap-180 {
    row-gap: clamp(80px, 11vw, 180px);
}
.grid--rows-gap-190 {
    row-gap: clamp(80px, 11vw, 190px);
}
.grid--rows-gap-200 {
    row-gap: clamp(80px, 11vw, 200px);
}
.grid--rows-gap-210 {
    row-gap: clamp(80px, 11vw, 210px);
}
.grid--rows-gap-220 {
    row-gap: clamp(90px, 12vw, 220px);
}
.grid--rows-gap-230 {
    row-gap: clamp(90px, 12vw, 230px);
}
.grid--rows-gap-240 {
    row-gap: clamp(90px, 12vw, 240px);
}
.grid--rows-gap-250 {
    row-gap: clamp(90px, 12vw, 250px);
}

/* Separación entre columnas */
.grid--cols-gap-10 {
    column-gap: 10px;
}
.grid--cols-gap-20 {
    column-gap: 20px;
}
.grid--cols-gap-30 {
    column-gap: clamp(20px, 1vw, 30px);
}
.grid--cols-gap-40 {
    column-gap: clamp(20px, 2vw, 40px);
}
.grid--cols-gap-50 {
    column-gap: clamp(20px, 2vw, 50px);
}
.grid--cols-gap-60 {
    column-gap: clamp(20px, 3vw, 60px);
}
.grid--cols-gap-70 {
    column-gap: clamp(20px, 3vw, 70px);
}
.grid--cols-gap-80 {
    column-gap: clamp(20px, 4vw, 80px);
}
.grid--cols-gap-90 {
    column-gap: clamp(20px, 4vw, 90px);
}
.grid--cols-gap-100 {
    column-gap: clamp(20px, 5vw, 100px);
}
.grid--cols-gap-110 {
    column-gap: clamp(20px, 5vw, 110px);
}
.grid--cols-gap-120 {
    column-gap: clamp(20px, 6vw, 120px);
}
.grid--cols-gap-130 {
    column-gap: clamp(20px, 6vw, 130px);
}
.grid--cols-gap-140 {
    column-gap: clamp(20px, 7vw, 140px);
}
.grid--cols-gap-150 {
    column-gap: clamp(20px, 7vw, 150px);
}
.grid--cols-gap-160 {
    column-gap: clamp(20px, 8vw, 160px);
}
.grid--cols-gap-170 {
    column-gap: clamp(20px, 8vw, 170px);
}
.grid--cols-gap-180 {
    column-gap: clamp(20px, 9vw, 180px);
}
.grid--cols-gap-190 {
    column-gap: clamp(20px, 9vw, 190px);
}
.grid--cols-gap-200 {
    column-gap: clamp(20px, 10vw, 200px);
}
.grid--cols-gap-210 {
    column-gap: clamp(20px, 10vw, 210px);
}
.grid--cols-gap-220 {
    column-gap: clamp(20px, 11vw, 220px);
}
.grid--cols-gap-230 {
    column-gap: clamp(20px, 11vw, 230px);
}
.grid--cols-gap-240 {
    column-gap: clamp(20px, 12vw, 240px);
}
.grid--cols-gap-250 {
    column-gap: clamp(20px, 12vw, 250px);
}

/* Alineación */
.grid--valign-top {
    align-items: flex-start;
}
.grid--valign-middle {
    align-items: center;
}
.grid--valign-bottom {
    align-items: flex-end;
}

/* Opciones para mobile */
@media (max-width: 570px) {

    .grid--mobile-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--mobile-invert {
        display: flex;
        flex-direction: column-reverse;
    }

}


/* ---------------------------------------- */
/* Flex */

.flex, .wpforms-field-pagebreak > div {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    min-width: 0;
}

/* Dirección */
.flex--direction-row {
    flex-direction: row;
}
.flex--direction-column {
    flex-direction: column;
}

/* Distribución */
.flex--gap-60 {
    gap: clamp(40px, 4.5vw, 70px);
}
.flex--gap-50 {
    gap: clamp(25px, 4vw, 50px);
}
.flex--gap-40 {
    gap: clamp(20px, 4vw, 40px);
}
.flex--gap-30 {
    gap: clamp(15px, 4vw, 30px);
}
.flex--gap-20 {
    gap: clamp(10px, 4vw, 20px);
}
.flex--gap-10, .wpforms-field-pagebreak > div {
    gap: clamp(5px, 4vw, 10px);
}

/* Alineación */
.flex--align-left {
    justify-content: flex-start;
}
.flex--align-center {
    justify-content: center;
}
.flex--align-right {
    justify-content: flex-end;
}
.flex--align-justify, .wpforms-field-pagebreak > div {
    justify-content: space-between;
}

/* Alineación vertical */
.flex--valign-top {
    align-items: flex-start;
}
.flex--valign-middle {
    align-items: center;
}
.flex--valign-bottom {
    align-items: flex-end;
}

.flex--valign-middle.flex--direction-row {
    text-align: center;
}

/* Altura completa */
/* TODO Quitar el nowrap de aquí y añadirles la clase .flex--nowrap */
.flex--fullheight {
    height: 100%;
    flex-wrap: nowrap;
}

/* Wrap */
/* TODO En el componente de ACF de flex crear un campo para controlar esto */
.flex--nowrap {
    flex-wrap: nowrap;
}



/* ---------------------------------------- */
/* Caja */

.box {
    position: relative;
}

/* Sombra */
.box--shadow-1 {
    box-shadow: 0 0 6px 0 rgb(0 0 0 / 5%);
}
.box--shadow-2 {
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 10%);
}
.box--shadow-3 {
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
}
.box--shadow-4 {
    box-shadow: 0 0 9px 0 rgb(0 0 0 / 20%);
}
.box--shadow-5 {
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
}
.box--shadow-6 {
    box-shadow: 0 0 11px 1px rgb(0 0 0 / 30%);
}
.box--shadow-7 {
    box-shadow: 0 0 12px 1px rgb(0 0 0 / 35%);
}
.box--shadow-8 {
    box-shadow: 0 0 13px 2px rgb(0 0 0 / 40%);
}
.box--shadow-9 {
    box-shadow: 0 0 14px 2px rgb(0 0 0 / 45%);
}
.box--shadow-10 {
    box-shadow: 0 0 15px 2px rgb(0 0 0 / 50%);
}

/* Bordes redondeados */
.box--border-radius-5 {
    border-radius: 5px;
    overflow: hidden;
}
.box--border-radius-10 {
    border-radius: 10px;
    overflow: hidden;
}
.box--border-radius-15 {
    border-radius: 15px;
    overflow: hidden;
}
.box--border-radius-20 {
    border-radius: 20px;
    overflow: hidden;
}
.box--border-radius-25 {
    border-radius: 25px;
    overflow: hidden;
}
.box--border-radius-30 {
    border-radius: 30px;
    overflow: hidden;
}
.box--border-radius-35 {
    border-radius: 35px;
    overflow: hidden;
}
.box--border-radius-40 {
    border-radius: 40px;
    overflow: hidden;
}
.box--border-radius-45 {
    border-radius: 45px;
    overflow: hidden;
}
.box--border-radius-50 {
    border-radius: 50px;
    overflow: hidden;
}
.box--border-radius-55 {
    border-radius: 55px;
    overflow: hidden;
}
.box--border-radius-60 {
    border-radius: 60px;
    overflow: hidden;
}
.box--border-radius-65 {
    border-radius: 65px;
    overflow: hidden;
}
.box--border-radius-70 {
    border-radius: 70px;
    overflow: hidden;
}
.box--border-radius-75 {
    border-radius: 75px;
    overflow: hidden;
}
.box--border-radius-80 {
    border-radius: 80px;
    overflow: hidden;
}


/* ---------------------------------------- */
/* Relleno */

/* Horizontal */
.padding--horizontal-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}
.padding--horizontal-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.padding--horizontal-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.padding--horizontal-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.padding--horizontal-25 {
    padding-top: clamp(20px, 3vw, 25px);
    padding-bottom: clamp(20px, 3vw, 25px);
}
.padding--horizontal-30 {
    padding-top: clamp(20px, 3vw, 30px);
    padding-bottom: clamp(20px, 3vw, 30px);
}
.padding--horizontal-35 {
    padding-top: clamp(25px, 3vw, 35px);
    padding-bottom: clamp(25px, 3vw, 35px);
}
.padding--horizontal-40 {
    padding-top: clamp(25px, 4vw, 40px);
    padding-bottom: clamp(25px, 4vw, 40px);
}
.padding--horizontal-45 {
    padding-top: clamp(30px, 4vw, 45px);
    padding-bottom: clamp(30px, 4vw, 45px);
}
.padding--horizontal-50 {
    padding-top: clamp(30px, 4vw, 50px);
    padding-bottom: clamp(30px, 4vw, 50px);
}
.padding--horizontal-55 {
    padding-top: clamp(35px, 5vw, 55px);
    padding-bottom: clamp(35px, 5vw, 55px);
}
.padding--horizontal-60 {
    padding-top: clamp(35px, 5vw, 60px);
    padding-bottom: clamp(35px, 5vw, 60px);
}
.padding--horizontal-65 {
    padding-top: clamp(35px, 5vw, 65px);
    padding-bottom: clamp(35px, 5vw, 65px);
}
.padding--horizontal-70 {
    padding-top: clamp(40px, 6vw, 70px);
    padding-bottom: clamp(40px, 6vw, 70px);
}
.padding--horizontal-75 {
    padding-top: clamp(40px, 6vw, 75px);
    padding-bottom: clamp(40px, 6vw, 75px);
}
.padding--horizontal-80 {
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 80px);
}

/* Vertical */
.padding--vertical-5 {
    padding-left: 5px;
    padding-right: 5px;
}
.padding--vertical-10 {
    padding-left: 10px;
    padding-right: 10px;
}
.padding--vertical-15 {
    padding-left: 15px;
    padding-right: 15px;
}
.padding--vertical-20 {
    padding-left: 20px;
    padding-right: 20px;
}
.padding--vertical-25 {
    padding-left: clamp(20px, 3vw, 25px);
    padding-right: clamp(20px, 3vw, 25px);
}
.padding--vertical-30 {
    padding-left: clamp(20px, 3vw, 30px);
    padding-right: clamp(20px, 3vw, 30px);
}
.padding--vertical-35 {
    padding-left: clamp(25px, 3vw, 35px);
    padding-right: clamp(25px, 3vw, 35px);
}
.padding--vertical-40 {
    padding-left: clamp(25px, 4vw, 40px);
    padding-right: clamp(25px, 4vw, 40px);
}
.padding--vertical-45 {
    padding-left: clamp(30px, 4vw, 45px);
    padding-right: clamp(30px, 4vw, 45px);
}
.padding--vertical-50 {
    padding-left: clamp(30px, 4vw, 50px);
    padding-right: clamp(30px, 4vw, 50px);
}
.padding--vertical-55 {
    padding-left: clamp(35px, 5vw, 55px);
    padding-right: clamp(35px, 5vw, 55px);
}
.padding--vertical-60 {
    padding-left: clamp(35px, 5vw, 60px);
    padding-right: clamp(35px, 5vw, 60px);
}
.padding--vertical-65 {
    padding-left: clamp(35px, 5vw, 65px);
    padding-right: clamp(35px, 5vw, 65px);
}
.padding--vertical-70 {
    padding-left: clamp(40px, 6vw, 70px);
    padding-right: clamp(40px, 6vw, 70px);
}
.padding--vertical-75 {
    padding-left: clamp(40px, 6vw, 75px);
    padding-right: clamp(40px, 6vw, 75px);
}
.padding--vertical-80 {
    padding-left: clamp(40px, 6vw, 80px);
    padding-right: clamp(40px, 6vw, 80px);
}


/* ---------------------------------------- */
/* Superponer */

/* Arriba */
.overlap--top-50 {
    margin-top: -50px;
}
.overlap--top-100 {
    margin-top: -100px;
}
.overlap--top-150 {
    margin-top: -150px;
}
.overlap--top-200 {
    margin-top: -200px;
}
.overlap--top-250 {
    margin-top: -250px;
}
.overlap--top-300 {
    margin-top: -300px;
}
.overlap--top-350 {
    margin-top: -350px;
}
.overlap--top-400 {
    margin-top: -400px;
}
.overlap--top-450 {
    margin-top: -450px;
}
.overlap--top-500 {
    margin-top: -500px;
}

/* Abajo */
.overlap--bottom-50 {
    margin-bottom: -50px;
}
.overlap--bottom-100 {
    margin-bottom: -100px;
}
.overlap--bottom-150 {
    margin-bottom: -150px;
}
.overlap--bottom-200 {
    margin-bottom: -200px;
}
.overlap--bottom-250 {
    margin-bottom: -250px;
}
.overlap--bottom-300 {
    margin-bottom: -300px;
}
.overlap--bottom-350 {
    margin-bottom: -350px;
}
.overlap--bottom-400 {
    margin-bottom: -400px;
}
.overlap--bottom-450 {
    margin-bottom: -450px;
}
.overlap--bottom-500 {
    margin-bottom: -500px;
}

@media (max-width: 980px) {

    .overlap--top-150 {
        margin-top: -100px;
    }
    .overlap--top-200 {
        margin-top: -100px;
    }
    .overlap--top-250 {
        margin-top: -150px;
    }
    .overlap--top-300 {
        margin-top: -150px;
    }
    .overlap--top-350 {
        margin-top: -200px;
    }
    .overlap--top-400 {
        margin-top: -200px;
    }
    .overlap--top-450 {
        margin-top: -250px;
    }
    .overlap--top-500 {
        margin-top: -300px;
    }

    .overlap--bottom-150 {
        margin-bottom: -100px;
    }
    .overlap--bottom-200 {
        margin-bottom: -100px;
    }
    .overlap--bottom-250 {
        margin-bottom: -150px;
    }
    .overlap--bottom-300 {
        margin-bottom: -150px;
    }
    .overlap--bottom-350 {
        margin-bottom: -200px;
    }
    .overlap--bottom-400 {
        margin-bottom: -200px;
    }
    .overlap--bottom-450 {
        margin-bottom: -250px;
    }
    .overlap--bottom-500 {
        margin-bottom: -300px;
    }

}
@media (max-width: 570px) {

    .overlap {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

}


/* ---------------------------------------- */
/* Botones */

.button, .wpforms-submit, .wpforms-page-button, .hs-button {
    display: inline-flex;
    cursor: pointer;
    transition: 0.15s;
    line-height: 1;
    text-align: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Iconos */
.button > .button__icon--left {
    margin-left: 0 !important;
}
.button > .button__icon--right {
    margin-right: 0 !important;
}

/* Anotación */
.buttons__item__annotation {
    display: block;
    margin-top: 10px;
}

.button, .wpforms-submit, .wpforms-page-button.wpforms-page-next, .wpforms-page-button.wpforms-page-prev, .hs-button {
    border: 2px solid;
}

/* Tamaños */
.button--size-s {
    padding-left: 10px;
    padding-right: 10px;
    height: 43px;
}
.button--size-m, .wpforms-submit, .wpforms-page-button.wpforms-page-next, .wpforms-page-button.wpforms-page-prev, .hs-button {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 8px;
    height: 60px;
}
.button--size-l {
    padding-left: 25px;
    padding-right: 25px;
    height: 80px;
}

/* Primario negro (normal, hover, active y disabled) */
.button--appearance-primary-black, .wpforms-submit, .wpforms-page-button.wpforms-page-next, .hs-button {
    color: white;
    background: #1c1c1c;
    border-color: #1c1c1c;
    line-height: 1;
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
    font-size: 21px;
    border-radius: 20px;
    letter-spacing: 0.7px;
}
.button--appearance-primary-black:hover, .wpforms-submit:hover, .wpforms-page-button.wpforms-page-next:hover, .hs-button:hover, .button--appearance-primary-black.button--state-hover {
    background: black;
    border-color: black;
}
.button--appearance-primary-black:active, .wpforms-submit:active, .wpforms-page-button.wpforms-page-next:active, .hs-button:active, .button--appearance-primary-black.button--state-active {
    background: black;
    border-color: black;
    transform: scale(0.97);
}

/* Primario rojo (normal, hover, active y disabled) */
.button--appearance-primary-red {
    color: white;
    background: #df231d;
    border-color: #df231d;
    line-height: 1;
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
    font-size: 21px;
    border-radius: 20px;
    letter-spacing: 0.7px;
}
.button--appearance-primary-red:hover, .button--appearance-primary-red.button--state-hover {
    background: black;
    border-color: black;
}
.button--appearance-primary-red:active, .button--appearance-primary-red.button--state-active {
    background: black;
    border-color: black;
    transform: scale(0.97);
}

/* Fantasma (normal, hover, active y disabled) */
.button--appearance-phantom, .wpforms-page-button.wpforms-page-prev {
    border-color: #464646;
    background: transparent;
}
.button--appearance-phantom:hover, .wpforms-page-button.wpforms-page-prev:hover, .button--appearance-phantom.button--state-hover {
    border-color: #464646;
    background: #f1f1f1;
}
.button--appearance-phantom:active, .wpforms-page-button.wpforms-page-prev:active, .button--appearance-phantom.button--state-active {
    background: #dfdede;
    border-color: black;
    transform: scale(0.97);
}

/* Texto (normal, hover, active y disabled) */
.button--appearance-text {
    border: none;
    padding: 2px 0;
    height: auto;
    border-bottom: 2px solid #464646;
}
.button--appearance-text:hover, .button--appearance-text.button--state-hover {
    border-color: black;
}
.button--appearance-text:active, .button--appearance-text.button--state-active {
    border-color: black;
}

/* Estados */
.button:disabled, .wpforms-submit:disabled, .wpforms-page-button.wpforms-page-next:disabled, .wpforms-page-button.wpforms-page-prev:disabled, .hs-button:disabled, .button--state-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Iconos */
.button > .button__icon {
    margin: 0 8px;
}

/* Anotación */
.buttons__item__annotation {
    color: #818181;
}



/* ---------------------------------- */
/* Formularios */

.form {
    width: 100%;
}


/* Espacio entre campos */
.form--hubspot .hs-form-field {
    padding: 0 !important;
    margin-bottom: 16px;
}

/* Espacio respecto a CTAs */
.form--hubspot .hs_submit {
    margin-top: 35px;
    padding: 0 !important;
}

/* Limpiar campos */
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="radio"], input[type="checkbox"], input[type="number"], textarea, select {
    border: 1px solid;
}

/* Campos de texto y select */
.form input[type="text"], .form input[type="password"], .form input[type="email"], .form input[type="tel"], .form input[type="number"], .form textarea, .form select {
    width: 100% !important;
    max-width: none !important;
}
.form textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 70px;
    max-height: 350px;
}

/* Select */
select {
    cursor: pointer;
}
.form--hubspot .hs-fieldtype-select .input {
    position: relative;
}
.form--hubspot .hs-fieldtype-select .input::after {
    font-family: 'Material Symbols Outlined';
    content: "expand_more";
    -webkit-font-feature-settings: 'liga';
    font-size: 22px;
    pointer-events: none;
    position: absolute;
    color: #636363;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Checkbox y radio */
input[type="checkbox"], input[type="radio"] {
    width: 20px !important;
    min-width: 20px;
    max-width: 20px;
    height: 20px !important;
    margin: 0 !important;
    cursor: pointer;
}

.form--hubspot .hs-fieldtype-booleancheckbox ul, .form--hubspot .hs-fieldtype-checkbox ul, .form--hubspot .hs-fieldtype-radio ul {
    padding: 0;
    margin: 0;
    line-height: 1.3;
}
.form--hubspot .hs-fieldtype-booleancheckbox ul {
    line-height: 1.5;
}

.form--hubspot .hs-fieldtype-booleancheckbox, .form--hubspot .hs-fieldtype-checkbox, .form--hubspot .hs-fieldtype-radio, .form--hubspot .hs-fieldtype-file {
    margin: 25px 0;
}

.form--hubspot .hs-fieldtype-booleancheckbox li, .form--hubspot .hs-fieldtype-checkbox li, .form--hubspot .hs-fieldtype-radio li {
    display: flex;
    margin: 0;
    margin-bottom: 7px;
}
.form--hubspot .hs-fieldtype-booleancheckbox li label, .form--hubspot .hs-fieldtype-checkbox li label, .form--hubspot .hs-fieldtype-radio li label {
    display: flex;
}
.form--hubspot .hs-fieldtype-booleancheckbox li:last-child, .form--hubspot .hs-fieldtype-checkbox li:last-child, .form--hubspot .hs-fieldtype-radio li:last-child {
    margin-bottom: 0;
}
.form--hubspot .hs-fieldtype-booleancheckbox li label span, .form--hubspot .hs-fieldtype-checkbox li label span, .form--hubspot .hs-fieldtype-radio li label span {
    cursor: pointer;
}
.form--hubspot .hs-fieldtype-booleancheckbox li label span a, .form--hubspot .hs-fieldtype-checkbox li label span a, .form--hubspot .hs-fieldtype-radio li label span a {
    text-decoration: underline;
    border: none !important;
}

/* Letra pequeña del RGPD */
.form--hubspot .hs-richtext {
    height: 50px;
    overflow-y: auto;
    color: #a2a2a2;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}
.form--hubspot .hs-richtext a {
    text-decoration: underline;
}
.form--hubspot .hs-richtext {
    margin-bottom: -10px !important;
}
.form--hubspot .hs-richtext p {
    margin: 0;
}


/* Range */
input[type=range] {
    height: 24px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #343434;
    background: #f0f0f0;
    border-radius: 20px;
    border: 0px solid #343434;
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #343434;
    border: 0px solid #343434;
    height: 15px;
    width: 15px;
    border-radius: 25px;
    background: #343434;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #f0f0f0;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #343434;
    background: #f0f0f0;
    border-radius: 20px;
    border: 0px solid #343434;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #343434;
    border: 0px solid #343434;
    height: 15px;
    width: 15px;
    border-radius: 25px;
    background: #343434;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #f0f0f0;
    border: 0px solid #343434;
    border-radius: 40px;
    box-shadow: 0px 0px 0px #343434;
}
input[type=range]::-ms-fill-upper {
    background: #f0f0f0;
    border: 0px solid #343434;
    border-radius: 40px;
    box-shadow: 0px 0px 0px #343434;
}
input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #343434;
    border: 0px solid #343434;
    height: 15px;
    width: 15px;
    border-radius: 25px;
    background: #343434;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #f0f0f0;
}
input[type=range]:focus::-ms-fill-upper {
    background: #f0f0f0;
}


/* Labels */
.form--hubspot .hs-form-field > label {
    margin-bottom: 5px;
    display: block;
}
.form--hubspot .hs-fieldtype-checkbox > label, .form--hubspot .hs-fieldtype-radio > label {
    margin-bottom: 10px;
}


/* Textos de ayuda */
.form--hubspot .hs-field-desc {
    display: block;
    margin-top: -4px;
    margin-bottom: 6px;
}


/* Mensaje de gracias */
.submitted-message {
    color: black;
    background: #ffffffe6;
    padding: 17px;
    border-radius: 10px;
    font-weight: 600;
}


/* Asteriscos de campos requeridos */
.form--hubspot .hs-form-required {
    display: none;
}

/* Mensajes de error */
.form--hubspot .hs-error-msg {
    margin-top: 5px;
    display: block;
    line-height: 1.4;
}
.form--hubspot .hs-fieldtype-booleancheckbox .hs-error-msg, .form--hubspot .hs-fieldtype-checkbox .hs-error-msg, .form--hubspot .hs-fieldtype-radio .hs-error-msg {
    margin-left: 30px;
}

.form--hubspot .hs-error-msgs {
    list-style: none;
    margin: 0;
    padding: 0;
}
.form--hubspot .hs_error_rollup {
    display: none;
}


/* Texto y select (normal, hover, focus, error y ok) */
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
    padding: 14px 20px;
    background: #F9FAFB;
    border-radius: 5px;
    border-color: #F9FAFB;
    transition: 0.15s;
}
input[type="text"]:hover, input[type="password"]:hover, input[type="email"]:hover, input[type="tel"]:hover, input[type="number"]:hover, textarea:hover, select:hover {
    border-color: #eeeeee;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
    border-color: #b8b8b8;
}
input[type="text"].invalid, input[type="password"].invalid, input[type="email"].invalid, input[type="tel"].invalid, input[type="number"].invalid, textarea.invalid, select.invalid {
    border-color: #d75c5c !important;
}


/* Checkbox y radio (normal, hover, error y checked) */
input[type="checkbox"], input[type="radio"] {
    background: #edeff1;
    border-color: #edeff1;
    border-radius: 5px;
    position: relative;
    transition: 0.15s;
}
input[type="checkbox"]::after, input[type="radio"]::after {
    font-family: 'Font Awesome 5 Free';
        font-weight: 900;
    content: "\f00c";
   /* -webkit-font-feature-settings: 'liga';*/
    font-size: 20px;
    position: absolute;
    top: calc(50% - 2px);
    left: calc(50% + 3px);
    transform: translateX(-50%) translateY(-50%) scale(0.5);
    opacity: 0;
    transition: 0.15s;
    pointer-events: none;
}
input[type="radio"] {
    border-radius: 1000px;
}

input[type="checkbox"]:hover, input[type="radio"]:hover {
    border-color: #dde0e3;
}
input[type="checkbox"].invalid, input[type="radio"].invalid {
    border-color: #d75c5c !important;
}
input[type="checkbox"]:checked::after, input[type="radio"]:checked::after {
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
}

/* Select */
.form--hubspot .hs-fieldtype-select .input::after {
    right: 8px;
}

/* Mensajes de error */
.form--hubspot .hs-error-msg, .legal-consent-container .hs-error-msgs label {
    color: #f5dbdb !important;
}

/* Checkbox del RGPD */
.form--hubspot .hs-fieldtype-booleancheckbox {
    color: #d1d1d1;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
    margin-left: 10px !important;
}



/* ---------------------------------------- */
/* Iconos */

/* Tamaño */
.material-symbols-outlined--xs {
    font-size: 16px !important;
    position: relative;
    top: 1px;
}
.material-symbols-outlined--s {
    font-size: 20px !important;
}
.material-symbols-outlined--m {
    font-size: 25px !important;
}
.material-symbols-outlined--l {
    font-size: 30px !important;
}
.material-symbols-outlined--xl {
    font-size: 40px !important;
}
.material-symbols-outlined--xxl {
    font-size: 45px !important;
}

/* Relleno */
.material-symbols-outlined--filled {
    font-variation-settings: 'FILL' 1;
}


/* ---------------------------------------- */
/* Slider */

.slider,
.vueling--slider {
    padding: 0 100px;
    position: relative;
}

/* Ajustes flechas */
.slider .swiper-button-next,
.slider .swiper-button-prev,
.vueling--slider .swiper-button-next,
.vueling--slider .swiper-button-prev {
    width: auto;
    height: auto;
    margin: 0;
    transform: translateY(-50%);
    top: 50%;
    color: inherit;
}

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

.slider .swiper-button-prev,
.vueling--slider .swiper-button-prev {
    left: 0;
}

.slider .swiper-button-next,
.vueling--slider .swiper-button-next {
    right: 0;
}


/* Ajustes navegación */
.slider .swiper-pagination,
.vueling--slider .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.slider .swiper-button-next:after,
.slider .swiper-button-prev:after .vueling--slider .swiper-button-next:after,
.vueling--slider .swiper-button-prev:after {
    content: none !important
}

.slider .swiper-pagination-bullet,
.vueling--slider .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    margin: 0 !important;
    border-radius: 0;
    position: relative;
    background: none;
    opacity: 1;
}

.slider .swiper-pagination-bullet::after,
.vueling--slider .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 1000px;
    transition: 0.15s;
    background-color: #a6a6a6;
}

/* Bullet activo de la navegación */
.slider .swiper-pagination-bullet-active::after,
.vueling--slider .swiper-pagination-bullet-active::after {
    background-color: #df231d;
    width: 15px;
    height: 15px;
}

.slider .swiper-button-next,
.slider .swiper-button-prev,
.vueling--slider .swiper-button-next,
.vueling--slider .swiper-button-prev {
    color: #000
}

/* Flechas */
.slider .swiper-button-next,
.slider .swiper-button-prev,
.vueling--slider .swiper-button-next,
.vueling--slider .swiper-button-prev {
    color: black;
}
.slider__arrow {
    background: #df231d;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.15s;
}
.slider__arrow:hover {
    transform: scale(1.1);
}


@media screen and (max-width: 860px) {
  
    .slider,
    .vueling--slider {
        padding: 0 60px;
    }
    .slider__arrow {
        width: 35px;
        height: 35px;
    }
    
}
@media screen and (max-width: 570px) {
  
    .gallery .slider {
        padding: 0;
    }
    .gallery .slider .swiper-button-prev, .gallery .slider .swiper-button-next {
        padding: 0 7px;
    }
    
}


/* ---------------------------------------- */
/* Acomodar */

.tidy {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.tidy figcaption {
    display: none;
}
.tidy figure {
    width: 100%;
    height: 100%;
}
.tidy img, .tidy video, .tidy iframe {
    width: 100%;
    height: 100%;
    display: block !important;
}

/* Fit */
.tidy--fit-contain img, .tidy--fit-contain video {
    object-fit: contain;
    object-position: center;
}
.tidy--fit-cover img, .tidy--fit-cover video {
    object-fit: cover;
    object-position: center;
}

/* Anchura */
.tidy--width-50 {
    width: 50px;
}
.tidy--width-100 {
    width: 100px;
}
.tidy--width-150 {
    width: 150px;
}
.tidy--width-200 {
    width: 200px;
}
.tidy--width-250 {
    width: 250px;
}
.tidy--width-300 {
    width: 300px;
}
.tidy--width-350 {
    width: 350px;
}
.tidy--width-400 {
    width: 400px;
}
.tidy--width-450 {
    width: 450px;
}
.tidy--width-500 {
    width: 500px;
}
.tidy--width-550 {
    width: 550px;
}
.tidy--width-600 {
    width: 600px;
}

/* Altura */
.tidy--height-50 {
    height: 50px;
}
.tidy--height-100 {
    height: 100px;
}
.tidy--height-150 {
    height: 150px;
}
.tidy--height-200 {
    height: 200px;
}
.tidy--height-250 {
    height: 250px;
}
.tidy--height-300 {
    height: 300px;
}
.tidy--height-350 {
    height: 350px;
}
.tidy--height-400 {
    height: 400px;
}
.tidy--height-450 {
    height: 450px;
}
.tidy--height-500 {
    height: 500px;
}
.tidy--height-550 {
    height: 550px;
}
.tidy--height-600 {
    height: 600px;
}



/* ---------------------------------------- */
/* Tabs */

.tab {
    display: none;
}
.tab--displayed {
    display: block;
}


/* ---------------------------------------- */
/* Pop Ups */

.popup {
    pointer-events: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup__background {
    opacity: 0;
    transition: 1s;
    background: black;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.popup__wrapper {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.5s;
    position: relative;
}

.popup__close {

}

.popup--displayed {
    pointer-events: unset;
}
.popup--displayed .popup__background {
    opacity: 0.7;
}
.popup--displayed .popup__wrapper {
    opacity: 1;
    transform: none;
}



/* ---------------------------------------- */
/* Logo */

.logo {
    position: relative;
}
.logo__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}
.logo__image--secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Tamaños */
.logo--size-s {
    width: 50px;
}
.logo--size-m {
    width: 110px;
}
.logo--size-l {
    width: 170px;
}

@media (max-width: 1110px) {

    .logo--size-m {
        width: 100px;
    }
    .logo--size-l {
        width: 145px;
    }

}
@media (max-width: 980px) {

    .logo--size-m {
        width: 90px;
    }
    .logo--size-l {
        width: 135px;
    }

}
@media (max-width: 570px) {

    .logo--size-m {
        width: 80px;
    }
    .logo--size-l {
        width: 120px;
    }

}


/* ---------------------------------------- */
/* Dropdown */

.dropdown {
    position: relative;
    text-transform: uppercase;
}

.dropdown__current {
    cursor: pointer;
}
.dropdown__current__icon {
    transition: 0.15s;
}

.dropdown__dropped {
    position: absolute;
    top: 100%;
    left: calc(50% - 2px);
    transform: translateX(-50%) translateY(10px);
    padding-top: 8px;
    pointer-events: none;
    transition: 0.3s;
    opacity: 0;
    text-align: center;
}

.dropdown__item {
    list-style: none;
}
.dropdown__item--current {

}

.dropdown__link {
    padding: 1px 0;
    display: inline-block;
}

.dropdown:hover .dropdown__dropped {
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: unset;
}
.dropdown:hover .dropdown__current__icon {
    transform: scale(1, -1);
}

/* Texto por defecto */
body, input, textarea, select, button, h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    font-size: 18px;
}

/* Grosores */
.font-weight--100 {
    font-weight: 100;
}
.font-weight--200 {
    font-weight: 200;
}
.font-weight--300 {
    font-weight: 300;
}
.font-weight--400 {
    font-weight: 400;
}
.font-weight--500, .button, .wpforms-submit, .wpforms-page-button.wpforms-page-next, .wpforms-page-button.wpforms-page-prev, .hs-button {
    font-weight: 500;
}
.font-weight--600 {
    font-weight: 600;
}
.font-weight--700, b, strong, .menu__item--current, .form--wpforms .wpforms-container .wpforms-field-label, .form--hubspot .hs-form-field > label, .form--hubspot .hs-dependent-field .hs-field-desc {
    font-weight: 700;
}
.font-weight--800 {
    font-weight: 800;
}
.font-weight--900 {
    font-weight: 900;
}

/* Definidos */
.has-display-1-font-size {
    font-size: clamp(60px, 8vw, 112px);
    line-height: 1.1;
    font-weight: 500;
}
.has-display-2-font-size {
    font-size: clamp(52px, 8vw, 80px);
    line-height: 1.2;
    font-weight: 500;
}
.has-display-3-font-size {
    font-size: clamp(45px, 8vw, 60px);
    line-height: 1.2;
    font-weight: 500;
}

.h1 {
    font-size: clamp(55px, 6vw, 85px);
    line-height: 0.9;
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
}
.h2 {
    font-size: clamp(38px, 5vw, 55px);
    line-height: 0.9;
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
}
.h3 {
    font-size: clamp(30px, 4vw, 40px);
    line-height: 0.9;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
}
.h4 {
    font-size: clamp(20px, 3vw, 30px);
    line-height: 0.9;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
}

.body1, .button--size-l {
    font-size: 20px;
    line-height: 1.7;
}
.body2 {
    font-size: 18px;
    line-height: 1.7;
}
.body3, table, input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], textarea, select, .wpforms-field-checkbox, .wpforms-field-radio, .hs-fieldtype-checkbox ul, .hs-fieldtype-radio ul, .wpforms-submit, .hs-button, .wpforms-page-button.wpforms-page-next, .wpforms-page-button.wpforms-page-prev {
    font-size: 16px;
    line-height: 1.7;
}
.body4, .buttons__item__annotation, .form--hubspot .hs-fieldtype-booleancheckbox, .wpforms-field-gdpr-checkbox, .button--size-s, .form--wpforms .wpforms-container .wpforms-field-label, .form--hubspot .hs-form-field > label, .form--hubspot .hs-field-desc, .form--wpforms .wpforms-container .wpforms-field-description, .form--wpforms .wpforms-container em.wpforms-error, .form--hubspot .hs-error-msg, .form--wpforms .modern-title, figcaption, .form--hubspot .hs-fieldtype-file .hs-input, .wpforms-field-number-slider-hint {
    font-size: 14px;
    line-height: 1.7;
}
.body5, .form--wpforms .wpforms-container .wpforms-field-gdpr-checkbox .wpforms-field-description, .form--hubspot .hs-richtext {
    font-size: 12px;
    line-height: 1.7;
}

/* Colores */
body, input, textarea, select, button {
    color: #1C1C1C;
}

.color--black, .form--hubspot .hs-dependent-field .hs-field-desc {
    color: #1C1C1C !important;
}
.color--red {
    color: #df231d !important;
}
.color--white {
    color: white !important;
}
.color--grey, .form--wpforms .wpforms-page-indicator-steps, .form--hubspot .hs-field-desc, .form--wpforms .wpforms-container .wpforms-field-description {
    color: #707070 !important;
}



/* ---------------------------------------- */
/* Texto formateado */


/* Alineamiento */
.text--align-left {
    text-align: left;
}
.text--align-center {
    text-align: center;
}
.text--align-center .flex {
    justify-content: center;
}
.text--align-right {
    text-align: right;
}
.text--align-right .flex {
    justify-content: flex-end;
}

@media (max-width: 570px) {

    .text--align-center {
        text-align: left;
    }
    
}




/* Márgenes contenidos */
.text > *:first-child {
    margin-top: 0 !important;
}
.text > *:last-child {
    margin-bottom: 0 !important;
}

/* Enlaces internos */
.text--links-m a:not(.button):not(.share__link):not(.cta_button) {
    border-bottom: 2px solid;
}
.text--links-s a:not(.button):not(.share__link):not(.cta_button) {
    border-bottom: 1px solid;
}

/* Indent de listados */
.text ol, .text ul {
    padding-left: 30px;
}
.text li:first-child {
    margin-top: 0;
}
.text li:last-child {
    margin-bottom: 0;
}
.text .flex {
    padding: 0;
}

/* Embebidos */
.text iframe {
    max-width: 100%;
}

/* Medios de WordPress y Hubspot */
.text .wp-block-image img, .text .hs-cta-img {
    margin: 0;
}
.hs-cta-wrapper {
    display: block;
}


/* Enlaces internos */
.text--links-m a:not(.button):not(.share__link):not(.cta_button) {
    border-color: black;
}

/* Márgenes contenidos .text--margins-m */
.text--margins-m .has-display-1-font-size {
    margin-top: clamp(110px, 11vw, 150px);
    margin-bottom: clamp(55px, 10vw, 70px);
}
.text--margins-m .has-display-2-font-size {
    margin-top: clamp(100px, 10vw, 130px);
    margin-bottom: clamp(50px, 10vw, 70px);
}
.text--margins-m .has-display-3-font-size {
    margin-top: clamp(90px, 9vw, 120px);
    margin-bottom: clamp(45px, 10vw, 70px);
}

.text--margins-m .h1 {
    margin-top: clamp(90px, 8vw, 110px);
    margin-bottom: clamp(40px, 8vw, 55px);
}
.text--margins-m .h2 {
    margin-top: clamp(80px, 7vw, 100px);
    margin-bottom: clamp(40px, 8vw, 55px);
}
.text--margins-m .h3 {
    margin-top: clamp(50px, 6vw, 70px);
    margin-bottom: clamp(30px, 8vw, 50px);
}
.text--margins-m .h4 {
    margin-top: clamp(50px, 5vw, 60px);
    margin-bottom: clamp(40px, 8vw, 55px);
}

.text--margins-m p, .text--margins-m ol, .text--margins-m ul {
    margin: 30px 0;
}

.text--margins-m li {
    margin: 10px 0;
}

.text--margins-m .buttons {
    margin: 40px 0;
}
.text--margins-m .buttons + .buttons {
    margin-top: -15px;
}

.text--margins-m .form {
    margin: 40px 0;
}

.text--margins-m .intro {
    margin: 60px 0;
}

.text--margins-m .wp-block-quote {
    margin-top: clamp(60px, 7vw, 80px);
    margin-bottom: clamp(60px, 7vw, 80px);
}

.text--margins-m table, .text--margins-m .wp-block-table {
    margin: 60px 0;
}

.text--margins-m .tidy {
    margin: 60px 0;
}

.text--margins-m img, .text--margins-m .wp-block-image, .text--margins-m .hs-cta-wrapper {
    margin: 40px 0;
}

.text--margins-m .tweet {
    margin: 60px 0;
}

.text--margins-m .search {
    margin: 60px 0;
}


/* Márgenes contenidos .text--margins-s */
.text--margins-s > * {
    margin: 20px 0;
}
.text--margins-s > .flex, .text--margins-s > .buttons__item {
    margin: 30px 0;
}
.text--margins-s li {
    margin: 10px 0;
}

.text--margins-s .form,
.text--margins-s .intro,
.text--margins-s .wp-block-quote,
.text--margins-s table, .text--margins-s .wp-block-table,
.text--margins-s .tidy,
.text--margins-s img, .text--margins-s .wp-block-image, .text--margins-s .hs-cta-wrapper,
.text--margins-s .tweet,
.text--margins-s .search {
    margin: 40px 0;
}


/* ---------------------------------------- */
/* Texto */

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
}
table td, table th {
    vertical-align: top;
}
.wp-block-table table {
    margin: 0 !important;
}

/* Intro */
.intro {
    padding-left: 22px;
    border-left: 6px solid;
}

/* Tweet */
.tweet {
    color: #1f9bf0;
}
.tweet__wrapper {
    display: flex;
    align-items: center;
    background-color: #ebf6fe;
    border: 3px solid #1f9bf0 !important;
    transition: 0.15s;
    justify-content: space-between;
}
.tweet__icon {
    margin-left: 20px;
    font-size: 30px;
    transition: 0.25s;
}
.tweet:hover .tweet__wrapper {
    transform: scale(1.01);
    background-color: #e7f5ff;
}
.tweet:hover .tweet__icon {
    transition-delay: 0.1s;
    transform: scale(1.3);
}

/* Cita */
.wp-block-quote {
    border-top: 1px solid #a6a6a6;
    padding: 30px;
    padding-bottom: 0;
    padding-left: 120px;
    font-style: italic;
    position: relative;
    color: #565656;
}
.wp-block-quote::before {
    content: '“';
    opacity: 0.3;
    position: absolute;
    font-size: 210px;
    line-height: 1;
    left: 0;
    top: 0;
}
.wp-block-quote p {
    margin-bottom: 10px !important;
    max-width: 600px;
}
.wp-block-quote cite {
    font-size: 16px;
}

/* Check */
.check {
    display: flex;
}
.check + .check {
    margin-top: 12px;
}
.check__icon {
    margin-right: 12px;
}
.check__text {
    margin-top: 6px;
}

/* Captions */
figcaption {
    border-top: 1px solid;
}

/* Medios */
.wp-block-image img {
    display: inline-block;
}
.wp-block-video video {
    display: inline-block;
}



/* Entradilla */
.intro {
    border-color: black;
}

/* Check */
.check__icon {
    color: black;
}

/* Tabla */
table td, table th {
    padding: 10px !important;
    border: 1px solid #f3f3f3 !important;
}
table tr:nth-child(even) {
    background: #F9FAFB;
}

/* Captions */
figcaption {
    border-color: #CFCFD0;
    color: #868686;
    margin-top: 20px;
    padding-top: 12px;
}


/* ---------------------------------------- */
/* Campo de búsqueda */

.search {
    position: relative;
    min-width: 290px;
}

.search__input {
    width: 100%;
    padding-left: 45px !important;
    padding-right: 45px !important;
}
.search__input:invalid + .search__icon--delete {
    opacity: 0;
}

.search__icon {
    position: absolute;
    height: 100%;
    opacity: 0.5;
    top: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.15s;
}
.search__icon:hover {
    opacity: 1;
}
.search__icon--submit {
    left: 0;
}
.search__icon--delete {
    right: 0;
}


/*
.search__input {
    padding: 5px 12px;
    font-size: 14px;
    padding-right: 20px;
}

*/


/* ---------------------------------- */
/* Header */

/* Preheader */
.preheader .search__input {
    padding: 4px 30px !important;
    font-size: 14px;
}
.preheader .search__icon {
    padding: 0 6px;
}
.preheader .search__icon span {
    font-size: 20px !important;
}



/* Menú hamburguesa */
.header__hamburguer {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}
.header__hamburguer > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: 0.3s;
    pointer-events: none;
}
.header__hamburguer__close {
    opacity: 0;
}

.header--open .header__hamburguer {
    color: black !important;
}
.header--open .header__hamburguer > * {
    transform: translateX(-50%) translateY(-50%) scale(-1, 1);
}
.header--open .header__hamburguer__close {
    opacity: 1;
}
.header--open .header__hamburguer__menu {
    opacity: 0;
}

.header--open {
    overflow-y: hidden;
}

/* Logotipo */
.header--open .header__logo .logo__image--main {
    opacity: 1 !important;
}
.header--open .header__logo .logo__image--secondary {
    opacity: 0 !important;
}

body.scroll--top .offset--transparent .header--double-logo .header__logo .logo__image--main {
    opacity: 0;
}
body.scroll--top .offset--transparent .header--double-logo .header__logo .logo__image--secondary {
    opacity: 1;
}

/* Offset top */
.offset--transparent .header__background,
.offset--transparent .preheader__background,
.offset--transparent .header__box,
.offset--transparent .header .logo__image {
    transition: 0.3s;
}

.offset--transparent .header__nav,
.offset--transparent .preheader__nav {
    transition: 0.3s;
}

body.scroll--top .offset--transparent .header__background,
body.scroll--top .offset--transparent .preheader__background {
    background: none;
}
body.scroll--top .header__box {
    box-shadow: none;
}
body.scroll--top .offset--transparent .header__hamburguer {
    color: white;
}

body.scroll--top .offset--transparent .preheader__nav {
    color: #b0b0b0 !important;
}
@media (min-width: 1111px) {

    body.scroll--top .offset--transparent .header__nav {
        color: white;
    }

}


/* Menú desplegable */
.header__nav {
    transition: 0.3s;
    text-align: left;
}

@media (max-width: 1110px) {

    .header__nav {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        pointer-events: none;
        padding-top: 100px;
    }
    .header__nav::after {
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background: #ffffffdb;
        display: block;
        z-index: -1;
        backdrop-filter: blur(10px);
    }

    .header__nav .menu__container {
        display: block;
    }
    .header__nav .menu__item {
        margin: 0 10px;
    }
    .header__nav .menu__item__link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        font-size: 18px;
    }

    .header--open .header__nav {
        opacity: 1;
        pointer-events: unset;
    }

}


/* ---------------------------------- */
/* Menú */

.menu__submenu {
    display: none;
    position: absolute;
}

.menu__item--has-children {
    position: relative;
}
.menu__item--has-children:hover .menu__submenu {
    display: block;
}


/* ---------------------------------- */
/* Footer */

/* Hércules */
.hercules__left > * {
    margin: 35px 0;
}
.hercules__left > *:first-child {
    margin-top: 0;
}
.hercules__left > *:last-child {
    margin-bottom: 0;
}

.hercules__bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.hercules__right li {
    list-style: none;
}
.hercules__right a {
    display: inline-block;
    padding: 5px 0;
}
.hercules__right__menu {
    margin-top: 10px;
}

.hercules .menu a:hover {
    text-decoration: underline;
}


/* ---------------------------------- */
/* Migas de pan */

/* Perseo */
.perseo__arrow {
    position: relative;
    top: -1px;
    display: flex;
}






/* ---------------------------------- */
/* SOCIAL */
footer .share {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    text-align: left;
}

footer .share li.share__item {
    text-align: center;
}

footer .share__link {
    border: 1px solid white;
}

footer .share__link:hover {
    background: #d5d5d5;
    color: black;
}


.share__link {
    width: 40px;
    height: 40px;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.15s;
}

.share__item,
.share__container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* ---------------------------------------- */
/* Fondo */

.background {
    position: relative;
}

.background>* {
    position: relative;
    z-index: 1;
}

/* Imagen o video */
.background__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background.has--bg-with-img .background__wrapper {
    z-index: 0;
}

.background.has--bg-with-img section {
    z-index: 1;
}

.background.has--bg-opacity .tidy img {
    opacity: 0.5;
}


/* ---------------------------------------- */
/* SWING */
.swing--opacity {
    opacity: 0;
    transition: 0.5s;
}

.swing--scale-up {
    transform: scale(0.95);
    opacity: 0;
    transition: 0.5s;
}

.swing--scale-up.swing--true {
    transform: none;
    opacity: 1;
    transition-delay: 0.4s;
}

.swing--scale-down {
    transform: scale(1.1);
    transition: 2s;
}

.swing--scale-down.swing--true {
    transform: none;
    transition-delay: 0.4s;
}


.swing--opacity.swing--true {
    transition-delay: 0.5s;
    opacity: 1;
}

.swing--up {
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.swing--up.swing--true {
    opacity: 1;
    transition-delay: 0.4s;
    transform: none;
}

.swing--left {
    opacity: 0;
    transition: 0.6s;
    transform: translateX(-50px);
}

.swing--left.swing--true {
    opacity: 1;
    transition-delay: 0.4s;
    transform: none;
}

.swing.activado {
    opacity: 1;
    transform: none;
}


/*** OCTUBRE ***/

.eyebrow{
font-size: 1.5rem;
  letter-spacing: .12em;
  margin: 0;
  text-transform: uppercase;
  color: black;
  font-family: Bebas Neue,sans-serif;
}

.red__title{font-family: Bebas Neue,sans-serif;
  font-size: clamp(28px,6vw,56px);
    letter-spacing:8px;
  line-height: 1;
    color: #d20909;}

.text-center{text-align:center}

.btn.btn--primary.hero-unique__cta{
  display: inline-block;
  background: #E0352B;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #FFF;
text-align: center;
font-family: "Bebas Neue";
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: 21px; /* 100% */
letter-spacing: 0.7px;
    ⁨
}
.btn.btn--primary.hero-unique__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224,53,43,.35);
  background:#cf2f26;
}