@import url("https://fonts.googleapis.com/css?family=Open+Sans:300, 400,700, 900");
@import url(https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700,800,900&display=swap);
/*/////////////////////////////// 
        COLORES
///////////////////////////////*/

:root {
  /* Main colors */
  --lila: #4e0d75 !important;
  --lila--shine: #691193 !important;
  --lila--oscuro: #160023 !important;
  --lila--claro: #f5ebfb !important;
  --orange: #e5bb07 !important;
  --orange--shine: rgba(229, 187, 7, 0.8) !important;
  --orange--oscuro: #cca604 !important;
  --orange--claro: #f5e3a9 !important;
  --bg-orange--claro: #f9f7f2 !important;
  --azul--claro: #f7fbfc !important;
  --gris--primary: #fafafa !important;
  --gris--secondary: #eee !important;
  --gris--oscuro: #666666 !important;
  --danger: #da2121 !important;
  --success: #28a745 !important;
  --success--shine: #1e9138 !important;
  --warning: #ec890f !important;
  --warning--shine: #d77a07 !important;
  --whatsapp: #38ad44 !important;
  --whatsapp--hover: #31963b !important;
}
/* Text color */
.text-lila {
  color: var(--lila) !important;
}
.text-lila-hover {
  color: var(--lila--hover) !important;
}
.text-lila-claro {
  color: var(--lila--claro) !important;
}
.text-yellow {
  color: var(--orange) !important;
}
.text-danger {
  color: var(--danger) !important;
}
.text-danger-claro {
  color: var(--danger--claro) !important;
}
.text-success {
  color: var(--success) !important;
}
.text-facebook {
  color: var(--facebook) !important;
}
.text-facebook-hover {
  color: var(--facebook--hover) !important;
}
.text-twitter {
  color: var(--twitter) !important;
}
.text-twitter-hover {
  color: var(--twitter--hover) !important;
}
.text-linkedin {
  color: var(--linkedin) !important;
}
.text-linkedin-hover {
  color: var(--linkedin--hover) !important;
}
.text-whatsapp {
  color: var(--whatsapp) !important;
}
.text-whatsapp-hover {
  color: var(--whatsapp--hover) !important;
}
.text-black {
  color: #1d1f20 !important;
}
.text-white {
  color: white !important;
}
/* Background color */
.bg-lila {
  background-color: var(--lila) !important;
}
.bg-lila-shine {
  background-color: var(--lila--shine) !important;
}
.bg-lila-oscuro {
  background-color: var(--lila--oscuro) !important;
}
.bg-lila-hover {
  background-color: var(--lila--hover) !important;
}
.bg-lila-claro {
  background-color: var(--lila--claro) !important;
}
.bg-lila-transparent {
  background-color: var(--lila--transparente) !important;
}
f {
  background-color: var(--orange) !important;
}
f-oscuro {
  background-color: var(--orange--oscuro) !important;
}
.bg-danger {
  background-color: var(--danger) !important;
}
.bg-danger-claro {
  background-color: var(--danger--claro) !important;
}
.bg-success {
  background-color: var(--success) !important;
}
.bg-facebook {
  background-color: var(--facebook) !important;
}
.bg-facebook-hover {
  background-color: var(--facebook--hover) !important;
}
.bg-twitter {
  background-color: var(--twitter) !important;
}
.bg-twitter-hover {
  background-color: var(--twitter--hover) !important;
}
.bg-linkedin {
  background-color: var(--linkedin) !important;
}
.bg-linkedin-hover {
  background-color: var(--linkedin--hover) !important;
}
.bg-whatsapp {
  background-color: var(--whatsapp) !important;
}
.bg-whatsapp-hover {
  background-color: var(--whatsapp--hover) !important;
}
.bg-black {
  background-color: #000 !important;
}
.bg-gris-claro {
  background-color: var(--gris--secondary) !important;
}
.bg-gris-oscuro {
  background-color: var(--gris--oscuro) !important;
}

/*/////////////////////////////// 
        COMPONENTES
///////////////////////////////*/

b,
strong {
  font-weight: 700;
}
.page-content--left {
  padding-left: 9.7rem !important;
}

.btn-lila,
.btn-lila:active,
.btn-lila:focus,
.btn-lila:focus-visible {
  background: var(--lila);
  border: 2px solid var(--lila);
  color: #1d1f20 !important;
  text-transform: uppercase;
  font-weight: 800 !important;
}
.btn-lila:hover {
  background: transparent !important;
  border: 2px solid var(--lila);
  color: var(--lila) !important;
}

/* width */
.w-fit {
  width: fit-content;
}
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}
.w-100 {
  width: 100%;
}

/* Background image */
.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 100%; */
}

/*/////////////////////////////// 
        SECCIONES
///////////////////////////////*/

body {
  font-family: "Open Sans", sans-serif;
  background-color: rgb(82, 86, 89);
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1.4;
  font-size: 15px;
  color: #1d1f20;
}
section {
  /* padding: 4% 7%; */
  background-color: white;
  margin: 2% 5%;
  box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
  min-height: 855px;
  /* width: 124vh;
    height: 70vh; */
}
.page {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  overflow-wrap: anywhere;
}
@media (max-width: 500px) {
  .page {
    display: block;
  }
}
::selection {
  background: var(--lila--claro);
}
.clear {
  clear: both;
}
#sfWebDebug {
  display: none;
}
.only-print {
  display: none;
}
.only-html {
  display: block;
}

#copy-message {
  text-align: center !important;
  color: green;
  font-size: 12px;
}

/* Estilos de textos */
h1,
h2,
h3 {
  font-family: "Work Sans", sans-serif;
}
h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -2px;
  color: #1d1f20;
  margin-bottom: 40px;
  line-height: 1.1;
  overflow-wrap: break-word;
}
h2 span {
  color: var(--orange);
}
h2.titulo-seccion span {
  margin-left: -5.2rem;
  padding: 10px;
  width: fit-content;
  line-height: 1;
  margin-right: 20px;
  background-color: var(--lila);
  color: #1d1f20;
  display: inline-block;
}
.ml-positive {
  margin-left: 5.2rem;
}
h3.h2_parrafo {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 0;
}
h6,
.h2_parrafo {
  font-size: 1.6em;
  margin-top: 60px;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 700;
}
h6.h6_parrafo {
  padding-left: 0;
  margin-bottom: 5px;
  margin-top: 0 !important;
  font-weight: 700;
  font-size: 19px;
}
li {
  list-style: none;
  padding-left: 1.5em;
  text-indent: -1em;
  margin-bottom: 15px;
}
ul li::before {
  content: "→ " !important;
  color: var(--lila);
  margin-right: 5px;
  font-weight: 900;
  margin-left: -8px;
}
a {
  color: var(--lila);
  text-decoration: underline;
}
a:hover {
  color: var(--lila--shine);
  text-decoration: underline;
}
p.p-sub {
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: underline;
  font-style: italic;
}
.bg-oscuro ul li::before {
  color: var(--orange);
}
.gradient-list.gradient-list--check-list ul li {
  text-indent: 0;
}
.gradient-list.gradient-list--check-list ul li:before {
  content: "" !important;
  background: url(img/check.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  margin-left: -30px;
  margin-top: 3px;
}
.gradient-list.gradient-list--card-check ul {
  display: flex;
  flex-flow: wrap;
}
.gradient-list.gradient-list--card-check ul li {
  width: 21%;
  margin: 0 1% 15px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  height: auto;
  max-height: none;
  padding-left: 3em;
  color: black;
  border-radius: 0.5rem;
  text-align: left !important;
}
.gradient-list--card ul {
  display: flex;
  flex-flow: wrap;
}
.gradient-list--card ul li {
  width: 31%;
  margin: 6px 1%;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  height: auto;
  max-height: none;
  display: flex;
  align-items: center;
  border-radius: 5px;
  text-indent: 0;
}
@media (max-width: 997px) {
  .gradient-list.gradient-list--card-check ul li {
    width: 35%;
  }
}
@media (max-width: 792px) {
  .gradient-list.gradient-list--card-check ul li {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .gradient-list--card ul li {
    text-align: center;
    flex-direction: column;
  }
}
ul {
  padding-left: 20px;
}
ol li {
  list-style-type: decimal;
  text-indent: initial;
  padding-left: 5px;
}
#indice li::before {
  content: none !important;
}
#indice li {
  line-height: 1.5;
  margin-bottom: 15px !important;
  padding: 0;
  text-indent: 0;
}
#indice ul {
  padding-left: 0px !important;
}
#indice a,
#indice a:visited {
  text-decoration: none;
  color: #1d1f20;
}
#metodologia .w-40.bg-lila img:nth-child(2) {
  display: none;
}
@media (max-width: 1300px) {
  #titulacion .page-content.w-50,
  #diplomas.w-50 {
    width: 100% !important;
  }
  #titulacion h2.titulo-seccion {
    margin-bottom: 40px !important;
  }
  .caja-acreditaciones {
    width: 80%;
    margin: 20px auto;
  }
  #metodologia .page-content.w-60,
  #metodologia .w-40.bg-lila {
    width: 100% !important;
  }
  #metodologia .w-40.bg-lila img:nth-child(1) {
    display: none;
  }
  #metodologia .w-40.bg-lila img:nth-child(2) {
    display: block;
  }
}
@media (max-width: 1200px) {
  #indice .w-60,
  #indice .w-40 {
    width: 100%;
  }
  #indice .bg-image {
    width: 100%;
    height: 400px;
  }
  #presentacion .bg-image {
    width: 100%;
    height: 400px;
    background-position: top;
  }
  #presentacion .page-content.w-40,
  #presentacion .page-content.w-60 {
    width: 100%;
  }
  #presentacion h2.titulo-seccion span {
    margin: 0 0 10px 0;
  }
  #programa .bg-image,
  #becas .bg-image {
    display: none;
  }
  #programa .page-content,
  #becas .page-content {
    width: 100% !important;
  }
  #nonstoplearning .w-50 {
    width: 100% !important;
  }
  #nonstoplearning #diplomas .w-50 {
    width: 50% !important;
  }
}
@media (max-width: 991px) {
  #empleo .page-content.bg-lila {
    width: 80%;
    margin: 0 auto;
  }
  #empleo .page-content.bg-white.d-flex.flex-wrap.justify-content-between {
    justify-content: center !important;
  }
  #nonstoplearning .w-50 {
    width: 100% !important;
  }
  #info-programa {
    flex-direction: column;
  }
  #info-programa .w-50 {
    width: 100% !important;
  }
}
@media (max-width: 800px) {
  #tabla-resumen {
    flex-direction: column;
  }
  #tabla-resumen table.w-50 {
    width: 100% !important;
  }
  #tabla-resumen table tr td {
    width: 50% !important;
  }
}
@media (max-width: 768px) {
  #indice h2.titulo-seccion span {
    margin: 0;
  }
  #diplomas .w-50 {
    width: 100% !important;
  }
  #empleo .page-content.bg-white.d-flex.flex-wrap.justify-content-between {
    margin-top: 40px;
  }
  #metodologia .w-40.bg-lila img:nth-child(1) {
    display: block;
    width: 80% !important;
    margin: auto;
    max-width: 400px;
  }
  #metodologia .w-40.bg-lila img:nth-child(2) {
    display: none;
  }
}
@media (max-width: 600px) {
  #nonstoplearning #diplomas .w-50 {
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .caja-nonstoplearning {
    flex-direction: column !important;
    text-align: center;
  }
  .caja-nonstoplearning img {
    margin: 0 auto 15px auto !important;
  }
  #tabla-resumen table tr {
    display: grid;
  }
  #tabla-resumen table tr td {
    width: 100% !important;
    text-align: center;
  }
  #programa .page-content,
  #becas .page-content {
    margin: 0 !important;
  }
}

/* Descargar */
/*#barra-inferior {
    background: #636363;
    height: 100%;
    position: fixed;
    right: 0;
    width: 46px;
    top: 0;
    bottom: 0;
    border-top: 1px solid #b1b1b1;
    padding: 12px;
    z-index: 999;
}*/

#barra-inferior {
  position: fixed;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-elevation-2dp_-_box-shadow);
  background-color: rgb(50, 54, 57);
  color: rgb(241, 241, 241);
  display: flex;
  /*height: 22px;*/
  padding: 16px 0;
}

#barra-inferior p {
  margin-left: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

#buttons-barra {
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 20px;
}

.modal button.btn-close {
  margin-top: -2px;
  color: #1d1f20;
  opacity: 1;
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--lila--hover);
  border-top-left-radius: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 6px;
  font-size: 40px;
  padding: 10px;
  line-height: 0.5;
  border: 0;
}

