:root {
  --primary: #58a918;
  --secondary: #468713;
  --tertiary: #cbe4b7;
  --cuaternary: #0F1946;
  --quinary: #091032;
  --senary: #59595a;
  --septenary: #333333;
  --octanary: #111111;
  --nonary: #e8eaf5;
  --denary: #e2e5f1;
  --undenary: #172873;
}

::selection {
  background: var(--primary);
  color: white;
}

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

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

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

.forms input:focus,
.forms button:focus,
.forms textarea:focus,
.forms select:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
  border-color: var(--secondary);
  box-shadow: 0 0 0 .25rem rgba(88, 169, 24, .25);
  color: white;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .25rem rgba(88, 169, 24, .25);
}

.forms button:focus {
  background: var(--secondary);
}

.forms .btn-password:focus {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}

.copyright .rombhus {
  font-style: italic;
  color: 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);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-size: 1.1em;
  font-family: 'Red Hat Display';
  letter-spacing: 1px;
  line-height: normal;
  background: #eceef8;
}

body.scroll-blocked {
  overflow: hidden;
}

/* Input con validación */

/* Animatión */

.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animate.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animate.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animate.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@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 fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

/* Bootstrap */

.modal-backdrop {
  background: rgba(9 16 50 / 50%);
  backdrop-filter: saturate(180%) blur(15px);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
}

.modal-content {
  border-radius: 2rem;
  border-color: white;
  background-clip: inherit;
}

.modal-body {
  padding: 2rem;
}

.modal-backdrop.show {
  opacity: inherit;
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--secondary);
  box-shadow: 0 0 0 .25rem rgba(88, 169, 24, .25);
  color: white;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 3;
}

.carousel-indicators [data-bs-target] {
  margin: 0;
  background-color: var(--primary);
}

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

.carousel-control-prev-icon {
  background-image: url(../../assets/img/prev.svg);
}

.carousel-control-next-icon {
  background-image: url(../../assets/img/next.svg);
  border: none;
}

.btn:first-child:active {
  border-color: transparent;
}

/* Select */

.select2-container--default .select2-selection--single {
  border: none;
  background: #F9F9F9;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
}

.select2-dropdown {
  border: none;
  background: #F9F9F9;
  overflow: hidden;
}

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

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

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

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

.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-color: var(--cuaternary) transparent transparent transparent !important;
  border-width: 7px 6px 0 6px;
  left: 25%;
  top: 85%;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--cuaternary) transparent !important;
}

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

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

.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: white;
  background: var(--cuaternary);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* - */

/* Fancybox */

.fancybox-is-open .fancybox-bg {
  background: rgba(9 16 50 / 50%);
  backdrop-filter: saturate(180%) blur(15px);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  opacity: 1;
}

.fancybox-progress {
  background: var(--primary) !important;
}

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

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

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

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

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

.fancybox-infobar {
  color: white !important;
  mix-blend-mode: inherit;
}

.fancybox-caption {
  background: transparent;
}

.fancybox-navigation .fancybox-button {
  width: 40px;
  height: 40px;
  margin: 10px;
}

.fancybox-button--arrow_left,
.fancybox-button--arrow_right {
  padding: inherit !important;
  border-radius: 50%;
}

/* Flickity */

.slider-blog .flickity-page-dots {
  position: relative;
}

.slider-blog .flickity-prev-next-button {
  top: 35%;
}

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

.flickity-page-dots .dot {
  width: 30px;
  height: 3px;
  border-radius: 0;
  margin: 0;
  background: var(--primary);
}

.flickity-button {
  color: var(--primary);
}

.flickity-button:hover {
  background: transparent;
}

.flickity-prev-next-button {
  z-index: 2;
}

/* -- */

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: transparent;
}

.iti__selected-flag {
  padding: 0 6px 0 12px;
}

/* Forms */

.form-contact input {
  background: transparent;
  border-radius: 30px;
  height: 45px;
  color: var(--cuaternary);
  padding: 0 15px;
}

.form-contact input::placeholder {
  color: darkgray !important;
}

.form-contact .form-control {
  border: solid 1px #dddddd;
}

.form-contact .form-control:focus {
  color: var(--cuaternary);
}

.form-contact .form-check-input {
  width: 17.59px;
  height: 17.59px;
  padding: 0;
  border: solid 2px #dddddd;
}

.form-contact .form-select {
  background: transparent;
  border-radius: 30px;
  height: 45px;
  border: solid 1px #dddddd;
}

.form-contact textarea {
  border-radius: 20px;
  border: solid 1px #dddddd;
  background: transparent;
  padding: 15px;
}

.form-contact textarea::placeholder {
  color: darkgray !important;
  font-family: 'Red Hat Display';
  line-height: normal;
  letter-spacing: 1px;
}

.form-contact h5 {
  font-family: 'Fira Sans';
  font-weight: 600;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
}

/* Framework */

.headline,
.headline h1 {
  font-size: calc(1.8rem + 2vw) !important;
  font-family: 'Fira Sans';
}

.headline-primary {
  font-size: calc(1.4rem + 2vw);
}

.headline-secondary {
  font-size: clamp(2rem, 2.1vw, 2.3rem);
}

.bg-blue {
  background: var(--cuaternary);
}

.bg-light-blue {
  background: var(--denary);
}

.fnt-fira {
  font-family: 'Fira Sans';
}

.fnt-rhd {
  font-family: 'Red Hat Display';
}

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

.fnt-blue {
  color: var(--cuaternary);
}

.fnt-blue-light {
  color: var(--undenary);
}

.fnt-gray {
  color: gray;
}

.fnt-xs {
  font-size: .8em;
}

.fnt-sm {
  font-size: 1em;
}

.fnt-md {
  font-size: 1em;
}

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

.fnt-lg {
  font-size: 1.4em;
}

.fnt-xl {
  font-size: 1.6em;
}

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

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

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

.link-green {
  color: var(--primary);
  transition: .3s ease;
}

.link-dark-green {
  color: var(--primary);
  transition: .3s ease;
}

.link-dark-green:hover {
  color: var(--secondary);
}

.link-white {
  color: white;
  transition: .3s ease;
}

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

.link-green:hover {
  color: white;
}

.title h1 {
  font-size: calc(1.6rem + 1vw);
}

.title-primary,
.title-primary h1 {
  font-size: calc(1.1rem + 1vw);
  font-weight: 700;
}

.title-secondary h1 {}

.title-primary a {
  color: var(--cuaternary);
  text-decoration: none;
}

.title-primary h2 {
  font-size: 22px;
  font-weight: 700;
}

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

.title-secondary a {
  text-decoration: none;
  color: var(--quinary);
  transition: .3s;
}

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

.title-secondary h2 {
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 992px) {
  .title-secondary h2 {
    font-size: 20px;
    font-weight: bold;
  }
}

.title-secondary-post,
.title-secondary-post h2 {
  font-size: 15px;
  font-weight: 700;
}

@media (min-width: 992px) {

  .title-secondary-post,
  .title-secondary-post h2 {
    font-size: 17px;
    font-weight: 700;
  }
}

.title-secondary-post a {
  color: var(--cuaternary);
  text-decoration: none;
  transition: .3s ease;
}

.title-secondary-post a:hover {
  color: var(--quinary);
}

.title-tertiary h3,
.title-tertiary {
  font-size: 20px;
  font-weight: 700;
}

.aspect-4-4 img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/4;
  object-fit: cover;
}

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

.aspect-16-9 img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.btn-basic a {
  display: flex;
  background: var(--primary);
  border: solid 2px var(--primary);
  padding: 10px 24px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  width: auto;
  border-radius: 30px;
  transition: .3s;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 576px) {
  .btn-basic a {
    width: fit-content;
  }
}

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

