/* FONTS */
@font-face {
  font-family: 'HelveticaNeueHairline';
  src: url('./../fonts/HelveticaNeueHairline.ttf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeueThin';
  src: url('./../fonts/HelveticaNeueThin.otf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeueLight';
  src: url('./../fonts/HelveticaNeueLight.otf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeueMedium';
  src: url('./../fonts/HelveticaNeueMedium.otf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeueBold';
  src: url('./../fonts/HelveticaNeueBold.otf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeueBlack';
  src: url('./../fonts/HelveticaNeueBlack.otf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeueHeavy';
  src: url('./../fonts/HelveticaNeueHeavy.otf') format('truetype');
}

/* COMMON */
:root {
  --font-primary-hairline: 'HelveticaNeueHairline', Arial, Helvetica, sans-serif;
  --font-primary-thin: 'HelveticaNeueThin', Arial, Helvetica, sans-serif;
  --font-primary: 'HelveticaNeueLight', Arial, Helvetica, sans-serif;
  --font-primary-medium: 'HelveticaNeueLight', Arial, Helvetica, sans-serif;
  --font-primary-bold: 'HelveticaNeueLight', Arial, Helvetica, sans-serif;
  --font-primary-black: 'HelveticaNeueBlack', Arial, Helvetica, sans-serif;
  --font-primary-heavy: 'HelveticaNeueHEavy', Arial, Helvetica, sans-serif;

  --color-text: #3A3A3A;
  --color-link: #3A3A3A;
  --color-link-hover: #3A3A3A;

  --color-primary: #3A3A3A;
  --color-primary-dark: #222222;
  --color-primary-light: #444444;

  --color-secondary: #0A0A0A;
  --color-secondary-dark: #0A0A0A;
  --color-secondary-light: #0A0A0A;

  --color-tertiary: #666666;
  --color-tertiary-dark: #333333;
  --color-tertiary-light: #999999;

  --padding-container-x: 120px;
  --padding-container-y: 120px;

  --max-width-container: 1350px;
}
@media (max-width: 1360px) {
  :root {
    --padding-container-x: 80px;
    --padding-container-y: 80px;
  }
}
@media (max-width: 992px) {
  :root {
    --padding-container-x: 40px;
    --padding-container-y: 60px;
  }
}
* {
  box-sizing: border-box;
  font-family: var(--font-primary);
  line-height: 1.6;
}
html, 
body {
  overflow-x: hidden;
}
p, ul, li, div, b, strong {
  color: var(--color-text);
}
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
strong, b {
  font-weight: 600;
  font-family: var(--font-primary-black);
}
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}
h1 {
  font-size: 46px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 28px;
}
p, li {
  font-size: 22px;
}
@media (max-width: 1200px) {
  p, li {
    font-size: 18px;
  }
}
figure {
  margin-bottom: 0px;
}
::selection {
  background-color: #d2f800;
  color: black;
}
img {
  width: 100%;
  height: auto;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section .title {
  font-family: var(--font-primary-hairline);
  font-size: 48px;
  font-weight: 200;
  line-height: 1.4;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .section .title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .home .section .title br,
  .patrocinadores .section .title br ,
  .contacto .section .title br {
    content: '';
    display: inline-block;
    line-height: 1.2;
    width: 8px;
  }
}
.section.dark {
  background-color: var(--color-secondary);
}
.section.light {
  background-color: white;
}
.container {
  max-width: 100%;
  padding: var(--padding-container-y) var(--padding-container-x);
}
.txt-container {
  max-width: 1360px;
  padding: var(--padding-container-y) var(--padding-container-x);
}
.container.narrow {
  max-width: var(--max-width-container);
}
.dark h2.title,
.dark .text,
.dark .text * {
  color: white;
}
.light h2.title,
.light .text {
  color: var(--color-primary);
}
.button,
.button-ficha {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 300;
  font-size: 20px;
  padding: 5px 14px 2px 14px;
  border-radius: 10px;
  background-size: 22px 23px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  transition: color 250ms ease-in-out, background 250ms ease-in-out;
}
.button::after,
.button-ficha::after {
  width: 22px;
  height: 26px;
  content: '';
  display: block;
  transition: background 250ms ease-in-out;
}
.button:hover,
.button-ficha:hover {
  transition: color 250ms ease-in-out, background 250ms ease-in-out;
}
.light .button:hover::after,
.button-ficha::after {
  transition: background 250ms ease-in-out;
}
.light .button,
.button-ficha {
  border: 1px solid black;
}
.light .button::after,
.button-ficha::after {
  background-image: url('./../images/icons/btn-arrow-black.svg');
}
.light .button:hover,
.button-ficha:hover {
  border: 1px solid black;
  background-color: black;
  color: white;
}
.light .button:hover::after,
.button-ficha:hover::after {
  background-image: url('./../images/icons/btn-arrow-white.svg');
}
.dark .button {
  border: 1px solid white;
  color: white;
}
.dark .button::after {
  background-image: url('./../images/icons/btn-arrow-white.svg');
}
.dark .button:hover {
  border: 1px solid white;
  background-color: white;
  color: black;
}
.dark .button:hover::after {
  background-image: url('./../images/icons/btn-arrow-black.svg');
}
.tint-k {
  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

/* TOP BAR */
.header-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-top-bar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 50px;
}
.header-top-bar .logo img {
  width: 100%;
  height: auto;
  max-width: 400px;
}
.header-top-bar .header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px; 
}
.header-top-bar .header-nav ul li a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 1200px) {
  .header-top-bar .logo img {
    max-width: 200px;
  }
  .header-top-bar .header-nav ul li a {
    font-size: 18px;
  }
}

/* HEADER */
.header-top-bar {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: var(--height-header-top-bar);
  z-index: 2;
  padding: 0 var(--padding-x-container);
}

.header-top-bar .header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-top-bar .header-logo img {
  width: 100%;
  max-width: 280px;
}

.header-nav ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 50px;
  height: 100%;
}

.header-nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-left: 0;
}

.header-nav li a:hover {
  color: var(--color-primary-light);
  transition: color 300ms ease-in-out;
}

.header-nav li a:active {
  color: var(--color-primary-light);
}

.header-nav li a {
  color: white;
  font-size: 16px;
  transition: color 300ms ease-in-out;
}

.nav-toggler-btn,
.nav-close-btn {
  display: none;
}

.backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
  backdrop-filter: blur(0px);
  opacity: 0;
  z-index: 1;
  transition: opacity 300ms ease-in-out;
}

@media (max-width: 1200px) {
  html.show-mobile-nav .backdrop {
    display: block;
    backdrop-filter: blur(3px);
    opacity: 1;
    transition: opacity 300ms ease-in-out;
  }

  html .header-nav {
    position: fixed;
    height: 100vh;
    right: -100%;
    top: 0;
    display: block;
    background-color: black;
    padding: 128px 0 0 0;
    transition: right 300ms ease-in-out;
  }

  html.show-mobile-nav .header-nav {
    right: 0;
    top: 0;
    transition: right 300ms ease-in-out;
    z-index: 99;
  }

  .header-top-bar {
    height: var(--height-header-top-bar);
    padding: 0 0 0 var(--padding-x-container);
  }

  .header-top-bar .header-logo img {
    width: 150px;
  }

  .header-top-bar .header-nav ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }

  .header-top-bar .header-nav ul li {
    display: block;
    width: 100%;
  }

  .header-top-bar .header-nav ul li a {
    display: block;
    color: white;
    padding: 24px 60px 24px 30px;
    font-size: 18px;
    background-image: none;
    font-weight: 100;
  }

  .nav-toggler-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    aspect-ratio: 1/1;
  }

  .nav-toggler-btn img {
    width: 26px;
  }

  .nav-close-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    height: 128px;
    position: absolute;
    padding: 0 var(--padding-container-x);
    top: 0;
    right: 0;
    aspect-ratio: 1/1;
    background-color: var(--color-primary);
  }

  .nav-close-btn img {
    width: 40px;
  }
}
/* HOME */
.home .header {
  height: 80vh;
  min-height: 900px;
  position: relative;
  overflow: hidden;
}
.home .header .bg {
  /*
  background-image: url('./../images/home/bg/home-bg.jpg');
  background-size: cover;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 100%;
  */
}
.home .header .owl-carousel,
.home .header .owl-carousel > div,
.home .header .owl-carousel > div > div,
.home .header .owl-carousel > div > div > div,
.home .header .owl-carousel > div > div > div > figure {
  height: 80vh;
  min-height: 900px;
}
.home .header .owl-carousel > div > div > div > figure > img {
  height: 100%;
  aspect-ratio: 16 / 9;
  position: absolute;
  object-fit: cover;
}
.home .header .owl-carousel .owl-dots,
.home .header .owl-carousel .owl-nav {
  display: none;
}
.home .header .bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.home .header .lang {
  position: absolute;
  display: flex;
  right: calc(500px + 80px);
  /* El primer valor es el mismo que el width de .header-form-container */
  color: var(--color-secondary);
  top: 3%;
  gap: 8px;
}
.home .header .lang a,
.home .header .lang span {
  font-size: 24px;
}
.home .header .lang a.selected {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .home .header .lang {
    top: 7%;
    right: 7%;
  }
}
.home .header .header-logo-mobile {
  position: absolute;
  left: var(--padding-container-x);
  display: none;
  top: 50px;
}

