@charset "UTF-8";
/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.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;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -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 {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  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-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.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 {
  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;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  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 Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.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 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #ea4e4a;
}

.boton-rojo {
  display: grid;
  background: #EA4E4A;
  color: white;
  align-items: center;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 0;
  border-radius: 25px;
  transition: all ease 0.5s;
}
@media (max-width: 100px) {
  .boton-rojo {
    font-size: 15px;
  }
}
.boton-rojo:hover {
  background: #da4642;
  transition: all ease 0.5s;
  border-radius: 0;
}

.btn_flecha:hover svg {
  animation-name: mov;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
@keyframes mov {
  0% {
    transform: translatex(0px);
  }
  50% {
    transform: translatex(10px);
  }
  100% {
    transform: translatex(0px);
  }
}

* {
  -webkit-font-smoothing: antialiased;
  /* Sin bold en Mac. */
  box-sizing: border-box;
}

h1, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

*:focus {
  outline: none;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media (max-width: 1210px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

section {
  padding: 0px 0px;
}

.filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media (max-width: 1000px) {
  .filas2 {
    grid-template-columns: 1fr;
  }
}

.filas3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (max-width: 1000px) {
  .filas3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .filas3 {
    grid-template-columns: 100%;
  }
}

body.mostrar_transparencia:before {
  content: "";
  width: 100%;
  height: 100vh;
  background: transparent;
  position: fixed;
  top: 172px;
  left: 0;
  right: 0;
  z-index: 9;
}

body.over-y {
  overflow: auto;
}

.sub-header {
  background: #2C2C2C;
  color: white;
  text-align: right;
  height: 40px;
  display: grid;
  align-items: center;
  position: relative;
  z-index: 99999;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .sub-header {
    display: none;
  }
}
.sub-header ul li {
  display: inline-block;
  margin: 0 9px;
  vertical-align: middle;
  line-height: 1;
}
.sub-header ul li a {
  font-size: 11px;
  font-weight: 700;
  display: grid;
  height: 40px;
  align-items: center;
}

#navbar {
  top: 0;
  height: 100px;
  width: 100%;
  z-index: 9999;
  left: 0;
  right: 0;
  background: #fff;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1000px) {
    #navbar {
        height: 70px;
        position: fixed;
    }
}
#navbar li {
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: inline-block; */
  vertical-align: middle;
  
}
#navbar li .accordion-title{
  color: black;
  display: block;
  font-size: 14px;
  padding: 41px 25px;
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  font-weight: 700;
  text-transform: uppercase;
}
#navbar li a span {
  width: 50px;
  height: 5px;
  display: block;
  background: black;
  margin-bottom: 10px;
}
#navbar li a span:last-child {
  margin-bottom: 0;
}
#navbar li a.hamburguesa2 {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  #navbar li a {
    margin: 0 7px;
  }
}
#navbar li a[data-tab=item5].active-title span {
  margin: 0;
}
#navbar li a[data-tab=item5].active-title span:last-child {
  display: none;
}
#navbar li a[data-tab=item5].active-title span:first-child {
  transform: rotate(45deg);
  position: relative;
  top: 4px;
}
#navbar li a[data-tab=item5].active-title span:nth-child(2) {
  transform: rotate(-45deg);
}

#navbar li .sub_menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: white;
  z-index: 99;
  top: 72px !important;
  height: auto;
  padding: 54px 0 29px;
}
#navbar li .sub_menu .dividido {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#navbar li .sub_menu .dividido > div {
  text-align: left;
  padding-left: 30px;
  border-left: 1px solid #CBCCCA;
  position: relative;
  padding-bottom: 30px;
}
#navbar li .sub_menu .dividido > div svg {
  display: block;
  margin-bottom: 20px;
}
#navbar li .sub_menu .dividido > div h4 {
  color: #2C2C2C;
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
}
#navbar li .sub_menu .dividido > div ul {
  flex-direction: column;
  float: none;
}
#navbar li .sub_menu .dividido > div ul li {
  display: block;
  margin-bottom: 10px;
  position: relative;
}
#navbar li .sub_menu .dividido > div ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EA4E4A;
  display: block;
  margin-right: 5px;
  position: absolute;
  top: 5px;
  left: 0;
}
#navbar li .sub_menu .dividido > div ul li a {
  text-align: left;
  display: block;
  width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  padding-left: 15px;
}
#navbar li .sub_menu .dividido > div .btn_flecha {
  width: 100%;
  margin: 0;
  display: inline-block;
  position: absolute;
  bottom: 0px;
  padding-left: 30px;
  left: 0;
  color: #EA4E4A;
}
#navbar li .sub_menu .dividido > div .btn_flecha svg {
  display: inline-block;
  margin: 0;
}
#navbar li .sub_menu .dividido > div h3 {
  font-size: 20px;
  font-weight: 700;
  color: #EA4E4A;
}
#navbar li .sub_menu .dividido > div p {
  font-size: 13px;
}
#navbar li .sub_menu .dividido > div .boton-rojo {
  display: grid;
  line-height: 1;
  width: 100%;
  height: 40px;
  color: white;
  margin-left: 0;
  font-size: 18px;
}
#navbar li .sub_menu#item3 .dividido > div {
  padding-bottom: 30px;
}
#navbar li .sub_menu#item5 {
  max-width: 700px;
  left: auto;
}
#navbar li .sub_menu#item5 .dividido {
  grid-template-columns: repeat(2, 1fr);
}
#navbar li .sub_menu#item5 .dividido ul li {
  margin-bottom: 15px;
}
#navbar li .sub_menu#item5 .dividido ul li:before {
  content: none;
}
#navbar li .sub_menu#item5 .dividido ul li a {
  padding-left: 0;
  font-weight: 700;
}
#navbar li .sub_menu#item5 .dividido ul li:hover a {
  color: #EA4E4A;
}
#navbar li .sub_menu#item5 .dividido > div:last-child {
  padding-right: 40px;
}
#open_sogoacc.topleft{
  left: 0;
  top: 600px!important;
  display: none;
}
.nav-wrapper {
  margin: auto;
  text-align: center;
  /* max-width: 1600px; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  /* grid-template-columns: 160px auto; */
  align-items: center;
}
@media (max-width: 1600px) {
  .nav-wrapper {
   
  }
}
@media (max-width: 1000px) {
  .nav-wrapper {
    width: 100%;
    padding: 10px 20px;
  }
}

.logo {
  color: white;
  text-align: left;
  z-index: 100;
}
.logo a:last-child {
  display: none;
}
@media (max-width: 1000px) {
  .logo a:first-child {
    display: none;
  }
  .logo a:last-child {
    display: block;
  }
}

/* #navbar ul {
  display: inline-block;
  float: right;
  list-style: none;
  margin-top: -2px;
  text-align: right;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
} */
#navbar ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
}
@media (max-width: 1000px) {
  #navbar ul {
    display: none;
  }
}

@media (max-width: 1000px) {
  .menuIcon {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    height: 28px;
    width: 40px;
    z-index: 1001;
  }

  .hamburguesa2 span {
    width: 40px;
    height: 4px;
    display: block;
    background: black;
    margin-bottom: 10px;
  }
  .hamburguesa2 span:last-child {
    margin-bottom: 0;
  }
}
.overlay-menu {
  display: none;
}
@media (max-width: 1000px) {
  .overlay-menu {
    display: block;
  }
}
.overlay-menu .js-menu.menu-toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.overlay-menu .js-menu.menu-toggle span {
  width: 36px;
  height: 3px;
  display: block;
  background-color: black;
  margin-bottom: 8px;
}
.overlay-menu .js-menu.menu-toggle span:last-child {
  margin-bottom: 0;
}
.overlay-menu menu {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 54px;
  display: flex;
  transition: background-color 0.8s, transform 0.8s;
  will-change: transform;
  transform: translateX(100%);
  z-index: 10;
}
.overlay-menu menu.is-open {
  transform: translateX(0);
}
.overlay-menu menu.menu.is-open1 {
  transform: translateX(0);
}
.overlay-menu menu.is-open1:after {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.overlay-menu menu.menu.is-open1 nav {
  top: 0;
  width: 100%;
}

.overlay-menu menu:after {
  content: "";
  display: flex;
  height: 100%;
  flex: 0 0 380px;
  background-color: rgba(136, 136, 136, 0);
  transition: background-color 0.8s, transform 0.8s;
  will-change: transform;
  z-index: -10;
  pointer-events: none;
}
.overlay-menu menu.is-open:after {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.overlay-menu menu.is-open nav {
  box-shadow: 1px 0px 3px 0px #888;
}
.overlay-menu menu.is-first-level nav {
  background-color: #888;
}
.overlay-menu menu.is-first-level nav .close {
  background-color: #888;
}
.overlay-menu menu.is-first-level nav .close:before {
  opacity: 0;
}
.overlay-menu menu.is-first-level nav .close,
.overlay-menu menu.is-first-level nav .first-level > li > a {
  color: #888;
  border-color: #888;
}
.overlay-menu menu .close,
.overlay-menu menu a,
.overlay-menu menu .back {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
}
.overlay-menu menu .close:after,
.overlay-menu menu a:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  float: right;
  margin-right: 32px;
}
.overlay-menu menu .close {
  background-color: #E5A800;
  cursor: pointer;
  transition: background-color 0.8s, border-color 0.8s, color 0.8s;
}
.overlay-menu menu .close:after {
  margin-right: 10px;
  background-image: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ5MC40IDQ5MC40IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0OTAuNCA0OTAuNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0yNDUuMiw0OTAuNGMxMzUuMiwwLDI0NS4yLTExMCwyNDUuMi0yNDUuMlMzODAuNCwwLDI0NS4yLDBTMCwxMTAsMCwyNDUuMlMxMTAsNDkwLjQsMjQ1LjIsNDkwLjR6IE0yNDUuMiwyNC41ICAgIGMxMjEuNywwLDIyMC43LDk5LDIyMC43LDIyMC43cy05OSwyMjAuNy0yMjAuNywyMjAuN3MtMjIwLjctOTktMjIwLjctMjIwLjdTMTIzLjUsMjQuNSwyNDUuMiwyNC41eiIgZmlsbD0iIzAwMDAwMCIvPgoJCTxwYXRoIGQ9Ik0xODAuMywzMTAuMWMyLjQsMi40LDUuNSwzLjYsOC43LDMuNnM2LjMtMS4yLDguNy0zLjZsNDcuNi00Ny42bDQ3LjYsNDcuNmMyLjQsMi40LDUuNSwzLjYsOC43LDMuNnM2LjMtMS4yLDguNy0zLjYgICAgYzQuOC00LjgsNC44LTEyLjUsMC0xNy4zbC00Ny44LTQ3LjZsNDcuNi00Ny42YzQuOC00LjgsNC44LTEyLjUsMC0xNy4zcy0xMi41LTQuOC0xNy4zLDBsLTQ3LjYsNDcuNmwtNDcuNi00Ny42ICAgIGMtNC44LTQuOC0xMi41LTQuOC0xNy4zLDBzLTQuOCwxMi41LDAsMTcuM2w0Ny42LDQ3LjZsLTQ3LjYsNDcuNkMxNzUuNSwyOTcuNiwxNzUuNSwzMDUuMywxODAuMywzMTAuMXoiIGZpbGw9IiMwMDAwMDAiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K");
  transition: opacity 0.8s;
}
.overlay-menu menu nav, .overlay-menu menu ul {
  height: 100%;
}
.overlay-menu menu nav {
  position: absolute;
  width: 380px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 1px 0px 3px 0px transparent;
  transition: background-color 0.8s, transform 0.8s, box-shadow 0.8s;
  transform: translateX(0%);
  will-change: transform;
  right: 0;
  left: auto;
}
.overlay-menu menu nav a {
  justify-content: space-between;
  color: #2C2C2C;
  font-size: 14px;
  font-weight: 700;
  padding-left: 30px;
}
.overlay-menu menu nav .back {
  justify-content: flex-start;
  color: white;
  background-color: #EA4E4A;
  display: block;
  text-align: right;
}
.overlay-menu menu nav .back:before {
  content: "";
  width: 7px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: inline-block;
  background-image: url("../images/flecha_blanca.png");
  vertical-align: middle;
  margin-right: 5px;
}
.overlay-menu menu nav .first-level > li > a {
  transition: color 0.8s, border-color 0.8s;
}
.overlay-menu menu nav .first-level > li > a:after {
  order: 2;
  background-image: url("../images/flecha_abajo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.overlay-menu menu nav .second-level {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.8s, box-shadow 0.8s;
  will-change: transform;
  z-index: 10;
}
.overlay-menu menu nav .second-level.is-second-level {
  transform: translateX(0);
  box-shadow: -1px 0px 3px 0px #888;
}
.overlay-menu menu nav .second-level a {
  color: black;
}
.overlay-menu menu nav .second-level a:after {
  display: none;
}
.overlay-menu menu.is-first-level .mob_conoce .back:after {
  content: "CONOCE LA RUIZ";
  color: white;
  float: left;
  font-size: 14px;
  font-weight: 700;
  padding-top: 3px;
}
.overlay-menu menu.is-first-level .mob_admision .back:after {
  content: "ADMISIÓN";
  color: white;
  float: left;
  font-size: 14px;
  font-weight: 700;
  padding-top: 3px;
}
.overlay-menu menu.is-first-level .mob_carreras .back:after {
  content: "CARRERAS";
  color: white;
  float: left;
  font-size: 14px;
  font-weight: 700;
  padding-top: 3px;
}
.overlay-menu menu.is-first-level .mob_posgrado .back:after {
  content: "POSGRADO";
  color: white;
  float: left;
  font-size: 14px;
  font-weight: 700;
  padding-top: 3px;
}
.overlay-menu .sub_menu {
  display: none;
}
.overlay-menu .accordion-title:before {
  content: "";
  width: 7px;
  height: 12px;
  background-image: url("../images/flecha_abajo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  float: right;
  margin-right: 30px;
  margin-top: 3px;
  transform: rotate(90deg);
  display: block;
}
.overlay-menu .accordion-title.active-title {
  color: #EA4E4A;
}
.overlay-menu .accordion-title.active-title:before {
  transform: rotate(270deg);
}
.overlay-menu .accordion-title + .sub_menu {
  padding-top: 15px;
  padding-bottom: 25px;
  padding-right: 25px;
}
.overlay-menu .accordion-title + .sub_menu li a {
  text-transform: inherit;
  border: none;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  padding-left: 45px;
}
.overlay-menu .accordion-title + .sub_menu li a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 29px;
  top: 15px;
  display: block;
  background-color: #EA4E4A;
}

@media (max-width: 380px) {
  .overlay-menu menu nav {
    width: 100%;
  }
}
.overlay-menu li a {
  display: block;
  font-size: 1.8em;
  padding: 10px 0;
  text-align: left;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#navbar.extra {
  position: fixed;
  background-color: white;
}

footer {
  background: #2C2C2C;
  padding-top: 45px;
  color: white;
}
footer p {
  font-size: 15px;
  font-weight: 300;
}
footer .filas3 ul li h2 {
  margin: 0;
  color: #EA4E4A;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}
footer .filas3 ul div {
  margin-top: 20px;
  color: #CECECE;
  padding-right: 10px;
}
footer .filas3 ul div li {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 300;
}
footer .filas3 ul .redes_sociales ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
}
footer .filas3 ul .libro_reclamaciones svg, footer .filas3 ul .libro_reclamaciones p {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}
footer .filas3 ul .libro_reclamaciones p {
  margin-left: 10px;
}
footer .container + .container {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 17px 0;
}
footer .container + .container h3 {
  color: #CECECE;
  font-size: 11px;
  text-align: center;
}

.banner {
  padding: 0;
  position: relative;
}
.banner .owl-banner {
  /* height: calc(100vh - 172px); */
}
.banner .owl-banner .item {
  /* height: calc(100vh - 172px); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner .owl-banner .item .container {
  position: static;
}
.banner .owl-banner .item img {
  width: 1918px;
}
.banner .owl-banner .item .texto-banner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-family: "Open Sans", sans-serif;
}
.banner .owl-banner .item .texto-banner h2 {
  margin: 0;
 /* font-size: 70px;*/
  font-weight: 700;
  line-height: 1;
  color: white;
}
@media (max-width: 1000px) {
  .banner .owl-banner .item .texto-banner h2 {
    font-size: 45px;
  }
}
.banner .owl-banner .item .texto-banner h2 span {
  font-weight: 600;
  display: block;
  font-size: 49px;
/*  text-shadow: 1px 5px 3px black;*/
}
@media (max-width: 1000px) {
  .banner .owl-banner .item .texto-banner h2 span {
    font-size: 25px;
  }
}
.banner .owl-banner .item .texto-banner a {
  width: 300px;
  height: 50px;
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .banner .owl-banner .item .texto-banner a {
    width: 250px;
  }
}
.banner .owl-banner .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
}
.banner .owl-banner .owl-nav .owl-prev {
  float: left;
}
.banner .owl-banner .owl-nav .owl-next {
  float: right;
}
.banner .texto-extra {
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  display: grid;
  align-items: center;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.banner .texto-extra p {
  margin: 0;
  color: white;
  line-height: 1;
  font-size: 13px;
}

.conoce-nuestros-programas h2 {
  font-size: 50px;
 margin: 0;
  color: #2C2C2C;
  margin-bottom: 26px;

}
@media (max-width: 1000px) {
  .conoce-nuestros-programas h2 {
    font-size: 25px;
    text-align: left;
    /* margin-left: 20px; */
    /* max-width: 240px; */
    /* position: relative;
    padding-left: 25px;
    margin-bottom: 35px; */
  }
}
.conoce-nuestros-programas h2:before {
  content: "";
  width: 100px;
  height: 60px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
}
@media (max-width: 1000px) {
  .conoce-nuestros-programas h2:before {
    width: 50px;
    height: 50px;
    /* width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); */
  }
}
.conoce-nuestros-programas .filas3 {
  grid-gap: 24px;
  padding: 0 85px;
}
@media (max-width: 800px) {
  .conoce-nuestros-programas .filas3 {
    grid-template-columns: 100%;
    padding: 0 20px;
  }
}
.conoce-nuestros-programas .filas3 a {
  position: relative;
  overflow: hidden;
}
.conoce-nuestros-programas .filas3 a:before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 9;
  bottom: 0;
}
.conoce-nuestros-programas .filas3 a img {
  width: 100%;
  transform: scale(1);
  transition: all ease 0.8s;
}
.conoce-nuestros-programas .filas3 a img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .conoce-nuestros-programas .filas3 a img:first-child {
    display: none;
  }
  .conoce-nuestros-programas .filas3 a img:nth-child(2) {
    display: block;
  }
}
.conoce-nuestros-programas .filas3 a > div {
  bottom: 20%;
  left: 0;
  position: absolute;
  z-index: 99;
  color: white;
}
@media (max-width: 800px) {
  .conoce-nuestros-programas .filas3 a > div {
    bottom: 30px;
  }
}
.conoce-nuestros-programas .filas3 a > div h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  margin-left: 40px;
  line-height: 1;
}
@media (max-width: 800px) {
  .conoce-nuestros-programas .filas3 a > div h3 {
    font-size: 25px;
  }
  .conoce-nuestros-programas .filas3 a > div h3 br {
    display: none;
  }
}
.conoce-nuestros-programas .filas3 a > div h3:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
}
@media (max-width: 800px) {
  .conoce-nuestros-programas .filas3 a > div h3:before {
    width: 15px;
    height: 45px;
    transform: translateY(-50%);
    top: 50%;
  }
}
.conoce-nuestros-programas .filas3 a:hover img {
  transform: scale(1.1);
  transition: all ease 0.5s;
}