.btn-basic-blue a {
  display: flex;
  background: var(--undenary);
  border: solid 2px var(--undenary);
  padding: 10px 24px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  border-radius: 30px;
  transition: .3s;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .btn-basic-blue a {
    width: fit-content;
  }
}

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

.btn-basic-line a {
  display: flex;
  background: transparent;
  border: solid 2px var(--primary);
  padding: 10px 30px;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  width: auto;
  border-radius: 30px;
  transition: .3s;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .btn-basic-line a {
    width: fit-content;
  }
}

.btn-basic-line a:hover {
  background: var(--primary);
  color: white;
}

.btn-basic-blue a {
  display: flex;
  background: var(--cuaternary);
  border: solid 2px var(--cuaternary);
  padding: 10px 24px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  border-radius: 30px;
  transition: .3s;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .btn-basic-blue a {
    width: fit-content;
  }
}

.btn-basic-blue a:hover {
  background: var(--quinary);
  border: solid 2px var(--cuaternary);
}

.btn-basic-line-blue a {
  display: flex;
  background: transparent;
  border: solid 2px var(--cuaternary);
  padding: 10px 30px;
  color: var(--cuaternary);
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  border-radius: 30px;
  transition: .3s;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .btn-basic-line-blue a {
    width: fit-content;
  }
}

.btn-basic-line-blue a:hover {
  background: var(--cuaternary);
  color: white;
}

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

.btn-icon-blue a:hover {
  background: var(--primary);
}

.category,
.category a {
  color: var(--primary);
  transition: .3s ease;
  text-decoration: none;
}

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

.category-post a {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
  /* text-transform: uppercase; */
}

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

.category-green {
  display: block;
  color: white;
  background: var(--primary);
  padding: 3px 15px;
  transition: .3s ease;
  border-radius: 15px;
  width: fit-content;
}

.category-blue {
  display: block;
  color: white;
  background: var(--undenary);
  padding: 3px 15px;
  transition: .3s ease;
  border-radius: 15px;
  width: fit-content;
}

.section-category a {
  display: block;
  color: white;
  background: var(--undenary);
  padding: 15px 22px;
  transition: .3s ease;
  border-radius: 35px;
  width: fit-content;
  text-decoration: none;
  transition: .3s ease;
  font-size: .8em;
  margin-bottom: 10px;
  /* text-transform: uppercase; */
}

.section-category-selector {
  display: block;
  color: white;
  background: var(--undenary);
  padding: 4px 22px;
  transition: .3s ease;
  border-radius: 15px;
  width: fit-content;
  text-decoration: none;
  transition: .3s ease;
  font-size: .8em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-category-selector {
    font-size: .9em;
  }
}

.date {
  font-size: 13px;
  color: gray;
}

.author,
.author a {
  font-size: 13px;
  color: var(--cuaternary);
  text-decoration: none;
}

.author a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .section-category a {
    font-size: .9em;
  }
}

.section-category a:hover {
  background: var(--undenary);
}

.min-h {
  min-height: 530px;
  width: auto;
}

.underline p {
  display: initial;
  position: relative;
  padding: 0 5px 1px 5px;
  text-decoration: none;
  background-color: var(--primary);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .3s ease;
  color: white;
  line-height: 1.7em;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.underline-blue p {
  display: initial;
  position: relative;
  padding: 0 5px 1px 5px;
  text-decoration: none;
  background-color: var(--cuaternary);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .3s ease;
  color: white;
  line-height: 1.7em;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.m-content {
  margin-top: 70px;
}

@media (min-width: 1400px) {
  .m-content {
    margin-top: 0;
  }
}

.gradient-post {
  position: relative;
}

.gradient-post:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: rgba(9 16 50 / 40%);
  z-index: 2;
  transition: .3s;
  opacity: 1;
}

.gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(180deg, rgba(9 16 50 / 0%) 10%, rgba(9 16 50 / 80%) 90%);
  z-index: 2;
  transition: .3s;
  opacity: 1;
}

.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: 1400px) {
  .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;
  }
}

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

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

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

.scrolling-wrapper-md::-webkit-scrollbar {
  display: none;
}

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

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

.shadow-card {
  box-shadow: 0 2px 9px rgba(0 0 0 / 10%);
}

.text-shadow {
  text-shadow: 0 1px 6px rgba(0 0 0 / 20%);
}

.sticky {
  z-index: 1;
  top: 130px;
}

/* Styles */

header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 15px;
}

#header {
  width: 95%;
  background: transparent;
  border-radius: 50px;
  box-shadow: 0 0 0 rgba(0 0 0 / 0%);
  transition: .3s ease;
}

@media (min-width: 768px) {
  #header {
    width: 98%;
  }
}

#header.active {
  background: var(--cuaternary);
  box-shadow: 0 2px 9px rgba(0 0 0 / 10%);
}

#back-header {
  position: relative;
}

.header-title {
  border-radius: 0 0 50px 50px;
}

.back-nav {
  width: 98%;
  height: 115px;
  background: var(--cuaternary);
  border-radius: 0 0 50px 50px;
}

.backgound-nav {
  position: relative;
  width: 100%;
  height: auto;
}

.backgound-nav img {
  width: 100%;
  min-height: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 50px 50px;
}

@media (min-width: 992px) {
  .backgound-nav img {
    height: 300px;
  }
}

.back-nav-img.losst img {
  height: 500px;
}

.back-nav-img {
  position: relative;
  width: 100%;
  z-index: 1;
  background: var(--cuaternary);
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.back-nav-img.losst {
  position: absolute;
  width: 100%;
  height: 100%;
}

.back-nav-content {
  position: absolute;
  color: white;
  z-index: 2;
  top: 130px;
  text-shadow: 0 1px 9px rgba(0 0 0 / 20%);
}

@media (min-width: 992px) {
  .back-nav-content {
    top: 150px;
  }
}

.back-nav-content.losst {
  position: relative;
}

#footer {
  width: 95%;
  background: var(--cuaternary);
  border-radius: 30px;
  box-shadow: 0 2px 9px rgba(0 0 0 / 10%);
}

@media (min-width: 768px) {
  #footer {
    width: 98%;
  }
}

#navigation::-webkit-scrollbar {
  display: none;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  overflow: hidden auto;
  z-index: 9;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s;
  border-radius: 0 50px 50px 0;
  width: 95%;
  background: var(--quinary);
  padding: 50px 50px 20px 50px;
  scrollbar-width: none;
}

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

#navigation.open {
  transform: translate3d(0, 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;
}

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

#blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9 16 50 / 50%);
  backdrop-filter: saturate(180%) blur(15px);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  z-index: 6;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  visibility: hidden;
  opacity: 0;
  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;
}

#brand {
  position: relative;
}

#btn-menu {
  display: block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  transition: .3s ease;
  cursor: pointer;
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
}

#btn-menu:hover {
  background: var(--secondary);
}

.btn-close-modal {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--cuaternary);
  top: 25px;
  right: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: .3s ease;
  z-index: 3;
}

.btn-close-modal:hover {
  background: var(--primary);
}

#btn-close {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--primary);
  top: 25px;
  right: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
}

#btn-search a {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  transition: .3s ease;
  cursor: pointer;
}

#btn-search a:hover {
  color: var(--primary);
}

#btn-search a.active {
  color: white;
}

#btn-search a.active:hover {
  color: var(--primary);
}

#cover {
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}