.home .header .header-logo-mobile img {
  width: 100%;
  max-width: 180px;
}
.home .header .info {
  position: absolute;
  left: var(--padding-container-x);
  top: calc(50vh);
  width: 100%;
  max-width: calc(100vw - 500px - 15%);
  z-index: 1;
}
.home .header .tit {
  font-family: var(--font-primary-thin);
  color: white;
  letter-spacing: 3px;
}
.home .header .tit strong {
  color: white;
}
.home .header .header-link {
  position: absolute;
  right: var(--padding-container-x);
  bottom: 100px;
  font-weight: 100;
  color: white;
  font-size: 50px;
  line-height: 1.2;
  background-image: url('./../images/icons/home-link-arrows.svg');
  background-repeat: no-repeat;
  background-position: bottom 17px right;
  background-size: 56px;
  letter-spacing: 2px;
  z-index: 1;
}
.home .header .header-link * {
  color: white;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .home .header .header-bg {
    position: relative;
  }
  #header .info {
    max-width: calc(100% - 10%);
  }
  .home .header .form-container {
    position: relative;
    width: 100%;
    right: unset;
  }
}
@media (max-width: 992px) {
  .home .header .header-logo-mobile {
    display: block;
  }
  .home .header .info {
    top: unset;
    bottom: 160px;
  }
  .home .header .tit {
    font-size: 26px;
  }
  .home .header .header-link {
    font-size: 26px;
    right: unset;
    bottom: 60px;
    left: var(--padding-container-x);
    background-size: 32px;
    background-position: bottom 5px right;
  }
}

