:root {
  --primary: #fd0013;
  --secondary: #ffe500;
  --tertiaary: #db091d;
  --cuaternary: #9b0715;
  --quinary: #7D1923;
  --senary: #fffbd9;
  --septenary: #fffce6;
  --octanary: #FFF7B0;
  --nonary: #ffd9dc;
  --denary: #feb0b6;
  --black: #222222;
}

::selection {
  background: var(--octanary);
  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;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 120px;
  }
}

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

body {
  font-family: 'Barlow';
  font-size: 1.1em;
  line-height: normal;
}

/* 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;
}

.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);
}

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

/* Bootstrap */

hr {
  border-top: solid 1.5px var(--cuaternary);
}

/* Fancybox */

.fancybox-is-open .fancybox-bg {
  background: rgba(35 5 8 / 80%);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  opacity: 1;
}

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

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

.fancybox-button {
  background-color: var(--duodenary) !important;
  color: var(--octanary) !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(--octanary) !important;
  mix-blend-mode: inherit;
  font-size: 1.1em;
  font-family: 'Barlow Condensed';
}

.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(--octanary);
}

.fancybox-thumbs-active {
  border: solid 2px var(--senary);
}

.fancybox-image {
  border-radius: 0;
}

@media (min-width: 1080px) {
  .fancybox-image {
    border-radius: 12px;
  }
}

/* Select */

.select2-container--default .select2-selection--single {
  border: none;
  background: var(--senary);
  border-radius: 10px;
}

.select2-dropdown {
  border: none;
  background: var(--senary);
  overflow: hidden;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: solid 2px var(--tertiary);
  border-radius: 5px;
  padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--tertiary);
  font-weight: bold;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--octanary);
  color: black;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--secondary);
  color: var(--black);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
  z-index: 4;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 7px 6px 0 6px;
  left: 25%;
  top: 85%;
  filter: brightness(0) saturate(100%) invert(74%) sepia(85%) saturate(494%) hue-rotate(359deg) brightness(103%) contrast(108%);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--black) !important;
}

.select2-container--default {
  width: 340px !important;
}

.select2-container .select2-selection--single {
  height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  padding-left: 15px;
  color: var(--secondary);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  right: 15px;
}

.select2-selection__placeholder span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.select2-selection__placeholder i::before {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: block;
  color: var(--black);
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.selection svg {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  color: var(--secondary);
}

/* - */

/* Flickity */

.flickity-button {
  background: var(--secondary);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  opacity: .5;
  transition: .3s;
}

.flickity-button:hover {
  background: var(--secondary);
  opacity: 1;
}

.flickity-page-dots {
  position: absolute;
  bottom: 15px;
}

.flickity-page-dots .dot {
  background: var(--secondary);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
}

.slider-video .flickity-page-dots {
  position: relative;
  bottom: -15px;
}

.slider-one-post .flickity-prev-next-button {
  top: 28%;
}

@media (min-width: 360px) {
  .slider-one-post .flickity-prev-next-button {
    top: 33.3%;
  }
}

@media (min-width: 992px) {
  .slider-one-post .flickity-prev-next-button {
    top: 40%;
  }
}

.slider-post .flickity-prev-next-button {
  top: 20%;
  z-index: 3;
}

@media (min-width: 360px) {
  .slider-post .flickity-prev-next-button {
    top: 27%;
    z-index: 3;
  }
}

.slider-post .flickity-prev-next-button.previous, .slider-video .flickity-prev-next-button.previous, .slider-tows .flickity-prev-next-button.previous {
  left: 10%;
}

@media (min-width: 576px) {
  .slider-post .flickity-prev-next-button.previous, .slider-video .flickity-prev-next-button.previous, .slider-tows .flickity-prev-next-button.previous {
    left: 35px;
  }
}

@media (min-width: 1400px) {
  .slider-post .flickity-prev-next-button.previous, .slider-video .flickity-prev-next-button.previous, .slider-tows .flickity-prev-next-button.previous {
    left: -3%;
  }
}

@media (min-width: 1600px) {
  .slider-post .flickity-prev-next-button.previous, .slider-video .flickity-prev-next-button.previous, .slider-tows .flickity-prev-next-button.previous {
    left: -4%;
  }
}

.slider-post .flickity-prev-next-button.next, .slider-video .flickity-prev-next-button.next, .slider-tows .flickity-prev-next-button.next {
  right: 10%;
}

@media (min-width: 576px) {
  .slider-post .flickity-prev-next-button.next, .slider-video .flickity-prev-next-button.next, .slider-tows .flickity-prev-next-button.next {
    right: 35px;
  }
}

@media (min-width: 1200px) {
  .slider-post .flickity-prev-next-button.next, .slider-video .flickity-prev-next-button.next, .slider-tows .flickity-prev-next-button.next {
    right: -3%;
  }
}

@media (min-width: 1600px) {
  .slider-post .flickity-prev-next-button.next, .slider-video .flickity-prev-next-button.next, .slider-tows .flickity-prev-next-button.next {
    right: -4%;
  }
}

.slider-one-post .flickity-prev-next-button.next {
  right: 10%;
}

@media (min-width: 768px) {
  .slider-one-post .flickity-prev-next-button.next {
    right: 2%;
  }
}

.slider-one-post .flickity-prev-next-button.previous {
  left: 10%;
}

@media (min-width: 768px) {
  .slider-one-post .flickity-prev-next-button.previous {
    left: 2%;
  }
}

@media (min-width: 1200px) {
  .slider-one-post .flickity-prev-next-button.previous {
    left: 0%;
  }
}

@media (min-width: 1200px) {
  .slider-one-post .flickity-prev-next-button.previous {
    left: 0;
  }
}

.slider-brands .flickity-prev-next-button.previous {
  left: 2%;
  z-index: 3;
}

@media (min-width: 460px) {
  .slider-brands .flickity-prev-next-button.previous {
    left: 6%;
  }
}

@media (min-width: 576px) {
  .slider-brands .flickity-prev-next-button.previous {
    left: 10%;
  }
}

@media (min-width: 768px) {
  .slider-brands .flickity-prev-next-button.previous {
    left: 22%;
  }
}

@media (min-width: 992px) {
  .slider-brands .flickity-prev-next-button.previous {
    left: 27%;
  }
}

@media (min-width: 1200px) {
  .slider-brands .flickity-prev-next-button.previous {
    left: -30px;
  }
}

@media (min-width: 1600px) {
  .slider-brands .flickity-prev-next-button.previous {
    left: -60px;
  }
}

.slider-brands .flickity-prev-next-button.next {
  right: 2%;
  z-index: 3;
}

@media (min-width: 460px) {
  .slider-brands .flickity-prev-next-button.next {
    right: 6%;
  }
}

@media (min-width: 576px) {
  .slider-brands .flickity-prev-next-button.next {
    right: 10%;
  }
}

@media (min-width: 768px) {
  .slider-brands .flickity-prev-next-button.next {
    right: 22%;
  }
}

@media (min-width: 992px) {
  .slider-brands .flickity-prev-next-button.next {
    right: 27%;
  }
}

@media (min-width: 1200px) {
  .slider-brands .flickity-prev-next-button.next {
    right: -30px;
  }
}

@media (min-width: 1600px) {
  .slider-brands .flickity-prev-next-button.next {
    right: -60px;
  }
}

.slider-post .flickity-page-dots {
  bottom: 0px;
  position: relative;
}

.slider-post {
  position: relative;
}

.slider-post::before, .slider-brands:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 6%;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .slider-post:before, .slider-brands:before {
    background: linear-gradient(90deg,rgba(255 255 255 / 100%) 0%,rgba(255 255 255 / 0%) 100%);
  }
}

