@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&family=Montserrat:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap");

/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.
*/

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
* A better looking default horizontal rule
*/

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
* Remove default fieldset styles.
*/

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
* Allow only vertical resizing of textareas.
*/

textarea {
  resize: vertical;
}

/* ==========================================================================
Author's custom styles
========================================================================== */

:root {
  --main-bg-color: #00031d;
  --white: #fff;
  --black: #000;
  --dark: #363034;
  --text-dark: #1c1f33;
  --light: #f0f0f0;
  --main-color: #0ea3b9;
  --marca-color: #ba3220;
  --expansion-color: #1a80bf;
  --yodona-color: #e0dcd0;
  --medico-color: #deece9;

  --lato: "Lato", sans-serif;
  --montserrat: "Montserrat", sans-serif;
  --roboto: "Roboto", sans-serif;
  --font-style-normal: normal;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --font-size-11: 0.6rem;
  --font-size-14: clamp(0.8rem, 1vw, 1.1rem);
  --font-size-18: clamp(0.9rem, 1vw, 1.1rem);
  --font-size-20: clamp(1rem, 1.1vw, 1.2rem);
  --font-size-23: clamp(1.15rem, 1.35vw, 1.5rem);
  --font-size-25: clamp(1.25rem, 1.42vw, 1.6rem);
  --font-size-27: clamp(1.4rem, 1.7vw, 1.75rem);
  --font-size-31: clamp(1.5rem, 1.9vw, 2rem);
  --font-size-71: clamp(2.2rem, 4.2vw, 4.5rem);
  --font-size-90: clamp(2.75rem, 5.5vw, 5.625rem);
  --font-size-130: clamp(3rem, 7vw, 7.125rem);
  --font-size-190: clamp(3.5rem, 10vw, 11.875rem);
  --font-size-225: clamp(4rem, 12vw, 11rem);
  --font-size-330: clamp(4.5rem, 13.5vw, 14rem);
  --font-size-350: clamp(4.7rem, 14vw, 15rem);
  --font-size-500: clamp(6rem, 18vw, 40.625rem);
  --font-size-650: clamp(7rem, 20vw, 42.625rem);
  --character-spacing-0: 0px;
  --character-spacing-0-13: 0.075rem;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--main-bg-color);
}

body {
  background-color: var(--main-bg-color, black);
}

body#start {
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16rem;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(255, 255, 255, 0) 40%
  );
  z-index: 999;
}

figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

a,
a:visited {
  text-decoration: none;
}
.formato__description a,
.formato__description a:visited {
  color: var(--white);
  text-decoration: underline;
}
.formato__description a:hover {
  color: var(--main-color);
}

section.section {
  padding: 0 1rem;
}

/* CARRUSEL */
.carousel {
  position: relative;
  z-index: 1;
  margin-top: 8rem;
  width: 100%;
}

#marcas-page .carousel {
  margin: 0;
  position: relative;
  bottom: -40px;
}

#eventos .carousel {
  margin-top: 0;
}

/* .carousel.dragging { */
/*   cursor: -webkit-grabbing; */
/*   cursor: grabbing; */
/* } */

.carousel--wrap {
  white-space: nowrap;
  transition: transform 0.6s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.carousel--item {
  margin: 0 4px;
}

.carousel--item figure {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 14vw;
  border-radius: 20px;
  height: 165px;
  background: white;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.soluciones-section .carousel--item figure {
  background-color: transparent;
  width: 100%;
  height: 100%;
}

.carousel--item figure img {
  max-height: 90px;
  max-width: 200px;
  width: 100%;
}

.carousel--item figure figcaption h4 {
  margin: 0;
  color: var(--main-bg-color);
}

.carousel--item h2 {
  position: absolute;
  z-index: 1;
  bottom: 1.8vw;
  font-size: 6vw;
  bottom: 1vw;
  color: #fff;
}

.carousel--progress {
  position: fixed;
  z-index: 2;
  pointer-events: none;
  bottom: 2vw;
  width: 20vw;
  left: 3vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.carousel--progress-bar {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transform: scaleX(0);
  transform-origin: 0% 0%;
}

/* ESTILOS DESDE EL XD */
.suplementos {
  font-family: var(--roboto);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-500);
  letter-spacing: var(--character-spacing-0);
  color: var(--text-dark);
}

.title3 {
  font-family: var(--lato);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-31);
  letter-spacing: var(--character-spacing-0);
  color: var(--main-bg-color);
}

.title2 {
  font-family: var(--roboto);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-71);
  letter-spacing: var(--character-spacing-0);
  color: var(--white);
}

.title {
  margin: 2rem 0;
  font-family: var(--roboto);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-190);
  letter-spacing: var(--character-spacing-0);
  text-align: center;
  color: var(--white);
}

h1.section-hero__title,
.section-hero__subtitle {
  visibility: hidden;
}

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

h2.title.no-animation {
  top: 0;
}

.subtitle--main {
  font-family: var(--roboto);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-71);
  letter-spacing: var(--character-spacing-0);
  margin: 0;
  text-align: center;
  color: var(--white);
  line-height: 100%;
}

h3.subtitle--main {
  position: relative;
  top: -24px;
  visibility: hidden;
}

.title:has(+ h3) {
  /* margin-bottom: -5vw; */
}

button,
.button {
  padding: 1rem 2rem;
  font-family: var(--lato);
  font-size: var(--font-size-27);
  border-radius: 45px;
  text-decoration: none;
  background-color: var(--white);
  color: black;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

button:hover,
.button:hover,
button:active,
.button:active,
button:focus,
.button:focus {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(5px);
}

.btn-marcas:hover {
  background-color: var(--main-bg-color);
  color: var(--main-color);
}

.btn-soluciones:hover {
  background-color: var(--main-color);
  color: var(--white);
}

.section__subtitle--boxed {
  padding: 1rem 1.25rem;
  margin: 0 auto;
  max-width: fit-content;
  font-family: var(--montserrat);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-27);
  line-height: calc(var(--font-size-27) / 2);
  text-transform: uppercase;
  letter-spacing: 0px;
  color: var(--text-dark);
  background-color: var(--white);
}

.section-hero .section__subtitle--boxed.is-blue {
  color: var(--main-color);
}

.section__subtitle--boxed + .section__subtitle--boxed {
  margin-top: -0.6rem;
}

.section__subtitle--boxed.section__subtitle--page {
  background-color: var(--main-color);
  margin-bottom: 4rem;
}

.section__subtitle--boxed.marcas-section__subtitle--boxed {
  margin-bottom: 1rem;
  z-index: 1;
}

.section__text {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--montserrat);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-20);
  letter-spacing: var(--character-spacing-0);
  color: var(--white);
  line-height: 175%;
  text-align: center;
}

.section__text.is--black {
  color: var(--black);
}

.section__text--lead {
  text-transform: uppercase;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  margin-bottom: 4rem;
}

.section__text.section__text--small {
  font-size: var(--font-size-11);
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 4vw auto;
  font-family: var(--montserrat);
  font-weight: var(--font-weight-normal);
}

#audiencia .countdown,
#branded .countdown {
  width: 80%;
}

.marcas-section.countdown {
  justify-content: flex-start;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--white);
  padding-right: 2rem;
}

#audiencia .countdown-item,
#branded .countdown-item {
  flex: 1;
}

.marcas-section .countdown-item:first-child {
  padding-left: 0;
}

.countdown-item::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  text-transform: uppercase;
  background-color: var(--white);
}

.countdown-item:last-child::after {
  height: 0;
}

.countdown-number {
  display: flex;
  font-size: 4rem;
  line-height: 0.9;
}
#especializada
  > div.marcas-section__container
  > div.marcas-section.countdown
  > div
  > div.countdown-number.counter1 {
  font-size: 6rem;
}

.countdown-text {
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

#legal .main-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

/* ==========================================================================
!HEADER
========================================================================== */
.header {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1rem 0;
}

.header__container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.header__nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.section-formato--right .header__nav-bar {
  justify-content: flex-end;
}

.header__logo {
  width: auto;
  height: 105px;
  margin-bottom: 1rem;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header__menu-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.header__menu-item {
  color: var(--white);
  font-size: var(--font-size-20);
}

.header__menu-link {
  display: inline-block;
  position: relative;
  margin: 1rem 1vw;
  color: var(--white);
  font-family: var(--lato);
  font-size: var(--font-size-20);
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}

.header__menu-link:hover {
  color: var(--main-color);
  transform: translateY(-7.5px);
  -webkit-transform: translateY(-7.5px);
  -moz-transform: translateY(-7.5px);
  -ms-transform: translateY(-7.5px);
  -o-transform: translateY(-7.5px);
}

.header__menu-item:last-child .header__menu-link:hover path {
  fill: var(--main-color);
}

.header__menu-item:not(:last-child) a::after {
  content: "";
  position: absolute;
  bottom: 2.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.header__menu-item:not(:last-child) a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ==========================================================================
HEADER
========================================================================== */

/* ==========================================================================
!ASIDE
========================================================================== */
.scroll-marker {
  opacity: 0;
  position: fixed;
  top: calc(100% - 90px);
  right: 2rem;
  width: 100%;
  max-width: 60px;
  height: 60vh;
  z-index: 8;
}
.scroll-marker.visible {
  opacity: 1;
}

.scroll-marker__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 100px;
  list-style: none;
}

.scroll-marker__item {
  width: 40%;
  height: 2px;
  background-color: #fff;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
}

.scroll-marker__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.25rem 0;
}

.scroll-marker__item--active {
  width: 75%;
}

.scroll-marker__item--near {
  width: 65%;
}

/* ==========================================================================
ASIDE
========================================================================== */
/* ==========================================================================
!HERO
========================================================================== */
section.section-hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 20vw;
  overflow: hidden;
}

#start section.section-hero {
  overflow: visible;
}
#soluciones-page section.section-hero {
  padding-bottom: 9vw;
}

#formatos-page section.section-hero {
  padding-bottom: 6vw;
  overflow: visible;
  z-index: 0;
}

#contacto section.section-hero {
  padding-bottom: 0;
  overflow: visible;
}