a#barra-inferior {
  opacity: 0.8;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

label {
  cursor: pointer;
}

label#download-button {
  top: 20px;
  right: 16px;
  width: 40px;
  height: 40px;
  /*background: #0fc70f;*/
  font-size: 18px;
}

label#print-button {
  top: 78px;
  right: 15px;
  width: 40px;
  height: 40px;
  /*background: red;*/
  font-size: 18px;
}
#a-indice {
  display: flex;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  margin-left: 20px;
  z-index: 99999;
}
#a-indice p {
  margin: 0;
}
label#go-indice {
  line-height: 21px;
  bottom: 15px;
  background: #f7f7f7;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  right: 25px;
  position: absolute;
  color: rgb(247, 247, 247);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  box-shadow: 1px 1px 1px 0px #797979;
  /*bottom: 45px;
    right: 140%;
    background: #f7f7f7;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  right: 0px;
  position: absolute;
  color: rgb(241, 241, 241);
  text-align: center;
  line-height: 42px;
  font-size: 20px;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 200ms;
  transition: -webkit-transform ease-out 200ms;
  transition: transform ease-out 200ms;
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;*/
}
i.fa.fa-list,
i.fa.fa-bars {
  display: inline;
  font-size: 19px;
}
i.fa.fa-arrow-up {
  display: none;
}

#paginacion {
  margin: auto;
  position: absolute;
  width: 100%;
  text-align: center;
}
i.fa.fa-arrow-circle-left:hover,
i.fa.fa-arrow-circle-right:hover {
  color: #f1f1f1;
}

i.fa.fa-arrow-circle-left {
  margin-right: 10px;
  color: rgba(241, 241, 241, 0.79);
}
i.fa.fa-arrow-circle-right {
  margin-left: 10px;
  color: rgba(241, 241, 241, 0.79);
}

/*social share button*/
label#share-icon {
  display: none;
}

.menu-item,
.menu-open-button {
  /*background: #f7f7f7;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  right: 0px;
  position: absolute;*/
  color: rgb(241, 241, 241);
  text-align: center;
  line-height: 42px;
  font-size: 20px;
  text-decoration: none;
  width: 40px;
  /*box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 200ms;
  transition: -webkit-transform ease-out 200ms;
  transition: transform ease-out 200ms;
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;*/
}
.menu-open-button a,
.menu-item a {
  color: rgb(241, 241, 241);
}
.menu-open {
  display: none;
}

.menuShare {
  margin: auto;
  position: fixed;
  top: 137px;
  right: 15px;
  width: 40px;
  height: 40px;
  text-align: center;
  box-sizing: border-box;
  font-size: 24px;
  z-index: 99;
}

.menuShare a.menu-item .fa {
  color: #fff;
  line-height: 39px;
}

.share-icon {
  color: rgb(241, 241, 241);
  line-height: 42px !important;
}
i.fa.fa-share-alt.share-icon {
  color: rgb(50, 54, 57);
  margin-top: -5px;
  /*margin-left: -3px;*/
}
.menu-item:hover {
  opacity: 1;
}

.menu-open-button {
  z-index: 2;
  cursor: pointer;
  /* -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);*/
}
/*
.menu-open-button:hover {
  -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
  transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.menu-open:checked + .menu-open-button {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  /*-webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}*/
/*
.menu-open:checked ~ .menu-item {
  -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}

.menu-open:checked ~ .menu-item:nth-child(3) {
  transition-duration: 180ms;
  -webkit-transition-duration: 180ms;
  -webkit-transform: translate3d(0.08361px, 50.99997px, 0);
  transform: translate3d(0.08361px, 50.99997px, 0);
}
/*
.menu-open:checked ~ .menu-item:nth-child(4) {
  transition-duration: 280ms;
  -webkit-transition-duration: 280ms;
  -webkit-transform: translate3d(0.08361px, 100.99997px, 0);
  transform: translate3d(0.08361px, 100.99997px, 0);
}*/
/*
.menu-open:checked ~ .menu-item:nth-child(5) {
  transition-duration: 380ms;
  -webkit-transition-duration: 380ms;
  -webkit-transform: translate3d(0.08361px, 100.99997px, 0);
  transform: translate3d(0.08361px, 100.99997px, 0);
  /*display: none;
}*/
/*
.menu-open:checked ~ .menu-item:nth-child(6) {
  transition-duration: 380ms;
  -webkit-transition-duration: 380ms;
  -webkit-transform: translate3d(0.08361px, 200.99997px, 0);
  transform: translate3d(0.08361px, 200.99997px, 0);
  display: none;
}
.menu-open:checked ~ .menu-item:nth-child(7) {
  transition-duration: 380ms;
  -webkit-transition-duration: 380ms;
  -webkit-transform: translate3d(0.08361px, 250.99997px, 0);
  transform: translate3d(0.08361px, 250.99997px, 0);
  display: none;
}

.facebook_share_btn {
  background-color: #3b5998;
}

.facebook_share_btn:hover {
  color: #3b5998;
  text-shadow: none;
}

.twitter_share_btn {
  background-color: #00aced;
}

.twitter_share_btn:hover {
  color: #00aced;
  text-shadow: none;
}

.google_plus_share_btn {
  background-color: #dd4b39;
}

.google_plus_share_btn:hover {
  color: #dd4b39;
  text-shadow: none;
}
*/
/*.mail_share_btn {
  background-color: #dd4b39;
}

.mail_share_btn:hover {
  color: #dd4b39;
  text-shadow: none;
}
.whatsapp_share_btn {
  background-color: #03d426;
}*/
button.mail_share_btn {
  background: none !important;
  border: 0 !important;
  color: white !important;
}
i.fa.fa-whatsapp {
  font-weight: bold;
}
a.menu-item.whatsapp_share_btn {
  margin: auto;
  position: fixed;
  bottom: 45px;
  text-align: center;
  box-sizing: border-box;
  font-size: 24px;
  z-index: 99;
  line-height: 21px;
  background: var(--whatsapp);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  right: 35px;
  color: rgb(247, 247, 247);
  font-weight: 400;
  box-shadow: 1px 1px 1px 0px #797979;
}
a.menu-item.whatsapp_share_btn:hover {
  background: var(--whatsapp--hover);
  text-decoration: none;
}
.menu-item.whatsapp_share_btn i {
  display: block;
  font-size: 21px;
  margin-top: 9px;
  margin-bottom: 16px;
  color: rgb(247, 247, 247);
}
.whatsapp_share_btn p {
  text-align: center;
  font-size: 14px;
  display: block;
  width: 80px;
  margin-left: -17px !important;
}
img {
  max-width: 100%;
}

/* Portada */
#portada {
  margin-top: 5%;
}
#portada h1 {
  overflow-wrap: anywhere;
}
h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 5em;
  line-height: 1.1em;
  font-weight: 700;
}
h1 span {
  font-size: 45px;
}

/* Programa */
#listado-programa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  height: 100%;
}
#listado-programa li {
  width: 100%;
  text-align: center;
  padding-left: 0;
  list-style: none;
  margin: 5px 0;
}
#listado-programa li:before {
  content: none !important;
}
#listado-programa li img {
  display: block;
  margin: 0 auto;
  height: 50px;
}
#listado-programa li span {
  display: block;
  font-weight: 900 !important;
  text-align: center;
  margin: 8px 0 3px;
}
#listado-programa li p {
  margin-top: 0;
}
#plan-estudios {
  height: auto;
  margin-top: 30px;
  column-count: 3;
}
#plan-estudios .bg-image .bg-black {
  max-width: 500px;
  margin-bottom: -3rem;
}
#plan-estudios .page-content {
  column-count: 3;
  margin-top: 3rem;
}
.cursos #plan-estudios {
  /* align-content: flex-start; */
  background: linear-gradient(90deg, black, 50%, white 50%);
}
.cursos #plan-estudios .bg-image {
  min-height: 250px;
}
.cursos #plan-estudios .page-content {
  column-count: auto;
  margin-top: 0;
}
.cursos #info-programa {
  column-count: 2;
  margin-top: 60px !important;
}
.cursos #info-programa h6 {
  margin-top: -50px !important;
}
#plan-estudios ul li {
  padding-right: 3rem;
  text-indent: 3px;
  margin-bottom: 6px;
}
@media (max-width: 1200px) {
  .cursos #plan-estudios .bg-image .bg-black {
    width: 90% !important;
    max-width: none;
    margin: 200px auto -30px !important;
  }
  .cursos #plan-estudios .page-content {
    margin: 30px auto;
    width: 90% !important;
  }
}
@media (max-width: 991px) {
  #plan-estudios {
    column-count: 2;
  }
  .cursos #plan-estudios .page-content {
    display: block !important;
  }
  .cursos #plan-estudios .page-content .w-50 {
    width: 100% !important;
  }
  .cursos #plan-estudios {
    background: linear-gradient(180deg, black, 65%, white 50%);
  }
}
@media (max-width: 768px) {
  #plan-estudios {
    column-count: 1;
  }
  #plan-estudios .bg-image .bg-black {
    margin-left: auto;
    margin-right: auto;
  }
}

.btn {
  font-family: "Karla", sans-serif;
  letter-spacing: -1.12px;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  text-decoration: none;
  padding: 0 30px;
  white-space: break-spaces;
}
.btn--lila {
  color: #ffffff;
  background-color: var(--lila);
}
.btn--lila:hover,
.btn--lila:focus {
  color: #fff !important;
  background-color: var(--lila--shine);
  text-decoration: none !important;
}
.btn--orange {
  color: #ffffff;
  background-color: var(--orange);
}
.btn--orange:hover {
  color: #fff !important;
  background-color: var(--orange--shine);
  text-decoration: none !important;
}
.btn--success {
  color: #ffffff;
  background-color: var(--success);
}
.btn--success:hover {
  color: #fff !important;
  background-color: var(--success--shine);
  text-decoration: none !important;
}
.btn--warning {
  color: #ffffff;
  background-color: var(--warning);
}
.btn--warning:hover {
  color: #fff !important;
  background-color: var(--warning--shine);
  text-decoration: none !important;
}
.btn--hover-shine {
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn--hover-shine:before {
  content: "";
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: none;
  transition: none;
}
.btn--hover-shine:hover:before {
  width: 120%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-title {
  font-size: 16px;
  line-height: 1.4;
  color: var(--gris--oscuro);
  font-weight: 400;
  text-align: center;
}
.btn-center,
.btn-center:visited {
  text-align: center;
  display: flex;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 25px;
  width: fit-content;
}
@media (max-width: 768px) {
  .btn-center,
  .btn-center:visited {
    font-size: 16px;
    width: -webkit-fill-available;
  }
}

div#admision-citius {
  display: flex;
  justify-content: space-around;
}
.admision-item {
  width: 90%;
  /* border: 1px solid #e0e0e0; */
  text-align: center;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  /* box-shadow: 1px 1px 8px #0000001c; */
  align-items: flex-start;
}

.admision-item div.texto-admin {
  order: 2;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
  min-height: auto;
  padding: 0 15px;
  text-align: left;
}
.icono-admin {
  /* background: linear-gradient(to left, var(--lila), #58d3bb); */
  color: var(--lila);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 4em;
  min-width: 55px;
  min-height: 55px;
  /* align-self: center !important; */
  /* margin-left: -30px; */
  opacity: 0.7;
}

@media (max-width: 800px) {
  div#admision-citius {
    flex-direction: column;
  }
}

/* Precio */
.cursiva {
  font-style: italic;
  font-size: 13px;
  line-height: 1.2;
}
#opcional::before {
  content: "!";
  color: black;
  font-weight: bold;
  font-size: 20px;
}

#precio .metodologia_item img {
  width: 80px;
}
#precio .metodologia_item div.icono-met {
  min-width: 80px;
}

.becas-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}