.saber-mas {
  color: white;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 1000px) {
  .saber-mas {
    background-position: 27% center;
  }
}
.saber-mas .filas2, .saber-mas .container {
  height: 100%;
}
.saber-mas .filas2 {
  align-items: center;
}
.saber-mas h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  margin: 0;
  margin-bottom: 25px;
}
@media (max-width: 1000px) {
  .saber-mas h2 {
    font-size: 30px;
    padding-left: 20px;
  }
}
.saber-mas h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .saber-mas h2:before {
    width: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}
.saber-mas p {
  font-size: 25px;
  font-weight: 300;
  margin: 0;
  line-height: 1;
  display: block;
}
@media (max-width: 1000px) {
  .saber-mas p {
    font-size: 20px;
    padding-left: 20px;
  }
}
.saber-mas p small {
  font-size: 14px;
  margin-top: 20px;
  display: block;
}
.saber-mas a {
  width: 300px;
  height: 50px;
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .saber-mas a {
    margin: 0 auto;
    margin-top: 35px;
  }
}
@media (max-width: 400px) {
  .saber-mas a {
    width: 90%;
  }
}

.porque-elegirnos {
  padding-top: 30px;
  padding-bottom: 0;
}
.porque-elegirnos .filas2 {
  grid-template-columns: 50% 50%;
  align-items: center;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 {
    grid-template-columns: 100%;
  }
}
.porque-elegirnos .filas2 img {
  width: 100%;
}
.porque-elegirnos .filas2 img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 img:first-child {
    display: none;
  }
  .porque-elegirnos .filas2 img:nth-child(2) {
    display: block;
  }
}
.porque-elegirnos .filas2 > div:last-child {
  display: block;
  padding-left: 100px;
}
@media (max-width: 1110px) {
  .porque-elegirnos .filas2 > div:last-child {
    padding-left: 50px;
  }
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 > div:last-child {
    padding: 0 30px;
  }
}
.porque-elegirnos .filas2 > div:last-child .owl-elegirnos {
  max-width: 450px;
  width: 100%;
}
@media (max-width: 1260px) {
  .porque-elegirnos .filas2 > div:last-child .owl-elegirnos {
    max-width: 350px;
  }
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 > div:last-child .owl-elegirnos {
    max-width: 100%;
  }
}
.porque-elegirnos .filas2 > div:last-child .owl-elegirnos .item {
  border-right: 1px solid #B1B1B1;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 > div:last-child .owl-elegirnos .item {
    border-right: 0;
    padding-bottom: 36px;
    border-bottom: 1px solid #B1B1B1;
    margin-bottom: 20px;
  }
}
.porque-elegirnos .filas2 > div:last-child h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  height: 110px;
  margin-left: -160px;
  color: #2C2C2C;
  background: white;
  padding-left: 25px;
  padding-top: 20px;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 > div:last-child h2 {
    font-size: 25px;
    margin-left: 0;
    padding: 0;
    height: auto;
    margin-top: 22px;
    margin-bottom: 34px;
  }
}
.porque-elegirnos .filas2 > div:last-child h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 > div:last-child h2:before {
    width: 15px;
    height: 40px;
  }
}
.porque-elegirnos .filas2 > div:last-child .titulo svg, .porque-elegirnos .filas2 > div:last-child .titulo h3 {
  display: inline-block;
  vertical-align: middle;
}
.porque-elegirnos .filas2 > div:last-child .titulo h3 {
  font-size: 25px;
  font-weight: 700;
  margin-left: 15px;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 > div:last-child .titulo h3 {
    font-size: 22px;
  }
}
.porque-elegirnos .filas2 > div:last-child .texto p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #484848;
  margin-top: 27px;
  margin-bottom: 25px;
}
.porque-elegirnos .filas2 > div:last-child .texto .btn_flecha {
  color: #EA4E4A;
  font-size: 15px;
  font-weight: 700;
}
.porque-elegirnos .filas2 .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  margin: 0;
  margin-right: -100px;
}
@media (max-width: 1340px) {
  .porque-elegirnos .filas2 .owl-nav {
    margin-right: -15%;
  }
}
@media (max-width: 1260px) {
  .porque-elegirnos .filas2 .owl-nav {
    margin-right: -25%;
  }
}
@media (max-width: 1110px) {
  .porque-elegirnos .filas2 .owl-nav {
    margin-right: -16%;
  }
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 .owl-nav {
    position: static;
    transform: none;
    margin-right: 0;
  }
}
.porque-elegirnos .filas2 .owl-nav button {
  margin: 0;
  display: block;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 .owl-nav button {
    display: inline-block;
    margin: 0 30px;
  }
}
.porque-elegirnos .filas2 .owl-nav button:hover {
  background-color: transparent;
}
.porque-elegirnos .filas2 .owl-nav button:last-child {
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .porque-elegirnos .filas2 .owl-nav button:last-child {
    margin-top: 0;
  }
}

.bloques3 {
  padding: 30px 20px;
}
.bloques3 .dividido {
  display: grid;
  grid-template-columns: 66.2% auto;
  grid-gap: 20px;
}
@media (max-width: 1000px) {
  .bloques3 .dividido {
    grid-template-columns: 100%;
  }
}
.bloques3 .dividido img {
  width: 100%;
}
.bloques3 .dividido > div:last-child > div {
  margin-bottom: 7px;
}
.bloques3 .dividido > div:last-child > div .textos h2:before {
  margin-right: 10px;
}
.bloques3 .dividido > div:last-child > div .textos a {
  /* padding-left: 40px; */
}
@media (max-width: 1000px) {
  .bloques3 .dividido > div:last-child > div .textos a {
    padding-left: 0px;
  }
}
.bloques3 .dividido > div:last-child > div:last-child {
  margin-bottom: 0;
}
.bloques3 .dividido .img_container {
  position: relative;
  overflow: hidden;
}
.bloques3 .dividido .img_container:before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 9;
  bottom: 0;
}
.bloques3 .dividido .img_container .textos {
  /* position: absolute;
  z-index: 9;
  color: white;
  bottom: 60px; */
}
@media (max-width: 1000px) {
  .bloques3 .dividido .img_container .textos {
    bottom: 15px;
  }
}
.bloques3 .dividido .img_container .textos h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1000px) {
  .bloques3 .dividido .img_container .textos h2 {
    font-size: 25px;
  }
}
.bloques3 .dividido .img_container .textos h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 28px;
}
@media (max-width: 1000px) {
  .bloques3 .dividido .img_container .textos h2:before {
    width: 15px;
    height: 45px;
    margin-right: 15px;
  }
}
.bloques3 .dividido .img_container .textos p, .bloques3 .dividido .img_container .textos a {
  /* padding-left: 50px; */
}
@media (max-width: 1000px) {
  .bloques3 .dividido .img_container .textos p, .bloques3 .dividido .img_container .textos a {
    padding-left: 0px;
  }
}
.bloques3 .dividido .img_container .textos p {
  color: white;
  /* max-width: 504px;
  font-size: 14px; */
}
.lo_nuevo.bloques3 .dividido .textos h4 {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  position: relative;
  line-height: 30px;
}

.lo_nuevo.bloques3 .dividido .textos h4:before {
  content: "";
  width: 25px;
  height: 60px;
  display: inline-block;
  background: #EA4E4A;
  position: absolute;
  left: -45px;
}
@media (max-width: 1000px) {
  .bloques3 .dividido .img_container .textos p {
    display: none;
    margin: 0;
  }

}
.bloques3 .dividido .img_container .textos a {
  font-weight: 400;
  font-size: 15px;
  display: block!important;
}
.novedades {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 1000px) {
  .novedades {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.novedades h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  margin: 0;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 1000px) {
  .novedades h2 {
    font-size: 25px;
    text-align: left;
    margin-bottom: 30px;
  }
}
.novedades h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .novedades h2:before {
    width: 15px;
    height: 40px;
  }
}
.novedades .dividido {
  display: grid;
  grid-template-columns: 45% auto;
  grid-gap: 20px;
}
@media (max-width: 1000px) {
  .novedades .dividido {
    grid-template-columns: 100%;
    grid-gap: 30px;
  }
}
.novedades .dividido > div:last-child > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .novedades .dividido > div:last-child > div {
    grid-template-columns: 100%;
  }
}
.novedades .dividido > div:last-child > div:last-child {
  margin-bottom: 0;
}
.novedades .dividido > div img {
  width: 100%;
}
.novedades .dividido > div .texto {
  padding: 25px 20px;
}
@media (max-width: 1000px) {
  .novedades .dividido > div .texto {
    padding: 15px 0;
  }
}
.novedades .dividido > div .texto h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1000px) {
  .novedades .dividido > div .texto h3 {
    font-size: 18px;
  }
}
.novedades .dividido > div .texto p {
  font-size: 14px;
}
.novedades .dividido > div .texto a {
  font-size: 15px;
  font-weight: 700;
  color: #EA4E4A;
}

.nuestro_egresados {
  padding: 45px 0;
  background: #F5F5F5;
  padding-bottom: 60px;
}
@media (max-width: 1000px) {
  .nuestro_egresados {
    padding: 40px 20px;
  }
}
.nuestro_egresados h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  margin: 0;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 1000px) {
  .nuestro_egresados h2 {
    font-size: 25px;
    text-align: left;
    margin-bottom: 40px;
  }
}
.nuestro_egresados h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .nuestro_egresados h2:before {
    width: 15px;
    height: 40px;
  }
}
.nuestro_egresados .filas3 {
  padding: 0 25px;
  grid-gap: 25px;
}
.nuestro_egresados .filas3 img {
  width: 100%;
  display: block;
  line-height: 0;
}
.nuestro_egresados .filas3 .texto {
  width: 100%;
  display: grid;
  height: 90px;
  align-items: center;
  text-align: center;
  background: #EA4E4A;
  position: relative;
}
.nuestro_egresados .filas3 .texto:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #ea504a transparent;
  position: absolute;
  top: -30px;
  left: 50%;
}
.nuestro_egresados .filas3 .texto h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .nuestro_egresados .filas3 .texto h3 {
    font-size: 18px;
  }
}
.nuestro_egresados .filas3 .texto p {
  margin: 0;
  font-size: 13px;
}
.nuestro_egresados .filas3 > div {
  overflow: hidden;
}
.nuestro_egresados .filas3 > div:hover img {
  transform: scale(1.2);
  transition: all ease 0.8s;
}

.nosotros .banner .item {
  position: relative;
}
.nosotros .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.nosotros .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nosotros .banner .item .textos h1 {
    font-size: 45px;
  }
}
.nosotros .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .nosotros .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.nosotros .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .nosotros .banner .item img:first-child {
    display: none;
  }
  .nosotros .banner .item img:nth-child(2) {
    display: block;
  }
}
@media (max-width: 1100px) {
  .nosotros .palabras-rector {
    padding: 30px 0;
  }
}
.nosotros .palabras-rector .filas2 {
  align-items: center;
}
@media (max-width: 1100px) {
  .nosotros .palabras-rector .filas2 {
    grid-template-columns: 100%;
  }
}
.nosotros .palabras-rector .filas2 > div {
  position: relative;
}
.nosotros .palabras-rector .filas2 > div:last-child {
  padding: 0 95px;
}
@media (max-width: 1300px) {
  .nosotros .palabras-rector .filas2 > div:last-child {
    padding: 0 55px;
  }
}
@media (max-width: 1100px) {
  .nosotros .palabras-rector .filas2 > div:last-child {
    order: 1;
    padding: 0 30px;
    padding-bottom: 47px;
  }
}
.nosotros .palabras-rector .filas2 > div:last-child h3 {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 35px;
  line-height: 1;
}
@media (max-width: 1100px) {
  .nosotros .palabras-rector .filas2 > div:last-child h3 {
    font-size: 25px;
  }
}
.nosotros .palabras-rector .filas2 > div:last-child p {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #484848;
}
@media (max-width: 1100px) {
  .nosotros .palabras-rector .filas2 > div:first-child {
    order: 2;
  }
}
.nosotros .palabras-rector .filas2 img {
  width: 100%;
}
.nosotros .palabras-rector .filas2 .btn_play {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.nosotros .palabras-rector .filas2 .btn_play p {
  color: white;
  font-size: 17px;
}

.nuestras_autoridades .banner .item {
  position: relative;
}
.nuestras_autoridades .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.nuestras_autoridades .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item .textos h1 {
    font-size: 45px;
  }
}
.nuestras_autoridades .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.nuestras_autoridades .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item img:first-child {
    display: none;
  }
  .nuestras_autoridades .banner .item img:nth-child(2) {
    display: block;
  }
}
.nuestras_autoridades .autoridades {
  padding-top: 90px;
  padding-bottom: 150px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .autoridades {
    padding-top: 40px;
    padding-bottom: 85px;
  }
}
@media (max-width: 1000px) {
  .nuestras_autoridades .autoridades .container {
    padding: 0 50px;
  }
}
@media (max-width: 420px) {
  .nuestras_autoridades .autoridades .container {
    padding: 0 25px;
  }
}
.nuestras_autoridades .autoridades .filas3 {
  column-gap: 50px;
  grid-row-gap: 60px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .autoridades .filas3 {
    column-gap: 40px;
  }
}
.nuestras_autoridades .autoridades .filas3 > div img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 12px;
  width: 100%;
}
.nuestras_autoridades .autoridades .filas3 > div .rector svg, .nuestras_autoridades .autoridades .filas3 > div .rector h2 {
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
.nuestras_autoridades .autoridades .filas3 > div .rector h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .autoridades .filas3 > div .rector h2 {
    font-size: 15px;
  }
}
.nuestras_autoridades .autoridades .filas3 > div .rector h2 span {
  display: block;
  font-size: 14px;
  color: #2C2C2C;
  font-weight: normal;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .autoridades .filas3 > div .rector h2 span {
    font-size: 13px;
  }
}
.nuestras_autoridades .autoridades .filas3 > div .rector svg {
  margin-right: 12px;
}
.nuestras_autoridades .autoridades .filas3 > div .correo_doctor {
  padding: 10px 0;
  border-top: 1px solid #CBCCCA;
  border-bottom: 1px solid #CBCCCA;
  margin: 10px 0;
}
.nuestras_autoridades .autoridades .filas3 > div .correo_doctor a {
  font-size: 14px;
}
.nuestras_autoridades .autoridades .filas3 > div .correo_doctor svg {
  margin-right: 12px;
}
.nuestras_autoridades .autoridades .filas3 > div > div:last-child a {
  color: #EA4E4A;
  font-size: 15px;
  font-weight: 700;
}

