:root {
  --primary: #fca669;
  --secondary: #152c3c;
  --tertiary: #ff9b55;
  --cuaternary: #F6F1E8;
}

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

body {
  font-family: 'Montserrat';
  font-size: 1.1em;
}

/* Animation */

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

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

@keyframes fadeLeftRight {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

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

.fadeLeftRight {
  animation-name: fadeLeftRight;
  animation-duration: 2s;
}

@keyframes fadeToTop {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

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

.fadeToTop {
  animation-name: fadeToTop;
  animation-duration: 2s;
}

@keyframes bottomToTop {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.bottomToTop {
  animation-name: bottomToTop;
  animation-duration: .3s;
}

/* Framework */

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

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

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

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

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

.fnt-xs {
  font-size: .6rem;
}

.fnt-sm {
  font-size: .8rem;
}

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

.fnt-lg {
  font-size: 1.2rem;
}

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

.fnt-headline {
  font-size: 2rem;
  text-shadow: 0 9px 18px rgba(0 0 0 / 35%);
}

@media (min-width: 768px) {
  .fnt-headline {
    font-size: 2.6rem;
  }
}

@media (min-width: 1200px) {
  .fnt-headline {
    font-size: 3.6rem;
  }
}

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

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

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

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

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

.btn-first a:hover {
  background: var(--tertiary);
}

.btn-nav {
  display: flex;
  width: 40px;
  height: 40px;
  background: var(--primary);
  text-align: center;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: .3s ease;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.btn-nav:hover {
  background: var(--tertiary);
}

.sticky {
  z-index: 2;
}

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

.less-content {
  margin-top: -100px;
}

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

.aspect {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
}

.aspect img {
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.aspect-4-4 {
  padding-top: 100%;
}

.aspect-4-3 {
  padding-top: 75%;
}

.aspect-16-9 {
  padding-top: 56.25%;
}

.aspect-responsive {
  padding-top: 40%;
}

@media (min-width: 992px) {
  .aspect-responsive {
    padding-top: 56.25%;
  }
}

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

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

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

/* Styles */

header {
  width: 100%;
  top: 0;
  z-index: 2;
}

#brand {
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: .3s ease;
}

#brand.active {
  width: 50px;
}

#brand img {
  width: 250px;
  height: auto;
  transition: .3s ease;
}

@media (min-width: 992px) {
  #brand img {
    width: 300px;
    height: auto;
  }
}

#brand.active img {
  width: 200px;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  overflow: hidden auto;
  width: 95%;
  z-index: 999;
  transition: transform 0.6s;
  transform: translate3d(-100%, 0, 0);
}

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

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

#navigation .efect-navigation {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

#navigation.open .efect-navigation {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.bloker {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(21 44 60 / 80%);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: .3s ease;
  top: 0;
  cursor: crosshair;
}

.bloker.open {
  visibility: visible;
  opacity: 1;
}

.hedline {
  position: relative;
}

.hedline-picture {
  position: relative;
}

.hedline-picture::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;
}

.hedline-picture img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hedline-picture img {
    height: 650px;
  }
}

.hedline-title {
  position: absolute;
}

/* Menu desktop */

.menu-desktop .menu-item {
  position: relative;
  white-space: nowrap;
}

.menu-desktop ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 3;
}

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

.menu-desktop ul li a {
  display: flex;
  position: relative;
  margin: 0px 10px;
  padding: 5px 2px;
  text-decoration: none;
  color: white;
  transition: .3s;
  white-space: nowrap;
  text-transform:uppercase;
}

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

.menu-desktop .menu-item.active a {
  color: var(--primary);
  font-weight: bold;
}

.menu-desktop .menu-item .sub-menu a {
  color: white;
  font-size: 16px;
  font-weight: normal;
}

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

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

.menu-desktop .menu-item-has-children::before {
  content: "+";
  position: absolute;
  z-index: 8;
  right: -4px;
  top: 4px;
  font-weight: bold;
  color: var(--primary);
}

.menu-desktop ul li a:hover+ul,
.menu-desktop ul li ul:hover {
  display: flex;
  position: absolute;
  padding: 20px 30px;
  background: var(--secondary);
  flex-direction: column;
}