.becas-item:nth-child(1) {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

.becas-item:nth-child(2) {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

.becas-item:nth-child(3) {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

.becas-item {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  text-align: center;
  width: 50%;
}
.becas-item h6.h6_parrafo {
  font-size: 23px;
}
/*** Cambios OPEN Becas ***/

.becas-info {
  border: 4px solid var(--lila);
  margin: 30px auto;
  width: 90%;
  padding: 3%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}
/*new*/
.becas-left-info .h6_parrafo {
  display: inline-block;
  margin-right: 20px;
  text-transform: none;
  color: black;
  font-size: 24px;
  margin-bottom: 0 !important;
}

.becas-left-info {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  width: 80%;
  padding-right: 40px;
}

.becas-info span {
  font-weight: bold;
  font-size: 1.5em;
  color: var(--lila);
}

.becas-left-info p {
  margin-bottom: 0;
}
/*new*/
/*** Cambios OPEN Becas ***/

.becas-item a.btn-center {
  margin-top: 15px;
}

/* Tabla descuentos corporativos */
#tabla-descuentos {
  width: 80%;
  margin: auto;
}
.Rtable-cell.Rtable-cell--head.matricula_descuento {
  background: var(--lila);
  color: white;
  font-size: 18px;
}
.Rtable-cell.is-striped-22 {
  background: rgba(206, 206, 206, 0.34901960784313724);
}
.Rtable-cell.is-striped-23 {
  background: rgba(206, 206, 206, 0.16862745098039217);
}

#empresas img {
  margin: auto;
  width: 80%;
  display: block;
}

/* Titulacion */
.caja-acreditaciones {
  border: 2px solid var(--lila);
  border-radius: 10px;
}
.caja-acreditaciones img {
  width: 20%;
  margin-right: 20px;
}
.titulo-imagen {
  box-shadow: 1px 1px 8px 0px #676767;
  width: 83%;
  max-width: 450px;
  min-width: 210px;
  margin-top: 10px;
  margin-bottom: 20px;
}
img.titulo-imagen.superior {
  margin-top: 25px;
  margin-bottom: 0;
}
.titulo-iebs-2 {
  width: 45%;
  padding: 0 2.5%;
  float: left;
  text-align: center;
}
.titulo-iebs-2 p {
  line-height: 1.4;
}

.superindice {
  vertical-align: super; /*superindice*/
  font-size: 12px;
}
.titulaciones-urjc {
  border: 4px solid var(--lila);
  padding: 30px;
}
.titulaciones-urjc h6 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 20px;
}
.titulaciones-urjc li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: left;
  align-content: center;
  align-items: center;
  margin: 25px 0;
  width: 100%;
  padding-left: 0;
}
.titulaciones-urjc li p {
  order: 1;
  flex: 0 1 auto;
  align-self: stretch;
  min-width: 0;
  min-height: auto;
  width: 69%;
}
.titulaciones-urjc ul li::before {
  content: none !important;
}
.titulaciones-urjc ul li p::before {
  content: "â€¢ " !important;
  color: black;
  margin-right: 5px;
  font-weight: 900;
}
/*
.titulaciones-urjc img {
    order: 2;
    flex: 1 1 auto;
    align-self: stretch;
    max-width: 108px;
    height: 50px;
    margin: 5px 0 -15px 20px;
}*/
#letra-pequena {
  margin-top: 15px;
  margin-left: 20px;
}
#letra-pequena p {
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 500px) {
  .titulo-imagen {
    width: 100%;
  }
}

/* Contraportada */
footer {
  display: none;
}
@media (max-width: 1200px) {
  #contra-portada .page-content.bg-white.w-100 .w-60.bg-lila {
    width: fit-content !important;
  }
  #contra-portada .page-content.bg-white.w-100 .w-40 {
    width: auto !important;
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  #contra-portada .page-content.bg-white.w-100 {
    flex-direction: column !important;
  }
  #contra-portada .page-content.bg-white.w-100 .w-60.bg-lila,
  #contra-portada .page-content.bg-white.w-100 .w-40 {
    width: 100% !important;
    margin: auto;
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .card.card--programa-bordered {
    width: 90%;
  }
}
@media (max-width: 500px) {
  section#contra-portada .d-flex {
    display: block !important;
    text-align: center;
  }
  section#contra-portada #digitalent .bg-black.h-100.ml-5.mr-4 {
    display: none;
  }
  img#logo-digitalent {
    display: block;
    margin: 0 auto 20px;
  }
}

/**** MODAL ****/
.modal-header {
  padding: 15px;
  background-color: var(--lila);
  color: black;
  text-align: center;
}
.modal-title {
  font-weight: 600;
  font-size: 25px;
  text-align: center;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-header .close {
  margin-top: -11px;
  color: white;
  font-size: 1.8em;
  text-shadow: none;
  opacity: 0.4;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-group {
  padding: 10px;
}
.modal-body p {
  padding: 0 10px;
  margin: 8px 0;
}
.modal-footer {
  border-top: 0;
  padding-top: 0;
}
input#shorturl {
  text-align: center;
  font-size: 18px;
  padding: 20px;
  margin: 20px 10px;
  width: 97%;
}
.text-danger {
  font-size: 14px !important;
  line-height: 2.5em !important;
  font-weight: 600 !important;
}
.has-error input#nombre_de {
  background-color: #ffeede !important;
  border: 1px solid #fb7f00 !important;
}
.message-form-amigo.text-center b {
  text-align: center;
  border: 1px solid #22b922;
  background: #dbf7db;
  border-radius: 5px;
  padding: 8px;
  display: block;
  width: 93.3%;
  margin: auto;
  color: #22b922;
}
h6,
.h2_parrafo,
#plan-estudios h6 {
  font-family: "Work Sans", sans-serif;
  letter-spacing: -1px;
}

@media (max-width: 1550px) {
  h2 {
    font-size: 40px;
    margin-bottom: 0;
  }
  h6,
  .h2_parrafo,
  #plan-estudios h6 {
    font-size: 1.5em;
    margin-top: 30px;
  }
  .titulaciones-urjc {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .ranking-item {
    flex: 0 33%;
  }
  h1 {
    font-size: 3.5em;
  }
}

@media (max-width: 997px) {
  h2 {
    font-size: 30px;
  }
  h6,
  .h2_parrafo,
  #plan-estudios h6 {
    font-size: 1.2em;
  }
  #indice li,
  .h6_parrafo {
    font-size: 1.2em;
  }
  #listado-programa li span {
    font-size: 1em;
  }
  #listado-programa li {
    width: 50%;
  }
  #listado-programa {
    width: 90%;
  }
  .metodologia_item div.icono-met {
    min-width: 72px;
  }
  .titulo-iebs-2 {
    width: 100%;
    float: none;
    padding: 0;
  }
  .titulo-iebs-2 p {
    margin-top: 35px;
  }

  /*** Cambios OPEN Becas ***/

  .becas-info {
    flex-direction: column;
    text-align: center;
  }
  /*new*/
  .becas-left-info .h6_parrafo {
    display: block;
    margin-right: 0px;
    font-size: 19px;
    margin-bottom: 5px !important;
  }

  .becas-left-info {
    width: 100%;
  }

  .becas-info span {
    font-size: 20px;
  }

  .becas-left-info p {
    margin-top: 8px;
  }
  /*new*/
  /*** Cambios OPEN Becas ***/
}

@media (max-width: 768px) {
  section {
    margin: 2% 4%;
  }
  #portada .bg-image {
    background-image: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.8)
      ),
      url(./img/portada.jpg);
    justify-content: space-between !important;
  }
  #portada .page-content.bg-black {
    background-color: transparent !important;
  }
  #portada .page-content.bg-white {
    width: 100% !important;
    text-align: center;
  }

  #barra-inferior {
    background: none;
    height: 100%;
    position: fixed;
    right: 0;
    width: 0;
    top: 0;
    bottom: 0;
    border-top: 1px solid #b1b1b1;
    padding: 12px;
    z-index: 999;
  }
  #paginacion {
    display: none;
  }
  label#share-icon {
    display: block;
    margin: auto;
    position: fixed;
    bottom: 131px;
    right: 15px;
    text-align: center;
    box-sizing: border-box;
    font-size: 24px;
    z-index: 99;
    line-height: 21px;
    background: #f7f7f7;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-weight: 400;
    box-shadow: 1px 1px 1px 0px #797979;
  }
  label#print-button {
    display: none;
  }
  .menuShare {
    top: 15px;
  }
  label#go-indice {
    right: 15px;
  }
  #a-indice {
    bottom: 75px;
    font-size: 24px;
    z-index: 99;
    margin: auto;
    position: fixed;
    right: 12px;
    text-align: center;
    box-sizing: border-box;
    line-height: 21px;
    background: #f7f7f7;
    border-radius: 100%;
    width: 43px;
    height: 43px;
    font-weight: 400;
    box-shadow: 1px 1px 1px 0px #797979;
    display: block;
    text-align: center;
    padding: 13px 0;
    display: none;
  }
  a#a-indice i.fa.fa-bars.text-white {
    color: #2c2f32 !important;
  }
  .menu-item.whatsapp_share_btn i {
    font-size: 23px;
    margin-top: 10px;
  }
  #barra-inferior p {
    margin-left: 10px;
    margin-top: 0;
    display: none;
  }
  a.menu-item.whatsapp_share_btn {
    bottom: 21px;
    width: 43px;
    height: 43px;
    right: 11px;
  }
  i.fa.fa-list {
    color: rgb(50, 54, 57);
    margin-top: 12px;
    display: block;
  }

  i.fa.fa-arrow-up {
    display: block;
    color: #323639;
    font-size: 22px;
    margin-top: 10px;
    margin-left: 2px;
  }
  .menu-open-button a,
  .menu-item a,
  .menu-item i {
    color: rgb(50, 54, 57);
    margin-top: 12px;
    margin-left: 1px;
    font-size: 20px;
  }
  label.menu-item,
  label#download-button {
    right: 14px;
    bottom: 127px;
    position: absolute;
    top: auto;
    width: 42px;
    height: 42px;
    display: none;
  }
  a#a-indice-up {
    bottom: 75px;
    font-size: 24px;
    z-index: 99;
    margin: auto;
    position: fixed;
    right: 12px;
    text-align: center;
    box-sizing: border-box;
    line-height: 21px;
    background: #f7f7f7;
    border-radius: 100%;
    width: 43px;
    height: 43px;
    font-weight: 400;
    box-shadow: 1px 1px 1px 0px #797979;
    text-decoration: none !important;
  }
  .menu-item:nth-child(3) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
  }

  .menu-item:nth-child(4) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
  }

  .menu-item:nth-child(5) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
  }

  .menu-item:nth-child(6) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
  }

  .menu-open-button {
    z-index: 2;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    cursor: pointer;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  }

  .menu-open-button:hover {
    -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
    transform: scale(1.2, 1.2) translate3d(0, 0, 0);
  }

  .menu-open:checked + .menu-open-button {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    /*-webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
    transform: scale(0.8, 0.8) translate3d(0, 0, 0);*/
  }

  .menu-open:checked ~ .menu-item {
    -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
    transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  }

  .menu-open:checked ~ .menu-item:nth-child(3) {
    transition-duration: 180ms;
    -webkit-transition-duration: 180ms;
    -webkit-transform: translate3d(0.08361px, -145.99997px, 0);
    transform: translate3d(0.08361px, -145.99997px, 0);
  }

  .menu-open:checked ~ .menu-item:nth-child(4) {
    transition-duration: 280ms;
    -webkit-transition-duration: 280ms;
    -webkit-transform: translate3d(0.08361px, -96.99997px, 0);
    transform: translate3d(0.08361px, -96.99997px, 0);
  }

  .menu-open:checked ~ .menu-item:nth-child(5) {
    transition-duration: 380ms;
    -webkit-transition-duration: 380ms;
    -webkit-transform: translate3d(0.08361px, -48.99997px, 0);
    transform: translate3d(0.08361px, -48.99997px, 0);
  }
  i.fa.fa-download.share-icon {
    margin-top: -4px;
    margin-left: 2px;
  }
  #buttons-barra {
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 6px 20px;
  }
  .menu-open:checked ~ .menu-item:nth-child(5),
  label#go-indice {
    display: block;
  }
  .menu-item,
  .menu-open-button {
    width: 50px;
    min-width: 40px;
    height: 50px;
    font-size: 25px;
    background: #f7f7f7;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-weight: 400;
    box-shadow: 1px 1px 1px 0px #797979;
  }
  #a-indice p {
    display: none;
  }
  .share-icon {
    line-height: 53px !important;
  }
  i.fa.fa-link {
    line-height: 53px !important;
  }
  .menuShare a.menu-item .fa {
    line-height: 48px;
  }
  img#opiniones_desktop,
  img#comunidad {
    display: none;
  }
  img#opiniones_mobile,
  img#comunidad-mobile {
    display: block;
  }
  .Rtable-cell {
    padding: 0.8em 0.5em;
    font-size: 14px;
    line-height: 1.5;
  }
  .btn-center,
  .btn-center:visited {
    font-size: 16px;
    width: 80%;
  }
  .becas-container {
    display: block;
  }
  .becas-item {
    width: 100%;
  }
  .becas-item a.btn-center {
    width: 50%;
  }
  .ranking-item {
    flex: 0 100%;
    padding: 5px 0 0 0;
  }
  .ranking-item p {
    margin-top: 5px;
  }
  .ranking-item span {
    font-size: 1em;
  }
  #empresas img {
    width: 100%;
  }
  h1 span {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  #tabla-descuentos {
    width: 100%;
    display: flex;
  }
  #tabla-descuentos.Rtable--collapse > .Rtable-cell {
    width: 50% !important;
  }
  .Rtable-cell.Rtable-cell--head.matricula_descuento {
    font-size: 14px;
    line-height: 1.25;
  }
  .titulaciones-urjc {
    padding: 30px 20px;
  }
  .titulaciones-urjc li {
    display: block;
  }
  .titulaciones-urjc li p {
    width: 100%;
    margin-bottom: 10px;
  }
  .titulaciones-urjc img {
    margin-bottom: 5px;
  }
  #contra-portada p {
    font-size: 15px;
    line-height: 1em;
  }
  #contra-portada a {
    color: var(--orange) !important;
  }
  #top-contra h1 {
    font-size: 28px;
  }
  #top-contra span,
  h1 span {
    font-size: 19px;
  }
}