@media (min-width: 992px) {
  #cover {
    border-radius: 0 0 80px 80px;
  }
}

.covers-slider {
  position: relative;
}

.covers-slider:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(180deg, rgba(9 16 50 / 0.95) 0%, rgba(9 16 50 / 0.85) 10%, rgba(9 16 50 / 0.5) 20%, rgba(9 16 50 / 0.15) 30%, rgba(9 16 50 / 0) 100%);
  z-index: 1;
  transition: .3s;
  opacity: 1;
}

@media (min-width: 768px) {
  .covers-slider:before {
    background: linear-gradient(180deg, rgba(9 16 50 / 0.95) 0%, rgba(9 16 50 / 0.85) 10%, rgba(9 16 50 / 0.5) 20%, rgba(9 16 50 / 0.15) 30%, rgba(9 16 50 / 0) 100%);
  }
}

.backgound-nav {
  position: relative;
}

.backgound-nav:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(180deg, rgba(9 16 50 / .9) 10%, rgba(9 16 50 / 0.85) 25%, rgba(9 16 50 / 0.8) 50%, rgba(9 16 50 / 0.7) 75%, rgba(9 16 50 / .6) 100%);
  z-index: 2;
  transition: .3s;
  opacity: 1;
  border-radius: 0 0 50px 50px;
}

.bg-slider-cover {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

.covers-slider.gradient-left:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(180deg, rgba(9 16 50 / 0.95) 0%, rgba(9 16 50 / 0.85) 40%, rgba(9 16 50 / 0.5) 70%, rgba(9 16 50 / 0.15) 90%, rgba(9 16 50 / 0) 100%);
  z-index: 1;
  transition: .3s;
  opacity: 1;
}

@media (min-width: 992px) {
  .covers-slider.gradient-left:after {
    background: linear-gradient(90deg, rgba(9 16 50 / 0.95) 0%, rgba(9 16 50 / 0.85) 40%, rgba(9 16 50 / 0.5) 70%, rgba(9 16 50 / 0.15) 90%, rgba(9 16 50 / 0) 100%);
  }
}

.covers-slider.gradient-bottom:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(0deg, rgba(15 25 70 / 0.95) 0%, rgba(15 25 70 / 0.85) 40%, rgba(15 25 70 / 0.5) 70%, rgba(15 25 70 / 0.15) 90%, rgba(15 25 70 / 0) 100%);
  z-index: 1;
  transition: .3s;
  opacity: 1;
}

@media (min-width: 992px) {
  .covers-slider.gradient-bottom:after {
    background: linear-gradient(0deg, rgba(15 25 70 / .9) 0%, rgba(15 25 70 / .3) 80%);
  }
}

@media (min-width: 1200px) {
  .bg-slider-cover {
    position: relative;
  }
}

.content-slider-cover {
  position: relative;
  z-index: 3;
}

@media (min-width: 1200px) {
  .content-slider-cover {
    position: absolute;
  }
}

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

/* Menu desktop */

.menu-desktop ul {
  display: flex;
  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 10px;
  padding: 5px 0;
  text-decoration: none;
  transition: .3s;
  color: white;
  font-weight: 800;
  font-size: 16px;
}

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

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

.menu-desktop.active ul li a {
  color: white;
}

.menu-desktop.active ul li a:hover {
  color: var(--primary);
}

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

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

.menu-desktop .menu-item .sub-menu {
  padding: 10px 20px;
  background: var(--cuaternary);
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(0 0 0 / 10%);
}

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

.menu-desktop .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 7px;
  color: var(--primary);
  right: -3px;
  cursor: pointer;
  width: 10px;
  height: 10px;
  font-weight: 600;
}

.menu-desktop .menu-item .sub-menu a {
  color: white;
  font-weight: 600;
}

.menu-desktop .menu-item.active a {
  color: var(--primary) !important;
}

.menu-desktop .menu-item .sub-menu a:hover {
  color: var(--primary);
}

/* menu mobile */

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

.menu-mobile ul li {
  margin: 5px 0;
  position: relative;
}

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

.menu-mobile a {
  font-size: 18px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
  font-weight: 800;
}

.menu-mobile a:hover {
  color: var(--primary);
  text-decoration: none;
}

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

.menu-mobile .sub-menu .menu-item {
  margin: 5px 0;
}

.menu-mobile .sub-menu a {
  font-size: 1em;
  color: white;
  padding: 5px 0;
  font-weight: normal;
  padding-left: 5px;
  font-weight: 600;
}

.menu-mobile .sub-menu a:hover {
  color: var(--primary);
  text-decoration: none;
}

.menu-mobile .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 1px;
  left: -15px;
  font-weight: normal;
  width: 10px;
  height: 10px;
  color: var(--primary);
}

.menu-mobile .menu-item.active a {
  color: var(--primary);
}

/* menu submenu */

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

.submenu ul li {
  margin: 5px 10px 5px 0;
}

.submenu a {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255 255 255 / 70%);
  text-decoration: none;
  transition: .3s ease;
}

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

/* -- */

.social-media {
  position: relative;
}

.social-media ul {
  margin: 0;
}

.social-media ul li {}

.social-media ul li a {
  display: block;
  color: white;
  text-decoration: none;
  transition: .3s ease;
}

.social-media ul li a:hover {
  color: var(--primary);
}

#btn-socialmedia {
  display: flex;
  position: relative;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  transition: .3s ease;
  cursor: pointer;
}

#btn-socialmedia:hover {
  color: var(--primary);
}

#btn-socialmedia.active {
  color: white;
}

#btn-socialmedia.active:hover {
  color: var(--primary);
}

.dropdown-socialmedia,
.dropdown-user {
  position: absolute;
  right: 0;
  top: 49px;
  display: flex;
  position: absolute;
  padding: 0px;
  background: var(--cuaternary);
  flex-direction: column;
  border-radius: 10px 10px 30px 30px;
  box-shadow: 0 2px 9px rgba(0 0 0 / 10%);
  overflow: hidden;
  height: 0;
}

.dropdown-socialmedia.open,
.dropdown-user.open {
  height: auto;
  padding: 10px;
  animation-duration: .3s;
  animation-fill-mode: both;
  animation-delay: .1s;
  animation-name: fadeIn;
}

.dropdown-socialmedia ul {
  margin-bottom: 0;
}

.dropdown-socialmedia ul li {
  margin: 10px 5px;
}

.dropdown-socialmedia ul li a {
  color: white;
  transition: .3s ease;
  transition: .3s ease;
}

.dropdown-socialmedia ul li a:hover {
  color: var(--primary);
}

#btn-user {
  display: flex;
  position: relative;
  width: auto;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  transition: .3s ease;
  cursor: pointer;
}

#btn-user:hover {
  color: var(--primary);
}

#btn-user.active {
  color: white;
}

#btn-user.active:hover {
  color: var(--primary);
}

.btn-profile a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: .3s ease;
  padding: 10px 5px;
  text-align: center;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.btn-profile a:hover {
  color: var(--primary);
}

.btn-profile.active a {
  color: white;
  transition: .3s ease;
}

.btn-profile.active a:hover {
  color: var(--primary);
}

.btn-profile.dropdown a {
  color: white;
}

.headline-section h2 {
  font-family: 'Fira Sans';
  font-weight: 800;
  font-size: calc(1.8rem + 1vw);
  color: var(--cuaternary);
}

.card-events {
  overflow: hidden;
}

.picture-card {
  position: relative;
  overflow: hidden;
}