.slider-post::after, .slider-brands:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 6%;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .slider-post:after, .slider-brands:after {
    background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 100%) 100%);
  }
}

/* - */

.slider-tows {
  position: relative;
}

.slider-tows .flickity-page-dots {
  bottom: 0px;
  position: relative;
}

.slider-tows {
  position: relative;
}

.slider-tows.gradients::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 4%;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .slider-tows.gradients:before {
    background: linear-gradient(90deg,rgba(255 255 255 / 100%) 0%,rgba(255 255 255 / 0%) 100%);
  }
}

.slider-tows.gradients::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 4%;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .slider-tows.gradients:after {
    background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 100%) 100%);
  }
}

/* Framework */

.fnt-amiten {
  font-family: 'Amithen';
}

.fnt-barlow {
  font-family: 'Barlow';
  font-style: normal;
}

.fnt-barlow-condensed {
  font-family: 'Barlow Condensed';
  font-style: normal;
}

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

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

.fnt-yellow {
  color: var(--secondary);
}

.fnt-light-yellow {
  color: var(--octanary);
}

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

.fnt-small {
  font-size: 12px;
}

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

.fnt-sm {
  font-size: 16px;
}

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

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

.fnt-xl {
  font-size: 24px;
}

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

.headline h1 {
  font-size: 2.2em;
  line-height: 110%;
}

@media (min-width: 576px) {
  .headline h1 {
    font-size: 2.6em;
  }
}

@media (min-width: 992px) {
  .headline h1 {
    font-size: 3em;
  }
}

.title-primary h1, .title-primary h2 {
  font-size: 2em;
  line-height: 100%;
}

@media (min-width: 768px) {
  .title-primary h1, .title-primary h2 {
    font-size: 2.2em;
    line-height: 100%;
  }
}

@media (min-width: 1200px) {
  .title-primary h1, .title-primary h2 {
    font-size: 2.5em;
    line-height: 100%;
  }
}

.title-secondary h1, .title-secondary h2 {
  font-size: 1.6em;
  line-height: 100%;
}

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

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

.title-secondary h1, .title-tertiary h2 {
  font-size: 1.65em;
  line-height: 100%;
}

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

@media (min-width: 1200px) {
  .title-tertiary h2 {
    font-size: 1.7em;
  }
}

.title-cuaternary h2 {
  font-size: 1.4em;
  line-height: 100%;
}

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

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

.title-quinary h2 {
  font-size: 1.2em;
  line-height: 100%;
}

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

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

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

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

.btn-yellow a, .btn-yellow button {
  display: block;
  background: var(--secondary);
  padding: 10px 25px;
  color: var(--black);
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  transition: .3s ease;
  font-weight: bold;
}

.btn-yellow a:hover, .btn-yellow button:hover {
  background: var(--octanary);
}

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

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

.link-white {
  color: white;
  text-decoration: none;
}

.link-white:hover {
  color: var(--senary);
}

.link-yellow {
  color: var(--secondary);
  text-decoration: none;
}

.link-yellow:hover {
  color: var(--octanary);
}

.ls-1 {
  letter-spacing: 1px;
}

.sticky {
  z-index: 4;
  top: 10px;
}

.sticky-share {
  z-index: 3;
  top: 120px;
}

.sticky-ads {
  z-index: 3;
  top: 120px;
}

.sticky-author {
  z-index: 3;
  top: 120px;
}

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

.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;
}

.aspect-cover {
  position: relative;
}

.aspect-cover img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  transition: .3s ease;
}

@media (min-width: 992px) {
  .aspect-cover img {
    height: 500px;
  }
}

aspect-magazine {
  position: relative;
  width: 100%;
}