/* COMMON */
.future-logo-bg {
  background-image: url('./../images/home/bg/home-description-bg.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.main-header .title {
  position: absolute;
  bottom: 50px;
  left: var(--padding-container-x);
  color: white;
  z-index: 1;
}
.main-header .title * {
  color: white;
}
@media (max-width: 992px) {
  .main-header .title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .main-header .title {
    font-size: 26px;
  }
}

/* HOME DESCRIPTION */
.home .home-description {
  text-align: center;
}

/* COMMON EVENTS */
.events .event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.events .event-list-container {
  display: flex;
  justify-content: center;
}
.events .event-list .event-item {
  text-align: center;
}
.events .event-list .event-item.disabled > a {
  pointer-events: none;
}
.events .event-list .event-item.disabled .event-signup {
  display: none;
}
.events .event-list .event-item .event-img {
  margin-bottom: 40px;
  opacity: .8;
  transition: opacity 250ms ease-in-out;
}
.events .event-list .event-item .event-tit {
  font-size: 48px;
  font-family: var(--font-primary-thin);
  margin-bottom: 10px;
}
.events .event-list .event-item .event-guest {
  margin-bottom: 10px;
}
.events .event-list .event-item .event-date {
  font-size: 32px;
  margin-bottom: 10px;
}
.events .event-list .event-item:hover .event-signup {
  border: 1px solid black;
  background-color: black;
  color: white;
  /*
  background-image: url('./../images/icons/btn-arrow-white.svg');
  */
  transition: color 250ms ease-in-out, background 250ms ease-in-out;
}
.events .event-list .event-item:hover .event-signup::after {
  background-image: url('./../images/icons/btn-arrow-white.svg');
}
.events .event-list .event-item:hover .event-img {
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
@media (max-width: 1200px) {
  .events .event-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .events .event-list .event-item {
    background-color: black;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .events .event-list .event-item .event-img,
    .events .event-list .event-item:hover .event-img {
    opacity: .4;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .events .event-list .event-item .event-info {
    width: 100%;
    height: 100%;
    color: white;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .events .event-list .event-item .event-info * {
    color: white;
  }
  .events .event-list .event-item .event-tit {
    font-size: 32px;
    padding: 0 20px;
  }
  .events .event-list .event-item .event-date {
    font-size: 24px;
  }
  .events .event-list .event-item .event-signup {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    transition: color 250ms ease-in-out, background 250ms ease-in-out;
  }
  .events .event-list .event-item .event-signup::after {
    background-image: url('./../images/icons/btn-arrow-white.svg');
  }
}
/* NEXT EVENTS */
.events .next-events-list {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .events .event-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* HOME JOIN */
.home .home-join {
  background-image: url('./../images/home/bg/home-join-bg.jpg');
  background-position: center;
  background-size: cover;
  height: 100vh;
  min-height: 500px;
  position: relative;
}
@media (max-width: 768px) {
  .home .home-join {
    height: 500px;
  }
}
.home .home-join .join-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.home .home-join .join-info .title,
.home .home-join .join-info .title strong {
  color: white;
}
.home .home-join .join-info .tit-img {
  width: 240px;
}
@media (max-width: 1200px) {
  .home .home-join .join-info .tit-img {
      width: 160px;
    }
}
/* HOME EFEMÉRIDES */
.efemerides-list .home-efemeride-num {
  font-family: var(--font-primary-black);
  font-weight: 600;
}
.efemerides-list .owl-item img {
  padding: 0 40px 0 0;
}
.efemerides-list .owl-dots {
  display: none;
}
.efemerides-list .owl-item img {
  object-fit: cover;
}
.efemerides-list .home-efemeride-data {
  font-size: 42px;
}
.efemerides-list .efemeride.disabled a {
  pointer-events: none;
}
.efemerides-list .efemeride.disabled .button {
  display: none;
}
@media (max-width: 992px) {
  .efemerides-list .home-efemeride-data {
    font-size: 28px;
  }
  .efemerides-list .owl-item img {
    padding: 0;
  }
}

/* COMMON PAGES */
.main-header {
  height: 500px;
  position: relative;
}
.main-header .bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
}
.main-header .bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .0);
}
.main-header.short .bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
}

/* COMMON SECTION VERTICAL */
.section.vertical {
  display: flex;
  position: relative;
  align-items: stretch;
}
.section.vertical > * {
  width: 50%;
  flex-basis: 50%;
  flex-grow: 0;
  flex-shrink: 0;
}
.section.vertical .info {
  padding-top: 150px;
  padding-bottom: 150px;
}
.section.vertical.info-left .info {
  padding-left: 150px;
}
.section.vertical.info-right .info {
  padding-right: 150px;
}
.section.vertical .image-container {
  display: flex;
  align-items: stretch;
  padding: 100px;
}
.section.vertical .image-container .image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1200px) {
  .section.vertical .info {
    padding-top: var(--padding-container-y);
    padding-bottom: var(--padding-container-y);
  }
  .section.vertical.info-left .info {
    padding-left: var(--padding-container-x)
  }
  .section.vertical.info-right .info {
    padding-right: var(--padding-container-x)
  }
  .section.vertical .image-container {
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}
@media (max-width: 768px) {
  .section.vertical {
    display: flex;
    flex-direction: column;
  }
  .section.vertical.info-right {
    flex-direction: column-reverse;
  }
  .section.vertical > * {
    width: 100%;
    flex-basis: 100%;
  }
  .section.vertical .image-container {
    padding: 0;
  }
  .section.vertical .image-container .image {
    aspect-ratio: 1 / 1;
  }
  .section.vertical .info {
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}

/* FUTURE */
.future .main-header .bg {
  background-image: url('./../images/pages/future/header.jpg');
}
.future .future-description {
  text-align: center;
}
.future .future-article-01 .image {
  background-image: url('./../images/pages/future/article-01.jpg');
}
.future .future-article-02 .image {
  background-image: url('./../images/pages/future/article-02.jpg');
}

/* EVENTOS */
.eventos .main-header .bg {
  background-image: url('./../images/pages/eventos/header.jpg');
}
.eventos .title {
  font-weight: 100;
  color: white;
  font-size: 50px;
  line-height: 1.2;
}
.eventos .title-arrow {
  background-image: url('./../images/icons/home-link-arrows-k.svg');
  background-repeat: no-repeat;
  background-size: 56px;
  background-position: left 116px bottom 27px;
}
@media (max-width: 1200px) {
  .eventos .title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .eventos .title-arrow {
    background-size: 30px;
    background-position: left 66px bottom 17px;
  }
}

/* EVENTO AMPLIADO */


/* PATROCINADORES */
.patrocinadores .main-header .bg {
  background-image: url('./../images/pages/patrocinadores/header.jpg');
}
.patrocinadores .patrocinadores-description {
  text-align: center;
}
.patrocinadores .logos-list .line {
  display: grid;
  justify-items: center;
  gap: 30px;
}
.patrocinadores .logos-list .line-top {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 30px;
}
.patrocinadores .logos-list .line-bottom {
  grid-template-columns: repeat(4, 1fr);
}
.patrocinadores .logos-list .logo {
  max-width: 260px;
}
@media (max-width: 768px) {
  .patrocinadores .logos-list .line-top {
    grid-template-columns: repeat(1, 1fr);
  }
  .patrocinadores .logos-list .line-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.patrocinadores .patrocinadores-form .info {
  padding-top: 80px;
}
@media (max-width: 992px) {
  .patrocinadores-form {
    display: block!important;
    padding: var(--padding-container-y) var(--padding-container-x)!important;
  }
  .patrocinadores-form > *,
  .patrocinadores-form .form-container {
    width: 100%!important;
    padding: 0px!important;
  }
}

/* NOTICIAS */
.noticias .main-header {
  overflow: hidden;
}
.noticias .owl-carousel {
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .noticias .owl-carousel {
    top: unset;
    transform: unset;
  }
  .noticias .main-header {
    height: auto;
  }
}
.noticias .main-header .bg {
  position: relative;
}
.noticias .main-header .owl-carousel .owl-dots,
.noticias .main-header .owl-carousel .owl-nav {
  display: none;
}
/* NOTICIAS LIST */
.news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.news .news-list .news-item {
  text-align: center;
}
.news .news-list .news-item.disabled a {
  pointer-events: none;
}
.news .news-list .news-item.disabled .news-signup {
  display: none;
}
.news .news-list .news-item .news-img {
  margin-bottom: 40px;
  opacity: .8;
  transition: opacity 250ms ease-in-out;
}
.news .news-list .news-item .news-tit {
  font-size: 32px;
  font-family: var(--font-primary-thin);
  margin-bottom: 30px;
}
.news .news-list .news-item .news-guest {
  margin-bottom: 10px;
}
.news .news-list .news-item .news-date {
  font-size: 21px;
  text-align: left;
  margin-bottom: 10px;
}
.news .news-list .news-item .news-date.date-bottom {
  display: none;
}
.news .news-list .news-item:hover .news-signup {
  border: 1px solid black;
  background-color: black;
  color: white;
  transition: color 250ms ease-in-out, background 250ms ease-in-out;
}
.news .news-list .news-item:hover .news-signup::after {
  background-image: url('./../images/icons/btn-arrow-white.svg');
  transition: color 250ms ease-in-out, background 250ms ease-in-out;
}
.news .news-list .news-item:hover .news-img {
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
@media (max-width: 1200px) {
  .news .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .news .news-list .news-item {
    background-color: black;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .news .news-list .news-item .news-img,
  .news .news-list .news-item:hover .news-img {
    opacity: .4;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .news .news-list .news-item .news-info {
    width: 100%;
    height: 100%;
    color: white;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .news .news-list .news-item .news-info * {
    color: white;
  }
  .news .news-list .news-item .news-tit {
    font-size: 24px;
    padding: 0 20px;
  }
  .news .news-list .news-item .news-date {
    font-size: 24px;
  }
  .news .news-list .news-item .news-date.date-top {
    display: none;
  }
  .news .news-list .news-item .news-date.date-bottom {
    display: inherit;
  }
  .news .news-list .news-item .news-signup {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    transition: color 250ms ease-in-out, background 250ms ease-in-out;
  }
  .news .news-list .news-item .news-signup::after {
    background-image: url('./../images/icons/btn-arrow-white.svg');
    transition: background 250ms ease-in-out;
  }
}
@media (max-width: 768px) {
  .news .news-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* NOTICIA AMPLIADA */
.noticia-ampliada .noticia-ampliada-date {
  margin-bottom: 20px;
}
.noticia-ampliada .noticia-ampliada-content .noticia-ampliada-content-leadin,
.noticia-ampliada .noticia-ampliada-content .noticia-ampliada-content-leadin * {
  font-size: 26px;
  font-weight: 600;
}
.noticia-ampliada .noticia-ampliada-content .noticia-ampliada-content-text,
.noticia-ampliada .noticia-ampliada-content .noticia-ampliada-content-text * {
  font-size: 20px;
}
.noticia-ampliada .noticia-ampliada-content .noticia-ampliada-content-text img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* CONTACTO */
.contacto .main-header .bg {
  background-image: url('./../images/pages/contacto/header.jpg');
}
.contacto .contacto-form .info {
  padding-top: 80px;
}
@media (max-width: 992px) {
  .contacto-form {
    display: block !important;
    padding: var(--padding-container-y) var(--padding-container-x) !important;
  }
  .contacto-form > *,
  .contacto-form .form-container {
    width: 100% !important;
    padding: 0px !important;
  }
}


/* FICHA PROVISIONAL */
.ficha .header {
  height: calc(100vh - 150px);
  min-height: 800px;
  position: relative;
}
.ficha .header .bg {
  background-size: cover;
  background-position: left center;
  position: absolute;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .ficha .header {
    height: auto;
    min-height: 400px;
  }
}
.ficha .ficha-header-info {
  position: absolute;
  height: 100%;
  right: var(--padding-container-x);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 100px 0;
}
.ficha .ficha-header-info-data .data-location {
  font-size: 68px;
  font-family: var(--font-primary-black);
  line-height: 1;
}
.ficha .ficha-header-info-data .data-date {
  font-size: 60px;
  font-family: var(--font-primary-thin);
  line-height: 1;
}
.ficha .ficha-header-info-data .data-place {
  font-size: 36px;
  font-variant: var(--font-primary-thin);
  line-height: 1;
}
.ficha .ficha-header-info-guest .data-guest {
  font-variant: var(--font-primary-thin);
  font-size: 36px;
  line-height: 1;
}
.ficha .ficha-header-info-guest .data-guest strong {
  font-size: 68px;
  font-family: var(--font-primary-black);  
  line-height: 1;
}
@media (max-width: 1200px) {
  .ficha .ficha-header-info {
    padding: 50px 0;
  }
  .ficha .ficha-header-info-data .data-location {
    font-size: 48px;
  }
  .ficha .ficha-header-info-data .data-date {
    font-size: 40px;
  }
  .ficha .ficha-header-info-data .data-place {
    font-size: 30px;
  }
  .ficha .ficha-header-info-guest .data-guest {
    font-size: 30px;
  }
  .ficha .ficha-header-info-guest .data-guest strong {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .ficha .ficha-header-info {
    padding: 50px 0;
  }
  .ficha .ficha-header-info-data .data-location {
    font-size: 38px;
  }
  .ficha .ficha-header-info-data .data-date {
    font-size: 30px;
  }
  .ficha .ficha-header-info-data .data-place {
    font-size: 24px;
  }
  .ficha .ficha-header-info-guest .data-guest {
    font-size: 26px;
  }
  .ficha .ficha-header-info-guest .data-guest strong {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .ficha .ficha-header-info {
    right: unset;
    left: var(--padding-container-x);
    padding-top: 120px;
    padding-bottom: 0;
  }
  .ficha .ficha-header-info-data .data-location {
    font-size: 32px;
  }
  .ficha .ficha-header-info-data .data-date {
    font-size: 26px;
  }
  .ficha .ficha-header-info-data .data-place {
    font-size: 20px;
  }
  .ficha .ficha-header-info-guest .data-guest {
    font-size: 22px;
  }
  .ficha .ficha-header-info-guest .data-guest strong {
    font-size: 26px;
  }
}
.ficha .ficha-logos {
  background-color: black;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 992px) {
  .ficha .ficha-logos {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ficha .ficha-logos .ficha-logo {
    width: 25%;
  }
}
.ficha-contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ficha-contact .info-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ficha-contact .info-container .info {
  max-width: 600px;
  padding: 60px;
}
.ficha-contact .info-container .info .title {
  font-family: var(--font-primary-thin);
  font-size: 48px;
  margin-bottom: 40px;
}
.ficha-contact .info-container .info .txt {
  font-size: 28px;
  line-height: 1.4;
}.form-container {
  padding: 80px var(--padding-container-x) 80px 0;
}

@media (max-width: 992px) {
  .ficha-contact .form-container {
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}

@media (max-width: 1200px) {
  .ficha-contact {
    height: auto;
  }

  .ficha-contact .bg {
    position: relative;
  }

  .ficha-contact .info-container .info .title {
    font-size: 32px;
  }

  .ficha-contact .info-container .info .txt {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .ficha-contact {
    display: flex;
    flex-direction: column;
  }

  .ficha-contact .info-container .info {
    max-width: 100%;
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}

/* FICHA */
.ficha-header {
  height: calc(100vh);
  min-height: 1000px;
  position: relative;
}
.ficha-header.bg {
  background-size: cover;
  background-position: left center;
  position: absolute;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .ficha-header {
    height: auto;
    min-height: 400px;
  }
}
.ficha-header .ficha-header-info {
  position: absolute;
  height: 100%;
  right: var(--padding-container-x);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 100px 0;
}
.ficha-header .ficha-header-info * {
  color: white;
}
.ficha-header .ficha-header-info-data .data-location {
  font-size: 68px;
  font-family: var(--font-primary-black);
  line-height: 1;
}
.ficha-header .ficha-header-info-data .data-date {
  font-size: 60px;
  font-family: var(--font-primary-thin);
  line-height: 1;
}
.ficha-header .ficha-header-info-data .data-place {
  font-size: 36px;
  font-variant: var(--font-primary-thin);
  line-height: 1;
}
.ficha-header .ficha-header-info-guest .data-guest {
  font-variant: var(--font-primary-thin);
  font-size: 36px;
  line-height: 1;
}
.ficha-header .ficha-header-info-guest .data-guest strong {
  font-size: 68px;
  font-family: var(--font-primary-black);
  line-height: 1;
}
@media (max-width: 1200px) {
  .ficha-header.ficha-header-info {
    padding: 50px 0;
  }
  .ficha-header .ficha-header-info-data .data-location {
    font-size: 48px;
  }
  .ficha-header .ficha-header-info-data .data-date {
    font-size: 40px;
  }
  .ficha-header .ficha-header-info-data .data-place {
    font-size: 30px;
  }
  .ficha-header .ficha-header-info-guest .data-guest {
    font-size: 30px;
  }
  .ficha-header .ficha-header-info-guest .data-guest strong {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .ficha-header .ficha-header-info {
    padding: 50px 0;
  }
  .ficha-header .ficha-header-info-data .data-location {
    font-size: 38px;
  }
  .ficha-header .ficha-header-info-data .data-date {
    font-size: 30px;
  }
  .ficha-header .ficha-header-info-data .data-place {
    font-size: 24px;
  }
  .ficha-header .ficha-header-info-guest .data-guest {
    font-size: 26px;
  }
  .ficha-header .ficha-header-info-guest .data-guest strong {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .ficha-header .ficha-header-info {
    text-align: right;
    padding-top: 120px;
    padding-bottom: 0;
  }
  .ficha-header .ficha-header-info-data .data-location {
    font-size: 32px;
  }
  .ficha-header .ficha-header-info-data .data-date {
    font-size: 26px;
  }
  .ficha-header .ficha-header-info-data .data-place {
    font-size: 20px;
  }
  .ficha-header .ficha-header-info-guest .data-guest {
    font-size: 22px;
  }
  .ficha-header .ficha-header-info-guest .data-guest strong {
    font-size: 26px;
  }
}
.ficha-main .ficha-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 20px;
}
@media (max-width: 992px) {
  .ficha-main .ficha-logos {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ficha-main .ficha-logos a {
    width: 25%;
  }
}
.ficha-main .ficha-contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ficha-main .ficha-contact .info-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ficha-main .ficha-contact .info-container .info {
  max-width: 600px;
  padding: 60px;
}
.ficha-main .ficha-contact .info-container .info .title {
  font-family: var(--font-primary-thin);
  font-size: 48px;
  margin-bottom: 40px;
}
.ficha-main .ficha-contact .info-container .info .txt {
  font-size: 28px;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .ficha-main .ficha-contact .form-container {
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}
@media (max-width: 1200px) {
  .ficha-main .ficha-contact {
    height: auto;
  }
    .ficha-main .ficha-contact .bg {
    position: relative;
  }
    .ficha-main .ficha-contact .info-container .info .title {
    font-size: 32px;
  }
    .ficha-main .ficha-contact .info-container .info .txt {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .ficha-main .ficha-contact {
    display: flex;
    flex-direction: column;
  }
  .ficha-main .ficha-contact .info-container .info {
    max-width: 100%;
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}

/* FICHA PAST */
.ficha-past .ficha-past-info {
  text-align: center;
}
.ficha-past .ficha-past-info .ficha-past-info-title,
.ficha-past .ficha-past-video .ficha-past-video-title,
.ficha-past .ficha-past-gallery .ficha-past-gallery-title {
  font-size: 56px;
}
.ficha-past .ficha-past-info .ficha-past-info-title {
  margin-bottom: 80px;
}
.ficha-past .ficha-past-video video {
  width: 100%;
}
.ficha-past .ficha-past-video .container,
.ficha-past .ficha-past-gallery .container {
  padding-bottom: 50px;
}
.ficha-past .ficha-past-gallery .owl-nav {
  display: none;
}
.ficha-past .ficha-past-gallery .owl-dots {
  text-align: center;
  transform: translateY(-70px);
  position: absolute;
  width: 100%;
  z-index: 10;
}
.ficha-past .ficha-past-gallery .owl-dots .owl-dot {
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .5);
  margin: 0 5px;
  transition: background 300ms ease-in-out;
}
.ficha-past .ficha-past-gallery .owl-dots .owl-dot.active {
  background-color: rgba(255, 255, 255, .8);
  transition: background 300ms ease-in-out;
}
.ficha-past .ficha-past-gallery .owl-dots .owl-dot:hover {
  background-color: rgba(255, 255, 255, 1);
  transition: background 300ms ease-in-out;
}
@media (max-width: 1200px) {
  .ficha-past .ficha-past-info .ficha-past-info-title,
  .ficha-past .ficha-past-video .ficha-past-video-title,
  .ficha-past .ficha-past-gallery .ficha-past-gallery-title {
    font-size: 28px;
  }
  .ficha-past .ficha-past-info .ficha-past-info-title {
    margin-bottom: 40px;
  }
  .ficha-past .ficha-past-video .container,
  .ficha-past .ficha-past-gallery .container {
    padding-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .ficha-past .ficha-past-gallery .owl-dots {
    display: none;
  }
}

/* COMMON FORM CONTAINER */
.form-container {
  padding: 80px var(--padding-container-x) 80px 0;
}

/* FOOTER */
.footer {
  background-color: var(--color-primary-dark);
  color: white;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px var(--padding-container-x) 50px;
}
.footer .footer-logo {
  max-width: 240px;
}
.footer .footer-legal {
  padding: 10px var(--padding-container-x);
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer .footer-legal * {
  color: white;
}
.footer .footer-legal a {
  cursor: pointer;
  color: white;
}
@media (max-width: 992px) {
  .footer .footer-legal {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
}

/* FORM */
.form .inputs {
  display: grid;
  grid-template-areas: "nombre nombre" "empresa cargo" "email telefono" "mensaje mensaje";
  gap: 20px 20px;
}
@media (max-width: 992px) {
  .form .inputs {
    grid-template-areas: "nombre" "empresa" "cargo" "email" "telefono" "mensaje";
  }  
}
.form.formulario-vigo .inputs {
  grid-template-areas: "nombre apellidos" "empresa empresa" "perfil perfil" "email telefono" "pais cp" "mensaje mensaje";
}
@media (max-width: 992px) {
  .form.formulario-vigo .inputs {
    grid-template-areas: "nombre" "apellidos" "empresa" "perfil" "email" "telefono" "pais" "cp" "mensaje";
  }  
}
.form .box-nombre { grid-area: nombre; }
.form .box-apellidos { grid-area: apellidos; }
.form .box-empresa { grid-area: empresa; }
.form .box-perfil { grid-area: perfil; }
.form .box-cargo { grid-area: cargo; }
.form .box-email { grid-area: email; }
.form .box-telefono { grid-area: telefono; }
.form .box-pais { grid-area: pais; }
.form .box-cp { grid-area: cp; }
.form .box-mensaje { grid-area: mensaje; }
.form .input-box {
  margin-bottom: 18px;
}
.form .input-box input,
.form .input-box textarea,
.form .input-box select {
  background-color: white;
  border: 0;
  border-radius: 0px;
  font-size: 16px;
  padding: 10px 18px;
  width: 100%;
  border-bottom: 1px solid #272727!important;
}
.form .input-box textarea {
  resize: none;
}
.form .input-box input::placeholder,
.form .input-box textarea::placeholder {
  font-size: 16px;
}
.form .input-box input:focus {
  border: 0;
  outline: 2px solid var(--black);
}
.form .checkbox {
  display: flex;
  margin-bottom: 8px;
}
.form .checkbox input[type='checkbox'] {
  appearance: none;
  background-color: transparent;
  border: 1px solid black;
  height: 1em;
  width: 1em;
  cursor: pointer;
  place-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form .checkbox input[type='checkbox']::before {
  content: '';
  display: block;
  box-shadow: inset 1em black;
  height: 8px;
  width: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: black;
}
.form .checkbox input[type='checkbox']:checked::before {
  transform: scale(1);
}
.form .checkbox span {
  font-size: 12px;
  margin-left: 6px;
}
.form-container .submits {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .form-container .submits {
    flex-direction: column;
    gap: 20px;
  }
}
.form-container .submit input {
  background-color: black;
  border: 1px solid black;
  color: white;
  padding-right: 40px;
  background-image: url('./../images/icons/btn-arrow-white.svg');
}
.form-container .submit input:hover {
  background-color: white;
  border: 1px solid black;
  color: black;
  background-image: url('./../images/icons/btn-arrow-black.svg');
}
@media (max-width: 1200px) {
  .form-container .submit input {
    padding: 10px 40px 6px 20px;
  }
}

/* FICHA FORM ENCUESTAS */
.form-encuesta h2,
.form-encuesta h2 strong {
  text-align: center;
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}
.header-form .ficha-header-info {
  right: unset;
  left: var(--padding-container-x);
  top: 25%;
  display: block;
  max-width: calc(100% - 520px - 300px);
}
.header-form .ficha-header-info .ficha-header-info-data {
  margin-bottom: 100px;
}
.header-form .ficha-header-info .ficha-header-info-data  .data-date {
  font-size: 56px;
}
.header-form .ficha-header .ficha-header-info-guest .data-guest {
  line-height: 1.4;
}
.header-form .ficha-header-info-guest .data-guest strong {
  font-size: inherit!important;
}
.ficha-header-form {
  position: absolute;
  display: flex;
  align-items: center;
  right: var(--padding-container-x);
  height: 100%;
}
.form-encuesta {
  background-color: rgba(255, 255, 255, .1);
  padding: 40px;
  border-radius: 20px;
}
.form-encuesta .inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.form-encuesta .inputs .input-box {
  margin-bottom: 0px;
}
.form-encuesta .inputs input {
  display: none;
}
.form-encuesta .inputs label {
  background-color: rgba(255, 255, 255, .7);
  width: 100%;
  border-radius: 10px;
  text-align: center;
  padding: 10px 100px;
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}
.form-encuesta .inputs input:checked + label {
  background-color: rgba(255, 255, 255, 1);
  color: black;
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}
.form-encuesta .submits input {
  display: block;
  width: 100%;
  padding: 10px 15px 5px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
  border: 0;
  border-radius: 5px;
  font-family: var(--font-primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .header-form .ficha-header-info {
    max-width: 400px;
  }
}
@media (max-width: 992px) {
  .header-form .ficha-header-info .ficha-header-info-data .data-date {
    font-size: 28px;
  }
  .header-form .ficha-header-info .ficha-header-info-data {
    margin-bottom: 20px;
  }
  .header-form .ficha-header-info {
    position: relative;
    max-width: 100%;
  }
  .ficha-header-form {
    position: relative;
    left: 0;
    display: block;
    width: 100%;
  }
  .header-form.bg {
    position: relative;
    padding-top: 120px;
  }
  .header-form .ficha-header-info {
    text-align: left;
    left: 0;
    padding: 20px 20px 40px;
  }
}

/* TODO */

@keyframes title__fade {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.title__fade {
  animation: title__fade 500ms ease-out;
  animation-delay: 600ms;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .logo img {
    width: 170px;
  }
}
/* ***********************************************************************
* PÁGINA DE COMPROBANTE
* ************************************************************************/
#comprobante {
  align-items: center;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  padding: 0 40px;
}
#comprobante img {
  max-width: 340px;
  height: auto;
  margin-bottom: 100px;
}
#comprobante h1 {
  color: black;
  padding: 24px 0;
  text-align: center;
  font-size: 64px;
  font-family: var(--font-primary-thin);
  width: 600px;
}
#comprobante p {
  color: #1c1b1a;
  font-size: 20px;
  text-align: center;
  width: 520px;
}
#comprobante h4 {
  border-bottom: 2px solid rgb(28, 27, 26);
  color: rgb(28, 27, 26);
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 16px;
  padding-bottom: 8px;
  padding-top: 24px;
  text-decoration-color: transparent;
}
#comprobante a {
  color: rgb(34, 34, 34);
  text-decoration: none;
}
@media (max-width: 992px) {
  #comprobante {
    padding: 0;
  }
  #comprobante h1,
  #comprobante p {
    width: 100%;
  }
  #comprobante h1 {
    font-size: 24px;
  }
  #comprobante p {
    font-size: 18px;
  }
}
/* ***********************************************************************
* MODAL DE POLÍTICA DE PRIVACIDAD
* ************************************************************************/
#informacion .modal-header h5 {
  color: #333333;
  font-family: 'Roboto-Bold';
  font-size: 1rem;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
}

#informacion .modal-content {
  -webkit-box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
}

#informacion .modal-body p,
#informacion ul li {
  color: #222222;
  font-family: 'Roboto-Regular';
  font-size: 0.9rem;
  line-height: normal;
  text-align: left;
  width: 100%;
}