.section__destello {
  pointer-events: none;
  position: absolute;
  top: -163px;
  left: 23%;
  width: 100%;
  height: 100%;
  background: url(../img/destello.png) center center no-repeat;
  background-size: contain;
  z-index: 0;
}

.section__destello.destello__new {
  background: url(../img/destello2.png) center center no-repeat;
  background-size: contain;
}

#hero .section__destello {
  transform: scale(1.4);
  top: 0;
}

#formato-page .section__destello {
  position: absolute;
  z-index: -1;
  top: 20vh;
  left: 0;
  width: 100%;
  height: 100%;
}
#formato-page .section__destello.formato__mobile__destello {
  left: -10%;
}

.section-hero__fading-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--main-color);
  z-index: 5;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.section-hero__fading-background.is--faded {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.section-hero__container {
  width: 100%;
  max-width: 1440px;
  padding: 3vw 0;
  margin: auto;
}

.section-hero__content {
  display: grid;
  align-items: flex-start;
  grid-template-columns: auto;
  grid-template-columns: 6fr 9fr;
  grid-template-areas: "subtitle image" "text image";
  column-gap: 2vw;
}
.marcas-body .section-hero__content {
  grid-template-columns: 7fr 8fr;
}

.section-hero__title {
  position: relative;
  z-index: 8;
  display: block;
  max-width: 80%;
  margin: 0 0 1vw;
  font-family: var(--roboto);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-130);
  line-height: 100%;
  letter-spacing: var(--character-spacing-0);
  color: var(--white);
}

#marcas-page .section-hero__title,
#formatos-page .section-hero__title,
#contacto .section-hero__title,
#soluciones-page .section-hero__title {
  font-size: var(--font-size-330);
}

.section-hero__title.page-title {
  color: var(--main-color);
  font-size: var(--font-size-225);
  margin-bottom: 1.5vw;
}

.section-hero__subtitle {
  position: relative;
  z-index: 8;
  grid-area: subtitle;
  margin: 0;
}

.section-hero__text {
  grid-area: text;
  text-align: left;
  font-family: var(--montserrat);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-20);
  line-height: 200%;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  margin-block: 0;
}

.section-hero__text--page-hero {
  /* margin-top: 1.5vw; */
  max-width: 42vw;
}

.section-hero__video-container {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  position: relative;
  grid-area: image;
  max-width: 38vw;
  width: 100%;
  height: auto;
  justify-self: center;
}

.video-outer {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.video-outer a {
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.video-outer a:hover {
  opacity: 1;
}

.video-outer a.close {
  line-height: 3vw;
  display: none;
  font-size: 5vw;
  color: white;
  text-decoration: none;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
}

.video-outer a img,
.soluciones-section.carousel .carousel--item figure .video-outer a img {
  max-height: 15%;
  max-width: 100%;
  position: relative;
  top: 43%;
}
#rrss .soluciones-section.carousel .carousel--item figure .video-outer a img {
  max-height: 8%;
  top: 43%;
}

#data .video-outer {
  max-height: 270px;
}

.video-outer video {
  width: 100%;
}

.section-hero__video-container img {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.section-hero__video-logos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.section-hero__video-logos img {
  width: auto;
  height: 60px;
}

/* ==========================================================================
HERO END
---
!AUDIENCIA START
========================================================================== */
#audiencia {
  padding-top: 0;
}

.section-audiencia {
  position: relative;
}

.section-audiencia__container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding: 3vw 0;
  margin: auto;
  z-index: 1;
}

.section-audiencia__title {
  color: var(--main-color);
}

.audiencia-section.blurbs {
  justify-content: center;
  margin-top: 4vw;
}

/* ==========================================================================
AUDIENCIA END
---
!MARCAS START
========================================================================== */
.marcas-body {
  overflow-x: hidden;
}

.section-marcas {
  position: relative;
  z-index: 1;
  margin-bottom: 30vw;
  margin-top: 7rem;
}

.section-marcas__button-container,
.section-soluciones__button-container {
  padding: 5vw 0;
  text-align: center;
}

.section-soluciones__button-container {
  position: relative;
  z-index: 2;
  padding: 3vw 0;
}

.section-marcas__background {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100vw;
  background-color: var(--main-color);
  z-index: -1;
  border-radius: 50%;
  will-change: filter;
  filter: blur(100px);
}

@media screen and (min-width: 1681px) {
  .section-marcas__background {
    width: 80vw;
    height: 80vw;
    left: calc(50% - 40vw);
  }
}

/* ==========================================================================
MARCAS END
---
!CONTENIDO START
========================================================================== */
section.section-contenido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 20rem;
}

.section-contenido__destello,
.section-data__destello {
  z-index: 0;
  left: 0;
  top: 5%;
}

.section-contenido__video-bg {
  width: 100%;
  max-width: 775px;
  height: auto;
  z-index: 1;
}

.section-contenido__video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-contenido__container {
  margin-top: -150px;
  z-index: 2;
}

.section-contenido__text {
  max-width: 900px;
  margin-top: 2vw;
}

/* ==========================================================================
CONTENIDO
---
!DATA START
========================================================================== */
section.section-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0;
}

.section-data__text {
  max-width: 900px;
}

.section-data__destello {
  z-index: 0;
  left: 19%;
  top: -10%;
}

.section-data__video-bg {
  position: relative;
  top: -50%;
  left: calc(50% - 50vw);
  width: 100vw;
  height: auto;
  z-index: 0;
}

.section-data__rectangulos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 6rem;
  width: 100%;
  max-width: 1440px;
}

.section-data__rectangulos-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 25%;
  max-width: 400px;
  height: 210px;
  position: relative;
  font-family: var(--montserrat);
  font-size: clamp(1rem, 2vw, var(--font-size-23));
  color: var(--main-color);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  /* transform: perspective(600px) rotateY(25deg);; */
}

.section-data__rectangulos .plus,
.section-data__rectangulos .equal {
  width: 60px;
  margin: 0 2vw;
}

.section-data__rectangulos-item--title {
  margin: 0;
}

.section-data__rectangulos-item--text {
  margin: 0;
}

/* Efecto 3D flip */

.flip-box {
  position: relative;
  background-color: transparent;
  border: 1px solid var(--main-color);
  border-radius: 20px;
  background-color: var(--main-bg-color);
  width: 100%;
}

.flip-box .content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  -webkit-transform: translateZ(50px);
  transform: translateZ(50px);
}

/* ==========================================================================
DATA
---
!SOLUCIONES START
========================================================================== */
section.section-soluciones {
  position: relative;
  padding-top: 24vw;
  z-index: 2;
}

.section__destello.section-soluciones__destello {
  z-index: 0;
  left: 0;
  top: -80px;
}

#soluciones-page .section-hero .section__subtitle--boxed.is-blue {
  margin: 0 auto 3rem;
}

.section-soluciones__rotador {
  position: absolute;
  top: 28vw;
  left: calc(50% - 5vw);
  width: 10vw;
  height: 10vw;
  z-index: 2;
  background: url(../img/img-rotar.png) no-repeat center center;
  background-size: contain;
}

.section-soluciones__container {
  position: relative;
  z-index: 2;
  margin-bottom: 7vw;
}

#soluciones .section__subtitle--boxed {
  margin-top: -2rem;
}

.section-soluciones__text {
  max-width: 700px;
  margin-top: 2vw;
}

.section-soluciones__list {
  position: relative;
  padding-inline-start: 0;
  z-index: 2;
  font-family: var(--roboto);
  font-weight: var(--font-weight-black);
  font-size: clamp(2.5rem, 8vw, 70px);
  list-style: none;
  margin-block-end: 0;
  color: var(--white);
  text-align: center;
}

#branded .soluciones-section__content-text figure img {
  max-width: 270px;
}

/* ==========================================================================
SOLUCIONES
---
!CONECTAMOS START
========================================================================== */
section.section-conectamos {
  position: relative;
  padding-top: 20vw;
  padding-bottom: 8rem;
  margin-bottom: 6vw;
  overflow: hidden;
}

.section-conectamos__destello {
  top: 125px;
  left: 0;
  z-index: 1;
  transform: scale(1.2);
}

.section_conectamos__container {
  position: relative;
  z-index: 2;
}

h3.section-conectamos__claim {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-family: var(--roboto);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-71);
  text-align: center;
  line-height: 106.25%;
}

.title.section-conectamos__title {
  position: relative;
  margin: 0 auto;
  font-size: clamp(2.8rem, 8vw, 8rem);
  z-index: 2;
  top: 0px;
}

.section-conectamos__video {
  position: relative;
  top: 5vw;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

.section-conectamos__video img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-conocenos__logo {
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 125px);
  width: 100%;
  max-width: 225px;
  z-index: 3;
}

.section-conocenos__logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
CONECTAMOS
---
!FOOTER START
========================================================================== */
.footer {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.footer__container {
  width: 100%;
  max-width: 1440px;
  font-size: 0.75em;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 1vw;
}

.footer__navigation-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  width: 100%;
  max-width: 1440px;
  padding: 2rem 0;
  list-style-type: none;
}

li.footer__navigation-list-item:not(:first-child)::before {
  content: "|";
  margin-right: 0.5vw;
}

.footer__navigation-list-item a {
  font-family: var(--roboto);
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.footer__navigation-list-item a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

/* ==========================================================================
/* FOOTER END
========================================================================== */

/*==========================================================================
!PAGINA MARCAS START
==========================================================================*/
section.marcas-section,
section.soluciones-section {
  padding-bottom: 18vw;
  position: relative;
  width: 100%;
}

section#especializada.marcas-section {
  padding-bottom: 0;
}

.marcas-section__container,
.soluciones-section__container {
  padding-top: 0;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
}

#eventos .soluciones-section__container {
  margin-bottom: 3rem;
}

.marcas-section__top-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1vw;
  justify-content: center;
  align-items: center;
}

.top-row__logo-container {
  width: 100%;
  max-width: 440px;
  height: 100%;
  max-height: 500px;
  margin-bottom: 2vw;
}

.top-row__logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-hero__text.section-hero__text--elmundo {
  max-width: 480px;
}

.marcas-section__top-row-img {
  width: 100%;
  height: auto;
}

.marcas-section__top-row-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blurbs {
  display: flex;
  width: 100%;
  margin-bottom: 4vw;
}

