:root {
  --primary: #A7212E;
  --secondary: #CF4F4F;
  --tertiaary: #ED6E6E;
  --cuaternary: #961E29;
  --quinary: #7D1923;
  --senary: #ff8d8d;
  --septenary: #eaf2eb;
  --octanary: #f8fbf9;
  --nonary: #f5dcdc;
  --denary: #fdfefd;
  --undenary: #dceadf;
  --duodenary: #b0b6b0;
  --black: #332e2f;
}

::selection {
  background: var(--septenary);
  color: var(--black);
}

input[type="search"], input[type=text], input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus, button:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: none;
}

.copyright .rombhus {
  font-style: italic;
  color: var(--black);
  font-family: cursive;
  font-family: "Times New Roman", Times, serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

input[type="checkbox"]:checked + label, input[type="radio"]:checked + label {
  color: var(--primary);
}

input[type="radio"]:checked {
  accent-color: var(--primary);
  background: transparent;
}

input[type="checkbox"]:checked {
  accent-color: var(--primary);
  background: transparent;
}

/* Input con validación */

input:valid {
  border-bottom: 2px solid green;
}

input:invalid {
  border-bottom: 2px solid red;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.1em;
  font-family: acumin-pro-condensed, sans-serif;
  background: var(--octanary);
  letter-spacing: .5px;
  line-height: normal;
}

body.scroll-blocked {
  overflow: hidden;
}

/* Animation */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes blur {
  to {
    filter: blur(0px);
  }
}

.blur {
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: blur 0.4s linear forwards;
  animation-delay: .2s;
  filter: blur(5px);
}

/* Bootstrap */

hr {
  border-color: var(--duodenary);
}

.link-light {
  color: var(--denary) !important;
  text-decoration: none;
  transition: .3s ease;
}

.link-light:hover {
  color: var(--senary) !important;
}

.link-white {
  color: var(--denary) !important;
  text-decoration: none;
  transition: .3s ease;
}

.link-white:hover {
  color: var(--nonary) !important;
}

.link-red {
  color: var(--senary) !important;
  transition: .3s ease;
}

.link-red:hover {
  color: var(--secondary) !important;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  border-color: transparent !important;
}

/* WordPress */

/* Fancybox */

.fancybox-is-open .fancybox-bg {
  background: rgba(211 218 212 / 90%) !important;
  backdrop-filter: saturate(180%) blur(8px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(8px) !important;
  opacity: 1;
}

.fancybox-progress {
  background: var(--tertiaary) !important;
  height: 5px;
}

.fancybox-infobar {
  color: rgba(255,255,255,.8) !important;
}

.fancybox-button {
  background-color: var(--duodenary) !important;
  color: var(--black) !important;
  transition: .3s ease;
}

.fancybox-button:hover {
  background-color: var(--undenary) !important;
}

.fancybox-thumbs {
  background: var(--duodenary);
}

.fancybox-thumbs__list a::before {
  border: 6px solid var(--undenary) !important;
}

.fancybox-infobar {
  color: var(--primary) !important;
  mix-blend-mode: inherit;
  font-size: 1.1em;
  font-family: 'Anton';
}

.fancybox-caption {
  background: transparent;
}

.fancybox-navigation .fancybox-button {
  width: 50px;
  height: 50px;
}

.fancybox-button--arrow_left, .fancybox-button--arrow_right {
  padding: inherit !important;
}

.fancybox-caption__body {
  color: var(--black);
}

/* Swiper */

.swiper {
  overflow: hidden;
  /*opacity: 0;*/
  /*transition: opacity 0.4s ease;*/
}

.swiper.swiper-initialized {
  visibility: visible;
  opacity: 1;
}

.swiper-wrapper {
  width: 100%;
  transition-timing-function: ease-in-out !important;
}

#brands .swiper-slide {
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
}

.swiper-button-disabled {
  pointer-events: none;
  color: var(--septenary) !important;
}

.swiper-pagination-bullet {
  border-radius: 0;
  margin: 0 !important;
  width: 30px;
  height: 5px;
  background: var(--secondary);
}

.swiper-pagination {
  bottom: 0px !important;
}

#slider-videos {
  position: relative;
}

#brands, #brands .swiper-wrapper, #brands .swiper-slide {
  overflow: visible !important;
}

#brands {
  perspective: 1200px;
}

#brands .swiper-slide {
  width: 80%;
  transition: transform 0.6s ease;
  will-change: transform;
}

@media (min-width: 768px) {
  #brands .swiper-slide {
    width: 360px;
  }
}

@media (min-width: 1400px) {
  #brands .swiper-slide {
    width: 420px;
  }
}

#brands.swiper .swiper-buttons {
  width: 50%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0 0 0 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Framework */

#header {
  border-bottom: solid 3px var(--octanary);
  z-index: 3;
}

#header.active {
  border-bottom: solid 3px white;
}

.aspect-16-9 {
  position: relative;
}

.aspect-16-9 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  transition: .3s ease;
}

.aspect-16-11 {
  position: relative;
}

.aspect-16-11 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: .3s ease;
}

.aspect-9-16 {
  position: relative;
}

.aspect-9-16 img {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: .3s ease;
}

.aspect-4-4 {
  position: relative;
  width: 100%;
}

.aspect-4-4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  transition: .3s ease;
}

.aspect-3-4 {
  position: relative;
  width: 100%;
}

.aspect-3-4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: .3s ease;
}

.picture img {
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: blur 0.4s linear forwards;
  animation-delay: .2s;
  filter: blur(5px);
}

.article .picture img {
  border: solid 1px #f6f6f6;
  border-radius: 5px;
}

.sticky {
  z-index: 2;
}

.sticky-ads, .sticky-share {
  z-index: 2;
  top: 120px;
}

.fnt-anton {
  font-family: 'Anton';
  font-style: normal;
  line-height: normal;
}