/* 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;
  padding-left: 10px;
}

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

.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: 15px 0;
  font-weight: normal;
  padding-left: 5px;
}

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

.menu-mobile .sub-menu .menu-item a:hover {
  background-size: 0% 2px;
  color: var(--cuaternary);
}

.menu-mobile .sub-menu .menu-item:first-child {
  padding: 5px 0 0 0;
}

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

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

/* -- */

.social-media a {
  display: flex;
  width: 35px;
  height: 35px;
  font-size: 1.3em;
  justify-content: center;
  align-items: center;
  color: white;
  transition: .3s ease;
}

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

/* Slider */

.swiper {
  width: 100%;
  padding: 50px 0;
  z-index: 0;
}

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

.swiper-button-next,
.swiper-button-prev {
  color: white;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next {
  right: calc(30% - 100px);
  top: inherit;
  bottom: 0;
}

.swiper-button-next:after {
  margin-left: 5px;
}

.swiper-button-prev {
  left: calc(30% - 100px);
  top: inherit;
  bottom: 0;
}

.swiper-button-prev:after {
  margin-right: 5px;
}

.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.card-service {
  position: relative;
  width: 100%;
}

/* --- */

.picture-card-service {
  position: relative;
}

.picture-card-service::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: 1;
  pointer-events: none;
}

.content-card-service {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.content-card-service .icon {
  width: 2.8em;
  height: 2.69em;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.content-card-service a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: normal;
  transition: .3s ease;
}

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

.card-service:hover>.content-card-service a {
  color: var(--primary);
}

/* Forms */

#formulario {
  position: relative;
}

#formulario input {
  margin-bottom: 20px;
  height: 45px;
  border: none;
}

#formulario textarea {
  margin-bottom: 20px;
  border: none;
  height: 150px;
}

#formulario .btn-submit {
  font-weight: bold;
  display: block;
  background: var(--primary);
  text-align: center;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: .3s ease;
  width: 100%;
  height: 45px;
}

#formulario .btn-submit:hover {
  background: var(--tertiary);
}

#formulario label {
  display: none;
  position: absolute;
}

#formulario br {
  display: none;
}

.map iframe {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: solid 2px var(--primary);
}

.map {
  aspect-ratio: 4/3;
}

/* 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: 15px !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-size: 1em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 0;
  position: relative;
  color: var(--nonary);
}

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

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

@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;
  padding: 0 15px;
  font-weight: 500;
  color: var(--primary);
}

@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 {
  padding: 0 10px;
  margin-bottom: 30px;
}

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

.single-content figure img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 10px;
  margin-bottom: 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(--cuaternary);
}

.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: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 100%;
}

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

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

.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: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 15px;
}

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

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

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

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

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

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

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

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

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

.single-content .blockquote p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: normal;
}

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

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

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

.single-content blockquote::before {
  content: "\201C";
  font-size: 4em;
  color: var(--primary);
  position: absolute;
  left: 15px;
  top: -5px;
  font-family: 'arial';
  z-index: 0;
  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);
  }
}

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

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

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

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

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

.single-content p+h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--secondary);
  font-size: .9em;
  background: var(--cuaternary);
  padding: 15px 15px 5px 15px;
  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: var(--cuaternary);
  padding: 0 15px 15px 15px;
  border-radius: 0 0 10px 10px;
}

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

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

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

@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 {
  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(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

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

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

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

.wp-block-media-text a {
  background-size: 0% 3px;
}

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

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

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

/* - */

.feet {
  background: #0b1a25;
}

.proximamente {
  padding: 100px 0px;
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.redes-sociales {
  display: flex;
  list-style: none;
  padding: 0;
}

.social-media ul {
  display: flex;
  list-style: none;
  gap: .5rem;

}

#menu-menu-footer a,
#social-media a {
  color: white;
  text-decoration: none;
  transition: .3s ease;
}

#menu-menu-footer a:hover,
#social-media a:hover {
  color: var(--primary);
}

.single-especializaciones h3 {
  font-size: 1.1em;
  font-weight: bold;
}

.single-especializaciones ul {
  position: relative;
  /*list-style-type: square;*/
  list-style: none;
  padding-left: 0;
}