.blurb__item {
  display: flex;
  align-items: center;
  margin-right: 6vw;
}

.blurb__item:last-child {
  margin-right: 0;
}

.blurb__item-img {
  width: 100%;
  height: 100%;
}

.blurb__item-img img {
  width: 46px;
  height: 46px;
  object-fit: cover;
}

.blurb__item-img a:hover svg > *:not(g) {
  fill: var(--main-color);
}

a.blurb__item-title {
  font-family: var(--roboto);
  font-size: var(--font-size-42);
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}

a.blurb__item-title.is--black {
  color: var(--black);
}

.marcas-section .section__text.section__text--small {
  margin: 0;
  text-align: left;
}

.section-marcas__suplementos {
  width: 100%;
  position: absolute;
  bottom: 2vw;
  z-index: -1;
}

.section-marcas__suplementos-text {
  font-size: clamp(48px, 17.371875vw, 40rem);
  font-weight: var(--font-weight-black);
  letter-spacing: -0.3vw;
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  position: relative;
  bottom: 4rem;
}

#marcas-hero.section.section-hero {
  padding-bottom: 15vw;
}

#marcas-hero .section-hero__container {
  padding-bottom: 0;
}

#marcas-hero .section-hero__text {
  margin-top: 1.5vw;
}

/* EL MUNDO +++++++++++++++++++++++++*/
#elmundo .section__destello {
  top: -39%;
}

/* MARCA +++++++++++++++++++++++++*/
#marca .section__destello {
  top: -29%;
  left: 15%;
}

#marca .top-row__logo-container {
  max-width: 215px;
}

/* RADIO MARCA +++++++++++++++++++++++++*/
#radio-marca .section__destello {
  left: 18%;
  top: -25%;
}

#radio-marca .marcas-section__top-row .section__parallax {
  position: absolute;
  top: -10%;
  right: 0;
  z-index: 3;
}

.marcas-section__device {
  position: absolute;
  top: 0;
}

.marcas-section__device.device-1 {
  top: -3rem;
  left: -50rem;
}

.marcas-section__device.device-2 {
  right: 5rem;
  top: -9rem;
}

.marcas-section__device.device-1 img {
  max-width: 12vw;
}

.marcas-section__device.device-2 img {
  max-width: 17vw;
}

/* EXPANSIÓN +++++++++++++++++++++++++*/
#expansion .top-row__logo-container {
  max-width: 325px;
}

.section-hero__text.section-hero__text--expansion {
  max-width: 470px;
}

#expansion .section-marcas.carousel {
  margin-bottom: 0;
}

#expansion .section__destello {
  left: 18%;
  top: -37%;
}

/* TELVA +++++++++++++++++++++++++*/
#telva .section__destello {
  top: -19%;
  left: 17%;
}

/* YO DONA +++++++++++++++++++++++++*/
#yodona .top-row__logo-container {
  max-width: 250px;
}

.section-hero__text.section-hero__text--yodona {
  max-width: 515px;
  /* color: var(--black) */
}

#yodona .section__destello {
  top: -27%;
  left: 17%;
}

/* FUERA DE SERIE +++++++++++++++++++++++++*/
#fds .section__destello {
  top: -31%;
  left: 14%;
}

#fds .marcas-section__top-row-img img {
  width: 90%;
  height: auto;
  float: right;
}

/* PRENSA MEDICA ESPECIALIZADA +++++++++++++++++++++++++*/
#especializada .section__subtitle--boxed.marcas-section__subtitle--boxed {
  margin-bottom: 1vw;
}

#especializada .section__destello {
  top: -28%;
  left: 18%;
}

#especializada .marcas-section.countdown {
  margin-top: -2vw;
}

#especializada .espcializada__marcas-container .marcas-section.countdown {
  margin-top: 4vw;
  margin-bottom: 0;
}

.especializada-title {
  position: absolute;
  top: -11vw;
  left: calc(50% - 43.5vw);
  font-size: clamp(48px, 16.65vw, 20rem);
  line-height: 0;
  font-weight: var(--font-weight-black);
  letter-spacing: -0.35vw;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
}

#especializada .top-row__logo-container {
  max-width: 275px;
}

.section-hero__text.section-hero__text--especializada {
  max-width: 575px;
}

.marcas-section__top-row .marcas-section.countdown {
  margin-bottom: 6vw;
}

.marcas-section__top-row .marcas-section.countdown .countdown-number {
  display: flex;
  font-size: var(--font-size-130);
  line-height: 100%;
}

.marcas-section__top-row .marcas-section.countdown .countdown-text {
  font-size: 1.5rem;
  line-height: 100%;
}

#especializada .marcas-section__top-row-text .countdown-item {
  flex-grow: 0;
}

#marcas-page .carousel--wrap {
  margin-top: 5rem;
}

#marcas-page .carousel--item p {
  color: var(--white);
}

.espcializada__marcas-container {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2vw;
}

#especializada .marca__container {
  display: flex;
  flex-direction: column;
}
#especializada .marca__container.marca__container--border {
  border-right: 1px solid var(--white);
  padding-right: 1vw;
}

.marca__logo {
  width: 100%;
  max-width: 325px;
  height: auto;
  align-self: start;
}

.marca__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marca__logo img.espcializada__dm {
  max-height: 80px;
}

.marca__logo img.espcializada__cf {
  max-height: 80px;
}

.marca__logo img.espcializada__cp {
  max-height: 74px;
}

.marca__container .marcas-section.countdown {
  margin: 2vw 0 5vw;
}

.marca__container .countdown-number {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
}

/* SOLUCIONES PAGE */

section.soluciones-section {
  padding: 12vw 1rem 0;
}

#soluciones-page section.soluciones-section {
  padding-top: 0;
}

#publicidad .section__destello {
  top: -206px;
  left: 8%;
}

#branded .section__destello {
  top: -20vw;
  left: 28%;
}

#rrss .section__destello {
  top: -20vw;
  left: 28%;
}

#eventos .section__destello {
  top: -33vw;
  left: 24%;
}

.soluciones-section__adorno {
  position: absolute;
  background: url(../img/destello.png) no-repeat center center;
  background-size: contain;
  top: -20%;
  left: 10%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.soluciones-section__video {
  display: flex;
  align-items: start;
}

.soluciones-section__video {
  bottom: initial;
  top: 10%;
  z-index: 0;
}

.soluciones-section__device-image img {
  border-radius: 20px;
}

.soluciones-section .section__parallax {
  position: absolute;
  right: 7%;
  top: -2vw;
  z-index: 3;
}

#rrss.soluciones-section .section__parallax {
  /* top: -2vw; */
}

.soluciones-section__device img {
  object-fit: contain;
}

.soluciones-section__video img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.soluciones-section__title.title {
  text-align: left;
  line-height: 100%;
  margin: 4vw 0;
  font-size: var(--font-size-225);
}

.soluciones-section__content {
  display: flex;
  align-items: start;
  gap: 2vw;
}

.soluciones-section__content.rrss,
.soluciones-section__content.eventos {
  margin-bottom: 3vw;
}

.soluciones-section__content-number {
  font-family: var(--lato);
  font-size: var(--font-size-225);
  line-height: 68%;
  font-weight: thin;
  color: var(--white);
}

.section-hero__text.publicidad {
  max-width: 500px;
}

.soluciones-section__device.device-1 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  top: 0;
}

.soluciones-section__device.device-1 img {
  max-width: 235px;
  height: auto;
}

.soluciones-section__device.device-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  right: -7.5%;
  top: 0;
}

.soluciones-section__device.device-2 img {
  max-width: 360px;
  height: auto;
}

.soluciones-section__device.device-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}

.soluciones-section__device.device-3 img {
  max-width: 555px;
  height: auto;
}

.section-hero__text.branded {
  max-width: 500px;
  margin-bottom: 2vw;
}

.section-hero__text.rrss {
  max-width: 580px;
  margin-bottom: 0;
}

.section-hero__text.eventos {
  max-width: 1400px;
}

.section-hero__text.data {
  max-width: 500px;
}

.soluciones-section.carousel .carousel--item {
  text-decoration: none;
  flex-direction: column;
  width: 40vw;
  max-width: 600px;
  min-height: 509px;
  background: none;
  opacity: 1;
}

#branded .soluciones-section.carousel .carousel--item {
  width: 25vw;
}

#rrss .soluciones-section.carousel .carousel--item {
  width: 18vw;
}

#eventos .soluciones-section.carousel .carousel--item {
  width: 20vw;
}

.soluciones-section.carousel--is-full .carousel--item figure {
  padding: 0;
  border-radius: 10px;
  background: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.soluciones-section.carousel .carousel--item figure img,
.soluciones-section.carousel .carousel--item figure video {
  max-height: 100%;
  max-width: 100%;
  /* object-fit: cover; */
  border-radius: 10px;
  filter: brightness(50%);
  -webkit-filter: brightness(50%);
  transition: 0.3s;
}

.soluciones-section.carousel .carousel--item figure:hover video,
.soluciones-section.carousel .carousel--item:hover figure img {
  filter: brightness(1);
  -webkit-filter: brightness(1);
}

.carousel .carousel--item figcaption {
  font-family: var(--lato);
  font-size: clamp(0.875rem, 1.3vw, 1.7rem);
  color: var(--main-color);
  text-align: center;
}

#marcas-page .carousel .carousel--item figcaption {
  font-size: 0.8rem;
}

#eventos .soluciones-section.carousel .carousel--item figcaption {
  font-size: clamp(0.875rem, 1.2vw, 1.5rem);
}

.soluciones-section.carousel .carousel--item figcaption {
  color: var(--main-color);
}

.soluciones-section.carousel .carousel--item:hover figcaption {
  color: var(--white);
}

.soluciones-section.carousel .carousel--item figcaption h4 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
  line-height: 1rem;
}

#eventos .soluciones-section.carousel .carousel--item figcaption h4 {
  font-size: 1.1rem;
  white-space: break-spaces;
}

.soluciones-section.carousel .carousel--item figcaption p {
  margin-top: 0;
}

.soluciones-section.carousel.carousel--is-full .carousel--item {
  padding: 0;
  background: none;
}

