body,
html {
  position: relative;
  height: 100%;
  /*background: url(../img/la-textura-de-papel.jpg);*/
  font-family: "Open Sans", sans-serif;
}
.seccion {
  padding-top: 50px;
  padding-bottom: 40px;
}
.titulo {
  color: #12275c;
  padding-bottom: 15px;
}
/*.titulo {
    position: relative;
    color: #12275C;
    padding-bottom: 15px;
}
.titulo:before,
.titulo:after {
    content: "";
    width: 50px;
    height: 2px;
    background: #12275C;
    display: inline-block;
}
.titulo:before {
    margin: 0 15px 10px 15px;
}
.titulo:after {
    margin: 0 15px 10px 15px;
}*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: #12275c transparent #12275c transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# CABECERA
--------------------------------------------------------------*/
.cabecera h6 {
  color: #12275c;
  margin-bottom: 0px;
}
.cabecera .cabecera_contactos a {
  /*color: #D0101D;
    font-size: 2rem;
    padding-left: 20px;
    transition: 0.3s;*/
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #12275c;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  margin-left: 10px;
  transition: 0.3s;
}
.cabecera .cabecera_contactos a:hover {
  background-color: #fff;
  border: 1px solid #12275c;
  color: #12275c;
}
.cabecera .cabecera_logo a img {
  width: 25%;
}
.cabecera .cabecera_logo a img:hover {
  box-sizing: border-box;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}