.picture-card .date-card {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 10px;
  background: var(--undenary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  /*width: 60px;*/
  text-align: center;
}

.picture-card .date-card .month {
  color: white;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.picture-card .date-card .day {
  display: block;
  background: white;
  padding: 2px;
  border-radius: 6px;
}

.picture-card .date-card .year {
  display: block;
  color: white;
  margin-top: 5px;
  line-height: 1;
}

.picture-card .date-card.post {
  width: auto;
  top: 30px;
  left: 30px;
}

.title-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 3;
}

.title-card h2 {
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .title-card h2 {
    font-size: 20px;
  }
}

.title-card a {
  color: var(--nonary);
  text-decoration: none;
  line-height: 140%;
  transition: .3s ease;
}

.title-card a:hover {
  color: var(--nonary);
}

.time svg,
.place svg {
  width: auto;
  height: 15px;
  display: block;
  flex: none;
  color: var(--cuaternary);
}

.type {
  text-transform: uppercase;
}

.type svg {
  color: var(--primary);
}

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

.item-video {
  opacity: .6;
  transition: .3s ease;
}

.item-video:hover {
  opacity: 1;
}

.item-video.active {
  opacity: 1;
}

.post.video picture {
  position: relative;
}

.post.video picture::after {
  content: '';
  position: absolute;
  z-index: 3;
  font-size: 1.5em;
  top: calc(50% - 22.5px);
  left: calc(50% - 22.5px);
  width: 45px;
  height: 45px;
  background-image: url("../../assets/img/play.svg");
  background-position: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 1px 6px rgba(0 0 0 / 15%);
}

.card-testimonials {
  border-radius: 300px;
  box-shadow: 0 2px 9px rgba(0 0 0 / 10%);
  max-width: 800px;
}

.card-testimonials p {
  font-size: 13px !important;
}


.card-testimonials h3 {
  font-size: 16px !important;
}

.text-shape p {
  padding: 0;
}

@media (min-width: 360px) {
  .text-shape p {
    padding: 0 30px;
  }
}

@media (min-width: 420px) {
  .text-shape p {
    padding: 0 50px 50px 50px;
  }
}

@media (min-width: 768px) {
  .text-shape p {
    padding: 0;
  }
}

.lateral-gradients {
  position: relative;
}

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

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

.banner-img {
  background-image: url("https://conalog.org.mx/wp-content/uploads/2026/04/conalog_newsletter_001.webp");
  background-size: cover;
  background-position: center;
  clip-path: ellipse(100% 100% at 50% 0%);
  width: 100%;
  height: 200px;
}

@media (min-width: 768px) {
  .banner-img {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .banner-img {
    clip-path: ellipse(100% 80% at 0% 50%);
  }
}

@media (min-width: 992px) {
  .banner-img {
    clip-path: ellipse(100% 120% at 0% 50%);
  }
}

@media (min-width: 1200px) {
  .banner-img {
    clip-path: ellipse(100% 150% at 0% 50%);
  }
}

/* - */

.newsletter-img {
  background-image: url("https://conalog.org.mx/wp-content/uploads/2026/04/header-elconalog-newsletter.webp");
  background-size: cover;
  background-position: center;
  clip-path: ellipse(100% 100% at 50% 0%);
  width: 100%;
  height: 200px;
}

@media (min-width: 768px) {
  .newsletter-img {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .newsletter-img {
    clip-path: ellipse(100% 100% at 100% 10%);
  }
}

@media (min-width: 992px) {
  .newsletter-img {
    clip-path: ellipse(100% 100% at 120% 10%);
  }
}

@media (min-width: 1200px) {
  .newsletter-img {
    clip-path: ellipse(100% 150% at 100% 10%);
  }
}

.btn-send {
  background: var(--primary);
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: bold;
  margin: 0 10px;
  width: 100%;
  transition: .3s;
}

/* Ajuste exclusivo para el newsletter */
#newsletter .btn-send {
  margin: 0;
}

@media (min-width: 992px) {
  .btn-send {
    width: fit-content;
  }
}

.btn-send:hover {
  background: var(--secondary);
  color: white;
}

.btn-send.btn:active {
  background: var(--secondary);
  color: white;
  border-color: transparent;
}

.form input {
  width: 100%;
  height: 45px;
  border: solid 2px var(--primary);
  border-radius: 30px;
  padding: 0 15px;
  background: transparent;
  color: white;
}

.form input::placeholder {
  color: darkgray;
}

.ribbon {
  position: absolute;
  top: 35px;
  right: 0;
  width: 200px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
  border-radius: 5px 0 0 5px;
  z-index: 3;
  text-align: center;
}

.indicator {
  display: block;
  white-space: nowrap;
  color: white;
  background: var(--primary);
  padding: 4px 22px;
  transition: .3s ease;
  border-radius: 15px;
  width: fit-content;
  text-decoration: none;
  transition: .3s ease;
  font-size: .8em;
  text-transform: uppercase;
}

.indicator-blue {
  display: block;
  white-space: nowrap;
  color: white;
  background: var(--undenary);
  padding: 4px 22px;
  transition: .3s ease;
  border-radius: 15px;
  width: fit-content;
  text-decoration: none;
  transition: .3s ease;
  font-size: .8em;
  /* text-transform: uppercase; */
  text-align: center;
}

@media (min-width: 768px) {
  .indicator-blue {
    font-size: .9em;
  }
}

/* Pagination */

.pagination {
  font-style: normal;
  font-weight: 800;
  margin: 0;
}

.page-link {
  border: none;
  color: var(--cuaternary);
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 5px;
}

@media (min-width: 768px) {
  .page-link {
    width: 50px;
    height: 50px;
  }
}

.page-link:hover {
  color: white;
  background-color: var(--cuaternary);
}

.page-link:focus {
  color: white;
  background-color: var(--primary);
  border: none;
  box-shadow: none;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 50%;
}

.page-link.current {
  background: var(--primary);
  color: white;
}

.pagination-bg {
  font-style: normal;
  font-weight: 600;
}

.pagination-bg .page-link {
  border: none;
  color: white;
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 5px;
}

.pagination-bg .page-link:hover {
  color: white;
  background-color: var(--primary);
}

.pagination-bg .page-link:focus {
  color: white;
  background-color: var(--primary);
  border: none;
  box-shadow: none;
}

.pagination-bg .page-item:first-child .page-link,
.pagination-bg .page-item:last-child .page-link {
  border-radius: 50%;
}

.pagination-bg .page-link.current {
  background: var(--cuaternary);
  color: var(--primary);
}

.active>.page-link,
.page-link.active {
  background: var(--primary);
}

/* Single */

.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: 0px;
}

.wp-block-gallery {
  border-radius: 25px !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 p {
  font-size: 1em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  color: var(--septenary);
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
}

.single-content> :is(h1, h2, h3) {
  font-size: 1.6em;
  font-weight: 500;
  font-family: 'Fira Sans';
  color: var(--cuaternary);
  font-weight: 600;
}

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

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

.single-content> :is(h4, h5, h6) {
  font-size: 1.3em;
  padding: 0 15px;
  font-weight: 500;
  color: var(--cuaternary);
}

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

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

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

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

.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:after {
  left: -.5em;
  border-left-color: var(--cuaternary);
}

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

.single-content ul li:hover {
  background: #d5daf5;
}

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

@media (min-width: 992px) {
  .single-content ol {
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

.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: 5px;
}

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

.single-content ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--cuaternary);
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  vertical-align: middle;
  align-items: start;
  font-weight: bold;
  border-radius: 50%;
}

.single-content ol li:hover {
  background: #d5daf5;
}

.single-content .table-hover tbody tr {
  transition: .3s;
  border-bottom: solid 2px var(--cuaternary);
}

.single-content .table-hover tbody tr:hover {
  color: #212529;
  background-color: #d5daf5;
}

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

.table-hover>tbody>tr:hover>* {
  color: var(--septenary);
  background: transparent;
}

.single-content .table-striped tbody tr:nth-of-type(odd) {
  transition: .3s;
  border-bottom: solid 2px var(--cuaternary);
}

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

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

.single-content table thead {
  border-bottom: solid 4px var(--cuaternary);
  color: var(--primary);
}

.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.2rem;
  line-height: normal;
}

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