#data.soluciones-section {
  padding-bottom: 10vw;
  padding-top: 0;
  background: url(../img/soluciones-data-bg.svg) -5vw center no-repeat;
  background-size: contain;
  background-position: 178px 103px;
}

.soluciones-section__blurbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.soluciones-section__content.data {
  margin-bottom: 0;
}

.soluciones-section__blurb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  /* background: url(../img/blurb-bg.png) center center no-repeat; */
  /* background-size: cover; */
  font-family: var(--montserrat);
  font-size: clamp(1rem, 1vw, var(--font-size-20));
  color: var(--main-bg-color);
}

.soluciones-section__blurb:after {
  background-color: var(--main-color);
  border-radius: 50%;
  content: "";
  filter: blur(24px);
  -webkit-filter: blur(25px);
  position: absolute;
  width: 80%;
  height: 80%;
  z-index: 0;
}

.soluciones-section__blurb h4 {
  text-transform: uppercase;
  color: var(--main-bg-color);
  z-index: 1;
}

.soluciones-section__blurb h4:has(+ p) {
  margin-bottom: 0;
}

.soluciones-section__blurb p {
  margin-top: 0;
  z-index: 1;
}

.soluciones-section__data-roady {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
  padding-right: 4rem;
}

.countdown.rrss {
  margin-bottom: 14vw;
}

.countdown.eventos {
  margin-bottom: 0;
}

#formatos-page section {
  z-index: 1;
  position: relative;
}

.formatos-filter {
  margin: 0 auto 10vw;
  width: 100%;
  max-width: 1440px;
  position: relative;
  min-height: 70px;
}

.select,
.dropdown {
  position: absolute;
  width: 100%;
  max-width: 470px;
  border: 1px solid var(--main-color);
  border-radius: 15px;
  background: var(--main-bg-color);
  z-index: 2;
}
.dropdown {
  border: 0 none;
  width: auto;
  position: relative;
}
.droparea {
  position: absolute;
  border: 1px solid var(--main-color);
  border-radius: 15px;
  background: var(--main-bg-color);
  z-index: 9;
  right: 0;
}

.select button,
.dropdown button {
  background: none;
  border: none;
  color: var(--main-color);
  font-size: var(--font-size-27);
  font-family: var(--roboto);
  padding: 1rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.dropdown button {
  padding: 0;
}

.select .chevron {
  position: relative;
}

.select svg {
  position: absolute;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.select .chevron.rotate svg:last-child {
  transform: rotate(-180deg) translateX(-36.25%);
}

.select button:hover,
.select button:active,
.select button:focus {
  transform: none;
  cursor: pointer;
}

.select .checkboxes,
.dropdown .droparea {
  display: none;
  padding: 1rem 2rem;
}
.select .checkboxes.open {
  display: block;
}
.dropdown.open .droparea {
  display: flex;
  gap: 1rem;
}
.droparea a {
  color: var(--white);
}
.droparea a:hover {
  color: var(--main-color);
}

.select .checkboxes input[type="checkbox"] {
  display: none;
}

.select .checkboxes label {
  color: var(--main-color);
  font-size: var(--font-size-20);
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.75rem;
  line-height: 1rem;
}

.select .checkboxes label:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-bg-color);
  border: 1px solid var(--main-color);
  border-radius: 0.125rem;
}

.select .checkboxes input[type="checkbox"]:checked + label:before {
  content: "\2713";
  font-size: var(--font-size-25);
  color: green;
  text-align: center;
  line-height: 12px;
}

/* .formatos-filter .checkboxes input[type="checkbox"] { */
/*   -webkit-appearance: none; */
/*   appearance: none; */
/*   margin-right: 1rem; */
/*   background-color: var(--main-bg-color); */
/*   border: 1px solid var(--main-color); */
/*   border-radius: .15em; */
/*   color: var(--main-color); */
/*   font: inherit; */
/*   width: 1.15rem; */
/*   height: 1.15rem; */
/*   display: grid; */
/*   place-content: center; */
/* } */
/* .formatos-filter .checkboxes input[type="checkbox"]::before { */
/*   content: ""; */
/*   width: 0.65em; */
/*   height: 0.65em; */
/*   transform: scale(0); */
/*   transition: 120ms transform ease-in-out; */
/*   box-shadow: inset 1em 1em var(--form-control-color); */
/* } */
/* .formatos-filter .checkboxes input[type="checkbox"]:checked::before { */
/*   transform: scale(1); */
/* } */

#formatos-container {
  white-space: nowrap;
  transition: all 0.6s ease-in;
}

#formatos-container.offsite {
  /* transform: translateX(-100vw); */
  margin-left: -100vw;
}

#load-container {
  background-color: var(--main-bg-color, black);
  display: inline-flex;
  flex-direction: column;
  width: 100vw;
  white-space: normal;
  position: relative;
  top: -100px;
}

#formatos-hero .section-hero__container {
  padding-bottom: 0;
}

#formatos-hero .section__subtitle--boxed {
  margin-bottom: 0;
}

.section-hero__formatos-img-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 8vw auto 0;
  padding: 0 1rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.section-hero__formatos-img-container nav {
  display: flex;
}

.section-hero__formatos-img-container nav button {
  background: none;
  border: none;
  position: relative;
  text-decoration: none;
  color: white;
  display: block;
  z-index: 8;
}

.section-hero__formatos-img-container nav button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0.6rem;
  border-radius: 50%;
  background: var(--main-color);
  width: 4.5rem;
  height: 4.5rem;
  z-index: -1;
  filter: blur(10px);
  --webkit-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.section-hero__formatos-img-container nav button.prev-article::before {
  right: 0.8rem;
}

.section-hero__formatos-img-container nav button:hover::before {
  opacity: 0.8;
}

.section-hero__formatos-img-container nav button:hover,
.section-hero__formatos-img-container nav button:focus,
.section-hero__formatos-img-container nav button:active {
  transform: none;
  cursor: pointer;
}

nav button[disabled] svg,
nav button[disabled]:hover svg {
  opacity: 0.5;
}

.section-hero__formatos-img-container nav button[disabled]:hover {
  cursor: default;
}

.section-hero__formatos-img-container nav button[disabled]:hover::before {
  opacity: 0;
}

.formatos-carousel {
  position: relative;
  width: 100%;
  padding-top: 38.25%;
  max-width: 960px;
  perspective: 960px;
  perspective-origin: 50% -50%;
  transition: all 1s;
}

.formatos-carousel__item {
  width: 100%;
  position: absolute;
  opacity: 1;
  z-index: -2;
  transition: all 0.3s ease-in;
  top: 0;
  border-radius: 1rem;
}

.formatos-carousel__item.go-away {
  transform: translateX(-100vw) !important;
  opacity: 0 !important;
}

.formatos-carousel__item.active {
  filter: blur(0);
  --webkit-filter: blur(0);
}

.formatos-carousel__item video,
.formatos-carousel__item img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

#formatos-page .formatos-carousel__item .formato__subtitle--boxed {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto -47px;
  padding: 1rem;
  display: block;
  font-size: var(--font-size-16);
  color: var(--white);
}

#formatos-page .formatos-carousel__item a {
  text-decoration: none;
  color: var(--white);
  transition: 0.3s;
}

#formatos-page .formatos-carousel__item a:hover {
  color: var(--main-color);
}

.formatos-desactivados {
  opacity: 0.3;
  margin-top: 5vw;
}

.formatos-activos__header {
  display: flex;
  margin: 0 auto;
  max-width: 1440px;
}

.formatos-section.blurbs {
  justify-content: flex-end;
}

.formatos-activos__container {
  white-space: normal;
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 2vw;
  column-gap: 2vw;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  transition: all 0.6s ease-in;
}
.formatos-activos__container.animate {
  opacity: 0;
}

#formatos-page .formato {
  opacity: 0.4;
  transition: all 0.5s ease-in-out;
}

#formatos-page .formato a {
  color: var(--white);
  text-decoration: none;
  font-size: var(--font-size-20);
  font-family: var(--lato);
}

#formatos-page .formato a:hover {
  display: block;
  transform: translateY(5px);
}

#formatos-page .formato.active {
  opacity: 1;
}

.formato__img {
  width: 100%;
  height: auto;
}
.formatos .formato__img img {
  width: 100%;
  height: 100%;
  max-height: 211px;
}
.formatos .formato__img.mobile img {
  width: auto;
  height: 211px;
}

body.formato .formato__subtitle--boxed {
  padding: 1rem 1.25rem;
  max-width: fit-content;
  font-family: var(--montserrat);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-27);
  line-height: calc(var(--font-size-27) / 2);
  text-transform: uppercase;
  letter-spacing: 0px;
  color: var(--main-bg-color);
  background-color: var(--main-color);
}
.formatos-contacto__container {
  margin: 8vw auto 10vw;
  width: 100%;
  max-width: 1440px;
  padding: 0 1rem;
}

.formatos-contacto__subtitle {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 4rem);
  font-weight: var(--font-weight-black);
  line-height: 100%;
  text-align: left;
  color: var(--main-color);
}

.formatos-contacto__title {
  margin: 0 0 3vw;
  font-size: clamp(2rem, 5vw, 7rem);
  font-weight: var(--font-weight-black);
  line-height: 100%;
  text-align: left;
  color: var(--white);
}

.form-group {
  margin: 1rem 0;
  max-width: 750px;
}

.form-group label {
  display: none;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem 2.5rem;
  background: none;
  border: 1px solid var(--main-color);
  border-radius: 15px;
  font-size: var(--font-size-23);
  font-family: var(--roboto);
  color: var(--white);
  outline: none;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--main-color);
}

.form-group button {
  position: relative;
  width: 100%;
  background: none;
  border: 0;
  font-size: 2rem;
  font-family: var(--roboto);
  color: var(--white);
  text-align: right;
  outline: none;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
}

.form-group button:hover {
  cursor: pointer;
  transform: translateY(-0.5rem);
  color: var(--main-color);
  -webkit-transform: translateY(-0.5rem);
  -moz-transform: translateY(-0.5rem);
  -ms-transform: translateY(-0.5rem);
  -o-transform: translateY(-0.5rem);
}

.form-group button::after {
  content: ">";
  position: absolute;
  color: var(--white);
  right: 2rem;
  top: 25%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}