.aspect-magazine {
  aspect-ratio: 320 / 439;
  width: 100%;
  object-fit: cover;
}

.picture {
  position: relative;
}

.picture-author {
  position: relative;
  max-width: 220px;
}

.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);
}

.radius-xs {
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .radius-xs {
    border-radius: 16px;
    overflow: hidden;
  }
}

.radius-sm {
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .radius-sm {
    border-radius: 20px;
    overflow: hidden;
  }
}

.radius-md {
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .radius-md {
    border-radius: 30px;
    overflow: hidden;
  }
}

.radius-all {
  border-radius: 50%;
  overflow: hidden;
}

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

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

@media (min-width: 992px) {
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
  }
}

@media (min-width: 1200px) {
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    max-width: 1140px;
  }
}

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

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

@media (min-width: 992px) {
  .grid-3-col .grid-col {
    min-width: 33.3%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@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;
  }
}

.col-three {
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-three {
    max-width: 285px;
  }
}

@media (min-width: 1200px) {
  .col-three {
    max-width: 335px;
  }
}

@media (min-width: 1400px) {
  .col-three {
    max-width: 400px;
  }
}

.col-three-scroll {
  max-width: 97%;
}

@media (min-width: 992px) {
  .col-three-scroll {
    max-width: 350px;
  }
}

@media (min-width: 1200px) {
  .col-three-scroll {
    max-width: 335px;
  }
}

@media (min-width: 1400px) {
  .col-three-scroll {
    max-width: 400px;
  }
}

.col-three-section {
  max-width: 97%;
}

@media (min-width: 992px) {
  .col-three-section {
    max-width: 93%;
  }
}

@media (min-width: 1200px) {
  .col-three-section {
    max-width: 91%;
  }
}

@media (min-width: 1800px) {
  .col-three-section {
    max-width: 90%;
  }
}

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

@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 {
  display: none;
}

@media (min-width: 300px) {
  .scrolling-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
}

.less-30 {
  margin-top: -30px;
  position: relative;
  z-index: 3;
}

.less-title {
  margin-top: -35px;
}

@media (min-width: 768px) {
  .less-title {
    margin-top: -20px;
  }
}

.less-title-sm {
  margin-top: -18px;
}

@media (min-width: 768px) {
  .less-title-sm {
    margin-top: 0;
  }
}

@media (min-width: 1700px) {
  .ps-xxxl {
    padding-left: 50px;
  }
}

/* Styles */

header {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 20px;
  z-index: 5;
}

footer {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

#header {
  width: 95%;
  height: auto;
  background: var(--primary);
  padding: 0 20px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0 0 0 / 5%);
}

#footer {
  width: 95%;
  height: auto;
  background: var(--primary);
  padding: 50px 30px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0 0 0 / 5%);
}

.brand .regular {
  width: 250px;
  height: 44.3px;
  transition: .3s ease;
  display: none;
  margin: 10px 0 14px 0;
}

@media (min-width: 320px) {
  .brand .regular {
    display: block;
  }
}

@media (min-width: 768px) {
  .brand .regular {
    width: 280px;
    height: 49.6px;
    margin: 10px 0 20px 0;
  }
}

@media (min-width: 1200px) {
  .brand .regular {
    display: none;
    width: 220px;
  }
}

@media (min-width: 1400px) {
  .brand .regular {
    display: block;
    width: 210px;
    height: 37.25px;
  }
}

@media (min-width: 1460px) {
  .brand .regular {
  }
}

@media (min-width: 1620px) {
  .brand .regular {
    width: 280px;
    height: 49.6px;
  }
}

.brand .condensed {
  display: block;
  width: 40px;
  height: 36.6px;
  margin: 10px 0;
}

@media (min-width: 320px) {
  .brand .condensed {
    display: none;
  }
}

@media (min-width: 1200px) {
  .brand .condensed {
    display: block;
    width: 50px;
    height: 35.7px;
  }
}

@media (min-width: 1400px) {
  .brand .condensed {
    display: none;
  }
}

@media (min-width: 1460px) {
  .brand .condensed {
  }
}

.btn-nav {
  color: white;
  cursor: pointer;
}

.btn-nav svg {
  width: 36px;
  height: 36px;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  overflow: hidden auto;
  z-index: 9;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s;
  border-radius: 12px;
  margin-top: 12px;
  width: 95%;
  height: calc(-24px + 100vh);
}

@media (min-width: 576px) {
  #navigation {
    width: 360px;
  }
}

#navigation.open {
  transform: translate3d(-12px, 0, 0);
  transition: transform 0.3s;
  transition-timing-function: ease, ease;
}

#navigation .transition {
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  transition-delay: 0.4s;
  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(0 0 0 / 70%);*/
  background: rgba(35 5 8 / 80%);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  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;
}

/* Menu Desktop */

.menu-desktop ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 9;
}

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

.menu-desktop ul li a {
  display: flex;
  position: relative;
  margin: 0;
  padding: 28px 5px;
  text-decoration: none;
  transition: .3s;
  width: 100%;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 500;
}

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

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

.menu-desktop ul li a:hover + ul {
  animation: fadeIn 0.3s ease-out both;
}

.menu-desktop ul li a:hover + ul, .menu-desktop ul li ul:hover {
  display: flex;
  position: absolute;
  padding: 10px;
  background: white;
  flex-direction: column;
}

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

.menu-desktop .menu-item .sub-menu {
  padding: 10px 20px;
  background: var(--primary);
  border-radius: 0 0 5px 5px;
  max-height: 600px;
  overflow: hidden;
}

.menu-desktop .menu-item-has-children {
  margin-right: 15px;
}

.menu-desktop .menu-item-has-children:hover > a {
  color: var(--octanary);
}