.fnt-acumin {
  font-family: acumin-pro-condensed, sans-serif;
  font-style: normal;
  line-height: normal;
}

.fnt-acumin-condensed {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-style: normal;
  line-height: normal;
}

.fnt-black {
  color: var(--black);
}

.fnt-red {
  color: var(--primary);
}

.fnt-dark-green {
  color: var(--duodenary);
}

.fnt-gray {
  color: gray;
}

.fnt-xs {
  font-size: 14px;
}

.fnt-md {
  font-size: 18px;
}

.fnt-lg {
  font-size: 22px;
}

.fnt-xxl {
  font-size: 3em;
}

.fnt-404 {
  font-size: 7em;
}

@media (min-width: 992px) {
  .fnt-404 {
    font-size: 10em;
  }
}

.title-primary h1 {
  font-size: 1.8em;
}

@media (min-width: 992px) {
  .title-primary h1 {
    font-size: 2.1em;
  }
}

@media (min-width: 1400px) {
  .title-primary h1 {
    font-size: 2.2em;
  }
}

.title-primary h2 {
  font-size: 1.3em;
}

@media (min-width: 768px) {
  .title-primary h2 {
    font-size: 1.3em;
  }
}

@media (min-width: 992px) {
  .title-primary h2 {
    font-size: 1.3em;
  }
}

@media (min-width: 1400px) {
  .title-primary h2 {
    font-size: 1.6em;
  }
}

.title-primary h3 {
  font-size: 1.2em;
}

@media (min-width: 992px) {
  .title-primary h3 {
    font-size: 1.3em;
  }
}

.title-secondary h2 {
}

.title-secondary h3 {
  font-size: .9em;
  margin: 0;
}

@media (min-width: 576px) {
  .title-secondary h3 {
    font-size: .9em;
  }
}

@media (min-width: 1200px) {
  .title-secondary h3 {
    font-size: 1em;
  }
}

@media (min-width: 1400px) {
  .title-secondary h3 {
    font-size: 1.1em;
  }
}

.link-black {
  color: var(--black);
  text-decoration: none;
  transition: .3s ease;
}

.link-black:hover {
  color: var(--primary);
}

.bg-red {
  background: var(--primary);
}

.bg-green {
  background: var(--septenary);
}

.bg-dark-green {
  background: var(--undenary);
}

.bg-light-green {
  background: var(--octanary);
}

.bg-light-red {
  background: #FCF3ED;
}

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

.category a {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  font-size: 1em;
  letter-spacing: 1px;
  transition: .3s ease;
  white-space: nowrap;
}

.category a:hover {
  color: var(--tertiaary);
}

.category a::after {
  content: ' ';
  width: 14px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  right: -20px;
  top: calc(50% - 2px);
}

.category a::before {
  content: ' ';
  width: 14px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: -20px;
  top: calc(50% - 2px);
}

.category-primary a {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  font-size: 1em;
  letter-spacing: 1px;
  transition: .3s ease;
  white-space: nowrap;
  padding-left: 20px;
}

.category-primary a:hover {
  color: var(--tertiaary);
}

.category-primary a:before {
  content: "";
  width: 5px;
  height: 90%;
  position: absolute;
  left: 0;
  border-left: solid 5px var(--cuaternary);
  border-right: solid 5px var(--tertiaary);
}

.category-secondary a {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  font-size: 1em;
  letter-spacing: 1px;
  transition: .3s ease;
  white-space: nowrap;
  padding-left: 22px;
}

.category-secondary a:hover {
  color: var(--tertiaary);
}

.category-secondary a:before {
  content: "";
  width: 15px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}

.category-tertiary a {
  background: var(--secondary);
  padding: 3px 10px;
  border-radius: 3px;
  color: white;
  text-decoration: none;
  transition: .3s;
}

.category-tertiary a:hover {
  background: var(--tertiaary);
}

.title-section {
  position: relative;
}

.title-section a {
  color: var(--black);
  transition: .3s ease;
  text-decoration: none;
}

.title-section a:hover {
  color: var(--tertiaary);
}

.title-section h2, .title-section h1 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  font-size: 2.5em;
  letter-spacing: 1px;
  transition: .3s ease;
  padding-left: 40px;
  margin-bottom: 0;
  line-height: 100%;
}

@media (min-width: 768px) {
  .title-section h2, .title-section h1 {
    font-size: 2.7em;
  }
}

@media (min-width: 1200px) {
  .title-section h2, .title-section h1 {
    font-size: 3em;
  }
}

.title-section h3 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  font-size: 2.5em;
  letter-spacing: 1px;
  transition: .3s ease;
  padding-left: 40px;
  margin-bottom: 0;
  line-height: 100%;
}

.title-section a:before, .title-section h3:before, .title-section h2:before, .title-section h1:before {
  content: "";
  width: 10px;
  height: 80%;
  position: absolute;
  top: calc(50% - 40%);
  left: 0;
  border-left: solid 10px var(--cuaternary);
  border-right: solid 10px var(--tertiaary);
}

.title-section-center {
  display: flex;
  justify-content: center;
}

.title-section-center {
  position: relative;
}

.title-section-center a {
  color: var(--black);
  text-decoration: none;
  transition: .3s ease;
  margin: 0;
}

.title-section-center a:hover {
  color: var(--tertiaary);
}

.title-section-center h2, .title-section-center h1 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  font-size: 2.5em;
  letter-spacing: 1px;
  transition: .3s ease;
  text-align: center;
  white-space: pre-wrap;
}

@media (min-width: 768px) {
  .title-section-center h2, .title-section-center h1 {
    font-size: 2.7em;
  }
}

@media (min-width: 1200px) {
  .title-section-center h2, .title-section-center h1 {
    font-size: 3em;
  }
}

.title-section-center a::after, .title-section-center h2::after, .title-section-center h1::after {
  content: ' ';
  width: 30px;
  height: 8px;
  background: var(--primary);
  position: absolute;
  right: -40px;
  top: calc(50% - 8px);
}