@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(--cuaternary);
  position: absolute;
  left: 15px;
  top: -5px;
  font-family: 'Fira Sans';
  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(--cuaternary);
  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(--cuaternary);
  }
}

.single-content .blockquote p {
  padding: 0 0 0 30px;
  font-weight: 500;
}

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

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: var(--cuaternary);
  font-weight: bold;
}

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

.single-content a {
  color: var(--cuaternary);
  text-decoration: none;
  background-color: transparent;
  text-decoration: none;
  transition: .3s ease;
}

.single-content a:hover {
  color: var(--cuaternary);
  background-size: 0% 2px;
}

.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 figure {
  display: block;
}

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

.single-content p+h6,
.single-content ul+h6 {
  margin-bottom: 0;
  font-weight: 800;
  color: var(--cuaternary);
  font-size: .9em;
  background: #d5daf5;
  padding: 15px 15px 5px 25px;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
}

.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: #d5daf5;
  color: var(--cuaternary) !important;
  padding: 0 15px 15px 15px;
  border-radius: 0 0 10px 10px;
  line-height: 120%;
}

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

.single-content h6+p a:hover {
  color: var(--undenary);
  text-decoration: none;
}

.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__content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--septenary);
}

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

.wp-block-media-text__content p {
  padding: 0 !important;
}

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

.wp-block-media-text {
  display: flex;
  margin-bottom: 30px;
  padding-right: 0;
  padding-left: 0;
}

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

@media (min-width: 992px) {
  .wp-block-media-text {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.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(--septenary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Fira Sans';
}

.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;
  aspect-ratio: 4 / 4;
  border-radius: 15px;
}

.wp-block-media-text a {
  background-size: 100% 2px;
}

.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,
.video-youtube {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
  width: 100%;
  background: var(--cuaternary);
}

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

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

.tags a {
  padding: 4px 15px;
  border-radius: 25px;
  border: solid 2px var(--denary);
  color: var(--cuaternary);
  background: var(--denary);
  text-decoration: none;
  font-size: .9em;
  transition: .3s ease;
  margin: 0 15px 10px 0;
  box-decoration-break: clone;
  white-space: nowrap;
  text-transform: capitalize;
}

.tags a:hover {
  border: solid 2px #d5daf5;
  background: #d5daf5;
}

#author img {
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
}

.author-picture {
  border: solid 3px white;
  border-radius: 50%;
}

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

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

.share ul li {
  margin: 0 10px;
}

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

.share ul li:first-child {
  margin-left: 0;
}

.share ul li:last-child {
  margin-right: 0;
}

.share a {
  color: var(--cuaternary);
  transition: .3s ease;
}

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

.add-event button {
  color: white;
  height: 60px;
  display: flex;
  justify-content: space-between;
}

.add-event button:hover {
  color: var(--primary);
}

.platform {
  width: 100%;
  height: 100vh;
}

#platform>* {
  margin: auto;
}

.forms input {
  height: 45px;
  border-radius: 30px;
  background: transparent;
  border: solid 2px var(--primary);
  color: white;
  padding: 15px;
}

.input-password {
  position: relative;
}

.loginPassword {
  position: relative;
}

.btn-password {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  font-size: 1.2em;
  color: var(--primary);
}

.forms .form-check input {
  height: 16px;
  width: 16px;
  padding: 6px;
  border-radius: 50%;
}

.form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgba(88, 169, 24, .25);
}

.forms input[type="checkbox"]:checked {
  background: var(--primary);
}

.form-check-input:checked {
  background: var(--secondary);
  border-color: var(--secondary);
}

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

.forms input::placeholder {
  color: darkgray;
}

.btn-form {
  display: flex;
  background: var(--primary);
  border: solid 2px var(--primary);
  padding: 10px 24px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  width: auto;
  border-radius: 30px;
  transition: .3s;
  justify-content: center;
  align-items: center;
}

.btn-form:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-form-blue {
  display: flex;
  background: var(--cuaternary);
  border: solid 2px var(--cuaternary);
  padding: 10px 24px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  width: auto;
  border-radius: 30px;
  transition: .3s;
  justify-content: center;
  align-items: center;
}

.btn-form-blue:hover {
  background: var(--undenary);
  border-color: var(--undenary);
}

.acces {
  background: var(--cuaternary);
}

.bg-card-membership {
  background: var(--cuaternary);
  border-radius: 0 0 2.5rem 2.5rem;
}

.card-membership {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .card-membership {
    min-height: 550px;
  }
}

@media (min-width: 1200px) {
  .card-membership {
    min-height: 600px;
  }
}

.card-selected {
  background: var(--cuaternary);
  padding: 10px;
  border-radius: 2rem 2rem 0 0;
  color: white;
}

.card-selected+.bg-card-membership {
  border: solid 3px var(--cuaternary);
}

/* Comparative */

.comparison {
  width: 100%;
}

.plan-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.plan-tab {
  cursor: pointer;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 2fr repeat(1, 1fr);
  gap: 0;
}

.comparison-col {
  display: none;
}

.comparison-col-features {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .comparison-col-features {
    font-size: 16px;
  }
}

.comparison-col-features span {
  padding-right: 15px;
}

.comparison-col.is-active {
  display: block;
}

@media (min-width: 992px) {
  .plan-tabs {
    display: none;
  }
}

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

@media (min-width: 992px) {
  .comparison-col {
    display: grid;
    background: transparent;
    border-radius: 30px;
    transition: .3s ease;
  }
}

.comparison-col div {
  width: 100%;
  height: 60px;
  border-bottom: solid 1px lightgray;
}

.comparison-col div:last-child {
  border-bottom: none;
}

.comparison-col.is-active {
  background: var(--denary);
  border-radius: 30px;
}

@media (min-width: 992px) {
  .comparison-col.is-active {
    background: transparent;
    border-radius: 30px;
  }
}

.comparison-col:hover {
  background: var(--denary);
}

.comparison-col.comparison-col-features:hover {
  background: transparent;
}

.plan-tabs {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

@media (min-width: 992px) {
  .plan-tabs {
    display: none;
  }
}

.plan-tabs .plan-tab {
  display: block;
  padding: 5px 15px;
  background: var(--denary);
  border-radius: 25px;
  transition: .3s ease;
}

.plan-tabs .plan-tab:hover {
  background: #d5daf5;
}

.plan-info {
  display: none;
}

.plan-info.is-active {
  display: block;
}

@media (min-width: 992px) {
  .plan-info.is-active {
    display: none;
  }
}

/* Collapse page */

.content-collapse {
  overflow: hidden;
}

.content-collapse> :is(h1, h2, h3, h4, h5, h6) {
  padding: 0;
  font-size: 1.4em;
}

.content-collapse>h2 {
  margin: 15px 0;
  color: var(--primary);
}

.content-collapse h3 {
  background-color: transparent;
  cursor: pointer;
  padding: 20px !important;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-bottom: 0;
  transition: .3s ease;
  position: relative;
  font-size: 22px;
  font-family: 'Fira Sans';
  color: var(--cuaternary);
  font-weight: 600;
}

.content-collapse h3:last-of-type {
  border-bottom: none;
}

.content-collapse h3.active,
.content-collapse h3:hover {
  background-color: var(--denary);
  color: var(--cuaternary);
}

.content-collapse h3:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
  font-size: 15px;
  color: var(--primary);
}