.menu-desktop .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: calc(50% - 8px);
  color: var(--octanary);
  right: -10px;
  cursor: pointer;
  width: 15px;
  height: 15px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-desktop .menu-item .sub-menu a {
  font-weight: normal;
  padding: 2px 0;
}

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

/* 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: white;
  text-decoration: none;
  font-weight: 500;
  align-items: center;
  justify-content: start;
  padding: 0;
  background: transparent;
  transition: .3s ease;
  font-size: 1.1em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

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

.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: 10px;
  right: 0px;
  width: 10px;
  height: 10px;
  font-size: 20px;
  color: var(--secondary);
}

/* 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%;
  height: 30px;
  color: white;
  text-decoration: none;
  align-items: center;
  justify-content: start;
  padding: 0;
  transition: .3s ease;
  font-size: .9em;
  text-transform: uppercase;
  font-weight: 400;
}

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

.menu-secondary.footer a {
  justify-content: center;
}

@media (min-width: 768px) {
  .menu-secondary.footer a {
    justify-content: start;
  }
}

/* Forms */

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

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

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

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

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

.forms input::placeholder {
  color: lightgray;
  letter-spacing: .5px;
  padding-left: 0px;
}

.inputs {
  width: 100%;
  display: flex;
  border: solid 3px var(--octanary);
  border-radius: 30px;
  background: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-search-send {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-search-send svg {
  width: 30px;
  height: 30px;
}

.social-media a {
  display: block;
  color: white;
  transition: .3s ease;
  margin-right: 5px;
}

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

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

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

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

#up.active {
  bottom: 25px;
}

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

#up a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  background: var(--secondary);
  box-shadow: 0px 3px 10px rgba(0 0 0 / 10%);
  color: var(--black);
  justify-content: center;
  align-items: center;
  transition: .3s;
}

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

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

#up a svg {
  width: 40px;
  height: 40px;
}

#magazine {
  position: fixed;
  top: inherit;
  bottom: 30px;
  left: -245px;
  box-shadow: 0px 6px 12px rgba(0 0 0 / 5%);
  border-radius: 10px;
  height: auto;
  transition: .3s ease;
  z-index: 3;
  max-width: 245px;
}

@media (min-width: 768px) {
  #magazine {
    top: calc(50% - 198.5px);
    left: -245px;
    bottom: inherit;
  }
}

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

#disguise-magazine {
  position: absolute;
  top: calc(50% - 12.5px);
  right: -30px;
  background: var(--secondary);
  color: black;
  width: 25px;
  height: 25px;
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#magazine.open {
  left: 10px;
}

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

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

.category {
  position: relative;
}

.category a {
  font-family: 'Amithen';
  font-size: 1.4em;
  text-decoration: none;
  color: var(--secondary);
  transition: .3s ease;
}

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

.category-light a {
  font-family: 'Amithen';
  font-size: 1.4em;
  text-decoration: none;
  color: var(--octanary);
  transition: .3s ease;
}

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

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

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

.category.brush a {
  font-family: 'Amithen';
  font-size: 1.4em;
  color: var(--black);
  text-decoration: none;
  transition: .3s ease;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.category.brush a:hover {
  color: #666666;
}

.category.brush:after {
  content: '';
  background-image: url("../../assets/img/brush-yellow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 16%;
  left: 0;
  z-index: 0;
}

.category.brush.red:after {
  background-image: url("../../assets/img/brush-red.svg");
  height: 8px;
  background-size: cover;
}

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

.title-section h1 {
  font-size: 2.6em;
}

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

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

.title-section h2 {
  font-size: 2.4em;
}

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

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

.title-section h3 {
  font-size: 2em;
}

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

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

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

.title-section .brush a {
  font-family: 'Amithen';
  color: var(--black);
  text-decoration: none;
  transition: .3s ease;
  position: relative;
  z-index: 2;
}

.title-section .brush h1, .title-section .brush h2, .title-section .brush h3 {
  font-family: 'Amithen';
  text-decoration: none;
  transition: .3s ease;
  position: relative;
  z-index: 2;
}

.title-section .brush a:hover {
  color: #666666;
}

.title-section .brush:after {
  content: '';
  background-image: url("../../assets/img/brush-yellow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 120%;
  height: 10px;
  bottom: 35%;
  left: calc(50% - 60%);
  z-index: 0;
}

.title-section .brush.red:after {
  background-image: url("../../assets/img/brush-red.svg");
}

.title-section .doble .handwriting {
  font-size: 1.2em;
}

#area-search {
  position: fixed;
  width: 100%;
  height: auto;
  top: 110px;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  transition: .3s esase;
}

@media (min-width: 768px) {
  #area-search {
    top: 120px;
  }
}

#area-search.open {
  visibility: visible;
  opacity: 1;
  animation: fadeIn 0.3s ease-out both;
}

#search {
  width: 95%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0 0 0 / 5%);
}

#btn-search .close {
  display: none;
}

#btn-search .open {
  display: block;
}

#btn-search.open .close {
  display: block;
}

#btn-search.open .open {
  display: none;
}

.state a {
  display: block;
  background: var(--primary);
  padding: 4px 12px 4px 10px;
  border-radius: 20px;
  color: var(--septenary);
  text-decoration: none;
  transition: .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .9em;
  text-transform: uppercase;
  font-weight: 500;
  width: fit-content;
}

.state a:hover {
  background: var(--primary);
  color: var(--octanary);
}

.state a svg {
  width: 20px;
  height: 20px;
}

.state-photo {
  position: absolute;
  top: 15px;
  width: 100%;
}

.author-date {
  font-size: .9em;
  color: gray;
  width: 100%;
  display: flex;
}

.author-date.small {
  font-size: .8em;
}