@media (min-width: 768px) {
  .title-section-center a::after, .title-section-center h2::after, .title-section-center h1::after {
    width: 50px;
    right: -60px;
  }
}

.title-section-center a::before, .title-section-center h2::before, .title-section-center h1::before {
  content: ' ';
  width: 30px;
  height: 8px;
  background: var(--primary);
  position: absolute;
  left: -40px;
  top: calc(50% - 8px);
}

@media (min-width: 768px) {
  .title-section-center a::before, .title-section-center h2::before, .title-section-center h1::before {
    width: 50px;
    left: -60px;
  }
}

.title-section-center h3 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  font-size: 2em;
  letter-spacing: 1px;
  transition: .3s ease;
  text-align: center;
}

.title-section-center h3:after {
  content: ' ';
  width: 30px;
  height: 6px;
  background: var(--primary);
  position: absolute;
  right: -40px;
  top: calc(50% - 3px);
}

.title-section-center h3:before {
  content: ' ';
  width: 30px;
  height: 6px;
  background: var(--primary);
  position: absolute;
  left: -40px;
  top: calc(50% - 3px);
}

.title-left h1 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  font-size: 2em;
  letter-spacing: 1px;
  transition: .3s ease;
  padding-left: 40px;
  line-height: 110%;
}

@media (min-width: 768px) {
  .title-left h1 {
    font-size: 2.2em;
  }
}

@media (min-width: 1200px) {
  .title-left h1 {
    font-size: 2.5em;
  }
}

.title-left h1:hover {
  color: var(--tertiaary);
}

.title-left h1:before {
  content: "";
  width: 25px;
  height: 6px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
}

.title-left a {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  font-size: 1em;
  letter-spacing: 1px;
  transition: .3s ease;
  white-space: nowrap;
  padding-left: 22px;
}

.title-left a:hover {
  color: var(--tertiaary);
}

.title-left a:before {
  content: "";
  width: 15px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}

.rounded-basic {
  border-radius: 5px;
  overflow: hidden;
}

.rounded-responsive {
  overflow: hidden;
  border-radius: 0;
}

@media (min-width: 768px) {
  .rounded-responsive {
    border-radius: 5px;
  }
}

.border-down {
  border-bottom: solid 3px white;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 1200px) {
  .scrolling-wrapper {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.scrolling-wrapper-sm {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 768px) {
  .scrolling-wrapper-sm {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper-sm > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper-sm::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper-sm::-webkit-scrollbar-track {
  background: transparent;
}

.grid-3-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  max-width: 1320px;
}

@media (min-width: 768px) {
  .grid-3-col {
    gap: 0px;
  }
}

@media (min-width: 1400px) {
  .grid-3-col {
    gap: 50px;
  }
}

.grid-3-col .grid-col {
  min-width: 320px;
  padding-left: 12px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .grid-3-col .grid-col {
    min-width: 420px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .grid-3-col .grid-col {
    min-width: 390px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1400px) {
  .grid-3-col .grid-col {
    min-width: 406.6px;
    padding-left: 0;
    padding-right: 0;
  }
}

.grid-4-col {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1320px;
}

@media (min-width: 1200px) {
  .grid-4-col {
    gap: 50px;
  }
}

.grid-4-col .grid-col {
  min-width: 286.5px;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 1200px) {
  .grid-4-col .grid-col {
    min-width: 260.5px;
  }
}

@media (min-width: 1400px) {
  .grid-4-col .grid-col {
    min-width: 286.5px;
  }
}

.more a {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.more a:hover {
  color: var(--tertiaary);
}

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

.gradient {
  position: relative;
}

.gradient:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(21, 44, 60);
  background: linear-gradient(180deg, rgba(21 44 60 / 0%) 0%, rgba(21 44 60 / 90%) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-md {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .mb-md {
    margin-bottom: 100px;
  }
}

.w-90 {
  width: 90%;
  margin: auto;
}

/* Styles */

#brand {
  padding: 10px 0;
  transition: padding 0.3s ease;
  min-height: 70px;
}

@media (min-width: 992px) {
  #brand {
    padding: 20px 0;
  }
}

#brand.active {
  padding: 5px 0;
}

@media (min-width: 992px) {
  #brand.active {
    padding: 10px 0;
  }
}

#brand .img-desktop {
  width: 380px;
  height: 92px;
  transition: width 0.4s ease, height 0.3s ease;
  display: block;
  margin: 0 auto;
}

#brand.active .img-desktop {
  width: 250px;
  height: 70px;
}

#brand .img-mobile {
  width: 90px;
  height: 72px;
  transition: width 0.4s ease, height 0.3s ease;
  display: block;
  margin: 0 auto;
}

#brand.active .img-mobile {
  width: 70px;
  height: 60px;
}

/* Nav */

.navigation {
  border-bottom: solid 3px white;
}

.btn-nav {
  font-weight: 600;
  color: var(--primary);
  font-size: 1em;
  transition: .3s ease;
  cursor: pointer;
}

.btn-nav:hover {
  color: var(--tertiaary);
}

html.open {
  height: 100vh;
  overflow: hidden;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  overflow: hidden auto;
  width: 90%;
  padding: 15px 30px;
  z-index: 9;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.6s ease-in-out;
}

@media (min-width: 768px) {
  #navigation {
    width: 650px;
    padding: 30px 60px;
  }
}

#navigation.open {
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s ease-in-out;
  transition-timing-function: ease, ease;
}

#navigation .transition {
  opacity: 0;
  visibility: hidden;
  transition: .6s ease-in-out;
  transition-delay: 0.6s;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

#navigation.open .transition {
  opacity: 1;
  visibility: visible;
}

#blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(211 218 212 / 90%);
  z-index: 8;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
}

#blocker.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}