@media (max-width: 425px) {
  h2 {
    font-size: 1.5em;
  }
  #indice li,
  .h6_parrafo {
    font-size: 1em;
  }
  #listado-programa li img {
    width: 50px;
  }
  #listado-programa li span {
    font-size: 0.85em;
  }
  #listado-programa li span {
    font-size: 0.85em;
    margin: 8px 0 0 0;
  }
  #listado-programa li p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  /** CABECERA **/
  #portada {
    padding: 0;
  }
  #top-portada {
    padding: 4%;
  }
  h1 {
    font-size: 1.4em;
    margin: 0;
  }
}
#paginacion i {
  cursor: pointer;
}

.opciones-pago-flex {
  display: flex;
  flex-direction: row;
}
.opcion-pago {
  width: 43%;
  display: flex;
  border: 4px solid var(--lila);
  padding: 0 20px;
  margin: 10px 1%;
  text-align: center;
  flex-direction: column;
}
.opcion-pago span.opcion {
  font-weight: 800;
  color: var(--lila);
  font-size: 1.2em;
  margin: 10px 0 -15px !important;
  display: block;
}
.opcion-pago p strong {
  padding: 0 5px;
  display: block;
  font-size: 19px;
}
span.dto {
  color: red;
  padding-left: 10px;
}
span.sin-dto {
  display: block;
  margin: 10px 0 2px;
}
span.sin-dto:before {
  content: "";
  width: 60px;
  height: 2px;
  background: red;
  position: absolute;
  margin-top: 14px;
  transform: rotate(-20deg);
}
span.dto {
  color: red;
}
div.btn-pago {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.btn-pago a.btn-center {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .opciones-pago-flex {
    flex-direction: column;
  }
  .opcion-pago {
    width: 90%;
    margin: 10px auto;
  }
}

/* Modalidades pago */
.modalidad-pago-citius h6.h6_parrafo {
  font-weight: 800 !important;
  text-decoration: underline;
  font-size: 1.2em;
}
div#planes2 {
  display: flex;
  justify-content: center;
}
#planes2 .plan {
  border: 2px solid var(--lila);
  text-align: center;
  max-width: 300px;
  width: 100% !important;
  display: inline-block;
  margin: 10px 15px 20px;
  padding: 0;
}
#planes2 .plan h5 {
  background: var(--lila);
  color: white;
  font-size: 1.5em;
  font-weight: 800;
  padding: 10px;
  margin: 0;
}
#planes2 .plan p {
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}
#planes2 .plan span {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
  font-weight: 700;
  border: 0;
}
@media (max-width: 768px) {
  div#planes2 {
    display: block;
    margin: auto;
    width: fit-content;
  }
}

/* Analisis 360 */
.cta-360 {
  display: flex;
  border: 2px solid #00b502;
  padding: 0 20px;
  margin: 50px 30px;
  font-weight: 300;
}
.cta-360 p {
  margin-right: 40px;
}
.cta-360 a.btn-center {
  background: #00b502;
  max-width: 200px;
}
@media (max-width: 1100px) {
  .cta-360 {
    display: block;
  }
}

img.empresa-citius {
  max-width: 250px;
}
div#top-contra button.btn-center {
  background: black;
  outline: none;
  border-color: black;
  box-shadow: none;
  cursor: pointer;
}

/* Empleo */
section#empleo {
  background: url(./img/bolsa.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* section#empleo .page-content.bg-lila {
  min-height: 600px;
} */
#empleo img {
  width: 23%;
  padding: 10px 20px;
  max-width: 200px;
  min-width: 120px;
}
@media (max-width: 500px) {
  div#empleo {
    display: block !important;
  }
}

/* Non stop learning */
section#nonstoplearning i {
  font-size: 2rem;
}
.caja-nonstoplearning img {
  max-width: 80px;
}

/* Salidas laborales */
#salidaslaborales {
  background: linear-gradient(90deg, var(--lila) 22%, white 0);
}
#salidaslaborales .image-rounded {
  border-radius: 50%;
  border: 5px solid white;
  overflow: hidden;
  max-width: 450px;
  max-height: 450px;
  margin: auto;
}
section#salidaslaborales ul {
  /* column-count: 2; */
  margin-top: 20px;
  /*max-width: 400px;*/
}
section#salidaslaborales ul li {
  border: 2px solid var(--lila);
  border-radius: 10px;
  padding: 10px 3rem 10px 4rem;
  overflow: hidden;
  max-width: 500px;
}
section#salidaslaborales ul li:before {
  content: "\f183";
  font: normal normal normal 20px/1 FontAwesome;
  background: var(--lila);
  color: white;
  margin-top: 0;
  margin-left: -59px;
  margin-right: 12px;
  padding: 100px 20px;
  width: fit-content;
}
@media (max-width: 1200px) {
  section#salidaslaborales ul {
    column-count: 1;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  #salidaslaborales {
    background: linear-gradient(180deg, var(--lila) 22%, white 0);
  }
  #salidaslaborales .w-40 {
    width: 80% !important;
    margin-bottom: 30px;
  }
  #salidaslaborales .w-60 {
    width: 100% !important;
    padding-left: 0 !important;
  }
}

/* Comunidad */
#comunidad .w-60 {
  background: url(./img/bg-eventos.png);
  background-size: cover;
  background-position: center;
  border-left: 13px solid white;
  border-right: 13px solid white;
}
p.item-services {
  text-align: center;
  width: 40%;
  margin: 20px 5%;
}
p.item-services i {
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  /* section#comunidad {
    padding-bottom: 400px;
  } */
  section#comunidad .page-content--left {
    padding-left: 3rem !important;
  }
  h2.titulo-seccion span {
    margin-left: 0;
  }
  section#comunidad .w-40 {
    width: 100%;
    /* margin-bottom: 20px; */
  }
  section#comunidad .w-60 {
    width: 100%;
    height: 500px;
    margin: 0 !important;
    border-left: 0;
    border-right: 0;
    border-top: 13px solid white;
    border-bottom: 13px solid white;
  }
}

/* Inscripción */
#precio-pago i {
  font-size: 3rem;
}
#precio-pago ul li:before,
#comunidad ul li:before {
  color: #1d1f20;
}
/*.cursos #precio-pago {
    justify-content: space-around;
    background: linear-gradient(0deg,var(--lila--claro), 50%, var(--lila) 50%);
}*/
section#inscripcion .bg-image {
  background: url(./img/bg-inscripcion-quantum.jpeg) no-repeat;
  background-size: cover;
  background-position: left;
}
.cursos section#inscripcion .bg-gris-claro.p-5.w-100.text-center {
  display: none;
}
@media (max-width: 1200px) {
  section#inscripcion {
    flex-direction: column;
  }
  section#inscripcion .w-60 {
    width: 100%;
  }
  section#inscripcion .w-40 {
    display: none;
  }
  section#inscripcion .page-content.w-70 {
    width: 100%;
  }
  div#precio-pago {
    width: 100%;
    flex-direction: row !important;
  }
  div#precio-pago .page-content {
    width: 50% !important;
    justify-content: flex-start !important;
  }
}
@media (max-width: 768px) {
  div#precio-pago {
    flex-direction: column !important;
  }
  div#precio-pago .page-content {
    width: 100% !important;
  }
}

/* Sedes */
.item-sede span {
  font-weight: 900;
  font-size: 2.6em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 7px 6px 0px var(--gris--primary);
  font-family: "Work Sans", sans-serif;
}
@media (max-width: 1200px) {
  section#sedes .page-content.bg-black.w-30,
  section#sedes .w-70.page-content {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .item-sede span {
    font-size: 2em;
  }
}
@media (max-width: 768px) {
  .item-sede {
    width: 100%;
    flex-direction: row !important;
    align-items: center;
  }
  .item-sede span {
    margin-top: 0;
  }
  .item-sede .text-center {
    margin-right: 20px;
  }
}
@media (max-width: 650px) {
  .item-sede {
    flex-direction: column !important;
    text-align: center;
  }
  .item-sede img {
    max-width: 300px;
  }
  .item-sede .text-center {
    margin-right: 0px;
  }
}

.card.card--programa-bordered a .card-header.card-header--icon {
  background: none;
  border: 0;
  padding: 0;
}
.card-header.card-header--icon i {
  border-radius: 50%;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -25px auto 0;
}
.card.card--programa-bordered {
  border: 3px solid var(--lila);
  margin: 30px 10px 20px;
  min-height: 156px;
}
.card.card--programa-bordered a,
.card.card--programa-bordered a .card-body {
  cursor: pointer;
}
.card.card--programa-bordered a:hover {
  text-decoration: none;
}

