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

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@font-face {
  font-family: "times-new-roman";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/times-new-roman.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Light";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Inter-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Eina01-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Eina01-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Eina01-Bold";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Eina01-Bold.ttf") format("truetype");
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

.color-blanco {
  color: #FFFFFF;
}

.background-blanco {
  background-color: #FFFFFF;
}

.border-blanco {
  border-width: 1px;
  border-style: solid;
  border-color: #FFFFFF;
}

.color-negro {
  color: hsl(0, 0%, 0%);
}

.background-negro {
  background-color: hsl(0, 0%, 0%);
}

.border-negro {
  border-width: 1px;
  border-style: solid;
  border-color: hsl(0, 0%, 0%);
}

.color-gris-claro {
  color: #F0F0F0;
}

.background-gris-claro {
  background-color: #F0F0F0;
}

.border-gris-claro {
  border-width: 1px;
  border-style: solid;
  border-color: #F0F0F0;
}

.color-gris-medio {
  color: #E3E3E3;
}

.background-gris-medio {
  background-color: #E3E3E3;
}

.border-gris-medio {
  border-width: 1px;
  border-style: solid;
  border-color: #E3E3E3;
}

.color-gris-oscuro {
  color: #373737;
}

.background-gris-oscuro {
  background-color: #373737;
}

.border-gris-oscuro {
  border-width: 1px;
  border-style: solid;
  border-color: #373737;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
}

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

.flex-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.img_config {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  transition: all 0.3s ease-in;
  text-decoration: none;
  cursor: pointer;
}

a:hover:not(button) {
  opacity: 0.5;
}

h1 {
  font-size: 105px;
  line-height: 107px;
  color: #000000;
  font-family: "Eina01-Bold";
  transition: all 0.3s ease;
}

h2 {
  font-size: 70px;
  color: #000000;
  font-family: "Eina01-Bold";
  transition: all 0.3s ease;
  margin: 0;
}

h3 {
  font-size: 25px;
  color: #000000;
  font-family: "Inter-Bold";
  transition: all 0.3s ease;
}

p {
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  font-family: "Inter-Regular";
  transition: all 0.3s ease;
}

.contenedor {
  height: 100vh;
  width: 90%;
  padding-top: 5% !important;
  padding-bottom: 5% !important;
  max-width: 90% !important;
}

.uppercase {
  text-transform: uppercase;
}

/*.slideUp,
.slideUp2,
.slideUp3,
.slideUp4 {
  top: 40px;
  left: 10px;
  opacity: 0;
  overflow: hidden;
}*/
.slideUp {
  animation: slideUp ease 0.4s forwards;
}

.slideUp2 {
  animation: slideUp ease 0.4s forwards 0.6s;
}

.slideUp3 {
  animation: slideUp ease 0.5s forwards 1.2s;
}

.slideUp4 {
  animation: slideUp ease 0.6s forwards 1.6s;
}

.page-404.contenedor {
  padding-top: 280px !important;
  padding-bottom: 280px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: fit-content !important;
}
.page-404.contenedor .text-404 {
  color: #000;
  text-align: center;
  font-family: "Inter-Bold";
  font-size: 117.97px;
  font-style: normal;
  font-weight: 400;
  line-height: 119.937px;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  text-align: center;
}
.page-404.contenedor .title {
  color: #000;
  font-family: "Inter-Regular";
  font-size: 18.654px;
  font-style: normal;
  font-weight: 400;
  line-height: 37.308px;
  text-transform: uppercase;
  margin: 0 0 65px 0;
  text-align: center;
}
.page-404.contenedor .link {
  color: #000;
  text-align: center;
  font-family: "Inter-Regular";
  font-size: 18.654px;
  font-style: normal;
  font-weight: 400;
  line-height: 37.308px;
  text-decoration-line: underline;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 768px) {
  .page-404.contenedor {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-40px);
    opacity: 1;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bortom {
  0% {
    width: 1%;
  }
  100% {
    width: 100%;
  }
}
@media only screen and (max-width: 1380px) {
  h2 {
    font-size: 86px;
    line-height: 102px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 992px) {
  h1 {
    font-size: 85px;
    line-height: 94px;
  }
  h2 {
    font-size: 70px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }
  h2 {
    font-size: 38px;
    line-height: 49px;
  }
  h3 {
    font-size: 22px;
  }
}
header {
  width: 100%;
  height: 5%;
  z-index: 10;
}
header .header {
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
header .header a.header_logo p {
  line-height: 41px;
  font-size: 35px;
  font-family: "Eina01-Bold";
}
header .header-idiomas {
  z-index: 10;
}
header .header-idiomas a:hover, header .header-idiomas a:active, header .header-idiomas a:focus {
  text-decoration: underline;
}
header nav {
  position: fixed;
  bottom: 5%;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  display: flex;
  z-index: 10;
}
header nav ul {
  background: rgb(56, 56, 56);
  background: linear-gradient(162deg, rgba(56, 56, 56, 0.4) 0%, rgba(55, 55, 55, 0.72) 100%);
  padding: 2%;
  align-self: center;
  border-radius: 20px 20px;
  padding: 1.5% 2%;
  width: fit-content;
}
header nav ul li {
  justify-content: center;
  width: 100%;
  text-align: center;
}
header nav ul li.grid.col-6 {
  width: min-content;
}
header nav ul li a {
  font-family: "Roboto-Regular";
  font-weight: 500;
  font-size: 18px;
}
header nav ul li a:not(:last-of-type) {
  margin-right: 5%;
}
header nav ul li a:hover, header nav ul li a:active, header nav ul li a:focus {
  border-bottom: #FFFFFF 4px solid;
  opacity: 1;
}
header .rrss {
  position: fixed;
  right: 0;
  z-index: 10;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
header .rrss a {
  width: 54px;
  height: 54px;
}
header .rrss a img {
  width: 54px;
  height: 54px;
  border: 0.5px solid white;
}

@media only screen and (max-width: 992px) {
  header nav ul {
    border-radius: 10px 10px;
  }
  header nav ul li.grid.col-6 {
    grid-template-columns: repeat(6, 1fr) !important;
    grid-column-gap: 13px !important;
  }
}
@media only screen and (max-width: 768px) {
  header nav {
    transform: scale(0.95);
  }
  header nav ul {
    padding: 2%;
    border-radius: 10px 10px;
    margin: -17px;
    padding: 4%;
  }
  header nav ul li a {
    font-size: 13.5px;
  }
  header nav ul li a:active {
    border-bottom: #FFFFFF 2px solid;
  }
  header .header a.header_logo p {
    margin: 0;
    font-size: 30px;
  }
  header .rrss {
    transform: translate(0%, -50%);
  }
  header .rrss a {
    width: 35px;
    height: 35px;
  }
  header .rrss a img {
    width: 35px;
    height: 35px;
  }
}
footer .contenedor {
  border-top: 1px solid #000000;
  height: 100%;
}
footer .contenedor .footer-columna {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 45px;
  font-family: "Roboto-Regular";
  margin: 0;
}
footer .contenedor .footer-columna ul {
  padding-left: 0;
  margin: 0;
}
footer .contenedor .footer-columna ul li {
  list-style: none;
}
footer .contenedor .footer-columna:last-of-type {
  font-weight: 700;
  font-family: "Inter-Bold";
  justify-content: flex-end;
  align-items: flex-end;
}
footer .contenedor .footer-columna:last-of-type p {
  margin: 0;
}
footer .contenedor .footer-columna:last-of-type span {
  z-index: 12;
}
footer .contenedor .footer-columna:last-of-type .ir-arriba p {
  cursor: pointer;
  text-decoration: underline;
}
footer .contenedor .footer-columna:last-of-type .ir-arriba p:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 1380px) {
  footer .contenedor .footer-columna:last-of-type {
    width: max-content;
  }
}
@media only screen and (max-width: 768px) {
  footer .contenedor .footer-columna {
    font-size: 14px;
    line-height: 34px;
  }
  footer .contenedor .footer-columna:nth-of-type(4) {
    display: none;
  }
  footer .contenedor .footer-columna:last-of-type {
    margin-bottom: 20%;
  }
}
.bloque__intro .contenedor {
  padding: 64px 0 !important;
  height: fit-content !important;
}
.bloque__intro .contenedor .content {
  display: flex;
  border-radius: 24px;
  background: var(--Neutral-Light-Grey, #FCF9F5);
  overflow: hidden;
}
.bloque__intro .contenedor .content .col.-image {
  width: 526px;
  max-width: 526px;
  min-width: 526px;
  display: flex;
  height: 561px;
  min-height: 561px;
  max-height: 561px;
}
.bloque__intro .contenedor .content .col.-image .wrap-img {
  width: 526px;
  max-width: 526px;
  min-width: 526px;
  height: 561px;
  min-height: 561px;
  max-height: 561px;
  display: flex;
}
.bloque__intro .contenedor .content .col.-image .wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bloque__intro .contenedor .content .col.-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
}
.bloque__intro .contenedor .content .col.-text .title {
  color: var(--Neutral-Black, #1A1918);
  font-family: "Eina01-Bold";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 78px;
  margin: 0;
  max-width: 950px;
}
.bloque__intro .contenedor .content .col.-text .description {
  color: var(--Neutral-Grey, #999794);
  font-family: "Eina01-Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 37.308px;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .bloque__intro .contenedor .content .col.-text .title {
    font-size: 48px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 768px) {
  .bloque__intro .contenedor {
    padding: 32px 0 !important;
  }
  .bloque__intro .contenedor .content {
    flex-direction: column;
  }
  .bloque__intro .contenedor .content .col.-image {
    height: 369px;
    min-height: 369px;
    max-height: 369px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .bloque__intro .contenedor .content .col.-image .wrap-img {
    height: 369px;
    min-height: 369px;
    max-height: 369px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .bloque__intro .contenedor .content .col.-text {
    padding: 24px;
  }
  .bloque__intro .contenedor .content .col.-text .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }
  .bloque__intro .contenedor .content .col.-text .description {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }
}
.bloque__perfil-empresarial .contenedor {
  justify-content: flex-start;
  height: 100%;
}
.bloque__perfil-empresarial .contenedor .titulo_subtitulo {
  margin-bottom: 5%;
}
.bloque__perfil-empresarial .contenedor .perfil-selector {
  max-width: 90%;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-img_gallery {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-img_gallery .showimg {
  display: none;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-img_gallery .active {
  display: block;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones a {
  border-bottom: #373737 1px solid;
  grid-template-columns: 2fr 4fr 1fr;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones a .selector-year {
  flex-grow: 1;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones a .selector-title {
  font-weight: 700;
  flex-grow: 4;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones a .linea-animacion {
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones a svg {
  position: absolute;
  right: 0;
  flex-grow: 0.5;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones .elemento__selector.flex-row {
  display: grid;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones .elemento__selector:hover {
  color: #000000;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones .elemento__selector:hover .linea-animacion {
  animation: bortom 0.5s forwards;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones .elemento__selector:not(:hover) {
  border-bottom: #E3E3E3 1px solid;
  color: #E3E3E3;
}
.bloque__perfil-empresarial .contenedor .perfil-selector-opciones .elemento__selector:not(:hover) .linea-animacion {
  width: 100%;
  background-color: #E3E3E3;
}

@media only screen and (max-width: 1380px) {
  .bloque__perfil-empresarial .contenedor .perfil-selector-opciones {
    width: 95%;
  }
}
@media only screen and (max-width: 992px) {
  .bloque__perfil-empresarial .contenedor .perfil-selector-opciones a {
    grid-template-columns: 2fr 4fr 0.5fr;
  }
  .bloque__perfil-empresarial .contenedor .perfil-selector-opciones a:first-child {
    margin-top: 0;
  }
  .bloque__perfil-empresarial .contenedor .perfil-selector-opciones a p {
    line-height: 23px;
  }
}
@media only screen and (max-width: 768px) {
  .bloque__perfil-empresarial .contenedor {
    justify-content: flex-start;
    overflow: hidden;
  }
  .bloque__perfil-empresarial .contenedor .perfil-selector {
    height: 100%;
    width: 100%;
    max-width: 100%;
  }
  .bloque__perfil-empresarial .contenedor .perfil-selector-img {
    display: none;
  }
  .bloque__perfil-empresarial .contenedor .perfil-selector-opciones .elemento__selector:not(:hover) {
    border-bottom: #373737 1px solid;
  }
  .bloque__perfil-empresarial .contenedor .perfil-selector-opciones {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
  }
}
.bloque__perfil-academico .contenedor {
  height: 100%;
  overflow: visible;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna {
  border: #000000 1px solid;
  padding: 0% 6% 6% 6%;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna .selector-title {
  font-size: 22px;
  font-family: "Inter-Bold";
  margin-bottom: 0;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna ul {
  padding: 0;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna ul li {
  list-style: none;
  margin-bottom: 5%;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna ul li p {
  font-family: "Inter-Light";
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  margin: 0;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna ul li p span {
  font-family: "Inter-Bold";
  font-weight: 500;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna-img.flex-row {
  flex-wrap: wrap;
}
.bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna-img img {
  max-height: 50px;
  mix-blend-mode: multiply;
  margin-right: 5%;
  margin-bottom: 5%;
}
.bloque__perfil-academico .contenedor .elemento__tabs .content {
  position: relative;
}
.bloque__perfil-academico .contenedor .elemento__tabs .content .elemento__carrusel {
  position: static !important;
}
.bloque__perfil-academico .contenedor .elemento__tabs .content .elemento__carrusel .owl-nav {
  top: auto !important;
  bottom: -85px !important;
}

@media (min-width: 768px) {
  .bloque__perfil-academico .contenedor {
    padding-bottom: 10% !important;
  }
}
@media only screen and (max-width: 1380px) {
  .bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna-img img {
    transform: scale(0.9);
    transform-origin: top left;
  }
}
@media only screen and (max-width: 992px) {
  .bloque__perfil-academico .contenedor .owl-nav {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna ul li {
    margin-bottom: 0;
  }
  .bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna ul li p {
    font-size: 16px;
  }
  .bloque__perfil-academico .contenedor .elemento__tabs .tabs .tab .tab-columna-img img {
    width: 40%;
    height: fit-content;
    align-self: center;
  }
}
.bloque__perfil-institucional .contenedor {
  height: 100%;
}
.bloque__perfil-institucional .contenedor .content .perfil-selector-opciones {
  width: 100%;
}
.bloque__perfil-institucional .contenedor .content .perfil-selector-opciones a {
  width: 100%;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .instituciones-texto p:first-of-type {
  margin-bottom: 0;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .instituciones-texto p:last-of-type {
  margin-top: 0;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-img_gallery {
  width: 60%;
  height: auto;
  margin: 0 auto;
  -webkit-box-shadow: 0px 1px 13px 2px rgba(36, 36, 36, 0.39);
  -moz-box-shadow: 0px 1px 13px 2px rgba(36, 36, 36, 0.39);
  box-shadow: 0px 1px 13px 2px rgba(36, 36, 36, 0.39);
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones {
  justify-content: space-between;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a {
  grid-template-columns: 1fr 4fr 0.5fr;
  position: relative;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a.flex-row {
  display: grid;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a.grid.col-3 {
  grid-template-columns: 1fr 4fr 1fr;
  align-items: center;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a .selector-title p {
  line-height: 22px;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a .selector-title p:first-child {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 500;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a .selector-title p:last-child {
  margin-top: 0;
  font-weight: 400;
  font-family: "Inter-Regular";
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a .selector-year p {
  line-height: 22px;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a .selector-year p:first-child {
  margin-bottom: 0;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a .selector-year p:last-child {
  margin-top: 0;
  font-weight: 400;
  font-family: "Inter-Regular";
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a svg {
  right: 0;
  position: absolute;
  align-self: center;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a .linea-animacion {
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a:hover {
  color: #000000;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .perfil-selector-opciones a:hover .linea-animacion {
  animation: bortom 0.5s forwards;
}
.bloque__perfil-institucional .contenedor .elemento__tabs .instituciones .instituciones-img {
  max-height: 450px;
  overflow: hidden;
}

@media only screen and (max-width: 1380px) {
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .perfil-selector-opciones {
    width: 95%;
  }
}
@media only screen and (max-width: 768px) {
  .bloque__perfil-institucional .contenedor {
    height: 100%;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab {
    padding: 0;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .perfil-selector-opciones {
    justify-content: space-between;
    width: 100%;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .perfil-selector-opciones a {
    border-bottom: #373737 1px solid;
    justify-content: space-between;
    align-items: center;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .perfil-selector-opciones a .selector-year {
    margin-right: 3%;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .perfil-selector-opciones a .selector-year p {
    font-size: 14px;
    line-height: 16px;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .perfil-selector-opciones a .selector-title {
    margin-right: 3%;
    margin-left: 3%;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .instituciones-texto p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .instituciones-texto p strong {
    font-size: 22px;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs .tab .instituciones-texto p:last-of-type {
    margin: 0;
  }
  .bloque__perfil-institucional .contenedor .elemento__tabs .tabs label[for=tabfive] {
    width: 34%;
  }
}
.bloque__premios .contenedor {
  height: 100%;
  /*padding-top: 0 !important;*/
}
.bloque__premios .contenedor p strong {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  font-family: "Inter-Bold";
}
.bloque__premios .contenedor ul {
  padding: 0;
}
.bloque__premios .contenedor ul li {
  list-style: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 45px;
  font-family: "Roboto-Regular";
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .bloque__premios .contenedor ul {
    padding: 0;
  }
  .bloque__premios .contenedor ul li {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 5%;
  }
}
.bloque__perfil-artistico .contenedor {
  height: 100%;
}
.bloque__perfil-artistico .contenedor .titulo_subtitulo p:first-of-type {
  margin-bottom: 0;
}
.bloque__perfil-artistico .contenedor .titulo_subtitulo p:last-child {
  margin-top: 0;
}
.bloque__perfil-artistico .contenedor .titulo_subtitulo + .tab {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .bloque__perfil-artistico .contenedor {
    height: 100%;
  }
  .bloque__perfil-artistico .contenedor .owl-nav {
    justify-content: flex-start;
    margin-top: 4%;
  }
}
.bloque__prensa .contenedor {
  height: 100%;
}
.bloque__prensa .contenedor .elemento__carrusel {
  margin-top: 5%;
}
.bloque__prensa .contenedor .elemento__carrusel .owl-nav {
  top: unset;
  position: static;
}
.bloque__prensa .contenedor .carrusel-item p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  font-family: "Inter-Regular";
  margin: 0;
  margin-right: 15px;
}
.bloque__prensa .contenedor .carrusel-item p strong {
  font-weight: 700;
  font-size: 27px;
  line-height: 35px;
  font-family: "Inter-Bold";
  margin-top: 5%;
}
.bloque__prensa .contenedor .carrusel-item a {
  align-items: center;
  transition: all 0.3s ease;
  width: fit-content;
  color: #373737;
  transition: all 0.3s ease;
  margin-top: 2%;
}
.bloque__prensa .contenedor .carrusel-item a:hover {
  border-bottom: #373737 1px solid;
}
.bloque__prensa .contenedor .carrusel-item a svg {
  fill: #373737;
}
.bloque__prensa .contenedor .carrusel-item a path {
  fill: #373737;
}

@media only screen and (max-width: 1380px) {
  .bloque__prensa .contenedor .carrusel-item p {
    font-size: 20px;
    line-height: 29px;
  }
  .bloque__prensa .contenedor .carrusel-item p strong {
    font-size: 26px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .bloque__prensa .contenedor .owl-item {
    margin-right: 0 !important;
  }
  .bloque__prensa .contenedor .carrusel-item p {
    font-size: 16px;
    line-height: 0.5px;
    margin-right: 5px;
  }
  .bloque__prensa .contenedor .carrusel-item p strong {
    font-size: 22px;
    line-height: 27px;
  }
  .bloque__prensa .contenedor .carrusel-item a {
    margin-bottom: 5%;
  }
  .bloque__prensa .contenedor .carrusel-item a svg {
    transform: scale(0.7);
  }
}
.elemento__carrusel .carrusel-item_img,
.elemento__carrusel2 .carrusel-item_img {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.elemento__carrusel .carrusel-item_img img.logo,
.elemento__carrusel2 .carrusel-item_img img.logo {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 50%;
  margin-left: 25%;
}
.elemento__carrusel .carrusel-item_img a.carrusel-item_img-animacion,
.elemento__carrusel2 .carrusel-item_img a.carrusel-item_img-animacion {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  /*top: 0;
  bottom: 0;*/
  -webkit-transform: translateY(200%);
  -moz-transform: translateY(200%);
  transform: translateY(100%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 1;
}
.elemento__carrusel .carrusel-item_img a.carrusel-item_img-animacion img.logo,
.elemento__carrusel2 .carrusel-item_img a.carrusel-item_img-animacion img.logo {
  opacity: 1;
}
.elemento__carrusel .carrusel-item_img:hover a.carrusel-item_img-animacion,
.elemento__carrusel2 .carrusel-item_img:hover a.carrusel-item_img-animacion {
  opacity: 1 !important;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.elemento__carrusel .carrusel-item_img:hover a.carrusel-item_img-animacion img.logo,
.elemento__carrusel2 .carrusel-item_img:hover a.carrusel-item_img-animacion img.logo {
  opacity: 1;
}
.elemento__carrusel .carrusel-item_textos,
.elemento__carrusel2 .carrusel-item_textos {
  margin-top: 5%;
}
.elemento__carrusel .carrusel-item_textos p,
.elemento__carrusel2 .carrusel-item_textos p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  font-family: "Inter-Regular";
  margin: 0;
}
.elemento__carrusel .carrusel-item_textos p strong,
.elemento__carrusel2 .carrusel-item_textos p strong {
  font-weight: 700;
  font-size: 25px;
  font-family: "Inter-Bold";
  margin-top: 5%;
}
.elemento__carrusel .carrusel-item:hover_textos,
.elemento__carrusel2 .carrusel-item:hover_textos {
  opacity: 1;
}
.elemento__carrusel .carrusel-item:hover_textos p,
.elemento__carrusel2 .carrusel-item:hover_textos p {
  opacity: 1;
}
.elemento__carrusel.owl-carousel .owl-stage-outer,
.elemento__carrusel2.owl-carousel .owl-stage-outer {
  overflow: visible;
}
.elemento__carrusel.owl-carousel .owl-stage-outer .owl-stage,
.elemento__carrusel2.owl-carousel .owl-stage-outer .owl-stage {
  padding-left: 0 !important;
}
.elemento__carrusel .owl-nav,
.elemento__carrusel2 .owl-nav {
  display: flex;
  justify-content: flex-end;
  width: 86vw;
  margin-top: 1%;
  z-index: 11;
  position: absolute;
}
.elemento__carrusel .owl-nav button,
.elemento__carrusel2 .owl-nav button {
  width: 54px;
  height: 54px;
  border: #000000 2px solid !important;
}
.elemento__carrusel .owl-nav button span,
.elemento__carrusel2 .owl-nav button span {
  font-size: 30px;
}
.elemento__carrusel .owl-nav button.owl-prev,
.elemento__carrusel2 .owl-nav button.owl-prev {
  margin-right: 1%;
}

.elemento__carrusel {
  display: block !important;
}
.elemento__carrusel .carrusel-item_img {
  /* img.logo::before {
      display: none;
  } */
}
.elemento__carrusel .carrusel-item_img img.fondo:hover {
  background-color: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
}
.elemento__carrusel .owl-nav {
  top: -18%;
}

.elemento__carrusel2 .owl-nav {
  top: -22%;
}

@media only screen and (max-width: 1380px) {
  .elemento__carrusel .carrusel-item_textos p,
  .elemento__carrusel2 .carrusel-item_textos p {
    font-size: 20px;
    line-height: 29px;
  }
  .elemento__carrusel .carrusel-item_textos p strong,
  .elemento__carrusel2 .carrusel-item_textos p strong {
    font-size: 26px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .elemento__carrusel .carrusel-item_img,
  .elemento__carrusel2 .carrusel-item_img {
    height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .elemento__carrusel .owl-item.cloned,
  .elemento__carrusel2 .owl-item.cloned {
    display: none !important;
  }
  .elemento__carrusel .owl-stage,
  .elemento__carrusel2 .owl-stage {
    transform: none !important;
    transition: none !important;
    width: auto !important;
  }
  .elemento__carrusel .owl-item,
  .elemento__carrusel2 .owl-item {
    width: auto !important;
    margin-right: 0 !important;
  }
  .elemento__carrusel .owl-nav,
  .elemento__carrusel2 .owl-nav {
    display: none !important;
  }
  .elemento__carrusel .carrusel-item_textos,
  .elemento__carrusel2 .carrusel-item_textos {
    margin-bottom: 20%;
  }
  .elemento__carrusel .carrusel-item_textos p,
  .elemento__carrusel2 .carrusel-item_textos p {
    margin: 0;
    line-height: 1.5;
  }
  .elemento__carrusel .carrusel-item_textos p strong,
  .elemento__carrusel2 .carrusel-item_textos p strong {
    font-size: 22px;
    line-height: 27px;
  }
  .elemento__carrusel .carrusel-item_textos p:last-child,
  .elemento__carrusel2 .carrusel-item_textos p:last-child {
    font-size: 16px;
  }
  .elemento__carrusel .carrusel-item_img,
  .elemento__carrusel2 .carrusel-item_img {
    width: 83vw;
    margin: 0 auto;
  }
  .elemento__carrusel2 .carrusel-item_img {
    width: 90vw;
    max-height: 250px;
    margin: 0 auto;
  }
}
.elemento__tabs .tabs {
  display: flex;
  flex-wrap: wrap;
}
.elemento__tabs .content {
  padding: 1rem;
}
.elemento__tabs .content .tab .tab-columna {
  border: #000000 1px solid;
  padding: 1.5em 6% 6% 6%;
}
.elemento__tabs .content .tab .tab-columna .title {
  font-size: 22px;
  font-family: "Inter-Bold";
  margin: 0 0 0 0;
}
.elemento__tabs .content .tab .tab-columna .subtitle {
  font-family: "Inter-Bold";
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  margin: 1em 0 0 0;
}
.elemento__tabs .content .tab .tab-columna .corp {
  font-family: "Inter-Light";
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  margin: 0;
}
.elemento__tabs .content .tab .tab-columna .corp.only {
  margin-bottom: 5%;
  margin-top: 5%;
}
.elemento__tabs .content .tab .tab-columna .tab-columna-img {
  flex-wrap: wrap;
  margin-top: 2em;
}
.elemento__tabs .content .tab .tab-columna .tab-columna-img img {
  max-height: 50px;
  mix-blend-mode: multiply;
  margin-right: 5%;
  margin-bottom: 5%;
  transform: scale(0.9);
  transform-origin: top left;
}
.elemento__tabs .tabs label {
  order: 1;
  display: block;
  padding: 1rem 2rem;
  margin-right: 0.2rem;
  cursor: pointer;
  font-weight: bold;
  transition: all ease 0.2s;
  opacity: 0.25;
  z-index: 100;
}
.elemento__tabs .tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
}
.elemento__tabs .tabs .tab.grid.col-2 {
  overflow: hidden;
}
.elemento__tabs .tabs input[type=radio] {
  display: none;
  transition: all 0.3s ease;
}
.elemento__tabs .tabs input[type=radio]:checked + label,
.elemento__tabs .tabs input[type=radio].active + label {
  border-bottom: #000000 4px solid;
  opacity: 1;
}
.elemento__tabs .tabs input[type=radio]:checked + label + .tab {
  display: grid;
}
@media (max-width: 45em) {
  .elemento__tabs .tabs .tab,
  .elemento__tabs .tabs label {
    order: initial;
  }
  .elemento__tabs .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .elemento__tabs .tabs label {
    order: 1;
    width: fit-content;
    padding: 0.5rem 1rem;
  }
  .elemento__tabs .tabs .tab {
    order: 2 !important;
  }
}
/* popup styles */
.popup {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  position: fixed;
  overflow-y: scroll;
}

.popup-overlay {
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.popup-content {
  position: absolute;
  background: #fff;
  width: 100vw;
  height: 107%;
  margin: 0 auto;
  z-index: 11;
  padding: 14px;
}
.popup-content_nav {
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.popup-content_nav p,
.popup-content_nav p a {
  font-weight: 700;
  font-size: 25px;
  font-family: "Inter-Bold";
}
.popup-content_art {
  width: 90%;
  margin: 0 auto;
  -ms-transform: translateY(calc(40% - 100px));
  transform: translateY(calc(40% - 100px));
}
.popup-content_art.grid.col-2 {
  grid-template-columns: 2fr 1fr;
}
.popup-content_art_text p:first-child {
  font-weight: 600;
  font-size: 35px;
  line-height: 50px;
  font-family: "Inter-SemiBold";
  margin-top: 0;
}
.popup-content_art_text-esquema {
  justify-content: space-between;
}
.popup-content_art_text-esquema-fila {
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  margin-top: 2%;
}
.popup-content_art_text-esquema-fila p {
  font-size: 18px;
  align-self: center;
}
.popup-content_art_text-esquema-fila p.uppercase {
  font-size: 18px;
  margin: 0;
  line-height: 0;
}
.popup-content .xzoom-container-grande {
  width: 400px;
  height: 400px;
  overflow: hidden;
}
.popup-content .xzoom-thumbs {
  margin-top: 1%;
}
.popup-content .xzoom-thumbs a {
  overflow: hidden;
}

.close-popup {
  display: inline-block;
  font-size: 42px;
  align-self: center;
}

/* Animations */
.fadeIn {
  animation: fadeIn 0.5s ease-in both;
  -webkit-animation: fadeIn 0.5s ease-in both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
}
.fadeOut {
  animation: fadeOut 0.5s ease-out both;
  -webkit-animation: fadeOut 0.5s ease-out both;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
  }
}
.slideIn {
  animation: slideIn 0.5s ease-in both;
  -webkit-animation: slideIn 0.5s ease-in both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50%);
  }
}
.slideOut {
  animation: slideOut 0.5s ease-out both;
  -webkit-animation: slideOut 0.5s ease-out both;
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateY(50%);
  }
}
@-webkit-keyframes slideOut {
  to {
    opacity: 0;
    -webkit-transform: translateY(50%);
  }
}
.slideLeftIn {
  animation: slideLeftIn 0.5s ease-in both;
  -webkit-animation: slideLeftIn 0.5s ease-in both;
}

@keyframes slideLeftIn {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }
}
@-webkit-keyframes slideLeftIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%);
  }
}
.slideLeftOut {
  animation: slideLeftOut 0.5s ease-out both;
  -webkit-animation: slideLeftOut 0.5s ease-out both;
}

@keyframes slideLeftOut {
  to {
    opacity: 0;
    transform: translateX(50%);
  }
}
@-webkit-keyframes slideLeftOut {
  to {
    opacity: 0;
    -webkit-transform: translateX(50%);
  }
}
/* Demo Styles */
.popup {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  perspective: 1200px;
}

.popup-content {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

@media only screen and (max-width: 992px) {
  .popup-content_art_text p:first-child {
    font-size: 25px;
    line-height: 41px;
  }
  .popup-content_art_text-esquema-fila p.uppercase {
    font-size: 20px;
    line-height: 35px;
  }
  .elemento__popup .popup-content {
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .popup {
    position: fixed;
    overflow: scroll;
  }
  .elemento__popup .popup-content {
    height: 100%;
    height: fit-content;
  }
  .elemento__popup .popup-content_nav p {
    font-size: 20px;
    margin-top: 0;
  }
  .elemento__popup .popup-content_nav p:first-of-type {
    order: 2;
  }
  .elemento__popup .popup-content_nav p:nth-of-type(2) {
    order: 3;
  }
  .elemento__popup .popup-content_nav p:last-of-type {
    order: 4;
  }
  .elemento__popup .popup-content_nav p a {
    font-size: 20px;
    margin-top: 0;
  }
  .elemento__popup .popup-content_nav a {
    order: 1;
    align-self: flex-end;
  }
  .elemento__popup .popup-content_nav.flex-row {
    flex-direction: column;
  }
  .elemento__popup .popup-content_art {
    transform: none;
  }
  .elemento__popup .popup-content_art.grid.col-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .elemento__popup .popup-content_art_text {
    order: 2;
    margin-bottom: 15%;
  }
  .elemento__popup .popup-content_art_text p:first-child {
    font-size: 22px;
    line-height: 35px;
  }
  .elemento__popup .popup-content_art_text p:first-child.uppercase {
    font-size: 18px;
  }
  .elemento__popup .popup-content_art_text p:last-child {
    text-align: right;
  }
  .elemento__popup .popup-content_art_text-esquema-fila p {
    font-size: 16px;
  }
  .elemento__popup .popup-content_art #magnific,
  .elemento__popup .popup-content_art #magnific_2,
  .elemento__popup .popup-content_art #magnific_3,
  .elemento__popup .popup-content_art #magnific_4,
  .elemento__popup .popup-content_art #magnific_5,
  .elemento__popup .popup-content_art #magnific_6,
  .elemento__popup .popup-content_art #magnific_7,
  .elemento__popup .popup-content_art #magnific_8,
  .elemento__popup .popup-content_art #magnific_9,
  .elemento__popup .popup-content_art #magnific_10 {
    order: 1;
    height: 400px;
  }
  .elemento__popup .popup-content_art #magnific .row,
  .elemento__popup .popup-content_art #magnific_2 .row,
  .elemento__popup .popup-content_art #magnific_3 .row,
  .elemento__popup .popup-content_art #magnific_4 .row,
  .elemento__popup .popup-content_art #magnific_5 .row,
  .elemento__popup .popup-content_art #magnific_6 .row,
  .elemento__popup .popup-content_art #magnific_7 .row,
  .elemento__popup .popup-content_art #magnific_8 .row,
  .elemento__popup .popup-content_art #magnific_9 .row,
  .elemento__popup .popup-content_art #magnific_10 .row {
    height: 400px;
  }
  .elemento__popup .popup-content_art #magnific .row .column,
  .elemento__popup .popup-content_art #magnific_2 .row .column,
  .elemento__popup .popup-content_art #magnific_3 .row .column,
  .elemento__popup .popup-content_art #magnific_4 .row .column,
  .elemento__popup .popup-content_art #magnific_5 .row .column,
  .elemento__popup .popup-content_art #magnific_6 .row .column,
  .elemento__popup .popup-content_art #magnific_7 .row .column,
  .elemento__popup .popup-content_art #magnific_8 .row .column,
  .elemento__popup .popup-content_art #magnific_9 .row .column,
  .elemento__popup .popup-content_art #magnific_10 .row .column {
    transform: scale(0.8);
    transform-origin: top left;
  }
}
.contenedor {
  max-width: 1380px;
  margin: auto;
  padding: 0;
}

@supports not (display: grid) {
  .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .grid.col-1 > * {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-2 > * {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-3 > * {
    width: 31.3333333333%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-4 > * {
    width: 23%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-5 > * {
    width: 18%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-6 > * {
    width: 14.6666666667%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-7 > * {
    width: 12.2857142857%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-8 > * {
    width: 10.5%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-9 > * {
    width: 9.1111111111%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-10 > * {
    width: 8%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-11 > * {
    width: 7.0909090909%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .grid.col-12 > * {
    width: 6.3333333333%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 15px;
  }
}
@supports (display: grid) {
  .grid {
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .grid.col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid.col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
.grid.justify-content--center {
  justify-content: center;
}
.grid.justify-items--center {
  justify-items: center;
}

@media only screen and (max-width: 1380px) {
  .contenedor {
    max-width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 992px) {
  @supports not (display: grid) {
    .grid.col-6 > * {
      width: 23%;
    }
    .grid.col-7 > * {
      width: 23%;
    }
    .grid.col-8 > * {
      width: 23%;
    }
    .grid.col-9 > * {
      width: 23%;
    }
    .grid.col-10 > * {
      width: 23%;
    }
    .grid.col-11 > * {
      width: 23%;
    }
    .grid.col-12 > * {
      width: 23%;
    }
  }
  @supports (display: grid) {
    .grid.col-6 {
      grid-template-columns: repeat(4, 1fr);
    }
    .grid.col-7 {
      grid-template-columns: repeat(4, 1fr);
    }
    .grid.col-8 {
      grid-template-columns: repeat(4, 1fr);
    }
    .grid.col-9 {
      grid-template-columns: repeat(4, 1fr);
    }
    .grid.col-10 {
      grid-template-columns: repeat(4, 1fr);
    }
    .grid.col-11 {
      grid-template-columns: repeat(4, 1fr);
    }
    .grid.col-12 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
@media only screen and (max-width: 768px) {
  @supports not (display: grid) {
    .grid.col-3 > * {
      width: 48%;
    }
    .grid.col-4 > * {
      width: 48%;
    }
    .grid.col-5 > * {
      width: 48%;
    }
    .grid.col-6 > * {
      width: 48%;
    }
    .grid.col-7 > * {
      width: 48%;
    }
    .grid.col-8 > * {
      width: 48%;
    }
    .grid.col-9 > * {
      width: 48%;
    }
    .grid.col-10 > * {
      width: 48%;
    }
    .grid.col-11 > * {
      width: 48%;
    }
    .grid.col-12 > * {
      width: 48%;
    }
  }
  @supports (display: grid) {
    .grid.col-3 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-4 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-5 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-6 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-7 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-8 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-9 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-10 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-11 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid.col-12 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}
@media only screen and (max-width: 576px) {
  @supports not (display: grid) {
    .grid.col-1 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-2 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-3 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-4 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-5 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-6 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-7 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-8 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-9 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-10 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-11 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .grid.col-12 > * {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  }
  @supports (display: grid) {
    .grid.col-1 {
      grid-template-columns: 1fr;
    }
    .grid.col-2 {
      grid-template-columns: 1fr;
    }
    .grid.col-3 {
      grid-template-columns: 1fr;
    }
    .grid.col-4 {
      grid-template-columns: 1fr;
    }
    .grid.col-5 {
      grid-template-columns: 1fr;
    }
    .grid.col-6 {
      grid-template-columns: 1fr;
    }
    .grid.col-7 {
      grid-template-columns: 1fr;
    }
    .grid.col-8 {
      grid-template-columns: 1fr;
    }
    .grid.col-9 {
      grid-template-columns: 1fr;
    }
    .grid.col-10 {
      grid-template-columns: 1fr;
    }
    .grid.col-11 {
      grid-template-columns: 1fr;
    }
    .grid.col-12 {
      grid-template-columns: 1fr;
    }
  }
}