.nuestras_autoridades .banner .item {
  position: relative;
}
.nuestras_autoridades .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.nuestras_autoridades .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item .textos h1 {
    font-size: 45px;
  }
}
.nuestras_autoridades .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.nuestras_autoridades .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item img:first-child {
    display: none;
  }
  .nuestras_autoridades .banner .item img:nth-child(2) {
    display: block;
  }
}
.nuestras_autoridades .banner .item .boton_informacion {
  width: 100%;
  right: 0;
  bottom: 0;
  position: absolute;
  text-align: right;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item .boton_informacion {
    left: 0;
    text-align: center;
  }
}
.nuestras_autoridades .banner .item .boton_informacion a {
  height: 60px;
  max-width: 500px;
  width: 100%;
  display: inline-grid;
  background: #EA4E4A;
  color: white;
  text-align: center;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item .boton_informacion a {
    font-size: 20px;
    height: 50px;
    max-width: 374px;
  }
}
.nuestras_autoridades .proceso_documentacion {
  padding-top: 0;
  padding-bottom: 110px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .proceso_documentacion {
    padding-bottom: 60px;
  }
}
.nuestras_autoridades .proceso_documentacion .filas2 > div:last-child {
  text-align: right;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .proceso_documentacion .filas2 > div:last-child {
    display: none;
    order: 1;
  }
}
@media (max-width: 1000px) {
  .nuestras_autoridades .proceso_documentacion .filas2 > div:first-child {
    order: 2;
  }
}
.nuestras_autoridades .proceso_documentacion .proceso p {
  font-size: 14px;
  color: #484848;
}
.nuestras_autoridades .proceso_documentacion h2 {
  margin-bottom: 28px;
  font-size: 35px;
  font-weight: 700;
  margin-top: 55px;
  position: relative;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .proceso_documentacion h2 {
    margin-top: 40px;
    font-size: 25px;
    padding-left: 25px;
  }
}
.nuestras_autoridades .proceso_documentacion h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .proceso_documentacion h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.nuestras_autoridades .proceso_documentacion .documentacion h2 {
  margin-top: 75px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .proceso_documentacion .documentacion h2 {
    margin-top: 60px;
  }
}
.nuestras_autoridades .proceso_documentacion .documentacion ul li {
  position: relative;
  margin-left: 30px;
  color: #484848;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  padding-left: 22px;
}
.nuestras_autoridades .proceso_documentacion .documentacion ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #EA4E4A;
  border-radius: 50%;
  margin-right: 15px;
  position: absolute;
  top: 7px;
  left: 0;
}
.nuestras_autoridades .proceso_documentacion form {
  background: #F5F5F5;
  max-width: 500px;
  display: inline-grid;
  padding: 60px 50px;
  padding-bottom: 50px;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.nuestras_autoridades .proceso_documentacion form input[type=text], .nuestras_autoridades .proceso_documentacion form input[type=email], .nuestras_autoridades .proceso_documentacion form select {
  width: 100%;
  height: 45px;
  border-radius: 23px;
  border: #A4A89C 1px solid;
  background: transparent;
  padding-left: 20px;
  margin-bottom: 25px;
  padding-right: 15px;
  font-size: 14px;
  color: #484848;
}
.nuestras_autoridades .proceso_documentacion form input[type=text]::placeholder, .nuestras_autoridades .proceso_documentacion form input[type=email]::placeholder, .nuestras_autoridades .proceso_documentacion form select::placeholder {
  color: #484848;
  font-size: 14px;
}
.nuestras_autoridades .proceso_documentacion form .check {
  text-align: left;
}
.nuestras_autoridades .proceso_documentacion form .check label {
  color: #3E3E3E;
  font-size: 12px;
  text-align: left;
  position: relative;
  margin-left: 20px;
  display: block;
}
.nuestras_autoridades .proceso_documentacion form .check label:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: white;
  border: 1px solid #AFAFAF;
  position: absolute;
  top: 0;
  left: -20px;
}
.nuestras_autoridades .proceso_documentacion form .check input {
  display: none;
}
.nuestras_autoridades .proceso_documentacion form .check input:checked + label:before {
  background: #EA4E4A;
  border-color: #EA4E4A;
  content: "✓";
  color: white;
  box-sizing: border-box;
  padding-left: 3px;
  font-size: 11px;
}
.nuestras_autoridades .proceso_documentacion form .boton-rojo {
  width: 200px;
  height: 45px;
  border: 0;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 30px;
}
.nuestras_autoridades .calendario_admision {
  padding-top: 65px;
  background: #F7F7F7;
  padding-bottom: 70px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .calendario_admision {
    padding-top: 0;
    background: white;
  }
}
.nuestras_autoridades .calendario_admision h2 {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  position: relative;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .calendario_admision h2 {
    display: none;
  }
}
.nuestras_autoridades .calendario_admision h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.nuestras_autoridades .calendario_admision table {
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .calendario_admision table {
    display: none;
  }
}
.nuestras_autoridades .calendario_admision table thead {
  background: #EA4E4A;
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.nuestras_autoridades .calendario_admision table thead th {
  height: 50px;
  line-height: 1;
}
.nuestras_autoridades .calendario_admision table tbody tr td {
  height: 50px;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}
.nuestras_autoridades .calendario_admision table tbody tr:first-child {
  background: #CBD2D6;
  text-align: center;
}
.nuestras_autoridades .calendario_admision table tbody tr:first-child td {
  font-size: 14px;
}
.nuestras_autoridades .calendario_admision table tbody tr.claro {
  background: #EAE4E4;
}
.nuestras_autoridades .calendario_admision table tbody tr.claro td:first-child {
  height: 30px;
  padding-left: 10px;
  text-align: left;
}
.nuestras_autoridades .calendario_admision table tbody tr.crema {
  background: #F7E8C6;
}
.nuestras_autoridades .calendario_admision table tbody tr.crema td:first-child {
  height: 30px;
  padding-left: 10px;
  text-align: left;
}
.nuestras_autoridades .calendario_admision table tbody tr.crema_oscuro {
  background: #E5D8BA;
}
.nuestras_autoridades .calendario_admision table tbody tr.crema_oscuro td:first-child {
  height: 30px;
  padding-left: 10px;
  text-align: left;
}
.nuestras_autoridades .calendario_admision .boton-rojo {
  width: 300px;
  height: 50px;
  margin: 0 auto;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .calendario_admision .boton-rojo {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .nuestras_autoridades .calendario_admision .boton-rojo {
    width: 100%;
  }
}
.nuestras_autoridades .datos_extras, .proyectos_cis .datos_extras {
  padding: 30px 25px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .datos_extras, .proyectos_cis .datos_extras {
    padding-top: 0;
  }
}
.nuestras_autoridades .datos_extras .filas3, .proyectos_cis .datos_extras .filas3 {
  grid-gap: 25px;
}
.nuestras_autoridades .datos_extras .filas3 img, .proyectos_cis .datos_extras .filas3 img  {
  width: 100%;
}
.nuestras_autoridades .datos_extras .filas3 > a, .proyectos_cis .datos_extras .filas3 > a {
  position: relative;
}
.nuestras_autoridades .datos_extras .filas3 > a:before, .proyectos_cis .datos_extras .filas3 > a:before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 9;
  bottom: 0;
}
.nuestras_autoridades .datos_extras .filas3 > a .texto, .proyectos_cis .datos_extras .filas3 > a .texto {
  position: absolute;
  bottom: 35px;
  left: 0;
  color: white;
  z-index: 99;
}
.nuestras_autoridades .datos_extras .filas3 > a .texto h3 {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
  line-height: 1;
}

.proyectos_cis .datos_extras .filas3 > a .texto h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .datos_extras .filas3 > a .texto h3 {
    font-size: 22px;
  }

  .proyectos_cis .datos_extras .filas3 > a .texto h3 {
    font-size: 18px;
    padding-right:5px;
  }
}
.nuestras_autoridades .datos_extras .filas3 > a .texto h3:before {
  content: "";
  width: 25px;
  height: 60px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .nuestras_autoridades .datos_extras .filas3 > a .texto h3:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 45px;
  }
}
.nuestras_autoridades .aun_no_sabes {
  padding-top: 90px;
  padding-bottom: 160px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .aun_no_sabes {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.nuestras_autoridades .aun_no_sabes h2 {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .aun_no_sabes h2 {
    display: none;
  }
}
.nuestras_autoridades .aun_no_sabes h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .aun_no_sabes h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.nuestras_autoridades .aun_no_sabes .owl-carousel {
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .nuestras_autoridades .aun_no_sabes .owl-carousel {
    max-width: 85%;
  }
}
@media (max-width: 1000px) {
  .nuestras_autoridades .aun_no_sabes .owl-carousel {
    max-width: 100%;
    padding: 0 20px;
  }
}
.nuestras_autoridades .aun_no_sabes .owl-carousel a {
  position: relative;
  display: block;
  overflow: hidden;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel a:before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 9;
  bottom: 0;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel a .texto {
  position: absolute;
  bottom: 35px;
  left: 0;
  color: white;
  z-index: 99;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel a .texto h3 {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
  line-height: 1;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel a .texto h3:before {
  content: "";
  width: 20px;
  height: 50px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .nuestras_autoridades .aun_no_sabes .owl-carousel a .texto h3:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.nuestras_autoridades .aun_no_sabes .owl-carousel a:hover img {
  transform: scale(1.2);
  transition: all ease 0.5s;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel .owl-nav button {
  margin: 0;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel .owl-nav button:hover {
  background-color: transparent;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel .owl-nav .owl-prev {
  float: left;
  margin-left: -70px;
}
.nuestras_autoridades .aun_no_sabes .owl-carousel .owl-nav .owl-next {
  float: right;
  margin-right: -70px;
}
@media (max-width: 1000px) {
  .nuestras_autoridades .aun_no_sabes .owl-carousel .owl-stage-outer {
    height: auto !important;
  }
  .nuestras_autoridades .aun_no_sabes .owl-carousel .owl-stage-outer .owl-stage {
    transform: none !important;
    width: 100% !important;
  }
  .nuestras_autoridades .aun_no_sabes .owl-carousel .owl-stage-outer .owl-stage .owl-item {
    display: block;
    width: 100% !important;
    margin-bottom: 20px;
  }
}

.nuestras_carreras .banner .item {
  position: relative;
}
.nuestras_carreras .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.nuestras_carreras .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nuestras_carreras .banner .item .textos h1 {
    font-size: 30px;
  }

   .nuestras_carreras .banner .item .textos.cinde  h1 {
    font-size: 30px;
  }
}
.nuestras_carreras .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .nuestras_carreras .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.nuestras_carreras .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .nuestras_carreras .banner .item img:first-child {
    display: none;
  }
  .nuestras_carreras .banner .item img:nth-child(2) {
    display: block;
  }
}
.nuestras_carreras .menu-carreras {
  padding: 0;
  background: #F4F4F4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 100px;
  z-index: 999;
  position: sticky;
}
@media (max-width: 1000px) {
  .nuestras_carreras .menu-carreras {
    display: none;
  }
}
.nuestras_carreras .menu-carreras ul {
  display: grid;
  height: 50px;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}
.nuestras_carreras .menu-carreras ul li a {
  font-size: 14px;
  font-weight: 600;
}
.nuestras_carreras .menu-carreras ul li a.btn-solicita {
  height: 60px;
  background: #EA4E4A;
  color: white;
  display: grid;
  align-items: center;
  text-align: center;
  margin-top: -10px;
  position: relative;
  z-index: 9;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-top: 10px;
}
.nuestras_carreras .menu-carreras-mobile {
  padding: 0;
  height: 50px;
  display: none;
  position: relative;
}
@media (max-width: 1000px) {
  .nuestras_carreras .menu-carreras-mobile {
    display: block;
    margin-top: 53px;
  }
}
.nuestras_carreras .menu-carreras-mobile .filas2 {
  height: 100%;
}
@media (max-width: 1000px) {
  .nuestras_carreras .menu-carreras-mobile .filas2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nuestras_carreras .menu-carreras-mobile .filas2 > div {
  padding-top: 15px;
  text-align: center;
}
.nuestras_carreras .menu-carreras-mobile .filas2 > div:first-child {
  background: #F4F4F4;
}
.nuestras_carreras .menu-carreras-mobile .filas2 > div:first-child .mostrar_menu {
  display: none;
}
.nuestras_carreras .menu-carreras-mobile .filas2 > div:last-child {
  background: #EA4E4A;
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.nuestras_carreras .presentacion {
  padding: 0;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.nuestras_carreras .presentacion h2 {
  font-size: 35px;
  margin: 0;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1000px) {
  .nuestras_carreras .presentacion h2 {
    font-size: 25px;
    margin-top: 43px;
    padding-left: 25px;
    margin-bottom: 20px;
  }
}
.nuestras_carreras .presentacion h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .nuestras_carreras .presentacion h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    margin: 0 auto;
  }
}
.nuestras_carreras .presentacion p {
    font-size: 14px;
    line-height: 20px;
    color: #545454;
}
.nuestras_carreras .presentacion form {
  background: #F5F5F5;
  max-width: 500px;
  display: inline-grid;
  padding: 60px 50px;
  padding-bottom: 50px;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.nuestras_carreras .presentacion form input[type=text], .nuestras_carreras .presentacion form input[type=email], .nuestras_carreras .presentacion form select {
  width: 100%;
  height: 45px;
  border-radius: 23px;
  border: #A4A89C 1px solid;
  background: transparent;
  padding-left: 20px;
  margin-bottom: 25px;
  padding-right: 15px;
  font-size: 14px;
  color: #484848;
}
.nuestras_carreras .presentacion form input[type=text]::placeholder, .nuestras_carreras .presentacion form input[type=email]::placeholder, .nuestras_carreras .presentacion form select::placeholder {
  color: #484848;
  font-size: 14px;
}
.nuestras_carreras .presentacion form .check {
  text-align: left;
}
.nuestras_carreras .presentacion form .check label {
  color: #3E3E3E;
  font-size: 12px;
  text-align: left;
  position: relative;
  margin-left: 20px;
  display: block;
}
.nuestras_carreras .presentacion form .check label:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: white;
  border: 1px solid #AFAFAF;
  position: absolute;
  top: 0;
  left: -20px;
}
.nuestras_carreras .presentacion form .check input {
  display: none;
}
.nuestras_carreras .presentacion form .check input:checked + label:before {
  background: #EA4E4A;
  border-color: #EA4E4A;
  content: "✓";
  color: white;
  box-sizing: border-box;
  padding-left: 3px;
  font-size: 11px;
}
.nuestras_carreras .presentacion form .boton-rojo {
  width: 200px;
  height: 45px;
  border: 0;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 30px;
}
.nuestras_carreras .presentacion .filas2 > div:last-child {
  text-align: right;
}
@media (max-width: 1000px) {
  .nuestras_carreras .presentacion .filas2 > div:last-child {
    display: none;
    order: 1;
  }
}
@media (max-width: 1000px) {
  .nuestras_carreras .presentacion .filas2 > div:first-child {
    order: 2;
  }
}
.nuestras_carreras .porque_estudiar {
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.nuestras_carreras .porque_estudiar .container, .nuestras_carreras .porque_estudiar .filas2 {
  height: 100%;
}
.nuestras_carreras .porque_estudiar .filas2 {
  align-items: center;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 {
    grid-template-columns: 100%;
  }
}
.nuestras_carreras .porque_estudiar .filas2 h2 {
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  position: relative;
  padding-left: 33px;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 h2 {
    font-size: 30px;
  }
}
.nuestras_carreras .porque_estudiar .filas2 h2:before {
  content: "";
  width: 20px;
  height: 150px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 55px;
  }
}
.nuestras_carreras .porque_estudiar .filas2 .owl-carousel {
  max-width: 420px;
  margin-top: 65px;
  padding-right: 10px;
  border-right: 1px solid #B1B1B1;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 .owl-carousel {
    margin-top: 20px;
    max-width: 100%;
    padding: 0;
    border: 0;
  }
}
.nuestras_carreras .porque_estudiar .filas2 .owl-carousel .item {
  color: white;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 .owl-carousel .item {
    padding-left: 30px;
  }
}
.nuestras_carreras .porque_estudiar .filas2 .owl-carousel .item h3 {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 .owl-carousel .item h3 {
    font-size: 22px;
  }
}
.nuestras_carreras .porque_estudiar .filas2 .owl-carousel .item p {
  font-size: 14px;
}
.nuestras_carreras .porque_estudiar .filas2 .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -90px;
  margin: 0;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 .owl-carousel .owl-nav {
    position: static;
    transform: none;
  }
}
.nuestras_carreras .porque_estudiar .filas2 .owl-carousel .owl-nav button {
  display: block;
  margin: 10px 0;
}
@media (max-width: 1000px) {
  .nuestras_carreras .porque_estudiar .filas2 .owl-carousel .owl-nav button {
    display: inline-block;
    margin: 0 30px;
  }
}
.nuestras_carreras .porque_estudiar .filas2 .owl-carousel .owl-nav button:hover {
  background: transparent !important;
}
.nuestras_carreras .campo_laboral {
  padding: 20px 0;
}
@media (max-width: 1000px) {
  .nuestras_carreras .campo_laboral {
    padding-bottom: 60px;
  }
}
.nuestras_carreras .campo_laboral .filas2 {
  align-items: center;
}
.nuestras_carreras .campo_laboral .filas2 > div:first-child {
    max-width: 700px;
    font-size: 14px;
    margin: 0 auto;
    padding: 0px 0px;
    color:#484848;
    padding: 0 20px;
}
@media (max-width: 1000px) {
  .nuestras_carreras .campo_laboral .filas2 > div:first-child {
    max-width: 100%;
    padding: 0 30px;
    order: 2;
  }
}
@media (max-width: 1000px) {
  .nuestras_carreras .campo_laboral .filas2 > div:last-child {
    order: 1;
    margin-bottom: 30px;
  }
}
.nuestras_carreras .campo_laboral h2 {
  font-size: 35px;
  margin: 0;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1000px) {
  .nuestras_carreras .campo_laboral h2 {
    font-size: 25px;
    padding-left: 25px;
    margin-bottom: 23px;
  }
}
.nuestras_carreras .campo_laboral h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .nuestras_carreras .campo_laboral h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.nuestras_carreras .campo_laboral img {
  width: 100%;
}
.nuestras_carreras .campo_laboral ul li {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-left: 20px;
  font-size: 14px;
  color: #484848;
}
@media (max-width: 1000px) {
  .nuestras_carreras .campo_laboral ul li {
    margin-bottom: 10px;
  }
}
.nuestras_carreras .campo_laboral ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  background: #EA4E4A;
  position: absolute;
  top: 6px;
  border-radius: 50%;
  left: 0;
}
.nuestras_carreras .malla-curricular {
  background: #F7F7F7;
  padding: 75px 0;
}
@media (max-width: 1000px) {
  .nuestras_carreras .malla-curricular {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}
.nuestras_carreras .malla-curricular h2 {
  font-size: 35px;
  margin: 0;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 1000px) {
  .nuestras_carreras .malla-curricular h2 {
    font-size: 25px;
    padding-left: 25px;
    margin-bottom: 35px;
  }
}
.nuestras_carreras .malla-curricular h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .nuestras_carreras .malla-curricular h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.nuestras_carreras .malla-curricular .item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #EA4E4A;
  line-height: 1;
  display: block;
  border-bottom: 5px solid #EA4E4A;
  padding-bottom: 12px;
  margin-bottom: 25px;
}
.nuestras_carreras .malla-curricular .item h3 span {
  font-size: 90px;
}
.nuestras_carreras .malla-curricular .item ul li {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 35px;
}
.nuestras_carreras .malla-curricular .item ul li:before {
  content: "";
  display: block;
  background: #EA4E4A;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 5px;
  left: 15px;
  border-radius: 50%;
}
.nuestras_carreras .malla-curricular .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media (max-width: 800px) {
  .nuestras_carreras .malla-curricular .owl-nav {
    position: static;
    transform: none;
    padding-top: 30px;
    border-top: 1px solid #B1B1B1;
    margin-top: 50px;
  }
}
.nuestras_carreras .malla-curricular .owl-nav button {
  margin: 0;
}
.nuestras_carreras .malla-curricular .owl-nav button:hover {
  background: transparent !important;
}
.nuestras_carreras .malla-curricular .owl-nav button.owl-prev {
  margin-left: -80px;
  float: left;
}
@media (max-width: 800px) {
  .nuestras_carreras .malla-curricular .owl-nav button.owl-prev {
    float: inherit;
    margin-right: 30px;
  }
}
.nuestras_carreras .malla-curricular .owl-nav button.owl-next {
  margin-right: -80px;
  float: right;
}
@media (max-width: 800px) {
  .nuestras_carreras .malla-curricular .owl-nav button.owl-next {
    float: inherit;
    margin-left: 30px;
  }
}
@media (max-width: 1400px) {
  .nuestras_carreras .malla-curricular .owl-carousel {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .nuestras_carreras .malla-curricular .owl-carousel {
    width: 100%;
  }
}
.nuestras_carreras .plana-revista {
  padding: 0 25px;
  padding-bottom: 40px;
}
@media (max-width: 1000px) {
  .nuestras_carreras .plana-revista {
    padding-top: 50px;
  }
}
.nuestras_carreras .plana-revista .filas3 {
  grid-gap: 25px;
}
.nuestras_carreras .plana-revista a {
  background: #EA4E4A;
  display: grid;
  width: 100%;
  height: 150px;
  align-items: center;
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .nuestras_carreras .plana-revista a {
    height: 110px;
  }
}
.nuestras_carreras .plana-revista a svg, .nuestras_carreras .plana-revista a p {
  display: inline-block;
  vertical-align: middle;
}
.nuestras_carreras .plana-revista a p {
  margin: 0;
  font-size: 20px;
  margin-left: 25px;
}

.posgrado .banner .item {
  position: relative;
}
.posgrado .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.posgrado .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .posgrado .banner .item .textos h1 {
    font-size: 45px;
  }
}
.posgrado .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .posgrado .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.posgrado .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .posgrado .banner .item img:first-child {
    display: none;
  }
  .posgrado .banner .item img:nth-child(2) {
    display: block;
  }
}
.posgrado .presentacion {
  padding: 0;
  padding-bottom: 60px;
  margin: 0 auto;
}
.posgrado .presentacion h2 {
  font-size: 35px;
  margin: 0;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1000px) {
  .posgrado .presentacion h2 {
    font-size: 25px;
    margin-top: 43px;
    padding-left: 25px;
    margin-bottom: 20px;
  }
}
.posgrado .presentacion h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .posgrado .presentacion h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.posgrado .presentacion p,
.posgrado .presentacion ol li,
.posgrado .presentacion ul li{
  font-size: 14px;
  line-height: 25px;
}
.posgrado .presentacion ol,
.posgrado .presentacion ul{
    padding-left: 20px;
}
.posgrado .presentacion .filas2 {
  align-items: center;
}
.posgrado .presentacion .filas2 > div:last-child {
  text-align: center;
}
.posgrado .presentacion .filas2 > div:last-child img {
  border: 10px white solid;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  max-width: 400px;
  width: 100%;
}
.posgrado .presentacion .filas2 > div:last-child p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.posgrado .presentacion .filas2 > div:last-child p span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 5px;
}
.posgrado .consejo_escuela {
  background: #F7F7F7;
  padding: 60px 0;
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela {
    padding-top: 55px;
    padding-bottom: 50px;
  }
}
.posgrado .consejo_escuela h2 {
  font-size: 35px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela h2 {
    font-size: 25px;
    margin-top: 0px;
    padding-left: 25px;
    margin-bottom: 40px;
  }
}
.posgrado .consejo_escuela h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.posgrado .consejo_escuela .item > div img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 12px;
  width: 100%;
}
.posgrado .consejo_escuela .item > div .rector svg, .posgrado .consejo_escuela .item > div .rector h3 {
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
.posgrado .consejo_escuela .item > div .rector h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  width: 80%;
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela .item > div .rector h3 {
    font-size: 15px;
  }
}
.posgrado .consejo_escuela .item > div .rector h3 span {
  display: block;
  font-size: 14px;
  color: #2C2C2C;
  font-weight: normal;
  margin-top: 5px;
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela .item > div .rector h3 span {
    font-size: 13px;
  }
}
.posgrado .consejo_escuela .item > div .rector svg {
  margin-right: 12px;
}
.posgrado .consejo_escuela .item > div .correo_doctor {
  padding: 10px 0;
  border-top: 1px solid #CBCCCA;
  border-bottom: 1px solid #CBCCCA;
  margin: 10px 0;
}
.posgrado .consejo_escuela .item > div .correo_doctor a {
  font-size: 14px;
}
.posgrado .consejo_escuela .item > div .correo_doctor svg {
  margin-right: 12px;
}
.posgrado .consejo_escuela .item > div > div:last-child a {
  color: #EA4E4A;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 1420px) {
  .posgrado .consejo_escuela .owl-autoridades {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela .owl-autoridades {
    width: calc(100% - 30px);
  }
}
.posgrado .consejo_escuela .owl-autoridades .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 100%;
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela .owl-autoridades .owl-nav {
    position: static;
    transform: none;
    margin-top: 40px;
  }
}
.posgrado .consejo_escuela .owl-autoridades .owl-nav button {
  margin: 0;
}
.posgrado .consejo_escuela .owl-autoridades .owl-nav button:hover {
  background: transparent;
}
.posgrado .consejo_escuela .owl-autoridades .owl-nav button.owl-prev {
  float: left;
  margin-left: -95px;
}
@media (max-width: 1420px) {
  .posgrado .consejo_escuela .owl-autoridades .owl-nav button.owl-prev {
    margin-left: -65px;
  }
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela .owl-autoridades .owl-nav button.owl-prev {
    float: inherit;
    margin-left: 0;
    margin-right: 30px;
  }
}
.posgrado .consejo_escuela .owl-autoridades .owl-nav button.owl-next {
  float: right;
  margin-right: -95px;
}
@media (max-width: 1420px) {
  .posgrado .consejo_escuela .owl-autoridades .owl-nav button.owl-next {
    margin-right: -65px;
  }
}
@media (max-width: 1000px) {
  .posgrado .consejo_escuela .owl-autoridades .owl-nav button.owl-next {
    float: inherit;
    margin-right: 0;
    margin-left: 30px;
  }
}
.posgrado .maestrias {
  padding-top: 95px;
  padding-bottom: 30px;
}
.posgrado .maestrias h2 {
  text-align: center;
  font-size: 35px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .posgrado .maestrias h2 {
    font-size: 25px;
    margin-top: 0px;
    padding-left: 25px;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
  }
}
.posgrado .maestrias h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .posgrado .maestrias h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.posgrado .maestrias .item {
  position: relative;
  display: block;
}
.posgrado .maestrias .item:before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 9;
  bottom: 0;
}
.posgrado .maestrias .item .textos {
  position: absolute;
  z-index: 9;
  color: white;
  bottom: 35px;
}
@media (max-width: 1000px) {
  .posgrado .maestrias .item .textos {
    bottom: 15px;
  }
}
.posgrado .maestrias .item .textos h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  padding-left: 30px;
}
.posgrado .maestrias .item .textos h3:before {
  content: "";
  width: 20px;
  height: 60px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .posgrado .maestrias .item .textos h3:before {
    width: 15px;
    height: 45px;
    margin-right: 15px;
  }
}
.posgrado .maestrias .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 100%;
}
@media (max-width: 1000px) {
  .posgrado .maestrias .owl-nav {
    position: static;
    transform: none;
    margin-top: 40px;
  }
}
.posgrado .maestrias .owl-nav button {
  margin: 0;
}
.posgrado .maestrias .owl-nav button:hover {
  background: transparent;
}
.posgrado .maestrias .owl-nav button.owl-prev {
  float: left;
  margin-left: -95px;
}
@media (max-width: 1420px) {
  .posgrado .maestrias .owl-nav button.owl-prev {
    margin-left: -65px;
  }
}
@media (max-width: 1000px) {
  .posgrado .maestrias .owl-nav button.owl-prev {
    float: inherit;
    margin-left: 0;
    margin-right: 30px;
  }
}
.posgrado .maestrias .owl-nav button.owl-next {
  float: right;
  margin-right: -95px;
}
@media (max-width: 1420px) {
  .posgrado .maestrias .owl-nav button.owl-next {
    margin-right: -65px;
  }
}
@media (max-width: 1000px) {
  .posgrado .maestrias .owl-nav button.owl-next {
    float: inherit;
    margin-right: 0;
    margin-left: 30px;
  }
}
@media (max-width: 1350px) {
  .posgrado .maestrias .owl-carousel {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  .posgrado .maestrias .owl-carousel {
    width: 100%;
  }
}
.posgrado .deseas_informacion {
  margin-top: 100px;
  background: #767C6C;
  padding: 100px 0;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .posgrado .deseas_informacion {
    padding: 60px 0;
    margin-top: 35px;
  }
}
.posgrado .deseas_informacion h2 {
  color: white;
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 0;
}
@media (max-width: 1000px) {
  .posgrado .deseas_informacion h2 {
    font-size: 30px;
    max-width: 320px;
    margin: 0 20px;
  }
}
.posgrado .deseas_informacion h2:before {
  content: "";
  width: 215px;
  height: 130px;
  background-image: url("../images/comillas.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  transform: translateX(-20%) translateY(-20%);
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1000px) {
  .posgrado .deseas_informacion h2:before {
    width: 165px;
    height: 100px;
  }
}
.posgrado .deseas_informacion p {
  font-size: 14px;
  color: white;
  margin-bottom: 0;
  margin-top: 40px;
}
.posgrado .deseas_informacion .filas2 > div:first-child {
  padding-right: 100px;
}
@media (max-width: 1300px) {
  .posgrado .deseas_informacion .filas2 > div:first-child {
    padding-right: 50px;
  }
}
.posgrado .deseas_informacion .filas2 > div:last-child {
  padding-left: 100px;
  border-left: 1px solid white;
}
@media (max-width: 1300px) {
  .posgrado .deseas_informacion .filas2 > div:last-child {
    padding-left: 50px;
  }
}
@media (max-width: 1000px) {
  .posgrado .deseas_informacion .filas2 > div:last-child {
    border: none;
    padding-left: 0;
  }
}
.posgrado .deseas_informacion .filas2 > div:last-child h3 {
  font-size: 35px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 35px;
  color: white;
}
@media (max-width: 1000px) {
  .posgrado .deseas_informacion .filas2 > div:last-child h3 {
    font-size: 25px;
    margin-top: 43px;
    padding-left: 25px;
    margin-bottom: 20px;
    position: relative;
  }
}
.posgrado .deseas_informacion .filas2 > div:last-child h3:before {
  content: "";
  width: 20px;
  height: 40px;
  background: white;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .posgrado .deseas_informacion .filas2 > div:last-child h3:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.posgrado .deseas_informacion .filas2 > div:last-child form {
  max-width: 480px;
  width: 100%;
}
@media (max-width: 1000px) {
  .posgrado .deseas_informacion .filas2 > div:last-child form {
    margin: 0 auto;
  }
}
.posgrado .deseas_informacion .filas2 > div:last-child form input {
  width: 100%;
  border-radius: 23px;
  border: 1px solid white;
  height: 45px;
  margin-bottom: 30px;
  background: transparent;
  padding-left: 16px;
  color: white;
}
.posgrado .deseas_informacion .filas2 > div:last-child form input::placeholder {
  color: white;
  font-size: 14px;
}
.posgrado .deseas_informacion .filas2 > div:last-child form input[type=submit] {
  margin-bottom: 0;
  background: white;
  width: 200px;
  height: 50px;
  color: #232B2C;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto;
  line-height: 1;
  display: block;
}

.posgrado-presentacion .banner .item {
  position: relative;
}
.posgrado-presentacion .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.posgrado-presentacion .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .banner .item .textos h1 {
    font-size: 30px;
    margin: 0 12% 0 0;
  }
}
.posgrado-presentacion .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.posgrado-presentacion .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .banner .item img:first-child {
    display: none;
  }
  .posgrado-presentacion .banner .item img:nth-child(2) {
    display: block;
  }
}
.posgrado-presentacion .menu-posgrado {
  padding: 0;
  background: #767C6C;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1000px) {
  .posgrado-presentacion .menu-posgrado {
    display: block;
  }
}
.posgrado-presentacion .menu-posgrado ul {
  display: grid;
  height: 50px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  align-items: center;
  text-align: center;
}
.posgrado-presentacion .menu-posgrado ul li a {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.posgrado-presentacion .menu-posgrado ul li a.btn-solicita {
  height: 60px;
  background: #F5F5F5;
  color: #EA4E4A;
  display: grid;
  align-items: center;
  text-align: center;
  margin-top: -10px;
  position: relative;
  z-index: 9;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-top: 10px;
}
.posgrado-presentacion .menu-posgrado ul li a.active {
  color: #CFD6C2;
  position: relative;
  display: block;
}
.posgrado-presentacion .menu-posgrado ul li a.active:before {
  content: "";
  width: 30%;
  top: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  height: 5px;
  background: #EA4E4A;
  position: absolute;
}
.posgrado-presentacion .presentacion {
  padding: 0;
  padding-bottom: 60px;
  max-width: 700px;
  margin: 0 auto;
}
.posgrado-presentacion .presentacion h2 {
  font-size: 35px;
  margin: 0;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .presentacion h2 {
    font-size: 25px;
    margin-top: 43px;
    padding-left: 25px;
    margin-bottom: 20px;
  }
}
.posgrado-presentacion .presentacion h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .presentacion h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.posgrado-presentacion .presentacion p {
  font-size: 14px;
  line-height: 20px;
}
.posgrado-presentacion .presentacion form {
  background: #F5F5F5;
  max-width: 500px;
  display: inline-grid;
  padding: 60px 50px;
  padding-bottom: 50px;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.posgrado-presentacion .presentacion form input[type=text], .posgrado-presentacion .presentacion form input[type=email], .posgrado-presentacion .presentacion form select {
  width: 100%;
  height: 45px;
  border-radius: 23px;
  border: #A4A89C 1px solid;
  background: transparent;
  padding-left: 20px;
  margin-bottom: 25px;
  padding-right: 15px;
  font-size: 14px;
  color: #484848;
}
.posgrado-presentacion .presentacion form input[type=text]::placeholder, .posgrado-presentacion .presentacion form input[type=email]::placeholder, .posgrado-presentacion .presentacion form select::placeholder {
  color: #484848;
  font-size: 14px;
}
.posgrado-presentacion .presentacion form .check {
  text-align: left;
}
.posgrado-presentacion .presentacion form .check label {
  color: #3E3E3E;
  font-size: 12px;
  text-align: left;
  position: relative;
  margin-left: 20px;
  display: block;
}
.posgrado-presentacion .presentacion form .check label:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: white;
  border: 1px solid #AFAFAF;
  position: absolute;
  top: 0;
  left: -20px;
}
.posgrado-presentacion .presentacion form .check input {
  display: none;
}
.posgrado-presentacion .presentacion form .check input:checked + label:before {
  background: #EA4E4A;
  border-color: #EA4E4A;
  content: "✓";
  color: white;
  box-sizing: border-box;
  padding-left: 3px;
  font-size: 11px;
}
.posgrado-presentacion .presentacion form .boton-rojo {
  width: 200px;
  height: 45px;
  border: 0;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 30px;
}
.posgrado-presentacion .presentacion .filas2 > div:last-child {
  text-align: right;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .presentacion .filas2 > div:last-child {
    display: none;
    order: 1;
  }
}
@media (max-width: 1000px) {
  .posgrado-presentacion .presentacion .filas2 > div:first-child {
    order: 2;
  }
}
.posgrado-presentacion .presentacion .filas {
  display: grid;
  grid-template-columns: 155px auto;
  grid-gap: 35px;
  padding: 10px 0;
  border-bottom: 1px solid #D4D6D2;
}
.posgrado-presentacion .presentacion .filas:last-child {
  border-bottom: none;
}
.posgrado-presentacion .presentacion .filas > div:first-child p {
  font-weight: 700;
}
.posgrado-presentacion .presentacion .filas p {
  margin: 0;
}
.posgrado-presentacion .presentacion p a {
  color: #EA4E4A;
  font-weight: 600;
}
.posgrado-presentacion .presentacion p a:hover {
  color: #CFD6C2;
}
.posgrado-presentacion .presentacion h3 {
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
    margin-bottom: 20px;
}
.posgrado-presentacion .presentacion li {
  padding-left: 20px;
  position: relative;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  margin-left: 10px;
}
.posgrado-presentacion .presentacion li:before {
  content: "";
  position: absolute;
  top: 4px;
  width: 8px;
  height: 8px;
  left: 0;
  background: #EA4E4A;
  border-radius: 50%;
}
.posgrado-presentacion .presentacion .cronograma p {
  color: #484848;
  display: grid;
  width: 100%;
  height: 40px;
  background: #CFD6C2;
  text-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
.posgrado-presentacion .presentacion .aviso span {
  font-weight: 700;
}
.posgrado-presentacion .presentacion table {
  border-collapse: collapse;
  width: 100%;
}
.posgrado-presentacion .presentacion table .con_fondo {
  background: #767C6C;
  text-align: center;
}
.posgrado-presentacion .presentacion table .con_fondo td {
  color: white;
  font-weight: 700;
}
.posgrado-presentacion .presentacion table td, .posgrado-presentacion .presentacion table th {
  height: 50px;
  border: 1px solid #B9BCB6;
  color: #484848;
  font-size: 14px;
  padding: 10px;
}
.posgrado-presentacion .presentacion_slider {
  background: #767C6C;
  margin: 0 auto;
  padding: 0;
}
.posgrado-presentacion .presentacion_slider .filas2 {
  color: white;
  grid-template-columns: 50% 50%;
  align-items: center;
}
.posgrado-presentacion .presentacion_slider .filas2 > div:first-child {
  max-width: 500px;
  margin: 0 auto;
}
.posgrado-presentacion .presentacion_slider .filas2 > div:first-child img {
  width: 100%;
}
.posgrado-presentacion .presentacion_slider .filas2 h2 {
  font-size: 35px;
  margin: 0;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
}
.posgrado-presentacion .presentacion_slider .filas2 h2:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 40px;
  background: #232B2C;
}
.posgrado-presentacion .presentacion_slider .filas2 p {
  font-size: 14px;
  line-height: 20px;
}
.posgrado-presentacion .presentacion_slider .filas2 img {
  width: 100%;
}
.posgrado-presentacion .presentacion_slider .filas2 li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}
.posgrado-presentacion .presentacion_slider .filas2 li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
}
.posgrado-presentacion .presentacion_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  margin: 0;
  margin-left: -100px;
}
@media (max-width: 1340px) {
  .posgrado-presentacion .presentacion_slider .owl-nav {
    margin-left: -15%;
  }
}
@media (max-width: 1260px) {
  .posgrado-presentacion .presentacion_slider .owl-nav {
    margin-left: -25%;
  }
}
@media (max-width: 1110px) {
  .posgrado-presentacion .presentacion_slider .owl-nav {
    margin-left: -16%;
  }
}
@media (max-width: 1000px) {
  .posgrado-presentacion .presentacion_slider .owl-nav {
    position: static;
    transform: none;
    margin-left: 0;
  }
}
.posgrado-presentacion .presentacion_slider .owl-nav button {
  margin: 0;
  display: block;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .presentacion_slider .owl-nav button {
    display: inline-block;
    margin: 0 30px;
  }
}
.posgrado-presentacion .presentacion_slider .owl-nav button:hover {
  background-color: transparent;
}
.posgrado-presentacion .presentacion_slider .owl-nav button:last-child {
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .presentacion_slider .owl-nav button:last-child {
    margin-top: 0;
  }
}
.posgrado-presentacion .objetivos_academicos .filas2 {
  align-items: center;
}
.posgrado-presentacion .objetivos_academicos .textos {
  max-width: 500px;
  margin: 0 auto;
}
.posgrado-presentacion .objetivos_academicos .textos h2 {
  font-size: 35px;
  font-weight: 700;
  text-align: left;
  color: #2C2C2C;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .objetivos_academicos .textos h2 {
    font-size: 25px;
    text-align: left;
    margin-left: 20px;
    max-width: 240px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 35px;
  }
}
.posgrado-presentacion .objetivos_academicos .textos h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .objetivos_academicos .textos h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.posgrado-presentacion .objetivos_academicos .textos h3 {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.posgrado-presentacion .objetivos_academicos .textos p,
.posgrado-presentacion .objetivos_academicos .textos li {
  font-size: 14px;
  color: #484848;
}
.posgrado-presentacion .objetivos_academicos .textos ol{
    padding-left: 20px;
    margin-bottom: 20px;
}
.posgrado-presentacion .objetivos_academicos .textos ul li {
  padding-left: 20px;
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.posgrado-presentacion .objetivos_academicos .textos ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  width: 8px;
  height: 8px;
  left: 0;
  background: #EA4E4A;
  border-radius: 50%;
}
.posgrado-presentacion .objetivos_academicos img {
  width: 100%;
}
.posgrado-presentacion .objetivos_academicos .postulacion .textos {
  max-width: 700px;
}
.posgrado-presentacion .objetivos_academicos .postulacion .textos ul ul {
  margin-top: 20px;
}
.posgrado-presentacion .objetivos_academicos .postulacion .textos ul ul li:before {
  background: #767C6C;
}
.posgrado-presentacion .objetivos_academicos .postulacion .textos ul ul li li:before {
  content: none;
}
.posgrado-presentacion .objetivos_academicos .postulacion .palabras_extras {
  padding-top: 44px;
  border-top: 1px solid #B4B7B1;
  margin-top: 47px;
}
.posgrado-presentacion .plana-revista {
  padding: 0 25px;
  padding-bottom: 40px;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .plana-revista {
    padding-top: 50px;
  }
}
.posgrado-presentacion .plana-revista .filas3 {
  grid-gap: 25px;
}
.posgrado-presentacion .plana-revista a {
  background-image: url("../images/fondo_comillas.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  display: grid;
  width: 100%;
  height: 150px;
  align-items: center;
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .posgrado-presentacion .plana-revista a {
    height: 110px;
  }
}
.posgrado-presentacion .plana-revista a svg, .posgrado-presentacion .plana-revista a p {
  display: inline-block;
  vertical-align: middle;
}
.posgrado-presentacion .plana-revista a p {
  margin: 0;
  font-size: 20px;
  margin-left: 25px;
  color: white;
}
.posgrado-presentacion .ciclos {
  padding: 80px 0;
  background: #F5F5F5;
}
@media (max-width: 1400px) {
  .posgrado-presentacion .ciclos .owl-malla-curricular {
    width: 85%;
    margin: 0 auto;
  }
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido {
 /* display: grid;*/
/*  align-items: center;*/
 /* grid-template-columns: 180px auto;*/
 /* grid-gap: 60px;*/
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido .ciclo_numero h2 {
  margin: 0;
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  color: #767C6C;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido .ciclo_numero h2 span {
  font-size: 35px;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido .ciclo_numero .boton-rojo {
  width: 180px;
  height: 40px;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table {
  width: 100%;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr {
  height: 50px;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr:first-child {
  background: #767C6C;
  text-align: center;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr:first-child td {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr td {
  color: #484848;
  font-size: 14px;
  border-bottom: 1px solid #B9BCB6;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media (max-width: 800px) {
  .posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav {
    position: static;
    transform: none;
    padding-top: 30px;
    border-top: 1px solid #B1B1B1;
    margin-top: 50px;
  }
}
.posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav button {
  margin: 0;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav button:hover {
  background: transparent !important;
}
.posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav button.owl-prev {
  margin-left: -80px;
  float: left;
}
@media (max-width: 800px) {
  .posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav button.owl-prev {
    float: inherit;
    margin-right: 30px;
  }
}
.posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav button.owl-next {
  margin-right: -80px;
  float: right;
}
@media (max-width: 800px) {
  .posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav button.owl-next {
    float: inherit;
    margin-left: 30px;
  }
}
.posgrado-presentacion.pos-malla .presentacion {
  max-width: 700px;
  margin: 0 auto;
}
.posgrado-presentacion.pos-malla .objetivos_academicos h2 {
  margin-top: 50px;
}
.posgrado-presentacion.pos-malla .objetivos_academicos h3.rojo {
  color: #EA4E4A;
  font-size: 26px;
  font-weight: 700;
}
.posgrado-presentacion.pos-malla .objetivos_academicos ul li span {
  font-weight: 700;
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
.posgrado-presentacion.pos-malla .objetivos_academicos table {
  width: 100%;
}
.posgrado-presentacion.pos-malla .objetivos_academicos table tr {
  height: 50px;
}
.posgrado-presentacion.pos-malla .objetivos_academicos table tr:first-child {
  background: #767C6C;
  text-align: center;
}
.posgrado-presentacion.pos-malla .objetivos_academicos table tr:first-child td {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.posgrado-presentacion.pos-malla .objetivos_academicos table tr td {
  color: #484848;
  font-size: 14px;
  border-bottom: 1px solid #B9BCB6;
}

.grados_titulos .banner .item {
  position: relative;
}
.grados_titulos .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.grados_titulos .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .grados_titulos .banner .item .textos h1 {
    font-size: 45px;
  }
}
.grados_titulos .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .grados_titulos .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.grados_titulos .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .grados_titulos .banner .item img:first-child {
    display: none;
  }
  .grados_titulos .banner .item img:nth-child(2) {
    display: block;
  }
}
.grados_titulos .textos_grados h2 {
  font-size: 35px;
  margin: 0;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1000px) {
  .grados_titulos .textos_grados h2 {
    font-size: 25px;
    margin-top: 43px;
    padding-left: 25px;
    margin-bottom: 20px;
  }
}
.grados_titulos .textos_grados h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .grados_titulos .textos_grados h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.grados_titulos .textos_grados p {
  font-size: 14px;
}
.grados_titulos .textos_grados p strong {
  font-weight: 600;
}
.grados_titulos .textos_grados p.subtitulo {
  margin-top: 30px;
}
.grados_titulos .textos_grados ul li {
  position: relative;
  margin-left: 30px;
  color: #484848;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  padding-left: 20px;
}
.grados_titulos .textos_grados ul li a {
  color: #EA4E4A;
  font-weight: 700;
}
.grados_titulos .textos_grados ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #EA4E4A;
  border-radius: 50%;
  margin-right: 15px;
  position: absolute;
  top: 7px;
  left: 0;
}
.grados_titulos .textos_grados ul li ul {
  margin-top: 10px;
}
.grados_titulos .textos_grados ul li ul li {
  padding-left: 0;
  margin-left: 10px;
}
.grados_titulos .textos_grados ul li ul li:before {
  content: none;
}
.grados_titulos .textos_grados ul li ul li ul li {
  margin-left: 20px;
}
.grados_titulos .textos_grados h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.agenda .banner .item {
  position: relative;
}
.agenda .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.agenda .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .agenda .banner .item .textos h1 {
    font-size: 45px;
  }
}
.agenda .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .agenda .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.agenda .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .agenda .banner .item img:first-child {
    display: none;
  }
  .agenda .banner .item img:nth-child(2) {
    display: block;
  }
}
.agenda .menu-agenda {
  padding: 0;
  background: #F4F4F4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 100px;
  z-index: 999;
  position: sticky;
}
@media (max-width: 1000px) {
  .agenda .menu-agenda {
    display: none;
  }
}
.agenda .menu-agenda ul {
  display: grid;
  height: 50px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.agenda .menu-agenda ul li a {
  font-size: 14px;
  font-weight: 600;
}
.agenda .los_eventos .buscador .dividido {
  display: grid;
  grid-template-columns: auto 300px;
  grid-gap: 150px;
}
.agenda .los_eventos .buscador .dividido input {
  width: 100%;
  height: 45px;
  border: 1px solid #A4A89C;
  border-radius: 23px;
  padding-left: 30px;
  background-image: url("../images/lupa.svg");
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 26px;
}
.agenda .los_eventos .buscador .dividido input::placeholder {
  font-size: 14px;
}
.agenda .los_eventos .buscador .dividido select {
  width: 100%;
  height: 45px;
  border: 1px solid #A4A89C;
  border-radius: 23px;
  padding-left: 20px;
}
.agenda .los_eventos .resultado_busqueda {
  margin-top: 50px;
}
.agenda .los_eventos .resultado_busqueda .imagen {
  height: 220px;
  background-image: url("../images/imagen_agenda.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.agenda .los_eventos .resultado_busqueda .imagen p {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #EA4E4A;
  top: 0;
  left: 0;
  margin: 0;
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-top: 10px;
}
.agenda .los_eventos .resultado_busqueda .imagen p span {
  display: block;
  font-size: 50px;
}
.agenda .los_eventos .resultado_busqueda .textos {
  padding: 20px 16px;
  border: 1px solid #CBCCCA;
  border-top: 0;
}
.agenda .los_eventos .resultado_busqueda .textos small {
  font-size: 12px;
  font-weight: 700;
}
.agenda .los_eventos .resultado_busqueda .textos small span {
  color: #EA4E4A;
}
.agenda .los_eventos .resultado_busqueda .textos p {
  font-weight: 700;
  font-size: 16px;
}
.agenda .los_eventos .resultado_busqueda .textos a {
  font-size: 15px;
  font-weight: 700;
  color: #EA4E4A;
}
.agenda .los_eventos .filas3 {
  grid-column-gap: 52px;
  grid-row-gap: 70px;
}
.agenda .los_eventos .filas3 + a {
  background: #EA4E4A;
  color: white;
  display: grid;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 23px;
  margin: 0 auto;
  width: 250px;
  height: 45px;
  margin-top: 70px;
}

.noticias_publicaciones .banner .item {
  position: relative;
}
.noticias_publicaciones .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.noticias_publicaciones .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .banner .item .textos h1 {
    font-size: 45px;
  }
}
.noticias_publicaciones .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.noticias_publicaciones .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .banner .item img:first-child {
    display: none;
  }
  .noticias_publicaciones .banner .item img:nth-child(2) {
    display: block;
  }
}
.noticias_publicaciones .menu-agenda {
  padding: 0;
  background: #F4F4F4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 100px;
  z-index: 99;
  position: sticky;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .menu-agenda {
    display: none;
  }
}
.noticias_publicaciones .menu-agenda ul {
  display: grid;
  height: 50px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.noticias_publicaciones .menu-agenda ul li a {
  font-size: 14px;
  font-weight: 600;
}
.noticias_publicaciones .titulo_slider {
  margin-top: 10px;
  min-height: 300px;
}
.noticias_publicaciones .titulo_slider .titulo h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .titulo h2 {
    font-size: 25px;
    padding-left: 25px;
  }
}
.noticias_publicaciones .titulo_slider .titulo h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .titulo h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.noticias_publicaciones .titulo_slider .titulo > div:last-child {
  display: grid;
  justify-content: end;
}
.noticias_publicaciones .titulo_slider .titulo > div:last-child a {
  width: 210px;
  height: 35px;
}
.noticias_publicaciones .titulo_slider .slider {
  margin-top: 50px;
}
.noticias_publicaciones .titulo_slider .slider .item .imagen {
  height: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.noticias_publicaciones .titulo_slider .slider .item .textos {
  padding: 20px 16px;
  border: 1px solid #CBCCCA;
  border-top: 0;
}
.noticias_publicaciones .titulo_slider .slider .item .textos small {
  font-size: 12px;
  font-weight: 700;
}
.noticias_publicaciones .titulo_slider .slider .item .textos small span {
  color: #EA4E4A;
}
.noticias_publicaciones .titulo_slider .slider .item .textos p {
  font-size: 14px;
}
.noticias_publicaciones .titulo_slider .slider .item .textos p strong {
  font-weight: 700;
  font-size: 16px;
}
.noticias_publicaciones .titulo_slider .slider .item .textos a {
  font-size: 15px;
  font-weight: 700;
  color: #EA4E4A;
}
.noticias_publicaciones .titulo_slider .slider .item .textos.publicaciones_detalle {
  border: none;
  display: grid;
  grid-template-columns: 150px auto;
  grid-gap: 20px;
  padding: 0;
}
.noticias_publicaciones .titulo_slider .slider .item .textos.publicaciones_detalle ul {
  padding-top: 15px;
  border-top: 1px solid #D5D5D5;
  margin-top: 25px;
  margin-bottom: 10px;
}
.noticias_publicaciones .titulo_slider .slider .item .textos.publicaciones_detalle ul li {
  font-size: 14px;
  position: relative;
  padding-left: 10px;
}
.noticias_publicaciones .titulo_slider .slider .item .textos.publicaciones_detalle ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.noticias_publicaciones .titulo_slider .slider .item .textos.publicaciones_detalle p strong {
  font-size: 15px;
}
.noticias_publicaciones .titulo_slider .slider .item.observatorio_t .imagen {
  height: auto;
}
.noticias_publicaciones .titulo_slider .slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}
.noticias_publicaciones .titulo_slider .slider .owl-nav button {
  margin: 0;
}
.noticias_publicaciones .titulo_slider .slider .owl-nav button:hover {
  background-color: transparent;
}
.noticias_publicaciones .titulo_slider .slider .owl-nav .owl-prev {
  float: left;
  margin-left: -70px;
}
.noticias_publicaciones .titulo_slider .slider .owl-nav .owl-next {
  float: right;
  margin-right: -70px;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .slider .owl-stage-outer {
    height: auto !important;
  }
  .noticias_publicaciones .titulo_slider .slider .owl-stage-outer .owl-stage {
    transform: none !important;
    width: 100% !important;
  }
  .noticias_publicaciones .titulo_slider .slider .owl-stage-outer .owl-stage .owl-item {
    display: block;
    width: 100% !important;
    margin-bottom: 20px;
  }
}
.noticias_publicaciones .titulo_slider .img_container {
  position: relative;
  overflow: hidden;
}
.noticias_publicaciones .titulo_slider .img_container:before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 9;
  bottom: 0;
}
.noticias_publicaciones .titulo_slider .img_container .textos {
  position: absolute;
  z-index: 9;
  color: white;
  bottom: 40px;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .img_container .textos {
    bottom: 15px;
  }
}
.noticias_publicaciones .titulo_slider .img_container .textos h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .img_container .textos h2 {
    font-size: 25px;
  }
}
.noticias_publicaciones .titulo_slider .img_container .textos h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 28px;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .img_container .textos h2:before {
    width: 15px;
    height: 45px;
    margin-right: 15px;
  }
}
.noticias_publicaciones .titulo_slider .img_container .textos p {
  padding-left: 50px;
  color:#fff;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .img_container .textos p {
    padding-left: 33px;
  }
}
.noticias_publicaciones .titulo_slider .img_container .textos p {
  font-size: 14px;
  margin: 0;
}
@media (max-width: 1000px) {
  .noticias_publicaciones .titulo_slider .img_container .textos p {
    display: none;
  }
}
.noticias_publicaciones .titulo_slider .img_container:hover img {
  transform: scale(1.2);
  transition: all ease 0.8s;
}
.noticias_publicaciones .titulo_slider .recursos_digitales {
  margin-top: 40px;
  grid-gap: 60px;
}

.noticias .banner .item {
  position: relative;
}
.noticias .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.noticias .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .noticias .banner .item .textos h1 {
    font-size: 45px;
  }
}
.noticias .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .noticias .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.noticias .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .noticias .banner .item img:first-child {
    display: none;
  }
  .noticias .banner .item img:nth-child(2) {
    display: block;
  }
}
.noticias .menu-agenda {
  padding: 0;
  background: #F4F4F4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 100px;
  z-index: 999;
  position: sticky;
}
@media (max-width: 1000px) {
  .noticias .menu-agenda {
    display: none;
  }
}
.noticias .menu-agenda ul {
  display: grid;
  height: 50px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.noticias .menu-agenda ul li a {
  font-size: 14px;
  font-weight: 600;
}
.noticias .los_eventos .buscador .dividido {
  display: grid;
  grid-template-columns: auto 300px;
  grid-gap: 150px;
}
.noticias .los_eventos .buscador .dividido input {
  width: 100%;
  height: 45px;
  border: 1px solid #A4A89C;
  border-radius: 23px;
  padding-left: 30px;
  background-image: url("../images/lupa.svg");
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 26px;
}
.noticias .los_eventos .buscador .dividido input::placeholder {
  font-size: 14px;
}
.noticias .los_eventos .buscador .dividido select {
  width: 100%;
  height: 45px;
  border: 1px solid #A4A89C;
  border-radius: 23px;
  padding-left: 20px;
}
.noticias .los_eventos .resultado_busqueda {
  margin-top: 50px;
}
.noticias .los_eventos .resultado_busqueda .item .imagen {
  height: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.noticias .los_eventos .resultado_busqueda .item .textos {
  padding: 20px 16px;
  border: 1px solid #CBCCCA;
  border-top: 0;
}
.noticias .los_eventos .resultado_busqueda .item .textos small {
  font-size: 12px;
  font-weight: 700;
}
.noticias .los_eventos .resultado_busqueda .item .textos small span {
  color: #EA4E4A;
}
.noticias .los_eventos .resultado_busqueda .item .textos p {
  font-size: 14px;
}
.noticias .los_eventos .resultado_busqueda .item .textos p strong {
  font-weight: 700;
  font-size: 16px;
}
.noticias .los_eventos .resultado_busqueda .item .textos a {
  font-size: 15px;
  font-weight: 700;
  color: #EA4E4A;
}
.noticias .los_eventos .filas3 {
  grid-column-gap: 52px;
  grid-row-gap: 70px;
}
.noticias .los_eventos .filas3 + a {
  background: #EA4E4A;
  color: white;
  display: grid;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 23px;
  margin: 0 auto;
  width: 250px;
  height: 45px;
  margin-top: 70px;
}

.detalle-noticia .menu-agenda {
  padding: 0;
  background: #F4F4F4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 100px;
  z-index: 999;
  position: sticky;
}
@media (max-width: 1000px) {
  .detalle-noticia .menu-agenda {
    display: none;
  }
}
.detalle-noticia .menu-agenda ul {
  display: grid;
  height: 50px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.detalle-noticia .menu-agenda ul li a {
  font-size: 14px;
  font-weight: 600;
}
.detalle-noticia .breadcumb {
  padding: 30px 0;
}
.detalle-noticia .breadcumb .dividido {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .detalle-noticia .breadcumb .dividido {
    grid-template-columns: auto 90px;
  }
}
.detalle-noticia .breadcumb .dividido small {
  font-size: 12px;
}
.detalle-noticia .breadcumb .dividido small span {
  color: #EA4E4A;
  font-weight: 700;
}
.detalle-noticia .breadcumb .dividido a {
  background: #EA4E4A;
  text-align: center;
  color: white;
  width: 130px;
  height: 30px;
  display: block;
  border-radius: 23px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 5px;
}
@media (max-width: 450px) {
  .detalle-noticia .breadcumb .dividido a {
    font-size: 12px;
    width: 90px;
  }
}
.detalle-noticia .breadcumb .dividido a svg {
  display: inline-block;
  vertical-align: middle;
}
.detalle-noticia .informacion {
  padding: 0;
}
.detalle-noticia .informacion .container {
  max-width: 800px;
}
.detalle-noticia .informacion .container img {
  width: 100%;
}
.detalle-noticia .informacion .container img + div {
  padding: 0 50px;
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .detalle-noticia .informacion .container img + div {
    padding: 0 15px;
  }
}
.detalle-noticia .informacion .container img + div small span {
  color: #EA4E4A;
  font-weight: 700;
  font-size: 12px;
}
.detalle-noticia .informacion .container img + div h2 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 20px;
}
.detalle-noticia .informacion .container img + div p {
  font-size: 14px;
  line-height: 20px;
}
.detalle-noticia .informacion .container img + div h3 {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 700;
}
.detalle-noticia .informacion .container .compartir {
  margin-top: 30px;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  padding: 22px 0;
  text-align: center;
}
.detalle-noticia .informacion .container .compartir p {
  font-size: 13px;
  margin-bottom: 10px;
}
.detalle-noticia .informacion .container .compartir ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 7.5px;
}
.detalle-noticia .ultimas_noticias h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: center;
  margin-bottom: 38px;
}
@media (max-width: 1000px) {
  .detalle-noticia .ultimas_noticias h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.detalle-noticia .ultimas_noticias h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .detalle-noticia .ultimas_noticias h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.detalle-noticia .ultimas_noticias .filas3 {
  grid-gap: 50px;
}
.detalle-noticia .ultimas_noticias .item .imagen {
  height: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.detalle-noticia .ultimas_noticias .item .textos {
  padding: 20px 16px;
  border: 1px solid #CBCCCA;
  border-top: 0;
}
.detalle-noticia .ultimas_noticias .item .textos small {
  font-size: 12px;
  font-weight: 700;
}
.detalle-noticia .ultimas_noticias .item .textos small span {
  color: #EA4E4A;
}
.detalle-noticia .ultimas_noticias .item .textos p {
  font-size: 14px;
}
.detalle-noticia .ultimas_noticias .item .textos p strong {
  font-weight: 700;
  font-size: 16px;
}
.detalle-noticia .ultimas_noticias .item .textos a {
  font-size: 15px;
  font-weight: 700;
  color: #EA4E4A;
}
.detalle-noticia .ultimas_noticias .item .textos.publicaciones_detalle {
  border: none;
  display: grid;
  grid-template-columns: 150px auto;
  grid-gap: 20px;
  padding: 0;
}
.detalle-noticia .ultimas_noticias .item .textos.publicaciones_detalle ul {
  padding-top: 15px;
  border-top: 1px solid #D5D5D5;
  margin-top: 25px;
  margin-bottom: 10px;
}
.detalle-noticia .ultimas_noticias .item .textos.publicaciones_detalle ul li {
  font-size: 14px;
  position: relative;
  padding-left: 10px;
}
.detalle-noticia .ultimas_noticias .item .textos.publicaciones_detalle ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.detalle-noticia .ultimas_noticias .item .textos.publicaciones_detalle p strong {
  font-size: 15px;
}
.detalle-noticia .ultimas_noticias .item.observatorio_t .imagen {
  height: auto;
}

.relaciones_internacionales .banner .item {
  position: relative;
}
.relaciones_internacionales .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.relaciones_internacionales .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .relaciones_internacionales .banner .item .textos h1 {
    font-size: 45px;
  }
}
.relaciones_internacionales .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .relaciones_internacionales .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.relaciones_internacionales .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .relaciones_internacionales .banner .item img:first-child {
    display: none;
  }
  .relaciones_internacionales .banner .item img:nth-child(2) {
    display: block;
  }
}
.relaciones_internacionales .menu-agenda {
  padding: 0;
  background: #F4F4F4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 100px;
  z-index: 999;
  position: sticky;
}
@media (max-width: 1000px) {
  .relaciones_internacionales .menu-agenda {
    display: none;
  }
}
.relaciones_internacionales .menu-agenda ul {
  display: block;
  height: 50px;
  text-align: center;
}
.relaciones_internacionales .menu-agenda ul li {
  text-align: center;
  display: inline-block;
}
.relaciones_internacionales .menu-agenda ul li a {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 10px;
    display: table;
}
.relaciones_internacionales .menu-agenda ul li.activo a {
  color: #EA4E4A;
}
.relaciones_internacionales.presentacion .texto_presentacion {
  padding: 80px 0;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .texto_presentacion {
    padding: 30px 0;
  }
}
.relaciones_internacionales.presentacion .texto_presentacion .container {
  max-width: 700px;
}
.relaciones_internacionales.presentacion .texto_presentacion .container p {
  color: #484848;
  font-size: 14px;
  line-height: 25px;
}
.relaciones_internacionales.presentacion .quienes_somos h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: center;
}

.nuestras_carreras .quienes_somos h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: left;
}