.transition {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.mix-blend {
  mix-blend-mode: color-burn;
}

.multiply img {
  mix-blend-mode: darken;
}

/* Top menu */

.bar-submenu {
  position: relative;
}

.bar-submenu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.bar-submenu ul li a {
  display: flex;
  position: relative;
  margin: 0 10px;
  padding: 5px 0;
  text-decoration: none;
  transition: .3s;
  color: white;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 500;
  align-items: center;
}

.bar-submenu ul li:last-child a {
  margin-right: 0;
}

.bar-submenu ul li a:hover {
  color: var(--senary);
}

.bar-submenu ul li ul {
  display: none;
}

.bar-submenu ul li a:hover + ul {
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

.bar-submenu ul li a:hover + ul, .bar-submenu ul li ul:hover {
  display: flex;
  position: absolute;
  background: var(--primary);
  flex-direction: column;
  border-radius: 0 0 5px 5px;
}

.bar-submenu .menu-item {
  position: relative;
  background-color: transparent;
  white-space: nowrap;
  margin: 0;
}

.bar-submenu .menu-item svg {
  width: 24px;
  height: 24px;
}

.bar-submenu .menu-item .sub-menu {
  padding: 52px 20px;
  box-shadow: 0px 2px 10px rgba(0 0 0 / 10%);
  border-radius: 5px;
}

.bar-submenu .menu-item-has-children::before {
  content: "›";
  position: absolute;
  top: 3px;
  left: 0px;
  color: var(--senary);
  cursor: pointer;
  width: 10px;
  height: 10px;
}

.bar-submenu .menu-item .sub-menu a {
  font-weight: normal;
  padding: 5px;
}

.bar-submenu .menu-item.active a {
  color: var(--tertiaary);
}

.bar-submenu .menu-item-has-children ul li a {
  padding: 3px 6px;
}

#bar {
  padding: 0 10px;
  border-radius: 0 0 10px 10px;
}

/* menu mobile */

.menu-mobile ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-mobile ul li a {
  display: flex;
  width: 100%;
  height: 45px;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  align-items: center;
  justify-content: start;
  padding: 0;
  background: transparent;
  transition: .3s ease;
  font-size: 1.1em;
}

.menu-mobile ul li a:hover {
  color: var(--tertiaary);
}

.menu-mobile ul li ul {
  display: none;
}

.menu-mobile .sub-menu li a {
  padding: 0 0 0 10px;
  height: 30px;
}

.menu-mobile ul li a:hover + ul, .menu-mobile ul li ul:hover {
  display: none;
  position: relative;
}

.menu-mobile .menu-item-has-children {
  position: relative;
}

.menu-mobile .menu-item-has-children::before {
  content: "›";
  position: absolute;
  top: 6px;
  left: -15px;
  width: 10px;
  height: 10px;
  font-size: 20px;
  color: var(--primary);
}

.author-date {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  color: gray;
}

.author-date.light {
  color: white;
}

.author-date.center .author, .author-date.center .date {
  padding: 0 10px;
}

.author a {
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: .3s ease;
}

.author a:hover {
  color: var(--tertiaary);
}

.author-date.light a {
  color: var(--tertiaary);
}

.author-date.light a:hover {
  color: var(--senary);
}

/* Menu Desktop */

.menu-desktop ul {
  display: flex;
  justify-content: left;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 9;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  transition: .3s ease;
}

.menu-desktop ul::-webkit-scrollbar {
  height: 0px;
}

.menu-desktop ul::-webkit-scrollbar-thumb {
  background: transparent;
}

@media (min-width: 992px) {
  .menu-desktop ul {
    justify-content: center;
    overflow-x: inherit;
  }
}

.menu-desktop {
  position: relative;
}

.menu-desktop::before {
  content: " ";
  display: block;
  position: absolute;
  background: linear-gradient(90deg, rgba(248 251 249 / 0%) 0%, rgba(248 251 249 / 100%) 100%);
  width: 50px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

@media (min-width: 992px) {
  .menu-desktop::before {
    width: 100px;
  }
}

.menu-desktop ul li ul {
  display: none;
}

.menu-desktop ul li a {
  display: flex;
  position: relative;
  margin: 0;
  padding: 5px 0;
  text-decoration: none;
  transition: .3s;
  width: 100%;
  color: var(--black);
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .5px;
  display: flex;
  justify-content: center;
  transition: .3s ease;
}

@media (min-width: 992px) {
  .menu-desktop ul li a {
    font-size: .9em;
    padding: 7px 0;
  }
}

@media (min-width: 1200px) {
  .menu-desktop ul li a {
    font-size: 1.1em;
    padding: 10px 0;
  }
}

.menu-desktop ul li a:hover {
  color: var(--tertiaary);
  text-decoration: none;
}

.menu-desktop ul li a:hover + ul {
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

@media (min-width: 992px) {
  .menu-desktop ul li a:hover + ul {
    animation-name: fadeInUp;
  }
}

.menu-desktop ul li a:hover + ul, .menu-desktop ul li ul:hover {
  display: flex;
  position: relative;
}

@media (min-width: 992px) {
  .menu-desktop ul li a:hover + ul, .menu-desktop ul li ul:hover {
    position: absolute;
    flex-direction: column;
    background: var(--octanary);
    padding: 5px 10px;
    top: 35px;
    border-radius: 5px;
    box-shadow: 0px 1px 6px rgba(0 0 0 / 3%);
  }
}

.menu-desktop .menu-item {
  position: relative;
  background-color: transparent;
  white-space: nowrap;
  margin: 0;
  padding: 0 7px;
  transition: .3s ease;
}

.menu-desktop .menu-item .sub-menu a {
  padding: 2px 5px;
  font-size: 1em;
  justify-content: start;
}

.menu-desktop .menu-item.active a {
  color: var(--secondary);
}

.menu-desktop .menu-item-has-children {
  margin-left: 8px;
}

.menu-desktop .menu-item-has-children::before {
  content: "›";
  position: absolute;
  top: 7px;
  color: var(--primary);
  left: -6px;
  cursor: pointer;
  width: 15px;
  height: 15px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .menu-desktop .menu-item-has-children::before {
    font-size: 20px;
    top: 10px;
  }
}

@media (min-width: 1200px) {
  .menu-desktop .menu-item-has-children::before {
    font-size: 20px;
    top: 12px;
  }
}

/* menu secondary */

.menu-secondary ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-secondary ul li a {
  display: flex;
  width: 100%;
  color: var(--black);
  text-decoration: none;
  align-items: center;
  justify-content: start;
  padding: 0;
  transition: .3s ease;
  font-size: 1.1em;
  text-transform: uppercase;
  font-weight: bold;
}

.menu-secondary ul li a:hover {
  color: var(--tertiaary);
}

/* menu footer */

.menu-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-footer ul li a {
  display: flex;
  width: 100%;
  height: 30px;
  color: var(--primary);
  text-decoration: none;
  align-items: center;
  justify-content: start;
  padding: 0;
  transition: .3s ease;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: bold;
}

.menu-footer.align ul li a {
  justify-content: center;
  margin: 0;
}

@media (min-width: 768px) {
  .menu-footer.align ul li a {
    margin: 0 10px;
  }
}

@media (min-width: 992px) {
  .menu-footer.align ul li a {
    justify-content: start;
    margin: 0;
  }
}

.menu-footer ul li a:hover {
  color: var(--senary);
}

.menu-footer.align ul {
  flex-direction: column;
}

@media (min-width: 768px) {
  .menu-footer.align ul {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .menu-footer.align ul {
    flex-direction: column;
  }
}

/* search */

#search > * {
  margin: auto;
}

#search {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9997;
  transition: .5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#search.open {
  opacity: 1;
  visibility: visible;
}

#search .efect {
  height: 100%;
  padding: 0;
  overflow: auto;
}

@media (min-width: 768px) {
  #search .efect {
    height: 100%;
    padding: 30px 60px 30px 60px;
  }
}