.author-date.center {
  flex-flow: wrap;
}

.author-date.center .author, .author-date.center .date {
  padding: 0 5px;
  display: flex;
  flex-flow: wrap;
}

.author a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: .3s ease;
}

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

.author-date.light {
  color: white;
  font-size: .8em;
}

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

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

.post:hover > .content .title-primary a {
  color: var(--primary);
}

.post:hover > .content .title-secondary a {
  color: var(--primary);
}

.post:hover > .content .title-tertiary a {
  color: var(--primary);
}

.post:hover > .content .title-cuaternary a {
  color: var(--primary);
}

.post:hover > .picture .content-service .title-cuaternary a {
  color: var(--primary);
}

.btn-more {
  position: relative;
}

.btn-more a {
  display: none;
  width: 25px;
  height: 25px;
  background: var(--octanary);
  color: var(--black);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  transition: .3s ease;
  position: absolute;
  bottom: 25px;
  right: -50px;
  transition: .3s ease;
}

@media (min-width: 768px) {
  .btn-more a {
    display: block;
  }
}

.btn-more a:hover {
  background: var(--secondary);
}

.btn-more a svg {
  width: 25px;
  height: 25px;
}

.btn-more.red a {
  background: var(--nonary);
}

.btn-more.red a:hover {
  background: var(--denary);
}

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

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

.post, .post-picture {
  position: relative;
}

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

.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);
}

.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;
}

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

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

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

.post .play svg {
  width: 60px;
  height: 60px;
}

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

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

.content-picture {
  position: relative;
  bottom: 0;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background-color: var(--primary);
  background-image: url("../../assets/img/texture.png");
  background-position: center;
  background-size: 60px;
  margin-top: -25px;
}

@media (min-width: 768px) {
  .content-picture {
    position: absolute;
    width: 85%;
    border-radius: 0 12px 0 0;
    margin-top: inherit;
  }
}

@media (min-width: 768px) {
  .post-picture .picture .content-picture .category-light, .post-picture .picture .content-picture .author-date {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.3, 0, 0.2, 1), opacity 0.3s ease;
  }
}

@media (min-width: 576px) {
  .post-picture:hover .picture .content-picture .category-light, .post-picture:hover .picture .content-picture .author-date {
    max-height: 200px;
    opacity: 1;
  }
}

.content-service {
  width: 85%;
  background: white;
  border-radius: 12px;
  margin-top: -50px;
  position: relative;
}

.stars ul {
  list-style: none;
  padding: 0;
}

.stars ul li {
  display: inline-block;
  margin: 0;
}

.stars svg {
  color: var(--secondary);
  width: 32px;
  height: 32px;
}

.ranking {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  padding: 6px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Amithen';
  font-size: 1em;
  margin-bottom: 10px;
}

.review {
  margin-top: -20px;
}

.lateral-gradients {
  position: relative;
}

.lateral-gradients:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 6%;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 100%) 100%);
  z-index: 1;
  pointer-events: none;
}

.lateral-gradients:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 6%;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg,rgba(255 255 255 / 100%) 0%,rgba(255 255 255 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1640px) {
  .lateral-gradients:before {
    background: linear-gradient(90deg,rgba(255 255 255 / 0%) 0%,rgba(255 255 255 / 0%) 100%);
  }
}

.scroll-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  position: relative;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.category-button {
  display: flex;
  align-items: center;
  background-color: var(--senary);
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-size: 1.5em;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: .3s ease;
  font-family: 'Barlow Condensed';
  width: max-content;
}

.category-button:hover {
  background: var(--octanary);
}