.form-group button:hover::after {
  opacity: 1;
  color: var(--main-color);
  transform: translateX(2rem);
  -webkit-transform: translateX(2rem);
  -moz-transform: translateX(2rem);
  -ms-transform: translateX(2rem);
  -o-transform: translateX(2rem);
}

/* ==========================================================================
* PAGINA DE FORMATO GENERICO *
==========================================================================*/

.formato-page-main-container {
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vw;
  max-width: 1440px;
  margin: 0 auto 7vw;
  width: 100%;
  z-index: 2;
}

.formato-page-main-container header {
  padding-left: 0;
  padding-right: 0;
}

.section-formato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.section-formato--left {
  padding-right: 1rem;
  max-width: 675px;
}

.formato__section {
  position: relative;
  padding: 1.5vw 0;
  border-bottom: 1px solid var(--main-color);
}

.formato__double,
.formato__section.formato__section--devices {
  display: flex;
  justify-content: space-around;
  gap: 0.5vw;
  /* flex-direction: column; */
}

.formato__double .formato__desktop {
  flex-basis: 50%;
}

.formato__double article img {
  margin: 0 auto;
  max-height: 75px;
  height: auto;
}

#formato-devices-devices .formato__desktop {
  width: 50%;
  flex-basis: 50%;
}

#formato-devices-devices.formato__section.formato__section--devices {
  display: flex;
  flex-wrap: wrap;
}

.formato__section.formato__section--devices article {
  margin-top: 3vh;
  flex: 1 1 0px;
}

.formato__section.formato__section--devices article img {
  margin: 0 auto;
  max-height: 75px;
  height: auto;
}

a:has(.formato__backlink) {
  text-decoration: none;
}

.formato__date {
  color: var(--main-color);
  font-size: var(--font-size-20);
  margin-bottom: 2rem;
}

.formato__backlink {
  position: relative;
  font-family: var(--lato);
  font-size: 2.75rem;
  font-weight: var(--font-weight-normal);
  letter-spacing: -0.4px;
  margin: 0;
  color: var(--white);
  transition: 0.3s;
}

a.formato__back {
  position: relative;
}
a.formato__back.is--mobile {
  flex-grow: 1;
  left: 0.5rem;
}

a.formato__back:hover .formato__backlink {
  color: var(--main-color);
}

a.formato__back .formato__backlink::before {
  content: "‹";
  position: absolute;
  left: -1rem;
  top: 0;
  color: var(--white);
}
a.formato__back:hover .formato__backlink::before {
  color: var(--main-color);
}

.formato__name {
  margin: 1.5vw 0;
  font-family: var(--roboto);
  font-size: var(--font-size-71);
  font-weight: var(--font-weight-black);
  line-height: 105%;
  color: var(--main-color);
}

.formato__title {
  margin: 3.5vw 0;
  font-family: var(--lato);
  font-size: var(--font-size-31);
  font-weight: var(--font-weight-black);
  line-height: 105%;
  color: var(--main-color);
}

.formato__subtitle {
  font-family: var(--lato);
  font-size: var(--font-size-23);
  font-weight: var(--font-weight-black);
  line-height: 105%;
  color: var(--main-color);
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.formato__description {
  font-family: var(--montserrat);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-regular);
  line-height: 170%;
  color: var(--white);
}

.formato__list {
  margin-bottom: 1.5vw;
  padding-inline-start: 0;
  font-family: var(--montserrat);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-regular);
  line-height: 170%;
  color: var(--white);
  list-style-type: none;
}
.formato__list li {
  margin-bottom: 0.75rem;
}
.formato__list a {
  color: var(--white);
}
.formato__list a:hover {
  color: var(--main-color);
}
.formato__list a::before {
  display: inline-block;
  content: url("../img/icon-chain.svg");
  width: 25px;
  height: 25px;
  margin-right: 10px;
  position: relative;
  top: 5px;
}
.formato__desktop .formato__list a::before {
  display: none;
}
.formato__desktop .formato__list a {
  text-decoration: underline;
}

.formato__last {
  padding: 1vh 0;
}

.section-formato--right {
  width: 100%;
  max-width: 675px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.formato__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2vw;
  margin-top: 3.6vw;
}

.formato__navlink {
  position: relative;
  text-decoration: none;
  color: white;
  padding: 0.45rem 0;
  display: block;
}

.formato__navlink::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--main-color);
  width: 2rem;
  height: 2rem;
  z-index: -1;
  filter: blur(5px);
  --webkit-filter: blur(5px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.formato__navlink:hover::before {
  opacity: 0.8;
}

.formato__navlink svg {
  transition: all 0.3s ease-in-out;
}

.formato__nav--next .formato__navlink:hover svg {
  transform: translateX(3px);
}

.formato__nav--prev .formato__navlink:hover svg {
  transform: translateX(-3px);
}

.formato__example {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin-top: 4vh;
}

.formato__example.table {
  flex-direction: column;
}

.formato__example.table .formato__subtitle {
  font-size: 2rem;
  line-height: 105%;
  margin-block-start: 0;
}

.formato__table {
  width: 100%;
  display: block;
  border-collapse: collapse;
  table-layout: fixed;
}
.formato__table tr {
  border-bottom: 1px solid var(--main-color);
}

.formato__table th {
  font-family: var(--lato);
  font-size: 1.5rem;
  font-weight: var(--font-weight-black);
  color: var(--main-color);
  text-align: left;
  padding: 0 0 0.8rem 0;
}

.formato__table td {
  font-family: var(--montserrat);
  font-size: var(--font-size-20);
  text-align: left;
  padding: 0.8rem 2rem 0.8rem 0;
}
.formato__table tr td:last-child {
  padding-right: 0;
}

.formato__example img {
  width: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
}

.formato__example img:last-child {
  position: relative;
}

.formato__example video {
  position: relative;
  top: 9px;
  left: 48.6%;
  transform: translateX(-50%);
  width: 97.4%;
}

/* Marco con mobile */
.formato__mobile {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin-top: 4vh;
}

.formato__mobile img {
  width: 37%;
  object-fit: contain;
  position: absolute;
  top: 0;
  overflow: hidden;
  left: 20%;
}
.formato__mobile img:last-child {
  position: relative;
  left: -10%;
}

.formato__mobile video {
  position: relative;
  top: 1vh;
  left: 4.7%;
  transform: translateX(-50%);
  width: 32.4%;
  border-radius: 25px;
}

/* ==========================================================================
Pagina contacto
========================================================================== */

#contacto-hero .section-hero__container {
  padding-bottom: 0;
}

#contacto-hero .section__subtitle--boxed {
  margin-bottom: 0;
  margin-left: 1vw;
}

.contacto__container {
  margin: 3vw auto 10vw;
  width: 100%;
  max-width: 1440px;
  padding: 0 1rem;
  display: flex;
  gap: 3vw;
}

.contacto__subtitle {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 4rem);
  font-weight: var(--font-weight-black);
  line-height: 100%;
  text-align: left;
  color: var(--main-color);
}

.contacto__title {
  margin: 0 0 3vw;
  font-size: clamp(2rem, 5vw, 7rem);
  font-weight: var(--font-weight-black);
  line-height: 100%;
  text-align: left;
  color: var(--white);
}

.section-contacto__text {
  margin-bottom: 3vw;
  margin-top: 0;
  font-family: var(--montserrat);
  font-size: var(--font-size-18);
  line-height: calc(var(--font-size-27));
}

.contacto__form {
  max-width: 750px;
}

.contacto__info-box {
  padding-left: 3vw;
  border-left: 1px solid var(--main-color);
}

.contacto__info h2 {
  color: var(--main-color);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-27);
  margin-top: 0;
}

.select-group {
  min-height: 70px;
}

/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/

.hidden,
[hidden] {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.faux-block {
  display: block;
}

.is--desktop {
  display: block;
}

.is--large {
  min-width: 35vw;
}

/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */

@media only screen and (min-width: 1681px) {
  #elmundo .section__destello {
    left: 14%;
  }

  #radio-marca .section__destello {
    left: 12%;
  }

  #expansion .section__destello {
    left: 11%;
  }

  #telva .section__destello {
    top: -26%;
    left: 13%;
  }

  #yodona .section__destello {
    left: 13%;
  }

  #especializada .section__destello {
    top: -30%;
    left: 11%;
  }

  #eventos .section__destello {
    top: -26vw;
    left: 17%;
  }

  #data.soluciones-section {
    background-position: 354px 83px;
  }
}

@media only screen and (min-width: 1441px) {
  .section-hero__destello {
    left: 21%;
  }

  #formatos-page .section-hero__destello {
    left: -2%;
    top: 15%;
  }

  .section-hero__video-container {
    max-width: 38vw;
  }

  .section-contenido__video-bg {
    max-width: 590px;
  }

  .section__destello.section-contenido__destello {
    top: -32%;
    left: 0;
  }

  .section__destello.section-data__destello {
    left: 0%;
    top: -32%;
  }

  .section__destello.section-soluciones__destello {
    top: 45px;
  }

  .section-soluciones__rotador {
    top: 38vw;
  }

  .section-soluciones__list {
    font-size: clamp(2.5rem, 6vw, 55px);
  }

  .section-soluciones__container {
    margin-bottom: -1vw;
  }

  #soluciones-page #eventos.soluciones-section {
    margin-top: 12vw;
  }

  .soluciones-section.carousel .carousel--item {
    min-height: 775px;
  }
}

@media only screen and (max-width: 1440px) {
  .section-hero__text {
    max-width: 50vw;
  }

  #eventos .section-hero__text {
    max-width: 40vw;
  }

  .soluciones-section__device {
    bottom: 38%;
  }

  .soluciones-section__video {
    bottom: 60%;
    width: 50vw;
  }

  .formato-page-main-container {
    justify-content: space-around;
  }
}

@media only screen and (max-width: 1440px) {
  .header__logo {
    width: auto;
    max-height: 5rem;
  }

  .scroll-marker {
    right: 2rem;
  }

  .section-hero__video-container {
    max-width: 51vw;
  }

  .section__destello {
    left: 19%;
  }

  .section__destello.section-contenido__destello,
  .section__destello.section-data__destello {
    left: 0%;
    top: -24%;
  }

  .section__destello.section-conectamos__destello {
    left: 0;
  }

  #eventos .section__destello {
    top: -44vw;
  }

  #data.soluciones-section {
    background-position: 106px 90px;
  }

  #formatos-hero .section__destello {
    top: 7%;
    left: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .section-hero__video-container {
    text-align: center;
    justify-content: flex-end;
    flex-direction: column;
  }

  .section-hero__video-logos {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 4rem;
  }

  .carousel--item figure {
    min-width: 250px;
  }
}