/*** Portada ***/
section#portada,
section#contra-portada {
  background: linear-gradient(0deg, rgba(43, 8, 61, 0.7), rgba(43, 8, 61, 0.7)),
    url(./img/bg-23.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#portada img.logo {
  width: 30%;
  max-width: 150px;
  min-width: 100px;
}
body#programa-ucav #portada img.logo,
body#programa-ucam #portada img.logo {
  width: 40%;
  max-width: 300px;
  min-width: 200px;
}
/* img portada*/
#portada .bg-image {
  width: 35%;
  background-image: url(./img/bg-portada-23.jpeg);
  min-height: 700px;
}
.marketing-1 #portada .bg-image,
.marketing-digital-1 #portada .bg-image,
.internet-marketing-1 #portada .bg-image {
  background-image: url(./img/bg-marketing-1.jpg?2);
}
.marketing-2 #portada .bg-image,
.marketing-digital-2 #portada .bg-image,
.internet-marketing-2 #portada .bg-image {
  background-image: url(./img/bg-marketing-2.jpg?2);
}
.marketing-3 #portada .bg-image,
.marketing-digital-3 #portada .bg-image,
.internet-marketing-3 #portada .bg-image {
  background-image: url(./img/bg-marketing-3.jpg?2);
}
.marketing-4 #portada .bg-image,
.marketing-digital-4 #portada .bg-image,
.internet-marketing-4 #portada .bg-image {
  background-image: url(./img/bg-marketing-4.jpg?2);
}
.marketing-5 #portada .bg-image,
.marketing-digital-5 #portada .bg-image,
.internet-marketing-5 #portada .bg-image {
  background-image: url(./img/bg-marketing-5.jpg?2);
}
.marketing-6 #portada .bg-image,
.marketing-digital-6 #portada .bg-image,
.internet-marketing-6 #portada .bg-image {
  background-image: url(./img/bg-marketing-6.jpg?2);
}
.marketing-7 #portada .bg-image,
.marketing-digital-7 #portada .bg-image,
.internet-marketing-7 #portada .bg-image {
  background-image: url(./img/bg-marketing-4.jpg?2);
}
.marketing-8 #portada .bg-image,
.marketing-digital-8 #portada .bg-image,
.internet-marketing-8 #portada .bg-image {
  background-image: url(./img/bg-marketing-5.jpg?2);
}
.marketing-9 #portada .bg-image,
.marketing-digital-9 #portada .bg-image,
.internet-marketing-9 #portada .bg-image {
  background-image: url(./img/bg-marketing-6.jpg?2);
}
.marketing-10 #portada .bg-image,
.marketing-digital-10 #portada .bg-image,
.internet-marketing-10 #portada .bg-image {
  background-image: url(./img/bg-marketing-1.jpg?2);
}
.emprendedores-1 #portada .bg-image,
.mba-emprendedores-1 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-1.jpg);
}
.emprendedores-2 #portada .bg-image,
.mba-emprendedores-2 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-2.jpg?2);
}
.emprendedores-3 #portada .bg-image,
.mba-emprendedores-3 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-3.jpg?2);
}
.emprendedores-4 #portada .bg-image,
.mba-emprendedores-4 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-4.jpg?2);
}
.emprendedores-5 #portada .bg-image,
.mba-emprendedores-5 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-5.jpg?2);
}
.emprendedores-6 #portada .bg-image,
.mba-emprendedores-6 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-6.jpg?2);
}
.emprendedores-7 #portada .bg-image,
.mba-emprendedores-7 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-7.jpg?2);
}
.emprendedores-8 #portada .bg-image,
.mba-emprendedores-8 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-8.jpg);
}
.emprendedores-9 #portada .bg-image,
.mba-emprendedores-9 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-9.jpg?2);
}
.emprendedores-10 #portada .bg-image,
.mba-emprendedores-10 #portada .bg-image {
  background-image: url(./img/bg-emprendedores-10.jpg?2);
}
.business-tech-1 #portada .bg-image {
  background-image: url(./img/bg-businesstech-1.jpg);
}
.business-tech-2 #portada .bg-image {
  background-image: url(./img/bg-businesstech-2.jpg);
}
.business-tech-3 #portada .bg-image {
  background-image: url(./img/bg-businesstech-3.jpg);
}
.business-tech-4 #portada .bg-image {
  background-image: url(./img/bg-businesstech-4.jpg?2);
}
.business-tech-5 #portada .bg-image {
  background-image: url(./img/bg-businesstech-5.jpg?2);
}
.business-tech-6 #portada .bg-image {
  background-image: url(./img/bg-businesstech-6.jpg?2);
}
.business-tech-7 #portada .bg-image {
  background-image: url(./img/bg-businesstech-7.jpg);
}
.business-tech-8 #portada .bg-image {
  background-image: url(./img/bg-businesstech-8.jpg?2);
}
.business-tech-9 #portada .bg-image {
  background-image: url(./img/bg-businesstech-9.jpg?2);
}
.business-tech-10 #portada .bg-image {
  background-image: url(./img/bg-businesstech-10.jpg?2);
}
.social-media-1 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-1.jpg);
}
.social-media-2 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-2.jpg);
}
.social-media-3 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-3.jpg);
}
.social-media-4 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-4.jpg);
}
.social-media-5 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-5.jpg);
}
.social-media-6 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-6.jpg);
  background-position: top center;
}
.social-media-7 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-7.jpg);
  background-position: top center;
}
.social-media-8 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-8.jpg);
  background-position: top center;
}
.social-media-9 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-9.jpg);
  background-position: top center;
}
.social-media-10 #portada .bg-image {
  background-image: url(./img/bg-socialmedia-10.jpg);
  background-position: top center;
}
.recursos-humanos-1 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-1.jpg);
}
.recursos-humanos-2 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-2.jpg?2);
}
.recursos-humanos-3 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-3.jpg);
}
.recursos-humanos-4 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-4.jpg);
}
.recursos-humanos-5 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-5.jpg);
}
.recursos-humanos-6 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-6.jpg);
}
.recursos-humanos-7 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-7.jpg?2);
}
.recursos-humanos-8 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-8.jpg?2);
}
.recursos-humanos-9 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-9.jpg);
}
.recursos-humanos-10 #portada .bg-image {
  background-image: url(./img/bg-recursoshumanos-10.jpg);
}
.fintech-blockchain-1 #portada .bg-image,
.fintech-1 #portada .bg-image {
  background-image: url(./img/bg-fintech-1.jpg?2);
}
.fintech-blockchain-2 #portada .bg-image,
.fintech-2 #portada .bg-image {
  background-image: url(./img/bg-fintech-2.jpg?2);
}
.fintech-blockchain-3 #portada .bg-image,
.fintech-3 #portada .bg-image {
  background-image: url(./img/bg-fintech-3.jpg);
}
.fintech-blockchain-4 #portada .bg-image,
.fintech-4 #portada .bg-image {
  background-image: url(./img/bg-fintech-4.jpg);
}
.fintech-blockchain-5 #portada .bg-image,
.fintech-5 #portada .bg-image {
  background-image: url(./img/bg-fintech-5.jpg);
}
.fintech-blockchain-6 #portada .bg-image,
.fintech-6 #portada .bg-image {
  background-image: url(./img/bg-fintech-6.jpg);
}
.fintech-blockchain-7 #portada .bg-image,
.fintech-7 #portada .bg-image {
  background-image: url(./img/bg-fintech-7.jpg?2);
}
.fintech-blockchain-8 #portada .bg-image,
.fintech-8 #portada .bg-image {
  background-image: url(./img/bg-fintech-8.jpg?2);
}
.fintech-blockchain-9 #portada .bg-image,
.fintech-9 #portada .bg-image {
  background-image: url(./img/bg-fintech-1.jpg?2);
}
.fintech-blockchain-10 #portada .bg-image,
.fintech-10 #portada .bg-image {
  background-image: url(./img/bg-fintech-6.jpg?2);
}
.big-data-ia-1 #portada .bg-image {
  background-image: url(./img/bg-bigdata-1.jpg);
}
.big-data-ia-2 #portada .bg-image {
  background-image: url(./img/bg-bigdata-2.jpg?2);
}
.big-data-ia-3 #portada .bg-image {
  background-image: url(./img/bg-bigdata-3.jpg?2);
}
.big-data-ia-4 #portada .bg-image {
  background-image: url(./img/bg-bigdata-4.jpg?2);
}
.big-data-ia-5 #portada .bg-image {
  background-image: url(./img/bg-bigdata-5.jpg?2);
}
.big-data-ia-6 #portada .bg-image {
  background-image: url(./img/bg-bigdata-6.jpg?2);
}
.big-data-ia-7 #portada .bg-image {
  background-image: url(./img/bg-bigdata-7.jpg?2);
}
.big-data-ia-8 #portada .bg-image {
  background-image: url(./img/bg-bigdata-8.jpg?2);
}
.big-data-ia-9 #portada .bg-image {
  background-image: url(./img/bg-bigdata-9.jpg);
}
.big-data-ia-10 #portada .bg-image {
  background-image: url(./img/bg-bigdata-10.jpg?2);
}
/* Fin img portada */
.franja-logos-ranking div {
  width: 12%;
  min-width: 160px;
}
.franja-logos-ranking img {
  filter: grayscale(1);
  width: 100%;
  margin: auto;
  display: block;
}
@media (max-width: 991px) {
  section#portada .w-60 {
    width: 100%;
  }
}

/*** Indice ***/
#indice .bg-image {
  background-image: url(./img/bg_matricula_2.webp?2);
}
#indice span.d-none {
  display: none !important;
}
#indice b.text-yellow {
  color: #1d1f20 !important;
  font-weight: 400;
}
#indice b.d-block {
  display: inline-block !important;
}
@media (max-width: 991px) {
  section#indice {
    align-content: flex-start;
  }
}

/*** Proponemos ***/
#proponemos .bg-image {
  background: url(/folletos-html/img/bg_perfil_entrada.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
#proponemos h2,
.listado-proponemos {
  width: 49%;
}
.listado-proponemos img {
  filter: invert(35%) sepia(95%) saturate(7306%) hue-rotate(257deg)
    brightness(40%) contrast(100%);
  width: 90%;
  max-width: 80px;
}
.acuerdos_item {
  width: 25%;
  min-width: 120px;
  height: 70px;
  margin: 5px 10px;
}
@media (max-width: 1200px) {
  #proponemos h2,
  .listado-proponemos {
    width: 100%;
  }
  #proponemos .bg-image {
    background-position: 0 -154px !important;
    min-height: 350px;
    width: 100%;
  }
  #incompany #proponemos .w-60 {
    width: 100%;
  }
  #proponemos .w-80 {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .listado-proponemos {
    display: block !important;
  }
  .listado-proponemos img {
    margin-bottom: 20px;
    padding: 0 !important;
  }
}

/*** Infografia ***/
#infografia p.numero {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
  margin: 0;
  line-height: 1.2;
}
#infografia p.numero span {
  font-size: 2rem;
}
#infografia p.dato {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 10px;
}
div#infografia-1 {
  background: url(/folletos-html/img/bg-infografia-1.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
div#infografia-5 {
  background: url(/folletos-html/img/bg_quienes_somos_4.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
div#infografia-7 {
  background: url(/folletos-html/img/bg-infografia-7.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
div#infografia-10 {
  background: url(/folletos-html/img/bg-infografia-10.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
div#infografia-12 {
  background: url(/folletos-html/img/bg-infografia-12.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  section#infografia .w-25 {
    width: 50% !important;
  }
  div#infografia-1 {
    order: 1;
    min-height: 200px;
  }
  div#infografia-2 {
    order: 2;
    min-height: 200px;
  }
  div#infografia-3 {
    order: 3;
    min-height: 200px;
  }
  div#infografia-4 {
    order: 4;
    min-height: 200px;
  }
  div#infografia-5 {
    order: 6;
    min-height: 200px;
  }
  div#infografia-6 {
    order: 5;
    min-height: 200px;
  }
  div#infografia-7 {
    order: 7;
    min-height: 200px;
  }
  div#infografia-8 {
    order: 8;
    min-height: 200px;
  }
  div#infografia-9 {
    order: 9;
    min-height: 200px;
  }
  div#infografia-10 {
    order: 10;
    min-height: 200px;
  }
  div#infografia-11 {
    order: 11;
    min-height: 200px;
  }
  section#infografia #infografia-12 {
    order: 13;
    width: 100% !important;
    min-height: 200px;
  }
  div#infografia-13 {
    order: 12;
    min-height: 200px;
  }
}
@media (max-width: 768px) {
  #infografia p.numero {
    font-size: 2.3rem;
  }
  #infografia p.numero span {
    font-size: 1.5rem;
  }
  #infografia p.dato {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  section#infografia .w-25,
  section#infografia .w-50 {
    width: 100% !important;
  }
  #infografia-2 h2 {
    text-align: center;
  }
  div#infografia-1 {
    order: 1;
  }
  div#infografia-2 {
    order: 2;
  }
  div#infografia-3 {
    order: 3;
  }
  div#infografia-4 {
    order: 4;
  }
  div#infografia-5 {
    order: 5;
  }
  div#infografia-6 {
    order: 6;
  }
  div#infografia-7 {
    order: 7;
  }
  div#infografia-8 {
    order: 8;
  }
  div#infografia-9 {
    order: 9;
  }
  div#infografia-10 {
    order: 10;
  }
  div#infografia-11 {
    order: 11;
  }
  section#infografia #infografia-12 {
    order: 12;
  }
  div#infografia-13 {
    order: 13;
  }
}

/*** Programa ***/
.franja-logo-universidad img {
  max-width: 100px;
  width: 100%;
}
#resumen {
  background: linear-gradient(0deg, rgba(43, 8, 61, 0.7), rgba(43, 8, 61, 0.7)),
    url(/folletos-html/img/bg-video-campus.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
ul.listado-programa {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}
ul.listado-programa li {
  padding: 10px;
  margin: 0;
  width: 16%;
  min-width: 200px;
  text-indent: 0;
}
ul.listado-programa li:before {
  content: none !important;
}
ul.listado-programa li img {
  display: block;
  margin: 0 auto 15px;
  height: 55px;
}
ul.listado-programa li span {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}
ul.listado-programa li p {
  margin: 0;
}
@media (max-width: 500px) {
  ul.listado-programa {
    display: block;
  }
  ul.listado-programa li {
    width: 100%;
  }
}

/*** Programa 2 ***/
#programa-2 .bg-image {
  background: url(/folletos-html/img/bg-programa-23.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  #programa-2 .bg-image {
    height: 450px;
    width: 100% !important;
    background-position: 0px -130px;
  }
  #programa-2 .page-content.w-70 {
    width: 100% !important;
  }
}