@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .quienes_somos h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.relaciones_internacionales.presentacion .quienes_somos h2:before, .nuestras_carreras .quienes_somos h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .quienes_somos h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.relaciones_internacionales.presentacion .quienes_somos .filas4, .nuestras_carreras .quienes_somos .filas4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-top: 50px;
  -ms-flex-pack: center!important;
  justify-content: center!important;
}
.relaciones_internacionales.presentacion .quienes_somos .filas4 .col-3, .nuestras_carreras .quienes_somos .filas4 .col-3, {
    margin-bottom: 45px;
}
.relaciones_internacionales.presentacion .quienes_somos .filas4 img {
  width: 100%;
  padding: 0 25px;
  max-width: 252px;
}

.nuestras_carreras .quienes_somos .filas4 img {
  width: 100%;
  padding: 0 25px;
}

@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .quienes_somos .filas4 img, .nuestras_carreras .quienes_somos .filas4 img {
    padding: 0 15px;
  }
}
.relaciones_internacionales.presentacion .quienes_somos .filas4 .texto, .nuestras_carreras .quienes_somos .filas4 .texto {
    text-align: center;
    /*margin-top: 15px;*/
    /*border-top: 1px solid #CBCCCA;*/
    border-bottom: 1px solid #CBCCCA;
    padding: 15px 0;
    /*padding-top: 20px;*/
    min-height: 94px;
}
.relaciones_internacionales.presentacion .quienes_somos .filas4 .texto h3, .nuestras_carreras .quienes_somos .filas4 .texto h3 {
  font-size: 16px;
  font-weight: 600;
}
.relaciones_internacionales.presentacion .quienes_somos .filas4 .texto p, .nuestras_carreras .quienes_somos .filas4 .texto p {
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}
.relaciones_internacionales.presentacion .quienes_somos .filas4 .texto p.correo, .nuestras_carreras .quienes_somos .filas4 .texto p.correo {
  margin-top: 5px;
  border-top: 1px solid #CBCCCA;
  padding-top: 10px;
  overflow-wrap: break-word;
}
.relaciones_internacionales.presentacion .contacto {
  background: #F7F7F7;
}
.relaciones_internacionales.presentacion .contacto h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .contacto h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.relaciones_internacionales.presentacion .contacto h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .contacto h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.relaciones_internacionales.presentacion .contacto ul {
  padding-left: 80px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .contacto ul {
    padding-left: 0;
  }
}
.relaciones_internacionales.presentacion .contacto ul li {
  display: grid;
  grid-template-columns: 30px auto;
  grid-gap: 10px;
  align-items: start;
  margin-bottom: 20px;
}
.relaciones_internacionales.presentacion .contacto ul li p {
  font-size: 14px;
  margin: 0;
  font-weight: bold;
}
.relaciones_internacionales.presentacion .contacto ul li p span {
  font-weight: normal;
  display: block;
}
.relaciones_internacionales.presentacion .contacto .filas2 div {
  padding-top: 30px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .contacto .filas2 div {
    padding-top: 0;
  }
}
.relaciones_internacionales.presentacion .contacto .filas2 div:last-child {
  border-left: 1px solid #BFBFBF;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.presentacion .contacto .filas2 div:last-child {
    border: none;
  }
}
.relaciones_internacionales.movilidad_academica .texto_presentacion {
  padding-bottom: 100px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: left;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica .texto_presentacion h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.relaciones_internacionales.movilidad_academica .texto_presentacion h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica .texto_presentacion h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.relaciones_internacionales.movilidad_academica .texto_presentacion h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion .container {
  max-width: 700px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion p, .relaciones_internacionales.movilidad_academica .texto_presentacion li {
  font-size: 14px;
  line-height: 20px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion li {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding-left: 20px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EA4E4A;
  display: inline-block;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 8px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion li ul {
  padding-left: 0px;
  margin-top: 10px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion li ul li {
  color: #EA4E4A;
  padding-left: 0px;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion li ul li:before {
  content: none;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion a {
  color: #EA4E4A;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion + .redes_info .container {
  margin-top: 0;
}
.relaciones_internacionales.movilidad_academica .texto_presentacion.redes {
  padding-bottom: 30px;
}
.relaciones_internacionales.movilidad_academica .testimonios {
  background: #F0F0F0;
  padding-bottom: 90px;
}
.relaciones_internacionales.movilidad_academica .testimonios p {
  text-align: center;
}
.relaciones_internacionales.movilidad_academica .testimonios .container {
  max-width: 900px;
}
.relaciones_internacionales.movilidad_academica .testimonios h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: center;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica .testimonios h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.relaciones_internacionales.movilidad_academica .testimonios h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica .testimonios h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.relaciones_internacionales.movilidad_academica .full_img {
  padding-top: 20px;
  padding-bottom: 0;
}
.relaciones_internacionales.movilidad_academica .full_img img {
  width: 100%;
}
.relaciones_internacionales.movilidad_academica section.textos h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: left;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica section.textos h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.relaciones_internacionales.movilidad_academica section.textos h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica section.textos h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.relaciones_internacionales.movilidad_academica section.textos .container {
  max-width: 700px;
}
.relaciones_internacionales.movilidad_academica section.textos .container p {
  font-size: 14px;
  line-height: 20px;
}
.relaciones_internacionales.movilidad_academica section.textos .container p a {
  color: #EA4E4A;
}
.relaciones_internacionales.movilidad_academica section.textos .container h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}
.relaciones_internacionales.movilidad_academica section.textos .container li {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding-left: 20px;
  font-size: 14px;
}
.relaciones_internacionales.movilidad_academica section.textos .container li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EA4E4A;
  display: inline-block;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 8px;
}
.relaciones_internacionales.movilidad_academica .logos_convenios {
  padding-top: 0;
}
.relaciones_internacionales.movilidad_academica .logos_convenios h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: center;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica .logos_convenios h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.relaciones_internacionales.movilidad_academica .logos_convenios h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica .logos_convenios h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.relaciones_internacionales.movilidad_academica .logos_convenios .filas5 {
  text-align: center;
}
.relaciones_internacionales.movilidad_academica .logos_convenios .filas5 img {
  width: 19.5%;
}
@media (max-width: 1000px) {
  .relaciones_internacionales.movilidad_academica .logos_convenios .filas5 img {
    width: 24.5%;
  }
}
@media (max-width: 640px) {
  .relaciones_internacionales.movilidad_academica .logos_convenios .filas5 img {
    width: 49%;
  }
}
.relaciones_internacionales.movilidad_academica .redes_info {
  padding: 0;
}
.relaciones_internacionales.movilidad_academica .redes_info .container {
  display: grid;
  grid-template-columns: 250px auto;
  grid-gap: 40px;
  max-width: 700px;
  border-top: 1px solid #D4D6D2;
  padding-top: 50px;
  margin-top: 40px;
}
.relaciones_internacionales.movilidad_academica .redes_info p {
  font-size: 14px;
  line-height: 20px;
}
.relaciones_internacionales.movilidad_academica .redes_info p a {
  color: #EA4E4A;
}

.transparencia .banner .item {
  position: relative;
}
.transparencia .banner .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  left: 0;
  right: 0;
}
.transparencia .banner .item .textos h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1000px) {
  .transparencia .banner .item .textos h1 {
    font-size: 45px;
  }
}
.transparencia .banner .item .textos h1 span {
  display: block;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .transparencia .banner .item .textos h1 span {
    font-size: 20px;
  }
}
.transparencia .banner .item img:nth-child(2) {
  display: none;
}
@media (max-width: 1000px) {
  .transparencia .banner .item img:first-child {
    display: none;
  }
  .transparencia .banner .item img:nth-child(2) {
    display: block;
  }
}
.transparencia .menu-agenda {
  padding: 0;
  background: #F4F4F4;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 100px;
  z-index: 998;
  position: sticky;
}
@media (max-width: 1000px) {
  .transparencia .menu-agenda {
    display: none;
  }
}
.transparencia .menu-agenda ul {
  height: 50px;
  padding-top: 11px;
  text-align: center;
}
.transparencia .menu-agenda ul li {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
}
@media (max-width: 1210px) {
  .transparencia .menu-agenda ul li {
    margin: 0 3px;
  }
}
.transparencia .menu-agenda ul li a {
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 1210px) {
  .transparencia .menu-agenda ul li a {
    font-size: 12px;
  }
}
.transparencia .menu-agenda ul li.activo a {
  color: #EA4E4A;
}
.transparencia .accordeon {
  padding-top: 65px;
}
.transparencia .accordeon h2 {
  font-size: 35px;
  margin: 0;
  position: relative;
  text-align: left;
}
@media (max-width: 1000px) {
  .transparencia .accordeon h2 {
    font-size: 25px;
    padding-left: 25px;
    text-align: left;
  }
}
.transparencia .accordeon h2:before {
  content: "";
  width: 20px;
  height: 40px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .transparencia .accordeon h2:before {
    width: 15px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.transparencia .accordeon ul.accordion {
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 520px) {
  .transparencia .accordeon ul.accordion {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.transparencia .accordeon ul.accordion > li {
  padding: 15px 0;
  border-top: 1px solid #D4D6D2;
}
.transparencia .accordeon ul.accordion > li a.toggle {
  display: block;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.transparencia .accordeon ul.accordion > li a.toggle svg {
  float: right;
  margin-top: 8px;
}
.transparencia .accordeon ul .inner {
  padding-left: 1em;
  overflow: hidden;
  display: none;
}
@media (max-width: 520px) {
  .transparencia .accordeon ul .inner {
    padding-left: 0;
  }
}
.transparencia .accordeon ul .inner ul {
  margin-top: 20px;
}
section{
  padding: 30px 0;
}
.transparencia .accordeon ul .inner ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}
.transparencia .accordeon ul .inner ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
  background: #EA4E4A;
  width: 8px;
  height: 8px;
  display: block;
}
.transparencia .accordeon ul .inner ul li a {
  max-width: 130px;
  width: 100%;
  display: inline-grid;
  align-items: center;
  text-align: center;
  background: #EA4E4A;
  color: white;
  height: 25px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 5%;
}
@media (max-width: 520px) {
  .transparencia .accordeon ul .inner ul li a {
    display: grid;
    margin-left: 0;
    margin-top: 20px;
  }
}
.menu-agenda .current-menu-item a{
    color: #EA4E4A;
    font-weight: bold !important;
}
@media (min-width: 1000px){
    #navbar li.item-link-nav:hover .sub_menu{
        display: block !important;
    }
}
.bg-default{
    background-color: #f7f7f7;
}
.bg-gray-2{
    background: #eaeaea;
}
.arrow-red{
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    margin-left: 5px;
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.row-0.dividido{
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    grid-template-columns: none !important;
    grid-gap: 0 !important;
}
.nuestras_carreras .campo_laboral .filas2 ol,
.nuestras_carreras .campo_laboral .filas2 ul{
    padding-left: 20px;
}
.bloque-contenido-carrera{
    max-width: 700px;
    font-size: 14px;
    margin: 0 auto;
    padding: 0px 0px;
    color:#484848;
    padding: 0 20px;
}

@media (max-width: 1000px) {
  .nuestras_autoridades .banner .item .boton_informacion a {
  display: none;}
}
.borde-inferior {
  border-bottom: 1px solid #CBCCCA;
  padding-bottom: 15px;
}
.banner .texto-extra
{
	display:none !important;
}

.transparencia .accordeon ul.accordion > li
{
	padding: 6px 0 !important;
}

.transparencia .accordeon ul.accordion > li a.toggle
{
	padding: 10px 0 !important;
}

.nuestras_carreras .campo_laboral ul li
{
	margin-bottom: 15px !important;
}

.posgrado-presentacion .presentacion h3 {
    font-size: 18px !important;
    color: #EA4E4A !important;
		margin-top: 30px !important;
}

.posgrado-presentacion .presentacion h4 {
    font-size: 16px !important;
    color: #000000 !important;
    font-weight: 700 !important;
}

.bloques3 .dividido .img_container .textos a, .bloques3 .dividido .img_container .textos h2:before
{
	/* display: none !Important; */
}

.nosotros .palabras-rector .filas2 .btn_play
{
	/* display: none !Important; */
}

.redondo
{
	border-radius:50%;
}
.ancho-100 {
  grid-template-columns: repeat(1, 1fr) !important;
}

/*cambios 10/01 carruseles*/
ul.owl-simple .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 0;
    top: 40%;
}

ul.owl-simple .owl-nav button.owl-prev {
    float: left;
    margin-left: 8px;
}

ul.owl-simple .owl-nav button.owl-next {
    float: right;
    margin-right: 8px;
}

ul.owl-simple .owl-nav button:hover {
    /* background: none!important; */
}

section.logros {
        /* display: none; */
    background: #2c2c2c;
    padding: 80px 0;
    margin-top: 30px;
  }

  section.logros .cont {
      width: 80%;
      margin: 0 auto;
  }

  section.logros .cont .chapas {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 60px 0;
      margin-top: 70px;
  }
  section.logros .cont .titulo h2 {
      font-size: 40px;
      font-weight: 700;
      color: white;
      text-align: center;
      display: block;
      width: 100%;
      margin: 0;
      margin-bottom: 60px;
  }
  section.logros .cont .titulo h2:before {
      content: "";
      width: 25px;
      height: 55px;
      background: #EA4E4A;
      display: inline-block;
      vertical-align: middle;
      margin-right: 12px;
  }
  section.logros .cont .logotitulo {
      text-align: center;
  }
  section.logros .cont .chapas div {
      width: 100%;
      text-align: center;
  }

  @media (max-width: 1000px){
    section.logros .cont .chapas {
        grid-template-columns: repeat(2, 1fr);
    }
    section.logros .cont .chapas div img {
        width: 80%;
    }
    section.logros .cont .logotitulo img {
        width: 60%;
    }

  }
  
  
  /* Estilo de nuevas secciones */
.nuestros_logros{
  background: #F2F6FA;
}
.nuestros_logros h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  margin: 0;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 1000px) {
  .nuestros_logros h2 {
    font-size: 25px;
    text-align: left;
    margin-bottom: 30px;
  }
}
.nuestros_logros h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .nuestros_logros h2:before {
    width: 15px;
    height: 40px;
  }
}

.nuestros_logros .titulo_logro{
  text-align: center;
}
.nuestros_logros .container{
  max-width: 1100px;
}
.nuestros_logros .titulo_logro h3,
.nuestros_logros .titulo_logro p{
  display: inline-block;
  vertical-align: middle;
}
.nuestros_logros .titulo_logro h3{
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #EA4E4A;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
.nuestros_logros .titulo_logro h3::before{
  content: "";
  width: 150px;
  height: 150px;
  background-image: url(../images/bg_top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  position: absolute;
  bottom: -15px;
  z-index: -1;
  left: -37px
}
.nuestros_logros .titulo_logro h3 span{
  display: block;
  font-size: 144px;
  line-height: 0.8;
}
.nuestros_logros .titulo_logro p{
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  color: #48494B;
  line-height: 1;
  position: relative;
  top: 11px;
}
.nuestros_logros .titulo_logro p span{
  display: block;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  padding-top: 15px;
  border-top:  2px solid #EA4E4A;
  margin-top: 15px;
}
.nuestros_logros .cuerpo_logro .filas5{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 80px;
  grid-gap: 70px;
}

.nuestros_logros .cuerpo_logro .filas5 h4{
  font-size: 59px;
  font-weight: 900;
  line-height: 1;
  color: #48494B;
}
.nuestros_logros .cuerpo_logro .filas5 h4 svg{
  float: right;
  margin-top: 25px;
}
.nuestros_logros .cuerpo_logro p{
  padding-top: 20px;
   border-top:  2px solid #EA4E4A;
}
.nuestros_logros .cuerpo_logro p span{
  display: block;
  font-weight: 900;
}
.btn_interactivo{
  color: white;
  font-size: 13px;
  font-weight: 600;
  background: #EA4E4A;
  padding: 15px;
  margin-left: -20px;
  margin-top: 10px;
  position: relative;
  top: 25px;
}

.btn_interactivo:before{
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #EA4E4A transparent;
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
}
@media (max-width:  1000px){
  .nuestros_logros .cuerpo_logro .filas5{
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .nuestros_logros .titulo_logro p{
    margin-top: 30px;
    font-size: 30px;
  }
  .nuestros_logros .titulo_logro h3 span{
    font-size: 94px;
  }
  .nuestros_logros .titulo_logro h3{
    font-size: 25px;
  }
  .nuestros_logros .titulo_logro h3::before{
    width: 100px;
    height: 100px;
    left: -22px;
  }
  .nuestros_logros .titulo_logro p span{
    font-size: 18px;
  }
}

.elegirnos h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  margin: 0;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 1000px) {
  .elegirnos h2 {
    font-size: 25px;
    text-align: left;
    margin-bottom: 30px;
  }
}
.elegirnos h2:before {
  content: "";
  width: 25px;
  height: 55px;
  background: #EA4E4A;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 1000px) {
  .elegirnos h2:before {
    width: 15px;
    height: 40px;
  }
}
.elegirnos .iconos{
   display:flex;
  display:-webkit-flex;
  flex-wrap: wrap;
  justify-content:flex-start; 
  align-items: stretch; 
  justify-content: space-evenly 
}
.elegirnos .iconos > div{
  width:20%; /*dividido en 3*/
  padding: 10px 30px;
}
.elegirnos .iconos  .img-icon{
  height: 100px;
  text-align: center;
}
.elegirnos .iconos p{
  text-align: center;
  font-size: 14px;
  margin: 0;
}
.elegirnos .iconos + p{
  text-align: center;
  font-size: 12px;
}
@media (max-width:  1000px){
  .elegirnos .iconos > div{
    width: 33.3%;
  }
}
@media (max-width: 600px){
  .elegirnos .iconos > div{
    width: 50%;
    padding-left: 10px;
  }
}


@media (max-width: 1000px) {
  .posgrado-presentacion .menu-posgrado ul{
    height: 90px;
  }
   .posgrado-presentacion .menu-posgrado ul li:nth-child(7)>a{
     height: 36px;
     border-top-left-radius: 0px;
     border-top-right-radius: 0px;
   }
 }
 
 @media (max-width: 679px) {
  .posgrado-presentacion .menu-posgrado ul{
    height: 116px;
  }
 }
 @media (max-width: 519px) {
  .posgrado-presentacion .menu-posgrado ul{
    height: 141px;
  }
 }
 @media (max-width: 475px) {
  .posgrado-presentacion .menu-posgrado ul{
    height: 158px;
  }
 }
 @media (max-width: 359px) {
  .posgrado-presentacion .menu-posgrado ul{
    height: 265px;
  }
 }

 @media (max-width: 1000px) {
  .nuestras_autoridades> div:nth-child(3) section{
    margin-top: 0px;
  }

   .nuestras_autoridades> section:nth-child(4){
     display: block;
     margin-bottom: 0px!important;
     padding: 0!important;
   }
   .relaciones_internacionales.presentacion .quienes_somos .filas4 .texto{
    min-height: 0;
   }
   .relaciones_internacionales.presentacion .quienes_somos .filas4 .col-3{
    margin-bottom: 0;
   }
 }



 .nuestras_carreras .malla-curricular .owl-nav{
  display:none;
  }
  @media (max-width: 500px) {
   .nuestras_carreras .malla-curricular .owl-nav{
   display:none;
  }
  }



 /*BOTON MAS INFORMACION*/
.contenedor-redes-sociales {
  /* background: #fff; */
  /* margin: 20px 0; */
  /* padding: 20px; */
  /* text-align: center; */
  position: fixed;
  right: 3px;
  top: 45%;
  z-index: 1000;
  display: none;
}


.contenedor-redes-sociales a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 7px;
  color: #fff;
  border-radius: 2px;
  background: #fff;
  margin: 5px;
  border-radius: 10px;
}

.contenedor-redes-sociales a:after, .contenedor-redes-sociales a:before {
  display: none;
}


.contenedor-redes-sociales a span.cuadrado i {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}

.contenedor-redes-sociales a span.titulo {
  margin: 0 20px;
  font-size: 16px;
  transition: all 200ms linear;
}

.contenedor-redes-sociales a:hover span.titulo {
  color: #fff;
}


/*---------------Colores de los botones---------------*/

.contenedor-redes-sociales .facebook:hover, .contenedor-redes-sociales .twitter:hover, .contenedor-redes-sociales .gplus:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.contenedor-redes-sociales .facebook {
  border: 2px solid #ea4e4a;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.contenedor-redes-sociales .facebook:hover, .contenedor-redes-sociales .facebook span.cuadrado {
  background: #ea4e4a;
}

.contenedor-redes-sociales .facebook span.titulo {
  color: #ea4e4a;
}




/*--------------Mediaqueries--------------*/

@media screen and (max-width:480px) {
  .contenedor-redes-sociales a {
     
      margin: 0;
      margin-bottom: 10px;
  }
} 


#navbar .item-link-nav:nth-child(6) a{
  background: #EA4E4A;
  color: white;
  font-size: 17px;
  padding: 16px 32px;
  line-height: 0;
  text-transform: math-auto;;
  border-radius: 15px;
  transition: all ease 0.5s;
}

/* Estilo de nuevas secciones */


/*--------------------------------------------------------------*/
/* 

@media screen and (max-width:2000px) {
  #navbar .item-link-nav:nth-child(6) a{
    position: absolute;
    top: 67px;
    right: 398px;
    display: grid;
    background: #EA4E4A;
    color: white;
    align-items: center;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 32px;
    line-height: 0;
    text-transform: capitalize;
    border-radius: 25px;
    transition: all ease 0.5s;
    margin-top: 5px;
  }
  
    #navbar{
      height: 111px;
    }
  }
  
  
  @media screen and (max-width:1860px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 323px;
    }
  
  }
  
  @media screen and (max-width:1786px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 323px;
    }
  
  }
  
  @media screen and (max-width:1736px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 276px;
    }
  
  }
  
  @media screen and (max-width:1652px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 229px;
    }
  
  }
  
  @media screen and (max-width:1540px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 166px;
    }
  
  }
  
  @media screen and (max-width:1500px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 150px;
    }
  
  }
  
  @media screen and (max-width:1412px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 101px;
    }
  
  }
  
  @media screen and (max-width:1305px) {
    #navbar .item-link-nav:nth-child(6) a{
       right: 52px;
    }
  
  }
  
  @media screen and (max-width:1000px) {
    #navbar {
      height: 70px;
    }
  
  } */

  @media screen and (max-width:500px) {
    .posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr:nth-child(3) td{
      font-size: 9px;
    }
         .posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr:nth-child(4) td{
      font-size: 9px;
    }
           .posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr:nth-child(5) td{
      font-size: 9px;
    }
          .posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr:nth-child(6) td{
      font-size: 9px;
    }
          .posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr:nth-child(7) td{
      font-size: 9px;
    }
         
       .posgrado-presentacion .ciclos .owl-malla-curricular .item .dividido table tr td {
      color: #484848;
      font-size: 8px;
      border-bottom: 1px solid #B9BCB6;
    }
    .single .posgrado-presentacion .objetivos_academicos .textos {
 
      padding: 0 9px;
  }
    
  .posgrado-presentacion .ciclos .owl-malla-curricular .owl-nav{
    display:none;
  }

      .posgrado-template-posgrado-malla-curricular .owl-carousel .owl-stage-outer{
        margin-bottom: 13px;
      }
      
      }



      .nuestros_logros .cuerpo_logro .filas5 >div:nth-child(5) h6:nth-child(3){
        font-size: 11.9px;
      }
      .nuestros_logros .cuerpo_logro .filas5 >div:nth-child(5) h6:nth-child(3)>h7{
          position: relative;
          top: 2px;
      }
      .nuestros_logros .cuerpo_logro .filas5 >div:nth-child(5) p:nth-child(4){
        display:none;
      }
      
      .nuestros_logros .titulo_logro >div p:nth-child(2){
        position: relative;
        top: 11px;
      }
      .nuestros_logros .titulo_logro >div p:nth-child(3){
       font-size: 18px;
       position: relative;
       top: 9px;
      }
      
        @media screen and (max-width:393px) {
          .nuestros_logros .titulo_logro >div p:nth-child(3){
           font-size: 13px;
          }
          .nuestros_logros .titulo_logro >div p:nth-child(2){
       font-size: 26px;
      }
        }
      
       @media screen and (max-width:345px) {
       .nuestros_logros .titulo_logro >div p:nth-child(3){
          display: none;
          }
       }

       .conoce-nuestros-programas, .nuestro_egresados .filas3{
        background: #FFFFFF;
        padding: 46px 0;
       }
       .owl-banner .item img{
        width: 100% !important;
      }
      
      .owl-banner .item img:nth-child(2){
        display: none;
      }
      
      @media (max-width: 1000px){
        .owl-banner .item img:nth-child(1){
            display: none;
        }
        .owl-banner .item img:nth-child(2){
            display: block;
        }
      }







      .nuevo-banner-home div#texto-banner p {
        font: normal normal 300 45px/59px Open Sans;
        color: white;
        margin: 0;
    }
    @media (max-width: 1000px){
      .nuevo-banner-home div#texto-banner p {
        font: normal normal 300 35px/59px Open Sans;
       
    }
    }

.nuevo-banner-home  div#texto-banner {
    /* max-width: 1280px; */
    max-width: 100%;
    width: 100%;
    padding: 0 60px;
    top: 70%;
}
@media (max-width: 1000px){
  .nuevo-banner-home  div#texto-banner {
   
    padding: 0 20px;
}
}