.cabecera .cabecera_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #12275c;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  margin-left: 10px;
  transition: 0.3s;
}
.cabecera .cabecera_social a:hover {
  background-color: #fff;
  border: 1px solid #12275c;
  color: #12275c;
}
.modal-header {
  background-color: #12275c;
  color: white;
}
/*--------------------------------------------------------------
# NAVEGACION
--------------------------------------------------------------*/
.navbar {
  background-color: #12275c;
}
.navbar .navbar-brand:hover {
  color: #d0101d;
}
.navbar .navbar-nav .nav-link.active {
  background-color: #18397a;
  border-radius: 4%;
  border-bottom: 3px solid #d0101d;
  transition: all 0.3s ease-in-out 0s;
}
.navbar .navbar-nav .nav-link:hover {
  color: white;
  background-color: #18397a;
  border-radius: 4%;
}
.dropdown-item.active {
  background-color: #18397a;
}
.dropdown-item:hover {
  background-color: #e2ecff;
}
.dropdown-item:hover:before {
  color: #212529;
  background-color: #e2ecff;
}
.dropdown-item:hover:focus {
  color: #212529;
  background-color: #e2ecff;
}
/*SUBMENU*/
.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}
/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}
/* rotate caret on hover */
/*End SubMenu*/
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
}
/*--------------------------------------------------------------
# SECCION NOSOTROS
--------------------------------------------------------------*/
/* EFECTO BOTON PLAY */
.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    rgba(208, 16, 29, 1) 50%,
    rgba(208, 16, 29, 0.2) 52%
  );
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(208, 16, 29, 1);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.play-btn:hover:after {
  border-left: 15px solid rgba(208, 16, 29, 1);
  transform: scale(20);
}
.nosotros h3,
.nosotros p {
  color: #d0101d;
}
.nosotros .nav-tabs {
  border-color: #12275c;
}
.nosotros .nav-link {
  color: #12275c;
  border-bottom: 0;
}
.nosotros .nav-link:hover {
  border-color: #12275c;
}
.nosotros .nav-link.active {
  color: #fff;
  background: #12275c;
}
.nosotros .tab-content .tab-pane img {
  width: 20%;
}
.nosotros .card-header {
  color: #fff;
  background-color: #12275c;
}
.nosotros .card-body img {
  width: 30%;
  padding-right: 20px;
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*BENEFICIOS*/
.beneficios h4 {
  color: #d0101d;
}
.beneficios-wrapper h5 {
  color: #212529;
}
.beneficios-wrapper .swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}
.beneficios-wrapper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px;
  height: 250px;
}
.beneficios-wrapper .swiper-slide img {
  display: block;
  width: 50%;
  object-fit: cover;
}
.beneficios-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.beneficios-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d0101d;
}
/*--------------------------------------------------------------
# SECCION CARRERAS
--------------------------------------------------------------*/
.carreras .nav-tabs {
  border-color: #12275c;
}
.carreras .nav-link {
  color: #12275c;
  border-bottom: 0;
}
.carreras .nav-link:hover {
  border-color: #12275c;
}
.carreras .nav-link.active {
  color: #fff;
  background: #12275c;
}
/*.carreras .card {
    overflow: hidden;
}
.carreras .card img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}
.carreras .card img:hover {
    opacity: 0.6;
    transform: scale(1.1);
}*/
.carreras .card {
  overflow: hidden;
}
.contenedor {
  position: relative;
  width: 100%;
}
.imagen {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s ease;
  backface-visibility: hidden;
  transition: 0.3s;
  z-index: 1;
}
.middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.carreras .card .middle a {
  color: #12275c;
  font-size: 3rem;
  /*border: 1px solid #12275C;*/
  border-radius: 15%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  transition: 0.2s;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.carreras .card .middle a:hover {
  color: #d0101d;
  /*background-color: #fff;
    border: 1px solid #D0101D;*/
  font-size: 4rem;
  transform: scale(1.1);
}
.contenedor:hover .imagen {
  opacity: 0.3;
  transform: scale(1.1);
}
.contenedor:hover .middle {
  opacity: 1;
}
.carreras .card .card-header {
  color: #fff;
  background-color: #12275c;
  position: relative;
  z-index: 2;
}
.carreras .card .card-body p {
  font-size: 14px;
}
.btn-carreras {
  color: #fff;
  background: #12275c;
  transition: 0.3s;
}
.btn-carreras:hover {
  color: #fff;
  background: #d0101d;
  border: 1px solid #fff;
}
.btn-carreras:focus {
  color: #fff;
  background: #9a0610;
  border: 1px solid #fff;
}
.carreras a {
  list-style: none;
  text-decoration: none;
}
.carreras a span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.carreras a span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.carreras a:hover span {
  padding-right: 25px;
}
.carreras a:hover span:after {
  opacity: 1;
  right: 0;
}
/*--------------------------------------------------------------
# SECCION PARALLAX
--------------------------------------------------------------*/
.parallax-window {
  /* imagen a usar */
  background-image: url(../img/fachada.jpg);
  /* tamaño */
  min-height: 100px;
  /* efecto parallax scrolling */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax img {
  width: 90px;
  padding-bottom: 10px;
}
.parallax h5,
.parallax p {
  color: #12275c;
}
.parallax h5 a {
  color: #d0101d;
  text-decoration: none;
}
.btn-contact {
  color: #fff;
  background: #12275c;
  transition: 0.5s;
}
.btn-contact:hover {
  color: #fff;
  background: #d0101d;
  border: 1px solid #fff;
}
.btn-contact:focus {
  color: #fff;
  background: #9a0610;
  border: 1px solid #fff;
}
.parallax a {
  list-style: none;
  text-decoration: none;
}
.parallax a span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.parallax a span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.parallax a:hover span {
  padding-right: 25px;
}
.parallax a:hover span:after {
  opacity: 1;
  right: 0;
}
/*--------------------------------------------------------------
# HORARIOS
--------------------------------------------------------------*/
.horarios .card {
  border-radius: 1.3rem;
}
.horarios .card .card-header {
  color: white;
  background-color: #12275c;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
}
.horarios .card .card-header i {
  font-size: 2rem;
}
.horarios .card .card-header b {
  font-size: 1.3rem;
}
.horarios .card .card-body p {
  font-size: 1.8rem;
}
.horarios .card .card-footer img {
  width: 50%;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.horarios .card .card-footer:hover img {
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# NOTICIAS
--------------------------------------------------------------*/
.noticias .card {
  overflow: hidden;
}
.contenedor {
  position: relative;
  width: 100%;
}
.imagen {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s ease;
  backface-visibility: hidden;
  transition: 0.3s;
  z-index: 1;
}
.middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.noticias .card .middle a {
  color: #12275c;
  font-size: 3rem;
  transition: 0.2s;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.noticias .card .middle a:hover {
  color: #d0101d;
  font-size: 4rem;
  transform: scale(1.1);
}
.contenedor:hover .imagen {
  opacity: 0.3;
  transform: scale(1.1);
}
.contenedor:hover .middle {
  opacity: 1;
}
.noticias .card .card-header {
  color: #fff;
  background-color: #12275c;
  z-index: 2;
}
.noticias .card .card-header {
  color: #fff;
  background-color: #12275c;
}
/*--------------------------------------------------------------
# CONTACTOS
--------------------------------------------------------------*/
.contactos .card {
  background: #e2ecff71;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contactos .card .card-body {
  padding-left: 1.5rem;
}
.contactos .card a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #d0101d;
  font-size: 2rem;
  color: #d0101d;
  margin-right: 10px;
  transition: 0.3s;
}
.contactos .card a:hover{
  color: white;
  background-color: #d0101d;
}
.contactos .card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.contactos .card p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contactos .info-form {
  background: #e2ecff71;
  padding: 10px;
  height: 100%;
}
.btn-contact {
  color: #fff;
  background: #12275c;
  transition: 0.5s;
}
.btn-contact:hover {
  color: #fff;
  background: #d0101d;
  border: 1px solid #fff;
}
.btn-contact:focus {
  color: #fff;
  background: #9a0610;
  border: 1px solid #fff;
}
.contactos button {
  list-style: none;
  text-decoration: none;
}
.contactos button span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.contactos button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.contactos button:hover span {
  padding-right: 25px;
}
.contactos button:hover span:after {
  opacity: 1;
  right: 0;
}
/*--------------------------------------------------------------
# PAGINA CARRERAS
--------------------------------------------------------------*/
/*GENERAL*/
.carreras-titulo h5 {
  color: #12275c;
  padding-bottom: 10px;
}
/*.carreras-accordion .accordion-button:not(.collapsed){
    color: white;
    background-color: #12275C;
}
.carreras-accordion .accordion-button:not(.collapsed)::after{
    color: white;
}*/
.carreras-wrapper .swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}
.carreras-wrapper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 130px;
  height: 130px;
}
.carreras-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.carreras-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.carreras-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d0101d;
}
/*breadcrumb*/
.paginacion nav {
  background-color: #f2f7ff;
  padding: 15px 0;
  padding-left: 20px;
}
.paginacion nav ol {
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.paginacion nav ol a {
  color: #12275c;
}
.paginacion nav ol a:hover {
  color: red;
}
.paginacion nav ol .breadcrumb-item + .breadcrumb-item::before {
  color: #d0101d;
}
/*nuestras carreras*/
.ncarreras h2 {
  color: #12275c;
}
.ncarreras li a {
  list-style: none;
  text-decoration: none;
  color: #12275c;
}
.ncarreras li a:hover {
  color: #d0101d;
}
.ncarreras li a span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-size: 1.5rem;
}
.ncarreras li a span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.ncarreras li a:hover span {
  padding-right: 25px;
}
.ncarreras li a:hover span:after {
  opacity: 1;
  right: 0;
  color: #d0101d;
}
/*requisitos*/
.requisitos .list-group {
  border-radius: 1.3rem;
}
.requisitos .list-group .list-group-item i {
  font-size: 2.2rem;
  color: #d0101d;
}
.requisitos .list-group .list-group-item p {
  font-size: 1.3rem;
  margin-bottom: 0;
  color: #12275c;
}
/*--------------------------------------------------------------
# BOTON UP
--------------------------------------------------------------*/
.up {
  color: white;
  background-color: #d0101d;
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}
.up:hover {
  background-color: #18397a;
  color: white;
  border: 1px solid white;
}
.up:focus {
  color: white;
  background: #9a0610;
  border: 1px solid white;
}
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.pie_pagina {
  background: #12275c;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.pie_pagina .pie_pagina_nosotros h5 {
  color: #d0101d;
}
.pie_pagina .pie_pagina_nosotros p {
  font-size: 0.8rem;
}
.pie_pagina .pie_pagina_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #d0101d;
  font-size: 1rem;
  color: #d0101d;
  margin-right: 10px;
  transition: 0.3s;
}
.pie_pagina .pie_pagina_social a:hover {
  color: #12275c;
  border-color: #12275c;
  background-color: #fff;
}
.pie_pagina .pie_pagina_sitio h5 {
  color: #d0101d;
}
.pie_pagina .pie_pagina_sitio ul li a {
  list-style: none;
  text-decoration: none;
  padding: 0;
  color: white;
  font-size: 1rem;
}
.pie_pagina .pie_pagina_sitio ul li a:hover {
  color: #d0101d;
}
.pie_pagina .pie_pagina_contacto h5 {
  color: #d0101d;
}
.pie_pagina .pie_pagina_contacto ul h6 {
  color: #d0101d;
}
.pie_pagina .pie_pagina_contacto ul p {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.pie_pagina .pie_pagina_contacto ul a {
  color: white;
  font-size: 1rem;
  margin-top: 0;
}
.pie_pagina .pie_pagina_contacto ul a:hover {
  color: #d0101d;
}
.pie_pagina .pie_pagina_copyright {
  background-color: #18397a;
}
.pie_pagina .pie_pagina_copyright p {
  margin-bottom: 0;
}
.pie_pagina .pie_pagina_copyright a {
  list-style: none;
  text-decoration: none;
  color: white;
}
.pie_pagina .pie_pagina_copyright a:hover {
  color: #d0101d;
}