.single-especializaciones ul li {
  position: relative;
  border-bottom: solid 2px var(--primary);
  padding: 14px 0;
  padding-left: 30px;
}

.single-especializaciones ul li:first-child {
  border-top: solid 4px var(--primary);
}

.single-especializaciones ul li::before {
  content: '✔';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  position: absolute;
  top: calc(50% - 11px);
  left: 0;
  font-size: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.excerpt p {
  margin-top: 0px;
  margin-bottom: 0px;
}

/*estilos WP*/
.has-text-align-left {
  text-align: start;
}

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

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

.is-content-justification-right {
  display: flex;
  justify-content: right;
}

.is-content-justification-center {
  display: flex;
  justify-content: center;
}

.is-content-justification-left {
  display: flex;
  justify-content: left;
}

.wp-block-button .wp-block-button__link {
  width: fit-content;
  font-weight: bold;
  display: block;
  background: var(--primary);
  color: white;
  padding: 8px 30px;
  border-radius: 25px;
  text-decoration: none;
  /*transition: .3s ease;*/
}

.wp-block-button .wp-block-button__link:hover {
  background: var(--tertiary);
  border: 0;
  color: white;
}

/* */

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

.wp-block-gallery {
  border: solid 1px var(--secondary);
}

.wp-block-button a {
  width: fit-content;
  font-weight: bold;
  display: block;
  background: var(--primary);
  color: white;
  padding: 8px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: .3s ease;
}

.wp-block-button a:hover {
  background: var(--tertiary);
  color: white;
  border: 0;
}

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

.has-background {
  background: var(--cuaternary) !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

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

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

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

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

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

.single-content blockquote.tiktok-embed {
  border: none;
  margin-left: calc(50% - 300px);
}

@media (min-width: 768px) {
  .single-content blockquote.tiktok-embed {
    margin-left: calc(50% - 300px);
  }
}

.twitter-tweet {
  margin: auto;
}

.wp-block-quote cite {
  margin: 0;
  padding-right: 20px !important;
  color: var(--secondary);
  width: 100%;
  display: inline-block;
  text-align: end;
  font-size: 18px;
}

@media (min-width: 992px) {
  .wp-block-quote cite {
    padding-right: 50px;
  }
}

.single-content blockquote+p {
  margin-top: 30px;
}

.wp-block-image .figure-caption,
.wp-block-image figcaption {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  z-index: 2;
  background: transparent;
  display: block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 5px;
  color: white;
  text-shadow: 0 1px 3px rgba(0 0 0 / 10%);
  width: fit-content;
}

.tiktok-embed>a {
  display: none;
}

#wpadminbar {
  background: var(--primary) !important;
}

.wp-block-file {
  border: solid;
  background: black;
  margin-bottom: 30px;
  padding-bottom: 5px;
}

.wp-block-file__button {
  background: var(--primary);
  color: white !important;
  padding: 5px 10px;
  border-radius: 50px;
  margin-left: 15px;
  font-size: 18px;
}

.wp-block-file a {
  margin-left: 10px;
}

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

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

/* --- */

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

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

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

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination li a:hover {
  background-color: var(--tertiary);
  color: #fff;
  transform: translateY(-1px);
}

.pagination li .current {
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

.pagination li .dots {
  background: none;
  box-shadow: none;
  color: #aaa;
  cursor: default;
}

.pagination li a.prev i,
.pagination li a.next i {
  /* color: #fff;*/
  color: var(--primary);
}

.pagination li a.prev,
.pagination li a.next {
  /* background-color: var(--primary); */
  box-shadow: none;
}

.pagination li a.prev:hover,
.pagination li a.next:hover {
  background-color: var(--tertiary);
  color: #fff;
}

.pagination li a.prev:hover i,
.pagination li a.next:hover i {
  color: #fff;
}

.fancybox-bg {
  background: rgba(21 44 60 / 80%);
}

.fancybox-button{
  background:var(--tertiary);
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: #ffffff;
}

.single-tags a {
  display: inline-block;
  background-color: var(--cuaternary)!important;
  color: var(--primary)!important;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 5px;
  border: 0.25px solid var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.single-tags a:hover {
  background-color: #cde4ff;
}