/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Inter-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Inter";
  font-style: 700;
  font-weight: 900;
  src: url("fonts/Inter-Black.otf") format("opentype");
}
@font-face {
  font-family: "Inter";
  font-style: 700;
  font-weight: 700;
  src: url("fonts/Inter-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Inter";
  font-style: 700;
  font-weight: 800;
  src: url("fonts/Inter-ExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  src: url("fonts/Inter-ExtraBoldItalic.otf") format("opentype");
}
@font-face {
  font-family: "Nhaas";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/NHaasGroteskDSW02-65Md.ttf") format("truetype");
}
@font-face {
  font-family: "Nhaas";
  font-style: 700;
  font-weight: 700;
  src: url("fonts/NHaasGroteskTXW02-55Rg.ttf") format("truetype");
}
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #FFFFFF;
  font-family: "Inter";
  font-weight: 500;
}

.content {
  overflow: hidden;
}

a, .boton {
  color: #23201f;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  background-color: transparent;
}
a:hover, .boton:hover {
  color: #787878;
}
a:hover.btn img, .boton:hover.btn img {
  filter: invert(100%);
}

a.oscuro {
  color: #000000;
}
a.oscuro:hover {
  color: #787878;
}

.btn,
.wp-block-file__button,
.wp-element-button {
  background: #23201f;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  margin: 20px 0;
  border-radius: 0;
}

a.underline {
  text-decoration: underline;
}

p, strong, b, h1, h2, h3, h4, h5, h6 {
  font-family: "Inter";
}

p {
  font-weight: 500;
  line-height: 1.3;
  text-align: justify;
}

b, strong {
  font-weight: 700;
}

h1, h2 {
  font-weight: 800;
}

h3 {
  font-weight: 700;
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  display: grid;
  place-content: center;
  font: inherit;
  color: #000000;
  width: 10px;
  height: 10px;
  border: 1px solid #000000;
}

input[type=checkbox]::before {
  content: "";
  width: 9px;
  height: 9px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 9px 9px #0099A8;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

.social__item {
  width: 16px !important;
}

select {
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Cookies Styles */
.cky-consent-bar .cky-notice-des p {
  text-align: left;
}

.cky-consent-container .cky-consent-bar {
  border-radius: 0 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}
.item-on-load {
  -webkit-animation: fadeIn 0.3s, slideUp 0.9s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadeIn 0.3s, slideUp 0.9s; /* Firefox < 16 */
  -ms-animation: fadeIn 0.3s, slideUp 0.9s; /* Internet Explorer */
  -o-animation: fadeIn 0.3s, slideUp 0.9s; /* Opera < 12.1 */
  animation: fadeIn 0.3s, slideUp 0.9s;
}

@media only screen and (max-width: 768px) {
  .social__item {
    width: 30px !important;
  }
}
/* Import */
ul.ul-no-bullets {
  list-style: none;
}

.inactive-section {
  opacity: 0 !important;
}

.titulo {
  position: relative;
  padding: 0 20px;
  overflow: hidden;
}
.titulo h1 {
  padding: 0;
  margin: 0;
  font-family: "Inter";
  font-weight: 900;
  font-size: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .titulo h1 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 576px) {
  .titulo h1 {
    font-size: 1.6rem;
  }
}
.titulo-borde-bottom {
  padding: 15px;
}
.titulo-borde-bottom:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 1px;
  background-color: #000000;
}
.titulo-borde-bottom:after {
  bottom: 0;
}

.hero-hex {
  padding-top: 60px;
}
.hero-hex .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.hero-hex--wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  row-gap: 20px;
}
@media only screen and (max-width: 992px) {
  .hero-hex--wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero-hex--slides, .hero-hex--slides > a, .hero-hex--slides > a > img {
  width: 100%;
  height: 100%;
}
.hero-hex--item {
  opacity: 1;
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* Option 1 */
  /* Option 2 */
  clip-path: polygon(0 15%, 15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
}
.hero-hex--item:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.hero-hex--slides {
  position: absolute;
}
.hero-hex--slides > a {
  display: block;
  position: relative;
}
.hero-hex--slides > a[href="#"]:hover, .hero-hex--slides > a[href=""]:hover {
  cursor: default;
}
.hero-hex--slides > a > img {
  object-fit: cover;
}

.mision-vision-valores {
  padding: 30px 0;
}
.mision-vision-valores--item {
  position: relative;
  padding: 30px 0;
  display: flex;
}
@media only screen and (max-width: 576px) {
  .mision-vision-valores--item {
    flex-wrap: wrap;
  }
}
.mision-vision-valores--item:before, .mision-vision-valores--item:after {
  content: "";
  position: absolute;
  width: calc(100% + var(--bs-gutter-x));
  left: calc(var(--bs-gutter-x) * -0.5);
  height: 1px;
  background-color: #000000;
}
.mision-vision-valores--item:before {
  top: 0;
}
.mision-vision-valores--item:after {
  visibility: hidden;
}
.mision-vision-valores--item:last-of-type:after {
  bottom: 0;
  visibility: visible;
}
.mision-vision-valores--item--titulo {
  flex-basis: 33.333333%;
}
.mision-vision-valores--item--titulo h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0;
}
@media only screen and (max-width: 576px) {
  .mision-vision-valores--item--titulo {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
.mision-vision-valores--item--cuerpo {
  flex-basis: 66.666666%;
}
.mision-vision-valores--item--cuerpo > p:first-of-type {
  margin-top: 0;
}
@media only screen and (max-width: 576px) {
  .mision-vision-valores--item--cuerpo {
    flex-basis: 100%;
  }
}
.mision-vision-valores--item--cuerpo--lista ol li {
  margin-bottom: 30px;
  padding-left: 20px;
}
.mision-vision-valores--item--cuerpo--lista ol li::marker {
  content: attr(value);
}

.proyectos-nav {
  overflow: hidden;
}
.proyectos-nav--show-all {
  grid-column: 3;
  margin-top: 30px;
}
.proyectos-nav--show-all > button {
  appearance: none;
  font-weight: bold;
  -webkit-appearance: none;
  border: none;
  background: none;
}
.proyectos-nav--buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .proyectos-nav--buttons {
    display: none;
  }
}
.proyectos-nav--buttons--item {
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  text-align: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  color: #FFFFFF;
  clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}
.proyectos-nav--buttons--item:hover, .proyectos-nav--buttons--item.item-active {
  color: #000000;
}
.proyectos-nav--buttons--item:hover .proyectos-nav--buttons--bg:after, .proyectos-nav--buttons--item.item-active .proyectos-nav--buttons--bg:after {
  background-color: #0099A8;
}
.proyectos-nav--buttons--item:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.proyectos-nav--buttons--item--button:hover {
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .proyectos-nav--buttons--item--button {
    padding: 10px;
  }
  .proyectos-nav--buttons--item--button h3 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .proyectos-nav--buttons--item--button h3 {
    font-size: 1rem;
  }
}
.proyectos-nav--buttons--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.proyectos-nav--buttons--bg img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: grayscale(100);
}
.proyectos-nav--buttons--bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #23201f;
  opacity: 0.75;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.proyectos-nav--buttons--movil {
  display: none;
  margin-top: 20px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .proyectos-nav--buttons--movil {
    display: block;
  }
}
.proyectos-nav--buttons--movil .proyectos-nav--buttons--item {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .proyectos-nav--buttons--movil .proyectos-nav--buttons--item {
    width: 50%;
  }
}
.proyectos-nav--buttons--movil .proyectos-nav--buttons--item--button h3 {
  font-size: 1.5rem;
}
.proyectos-nav--buttons--movil .swiper-button-next,
.proyectos-nav--buttons--movil .swiper-button-prev {
  color: #23201f;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 25px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.proyectos-nav--buttons--movil .swiper-button-next:after,
.proyectos-nav--buttons--movil .swiper-button-prev:after {
  font-weight: bold;
  font-size: 14px;
}
.proyectos-nav--tabs {
  padding: 15px 20px 15px 20px;
}
.proyectos-nav--tabs--tab {
  display: none;
}
.proyectos-nav--tabs--tab p {
  font-size: 1.2rem;
}

.proyectos-filtros > .container-fluid {
  padding: 0;
}
.proyectos-filtros--toggle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 15px 0;
  position: relative;
}
.proyectos-filtros--toggle-btn button {
  background-color: transparent;
  border: none;
  font-size: 1.3rem;
  font-weight: 900;
}
.proyectos-filtros--toggle-btn:after, .proyectos-filtros--toggle-btn:before {
  content: "";
  position: absolute;
  width: calc(100% + var(--bs-gutter-x));
  left: calc(var(--bs-gutter-x) * -0.5);
  height: 1px;
  background-color: #000000;
}
.proyectos-filtros--toggle-btn:before {
  top: 0;
}
.proyectos-filtros--toggle-btn:after {
  bottom: 0;
}
.proyectos-filtros--toggle {
  position: relative;
  padding: 20px 0;
}
.proyectos-filtros--toggle:after {
  content: "";
  position: absolute;
  width: calc(100% + var(--bs-gutter-x));
  left: calc(var(--bs-gutter-x) * -0.5);
  height: 1px;
  background-color: #000000;
}
.proyectos-filtros--toggle:after {
  bottom: 0;
}
.proyectos-filtros--lista {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 10px 20px 0 20px;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
}
.proyectos-filtros--lista > li {
  display: flex;
  align-items: flex-start;
}
.proyectos-filtros--lista > li span:nth-child(2) {
  padding-left: 12px;
}
.proyectos-filtros--lista > li span label {
  font-weight: 500;
  font-size: 14px;
}
.proyectos-filtros--lista > li span input[type=checkbox] {
  margin-top: 5px;
}
@media only screen and (max-width: 992px) {
  .proyectos-filtros--lista {
    grid-template-columns: repeat(4, 1fr);
  }
  .proyectos-filtros--lista li {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .proyectos-filtros--lista {
    grid-template-columns: repeat(2, 1fr);
  }
  .proyectos-filtros--lista span label {
    font-size: 16px;
  }
}
.proyectos-filtros--tabs {
  display: none;
}
.proyectos-filtros--tab {
  display: none;
}

.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 150px;
  grid-gap: 20px;
  padding: 20px;
}
.proyectos-grid--item {
  position: relative;
  width: 100%;
}
.proyectos-grid--item.item-height1 {
  grid-row: span 1;
}
.proyectos-grid--item.item-height2 {
  grid-row: span 2;
}
.proyectos-grid--item.item-height3 {
  grid-row: span 3;
}
.proyectos-grid--item--img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
}
.proyectos-grid--item--img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.proyectos-grid--item--titulo {
  position: relative;
}

.proyectos--isotope {
  display: block;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 35vh;
  min-height: 75vh;
}
@media only screen and (max-width: 992px) {
  .proyectos--isotope {
    padding-bottom: 25vh;
  }
}
@media only screen and (max-width: 576px) {
  .proyectos--isotope {
    padding-bottom: 10vh;
  }
}
.proyectos--isotope--container .proyectos--isotope--item:nth-child(1n+0) {
  height: 150px;
}
.proyectos--isotope--container .proyectos--isotope--item:nth-child(2n+0) {
  height: 360px;
}
.proyectos--isotope--container .proyectos--isotope--item:nth-child(3n+0) {
  height: 150px;
}
.proyectos--isotope--container .proyectos--isotope--item:nth-child(4n+0) {
  height: 280px;
}
.proyectos--isotope--container .proyectos--isotope--item:nth-child(5n+0) {
  height: 360px;
}
.proyectos--isotope--container .proyectos--isotope--item:nth-child(6n+0) {
  height: 280px;
}
.proyectos--isotope--notification {
  display: none;
  width: 100%;
  height: 30vh;
}
.proyectos--isotope--notification > h4 {
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
}
.proyectos--isotope--item {
  position: relative;
  width: calc(20% - 16px);
  height: 240px;
  margin-bottom: 20px;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .proyectos--isotope--item {
    width: calc(25% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .proyectos--isotope--item {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .proyectos--isotope--item {
    width: calc(100% - 20px);
  }
}
.proyectos--isotope--item--img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
}
.proyectos--isotope--item--img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #23201f;
  opacity: 0;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.proyectos--isotope--item--img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.proyectos--isotope--item--titulo {
  position: relative;
  padding-left: 10px;
  z-index: 20;
}
.proyectos--isotope--item--titulo > h3 {
  opacity: 0;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .proyectos--isotope--item--titulo {
    background-color: #FFFFFF;
    padding-left: 0;
    padding-top: 15px;
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
  }
  .proyectos--isotope--item--titulo > h3 {
    opacity: 1;
    color: #23201f;
    font-size: 1em;
    font-weight: normal;
    margin-top: 0;
    padding-bottom: 15px;
  }
}
.proyectos--isotope--item:hover .proyectos--isotope--item--titulo > h3 {
  opacity: 1;
}
.proyectos--isotope--item:hover .proyectos--isotope--item--img > img {
  filter: grayscale(1);
}
.proyectos--isotope--item:hover .proyectos--isotope--item--img:after {
  opacity: 0.7;
}

.proyecto--single .container-fluid {
  padding: 0;
}
.proyecto--single--no-image {
  height: 30px;
}
.proyecto--single--slider .swiper {
  width: 100%;
  height: 660px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .proyecto--single--slider .swiper {
    height: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .proyecto--single--slider .swiper {
    height: 430px;
  }
}
@media only screen and (max-width: 576px) {
  .proyecto--single--slider .swiper {
    height: 350px;
  }
}
.proyecto--single--slider .swiper-slide {
  width: 65%;
}
@media only screen and (max-width: 768px) {
  .proyecto--single--slider .swiper-slide {
    width: 90%;
  }
}
@media only screen and (max-width: 576px) {
  .proyecto--single--slider .swiper-slide {
    width: 100%;
  }
}
.proyecto--single--slider .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proyecto--single--slider .swiper-caption {
  font-size: 12px;
  padding: 5px;
  font-weight: 300;
}
.proyecto--single--slider .swiper-button-next,
.proyecto--single--slider .swiper-button-prev {
  color: rgba(255, 255, 255, 0.6);
  border: 30px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
@media only screen and (max-width: 576px) {
  .proyecto--single--slider .swiper-button-next,
  .proyecto--single--slider .swiper-button-prev {
    border: 24px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }
}
.proyecto--single--slider .swiper-button-next:after, .proyecto--single--slider .swiper-button-prev:after {
  font-weight: bold;
  font-size: 30px;
  position: relative;
}
@media only screen and (max-width: 576px) {
  .proyecto--single--slider .swiper-button-next:after, .proyecto--single--slider .swiper-button-prev:after {
    font-size: 22px;
  }
}
.proyecto--single--slider .swiper-button-next:after {
  right: -2px;
}
.proyecto--single--slider .swiper-button-prev:after {
  left: -2px;
}
.proyecto--single--slider .swiper-horizontal > .swiper-pagination-bullets, .proyecto--single--slider .swiper-pagination-bullets.swiper-pagination-horizontal, .proyecto--single--slider .swiper-pagination-custom, .proyecto--single--slider .swiper-pagination-fraction {
  left: 34.5%;
  width: auto;
  bottom: 10px;
}
@media only screen and (max-width: 992px) {
  .proyecto--single--slider .swiper-horizontal > .swiper-pagination-bullets, .proyecto--single--slider .swiper-pagination-bullets.swiper-pagination-horizontal, .proyecto--single--slider .swiper-pagination-custom, .proyecto--single--slider .swiper-pagination-fraction {
    display: flex;
    width: 100%;
    justify-content: center;
    left: 0;
  }
}
.proyecto--single--slider .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 0;
}
.proyecto--single--slider .swiper-pagination-bullet-active {
  background: #787878;
}
.proyecto--single .titulo {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
}
.proyecto--single .titulo--volver {
  font-size: 14px;
}
@media only screen and (max-width: 992px) {
  .proyecto--single .titulo {
    grid-template-columns: 1fr;
  }
  .proyecto--single .titulo--volver {
    text-align: left;
    padding-bottom: 15px;
  }
}
.proyecto--single--hero-img {
  height: 640px;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.proyecto--single--hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proyecto--single--hero-img figcaption {
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #FFFFFF;
  width: 100%;
  padding: 10px 30px;
  font-size: 12px;
}
.proyecto--single--cuerpo img {
  width: 100%;
  height: auto;
}
.proyecto--single .titulo + .proyecto--single--wrap {
  padding-top: 60px;
}
.proyecto--single--wrap {
  padding: 10px 30px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 992px) {
  .proyecto--single--wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 576px) {
  .proyecto--single--wrap {
    grid-gap: 0;
    row-gap: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .proyecto--single--meta {
    width: 210px;
  }
}
@media only screen and (max-width: 576px) {
  .proyecto--single--meta {
    margin-top: 30px;
    grid-column-start: 1;
    grid-column-end: 3;
    width: auto;
  }
}
.proyecto--single--meta ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 0;
  padding-left: 0;
}
@media only screen and (max-width: 992px) {
  .proyecto--single--meta ul {
    margin-top: 0;
  }
}
.proyecto--single--meta ul li {
  background-color: #787878;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 12px;
  padding: 10px 15px;
  margin-right: 7.5px;
  margin-bottom: 7.5px;
}
.proyecto--single--meta ul li a {
  color: #FFFFFF;
}
.proyecto--single--abstract {
  margin-top: 0;
}
@media only screen and (max-width: 992px) {
  .proyecto--single--abstract {
    margin-top: 0;
    grid-column-start: 2;
    grid-column-end: 3;
  }
}
.proyecto--single--abstract h4 {
  font-weight: 800;
  font-size: 1.4rem;
  margin-top: 7.5px;
}
.proyecto--single--abstract p {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
  text-align: left;
}
@media only screen and (max-width: 992px) {
  .proyecto--single--abstract p {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 992px) {
  .proyecto--single--detalles {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.proyecto--single--detalles ul {
  list-style: none;
  padding-left: 0;
}
.proyecto--single--detalles ul li {
  display: flex;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid #000000;
}
.proyecto--single--detalles ul li:first-child {
  border-top: 1px solid #000000;
}
.proyecto--single--detalles ul li span p {
  text-align: left;
}
.proyecto--single--detalles ul li span:first-child {
  flex-basis: 55%;
}
.proyecto--single--detalles ul li span:last-child {
  flex-basis: 45%;
}
.proyecto--single--detalles ul li span:last-child p {
  margin-top: 0;
}
@media only screen and (max-width: 992px) {
  .proyecto--single--detalles ul li span:first-child, .proyecto--single--detalles ul li span:last-child {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .proyecto--single--cuerpo {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.proyecto--single--cuerpo p {
  text-align: justify;
}
.proyecto--single--cuerpo figure {
  margin-left: 0;
  margin-right: 0;
}
.proyecto--single--bottom-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-top: 1px solid #000000;
}
.proyecto--single--bottom-nav > div {
  flex-basis: 33.33333%;
}
.proyecto--single--bottom-nav a {
  font-weight: 700;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .proyecto--single--bottom-nav a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .proyecto--single--bottom-nav a {
    font-size: 12px;
  }
}
.proyecto--single--bottom-nav--todos {
  text-align: center;
}
.proyecto--single--bottom-nav--ant {
  text-align: left;
}
.proyecto--single--bottom-nav--sig {
  text-align: right;
}

.noticias {
  padding: 30px 0;
}
.noticias--wrap {
  display: flex;
}
@media only screen and (max-width: 576px) {
  .noticias--wrap {
    flex-wrap: wrap;
  }
}
.noticias--grid {
  display: block;
  width: 100%;
  min-height: 75vh;
}
@media only screen and (max-width: 576px) {
  .noticias--grid {
    order: 1;
  }
}
.noticias--grid--item {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  height: 380px;
  position: relative;
  width: calc(33.333333% - 20px);
  margin-bottom: 20px;
  padding: 0;
  border: 1px solid #000000;
}
@media only screen and (max-width: 992px) {
  .noticias--grid--item {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .noticias--grid--item {
    width: 100%;
  }
}
.noticias--grid--item--img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.noticias--grid--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.noticias--grid--item:hover {
  color: #000000;
}
.noticias--grid--item:hover .noticias--grid--item--img:after {
  background-color: #0099A8;
  opacity: 1;
}
.noticias--grid--item--meta {
  z-index: 20;
  position: relative;
  background-color: #787878;
  text-transform: uppercase;
  color: #FFFFFF;
  height: fit-content;
  width: fit-content;
  margin-left: 7.5px;
  margin-top: 7.5px;
  font-weight: 300;
  font-size: 12px;
  padding: 10px 15px;
  margin-right: 0;
}
.noticias--grid--item--contenido {
  z-index: 20;
  position: relative;
  align-self: flex-end;
  margin-left: 7.5px;
  margin-bottom: 15px;
}
.noticias--grid--item--titulo, .noticias--grid--item--extracto {
  padding: 0;
}
.noticias--grid--item--titulo h3, .noticias--grid--item--titulo p, .noticias--grid--item--extracto h3, .noticias--grid--item--extracto p {
  border: 2px solid #FFFFFF;
  padding: 2px;
  display: inline;
  background-color: #FFFFFF;
  position: relative;
}
.noticias--grid--item--titulo p, .noticias--grid--item--extracto p {
  text-align: left;
}
.noticias--grid--item--titulo {
  margin-bottom: 15px;
}
.noticias--grid--item--titulo h3 {
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1.4;
}
.noticias--grid--item--img {
  z-index: 10;
}
.noticias--grid--item--img img {
  filter: grayscale(1);
}
.noticias--grid--item--img:after {
  content: "";
  position: absolute;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  opacity: 0.5;
  mix-blend-mode: screen;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.noticias--filtro {
  padding-left: 20px;
}
.noticias--filtro > h3 {
  margin-top: 0;
}
@media only screen and (max-width: 576px) {
  .noticias--filtro {
    order: 0;
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.noticias--filtro ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.noticias--filtro ul li {
  display: flex;
  align-items: start;
  margin: 0;
  padding: 0;
}
.noticias--filtro ul li > span:first-child {
  display: flex;
  margin-right: 5px;
  padding-top: 2px;
}
.noticias--filtro ul li > span:last-child {
  font-size: 0.8rem;
  font-weight: normal;
}
.noticias--filtro ul li > span:last-child label {
  margin: 0;
}

.articulo .container-fluid {
  padding: 0;
}
.articulo--header {
  display: grid;
  padding: 10px 30px;
  grid-template-columns: 1.8fr 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 992px) {
  .articulo--header {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.articulo--header--img figure {
  margin: 0;
}
.articulo--header--img figcaption {
  margin-top: 6px;
  font-size: 14px;
}
@media only screen and (max-width: 992px) {
  .articulo--header--img figcaption {
    padding-left: 30px;
  }
}
.articulo--header--img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  min-height: 400px;
}
@media only screen and (max-width: 992px) {
  .articulo--header--title {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 0 30px;
  }
}
.articulo--header.header--solo-title {
  grid-template-columns: 66.666666%;
  grid-gap: 0;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .articulo--header.header--solo-title {
    grid-template-columns: 100%;
  }
  .articulo--header.header--solo-title .articulo--header--title {
    grid-template-columns: 1fr;
  }
  .articulo--header.header--solo-title .articulo--abstract p {
    padding-left: 0;
    margin-top: 15px;
  }
}
.articulo--tags ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 0;
  padding-left: 0;
}
.articulo--tags ul li {
  background-color: #787878;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 12px;
  padding: 10px 6px;
  margin-right: 7.5px;
  margin-bottom: 7.5px;
}
.articulo--tags ul li a {
  color: #FFFFFF;
}
@media only screen and (max-width: 576px) {
  .articulo--tags ul li {
    font-size: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .articulo--tags ul {
    margin-bottom: 7.5px;
  }
}
.articulo--fecha h6 {
  font-size: 18px;
  margin: 0;
  font-weight: 900;
}
@media only screen and (max-width: 576px) {
  .articulo--fecha h6 {
    font-size: 14px;
  }
}
.articulo--abstract p {
  text-align: left;
  font-size: 1.9rem;
  font-weight: normal;
  line-height: 1.2;
  margin-top: 15px;
}
@media only screen and (max-width: 1280px) {
  .articulo--abstract p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 992px) {
  .articulo--abstract p {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .articulo--abstract p {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 576px) {
  .articulo--abstract p {
    padding-left: 30px;
  }
}
.articulo--slider .swiper {
  width: 100%;
  height: 580px;
  padding-bottom: 60px;
}
.articulo--slider .swiper-slide {
  width: 65%;
}
.articulo--slider .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articulo--slider .swiper-button-next,
.articulo--slider .swiper-button-prev {
  color: rgba(255, 255, 255, 0.6);
  border: 25px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.articulo--slider .swiper-button-next:after, .articulo--slider .swiper-button-prev:after {
  font-weight: bold;
  font-size: 30px;
}
.articulo--slider .swiper-horizontal > .swiper-pagination-bullets, .articulo--slider .swiper-pagination-bullets.swiper-pagination-horizontal, .articulo--slider .swiper-pagination-custom, .articulo--slider .swiper-pagination-fraction {
  left: 0;
  width: auto;
  bottom: 10px;
}
.articulo--slider .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 0;
}
.articulo--slider .swiper-pagination-bullet-active {
  background: #787878;
}
.articulo--hero-img {
  height: 600px;
  width: 100%;
}
.articulo--hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articulo--cuerpo figure {
  margin: 0;
}
.articulo--cuerpo figcaption {
  margin-top: 6px;
  font-size: 14px;
}
.articulo--cuerpo img {
  width: 100%;
  height: auto;
}
.articulo--wrap {
  width: 66.666666%;
  margin: 0 auto;
  padding: 10px 30px;
}
@media only screen and (max-width: 992px) {
  .articulo--wrap {
    width: 100%;
  }
}
.articulo--cuerpo p {
  text-align: justify;
}
.articulo--bottom-nav {
  padding: 20px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
.articulo--bottom-nav a {
  font-weight: 700;
  font-size: 1.2rem;
}

.contacto--titulo h1 {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .contacto--titulo h1 {
    font-size: 1.2em;
  }
}
.contacto--wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 30px 20px;
}
.contacto--contenido--direccion {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contacto--contenido--direccion > div {
  padding: 0 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .contacto--contenido--direccion {
    grid-template-columns: 1fr;
  }
  .contacto--contenido--direccion > div.tel {
    grid-row-start: 1;
  }
  .contacto--contenido--direccion > div.email {
    grid-row-start: 2;
  }
}
.contacto--contenido--gmap {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  padding-top: 10px;
  grid-column-start: 2;
}
@media only screen and (max-width: 768px) {
  .contacto--contenido--gmap {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.header {
  display: flex;
  position: relative;
  width: 100%;
  height: 90px;
  border-bottom: 1px solid #000000;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  z-index: 500;
}
@media only screen and (max-width: 992px) {
  .header {
    position: fixed;
    top: 0;
  }
  .header + .nav-movil--wrapper + main {
    padding-top: 90px;
  }
}
.header--logo {
  padding-left: 20px;
}
.header--logo > a img {
  width: 240px;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .header {
    position: fixed;
  }
}
@media only screen and (min-width: 992px) {
  .header.landing {
    border-bottom: none;
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .header.landing .header--logo {
    animation: fadeIn 2s 1;
    opacity: 1;
    position: relative;
    transform: translateX(calc(50vw - 200px));
    padding-left: 0;
    -webkit-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
  }
  .header.landing .header--logo img {
    width: 400px;
    height: auto;
    -webkit-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
  }
  .header.landing .header--logo.static--logo {
    transform: translateX(0);
    padding-left: 20px;
  }
  .header.landing .header--logo.static--logo img {
    width: 240px;
  }
  .header.landing .header--nav {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .header.landing .header--logo {
    transform: translateX(0);
    padding-left: 20px;
  }
  .header.landing .header--logo img {
    width: 240px;
  }
  .header.landing .header--nav {
    display: block !important;
  }
}
.header--nav--menu, .header--nav--menu > ul > div:first-child {
  padding-right: 30px;
}
.header--nav--menu > ul, .header--nav--menu > ul > div:first-child > ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .header--nav--menu > ul .language-selector select, .header--nav--menu > ul > div:first-child > ul .language-selector select {
    display: none;
  }
}
.header--nav--menu > ul > li, .header--nav--menu > ul > div:first-child > ul > li {
  padding: 0 20px;
}
.header--nav--menu > ul > li#movil-nav-open, .header--nav--menu > ul > div:first-child > ul > li#movil-nav-open {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header--nav--menu > ul > li:not(#movil-nav-open), .header--nav--menu > ul > div:first-child > ul > li:not(#movil-nav-open) {
    display: none;
  }
  .header--nav--menu > ul > li#movil-nav-open, .header--nav--menu > ul > div:first-child > ul > li#movil-nav-open {
    display: block;
  }
}
.header--nav--menu > ul > li button, .header--nav--menu > ul > div:first-child > ul > li button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
}
.header--nav--menu > ul > li a, .header--nav--menu > ul > li button, .header--nav--menu > ul > div:first-child > ul > li a, .header--nav--menu > ul > div:first-child > ul > li button {
  font-weight: bold;
  font-size: 1.2rem;
  background-image: linear-gradient(#000000, #000000), none;
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center 95%;
  transition: all 0.2s ease-out;
}
.header--nav--menu > ul > li a:hover, .header--nav--menu > ul > li button:hover, .header--nav--menu > ul > div:first-child > ul > li a:hover, .header--nav--menu > ul > div:first-child > ul > li button:hover {
  background-size: 100% 2px, auto;
  color: #000000;
}
@media only screen and (max-width: 1280px) {
  .header--nav--menu > ul > li a, .header--nav--menu > ul > li button, .header--nav--menu > ul > div:first-child > ul > li a, .header--nav--menu > ul > div:first-child > ul > li button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .header--nav--menu > ul > li a, .header--nav--menu > ul > li button, .header--nav--menu > ul > div:first-child > ul > li a, .header--nav--menu > ul > div:first-child > ul > li button {
    font-size: 1.2rem;
  }
}

.nav-movil--wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #23201f;
  z-index: 1000;
  padding: 20px;
}
.nav-movil--wrapper .language-selector select {
  margin: 0 auto;
  display: block;
  background-color: transparent;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2rem;
}
.nav-movil--header {
  display: flex;
  justify-content: space-between;
}
.nav-movil--body {
  width: 100%;
  height: 100%;
}
.nav-movil--logo img {
  width: 100px;
  height: auto;
  filter: invert(1);
}
.nav-movil--close button {
  appearance: none;
  background: none;
  border: none;
}
.nav-movil--close button img {
  width: 20px;
  height: auto;
}
.nav-movil--links {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.nav-movil--links ul {
  padding: 0;
  margin: 0;
}
.nav-movil--links ul li {
  list-style: none;
  text-align: center;
  margin-bottom: 20px;
}
.nav-movil--links ul li a {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 2rem;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), none;
  background-size: 0 3px, auto;
  background-repeat: no-repeat;
  background-position: center 100%;
  transition: all 0.2s ease-out;
}
.nav-movil--links ul li a:hover {
  background-size: 100% 3px, auto;
  color: #FFFFFF;
}

.footer {
  width: 100%;
  margin-bottom: 30px;
  min-height: 280px;
}
@media only screen and (max-width: 992px) {
  .footer {
    padding-bottom: 15px;
    min-height: unset;
  }
}
.footer p {
  margin: 0;
}
.footer--top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .footer--top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .footer--top {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer--section {
  height: 100%;
  position: relative;
  padding: 0 20px;
}
.footer--section:after {
  content: "";
  position: absolute;
  left: 100%;
  width: 1px;
  height: 90%;
  background-color: #000000;
  top: 5px;
}
.footer--section:last-of-type:after {
  display: none;
}
.footer--section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.3;
}
.footer--section ul li {
  font-size: 14px;
}
@media only screen and (max-width: 992px) {
  .footer--section {
    padding: 0 20px 15px 20px;
  }
  .footer--section:after {
    height: 100%;
  }
  .footer--section:last-of-type:after {
    display: unset;
  }
  .footer--section:nth-of-type(odd):after {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .footer--section {
    grid-template-columns: 1fr;
  }
  .footer--section:after {
    display: none;
  }
  .footer--section:nth-of-type(odd) .footer--section:after, .footer--section:last-of-type .footer--section:after {
    display: unset;
  }
}
.footer--bottom {
  display: flex;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .footer--bottom {
    padding-bottom: 0;
  }
}
.footer--bottom--content {
  font-size: 14px;
}