/*** Plan de estudios ***/
#dada .bg-image {
  background: url(/folletos-html/img/bg-dada-23.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
#plan-estudios h3.h2_parrafo {
  display: none !important;
}
#plan-estudios ul {
  break-inside: avoid;
}
section#temario ul li:before,
ul#precio_resto li:before {
  content: "" !important;
  background: url(img/check-lila.png) no-repeat;
  /*background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: -30px;
    margin-top: 3px;*/
  background-position: center 5px !important;
  background-size: contain;
  width: 17px;
  height: 22px;
  margin-left: -30px;
  margin-right: 10px;
  margin-bottom: -3px;
  display: inline-block;
}
section#temario ul {
  padding-left: 25px;
  margin-bottom: 30px;
}
#plan-estudios p {
  margin-bottom: 10px;
}
.module_container {
  break-inside: avoid;
}
/* Partners y colaboradores */
#temario-partners .col-lg-8 {
  display: none;
}
#temario-partners .col-lg-4 {
  flex: 0 0 100%;
  max-width: 100%;
}
#temario-partners .acuerdos_item {
  max-width: 120px;
  background-color: transparent !important;
  mix-blend-mode: multiply;
}
/* Herramientas */
.img-certificacion {
  width: 20%;
  height: 70px;
  max-width: 150px;
  margin: 10px 20px;
  min-width: 100px;
}
/* Level up */
#level-up .bg-image {
  background: url(/folletos-html/img/bg-levelup-23.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  #dada .bg-image {
    width: 100%;
    height: 250px;
  }
  #dada .w-80 {
    width: 100% !important;
  }
}

/*** Claustro de profesores ***/
/* Director */
.item-director {
  /*width: 50%;
    max-width: 800px;*/
  flex: 1;
}
.item-director .aurthor-image {
  width: 40%;
  max-width: 200px;
  height: 200px;
  border-radius: 5px;
  /*    overflow: hidden;*/
}
.item-director .aurthor-image__image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.item-director .profesor-logo_image {
  width: 80px;
  height: 80px;
  max-height: 80px;
  background-color: #fff;
  border-radius: 10%;
  border: 1px solid rgba(0, 0, 0, 0.125);
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: -60px 15px 0 auto;
}
.item-director .aurthor-content {
  padding: 10px 20px;
  width: 60%;
}
.bio-profe {
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.item-director .aurthor-content a {
  font-size: 0.9em;
}
.card.card--profesor a.modal-profe i {
  opacity: 0;
}
.card.card--profesor a.modal-profe:hover i {
  opacity: 1;
  background: rgba(22, 0, 35, 0.4);
  color: var(--gris--secondary);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
@media (max-width: 1200px) {
  .item-director {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .item-director .aurthor-content {
    width: 100%;
  }
  .item-director .aurthor-image {
    max-width: none;
    width: 70%;
  }
  .item-director .aurthor-content a {
    margin: auto;
  }
}
@media (max-width: 500px) {
  .item-director,
  .item-director .aurthor-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .item-director .aurthor-image {
    width: 100%;
  }
}
/* Profesor */
.card.card--profesor.card--profesor-logo {
  flex-direction: column;
  width: 47%;
  max-width: 200px;
  border: 0;
}
.card.card--profesor {
  width: 30%;
  margin: 12px 1%;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
}
.card.card--profesor .modal-profe {
  min-height: 150px;
  height: 100%;
  width: 40%;
  text-decoration: none !important;
}
.card.card--profesor.card--profesor-logo .card__image--profesor {
  width: 100%;
  height: 200px;
}
.card.card--profesor .card__name--profesor {
  padding: 10px 15px;
  width: 60%;
}
.card.card--profesor.card--profesor-logo .card__name--profesor {
  width: 100%;
  padding-top: 35px;
}
.card.card--profesor .card__name--profesor h4,
.item-director h4 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 6px;
  font-weight: 700;
}
.card.card--profesor.card--profesor-logo .profesor-logo_image {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 10%;
  position: absolute;
  top: 165px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  background: #fff;
  background-position: 50%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 500px) {
  .claustro-profesores {
    display: block !important;
  }
  .card.card--profesor.card--profesor-logo {
    display: block;
    width: 100%;
    max-width: none;
  }
}

/*** Precio ***/
#precio-info img {
  width: 70px;
}
ul#precio_resto li {
  text-indent: 0;
}
ul#precio_resto li:last-child {
  margin-bottom: 0;
}
strong#price {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
}
div#precio-info p.cursiva {
  max-width: 350px;
}
@media (max-width: 768px) {
  strong#price {
    font-size: 1.5rem;
  }
}

/*** Admisión y matrícula ***/
#proceso-admision .bg-image {
  background: linear-gradient(
      0deg,
      rgba(67, 21, 103, 0.6),
      rgba(67, 21, 103, 0.6)
    ),
    url(/folletos-html/img/bg-admision-23.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#proceso-admision .item {
  width: 33%;
  padding: 10px;
}
#proceso-admision .item f {
  max-width: 80px;
}
#proceso-admision .item span {
  color: var(--orange--oscuro);
  font-weight: 800;
  font-size: 4rem;
  padding-right: 10px;
}
@media (max-width: 991px) {
  #proceso-admision .bg-lila {
    background: linear-gradient(
        0deg,
        rgba(67, 21, 103, 0.8),
        rgba(67, 21, 103, 0.8)
      ),
      url(/folletos-html/img/bg-admision-23.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #proceso-admision .item {
    width: 100% !important;
  }
  #proceso-admision .item span {
    font-size: 3rem;
  }
}

/*** Titulación ***/
#titulacion .bg-image {
  background: linear-gradient(
      0deg,
      rgba(67, 21, 103, 0.6),
      rgba(67, 21, 103, 0.6)
    ),
    url(/folletos-html/img/bg-titulacion-23.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section#titulacion .franja-logos-ranking div {
  width: 24%;
  padding: 20px !important;
}

/*** Opiniones ***/
section#opiniones {
  background-color: var(--lila--oscuro);
  background-image: url(/folletos-html/img/quote-white-transparent.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 7% 1%;
}
#titulo-opinion {
  position: absolute;
  width: 45%;
  height: 49%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 7%;
}
#opiniones p.cita {
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
}
#opinion-none-1 {
  order: 1;
}
#opinion-none-2 {
  order: 2;
}
#opinion-1 {
  background: url(/assets/static/Gabriel-Llambias.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 3;
}
#opinion-juanjo {
  background: url(/folletos-html/img/juanjo.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 3;
}
#opinion-text-2 {
  order: 4;
}
#opinion-none-3 {
  order: 5;
}
#opinion-none-4 {
  order: 6;
}
#opinion-text-1 {
  order: 7;
}
#opinion-2 {
  background: url(/assets/static/Milagros-Luis-Brito.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 8;
}
#opinion-hector {
  background: url(/folletos-html/img/hectorramirez.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 8;
}
#opinion-3 {
  background: url(/folletos-html/img/AleixManosas.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 9;
}
#opinion-text-4 {
  order: 10;
}
#opinion-5 {
  background: url(/folletos-html/img/OliverSolis.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 11;
}
#opinion-text-6 {
  order: 12;
}
#opinion-text-3 {
  order: 13;
}
#opinion-4 {
  background: url(/assets/static/Kasia-Adamovich.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 14;
}
#opinion-text-5 {
  order: 15;
}
#opinion-6 {
  background: url(/folletos-html/img/JoseAntonioMunoz.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  order: 16;
}
#opiniones img.quote {
  max-width: 50px;
  margin: -45px 0 10px auto;
  width: 50%;
  display: block;
}
@media (max-width: 991px) {
  #titulo-opinion {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 200px;
  }
  #opinion-1,
  #opinion-juanjo {
    order: 1;
  }
  #opinion-text-1,
  #opinion-text-juanjo {
    order: 2;
  }
  #opinion-text-1 img.quote,
  #opinion-text-juanjo img.quote {
    margin: -3px 0 10px -59px;
    position: absolute;
  }
  #opinion-2,
  #opinion-hector {
    order: 3;
  }
  #opinion-2 img.quote {
    margin: -3px -0 0 16%;
    position: absolute;
  }
  #opinion-text-2,
  #opinion-text-hector {
    order: 4;
  }
  #opinion-3 {
    order: 6;
  }
  #opinion-text-3 {
    order: 5;
  }
  #opinion-text-3 img.quote {
    margin: -25px 0 0 18%;
    position: absolute;
  }
  #opinion-4 {
    order: 8;
  }
  #opinion-4 img.quote {
    margin: 0 0 0 -4%;
    position: absolute;
  }
  #opinion-text-4 {
    order: 7;
  }
  #opinion-5 {
    order: 9;
  }
  #opinion-text-5 {
    order: 10;
  }
  #opinion-5 img.quote {
    margin: -3px -0 0 16%;
    position: absolute;
  }
  #opinion-text-5 img.quote {
    margin: -3px 0 10px -59px;
    position: absolute;
  }
  #opinion-6 {
    order: 11;
  }
  #opinion-6 img.quote {
    margin: -3px -0 0 16%;
    position: absolute;
  }
  #opinion-text-6 {
    order: 12;
  }
}
@media (max-width: 850px) {
  section#opiniones .w-25 {
    width: 50% !important;
  }
  #opinion-4 img.quote {
    margin: -3px -0 0 -40px;
  }
  #opinion-2,
  #opinion-hector {
    order: 4;
  }
  #opinion-text-2,
  #opinion-text-hector {
    order: 3;
  }
  #opinion-2 img.quote,
  #opinion-hector img.quote {
    margin: -3px -0 0 -40px;
  }
  #opinion-text-3 {
    order: 6;
  }
  #opinion-3 {
    order: 5;
  }
  #opinion-text-3 img.quote {
    margin: 0 0 0 -60px;
  }
  #opinion-6 {
    order: 12;
  }
  #opinion-text-6 {
    order: 11;
  }
  #opinion-6 img.quote {
    margin: -3px -0 0 -40px;
  }
}
@media (max-width: 500px) {
  section#opiniones .w-25 {
    width: 100% !important;
  }
  #opinion-1,
  #opinion-2,
  #opinion-4,
  #opinion-3,
  #opinion-5,
  #opinion-6,
  #opinion-juanjo,
  #opinion-hector {
    min-height: 250px;
  }
  #opinion-2,
  #opinion-hector {
    order: 3;
  }
  #opinion-text-2,
  #opinion-text-hector {
    order: 4;
  }
  #opinion-4 {
    order: 7;
  }
  #opinion-text-4 {
    order: 8;
  }
  #opinion-6 {
    order: 11;
  }
  #opinion-text-6 {
    order: 12;
  }
  #opiniones img.quote {
    margin: -45px 0 10px auto !important;
  }
  #opiniones #opinion-2 img.quote,
  #opiniones #opinion-hector img.quote,
  #opiniones #opinion-4 img.quote,
  #opiniones #opinion-6 img.quote {
    margin: 207px 0 10px auto !important;
  }
}

/** Alumni experience **/
section#alumni-experience .bg-image:has(#lanzadera) {
  background: linear-gradient(0deg, rgba(43, 8, 61, 0.8), rgba(43, 8, 61, 0.8)),
    url(/folletos-html/img/bg-lanzadera-23.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section#alumni-experience .bg-image:has(#campus-img) {
  background: transparent;
  align-self: center;
}
section#alumni-experience img.icon {
  width: 50%;
  max-width: 40px;
  min-width: 30px;
  margin: 10px 0;
}

/** Metaverso **/
#metaverso .col-metaverso {
  min-height: 427px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#metaverso #metaverso-1 {
  background: url(/folletos-html/img/metaverso-1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 10px solid white;
  border-right: 0;
  border-top: 20px solid white;
}
#metaverso #metaverso-2 {
  background: url(/folletos-html/img/metaverso-2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 10px solid white;
  border-left: 0;
  border-bottom: 20px solid white;
}
#metaverso #metaverso-3 {
  background: url(/folletos-html/img/metaverso-3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 10px solid white;
  border-right: 0;
  border-bottom: 20px solid white;
}
@media (max-width: 991px) {
  #metaverso .col-metaverso:first-child {
    min-height: auto;
  }
  #metaverso #metaverso-1 {
    border: 10px solid white !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  #metaverso #metaverso-2 {
    border: 10px solid white !important;
    border-bottom: 0 !important;
  }
  #metaverso #metaverso-3 {
    border: 10px solid white !important;
  }
}

/** Responsabilidad social **/
.logo-objetivos {
  max-width: 400px;
  width: 100%;
}
.objetivo {
  width: 16%;
  min-width: 200px;
}
.objsostenible {
  max-width: 100px;
  width: 50%;
  display: block;
  margin: 1px auto 17px;
}
@media (max-width: 500px) {
  .page-content.w-100.flex-column.justify-content-center.h-100 {
    height: auto !important;
  }
  section#responsabilidad-social .d-flex {
    display: block !important;
  }
  section#responsabilidad-social img.logo-objetivos {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 560px) {
  .objetivo {
    width: 100%;
  }
}