#search .efect {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding: 30px 0;
}

#search.open .efect {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.4s;
}

/* social news */
.btn_social_news a {
  display: block;
  padding: 0px 20px;
  background: #f9f9f9;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: gray;
  text-decoration: none;
  transition: .3s;
  line-height: normal;
  font-size: 16px;
  font-family: helvetica;
  box-shadow: 0 3px 9px rgba(0 0 0 / 10%);
}

.btn_social_news a:hover {
  background: #f5f5f5;
}

/* Forms */

.forms input {
  background: transparent;
  border: none;
  height: 45px;
  width: 100%;
}

.forms .field {
  margin-bottom: 20px;
}

.forms .radio, .forms .checkbox {
  width: 14px;
  height: 14px;
  border: none;
  background: transparent;
  margin-bottom: 30px;
}

.forms button {
  background: transparent;
  border: none;
  color: var(--black);
}

.forms label {
  margin-right: 10px;
}

.forms input::placeholder {
  color: gray;
  letter-spacing: .5px;
}

.inputs {
  border-bottom: solid 3px var(--black);
  width: 100%;
  display: flex;
}

.social-media-site ul li {
  margin: 0 5px;
}

.social-media-site ul li:first-child {
  margin-left: 0;
}

.social-media-site ul li:last-child {
  margin-right: 0;
}

.social-media-site a {
  color: var(--primary);
}

.social-media-site a:hover {
  color: var(--tertiaary);
}

/* Swiper */

.swiper-post {
  margin: auto;
  overflow: visible;
  position: relative;
}

.swiper-track-container {
  overflow: hidden;
  width: 100%;
}

.swiper-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  padding-left: 10vw;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.swiper-card {
  flex-shrink: 0;
  width: 80vw;
  margin-right: 20px;
  text-align: center;
  padding: 0px 5px;
  border-radius: 12px;
  opacity: 0.5;
  transition: opacity 0.3s ease, width 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .swiper-card {
    padding: 0px 20px;
  }
}

@media (min-width: 992px) {
  .swiper-card {
    padding: 0;
    margin-right: 0;
  }
}

.swiper-card.active {
  opacity: 1;
  padding: 0;
}

@media (min-width: 992px) {
  .swiper-track-container {
    overflow: visible;
  }
}

@media (min-width: 992px) {
  .swiper-track {
    padding-left: 0;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .swiper-card {
    width: 25%;
    margin: 0;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .swiper-card.active {
    width: 50%;
    opacity: 1;
    padding: 0 3%;
  }
}

.swiper-card .swiper-content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

@media (min-width: 992px) {
  .swiper-card .swiper-content {
    opacity: 1;
  }
}

.swiper-card.active .swiper-content {
  opacity: 1;
}

.swiper-card .swiper-content h3 {
  font-size: 1.3em;
}

@media (min-width: 1400px) {
  .swiper-card .swiper-content h3 {
    font-size: 1.6em;
  }
}

.swiper-card.active .swiper-content h3 {
  font-size: 1.8em;
}

@media (min-width: 992px) {
  .swiper-card.active .swiper-content h3 {
    font-size: 2.1em;
  }
}

@media (min-width: 1400px) {
  .swiper-card.active .swiper-content h3 {
    font-size: 2.2em;
  }
}

@media (min-width: 992px) {
  .swiper-card:first-child {
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .swiper-card:last-child {
    padding-left: 16px;
  }
}

.post-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 20px;
  z-index: 2;
}

.play-area {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.post .play {
  position: absolute;
  color: var(--secondary);
  top: calc(25% - 32px);
  left: calc(50% - 32px);
  z-index: 2;
  transition: .3s ease;
  transform: scale(1);
}

.post .play:hover {
  color: var(--senary);
  transform: scale(1.1);
}

.post.video:hover > .play {
  color: var(--senary);
}

.post.video:hover > .post-content .title-primary .link-white {
  color: var(--nonary);
}

.prev-next {
  color: var(--primary);
  transition: .3s ease;
}

.prev-next:hover {
  color: var(--tertiaary);
}

.prev-next {
  border: none;
  background: transparent;
}

.card-brands {
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  border: solid 1px white;
  background: rgba(250 250 250 / 70%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0px 6px 16px rgba(0 0 0 / 5%);
}

.card-brands img {
  border-radius: 10px;
}

#brands .btn-prev-brands {
  position: absolute;
  top: calc(50% - 30px);
  left: 0;
  z-index: 2;
}

#brands .btn-next-brands {
  position: absolute;
  top: calc(50% - 30px);
  right: 0;
  z-index: 2;
}

.ebook {
  position: relative;
  display: block;
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.ebook img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 10%;
  object-fit: contain;
  transform: scale(1.1) rotate(-12deg);
}

@media (min-width: 992px) {
  .ebook img {
    left: 10%;
  }
}

#up {
  position: fixed;
  right: 12px;
  bottom: -60px;
  transition: .3s ease;
  z-index: 4;
}

@media (min-width: 768px) {
  #up {
    right: 30px;
  }
}