@media only screen and (max-width: 1023px) {
  .header {
    padding: 0 1rem;
    margin-top: 1rem;
  }

  .header__nav-bar {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  .header__logo {
    width: 100%;
    max-height: 5rem;
  }

  h1.section-hero__title {
    font-size: var(--font-size-190);
    margin-bottom: 1rem;
  }

  .section-hero__content {
    grid-template-columns: 6fr 6fr;
    grid-template-areas:
      "subtitle subtitle"
      "text image";
    justify-content: center;
    gap: 2rem;
  }

  .section-hero__video-container {
    text-align: center;
  }

  .section-hero__video-logos {
    position: initial;
    margin-top: 1rem;
    gap: 10rem;
  }

  section.section {
    padding: 0 4rem;
  }

  section#hero.section {
    padding: 0 2rem 20vw;
  }

  section#contenido.section,
  section#soluciones.section,
  section#data.section {
    margin-top: 20rem;
  }

  section#conectamos.section {
    padding-top: 20rem;
  }

  #start section#conectamos.section {
    padding-top: 10rem;
  }

  .countdown {
    width: 100%;
    flex-wrap: wrap;
    margin: 4rem auto;
  }

  .countdown-item {
    flex: auto;
    width: calc(50% - 2rem);
  }

  .countdown-item:nth-child(2)::after {
    display: none;
  }

  .section-contenido__container {
    margin-top: -102px;
  }

  h3.subtitle--main {
    top: 0;
    margin-bottom: 1rem;
  }

  .soluciones-section__device {
    bottom: 41%;
  }

  .section__destello.section-soluciones__destello {
    top: -307px;
  }

  .section-soluciones__rotador {
    top: 8vw;
  }

  .section-conectamos__container {
    padding-bottom: 20rem;
  }

  .section-conocenos__logo {
    display: none;
  }

  .section-conectamos__destello {
    top: 0;
  }

  /* MARCAS */
  #marcas-page .carousel--wrap {
    margin-top: 0;
  }

  #marcas-hero.section.section-hero,
  section.marcas-section {
    padding-bottom: 20rem;
  }

  .section__subtitle--boxed.marcas-section__subtitle--boxed {
    font-size: var(--font-size-23);
    letter-spacing: -1px;
  }

  .marcas-section__top-row {
    grid-template-columns: 6fr 6fr;
  }

  #marcas-page .carousel {
    bottom: 0;
  }

  #radio-marca .marcas-section__top-row::before {
    content: "";
    background: url(../img/airpod-l.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    z-index: 1;
    right: 26%;
    bottom: 79%;
    width: 22vw;
    height: 22vw;
  }

  #radio-marca .marcas-section__top-row::after {
    content: "";
    background: url(../img/airpod-r.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 0%;
    top: -23%;
    width: 26vw;
    height: 26vw;
    z-index: 2;
  }

  .especializada-title {
    top: -21vw;
  }

  #especializada .section__subtitle--boxed.marcas-section__subtitle--boxed {
    margin-bottom: 2vw;
  }

  .countdown {
    width: 100% !important;
    margin: 12vw auto !important;
    flex-wrap: wrap;
    row-gap: 3rem;
    justify-content: center;
  }

  .marcas-section.countdown {
    justify-content: center;
  }

  .countdown-item {
    flex: initial !important;
    padding: 0;
    width: calc(37% - 2rem);
  }

  #start .countdown-item,
  #marcas-page .countdown-item {
    width: calc(50% - 2rem);
  }

  .countdown-item:after {
    right: -1rem;
  }

  .countdown-item:nth-child(even):after {
    display: none;
  }

  .countdown-number {
    font-size: var(--font-size-90);
  }

  #especializada
    > div.marcas-section__container
    > div.marcas-section.countdown {
    justify-content: center;
  }

  #especializada
    > div.marcas-section__container
    > div.marcas-section.countdown
    > div
    > div.countdown-number {
    font-size: var(--font-size-190);
  }

  .marca__logo {
    width: 70%;
    align-self: center;
  }

  .countdown-text {
    font-size: var(--font-size-11);
  }

  /* SOLUCIONES */
  #soluciones-page section.soluciones-section {
    padding: 9rem 4rem;
  }

  .soluciones-section__content {
    flex-wrap: wrap;
  }

  #eventos .section-hero__text {
    max-width: 62vw;
  }

  .soluciones-section__video {
    width: 52vw;
    margin: 0 auto;
  }

  #eventos .section__destello {
    top: -85vw;
    left: 0;
  }

  .section__parallax img {
    max-width: 200px !important;
  }

  #soluciones-page .soluciones-section .section__parallax {
    top: -25vw;
  }

  .soluciones-section__blurbs {
    grid-template-columns: 1fr 1fr;
  }

  #data.soluciones-section {
    background-position: 0 417px;
  }

  .section__parallax {
    display: none;
  }

  /* FORMATOS */
  .formatos-activos__header {
    flex-direction: column;
  }
  .formatos-section.blurbs {
    justify-content: center;
  }
  .section-hero__formatos-img-container nav {
    display: none;
  }

  #formatos-page .formatos-carousel__item .formato__subtitle--boxed {
    bottom: -10px;
  }

  .formato-page-main-container {
    gap: 0vw;
    flex-direction: column-reverse;
  }

  .formatos-activos__container {
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-around;
  }

  .section-hero__formatos-img-container {
    flex-direction: column;
    overflow-x: hidden;
    padding-bottom: 32%;
  }

  #formatos-hero .section__destello {
    display: none;
  }

  .section-hero__formatos-img-container nav button.is--mobile {
    display: block !important;
  }

  .section-hero__formatos-img-container nav.is--desktop {
    display: none !important;
  }

  .formatos-contacto__container {
    padding: 0;
  }

  .form-group input,
  .form-group textarea {
    padding: 1rem;
  }

  .formato__description,
  .formato__list {
    font-size: var(--font-size-18);
    line-height: calc(var(--font-size-27));
  }

  .formato__img {
    max-width: 150px;
  }

  a.formato__back .formato__backlink::before {
    content: "‹";
    position: absolute;
    left: -0.6rem;
    top: 0;
    color: var(--white);
  }

  .formato__last {
    margin-top: 2rem;
  }

  #formato-page section.section {
    padding: 0;
  }

  .formatos-contacto__form {
    margin-top: 2rem;
  }

  .section-formato--right {
    position: relative;
  }

  .formato__example {
    min-height: 466px;
  }

  .formato__mobile {
    min-height: 555px;
  }

  .section-formato--left .header {
    display: none;
  }

  .section-formato--left {
    padding: 0 2rem;
    max-width: 1023px;
  }

  .section-formato--right {
    margin: 0 auto;
  }

  /* CONTACTO */
  .contacto__info-box {
    padding-left: 0;
    border-left: none;
  }

  .contacto__container {
    flex-direction: column;
    padding: 0;
  }

  /* FOOTER */
  .footer {
    max-width: 100vw;
  }

  .footer__container {
    flex-direction: column;
    padding: 3vw 1rem;
  }

  .footer__navigation-list {
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 0;
    justify-content: center;
  }

  .footer__navigation-list-item::before {
    display: none;
  }

  /* GENERIC */
  .select-group {
    min-height: 59px;
  }

  .select {
    max-width: 296px;
  }

  .select button {
    font-size: var(--font-size-23);
    padding: 1rem;
  }

  .select svg {
    width: 23px;
    height: 23px;
  }

  .select .checkboxes label {
    margin-bottom: 1.15rem;
  }
}