.category-button img {
  width: 60px;
  height: 60px;
  display: flex;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.category-button h3 {
  margin-bottom: 0;
}

.area-texture {
  position: relative;
}

.bg-texture {
  background-color: var(--primary);
  background-image: url("../../assets/img/texture.png");
  background-position: center;
  background-size: 60px;
  width: 100%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.bg-texture-author {
  background-color: var(--primary);
  background-image: url("../../assets/img/texture.png");
  background-position: center;
  background-size: 60px;
  width: 100%;
  height: 25%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.bg-texture-left {
  background-color: var(--primary);
  background-image: url("../../assets/img/texture.png");
  background-position: center;
  background-size: 60px;
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.content-texture {
  position: relative;
  width: 75%;
  z-index: 2;
}

.content-texture-left {
  position: relative;
  width: 100%;
  z-index: 2;
}

.brush-underline {
  display: inline-block;
  background-image: url('../../assets/img/brush-yellow.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 20px;
  padding-bottom: 8px;
}

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

.post.video .picture:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  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.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.area-nav-bar {
  width: auto;
  border-radius: 50px;
  border: solid 3px var(--senary);
  position: relative;
}

.area-nav-bar:before {
  content: '';
  position: absolute;
  top: 0;
  right: -3px;
  width: 22%;
  height: 100%;
  background: linear-gradient(90deg,rgba(255 251 217 / 0%) 0%,rgba(255 251 217 / 100%) 100%);
  border-radius: 50px;
  pointer-events: none;
  z-index: 3;
}

@media (min-width: 360px) {
  .area-nav-bar:before {
    width: 16%;
  }
}

@media (min-width: 768px) {
  .area-nav-bar:before {
    width: 8%;
  }
}

@media (min-width: 1570px) {
  .area-nav-bar:before {
    background: linear-gradient(90deg,rgba(255 251 217 / 0%) 0%,rgba(255 251 217 / 0%) 100%);
  }
}

.area-nav-bar:after {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 22%;
  height: 100%;
  background: linear-gradient(90deg,rgba(255 251 217 / 100%) 0%,rgba(255 251 217 / 0%) 100%);
  border-radius: 50px;
  pointer-events: none;
  z-index: 3;
}

@media (min-width: 360px) {
  .area-nav-bar:after {
    width: 16%;
  }
}

@media (min-width: 768px) {
  .area-nav-bar:after {
    width: 8%;
  }
}

@media (min-width: 1570px) {
  .area-nav-bar:after {
    background: linear-gradient(90deg,rgba(255 251 217 / 100%) 0%,rgba(255 251 217 / 0%) 0%);
  }
}

@media (min-width: 1570px) {
  .area-nav-bar {
    width: fit-content;
  }
}

@media (min-width:1570px) {
  .column-flex {
    display: flex;
    justify-content: center;
  }
}

.category-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  background: white;
  padding: 7px;
  border-radius: 30px;
  margin: 0 0px;
  transition: .3s ease;
}

.category-nav a:hover > h3 {
  color: var(--black);
}

.category-nav a:last-child {
  margin-right: 5px;
}

.category-nav a:first-child {
  margin-left: 5px;
}

.icon-nav {
  width: 32px;
  height: 32px;
  background: var(--octanary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  transition: .3s ease;
}

.category-nav a:hover > .icon-nav {
  background: var(--secondary);
}

.category-nav {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Barlow Condensed';
  width: max-content;
}

.category-nav h3 {
  font-size: 1.1em;
  margin: 0;
  transition: .3s ease;
}

#magical-twon {
  display: flex;
  flex-flow: wrap;
}

#magical-twon a {
  padding: 8px 24px;
  border-radius: 30px;
  border: solid 2px var(--octanary);
  background: var(--octanary);
  color: var(--black);
  text-decoration: none;
  font-size: .9em;
  transition: transform .2s ease-in-out;
  margin: 5px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #magical-twon a {
    font-size: 1.1em;
  }
}

#magical-twon a:hover {
  border: solid 2px var(--secondary);
  background: var(--secondary);
  transform: translateY(-3px);
}

.area-tours {
  width: 100%;
  background: var(--septenary);
  border-radius: 0;
}

@media (min-width: 992px) {
  .area-tours {
    width: 95%;
    background: var(--septenary);
    border-radius: 20px;
  }
}

.picture-cover {
  width: 95%;
  height: auto;
  position: relative;
}

.mapa {
  position: relative;
  border-radius: 20px;
}

.mapa iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.info-map {
  position: absolute;
  top: 34px;
  left: 34px;
  padding: 10px;
  background: var(--septenary);
  width: 215px;
  height: 92px;
  z-index: 3;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .info-map {
    width: 315px;
  }
}

.btn-map a {
  display: block;
  padding: 5px 5px 5px 10px;
  background: var(--senary);
  border: solid 3px var(--secondary);
  border-radius: 20px;
  max-width: 200px;
  text-decoration: none;
  font-weight: 500;
  color: VAR(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  font-size: .9em;
  transition: .3s ease;
}

.btn-map a:hover {
  background: var(--secondary);
}

.btn-map a svg {
  width: 25px;
  height: 25px;
  background: var(--secondary);
  border-radius: 50%;
  margin-left: 15px;
  transition: .3s ease;
}

.btn-map a:hover > svg {
  background: var(--octanary);
}

.abstract strong {
  font-family: 'Barlow';
  font-size: 1.3em;
  line-height: 1.4em;
  font-weight: 500;
}

.bar-info {
  flex-flow: wrap;
  display: flex;
}

.items-info {
  padding: 6px 9px;
  border-radius: 30px;
  border: solid 2px var(--octanary);
  background: var(--octanary);
  color: var(--black);
  text-decoration: none;
  font-size: .9em;
  transition: .3s ease;
  margin: 5px 10px;
  box-decoration-break: clone;
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.item-icon {
  width: auto;
  height: 40px;
  background: white;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.item-icon a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  transition: .3s ease;
  text-decoration: none;
}

.item-icon a:hover {
  background-color: var(--secondary);
}

.items-info.stars {
  background: var(--senary);
  border: solid 2px var(--senary);
}

.item-icon.stars {
  width: 40px;
  height: 40px;
  background: var(--octanary);
  font-family: 'Amithen';
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0 0 0;
}

.btn-get-there a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--octanary);
  padding: 6px 9px;
  border-radius: 30px;
  border: solid 2px var(--octanary);
  background: var(--octanary);
  color: var(--black);
  text-decoration: none;
  font-size: .9em;
  transition: .3s ease;
  margin: 5px 10px;
  box-decoration-break: clone;
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-get-there a:hover {
  background: var(--secondary);
  border: solid 2px var(--secondary);
}

.btn-get-there a .icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.share a {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--octanary);
  color: var(--black);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .3s ease;
  margin: 6px;
}

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

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

@media (min-width: 1200px) {
  .share ul {
    flex-flow: column;
  }
}

/* --- */

.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.1rem;
}

.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: 'Barlow';
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
  color: var(--black);
  line-height: 1.6em;
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
  }
}

.single-content > :is(h1, h2, h3) {
  font-size: 1.6em;
  font-weight: 500;
  font-family: 'Barlow Condensed';
}

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

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

.single-content > :is(h4, h5, h6) {
  font-size: 1.3em;
  font-weight: 500;
  font-family: 'Barlow Condensed';
}

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

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

.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);
}

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

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

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

.single-content ul li {
  position: relative;
  display: block;
  padding: 2px 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: 60%;
  margin-top: -1em;
  color: var(--black);
  background: var(--octanary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
}

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

.single-content ol li {
  position: relative;
  display: block;
  padding: 2px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-weight: 400;
  line-height: 28px;
  counter-increment: my-awesome-counter;
  border-radius: 3px;
}

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

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

.single-content ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: var(--black);
  background: var(--octanary);
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  font-family: 'Amithen';
}

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