#up.active {
  bottom: 25px;
}

@media (min-width: 1200px) {
  #up.active {
    bottom: 30px;
  }
}

#up a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 20%;
  background: var(--primary);
  box-shadow: 0px 3px 10px rgba(0 0 0 / 10%);
  color: white;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

@media (min-width: 768px) {
  #up a {
    width: 50px;
    height: 50px;
  }
}

#up a:hover {
  background: var(--secondary);
}

#magazine {
  position: fixed;
  bottom: -364px;
  left: 20px;
  box-shadow: 0px 6px 16px rgba(0 0 0 / 10%);
  border-radius: 10px;
  height: auto;
  transition: .3s ease;
  z-index: 4;
}

@media (min-width: 768px) {
  #magazine {
    left: 30px;
  }
}

#magazine img {
  box-shadow: 0px 0px 10px rgba(0 0 0 / 10%);
}

#disguise-magazine {
  position: absolute;
  top: -20px;
  left: 15px;
  background: var(--primary);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#magazine.open {
  bottom: 30px;
}

#disguise-magazine svg {
  transform: rotate(180deg);
  transition: .3s;
  width: 20px;
  height: 20px;
}

#disguise-magazine.open svg {
  transform: rotate(0deg);
}

.btn-red a, .btn-red button {
  display: block;
  background: var(--primary);
  padding: 10px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: .3s ease;
}

.btn-red a:hover, .btn-red button:hover {
  background: var(--tertiaary);
}

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

.pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: .6em;
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
}

@media (min-width: 768px) {
  .pagination ul {
    gap: 1.2em;
  }
}

.pagination li {
  display: inline-block;
}

.pagination a, .pagination span {
  display: flex;
  text-decoration: none;
  border: var(--secondary);
  border-radius: 5px;
  color: var(--cuaternary);
  transition: all 0.3s ease;
  min-width: 40px;
  height: 40px;
  padding: 5px;
  justify-content: center;
  align-items: center;
}

.pagination a:hover {
  background-color: var(--nonary);
}

.pagination .active span, .pagination .current {
  background-color: var(--octanary);
  color: var(--primary);
  border-color: var(--octanary);
  font-weight: bold;
  border-bottom: solid 4px var(--primary);
  border-radius: 0;
  transition: .3s ease;
}

.pagination li:first-child a, .pagination li:first-child span, .pagination li:last-child a, .pagination li:last-child span {
  border: none;
  background: transparent;
  color: var(--primary);
  padding-left: 0;
  padding-right: 0;
}

.pagination li:first-child a:hover, .pagination li:last-child a:hover {
  background-color: var(--nonary);
}

.error-404 {
  margin-top: -40px;
  margin-bottom: -40px;
}

.btn-search-send svg {
  color: var(--duodenary);
}

.btn-search-send:hover > svg {
  color: var(--black);
}

.share a, .social-media a {
  color: var(--black);
  transition: .3s ease;
}

.share a:hover, .social-media a:hover {
  color: var(--tertiaary);
}

.share li, .social-media li {
  margin: 4px;
}

@media (min-width: 992px) {
  .share li, .social-media li {
    margin: 5px;
  }
}

.share li:first-child, .social-media li:first-child {
  margin-left: 0;
}

.share li:last-child, .social-media li:last-child {
  margin-right: 0;
}

.share a:hover {
  color: var(--secondary);
}

.ecxerpt {
  font-size: 1.3em;
}

.ecxerpt p {
  margin-bottom: 0;
}

/* --- */

.wp-block-gallery .wp-block-image {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
  padding-top: 65%;
  margin-bottom: 10px;
}

.wp-block-gallery .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 0;
}

.wp-block-gallery {
  border-radius: 5px !important;
  overflow: hidden;
  padding: 0 !important;
}

.wp-block-gallery figure {
  padding: 0;
}

.wp-block-gallery ol li:before {
  display: none;
}

.wp-block-gallery .figure-caption{
  position: absolute;
  z-index: 9999;
  bottom: 15px;
  left: 10px;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.single-content {
  font-size: 1.2rem;
  line-height: 1.4em;
}

@media (min-width: 992px) {
  .single-content {
  font-size: 1.3rem;
  line-height: 1.4em;
}
}

.single-content .wp-block-media-text__content p:first-of-type:first-letter {
  float: initial;
  font-size: initial;
  margin: initial;
  color: inherit;
}

.single-content p {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 500;
  font-style: normal;
  /*font-size: 1.1em !important;*/
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
  color: var(--black);
  line-height: 1.4em;
}

@media (min-width: 992px) {
  .single-content p {
    /*font-size: 1.2em !important;*/
  }
}

.single-content > :is(h1, h2, h3) {
  font-size: 1.2em;
  font-weight: 500;
  font-family: 'Anton' !important;
}

@media (min-width: 992px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.3em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.4em;
  }
}