/** Empresas **/
#empresas .col-xl-4 {
  margin-bottom: -10%;
}
@media (max-width: 991px) {
  #empresas .col-xl-4 {
    margin-bottom: 40px;
  }
  #empresas img {
    margin: auto;
    width: 100%;
  }
}

/** Que puedo hacer **/
#que-puedo-hacer {
  background: linear-gradient(
      0deg,
      rgba(224, 224, 224, 0.8),
      rgba(231, 231, 231, 0.8)
    ),
    url(/folletos-html/img/bg-ahora-23.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#que-puedo-hacer .card {
  width: 40%;
  min-height: 210px;
  min-width: 363px;
}
#que-puedo-hacer img.iconos,
#valores img.iconos {
  width: 90%;
  max-width: 60px;
  display: block;
  margin: 1px auto 17px;
}
@media (max-width: 991px) {
  #que-puedo-hacer .card {
    width: 95%;
    min-width: auto;
  }
}
@media (max-width: 500px) {
  #que-puedo-hacer .card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important;
    width: 100%;
  }
}

/** Contraportada **/
img#logo-contra-iebs {
  max-width: 150px;
}
img#logo-contra-iebs-ucav,
img#logo-contra-iebs-ucam {
  max-width: 300px;
}
/*#sedes {
    margin-top: 350px ;
}*/
#sedes .bg-image {
  height: 400px;
  border-radius: 5px;
}
#sedes #barcelona .bg-image {
  background: url(/folletos-html/img/sede-barcelona.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
#sedes #madrid .bg-image {
  background: url(/folletos-html/img/sede-madrid.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
#sedes #cdmx .bg-image {
  background: url(/folletos-html/img/sede-cdmx.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.sede {
  width: 33%;
  max-width: 420px;
  min-width: 250px;
  /*  margin-top: -350px;*/
}
.sede img {
  width: 30%;
  max-width: 30px;
  margin: -15px 0 10px;
}
@media (max-width: 991px) {
  #sedes .bg-image {
    height: 250px;
  }
  .sede {
    width: 50%;
    min-width: auto;
    max-width: none;
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .sede {
    width: 100%;
  }
}
/* Digitalent */
#digitalent img {
  width: 10%;
  min-width: 100px;
  max-width: 120px;
}

/*** Layout MXBA ***/
body#programa-mxba #portada .bg-image {
  background-image: url(/folletos-html/img/bg-portada-mxba-23.jpg);
}
body#programa-mxba #indice .bg-image {
  background-image: url(/folletos-html/img/bg-indice-mxba-23.jpg);
}
body#programa-mxba #proponemos .bg-image {
  background: url(/folletos-html/img/bg-entrada-mxba-23.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
body#programa-mxba section#programa .bg-image {
  background: linear-gradient(0deg, rgba(43, 8, 61, 0.7), rgba(43, 8, 61, 0.7)),
    url(/folletos-html/img/bg-telepresencial-mxba-23.jpg);
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body#programa-mxba section#programa .bg-image ul li:before {
  color: var(--orange);
}
ul#resumen-mxba li:before {
  content: none !important;
}
ul#resumen-mxba li i {
  color: var(--orange);
  font-size: 2em;
  margin-right: 5px;
}
ul#resumen-mxba li b {
  font-size: 1.5em;
  margin-right: 5px;
}
body#programa-mxba #programa-2 .bg-image {
  background-image: url(/folletos-html/img/bg-salidas-mxba-23.png);
  background-position: left;
}
body#programa-mxba #dada .bg-image {
  background-image: url(/folletos-html/img/bg-dada-mxba-23.jpeg);
}
body#programa-mxba #level-up .bg-image {
  background-image: url(/folletos-html/img/bg-challenge-mxba-23.jpeg);
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
body#programa-mxba #proceso-admision .item {
  width: 25%;
}
body#programa-mxba section#masterclass img {
  width: 50%;
  max-width: 70px;
}
body#programa-mxba #masterclass .bg-image {
  background-image: url(/folletos-html/img/bg-masterclass-23.jpeg);
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
section#perfil-alumni {
  background-image: linear-gradient(
      0deg,
      rgba(67, 21, 103, 0.6),
      rgba(67, 21, 103, 0.6)
    ),
    url(/folletos-html/img/bg-perfil-23.png);
  background-position: 0 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--gris--primary);
}
section#perfil-alumni .card.card--perfil {
  width: 30%;
  min-width: 350px;
  margin-top: 40px !important;
}
section#perfil-alumni .card.card--perfil i.text-whitef {
  border-radius: 50%;
  font-size: 20px;
  padding: 5px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -20px auto 20px;
}
section#perfil-alumni .card.card--perfil i.text-yellow {
  font-size: 20px;
  margin-bottom: 5px;
}
body#programa-mxba #que-puedo-hacer {
  background: linear-gradient(
      0deg,
      rgba(224, 224, 224, 0.8),
      rgba(231, 231, 231, 0.8)
    ),
    url(/folletos-html/img/bg-ahora-mxba-23.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body#programa-mxba #opinion-1 {
  background: url(/folletos-html/img/juanjo.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
body#programa-mxba #opinion-2 {
  background: url(/folletos-html/img/hectorramirez.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
body#programa-mxba #opinion-3 {
  background: url(/assets/static/Kasia-Adamovich.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
body#programa-mxba #opinion-4 {
  background: url(/folletos-html/img/OliverSolis.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
body#programa-mxba #opinion-5 {
  background: url(/folletos-html/img/JoseAntonioMunoz.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
body#programa-mxba #opinion-6 {
  background: url(/folletos-html/img/AleixManosas.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1200px) {
  body#programa-mxba section#proponemos .w-20,
  body#programa-mxba section#proponemos .w-80,
  body#programa-mxba section#temario .w-60,
  body#programa-mxba section#temario .w-40,
  body#programa-mxba section#masterclass .w-30,
  body#programa-mxba section#masterclass .w-70 {
    width: 100%;
  }
  body#programa-mxba #dada .bg-image {
    background-position: 0 -100px;
  }
}
@media (max-width: 991px) {
  body#programa-mxba section#perfil-alumni .card.card--perfil {
    width: 90%;
  }
  section#perfil-alumni {
    background-image: linear-gradient(
        0deg,
        rgba(67, 21, 103, 0.6),
        rgba(67, 21, 103, 0.6)
      ),
      url(/folletos-html/img/bg-perfil-23.png);
    background-position: 0 400px;
  }
}

/********** GPDF ***********/
/* Portada */
body#gpdf #portada .bg-image {
  background-image: url(/folletos-html/img/bg-portada-gpdf-23.jpeg);
}
/* Valores */
#valores {
  background: linear-gradient(
      0deg,
      rgba(224, 224, 224, 0.836),
      rgba(231, 231, 231, 0.836)
    ),
    url(/folletos-html/img/bg-video-campus.png);
  background-size: cover;
}
#valores .card {
  width: 23%;
  min-height: 210px;
  min-width: 363px;
}
@media (max-width: 991px) {
  #valores .card {
    width: 95%;
    min-width: auto;
  }
}

@media (max-width: 991px) {
  #gpdf #formacion .bg-lila.w-40,
  #formacion .tabla-formacion.w-60 {
    width: 100% !important;
  }
}

/********** AREA ***********/
/* Portada */
body#area #portada h1,
body#tipo #portada h1 {
  color: white;
}
body#area #portada h1 p,
body#tipo #portada h1 p {
  color: var(--orange) !important;
  padding-bottom: 3rem !important;
  margin-bottom: 3rem !important;
  margin-top: 1rem !important;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  display: block;
}
body#area.area-marketing #portada .bg-image,
body#area.area-marketing-digital #formacion .bg-image,
body#tipo section.page.marketing-digital .bg-image,
body#area.area-internet-marketing #formacion .bg-image,
body#tipo section.page.internet-marketing .bg-image {
  background-image: url(/folletos-html/img/bg-marketing-1.jpg);
}
body#area.area-businesstech #portada .bg-image,
body#area.area-business-tech #formacion .bg-image,
body#tipo section.page.business-tech .bg-image {
  background-image: url(/folletos-html/img/bg-businesstech-1.jpg);
}
body#area.area-emprendedores #portada .bg-image,
body#area.area-mba-emprendedores #formacion .bg-image,
body#tipo section.page.mba-emprendedores .bg-image {
  background-image: url(/folletos-html/img/bg-emprendedores-1.jpg);
}
body#area.area-socialmedia #portada .bg-image,
body#area.area-big-data-ia #formacion .bg-image,
body#tipo section.page.big-data-ia .bg-image {
  background-image: url(/folletos-html/img/bg-socialmedia-1.jpg);
}
body#area.area-rrhh #portada .bg-image,
body#area.area-rrhh #formacion .bg-image,
body#tipo section#formacion-recursos-humanos .bg-image,
body#tipo section.page.recursos-humanos .bg-image {
  background-image: url(/folletos-html/img/bg-rrhh-1.jpg);
}
body#area.area-fintech #portada .bg-image,
body#area.area-fintech #formacion .bg-image,
body#tipo section.page.fintech-blockchain .bg-image {
  background-image: url(/folletos-html/img/bg-fintech-1.jpg);
}
/* Formación */
body#area.area-marketing section#formacion .bg-image {
  background-image: url(/folletos-html/img/bg-marketing-3.jpg);
}
body#area.area-businesstech section#formacion .bg-image {
  background-image: url(/folletos-html/img/bg-businesstech-3.jpg);
}
body#area.area-emprendedores section#formacion .bg-image {
  background-image: url(/folletos-html/img/bg-emprendedores-3.jpg);
}
body#area.area-socialmedia section#formacion .bg-image {
  background-image: url(/folletos-html/img/bg-socialmedia-3.jpg);
}
body#area.area-rrhh section#formacion .bg-image {
  background-image: url(/folletos-html/img/bg-rrhh-3.jpg);
}
#area .listado-programas--bg:nth-child(1),
#area .listado-programas--bg:nth-child(3),
#area .listado-programas--bg:nth-child(5),
#area .listado-programas--bg:nth-child(7) {
  background: var(--gris--secondary);
}
#area .listado-programas ul {
  column-count: 2;
}
@media (max-width: 991px) {
  #area #formacion .w-70 {
    width: 100%;
    order: 2;
  }
  body#area #formacion .bg-image.w-30 {
    width: 100%;
    height: 350px;
    order: 1;
  }
  #area .listado-programas ul {
    column-count: 1;
  }
}

/********** TIPO ***********/
/* Portada */
body#tipo.tipo-masters #portada .bg-image {
  background-image: url(/folletos-html/img/bg-masters-23.jpg);
}
body#tipo.tipo-postgrados #portada .bg-image {
  background-image: url(/folletos-html/img/bg-postgrados-23.jpg);
}
body#tipo.tipo-cursos #portada .bg-image {
  background-image: url(/folletos-html/img/bg-video-campus.png);
}
body#tipo.tipo-expertos #portada .bg-image {
  background-image: url(/folletos-html/img/bg-expertos-23.jpg);
}
body#tipo.tipo-micromasters #portada .bg-image {
  background-image: url(/folletos-html/img/bg-micromasters-23.jpg);
}
body#tipo.tipo-bootcamp #portada .bg-image {
  background-image: url(/folletos-html/img/bg-bootcamp-23.jpg);
}
/* Tablas */
#tipo .w-70 .container.tabla-formacion {
  padding: 0 !important;
}
#tipo .container.tabla-formacion {
  max-width: none;
  padding: 3rem;
}
#tipo .container.tabla-formacion .listado-programas ul {
  column-count: 2;
}
#tipo .tabla-formacion h6 {
  margin-top: 0;
}
@media (max-width: 991px) {
  #tipo .container.tabla-formacion .listado-programas ul {
    column-count: 1;
  }
}

/********** SALA DE PRENSA ***********/
body#prensa #formacion h6,
body#prensa #formacion-marketing h6,
body#prensa #formacion-emprendedores h6,
body#prensa #formacion-scoailmedia h6,
body#prensa #formacion-rrhh h6 {
  margin-top: 0;
  margin-bottom: 30px;
}
.tabla-formacion .table--formacion {
  margin: 20px auto 50px;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  background-color: white;
  overflow-x: scroll !important;
}
.tabla-formacion .table--formacion tbody {
  border: 1px solid #e5e5e5;
}
.tabla-formacion table.table {
  width: 100%;
  border-collapse: collapse;
}
.tabla-formacion table.table thead {
  background: var(--lila);
  color: white;
}
.tabla-formacion table.table thead th:first-child,
.tabla-formacion table.table tbody td:first-child {
  text-align: left;
}
.tabla-formacion table.table thead th {
  padding: 10px;
  text-align: center;
}
.tabla-formacion table.table tbody tr {
  border-top: 1px solid #e5e5e5;
}
.tabla-formacion table.table tbody td {
  padding: 10px;
  text-align: center;
}
.tabla-formacion table.table tbody td a {
  color: black;
  text-decoration: none;
}
.tabla-formacion table.table tbody td a:hover {
  text-decoration: underline;
}