.formacion-valores .mobile-valores{
 display: none;
}


.nuevo-banner-home{
  position: relative;
  padding: 0;
}
.nuevo-banner-home img{
  width: 100%;
}
.nuevo-banner-home img:nth-child(2){
  display: none;
}
.nuevo-banner-home .textos{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  max-width: 1480px;
  margin: 0 auto;
  text-align: left;
}
.nuevo-banner-home .textos h1{
  color: white;
  font-size: 50px;
  font-weight: 700;
  max-width: 100%;
  line-height: 1;
}
@media(max-width: 1000px){
  .nuevo-banner-home .textos h1{
   
    font-size: 35px;
   
  }
} 
.nuevo-banner-home .textos h1 span{
  display: block;
  font-weight: 300;
  font-size: 45px;
}
.nuevo-banner-home .textos a{
  width: 300px;
  height: 50px;
  margin-top: 30px;
}
@media(max-width: 1000px){
  .nuevo-banner-home .textos a{
    width: 260px;
    height: 45px;
    margin-top: 25px;
  }
  .nuevo-banner-home .textos h1 br {
    display: none;
}
}
@media(max-width: 800px){
 .nuevo-banner-home img:nth-child(2){
  display: block;
 } 
 .nuevo-banner-home img:first-child{
  display: none;
 }
 .nuevo-banner-home .textos h1{
  font-size: 30px;
    line-height: 1.1;
 }

 .nuevo-banner-home .textos h1 span{
  font-size: 25px;
 }
 .nuevo-banner-home .textos{
  padding: 0 20px;
 }
 .nuevo-banner-home .textos a{
  width: 250px;
  height: 50px;
  font-size: 15px;
 }
}
.formacion-valores{
  padding: 54px 0 50px 0px;

}
.formacion-valores img{
  width: 100%;
}
.formacion-valores h2{
  font-size: 50px;
  margin: 0;
  color: #2C2C2C;
  margin-bottom: 32px;
}
@media(max-width: 1300px){
  .formacion-valores h2 ,.conoce-nuestros-programas h2{
    font-size: 40px;
   
  } 
  
} 
@media(max-width: 1300px){
  .formacion-valores h2 ,.conoce-nuestros-programas h2{
    font-size: 28px;
   
  } 
  
} 
.formacion-valores h2:before{
    content: "";
    width: 100px;
    height: 60px;
    background: #EA4E4A;
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
}