.single-content > :is(h4, h5, h6) {
  font-size: 1.2em;
  font-weight: 500;
  font-family: 'Anton' !important;
}

@media (min-width: 768px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.3em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.4em;
  }
}

.single-content figure {
  margin-bottom: 30px;
  display: block;
}

.single-content img {
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: blur 0.4s linear forwards;
  animation-delay: .2s;
  filter: blur(5px);
  border-radius: 5px;
}

@media (min-width: 992px) {
  .single-content figure {
    padding: 0;
  }
}

.single-content figure img {
  width: 100%;
  height: auto;
  margin: 0;
  margin-bottom: 3px;
  border-radius: 3px;
}

.single-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.single-content ul li {
  position: relative;
  display: block;
  padding: 4px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-weight: 400;
  line-height: 28px;
  border-radius: 5px;
}

.single-content ul li:hover {
  background: var(--septenary);
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2em;
  top: 50%;
  margin-top: -1em;
  color: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
}

.single-content {
  counter-reset: item;
}

.single-content ol {
  list-style: none;
  margin: 0 0 1em 0;
  padding-left: 2.5em;
}

.single-content ol > li {
  counter-increment: item;
  position: relative;
  margin: 0.4em 0;
  padding: 4px 15px;
  line-height: 28px;
  transition: all .3s ease-out;
}

.single-content ol > li::before {
  content: counters(item, ".");
  position: absolute;
  left: -2em;
  top: 50%;
  transform: translateY(-50%);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.5em;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  font-weight: 600;
}

.single-content li > ol {
  counter-reset: item;
  margin-top: 0.4em;
}

.single-content ol li > ol li::before {
  background: var(--secondary);
}
.single-content ol li > ol li > ol li::before {
  background: var(--tertiary);
}

.single-content ol li:hover {
  background: var(--septenary);
  border-radius: 5px;
}

.single-content .table-hover tbody tr {
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 1px var(--duodenary);
}

.single-content .table-hover tbody tr:hover {
  color: #212529;
  background-color: var(--septenary);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: var(--black);
}

.single-content .table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 1px var(--duodenary);
}

.single-content .table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: var(--septenary);
  transition: .3s;
}

.single-content table {
  color: var(--primary);
  margin-bottom: 30px;
}

.single-content table thead {
  border-bottom: solid 2px var(--duodenary);
  color: var(--black);
}

.single-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .single-content .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.table > :not(caption) > * > * {
  box-shadow: none;
  background: transparent;
}

.single-content blockquote p {
  margin-bottom: 30px;
  font-size: 1.3rem;
  line-height: normal;
  font-style: italic;
  padding-left: 25px;
}

.single-content blockquote {
  display: block;
  padding: 50px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  font-weight: bold;
  top: 0;
  margin-top: -15px;
  margin-bottom: 30px !important;
  margin: 0;
  border-left: solid 5px var(--primary);
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    position: relative;
    line-height: 1.2;
    top: 0px;
  }
}

.single-content blockquote::after {
  content: "";
}

.single-content blockquote::before {
  content: "\201C";
  font-size: 4em;
  color: var(--primary);
  position: absolute;
  left: 15px;
  top: -5px;
  font-family: 'arial';
  z-index: 1;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 4em;
    position: absolute;
    left: 20px;
    top: -10px;
  }
}

.single-content .blockquote footer {
  background: transparent;
  font-size: 1em;
  margin: 15px 30px;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  text-align: end;
}

@media (min-width: 992px) {
  .single-content .blockquote footer {
    background: transparent;
    font-size: initial;
    margin: 15px 0;
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .single-content .blockquote p {
    padding: 0 0 0 30px;
  }
}

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: var(--secondary);
  font-family: 'Anton';
}

@media (min-width: 992px) {
  .blockquote-footer {
    padding-right: 50px;
  }
}

.single-content a {
  color: var(--primary);
  text-decoration: none;
  transition: .3s;
  text-decoration: none;
}

.single-content a:hover {
  color: var(--tertiaary);
}

.single-content iframe {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    width: 95%;
    background-color: #f9f9f9;
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}

.single-content video, .single-content iframe {
  width: 100%;
  /*eight: auto;*/
  margin-bottom: 25px;
  border-radius: 15px;
}

.single-content p + h6 {
  margin-bottom: 0;
  background: var(--septenary);
  padding: 15px 15px 5px 15px;
  border-radius: 5px 5px 0 0;
  font-size: .8em;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.single-content div + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1em;
  background: #f1e5f8;
  padding: 15px 15px 0px 15px;
}

.single-content h6 + p {
  background: var(--septenary);
  padding: 0 15px 15px 15px;
  border-radius: 0 0 5px 5px;
}

.single-content h6 + p a {
  color: var(--primary);
}

.single-content h6 + p a:hover {
  color: var(--tertiaary);
}

.single-content .mark, .single-content mark {
  background: #f3dfff;
}

/* single */

/* wordpress */

.single-content .figure .wp-block-image {
  padding-bottom: 0;
  font-weight: normal !important;
  margin: 0;
}

.wp-block-media-text__media {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 10px 0 !important;
}

@media (min-width: 576px) {
  .wp-block-media-text__media {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__media {
    width: 20%;
  }
}

.wp-block-media-text__media img {
  height: 125px !important;
  object-fit: cover;
}

.wp-block-media-text__content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--black);
}

@media (min-width: 576px) {
  .wp-block-media-text__content {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__content {
    width: 80%;
  }
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  grid-column: 2;
  grid-row: 1;
  word-break: break-word;
  padding-left: 15px;
  font-size: 1.1em;
}

.wp-block-media-text {
  padding-left: 0;
}

@media (min-width: 300px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
    padding-left: 0;
  }
}