.content-collapse h3.active:after {
  content: "\2212";
  color: var(--cuaternary);
}

.content-collapse h3:hover:after {
  color: var(--primary);
}

.content-collapse p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 0;
  transition: .3s ease;
  border-bottom: solid 2px var(--denary);
  padding-left: 20px;
}

.content-collapse>p {
  /*overflow: hidden;*/
  max-height: 0;
  transition: max-height 0.3s ease;
}

.wp-block-heading.active+p {
  padding: 20px;
}

.backgound-nav-losst {
  position: relative;
}

.back-nav-img-losst {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  background: var(--cuaternary);
}

.back-nav-img-losst img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-nav-content-losst {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 120px;
  z-index: 4;
}

@media (min-width: 992px) {
  .back-nav-content-losst {
    margin-top: 150px;
  }
}

.back-nav-content-losst h1 {
  font-size: calc(6rem + 3vw);
  font-weight: 800;
  font-family: 'Fira Sans';
  color: white;
}

.backgound-nav-losst:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: linear-gradient(180deg, rgba(9 16 50 / .9) 10%, rgba(9 16 50 / 0.8) 25%, rgba(9 16 50 / 0.7) 50%, rgba(9 16 50 / 0.6) 75%, rgba(9 16 50 / .5) 100%);
  z-index: 2;
  transition: .3s;
  opacity: 1;
  border-radius: 0 0 50px 50px;
}

.bg-covers img {
  transition: opacity 0.6s ease;
  opacity: 1;
}

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

/* 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: 27.5px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--cuaternary);
  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(--cuaternary);
}

.tab-switch .tab.active {
  color: #ffffff;
}

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

.tab-content {
  display: none;
}

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

#area-search {
  margin-top: 30px;
  position: relative;
  z-index: 3;
}

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

.search {
  max-width: 800px;
  width: 100%;
  border-radius: 50px;
}

.form-search button {
  color: var(--primary);
  border: none;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  display: flex;
  margin: 5px;
  transition: .3s ease;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 30px;
  transition: .3s;
}

.form-search button:hover {
  color: var(--tertiary);
}

.form-search input {
  background: transparent;
  border: none;
}

.form-search input::placeholder {
  color: gray;
}

.form-search input:-internal-autofill-selected {
  border-radius: 30px;
  height: 42px;
  background: transparent;
  margin: auto;
}

.btn-send-search {
  display: flex;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  font-weight: bold;
  margin: 0 10px;
  transition: .3s;
}

.btn-send-search:hover {
  background: var(--secondary);
  color: white;
}

.btn-send-search.btn:active {
  background: var(--secondary);
  color: white;
  border-color: transparent;
}

.drectory-brand img {
  max-width: 300px;
  height: 182px;
  object-fit: contain;
}

.membership-content {
  font-size: 15px;
}

.check,
.plus {
  display: flex;
  width: 20px;
  height: 20px;
  margin: 0px 10px 0 0;
}

.plus {
  color: var(--undenary);
}

.check img {
  width: 20px;
  height: 20px;
  display: flex;
}

.membership-points {
  background: #f7f8ff;
}

.membership-list {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.membership-content a {
  color: var(--cuaternary);
  transition: .3s ease;
}

.membership-content a:hover {
  color: var(--primary);
}

.back-nav-content-losst {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 120px;
  z-index: 4;
}

.back-nav-content-title {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 130px;
  z-index: 4;
}

@media (min-width: 992px) {
  .back-nav-content-title {
    margin-top: 150px;
  }
}

.card-advisor {
  max-width: 350px;
  position: relative;
}

.card-advisor-img {
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  overflow: hidden;
}

.card-advisor-content {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  z-index: 2;
  border-radius: 0 0 2.5rem 2rem;
}

.btn-plus a {
  display: flex;
  width: 45px;
  height: 45px;
  color: var(--bs-white);
  justify-content: center;
  align-items: center;
}

.advisort-sheet p:last-child,
.associated-sheet p:last-child {
  margin-bottom: 0;
}

.socialmedia-advisor a,
.socialmedia-associated a {
  display: flex;
  width: 45px;
  height: 45px;
  background: var(--cuaternary);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  transition: .3s ease;
}

.socialmedia-advisor a:hover,
.socialmedia-associated a:hover {
  background: var(--primary);
}

.socialmedia-directory a {
  display: flex;
  width: 35px;
  height: 35px;
  background: var(--undenary);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  transition: .3s ease;
}

.socialmedia-directory a:hover {
  background: var(--primary);
}

.advisort-sheet p,
.advisort-associated p {
  font-weight: 500;
}

.card-about-title {
  position: relative;
  overflow: hidden;
}

.card-value {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.card-about-title:after {
  content: "";
  position: absolute;
  top: -110px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--undenary);
}

.icon-value {
  display: flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  margin-left: -20px;
}

.objective-list {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.objective-list:last-child {
  margin-bottom: 0;
  padding: 0;
}

#whatsaap {
  position: fixed;
  z-index: 5;
  bottom: 10px;
  right: 10px;
}

@media (min-width: 768px) {
  #whatsaap {
    bottom: 10px;
    right: 10px;
  }
}

.btn-whatsapp {
  display: block;
  width: 50px;
  height: 50px;
  background: #22d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 15%);
  transition: .3s;
  font-size: 25px;
  color: white;
}

.btn-whatsapp:hover {
  background: #22d366;
}

#whatsaap a {
  text-decoration: none;
  color: black;
}

#whatsaap:hover>a {
  color: var(--septenary);
}

.blocked-banner {
  position: absolute;
  width: 100%;
  height: auto;
  background: var(--cuaternary);
  padding: 50px 30px;
  left: 0;
  bottom: 0;
  transition: .6s ease;
  border-radius: 50px 50px 0 0;
}

#blocked {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(9 16 50 / 50%);
  backdrop-filter: saturate(180%) blur(5px);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  top: 0;
  left: 0;
  z-index: 6;
}

.blocked-banner {
  position: absolute;
  width: 100%;
  height: auto;
  background: var(--cuaternary);
  color: white;
  padding: 50px 30px;
  left: 0;
  bottom: 0;
  transition: .6s ease;
}

.results-directory {
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.btn-file a,
.btn-small a {
  display: block;
  padding: 7px 20px;
  background: var(--undenary);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  max-width: 200px;
  min-width: 200px;
  transition: .3s ease;
}

.btn-file a:hover,
.btn-small a:hover {
  background: var(--cuaternary);
}

.btn-file-contact a {
  display: block;
  padding: 7px 20px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  min-width: 200px;
  transition: .3s ease;
}

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

.data-job {
  font-size: 13px;
  color: gray;
  display: flex;
}

.single-jobs> :is(h1, h2, h3, h4, h5, h6) {
  font-size: 1.2em;
  font-weight: 500;
  color: var(--cuaternary);
  font-weight: 800;
  font-family: 'Fira Sans';
  margin-bottom: 15px;
}

.single-jobs a {
  color: var(--primary);
}

.abecedary {
  background: var(--denary);
  padding: 10px 0;
  border-radius: 30px;
  overflow: hidden;
}

.abecedary a {
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: 'Fira Sans';
  font-weight: 700;
  color: var(--cuaternary);
  border-radius: 50%;
  background: transparent;
  transition: .3s ease;
  text-transform: uppercase;
}

.abecedary a:hover,
.abecedary a.active {
  background: #edeef4;
}

.abecedary ul li {
  margin: 0 !important;
}

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

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

.scrolling-wrapper-list>li {
  flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper-list>li>a {
  white-space: nowrap;
}

.scrolling-wrapper-list::-webkit-scrollbar {
  display: none;
}

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

.scrolling-wrapper-list>li>a.active {
  pointer-events: none;
}

.words {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #ddd;
}

.words-headline h2 {
  font-size: calc(2rem + 2vw);
  font-weight: 800;
  font-family: 'Fira Sans';
  color: #d1d5e3;
}

.scroll-target {
  scroll-margin-top: 180px;
}

.single-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.single-content ul {
  background: transparent !important;
}



.socialmedia-associated .green a {
  background: var(--primary);
}

.socialmedia-associated .green a:hover {
  background: var(--secondary);
}

/* Newsletter mailchimp */
#newsletter .mc4wp-form,
#newsletter .mc4wp-form-fields {
  width: 100%;
}