.formacion-valores .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.formacion-valores .tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.formacion-valores .tab input:checked ~ .tab__content {
  max-height: 500px;
}

.formacion-valores .accordion{
  padding: 0 75px;
}
.formacion-valores .accordion label{
  border-top: 1px solid #C6C6C6;
  border-bottom: 1px solid #C6C6C6;
  padding: 23px 15px;
  display: block;
  width: 100%;
  font-size: 25px;
  font-weight: 700;
}
.formacion-valores .accordion label:before{
  content: "";
  width: 26px;
  height: 26px;
  background-image: url(../images/icon_mas.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  float: right;  
}
.formacion-valores .accordion input:checked + label{
  color: #EA4E4A;
}
.formacion-valores .accordion input:checked + label:before{
  background-image: url(../images/icon_menos.svg);
}
.formacion-valores .accordion .tab__content .textos{
  padding: 30px 25px;
  
}
.formacion-valores .accordion .tab__content .textos p{
  font-size: 16px;
}
@media(max-width: 800px){
  .formacion-valores h2:before{
    width: 50px;
    height: 50px;
  }
  .formacion-valores h2{
    font-size: 28px;
  }
  .formacion-valores .accordion{
    padding: 0 20px;
  }
  .formacion-valores .accordion label{
    font-size: 18px;
  }
  .formacion-valores .accordion .tab__content .textos{
    padding: 15px;
  }
}
.lo_nuevo{
  background: #F0F0F0;
  padding-bottom: 90px;
  padding-top: 43px;
}
.lo_nuevo h2{
  font-size: 40px;
  margin: 0;
}
.lo_nuevo h2:before{
    content: "";
    width: 100px;
    height: 60px;
    background: #EA4E4A;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}
.lo_nuevo .filas2{
  align-items: center;
}
.noticias-eventos  .titular .filas2 {
  display: grid;
  grid-template-columns: 73% auto auto;
  padding: 0 40px 0 0;
}
@media(max-width: 1500px){
  .noticias-eventos  .titular .filas2 {
    grid-template-columns: 66% auto auto;
  }
}
.noticias-eventos .titular .filas2 a {
  /* text-align: right; */
  text-align: center;
  font-size: 18px;
  color: #EA4E4A;
  font-weight: 700;
  padding-right: 0px;
}
.lo_nuevo .filas2 a:last-child{
  /* text-align: right; */
  font-size: 18px;
  color: #EA4E4A;
  font-weight: 700;
  padding-right: 40px;
  text-align: right;
}
.lo_nuevo .dividido{
  display: grid;
  grid-template-columns: 65.7% 32.6%;
  grid-gap: 1.5%;
  margin-top: 42px;
  padding: 0 20px;
  min-width: 100%
}
.lo_nuevo .dividido img{
  width: 100%;
}
.lo_nuevo .dividido .item{
  display: block;
  height: 100%;
}
@media (max-width: 1100px) {
  #navbar .item-link-nav:nth-child(6) a{
    font-size: 14px;
    padding: 14px 10px;
  }
}
@media (max-width: 1560px){
  .lo_nuevo .dividido{
    grid-template-columns: 65.7% 32%;
  }
}
.lo_nuevo .dividido .filas2 > img {
  width: 100%;
  /* height: 100vh; */
  object-fit: fill;
  /* max-height: 430px; */
}
.lo_nuevo .dividido img:nth-child(2){
  display: none;
}
.lo_nuevo .dividido .item{
  position: relative;
}
.lo_nuevo .dividido .item + .item{
  margin-top: 15px;
}
.lo_nuevo .dividido .item .textos, .lo_nuevo.bloques3 .dividido .textos{
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  left: 0;
  right: 0;
  height: 40%;
  color: white;
  flex-direction: column;
  justify-content: end;
  display: flex;
  padding:28px 45px;
  z-index: 9;
}
.lo_nuevo .dividido .item .textos h3:before , .lo_nuevo .dividido .textos h3:before{
  content: "";
  width:25px;
  height: 70px;
  display: inline-block;
  background: #EA4E4A;
  position: absolute;
  left: -45px;
}
.lo_nuevo .dividido .item .textos p{
  color: white;
}
.lo_nuevo .dividido .item .textos h3 , .lo_nuevo.bloques3 .dividido .textos h3{
  font-size: 45px;
  margin: 0;
  position: relative;
  font-weight: 700;
}
.lo_nuevo .dividido .item .textos h4{
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  position: relative;
  line-height: 30px;
}
.lo_nuevo .dividido .item .textos h4:before{
  content: "";
  width:25px;
  height: 60px;
  display: inline-block;
  background: #EA4E4A;
  position: absolute;
  left: -45px;
}
.lo_nuevo .dividido .item .textos h3 span , .lo_nuevo .dividido .textos h3 span{
  font-size: 20px;
  display: block;
}
.lo_nuevo .dividido .item .textos p , .lo_nuevo .dividido .textos p{
  font-size: 20px;
  max-width: 530px;
  margin-bottom: 0;
  margin: 4px 0px;
  /* color: white; */
}
.lo_nuevo .dividido .item .textos a, .lo_nuevo .dividido  .textos a{
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}
@media(max-width: 1100px){
.lo_nuevo .dividido{
    grid-template-columns: 100%;
  }
}
@media(max-width: 800px){
  
  .lo_nuevo h2{
    font-size: 28px;
  }
  .lo_nuevo .filas2 a:last-child{
    display: none;
  }
  .lo_nuevo .dividido img:nth-child(2){
    display: block;
    height: 100%;
    max-height: 100%;
  }
  .lo_nuevo .dividido img:first-child{
    display: none;
  }
  .lo_nuevo .dividido .item .textos h3,
  .lo_nuevo .dividido .item .textos h4{
    font-size: 25px;
  }
  .lo_nuevo .dividido .item .textos{
    padding: 20px 30px;
  }
  .lo_nuevo .dividido .item .textos h4:before{
    width: 15px;
    height: 45px;
    left: -30px;
  }
  .lo_nuevo h2:before{
    width: 50px;
    height: 50px;
  }
  .lo_nuevo .dividido .item .textos p, .lo_nuevo .dividido  .textos p{
    font-size: 14px;
  }
  .lo_nuevo .dividido .item .textos h3:before{
    width: 15px;
    height: 45px;
    left: -30px;
  }
}
.noticias-eventos{
  padding-top: 100px;
  background: white;
}
.noticias-eventos .dividido{
  display: grid;
  grid-template-columns: 45% auto;
  margin-top: 30px;

}
.noticias-eventos .dividido > .noticia_nueva{
    display: grid;
    align-items: stretch;
}
.noticias-eventos .dividido .filas2{
  grid-template-columns: 50% 50%;
}
.noticias-eventos .dividido .textos img{
  width: 18px;
}
.noticias-eventos .dividido .textos h3{
  font-size: 18px;
  font-weight: 700;
}
.noticias-eventos .dividido .filas2 .textos{
  padding: 14px 30px 29px 30px;
  display: grid;
  height: 100%;
  /* display: flex; */
  flex-direction: column;
  /* justify-content: center; */
  border: 1px solid #C6C6C6;
}
.noticias-eventos .dividido .filas2 .textos ul {
  display: grid;
  align-items: center;
}
.noticias-eventos .dividido .filas2 .textos a{
  text-align: left;
  margin-top: 25px;
}
.noticias-eventos .dividido > .noticia_nueva .textos{
  border: 1px solid #C6C6C6;
  border-top: 0;
  padding: 20px 20px;
  min-height: 150px;
  
}
.noticias-eventos .dividido .textos a{
  font-size: 15px;
  color: #EA4E4A;
  font-weight: 700;
}
.noticias-eventos .dividido .filas2 .textos h3{
  min-height: 60px;
  padding-bottom: 15px;
  border-bottom: 1px solid #C6C6C6;
  margin-bottom: 15px;
}
.noticias-eventos .dividido > .noticia_nueva .textos a{
  margin-top: 10px;
  display: block;
}
.noticias-eventos .dividido .noticia_nueva + .noticia_nueva{
  margin-top: 16px;
}
.noticias-eventos .dividido .filas2 ul li{
  font-weight: 600;
  margin-bottom: 15px;
}
.noticias-eventos .dividido .filas2 ul li img{
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
@media(max-width: 1000px){
  .formacion-valores .mobile-valores{
    padding: 0 20px;

   }
  }
@media(max-width: 800px){
  .formacion-valores .mobile-valores{
    display: block;
    padding: 0 15px;

   }
   .formacion-valores .desktop-valores{
    display: none;
   }
   .formacion-valores{
    padding: 50px 0;
   }

  .noticias-eventos .dividido{
    grid-template-columns: 100%;
  }
  .noticias-eventos .dividido .filas2{
    grid-template-columns: 100%
  }
  .noticias-eventos .dividido .filas2 .textos h3{
    font-size: 18px;
  }
  .noticias-eventos .dividido .filas2 .textos{
    padding: 10px;
  }
  .noticias-eventos .dividido .filas2 .textos a{
    display: block;
  }
}
.nuestros_egresados{
  background: #F0F0F0;
  padding: 60px 0 110px 0px;
}
.nuestros_egresados h2{
  font-size: 50px;
  margin: 0;
}
.nuestros_egresados h2:before{
    content: "";
    width: 100px;
    height: 60px;
    background: #EA4E4A;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}
.nuestros_egresados .contenido{
  padding: 0 85px;
  margin-top: 34px;
}
.nuestros_egresados .contenido .texto{
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  background: #232B2C;
  top: 0;
  z-index: 0;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
}
.nuestros_egresados .contenido .texto p{
  line-height: 1.2;
  color: #cacaca;
  font-size: 18px;
  margin-top: -100px;
}

@media(max-width: 1650px){
  .nuestros_egresados .contenido .texto p{

  font-size: 17px;

}
}
@media(max-width: 1580px){
  .nuestros_egresados .contenido .texto p{

  font-size: 15px;

}
.lo_nuevo .dividido .filas2 > img{
  /* max-height: 380px; */
}

}



.nuestros_egresados .contenido .filas3{
  grid-gap: 25px;
}
.nuestros_egresados .contenido .filas3 > div{
  position: relative;
}

.nuestros_egresados .contenido .filas3   .clickear:hover .texto{
  display: flex;
  height: 80%;
  padding: 0px 40px;
  display: flex;
  align-items: baseline;
  overflow-y: auto;
  align-items: center;
}

.nuestros_egresados .contenido .filas3 > div:hover .texto{
  /* display: flex;
  height: 80%;
  padding: 0px 40px;
  display: flex;
  align-items: baseline;
  overflow-y: auto;
  align-items: center; */
}
.nuestros_egresados .contenido .filas3 .owl-nav {
  display: flex;
  position: absolute;
  width: 100%;
  justify-content: space-between;
  top: 40%;
}

.nuestros_egresados .contenido .filas3 .owl-nav button.owl-prev{
  position: relative;
  left: -50px;
  width: 44px;
  background: #1b1b1b;
  /* color: white; */
  margin: 2px;
  border-radius: 2px;
}
.nuestros_egresados .contenido .filas3 .owl-nav button.owl-next {
     position: relative;
     left: 50px;
     width: 44px;
     background: #1b1b1b;
     /* color: white; */
     margin: 0;
     border-radius: 2px;
}
.nuestros_egresados .contenido .filas3 .owl-nav.disabled{
  display: none;
}
.nuestros_egresados .contenido .filas3 .owl-nav button.owl-prev span, .nuestros_egresados .contenido .filas3 .owl-nav button.owl-next span {
  display: block;
  color: white;
  font-size: 40px;
  padding-bottom: 5px;
  /* display: flex; */
}
.nuestros_egresados .contenido .filas3 .owl-nav button.owl-prev.disabled span, .nuestros_egresados .contenido .filas3 .owl-nav button.owl-next.disabled span {
  color:transparent;
}
.nuestros_egresados .contenido .filas3 .owl-nav button.owl-prev.disabled, .nuestros_egresados .contenido .filas3 .owl-nav button.owl-next.disabled{
  background: none;
}

.nuestros_egresados .contenido img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.nuestros_egresados .contenido .imagen{
    line-height: 0;
    height: 80%;
}
@media(max-width: 1490px){
  .nuestros_egresados .contenido .imagen{
    line-height: 0;
    height: 77%;
  }
  .nuestros_egresados .contenido .filas3 > div:hover .texto{
    height: 77%;
  }
   .nuestros_egresados .contenido .texto p{
  
    font-size: 14px;
    line-height: 1.3;
    /* overflow-y: scroll; */
  }
  .lo_nuevo .dividido .filas2 > img{
    max-height: 441px;
  }
  .noticias-eventos .dividido .filas2{
    grid-template-columns: 60% 40%;
  }

}
@media(max-width: 1350px){
  .nuestros_egresados .contenido .texto p{
  
    font-size: 17px;
    /* overflow-y: scroll; */
   
  }
  }
@media(max-width: 1300px){
  .nuestros_egresados .contenido .texto p{
    height: fit-content;
    margin-block-end: 3em;
    font-size: 18px;
    line-height: 1.2;
    /* overflow-y: scroll; */
  }


  .nuestros_egresados .contenido .imagen{
    height: 70%;
  }
  .nuestros_egresados .contenido .filas3 > div:hover .texto{
    height: 70%;
    align-items: normal;
  }

}

.nuestros_egresados .contenido .nombre{
  background: #EA4E4A;
  text-align: center;
  padding: 20px 0;
  position: relative;
  z-index: 9;
  height: auto;
}
.nuestros_egresados .contenido .nombre h3{
  color: white;
  font-size: 20px;
  font-weight: 700;
}
.nuestros_egresados .contenido .nombre h4{
  font-size: 13px;
}

@media(max-width: 1270px){
  .nuestros_egresados .contenido .texto p{
  
    font-size: 16px;
   
  }
  }

@media(max-width: 1200px){
  .nuestros_egresados .contenido .texto p{
  
    font-size: 15px;
   
  }
  }
@media(max-width: 1150px){
  .lo_nuevo .dividido .filas2 > img{
    object-fit: fill;
    max-height: 332px;
  }
 
  .nuestros_egresados .contenido .texto p{
  
    font-size: 13px;
   
  }
  }


@media(max-width: 1000px){
  .nuestros_egresados .contenido .nombre h4{
    padding: 0 20px;
    min-height: 60px;
  }
  .nuestros_egresados .contenido .texto p{
    font-size: 16px;
    }

}
@media(max-width: 800px){
  .nuestros_egresados h2{
    font-size: 28px;
  }
  .nuestros_egresados h2:before{
    width: 50px;
    height: 50px;
  }
  .nuestros_egresados .contenido .nombre{
    text-align: left;
    padding: 10px 20px;
  }
  .lo_nuevo .dividido .filas2 > img{
    max-height: 100%;
  }
  section.lo_nuevo.noticias-eventos{
    padding: 60px 0;
  }

  .noticias-eventos .dividido .filas2{
    grid-template-columns: 100%;
  }
}
@media(max-width: 765px){
  .nuestros_egresados .contenido .nombre h4{
    padding: 0 0px;
  }
  .nuestros_egresados .contenido .texto p{
    font-size: 14px;
    }

}
.owl-banner-nuevo .owl-nav,  .owl-simple  .owl-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  margin: 0;
}
.owl-banner-nuevo .owl-nav .owl-prev, .owl-simple .owl-nav .owl-prev{
  float: left;
  background-image: url(../images/flecha2.svg) !important;
  width: 50px;
  height: 50px;
  background-size: contain !important;
  background-color: transparent!important;
  display: block;
}
.owl-banner-nuevo .owl-nav .owl-next , .owl-simple .owl-nav .owl-next{
  float: right;
  background-image: url(../images/flecha1.svg) !important;
  width: 50px;
  height: 50px;
  background-size: contain !important;
  background-color: transparent!important;
  display: block;
}

.lo_nuevo .dividido > div:last-child  .bloque-slider-home .owl-nav button, .lo_nuevo.bloques3 .dividido > div:last-child  .owl-nav button{
  width: 30px;
  height: 30px;
}

ul.owl-simple .bloque-slider-home .owl-nav button.owl-prev  , ul.owl-simple .bloque-slider-home .owl-nav button.owl-next {
  width: 30px;
  height: 30px;
}
.owl-banner-nuevo .owl-nav button span , .owl-nav button span {
  display: none;
}
.lo_nuevo .dividido > div:last-child .item .owl-nav{
  top: 40%;
}
.lo_nuevo .dividido > div:last-child .item .owl-nav button{
  width: 30px;
  height: 30px;
}
.lo_nuevo.noticias-eventos .dividido > div:last-child{
  display: grid;
  align-content: space-between;
}
.lo_nuevo >.noticias-nuevas >.dividido > div:last-child{
    display: grid;
    align-content: space-between;
    grid-template-columns: 100%;
  }
@media (max-width: 1000px){
  .lo_nuevo .dividido > div:first-child .item .owl-nav button{
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1500px){
  .lo_nuevo .dividido > div:first-child .item{
      max-height: 454px;
  }

}




section.grupo-acordeon {
  padding: 0 80px;
}

section.grupo-acordeon a#cb1 {
  display: grid;
  align-items: center;
  grid-template-columns: 91% auto;
  border-top: 1px solid #C6C6C6;
  border-bottom: 1px solid #C6C6C6;
  padding: 30px 3px;
  /* display: block; */
  width: 100%;
  font-size: 25px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 1520px){
 
section.grupo-acordeon a#cb1 {

  padding: 20px 3px;

}
}
section.grupo-acordeon a#cb1.active {
  color: #EA4E4A;
 
}
.formacion-valores .tab__content .textos {
  padding: 30px 10px;
}
@media (max-width: 600px){
  section.grupo-acordeon{
    padding: 0 15px;
  }
  section.grupo-acordeon a#cb1{
    font-size: 18px;
  }
  .formacion-valores .tab__content .textos{
    padding: 25px 10px;
  }
}


  /* li#boton-desktop-menu {
    display: none;
} */
.sub-header .container {
  margin: auto;
  text-align: center;
  max-width: none;
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 0 70px;
  align-items: center;
}
@media(max-width: 1300px){
  .sub-header .container {
    padding: 0 10px;
    
  }
}
.nuestros_egresados .contenido .nombre h4 a {
  display: none;
}
@media(max-width: 800px){
  .nuestros_egresados .contenido {
    padding: 0 20px;
  }

  .noticias-eventos .titular .filas2 a{
    display: none;
  }
  .noticias-eventos .titular .filas2{
    grid-template-columns: 100%;
  }
  .lo_nuevo{
    padding: 30px 0;
  }
  .lo_nuevo .dividido .item .textos h3, .lo_nuevo.bloques3 .dividido .textos h3{
    font-size: 18px;
  }
  .lo_nuevo .dividido .item .textos h3 span, .lo_nuevo .dividido .textos h3 span{
    font-size: 13px;
  }
  .bloques3 .dividido .img_container .textos p{
    display: block;
  }
  .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot{
    width: 30px;
    height: 30px;
  }
  .lo_nuevo .dividido .item .textos, .lo_nuevo.bloques3 .dividido .textos{
    padding: 15px 34px;

  }
  .lo_nuevo.bloques3 .dividido .textos h4{
    font-size: 18px;
  }
  }


 