.wp-block-media-text.is-stacked-on-mobile {
  grid-template-columns: 100%!important;
}

.wp-block-media-text h5 {
  font-size: 1.3em;
}

.wp-block-media-text h4 {
  font-size: 1.3em;
  padding: 0;
  margin: 0;
  font-size: .8em;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wp-block-media-text p, .wp-block-media-text h5 {
  padding: 0;
  margin-bottom: 5px;
}

.wp-block-media-text p {
  font-size: 1em;
  line-height: normal;
}

.wp-block-media-text figure {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .wp-block-media-text figure {
    margin-bottom: 0;
  }
}

.wp-block-media-text figure img {
  object-fit: cover;
}

.wp-block-image {
  position: relative;
}

.wp-block-image img {
  position: relative;
  z-index: 1;
}

.wp-block-image .figure-caption {
  z-index: 2;
  color: white;
  text-shadow: 0 1px 6px rgba(0 0 0 / 10%);
  margin: 0 15px;
  font-size: 13px;
  bottom: 15px;
  left: 0;
  position: absolute;
}

/* - */

.wp-block-embed-youtube {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tags {
  display: flex;
  flex-flow: wrap;
}

.tags a {
  padding: 4px 15px;
  border-radius: 5px;
  border: solid 2px var(--septenary);
  background: var(--septenary);
  color: var(--black);
  text-decoration: none;
  font-size: 1em;
  transition: .3s ease;
  margin: 0 15px 10px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.tags a:hover {
  border: solid 2px var(--undenary);
  background: var(--undenary);
}

.post-related {
  position: relative;
  z-index: 2;
}

.issuu-container iframe {
  width: 100% !important;
  height: 400px !important;
  border-radius: 10px;
  background: var(--septenary);
}

@media (min-width: 576px) {
  .issuu-container iframe {
    width: 100% !important;
    height: 500px !important;
  }
}

@media (min-width: 992px) {
  .issuu-container iframe {
    width: 100% !important;
    height: 600px !important;
  }
}

.picture-article {
  position: relative;
}

.picture-article.video:after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: calc(15% - 35px);
  left: calc(10% - 35px);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 0 1px 6px rgba(0 0 0/ 20%);*/
  background-image: url("../../assets/img/play-circle-fill.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.article.video .picture {
  position: relative;
}

.article.video .picture:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 0 1px 6px rgba(0 0 0/ 20%);*/
  background-image: url("../../assets/img/play-circle-fill.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 9 / 16; */
  object-fit: cover;
  transition: .3s ease;
}

.video-container img {
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: blur 0.4s linear forwards;
  animation-delay: .2s;
  filter: blur(5px);
}

.short {
  position: relative;
  z-index: 3;
}

.short iframe {
  position: absolute;
  top: 0;
  left: 0;
}

/* */

.single-content ul li p, .single-content ol li p{
  margin-bottom: 0px !important;
}

.single-content img{
  width: 100%;
  height: auto;
}

.single-content img.img-size-ful, .single-content .wp-caption{
  width: 100% !important;
  height:auto !important;
}

.aspect-16-9 a,  .aspect-4-4 a{
width: 100%;
}

.single-content audio{
width: 100%;
filter: invert(1);
}

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

.has-text-align-right{
text-align: end;
}

.wp-block-button a {
display: flex;
border-radius: 30px;
padding: 10px 30px;
border: solid 3px var(--cuaternary);
color: white;
background: var(--cuaternary);
text-decoration: none;
transition: .3s ease;
font-weight: 500;
justify-content: center;
align-items: center;
margin-bottom: 30px;
}

.wp-block-button a:hover {
background: var(--senary);
color: var(--primary);
border: solid 3px var(--senary);
}

.has-text-color{
color: var(--primary) !important;
}

.has-background{
background: #fef7ff !important;
padding-top: 10px !important;
padding-bottom: 10px !important;
}

.wp-block-media-text h4 {
padding: 0;
margin: 0;
font-size: 1.2em;
font-weight: 800;
color: var(--primary);
letter-spacing: 2px;
}

.wp-block-gallery figure{
margin: 0 !important;
}

.instagram-media {
margin: auto !important;
margin-bottom: 30px !important;
}

.fb-post{
display: flex !important;
justify-content: center;
margin-bottom: 30px;
}

.tiktok-embed::before{
content: "" !important;
position: relative !important;
}

.single-content blockquote.tiktok-embed{
border: none;
margin: auto;
}

.single-content blockquote cite{
text-align: right;
width: 100%;
position: relative;
display: inline-block;
} 

.single-content blockquote p{
font-size: 1.2em;
line-height: normal;
}

.tiktok-embed::before{
content: "" !important;
position: relative !important;
}

.instagram-media {
margin: auto !important;
margin-bottom: 30px !important;
}

.fb-post{
display: flex !important;
justify-content: center;
margin-bottom: 30px;
}

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

.has-text-align-right{
text-align: end;
}

.has-text-align-left{
text-align:start;
}

.twitter-tweet.twitter-tweet-rendered{
  margin: auto;
}

.wp-block-embed-spotify iframe{
  margin: 0;
}

.wp-block-embed-youtube, .video-youtube {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper, .video-youtube .video-wrapper {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe, .video-youtube .video-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100% ;
  border: 0;
  border-radius: 5px;
}

.single-content .wp-caption-text{
    font-size: 14px !important;
    color: #999;
    margin-top: 10px;
}

.single-content .wp-element-caption{
    font-size: 14px !important;
    color: #999;
}
/* --- */

#wpadminbar{
 background: #7d1923;
}

/*bar-menu en mobile*/

  .bar-submenu .menu-item-has-children.open > ul span {
    display: inline !important;
    color: #fff !important;
  }

    .bar-submenu .menu-item-has-children.open > ul {
    display: flex !important;
    position: absolute !important;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    flex-direction: column;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    z-index: 2000;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: fadeIn 0.3s ease forwards;
  }