.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(--octanary);
}

.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(--secondary);
  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;
  font-size: 30px;
  padding: 50px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  margin: 0;
  border-left: solid 5px var(--secondary);
}

@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(--secondary);
  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(--black);
  font-family: 'Barlow Condensed';
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@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%;
  height: 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;
  font-family: 'Barlow';
  font-weight: 800;
}

.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;
  border-radius: 10px;
  padding: 5px;
  background: var(--senary);
}

.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;
}

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

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

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

.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: 8px 15px 11px 16px;
  border-radius: 30px;
  border: solid 2px var(--septenary);
  background: var(--senary);
  color: gray;
  text-decoration: none;
  font-size: .9em;
  transition: .3s ease;
  margin: 0 15px 10px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
  font-weight: 500;
}

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

.border-curly {
  position: relative;
  width: 100%;
  height: 12px;
}

.border-curly:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-image: url("../../assets/img/line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-author a {
  display: flex;
  width: 30px;
  height: 30px;
  background: var(--secondary);
  border-radius: 50%;
  color: var(--black);
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: .3s ease;
}

.btn-author a:hover {
  background: var(--octanary);
}

.area-content {
  width: 95%;
  height: auto;
  border-radius: 12px;
}

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

.pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5em;
  margin: 0;
}

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

.pagination li {
  display: inline-block;
}

.pagination a, .pagination span {
  display: flex;
  text-decoration: none;
  border: var(--octanary);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  color: var(--black);
  transition: all 0.3s ease;
  min-width: 40px;
  height: 40px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 1.1em;
}

.pagination a svg {
  width: 35px;
  height: 35px;
}

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

.pagination .active span, .pagination .current {
  background-color: var(--secondary);
  color: var(--black);
  border-color: var(--secondary);
  font-weight: bold;
}

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

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

.error-404 {
  font-size: 3em;
  font-family: 'Amithen';
  color: var(--secondary);
  text-shadow: 6px 0px 0 rgba(0 0 0 / 100%);
}

@media (min-width: 768px) {
  .error-404 {
    font-size: 4em;
    text-shadow: 10px 0px 0 rgba(0 0 0 / 100%);
  }
}

.message-error {
  margin-top: -30px;
}

@media (min-width: 768px) {
  .message-error {
    margin-top: -60px;
  }
}

.masked {
  width: 100%;
  height: 200px;
  background: url('../../assets/img/image-3.jpg') center/cover no-repeat;
  mask-image: url('../../assets/img/brush-mask.svg');
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url('../../assets/img/brush-mask.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: opacity 0.5s ease;
  opacity: 0;
}

@media (min-width: 768px) {
  .masked {
    height: 300px;
  }
}

@media (min-width: 1200px) {
  .masked {
    height: 400px;
  }
}

.area-masked {
  position: relative;
  width: 100%;
}

.brush-mask {
  position: absolute;
  top: 0;
}

.brush-mask img {
  width: 100%;
  height: 200px;
}

@media (min-width: 768px) {
  .brush-mask img {
    height: 300px;
  }
}

@media (min-width: 1200px) {
  .brush-mask img {
    height: 400px;
  }
}

.picture.graphics {
  background: var(--septenary);
  padding: 10px;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .picture.graphics {
    border-radius: 30px;
  }
}

.cover-magazine img {
  width: 100%;
  border-radius: 15px;
  background: white;
  transform: scale(1.06);
}

.flipbook iframe {
  width: 100%;
  height: 600px !important;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .flipbook iframe {
    height: 700px !important;
  }
}

.social-media-author a {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  background: transparent;
  color: var(--octanary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease;
}

.social-media-author a:hover {
  background: var(--octanary);
  color: var(--black);
}

#btn-close-search {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 67% 59% 64% 52% / 50% 63% 61% 69%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.area-tows {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--black);
}

.bg-towns {
  position: relative;
}

.bg-towns img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  opacity: .5;
}

.content-towns {
  position: absolute;
  width: 100%;
  height: auto;
}

/* Tab */

.tab-switch {
  position: relative;
  display: inline-block;
  width: 100%;
}

.tab-switch:after {
  content: "";
  position: absolute;
  width: calc(100% / var(--tab-count));
  top: 0;
  left: 0;
  transform: translateX(0%);
  transition: transform 0.3s ease-out;
  border-radius: 50px;
  background-color: var(--secondary);
  height: 100%;
  z-index: 0;
}

.tab-switch.first:after {
  transform: translateX(0%);
}

.tab-switch.second:after {
  transform: translateX(100%);
}

.tab-switch.third:after {
  transform: translateX(200%);
}

.tab-switch .tab {
  display: inline-block;
  width: calc(100% / var(--tab-count));
  padding: 12px 0;
  z-index: 1;
  position: relative;
  cursor: pointer;
  transition: color 200ms;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: var(--black);
}

.tab-switch .tab.active {
  color: var(--black);
}

.tab-wrapper {
  border-radius: 50px;
  background-color: white;
  padding: 5px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.bg-towns img {
  transition: opacity 0.6s ease;
  opacity: .5;
}

.bg-towns img.fade-out {
  opacity: 0;
}

.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: 18px !important;
  font-family: helvetica;
  box-shadow: 0 3px 9px rgba(0 0 0 / 10%);
  background-image:none;
}

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

/* New styles */

.grid-site {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1680px;
  margin: auto;
}

@media (min-width: 1200px) {
  .grid-site {
    flex-direction: row;
  }
}

.grid-content {
  width: 100%;
}

@media (min-width: 1200px) {
  .grid-content {
    width: 74%;
  }
}

@media (min-width: 1400px) {
  .grid-content {
    width: 74%;
  }
}