@media(max-width: 500px){
  .lo_nuevo .dividido .item .textos h3, .lo_nuevo .dividido .item .textos h4{
    font-size: 18px;

   }
   .lo_nuevo h2,.formacion-valores h2,.nuestros_egresados h2{
    font-size: 28px;
   }
   .nuevo-banner-home div#texto-banner p{
    font: normal normal 300 25px/59px Open Sans;
    line-height: 35px;
   }
  }
  @media(max-width: 500px){
    .bloques3 .dividido .img_container .textos p{
      font-size: 12px;
    }
    .lo_nuevo.bloques3 .dividido .textos h4 {
      line-height: 19px;
    }

    }

    @media(max-width: 345px){
      .lo_nuevo h2, .formacion-valores h2, .nuestros_egresados h2,.formacion-valores h2, .conoce-nuestros-programas h2{
        font-size: 24px;
      }
     
      }


      .nuestros_egresados .contenido .filas3{
      display: flex;
      justify-content: center;
      }


     
      .rr {
    display: flex;
    justify-content: center;
    z-index: 9;
    width: 100%;
    top: -41%;
    justify-content: center;
    position: absolute;
}


.si {
    clip-path: polygon(83% 30%, 35% 100%, 82% 100%);
    /* clip-path: polygon(83% 58%, 42% 100%, 82% 100%); */
    background: #EA4E4A;
    color: #950f0f;
    width: 60px;
    height: 36px;
}
.fle {
    display:none;
    position: absolute;
    right: 0;
    margin-right: 20px;
    top: 15px;
}