/********** INCOMPANY ***********/
#prensa #portada .bg-image {
  background-image: url(/folletos-html/img/bg-prensa-23.jpg);
}
#prensa #que-puedo-hacer .card:last-child {
  display: none;
}
#prensa #incompany .bg-image.w-30 {
  background: url(/assets_incompany/assets/images/b2b/metodologia.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
@media (max-width: 1200px) {
  #prensa #incompany .bg-image.w-30,
  #prensa #incompany .w-70,
  #incompany .w-30,
  #incompany .w-40,
  #incompany .w-50,
  #incompany .w-60,
  #incompany .w-70 {
    width: 100% !important;
  }
}

#incompany #portada .bg-image {
  background-image: url(/folletos-html/img/bg-incompany.webp);
}
#incompany .metodologia_item {
  text-align: center;
  background: none;
  border: none;
  max-width: 230px;
  padding: 10px;
  width: 100%;
}
#incompany .metodologia_item img {
  opacity: 1;
  margin: 0 auto 10px;
  display: block;
  max-width: 80px;
  width: 90%;
}
#incompany .texto-met p b {
  display: block;
  margin: 10px 0;
}

#incompany .card.icono-metod {
  width: 30%;
  margin: 0px 1% 40px 1%;
  text-align: center;
  overflow: hidden;
}
#incompany .card.icono-metod .bg-image {
  height: 130px;
}
#incompany .gradient-list.gradient-list--card-check ul li {
  width: 47%;
}
#incompany #proponemos .bg-image {
  background: url(img/incompany/metodologia.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 678px) {
  #incompany .gradient-list.gradient-list--card-check ul li {
    width: 95%;
  }
}
#incompany #valores img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(90%) saturate(665%)
    hue-rotate(359deg) brightness(92%) contrast(96%);
}
#incompany #soluciones .bg-image {
  background: url(img/incompany/soluciones.jpg) no-repeat;
  background-size: cover;
  background-position: bottom center;
}
#incompany .table--formacion {
  border-radius: 0.25rem;
  margin: 20px auto 50px;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  background-color: white;
  border: 1px solid #e5e5e5;
  overflow-x: scroll !important;
}
#incompany #elearning .table--formacion table.table tbody tr td:first-child {
  background: var(--gris--secondary);
}
#incompany #elearning .bg-image {
  background: url(img/incompany/elearning-incompany.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
#incompany #areas .card {
  width: 20%;
  margin: 10px !important;
}
#incompany #areas .card p:nth-child(2) {
  font-size: 13px;
}
#incompany #areas ul {
  column-count: 2;
  column-gap: 30px;
}
#incompany #areas ul li {
  break-inside: avoid;
}
#incompany #valor-anadido .bg-image {
  background: url(/folletos-html/img/incompany/empleo.jpg) no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  min-height: 400px;
}
#incompany img#serious {
  max-width: 180px;
  height: fit-content;
}
#incompany #sello .bg-image {
  background: url(/folletos-html/img/incompany/bg-sello.jpg) no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
#incompany #titulacion .franja-logos-ranking div {
  width: 20%;
}
#incompany #titulacion ul {
  padding: 0 !important;
}
#incompany #titulacion li.ranking-item {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 22%;
}
#incompany #titulacion li.ranking-item:before {
  content: none !important;
}
#incompany #titulacion li.ranking-item span {
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  #incompany #areas .card {
    width: 28%;
  }
  #incompany #valor-anadido .bg-image {
    min-height: 200px;
  }
}
@media (max-width: 991px) {
  #incompany #areas ul {
    column-count: 1;
  }
}
@media (max-width: 768px) {
  #incompany #areas .card {
    width: 42%;
  }
}
@media (max-width: 600px) {
  #incompany #areas .card {
    width: 100%;
  }
}

.caso-exito {
  width: 100%;
  margin: 15px auto;
  display: flex;
  flex-direction: row;
  border-radius: 5px;
  overflow: hidden;
}
.caso-exito p,
.caso-exito li {
  font-size: 13px;
}
.caso-exito h6 {
  font-size: 20px;
  line-height: 1;
}
div#caso-1 {
  background: url(/folletos-html/img/incompany/essilorluxottica.webp) no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 300px;
  height: 100%;
}
div#caso-2 {
  background: url(/folletos-html/img/incompany/SIDNDigital.webp) no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 300px;
  height: 100%;
}
div#caso-3 {
  background: url(/folletos-html/img/incompany/FiraBarcelona.webp) no-repeat;
  background-size: cover;
  background-position: -100px center;
  min-width: 300px;
  height: 100%;
}
div#caso-4 {
  background: url(/folletos-html/img/incompany/AAMMetaldyne.webp) no-repeat;
  background-size: cover;
  background-position: -200px center;
  min-width: 300px;
  height: 100%;
}
div#caso-5 {
  background: url(/folletos-html/img/incompany/ICEX.webp) no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 300px;
  height: 100%;
}
@media (max-width: 991px) {
  .caso-exito {
    flex-direction: column;
  }
  #caso-1,
  #caso-2,
  #caso-3,
  #caso-4,
  #caso-5 {
    background-position: center !important;
    height: 300px !important;
    width: 100%;
  }
}

/*** Menu display y no display ***/
#metodologia span.d-menu {
  display: none;
}
#indice b.d-folleto {
  display: none;
}

/*** Masterclass ***/
.item-masterclass {
  width: 46%;
  align-self: stretch;
}
.item-masterclass .profesor-logo_image {
  margin: -90px -40px 0px auto;
}
.item-masterclass .aurthor-image__image {
  border-radius: 0;
}
.item-masterclass .card__image--profesor {
  width: 25px;
  height: 25px;
  min-width: 25px;
  border-radius: 50%;
  margin-right: 7px;
}
@media (max-width: 1200px) {
  .item-masterclass {
    width: 96%;
  }
}
@media (max-width: 768px) {
  .item-masterclass .aurthor-image {
    max-width: none;
    width: 100%;
  }
  .item-masterclass .profesor-logo_image {
    margin: -90px 10px 0px auto;
  }
}

#formacion-extra .bg-image {
  background: linear-gradient(
      0deg,
      rgba(251, 243, 255, 0.8),
      rgba(251, 243, 255, 0.8)
    ),
    url(./img/formacionextra.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
@media (max-width: 991px) {
  #formacion-extra .bg-image {
    background-position: center -200px;
  }
}

.diplomas-all .my-3 {
  padding: 0 10px;
  /*width: 50%;*/
}
.diplomas-all .titulo-imagen {
  box-shadow: 1px 1px 8px 0px #676767;
  width: auto;
  max-width: -webkit-fill-available;
  min-width: auto;
  margin-top: 10px;
  max-height: 300px;
}
/*@media(max-width: 1500px) {
  .diplomas-all .my-3 {
      width: 100%;
  }
}
@media(max-width: 991px) {
  .diplomas-all .my-3 {
      width: 50%;
  }
}*/
@media (max-width: 768px) {
  .diplomas-all .my-3 {
    width: 100%;
  }
}

/* INNOVATION WEEK */
section#innovation-week .franja-img {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
section#innovation-week .franja-img .franja-img--img {
  height: 277px;
  width: 47%;
  margin: 7px 5px;
}
section#innovation-week .franja-img #img-1 {
  background: url(/assets/images/semanapresencial/2026/locations/IMG-2.png)
    no-repeat;
  background-size: cover;
  background-position: center;
}
section#innovation-week .franja-img #img-2 {
  background: url(/assets/images/semanapresencial/2026/fotografias/grupo-1.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}
section#innovation-week .franja-img #img-3 {
  background: url(/assets/images/semanapresencial/Visita-Sagrada-Familia.webp)
    no-repeat;
  background-size: cover;
  background-position: center;
  background-position-y: 40%;
}
section#innovation-week .franja-img #img-4 {
  background: url(/assets/images/semanapresencial/2026/locations/IMG-1.png)
    no-repeat;
  background-size: cover;
  background-position: center;
}
section#innovation-week .franja-img #img-5 {
  background: url(/assets/images/semanapresencial/2026/locations/IMG-4.png)
    no-repeat;
  background-size: cover;
  background-position: center;
}
section#innovation-week .franja-img #img-6 {
  background: url(/assets/images/semanapresencial/2026/fotografias/grupo-3.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}
/* INNOVATION WEEK */

/* NUEVO */

/* EDITORIAL: Editorial New - Ultralight (normal) */
@font-face {
  font-family: "Editorial New";
  src: url("/assets_2025/fonts/EditorialNew/EditorialNew-Light-webfont/EditorialNew-Light.woff2")
      format("woff2"),
    url("/assets_2025/fonts/EditorialNew/EditorialNew-Light-webfont/EditorialNew-Light.woff")
      format("woff"),
    url("/assets_2025/fonts/EditorialNew/EditorialNew-Light-webfont/EditorialNew-Light.ttf")
      format("truetype"),
    url("/assets_2025/fonts/EditorialNew/EditorialNew-Light-webfont/EditorialNew-Light.otf")
      format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* EDITORIAL: Editorial New - Ultralight (normal) */
@font-face {
  font-family: "PPNeueMachina Inktrap";
  src: url("/assets_2025/fonts/NeueMachina/PPNeueMachina-InktrapRegular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PPNeueMachina Inktrap";
  src: url("/assets_2025/fonts/NeueMachina/PPNeueMachina-InktrapBold-webfont/PPNeueMachina-InktrapBold.woff2")
      format("woff2"),
    url("/assets_2025/fonts/NeueMachina/PPNeueMachina-InktrapBold-webfont/PPNeueMachina-InktrapBold.woff")
      format("woff"),
    url("/assets_2025/fonts/NeueMachina/PPNeueMachina-InktrapBold-webfont/PPNeueMachina-InktrapBold.ttf")
      format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "PPNeueMachina Inktrap";
  src: url("/assets_2025/fonts/NeueMachina/PPNeueMachina-InktrapSemibold-webfont/PPNeueMachina-InktrapSemibold.woff2")
      format("woff2"),
    url("/assets_2025/fonts/NeueMachina/PPNeueMachina-InktrapSemibold-webfont/PPNeueMachina-InktrapSemibold.woff")
      format("woff"),
    url("/assets_2025/fonts/NeueMachina/PPNeueMachina-InktrapSemibold-webfont/PPNeueMachina-InktrapSemibold.ttf")
      format("truetype");
  font-weight: 600;
  font-style: normal;
}

.innovation-week {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

h2 {
  color: #2d174d;
  text-transform: uppercase;
}

.que-incluye .subtitulo {
  font-size: 18px;
  padding-bottom: 10px;
  color: #6633af;
}

.que-incluye .list {
  padding: 0;
  font-family: "Work Sans";
  font-size: 16px;
}

.list li::before {
  color: #8c40ff;
}

.que-incluye .list b {
  font-weight: 600;
}

.que-incluye .item-lila span {
  color: #8c40ff;
  font-weight: 600;
}

.subtitulo {
  color: #8c40ff;
  display: flex;
  flex-direction: column;
  font-family: "PPNeueMachina Inktrap" !important;
  text-transform: uppercase;
  font-weight: 100 !important;
  font-size: 21px;
}

.frase {
  font-size: 22px;
  font-family: "Editorial New", sans-serif;
  color: #6633af;
}

.btn-container {
  display: flex;
  gap: 20px;
  align-items: start;
}

.final.subtitulo {
  font-size: 25px;
  flex-direction: row;
  gap: 10px;
  color: #6633af;
}

.btn-iebs {
  font-family: "Work Sans", sans-serif;
  background: #8c40ff;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 8px;
  text-wrap: nowrap;
}

.btn-iebs:hover {
  background: #6633af;
}

@media (max-width: 768px) {
  .innovation-week {
    gap: 20px;
  }

  .innovation-week h2 {
    font-size: 30px !important;
  }

  .innovation-week p {
    margin: 0;
  }

  .final.subtitulo,
  .btn-container {
    flex-direction: column;
  }

  .btn-container a {
    width: 100%;
  }

  .franja-img--img {
    width: 100% !important;
  }
}