@media (min-width: 1600px) {
  .grid-content {
    width: 80%;
  }
}

.grid-ads {
  width: 100%;
}

@media (min-width: 1200px) {
  .grid-ads {
    width: 26%;
  }
}

@media (min-width: 1400px) {
  .grid-ads {
    width: 24%;
  }
}

@media (min-width: 1600px) {
  .grid-ads {
    width: 20%;
  }
}

.top-ads {
  width: 100%;
  height: 75px;
}

.post-outstanding {
  position: relative;
}

.post-outstanding img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .post-outstanding img {
    height: 700px;
  }
}

@media (min-width: 1200px) {
  .post-outstanding img {
    height: 800px;
  }
}

.picture-outstanding {
  position: relative;
  z-index: 1;
}

.content-outstanding {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
}

.less-title-xxl {
  margin-top: -14px;
}

@media (min-width: 768px) {
  .less-title-xxl {
    margin-top: -21px;
  }
}

/* ----- */

#header-primary {
  width: auto;
  height: auto;
  background: var(--primary);
  padding: 0 20px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0 0 0 / 5%);
}

@media (min-width: 1200px) {
  #header-primary {
    width: 100%;
  }
}

.header-fixed {
  position: fixed;
  z-index: 4;
  top: 0;
}

#content {
  margin-top: 110px;
}

@media (min-width: 1200px) {
  #content {
    margin-top: 120px;
  }
}

.fnt-shadow {
  text-shadow: 0 3px 0 rgb(0 0 0);
}

/* BUSCADOR */
/* Solo para el grid de Pueblos Mágicos */
#pm-grid { position: relative; }

#pm-grid.is-loading > * {
  opacity: 0.15;
  transition: opacity .2s ease;
}

#pm-grid.is-loading::after {
  content: "Cargando…";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(2px);
  z-index: 2;
}

/* Estado listo */
#pm-grid.is-ready > * { opacity: 1; }

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

@media (min-width: 992px){
  #pm-grid { min-height: 320px; }
}

#estados-grid.is-loading { position: relative; min-height: 96px; }
#estados-grid.is-loading::after{
  content:"Cargando…";
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.75);
  font-weight:600;
}

#pueblos-grid { position: relative; }
#pueblos-grid.is-loading > * { opacity: .05; transition: opacity .2s ease; }
#pueblos-grid.is-loading::after{
  content: "Cargando…";
  position: absolute; inset: 0;
  display:flex; align-items:center; justify-content:center;
  font-weight:600; background: rgba(255,255,255,.7);
  backdrop-filter: blur(2px);
}

/* New styles */

.grid-site {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1680px;
  margin: auto;
}

@media (min-width: 1200px) {
  .grid-site {
    flex-direction: row;
  }
}

.grid-content {
  width: 100%;
}

@media (min-width: 1200px) {
  .grid-content {
    width: 74%;
  }
}

@media (min-width: 1400px) {
  .grid-content {
    width: 74%;
  }
}

@media (min-width: 1600px) {
  .grid-content {
    width: 80%;
  }
}

.grid-ads {
  width: 100%;
}

@media (min-width: 1200px) {
  .grid-ads {
    width: 26%;
  }
}

@media (min-width: 1400px) {
  .grid-ads {
    width: 24%;
  }
}

@media (min-width: 1600px) {
  .grid-ads {
    width: 20%;
  }
}

.top-ads {
  width: 100%;
  height: 75px;
}

.post-outstanding {
  position: relative;
}

.post-outstanding img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .post-outstanding img {
    height: 700px;
  }
}

@media (min-width: 1200px) {
  .post-outstanding img {
    height: 800px;
  }
}

.picture-outstanding {
  position: relative;
  z-index: 1;
}

.content-outstanding {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
}

.less-title-xxl {
  margin-top: -14px;
}

@media (min-width: 768px) {
  .less-title-xxl {
    margin-top: -21px;
  }
}

/* ----- */

#header-primary {
  width: auto;
  height: auto;
  background: var(--primary);
  padding: 0 20px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0 0 0 / 5%);
}

@media (min-width: 1200px) {
  #header-primary {
    width: 100%;
  }
}

.header-fixed {
  position: fixed;
  z-index: 4;
  top: 0;
}

#content {
  margin-top: 110px;
}

@media (min-width: 1200px) {
  #content {
    margin-top: 120px;
  }
}

.fnt-shadow {
  text-shadow: 0 3px 0 rgb(0 0 0);
}

/* ------- */

.btn-hand {
  position: relative;
  display: inline-block;
  overflow: visible;
}

.btn-animated .cursor-hand {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/8/89/Cursor-hand.svg') no-repeat center;
  background-size: contain;
  top: 110%;
  right: -55px;
  transform: translateY(-50%) scale(1);
  animation: cursorClickRight 3.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

@keyframes cursorClickRight {
  0% {
    right: -55px;
    transform: translateY(-50%) scale(1);
  }
  25% {
    right: 50%;
    transform: translate(50%, -50%) scale(1);
  }
  35% {
    right: 50%;
    transform: translate(50%, -50%) scale(0.9);
  }
  45% {
    right: 50%;
    transform: translate(50%, -50%) scale(1);
  }
  75% {
    right: -55px;
    transform: translateY(-50%) scale(1);
  }
  100% {
    right: -55px;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes simulateHover {
  0%, 20% {
    background: var(--primary);
  }
  25%, 45% {
    background: var(--tertiaary);
  }
  50%, 100% {
    background: var(--primary);
  }
}

.btn-animated a {
  animation: simulateHover 3.5s infinite ease-in-out;
}

.cursor-hand {
  color: var(--secondary);
}

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

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

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

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