@media(max-width: 1350px){
  .nuestros_egresados .contenido .filas3{
    display: flex;
    grid-template-columns: auto auto auto;
    justify-content: center;
  }
}


@media(max-width: 1000px){
  .nuestros_egresados .contenido .filas3{
    display: grid;
    grid-template-columns: auto auto;
    }
}
@media(max-width: 768px){
  .nuestros_egresados .contenido .filas3{
    display: grid;
    grid-template-columns: auto;
    }
}
.nuestros_egresados .contenido .filas3 > div:nth-child(1):hover .texto{
  align-items: center;
  height: 100%;
  /* overflow-y: scroll; */
}
.nuestros_egresados .contenido .filas3 > div:nth-child(2):hover .texto{
  align-items: center;
}

  @media(max-width: 500px){
  .fle {
    display:block;
  
}
      .nuestros_egresados .contenido .filas3 > div:hover .texto{
            height: 70%;
    padding: 19px 20px;
      }
      
      .rr{
          top: -54%;
      
      }
  
      }
      
      
       @media(max-width: 340px){
     
      
      .rr{
          top: -34%;
      
      }
  
      }

        
      .triangulo {
        position: absolute;
        background: transparent;
        height: 100%;
        top: -37px;
        width: 100%;
            display: flex;
        justify-content: center;
        z-index: -4;
    }
    @media(max-width: 1450px){
      .triangulo{
       top: -25px;
  }
    }
    @media(max-width: 350px){
      .nuestros_egresados .contenido .imagen,.nuestros_egresados .contenido .filas3 > div:hover .texto{
        height: 67%;
      }
  
    }
  
  

    @media(max-width: 500px){
     
      .triangulo {
        width: 88%;
      }
    }
    .nuestros_egresados 
     .triangulo img {
        width: 55px;
        height: max-content;
    }

    /* CINDE */
    
    .valores-cinde li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

   .valores-cinde li:before {
    content: "";
    position: absolute;
    top: 4px;
    width: 8px;
    height: 8px;
    left: 0;
    background: #EA4E4A;
    border-radius: 50%;
}

.contacto-cinde h2 {
    font-size: 35px;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 30px;
    position: relative;
}

 .contacto-cinde h2:before {
    content: "";
    width: 20px;
    height: 40px;
    background: #EA4E4A;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.nuestras_carreras .presentacion.valores-cinde {
    max-width: 800px;
    padding-bottom: 45px !important;
}

section.quienes_somos.cinde
{
    padding: 0;
    padding-bottom: 45px;
    max-width: 800px;
    margin: 0 auto;
}

section.conoce-nuestros-programas.presentacion.logos.cinde {
    max-width: 800px !important;
}

.container.contacto-cinde {
    max-width: 800px !important;
}

.container.container-bloques4.cinde {
    max-width: 800px !important;
    margin-bottom: 60px;
}

.container.container-bloques3.cinde {
    max-width: 800px !important;
}

.container-bloques3.cinde .contenido p {
    font-size: 14px !important;
}

@media (max-width: 1000px) {
    .posgrado-presentacion.cinde .btn-regresar {
        display: inline-block !important;
    }
}

.menu-cinde
{
  background: #EA4E4A !important;
}

.menu-carreras.menu-cinde li a {
  color: #FFFFFF !important;
}

.menu-carreras.menu-cinde a:hover {
  text-decoration: underline;
  text-decoration-color: #FFFFFF;
  text-underline-offset: 3px;
}

.nuestras_carreras .presentacion.valores-cinde h2 {
  margin-top:0px !important;
}

.nuestras_carreras .menu-carreras.menu-cinde {
  margin-bottom: 45px !important;
}

.nuestras_carreras .quienes_somos.cinde .filas4 {
  justify-content: left !important;
}

.quienes_somos.cinde .imagen-contenedor {
  position: relative;
  display: inline-block;
}

.quienes_somos.cinde .imagen-contenedor img {
  width: 386px;
  display: block;
  padding: 0 !important;
}

.quienes_somos.cinde .imagen-contenedor::after {
  content: "";
  position: absolute;
  top: 50%; /* El gradiente comienza desde el 50% del alto */
  left: 0;
  width: 100%;
  height: 50%; /* El gradiente cubre la mitad inferior */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none; /* Asegura que el gradiente no interfiera con otros elementos interactivos */
}

.quienes_somos.cinde .grupo {
    padding: 25px 13px;
    border: 0px solid #62626247;
    display: grid;
    grid-gap: 6px;
    background: transparent;
}


.quienes_somos.cinde .grupo .rector {
    display: flex;
    grid-gap: 10px;
    background: transparent;
}

.quienes_somos.cinde .grupo .rector h3 {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    color: #232B2C;
    display: grid;
    /* line-height: 21px; */
    grid-gap: 9px;
}

.quienes_somos.cinde .grupo .rector h3 span {
    font-weight: 400;
}

.quienes_somos.cinde .grupo .correo_doctor {
    padding: 10px 0;
    border-top: 1px solid #CBCCCA;
    border-bottom: 1px solid #CBCCCA;
    margin: 7px 0;
    background: transparent;
}

.nuestras_carreras.cinde .presentacion h2 {
  margin-top:0px !important;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    color: #000000;
}