#newsletter .mc4wp-form-fields>div {
  width: 100%;
}

@media (min-width: 992px) {
  #newsletter .mc4wp-form-fields>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  #newsletter .mc4wp-form-fields input[type="email"] {
    width: auto !important;
    flex: 1 1 auto;
    min-width: 0;
  }

  #newsletter .mc4wp-form-fields .btn-send {
    width: fit-content;
    margin: 0;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}



.woocommerce .col2-set .col-1 {
  width: 100% !important;
}

.related.products {
  display: block;
  margin-top: 51px;
}

.related.products>h2 {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.related.products>ul.products {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;

}

@media (max-width: 992px) {
  .related.products>ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));

  }
}

@media (max-width: 576px) {
  .related.products>ul.products {
    grid-template-columns: 1fr;

  }
}

.related.products>ul.products>li.product {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.product img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;

}

.product a {
  text-decoration: none;
  color: black;
}

.woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 992px) {
  .woocommerce-loop-product__title {
    font-size: 20px;
    font-weight: bold;
  }
}

.product_type_simple {
  display: block;
  color: white !important;
  background: var(--undenary);
  padding: 15px 22px;
  transition: .3s ease;
  border-radius: 35px;
  width: fit-content;
  text-decoration: none;
  transition: .3s ease;
  font-size: .8em;
  margin-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  transition: .3s ease;
}

.product_type_simple:hover {
  background: var(--cuaternary);
}

.price {
  margin-bottom: 15px;
}

.woocommerce-LoopProduct-link {
  margin-bottom: 15px;
}

.product-content {
  margin: 50px 0;
}

.woocommerce-product-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 15px;
}

.woocommerce-tabs {
  display: block;
}

.woocommerce-tabs .wc-tabs {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-tabs .wc-tabs>li {
  display: block;
}

.woocommerce-tabs .wc-tabs>li>a {
  display: block;
}

.woocommerce-Tabs-panel {
  display: none;
}

.woocommerce-Tabs-panel.active,
.woocommerce-Tabs-panel[style*="display: block"] {
  display: block;
}

.woocommerce-tabs {
  margin-top: 50px;
}

.wc-tabs {
  display: none !important;
}

.product_meta a {
  color: var(--quinary);
}

.product_meta a:hover {
  color: var(--undenary);
}

form.cart {
  display: flex;
  align-items: flex-end;
}

form.cart .quantity {
  display: flex;
  flex-direction: column;
}

form.cart .single_add_to_cart_button {
  display: block;
}

.input-text.qty {
  max-width: 50px;
  margin-right: 15px;
  height: 45px;
}

.single_add_to_cart_button,
.checkout-button {
  display: block;
  color: white !important;
  background: var(--undenary);
  padding: 14px 22px;
  transition: .3s ease;
  border-radius: 25px;
  width: fit-content;
  text-decoration: none;
  transition: .3s ease;
  font-size: .8em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: .3s ease;
}

single_add_to_cart_button:hover,
.checkout-button:hover {
  background: var(--cuaternary);
}

.cart {
  margin-bottom: 15px;
}

.product-name a {
  text-decoration: none;
  color: var(--undenary);
}


:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt {
  background: var(--undenary) !important;
  border-radius: 25px !important;
}

.page-title {
  display: block;
  text-align: center;
}

.term-description {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.woocommerce-notices-wrapper {
  display: block;
}

.woocommerce-result-count {
  display: block;
  text-align: center;
}

.woocommerce-ordering {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;

}

.woocommerce-ordering .orderby {
  background: #e2e5f1;
  border: none;
  padding: 5px;
  border-radius: 10px;
}

ul.products {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
}

@media (max-width: 992px) {
  ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  ul.products {
    grid-template-columns: 1fr;
  }
}

ul.products>li.product {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.woocommerce-message {
  border-top-color: var(--primary) !important;
}

.woocommerce-message::before {
  color: var(--primary) !important;
}

.select2-container {
  width: 100% !important;
}





.woocommerce input {
  background: transparent !important;
  border-radius: 30px !important;
  height: 45px !important;
  color: var(--cuaternary) v;
  padding: 0 15px !important;
}

.woocommerce .input-radio {
  height: inherit !important;
}

.woocommerce input::placeholder {
  color: darkgray !important;
}

.woocommerce .form-control {
  border: solid 1px #dddddd !important;
}

.woocommerce .form-control:focus {
  color: var(--cuaternary) !important;
}

.woocommerce .form-check-input {
  width: 17.59px !important;
  height: 17.59px !important;
  padding: 0 !important;
  border: solid 2px #dddddd !important;
}

.woocommerce .form-select {
  background: transparent !important;
  border-radius: 30px !important;
  height: 45px !important;
  border: solid 1px #dddddd !important;
}

.woocommerce textarea {
  border-radius: 20px !important;
  border: solid 1px #dddddd !important;
  background: transparent !important;
  padding: 15px !important;
}

.woocommerce textarea::placeholder {
  color: darkgray !important;
  font-family: 'Red Hat Display' !important;
  line-height: normal !important;
  letter-spacing: 1px !important;
}

.woocommerce h5 {
  font-family: 'Fira Sans' !important;
  font-weight: 600 !important;
}

.woocommerce .select-wrapper {
  position: relative !important;
}

.woocommerce .select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
}

.woocommerce .select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
}

.checkout.woocommerce-checkout {
  padding: 30px;
  background: white;
  border-radius: 30px;
}


.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit !important;
  padding-left: 15px;
  color: var(--cuaternary);
}

.woocommerce .select2-container .select2-selection--single {
  height: 45px !important;
}


.woocommerce-error a {
  color: var(--undenary) !important;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
  display: block;
  color: white !important;
  background: var(--undenary);
  padding: 14px 22px;
  transition: .3s ease;
  border-radius: 25px;
  width: fit-content;
  text-decoration: none;
  transition: .3s ease;
  font-size: .8em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: .3s ease;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
  background-color: var(--cuaternary);
}

.woocommerce-terms-and-conditions-wrapper a {
  color: var(--primary) !important;
}

.woocommerce-bacs-bank-details h2,
.woocommerce-bacs-bank-details h3 {
  font-size: 18px !important;
  margin-bottom: 15px;
}

.woocommerce-bacs-bank-details h3 {
  font-weight: bolder !important;
}


/* -*/

.woocommerce-order {
  display: flex;
  flex-direction: column;
}

.woocommerce-order>.woocommerce-notice {
  display: block;
}

.woocommerce-order-overview {
  display: grid;
  grid-template-columns: none;
}