@media only screen and (min-width: 1023px) {
  .is--tablet {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .is--mobile {
    display: none !important;
  }

  .header__menu-close-btn {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  body.formato {
    overflow-x: hidden;
  }
  .header__nav-bar {
    padding: 1rem 0 0;
  }

  .header__menu-link {
    margin: 0.9rem 1vw;
  }

  section.section,
  .header {
    padding: 0 2rem;
  }

  .scroll-marker {
    display: none;
  }

  #hero .section__destello {
    display: none;
  }

  .section-hero__container {
    padding-top: 0;
  }

  .section-hero__content {
    row-gap: 0.5rem;
    margin-top: 1rem;
    grid-template-columns: 1fr;
    grid-template-areas:
      "subtitle"
      "image   "
      "text  ";
    justify-content: center;
  }

  .marcas-body .section-hero__content {
    grid-template-columns: 1fr;
  }

  .section-contacto__text {
    margin-bottom: 9vw;
  }

  .section__subtitle--boxed.marcas-section__subtitle--boxed {
    line-height: calc(var(--font-size-27));
    font-size: var(--font-size-18);
    padding: 0.1rem 0.8rem;
  }

  .section__text {
    font-size: var(--font-size-18);
    line-height: calc(var(--font-size-27));
    font-weight: 300;
  }

  #hero.section.section-hero {
    padding-bottom: 14vw;
  }

  .section__subtitle--boxed.marcas-section__subtitle--boxed {
    position: relative;
    display: block;
    margin: 1.4rem auto;
    letter-spacing: 0;
  }

  #marca
    > div.marcas-section__container
    > div.marcas-section__top-row
    > div
    > div:nth-child(2),
  #especializada
    > div.marcas-section__container
    > div.marcas-section__top-row
    > div
    > div:nth-child(1),
  #telva
    > div.marcas-section__container
    > div.marcas-section__top-row
    > div
    > div:nth-child(2) {
    margin-bottom: 0;
  }

  #marca
    > div.marcas-section__container
    > div.marcas-section__top-row
    > div
    > div:nth-child(3),
  #especializada
    > div.marcas-section__container
    > div.marcas-section__top-row
    > div
    > div:nth-child(2),
  #telva
    > div.marcas-section__container
    > div.marcas-section__top-row
    > div
    > div:nth-child(3) {
    margin-top: 3px;
  }

  #especializada .section__subtitle--boxed.marcas-section__subtitle--boxed {
    margin-bottom: 8vw;
  }

  .section-hero__text {
    grid-area: image;
    line-height: calc(var(--font-size-27));
  }

  .section-hero__text--page-hero {
    text-align: center;
  }

  #start .section-hero__text--page-hero {
    text-align: left;
  }

  .section-hero__title {
    font-size: var(--font-size-225);
  }

  #start .section-hero__title {
    margin-bottom: 0;
    font-size: var(--font-size-130);
  }

  .section__text.section__text--small {
    font-size: 8px;
    line-height: calc(var(--font-size-13));
  }

  h2.title {
    top: 0;
    font-size: 3.7rem;
  }

  h3.subtitle--main {
    top: 0;
    margin-bottom: 3vw;
  }

  .title:has(+ h3) {
    margin-bottom: 0vw;
  }

  button,
  .button {
    font-size: var(--font-size-23);
    font-weight: 400;
  }

  section.section-conectamos {
    overflow: visible;
    padding-bottom: 52vw;
  }

  .section.section-marcas {
    padding-bottom: 30vw;
  }

  .section-contenido__container {
    margin-top: -30px;
  }

  .section-hero__text {
    font-weight: var(--font-weight-light);
    font-size: var(--font-size-18);
  }

  #header,
  #formato-page .header {
    z-index: 4;
    margin-top: 0;
    width: 100vw;
    background: transparent;
  }

  #formato-page .header {
    width: 100%;
  }

  #header .burger,
  #formato-page .header .burger {
    position: fixed;
    top: 1rem;
    right: 1.3rem;
    border-radius: 0;
  }

  #formato-page .section__destello {
    bottom: -11vh;
    height: 0;
    padding-bottom: 100%;
    top: unset;
  }

  #header:has(.header__menu.is--open) {
    z-index: 9;
  }

  .header__nav-bar {
    flex-direction: row;
  }

  .header__logo {
    display: flex;
    justify-content: space-between;
  }
  .formato .header__logo {
    margin-left: 1rem;
  }

  .header__logo img {
    max-width: 130px;
    min-width: 130px;
  }

  button.burger {
    display: block;
    border: none;
    background-color: var(--main-bg-color);
    padding: 0.7rem;
  }

  .burger__line {
    display: block;
    width: 2rem;
    height: 3px;
    background: var(--white);
    margin: 9px 0;
    transition: all 0.3s ease-in-out;
  }

  .header__menu {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 100vw;
    z-index: 8;
    background: var(--main-color);
    transition: all 0.3s ease-in-out;
  }

  .header__menu.is--open {
    z-index: 11;
    transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
    -moz-transform: translateX(-100vw);
    -ms-transform: translateX(-100vw);
    -o-transform: translateX(-100vw);
  }

  .header__menu-close-btn {
    cursor: pointer;
    text-align: center;
  }

  .header__menu-close-btn svg {
    width: 3rem;
    height: 4rem;
  }

  .header__menu-list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 1rem 0 0;
  }

  .header__menu-item {
    width: 100%;
    text-align: center;
    padding: 0.5rem 2rem;
  }

  .header__menu-link {
    font-size: 1.5rem;
    font-family: var(--montserrat);
  }

  /* !!HEADER? */

  .is--desktop {
    display: none !important;
  }

  .is--mobile {
    display: block;
  }

  .section.section-data {
    padding-bottom: 20vw;
  }

  #data.section.section-data {
    margin-top: 0;
    padding-bottom: 45vw;
  }

  .section-data__rectangulos {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem 2rem;
  }

  .section-hero__video-container {
    max-width: 100% !important;
    grid-area: text;
    margin-top: 1.5rem;
  }

  .section-data__rectangulos .plus,
  .section-data__rectangulos .equal {
    width: 50px;
  }

  .section-data__rectangulos-item {
    width: 100%;
    height: 140px;
  }

  .section-data__rectangulos-item:nth-child(2)::before {
    left: calc(50% - 30px);
    top: -5rem;
  }

  section.section-contenido {
    padding-bottom: 65vw;
  }

  .section__destello.section-contenido__destello {
    top: -41%;
  }

  #marcas .section__destello.section-contenido__destello {
    top: -47%;
    z-index: -1;
  }

  #marcas
    > div.section-marcas__container
    > div:nth-child(1)
    > div
    > div.section__text.section-marcas__text {
    position: relative;
    z-index: 1;
  }

  .section__destello.section-data__destello {
    top: -44%;
  }

  .section__destello.section-soluciones__destello {
    top: -240px;
  }

  .section-soluciones__rotador {
    top: 21vw;
  }

  .section-soluciones__list {
    font-size: clamp(2rem, 7vw, 70px);
    padding-bottom: 2rem;
  }

  .section__destello.section-conectamos__destello {
    top: 5%;
  }

  #marcas-page .section__destello.section-conectamos__destello {
    top: 14%;
  }

  h3.section-conectamos__claim {
    font-size: var(--font-size-31);
  }

  .section-conocenos__logo {
    display: none;
  }

  .soluciones-section.carousel .carousel--item figure video,
  .soluciones-section.carousel .carousel--item figure img {
    filter: none;
    -webkit-filter: none;
  }

  .section-data__rectangulos-item:nth-child(2)::after {
    right: calc(50% - 30px);
    top: initial;
    bottom: -5.4rem;
  }

  section#contenido.section,
  section#soluciones.section {
    margin-top: 0;
  }

  #soluciones-page section#conectamos.section {
    padding-top: 12rem;
  }

  .section-conectamos__container {
    padding-bottom: 0;
  }

  #soluciones {
    padding-bottom: 30vw;
  }

  #soluciones .section__subtitle--boxed {
    margin-top: 1rem;
  }

  section.marcas-section,
  section.soluciones-section {
    padding-bottom: 52vw;
  }

  .marcas-section__top-row,
  #radio-marca .marcas-section__top-row,
  #expansion .marcas-section__top-row,
  #telva .marcas-section__top-row,
  #yodona .marcas-section__top-row,
  #fds .marcas-section__top-row,
  #especializada .marcas-section__top-row {
    grid-template-columns: 1fr;
  }

  .marca__logo {
    display: flex;
    justify-content: center;
  }

  .marca__logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
  }

  .marcas-section__top-row .marcas-section.countdown .countdown-text {
    font-size: var(--font-size-31);
    line-height: 100%;
  }

  #marcas-page .section-conocenos__logo {
    position: absolute;
    bottom: -20vw;
    left: calc(50% - 10vw);
    width: 100%;
    max-width: 20vw;
    z-index: 3;
  }

  #marcas-hero.section.section-hero {
    padding-bottom: 15vw;
  }

  .soluciones-section__content {
    position: relative;
  }

  .soluciones-section__content-number {
    opacity: 0.3;
    position: absolute;
    font-size: 58vw;
    right: -1rem;
    top: -7rem;
  }

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

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

  .section-hero__text.publicidad {
    margin-bottom: 0 !important;
  }

  .section-marcas__background {
    filter: none;
  }

  .section-hero__video-logos img {
    max-width: 90px;
  }

  #footer > div > div > img:nth-child(1) {
    max-width: 55px;
  }

  .footer__container {
    font-size: 0.65em;
  }

  /* MARCAS */
  #marcas-hero.section.section-hero {
    padding-top: 9vw;
  }

  #marcas-page .section-hero__title {
    font-size: 5rem;
  }

  .marcas-section__top-row-img {
    margin: 2.6rem 0 0;
  }

  .blurbs {
    margin-bottom: 13vw;
  }

  #marcas-page .section-hero__title {
    text-align: center;
    max-width: 100%;
    margin-bottom: 0;
  }

  #marcas-page .section-hero .section__subtitle--boxed.is-blue {
    margin: 0 auto 2vw;
  }

  #marcas-hero .section-hero__text {
    margin-top: 0;
  }

  .blurb__item:last-child {
    margin: 0 auto;
  }

  .section-marcas__suplementos {
    position: relative;
    left: -6vw;
    margin-top: 8vw;
  }

  .section-marcas__suplementos-text {
    font-size: clamp(47px, 16.371875vw, 40rem);
    top: 0;
  }

  .marcas-section__container,
  .soluciones-section__container {
    margin: 0 auto 2rem;
  }

  #elmundo .marcas-section__container,
  .soluciones-section__container,
  #expansion .marcas-section__container,
  .soluciones-section__container {
    margin: 0 auto;
  }

  main#marcas .pin-spacer {
    inset: 0px auto auto -6vw !important;
  }

  #elmundo .section__destello {
    top: -34%;
    left: 0;
  }

  #marca .section__destello {
    top: -8%;
    left: 0;
  }

  #radio-marca .marcas-section__top-row-img img {
    width: 160%;
    height: 160%;
    margin-left: -30%;
  }

  #radio-marca .section__destello {
    top: -17%;
    left: 0;
  }

  #expansion .section__destello {
    top: -31%;
    left: 0;
  }

  #telva .section__destello {
    top: -9%;
    left: 0;
  }

  #yodona .section__destello {
    top: -8%;
    left: 0;
  }

  #fds .section__destello {
    top: -10%;
    left: 0;
  }

  #especializada .section__destello {
    top: -21%;
    left: 0;
  }

  .top-row__logo-container {
    margin: 2vw auto;
  }

  .section-hero__text:not(.section-hero__text--page-hero),
  .section__text--small {
    text-align: center !important;
  }

  #radio-marca .marcas-section__top-row::before {
    right: 64%;
    bottom: 67%;
    width: 36vw;
    height: 36vw;
  }

  #radio-marca .marcas-section__top-row::after {
    right: 0%;
    top: 31%;
    width: 26vw;
    height: 26vw;
  }

  section#marca.marcas-section,
  section#telva.marcas-section,
  section#yodona.marcas-section,
  section#fds.marcas-section,
  section#especializada.marcas-section,
  section#radio-marca.marcas-section {
    padding-bottom: 27vw;
  }

  #elmundo .top-row__logo-container {
    width: 75%;
  }

  #marca .top-row__logo-container {
    width: 60%;
  }

  #fds .top-row__logo-container,
  #expansion .top-row__logo-container {
    width: 68%;
  }

  #telva .top-row__logo-container {
    width: 58%;
  }

  #yodona .top-row__logo-container {
    width: 38%;
  }

  section#fds.marcas-section {
    padding-bottom: 3vw;
  }

  .especializada-title {
    font-size: 5rem;
    position: relative;
    top: 2rem;
    left: 0;
  }

  .marca__container .countdown-number {
    font-size: var(--font-size-90);
  }

  /* SOLUCIONES */
  #soluciones-page {
    margin-top: 4vw;
  }

  #soluciones-page section-hero {
    padding-bottom: 0;
  }

  #soluciones-hero .section-hero__title {
    max-width: 100%;
  }

  #soluciones-hero .section-hero__text {
    margin-bottom: 0;
  }

  #soluciones-page .section-hero__title {
    text-align: center;
    margin: 0 auto;
  }

  #soluciones-page .section-hero .section__subtitle--boxed.is-blue {
    margin: 0 auto 2vw;
  }

  #publicidad .section__destello {
    top: -44%;
    left: 0;
    transform: translate3d(0px, 0px, 0px) rotate(229.672deg) scale(-2.7);
  }

  #soluciones-page .soluciones-section__content-number {
    font-size: var(--font-size-650);
    position: relative;
    opacity: 1;
    top: 0;
    right: initial;
    text-align: center;
    font-weight: 300;
  }

  #publicidad .soluciones-section__title.title {
    text-align: center;
    font-size: 3.5rem;
    margin: 4vw 0 2vw 0;
  }

  #publicidad .section__subtitle--boxed.marcas-section__subtitle--boxed {
    margin: 0 auto 1.8rem;
  }

  #rrss .countdown {
    display: none;
  }

  #eventos .countdown {
    display: none;
  }
  #eventos .soluciones-section.carousel .carousel--item figcaption h4 {
    font-size: 0.9rem;
  }

  .title {
    line-height: 100%;
  }

  .subtitle--main {
    line-height: 105%;
  }

  .espcializada__marcas-container {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  /* SOLUCIONES */
  .section__subtitle--boxed {
    line-height: calc(var(--font-size-27));
    font-size: var(--font-size-18);
    padding: 0.1rem 0.8rem;
  }

  #soluciones-page .carousel {
    /* overflow: hidden; */
  }

  #soluciones-page .carousel {
    margin: 3rem 0;
  }

  .soluciones-section.carousel .carousel--item {
    width: 100%;
  }

  #soluciones-page section.soluciones-section,
  #eventos__mobile {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0 2rem 40vw;
  }

  #soluciones-page section#rrss.soluciones-section {
    margin-top: 4rem;
  }

  #soluciones-page .section-hero__title {
    font-size: var(--font-size-190);
  }

  #soluciones-hero .section__subtitle--boxed {
    padding: 0.1rem 0.6rem !important;
  }

  #soluciones-hero .section-hero__content.section-hero__content--page-hero {
    margin-top: 1rem;
    min-width: 300px;
  }

  #publicidad .section__destello {
    top: 20vw;
    left: 0;
    transform: translate3d(0px, 0px, 0px) rotate(243.672deg) scale(-2) !important;
  }

  #publicidad .soluciones-section__title.title {
    transform: none !important;
    opacity: 1 !important;
  }

  #publicidad .marcas-section,
  .soluciones-section {
    padding-bottom: 0 !important;
  }

  #publicidad .pin-spacer {
    margin-top: 0 !important;
  }

  #branded .soluciones-section__title.title {
    text-align: center;
  }

  #branded .section__destello {
    top: 67vw;
    left: 0%;
    scale: 1.5 !important;
  }

  #branded .section__subtitle--boxed.marcas-section__subtitle--boxed {
    margin: 0 auto 1.8rem;
  }

  .section-hero__text.branded {
    margin-bottom: 7vw;
  }

  #branded figure {
    display: flex;
    justify-content: center;
  }

  #branded .soluciones-section__content-text > figure > img {
    max-width: 150px;
  }

  #branded .soluciones-section.carousel .carousel--item {
    width: 100%;
  }

  .soluciones-section.carousel .carousel--item figcaption {
    color: var(--white);
  }

  .soluciones-section.carousel .carousel--item,
  #eventos .soluciones-section.carousel .carousel--item {
    width: 100%;
    min-height: 210px;
  }

  #rrss .soluciones-section.carousel .carousel--item {
    min-height: 514px;
    width: 100%;
  }

  #eventos__mobile > div > div {
    zoom: 1.2;
  }

  #data.soluciones-section {
    background: none;
  }

  .soluciones-section__blurbs {
    grid-template-columns: 1fr;
  }

  .soluciones-section__data-roady {
    justify-content: center;
  }

  #rrss__mobile > div > div:nth-child(1),
  #start .countdown > div:nth-child(1) {
    zoom: 2.2;
  }
  #start .countdown > div:nth-child(1) {
    margin: 2rem 0;
  }

  #rrss {
    padding-top: 3rem !important;
  }

  #rrss .section__destello {
    top: 14vw;
    left: 0%;
    scale: 1.5 !important;
  }

  #rrss .soluciones-section__container {
    margin-bottom: 0 !important;
  }

  #rrss .soluciones-section__content-number.is--mobile::before {
    content: "";
    background: url(../img/heart3.png) no-repeat center center;
    background-size: auto;
    background-size: contain;
    position: absolute;
    right: 61%;
    bottom: 50%;
    width: 37vw;
    height: 37vw;
    z-index: 1;
  }

  #rrss .soluciones-section__content-number.is--mobile::after {
    content: "";
    background: url(../img/heart2.png) no-repeat center center;
    background-size: auto;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: -40%;
    width: 24vw;
    height: 24vw;
    z-index: 1;
  }

  #rrss .soluciones-section__title.title {
    text-align: center;
  }

  #rrss .section__subtitle--boxed.marcas-section__subtitle--boxed {
    margin: 0 auto 1.8rem;
  }

  #rrss__mobile {
    margin: 0 0 8rem;
  }

  #rrss__mobile .countdown-item:first-child,
  #start .countdown-item:first-child {
    width: 100%;
    max-width: 100%;
  }

  #rrss__mobile .countdown-item:first-child::after,
  #start .countdown-item:first-child {
    height: 0;
  }

  #rrss__mobile .countdown-item:nth-child(2)::after,
  #start .countdown-item:nth-child(2)::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: -1rem;
    height: 100%;
    width: 1px;
    text-transform: uppercase;
    background-color: var(--white);
    opacity: 0.4;
  }

  #rrss__mobile .countdown-item:nth-child(3)::after,
  #start .countdown-item:nth-child(3)::after {
    height: 0;
  }

  #rrss__mobile .countdown-item:nth-child(4)::after,
  #start .countdown-item:nth-child(4)::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: -1rem;
    height: 100%;
    width: 1px;
    text-transform: uppercase;
    background-color: var(--white);
    opacity: 0.4;
  }

  #eventos .soluciones-section__title.title {
    text-align: center;
  }

  #eventos .section__destello {
    top: 32vw;
    left: 2%;
    scale: 1.5 !important;
  }

  #eventos .section__subtitle--boxed.marcas-section__subtitle--boxed {
    margin: 0 auto 1.8rem;
  }

  #eventos__mobile .countdown {
    flex-direction: column;
    margin-top: 0 !important;
  }

  #eventos__mobile .countdown-item:first-child::after {
    height: 0;
  }

  #data {
    margin-top: 8rem;
  }

  #data .soluciones-section__title.title {
    text-align: center;
  }

  #data .section__subtitle--boxed.marcas-section__subtitle--boxed {
    margin: 0 auto 1.8rem;
    font-size: var(--font-size-14);
  }

  /* FORMATOS */
  #formatos-hero {
    padding: 0;
  }

  #formatos-hero .section-hero__container {
    padding: 0 2rem 2rem;
  }

  #formatos-hero .section-hero__content {
    justify-items: center;
  }

  #formatos-filtro span {
    font-size: var(--font-size-23);
  }

  #formatos-filtro svg {
    width: 25px;
    height: 25px;
  }

  .section-hero__formatos-img-container {
    margin: 0vw auto 0;
    overflow: hidden;
    padding-bottom: 0;
  }

  #formatos-page .formatos-carousel__item .formato__subtitle--boxed {
    background-color: var(--main-bg-color);
  }

  .formato__img {
    text-align: left;
  }

  .formato__footer p {
    text-align: center;
  }

  .formatos-contacto__title {
    font-size: 2.5rem;
  }

  .formatos-contacto__container {
    padding: 0;
  }

  .formatos-carousel {
    margin-bottom: 7rem;
  }

  .formatos-activos .formato__img img {
    height: 100%;
    max-height: 145px;
  }

  .formatos-contacto .form-group button {
    font-size: var(--font-size-23);
  }

  .form-group input,
  .form-group textarea {
    padding: 1rem;
  }

  .formato__backlink {
    font-size: 1.55rem;
  }

  /*   .formato__navlink svg { */
  /*     position: relative; */
  /*     right: -2.6vw; */
  /* } */

  .formato__name {
    font-size: 2.88rem;
    margin-top: 2rem;
    margin-left: 0.9rem;
  }

  .formato__section.formato__section--devices {
    gap: 2vw;
    flex-direction: column;
  }
  .formato__double,
  .formato__section.formato__section--devices {
    flex-direction: column;
  }

  .section-formato.section-formato--left {
    padding: 0 1rem;
    width: 100%;
    margin-top: 2rem;
  }

  .formato__example {
    min-height: 230px;
  }

  .formato__mobile {
    min-height: 260px;
  }

  .formato__mobile video {
    top: -1.2vh;
    width: 32.2%;
    border-radius: 10px;
  }
  .formato__example video {
    top: 0.6vh;
  }
}

@media only screen and (max-width: 500px) {
  .formato__example.table {
    padding-left: 0.9em;
    padding-right: 0.9em;
  }
  .formato__table {
    border: 0;
  }

  .formato__table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .formato__table tr {
    display: block;
  }

  .formato__table td {
    display: block;
  }

  .formato__table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
https://www.phpied.com/delay-loading-your-print-css/
========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
* Printing Tables:
* https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
*/
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