.woocommerce-order-overview>li {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.woocommerce-order>p {
  display: block;
}

.woocommerce-bacs-bank-details {
  display: flex;
  flex-direction: column;
}

.wc-bacs-bank-details-heading {
  display: block;
}

.wc-bacs-bank-details-account-name {
  display: block;
}

.wc-bacs-bank-details {
  display: grid;
  grid-template-columns: none;
}

.wc-bacs-bank-details>li {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.woocommerce-order {
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.wc-bacs-bank-details {
  margin-top: 30px !important;
}

.woocommerce-cart-form__cart-item .input-text.qty {
  max-width: inherit !important;
  margin-right: inherit !important;
  height: inherit !important;
}

/* video slider */

.video-slider video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .video-slider video {
    position: relative;
  }
}

/* Especial Logistica 360 */

.especial-360 {
  background: linear-gradient(180deg, #f3f5fc 0%, #eceef8 100%);
}

.especial-360 p {
  line-height: 1.55;
}

.especial-360-featured {
  padding-bottom: 0 !important;
}

.especial-360-featured-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.especial-360-hero {
  padding: 80px 0 40px;
}

.especial-360-hero-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  border-radius: 40px;
  padding: 48px 28px;
  color: white;
  background: radial-gradient(circle at top left, #2a3b87 0%, #0f1946 58%, #091032 100%);
  box-shadow: 0 20px 50px rgba(15, 25, 70, 0.25);
}

.especial-360-logo-wrap {
  max-width: 340px;
  margin: 0 auto 30px;
  padding: 16px;
  border-radius: 24px;
  background: white;
}

.especial-360-hero h1 {
  margin-bottom: 12px;
  font-family: "Fira Sans";
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
}

.especial-360-subtitle {
  margin-bottom: 16px;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #cbe4b7;
}

.especial-360-lead {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.especial-360-intro p:last-child {
  margin-bottom: 0;
}

.especial-360-facts {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.especial-360-fact-item {
  background: white;
  border-radius: 20px;
  padding: 14px 18px;
  border: 1px solid #dde2f3;
}

.especial-360-fact-label {
  display: block;
  color: var(--senary);
  font-size: 0.8rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.especial-360-module-title {
  margin-bottom: 16px;
  color: var(--cuaternary);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-family: "Fira Sans";
  font-weight: 700;
}

.especial-360-sessions {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
}

.especial-360-sessions li {
  padding: 16px;
  border-radius: 18px;
  background: #f7f8fd;
  border: 1px solid #e4e8f5;
}

.especial-360-session-date {
  font-weight: 700;
  color: var(--cuaternary);
  display: inline-block;
  margin-bottom: 4px;
}

.especial-360-sessions p {
  margin-bottom: 0;
}

.especial-360-label {
  margin-bottom: 10px;
  color: var(--cuaternary);
  font-family: "Fira Sans";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.especial-360-instructor-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #dbe0f1;
  background: white;
}

.especial-360-instructor-photo {
  max-width: 320px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.especial-360-instructor-photo img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.especial-360-instructor-content {
  padding: 22px;
}

.especial-360-instructor-content h4 {
  margin-bottom: 8px;
  font-family: "Fira Sans";
  color: var(--cuaternary);
  font-weight: 700;
}

.especial-360-instructor-content a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

.especial-360-instructor-content a:hover {
  color: var(--primary);
}

.especial-360-instructor-content ul {
  margin: 0;
  padding-left: 20px;
}

.especial-360-instructor-content li {
  margin-bottom: 8px;
}

.especial-360-price-grid {
  display: grid;
  gap: 16px;
}

.especial-360-price-item {
  border: 1px solid #dbe1f3;
  border-radius: 24px;
  padding: 20px;
  background: #f7f8fd;
}

.especial-360-price-item h3,
.especial-360-module-price h3 {
  margin-bottom: 10px;
  color: var(--cuaternary);
  font-family: "Fira Sans";
  font-size: 1.1rem;
  font-weight: 700;
}

.especial-360-price {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.especial-360-price-item ul,
.especial-360-contacto ul {
  margin: 0;
  padding-left: 20px;
}

.especial-360-price-item li,
.especial-360-contacto li {
  margin-bottom: 7px;
}

.especial-360-module-price p {
  margin-bottom: 6px;
}

.especial-360-module-price small {
  color: var(--senary);
}

.especial-360-contacto a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

.especial-360-contacto a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .especial-360-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .especial-360-instructor-card {
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    align-items: center;
  }

  .especial-360-instructor-photo {
    max-width: none;
    padding: 22px;
  }

  .especial-360-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Especial Certificaciones APICS ASCM */

.especial-apics {
  background: linear-gradient(180deg, #eef2fc 0%, #eceef8 100%);
}

.especial-apics-hero {
  padding: 80px 0 40px;
}

.especial-apics-hero-card {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 38px;
  background: radial-gradient(circle at top right, #1f3a89 0%, #0f1946 58%, #091032 100%);
  color: #fff;
  padding: 42px 26px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(9, 16, 50, 0.27);
}

.especial-apics-logo-wrap {
  max-width: 540px;
  margin: 0 auto 30px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fff;
}

.especial-apics-hero h1 {
  margin-bottom: 14px;
  font-family: "Fira Sans";
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
}

.especial-apics-lead {
  max-width: 860px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
}

.especial-apics-highlight {
  margin-bottom: 0;
  color: #cbe4b7;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  font-weight: 700;
}

.especial-apics-intro p:last-child {
  margin-bottom: 0;
}

.especial-apics-cards-grid,
.especial-apics-fit-grid,
.especial-apics-dates-grid {
  display: grid;
  gap: 16px;
}

.especial-apics-mini-card,
.especial-apics-fit-card,
.especial-apics-date-card {
  padding: 22px;
  border: 1px solid #dbe1f3;
}

.especial-apics-code {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #d7e8ca;
  color: var(--secondary);
  font-family: "Fira Sans";
  font-weight: 800;
  letter-spacing: 0.8px;
  font-size: 0.8rem;
}

.especial-apics-mini-card h3,
.especial-apics-fit-card h3,
.especial-apics-date-card h3,
.especial-apics-panel h3 {
  margin-bottom: 10px;
  color: var(--cuaternary);
  font-family: "Fira Sans";
  font-size: 1.1rem;
  font-weight: 700;
}

.especial-apics-mini-card p,
.especial-apics-fit-card p {
  margin-bottom: 0;
}

.especial-apics-detail {
  border: 1px solid #dbe1f3;
}

.especial-apics-title {
  margin-bottom: 6px;
  font-family: "Fira Sans";
  color: var(--secondary);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.95rem);
}

.especial-apics-subtitle {
  margin-bottom: 14px;
  color: var(--cuaternary);
  font-family: "Fira Sans";
  font-weight: 700;
}

.especial-apics-panel {
  height: 100%;
  border: 1px solid #dbe2f4;
  border-radius: 24px;
  background: #f7f9ff;
  padding: 20px;
}

.especial-apics-panel ul,
.especial-apics-fit-card ul,
.especial-apics-date-card ul,
.especial-apics-contact ul {
  margin: 0;
  padding-left: 20px;
}

.especial-apics-panel li,
.especial-apics-fit-card li,
.especial-apics-date-card li,
.especial-apics-contact li {
  margin-bottom: 8px;
}

.especial-apics-contact a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

.especial-apics-contact a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .especial-apics-cards-grid,
  .especial-apics-fit-grid,
  .especial-apics-dates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .especial-apics-cards-grid,
  .especial-apics-fit-grid,
  .especial-apics-dates-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
