@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
html,
body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
}
body {
  position: relative;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

* {
  font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .btn {
  font-family: 'Poppins', sans-serif;
  /*font-style: italic;*/ 
  letter-spacing: .025rem;
}
.animate-spin {
  -webkit-animation: animate-spin 2s linear infinite;
  animation: animate-spin 2s linear infinite
}
@-webkit-keyframes animate-spin {
  0% {-webkit-transform: rotate(0deg); transform: rotate(0deg) }
  to { -webkit-transform: rotate(1turn); transform: rotate(1turn) }
}
@keyframes animate-spin {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
  to { -webkit-transform: rotate(1turn); transform: rotate(1turn) }
}

.arrow{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.arrow span{
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid #06A8FF;
  border-right: 5px solid #06A8FF;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}
.arrow span:nth-child(2){
  animation-delay: -0.2s;
}
.arrow span:nth-child(3){
  animation-delay: -0.4s;
}
@keyframes animate {
  0%{
    opacity: 0;
    transform: rotate(45deg) translate(-20px,-20px);
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: rotate(45deg) translate(20px,20px);
  }
}

.rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}
.rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}
.rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg)
}
.flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}
.flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1)
}
.flip-both,
.flip-horizontal.fa-flip-vertical,
.flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}
.flip-both,
.flip-horizontal.flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1)
}
:root .flip-both,
:root .flip-horizontal,
:root .flip-vertical,
:root .rotate-90,
:root .rotate-180,
:root .rotate-270 {
  -webkit-filter: none;
  filter: none
}

.blob {
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	margin: 10px;
	height: 20px;
	width: 20px;
	transform: scale(1);
	animation: pulse-black 2s infinite;
}
.blob.green {
	background: rgba(51, 217, 178, 1);
	box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
	animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
	}
}

.select2-container--bootstrap .select2-selection {
    background: transparent!important;
    color: #ffffff!important;
    border: 1px solid #6ea513!important;
}
.select2-container--bootstrap .select2-selection span {
    color: #ffffff!important;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-color: #ffffff transparent transparent !important;
}
.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
 border-color: transparent transparent #ffffff!important;
}

body {
  background-color: #f8f9fc;
  color: #2d2d2d;
}
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
}
.home {
  background-image: url('../img/main-bg.webp');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* body.home::before {
    background: rgb(40,40,40);
    background: -moz-linear-gradient(180deg, rgba(40,40,40,0.25) 0%, rgba(40,40,40,0.85) 100%);
    background: -webkit-linear-gradient(180deg, rgba(40,40,40,0.25) 0%, rgba(40,40,40,0.85) 100%);
    background: linear-gradient(180deg, rgba(40,40,40,0.25) 0%, rgba(40,40,40,0.85) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#282828",endColorstr="#282828",GradientType=1);
} */
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
}
footer.sticky-footer {
  padding: 3rem 0!important;
  z-index: 1;
  position: relative;
  /* z-index: 11111111111; */
}
footer.sticky-footer h4 {
  color: #01f903;
  font-style: italic!important;
  font-weight: 700;
  font-size: 1.2em;
}
footer.sticky-footer p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}
footer.sticky-footer p.whatsapp a.btn {
    font-size: 2.4em;
    font-weight: 800;
    font-style: normal;
    font-family: 'Poppins', sans-serif!important;
    color: white !important;
}
footer.sticky-footer p.whatsapp a.btn i {
    color: #8FDE00;
}
footer.sticky-footer p.toweb a.btn {
    font-size: 1.24em;
    font-weight: 500;
    font-style: normal;
    font-family: 'Poppins', sans-serif!important;
    color: white !important;
}
.stepwizard-step {
  display: table-cell;
  text-align: center;
  position: relative;
}
.stepwizard-step p {
  margin-top: 10px;
}
.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}
.stepwizard-row {
  display: table-row;
}
.stepwizard-row:before {
  top: 14px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.stepwizard {
  display: table;
  width: 100%;
  position: relative;
}
.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}
a[disabled="disabled"] {
  pointer-events: none;
  cursor: default;
}
.shadow-xlg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,.75)!important;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.75)!important;  
}

.malla {
    margin: 50px 0;
    margin-bottom: 10px !important;
}
.malla h4 {
  font-weight: 800;
  color: #2E38FF;
  font-size: 32px;
}
.malla .card {
  /* border-radius: 0 !important; */
}
.malla .malla-item {
    margin-bottom: 20px!important;
    border-color: #8FDE00;
}
.malla .malla-item h1, .malla .malla-item h2, .malla .malla-item h3, .malla .malla-item h4, .malla .malla-item h5, .malla .malla-item h6, .malla .malla-item .h1, .malla .malla-item .h2, .malla .malla-item .h3, .malla .malla-item .h4, .malla .malla-item .h5, .malla .malla-item .h6, .malla .malla-item .btn {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}
.malla .malla-item .card-header {}
.malla .malla-item .card-header .card-title {}
.malla .malla-item .card-header .card-title span {
    color: #2e38ff;
    font-size: 22px;
}
.malla .malla-item .card-body {}
.malla .malla-item .card-body .col-curso {}
.malla .malla-item .card-body .col-curso .curso-item {}
.malla .malla-item .card-body .col-curso .curso-item .card-body {
    position: relative;
    padding: .8rem;
    padding-left: 2rem;
}
.malla .malla-item .card-body .col-curso .curso-item .card-body .card-title {
    font-family: 'Poppins', sans-serif;
    color: #afafaf;
}
.malla .malla-item .card-body .col-curso .curso-item .card-body i {
    position: absolute;
    top: .8rem;
    left: .4rem;
    font-size: 18px;
    color: #e6e6e6;
}
.malla .malla-item .card-body .col-curso .curso-item.curso-ok .card-body .card-title {
    color: #ffffff;
}
.malla .malla-item .card-body .col-curso .curso-item.curso-ok .card-body i {
    color: #8fde00;
    background-color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    padding-top: 1px;
    padding-left: 1px;
}
.malla .malla-item .card-body .col-curso .curso-item.curso-ok .card-body i::before {font-size: 17px;position: absolute;top: 1px;left: 1px;}
.curso-ok {
  position: relative;
  background-color: #2e38ff!important;
  color: #ffffff!important;
}
.curso-ok::before {
  content: '';
}
.curso-ok::after {
  content: '';
}
#wrapper #content-wrapper {
  background-color: transparent;
}
form .tooltip-help {
  font-size: 10px;
  padding: 2px 4px;
  top: 0;
  right: 4px;
}
#content .hero-bg {
  position: relative;
  padding-bottom: 50px;
}
#content .hero-bg .hero-goto-down {
    text-align: center;
}
#content .hero-bg .hero-goto-down a.btn {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    text-align: center;
    line-height: 48px;
    border: 2px solid #ffffff;
    background: transparent;
}
#content .rowMessageBox {
  background-color: #7bcbb7;
  position: relative;
  -webkit-box-shadow: inset 0px 9px 42px -14px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px 9px 42px -14px rgba(0, 0, 0, 0.75);
}
#content .rowMessageBox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/malla.png);
  background-repeat: repeat;
  opacity: .4;
}
#content .rowMessageBox .faCerrar {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  padding: .5rem;
  color: #fff;
  z-index: 9999;
}
#content .messageBox {
  padding: 2rem 1rem;
}
#content .messageBox h2, #content .messageBox p {
  margin: 0;
  padding: 0;
  color: #024ca3;
}
#content .messageBox figure {
  margin: 0;
}
#content .messageBox h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 1.4rem;
}
#content .messageBox p {
  font-style: normal;
  font-weight: normal;
  font-size: .9rem;
}
#content .rowContenido {
  padding: 5rem 0;
  padding-bottom: 2rem;
}
#content .rowContenido .alignTitle {
  /* display: -webkit-box; */
  display: -ms-flexbox;
  /* display: flex; */
  /* -webkit-box-pack: end; */
  -ms-flex-pack: end;
  /* justify-content: flex-end; */
  /*margin-top: 2rem;*/
}
#content .rowContenido h1 {
  font-style: normal;
  color: #7bcbb7;
  line-height: 3.4rem;
  padding: 0;
  margin: 0;
  letter-spacing: .4rem;
}
#content .rowContenido .txt-2 {
  font-family: 'BebasNeueBold', sans-serif;
  display: inline-block;
  background-color: #033390;
  color: #fff;
  padding: .2rem .2rem .0rem .4rem;
  font-size: 3rem;
  line-height: 1;
}
#content .rowContenido .txtGreen {
  background-color: #7bcbb7;
}
#content .rowContenido .logo-ie {}
#content .rowContenido .logo-ie img {
    max-height: 90px;
}
#content .rowContenido .logo-usil {}
#content .rowContenido .logo-usil img {
    margin-left: 20%;
}
#content .rowContenido .slogan {
  margin-top: 250px;
}
#content .rowContenido .slogan img {
    max-width: 95%;
}
/* #content .rowContenido .slogan p {
    color: #ffffff;
    font-size: 1.6rem;
    max-width: 480px;
    padding-left: 3rem;
} */
#content #formBox {
  background-color: rgb(32 31 51 / 90%);
  border-radius: 24px;
  border: 0;
  color: #ffffff;
}
#content #formBox .card-header {
  background: transparent;
  border: none;
  padding-top: 1.25rem!important;
  padding-bottom: .5rem!important;
}
#content #formBox .card-header h3 {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  font-style: normal;
  /*font-style: italic;*/
  color: #8FDE00;
}
#content #formBox .card-body {
  padding-top: .25rem!important;
  padding: 1.5rem;
}
#content #formBox .card-body {}
#content #formBox .card-body .form-row {}
#content #formBox .card-body .form-row p {}
#content #formBox .card-body .form-row p.first {
  font-size: 0.9rem;
  display: block;
  margin-top: 15px !important;
  letter-spacing: -.4px;
}
#content #formBox .card-body .form-row p small {}
#content #formBox .card-body .form-row p small a {
    color: #4e9dff !important;
    border-bottom: 1px solid #4e9dff;
    text-decoration: none;
}
#content #formBox .card-body .form-row p small a:hover {
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff;
    text-decoration: none;
}
#content #formBox .card-body label {
  font-style: normal !important;
  font-size: .85rem;
  font-weight: 500;
}
#content #formBox .card-body .form-control {background: transparent;border-radius: .25rem;border: 1px solid rgba(255,255,255,.88);color: #ffffff;font-style: normal;}
#content #formBox .card-body .btn-link {letter-spacing: .05rem;font-size: 1rem;color: #fff;}
#content #formBox .card-body .btn-continuar, #content #formBox .card-body .btn-enviar {
  background-color: #01f903!important;
  border:0px;
  border-radius: 25px;
  color: #141493;
  font-size: 1.5em;
  /*font-style: italic !important;*/
  font-weight: 700;
  padding: 7px 40px;
  font-weight: bold;
}
#content #formBox .card-body .btn-continuar i, #content #formBox .card-body .btn-enviar i {
    font-size: 18px;
}
#content #formBox .card-body .btn-continuar:hover, #content #formBox .card-body .btn-enviar:hover {
  background-color: #7bbd03!important;
  -webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
#content #formBox .card-body #step-2 h5 {
  font-family: "GothamRounded-Book";
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.4;
}

.cover-simulacion {
  position: relative;
  padding: 90px 0;
  background-image: url(../img/main-bg2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cover-simulacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(46,56,255,0.85);
}


.cover-simulacion-error {
  position: relative;
  padding: 90px 0;
  background-image: url(../img/main-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cover-simulacion-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,0.55);
}
.cover-simulacion-error .slogan-ie {}
.cover-simulacion-error .slogan-ie img {
    margin-bottom: 90px;
}
.cover-simulacion-error .resp-msg {
    background-color: rgb(0 0 0 / 65%);
    padding: 20px;
    padding-bottom: 5px;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    max-width: 378px;
    margin: 0 auto;
}
.cover-simulacion-error .resp-msg h4 {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif!important;
    color: #8fde00 !important;
    font-style: italic;
}
.cover-simulacion-error .resp-msg p {}
.cover-simulacion-error .widget {}
.cover-simulacion-error .widget .btn-whatsapp {
    max-width: 210px;
    background-color: #25d366;
}

.col-widget {}
.col-widget .box-bienvenida {
    margin-bottom: 1rem;
}
.col-widget .box-bienvenida h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    letter-spacing: .1rem;
    margin: 0;
    font-size: 1.4rem;
}
.col-widget .box-bienvenida .btn-group {}
.col-widget .box-bienvenida .btn-group .dropdown-button {
    font-family: 'BebasNeueBold', sans-serif;
    display: inline;
    background-color: #033390;
    color: #fff;
    padding: .6rem .6rem .4rem;
    font-size: 2rem;
    border-radius: 0;
    height: auto;
    line-height: 1;
}
.col-widget .box-bienvenida .btn-group .dropdown-menu {}
.col-widget .box-bienvenida .btn-group .dropdown-menu .dropdown-item {}
.col-widget .box-counter {}
.col-widget .box-counter h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
}
.col-widget .box-counter .counter {}
.col-widget .box-counter .counter .counter-l {
}
.col-widget .box-counter .counter .counter-l span {
    font-size: 4rem;
    line-height: 1;
}
.col-widget .box-counter .counter .counter-r {}
.col-widget .box-counter .counter .counter-r .count-content-1 {
    display: block;
    text-align: left;
    font-size: 1.2rem;
}
.col-widget .box-counter .counter .counter-r .count-content-2 {
    display: block;
    text-align: left;
    font-size: 1.2rem;
    letter-spacing: .1rem;
}

footer {
  padding: 2rem 0;
  background-color: #ffffff;
}
footer p {
  color: white;
  margin: 0;
  line-height: 1.2;
  font-size: .8rem;
}
footer p a.btn {font-size: .8rem;}

.silform-txttitle .silform-link {
  font-size: 1rem!important;
  color: white !important;
  text-align: center;
  display: block;
  margin: 0 15px;
}
.silform-check .silform-check-label {
  margin-left: 0rem!important;
  font-weight: normal!important;
}

.rol-buttons {}
.rol-buttons .btn-brochure {
  background-color: #8FDE00;
  border: 2px solid #7bbd03;
}
.rol-buttons .btn-correo {
  border: 2px solid #d3d4d6;
}
.rol-buttons .btn-whatsapp {
    background-color: #1bd741;
}

.sidebar .nav-item.dropdown .dropdown-toggle::after, .topbar .nav-item.dropdown .dropdown-toggle::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Pro";
  margin: 0;
}

.sidebar .nav-item.dropdown.show .dropdown-toggle::after, .topbar .nav-item.dropdown.show .dropdown-toggle::after {
  content: '\f0d8';  
}

.table-combinacion {
  width: auto;
  /* border-left: .25rem solid #4e73df!important; */
  color: #333333;
  background: transparent !important;
  border: 1px solid #8fde00 !important;
}
.table-combinacion th {
  background: transparent;
  font-size: .85rem;
  padding: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid #8fde00 !important;
}
.table-combinacion thead th {
  background-color: #8fde00;
  font-style: italic;
}
.table-combinacion td {
  font-size: .85rem;
  padding: .5rem;
  background-color: #ffffff;
  vertical-align: middle;
  border: 1px solid #8fde00 !important;
}
.table-combinacion td.txt {
  color: #2e38ff;
}

/*RAZONES*/
#razones {
	position: relative;
	background-color: #2E38FF !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}
#razones::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/pattern.png);
}
#razones .col-title {}
#razones .col-title h2 {
    font-size: 2.4em;
    font-weight: 800;
    font-style: normal;
    font-family: 'Montserrat', sans-serif!important;
    color: #8FDE00;
    font-style: italic;
}
#razones .col-title h4 {}
#razones .col-razon {}
#razones .col-razon .card-razon {}
#razones .col-razon .card-razon .card-body {}
#razones .col-razon .card-razon .card-body .card-icon {
	margin-bottom: 15px;
}
#razones .col-razon .card-razon .card-body .card-icon img {
    max-width: 92px;
    margin-bottom: 10px;
}
#razones .col-razon .card-razon .card-body .card-title {
	font-family: 'Montserrat', sans-serif!important;
	color: #8FDE00;
  font-size: 20px;
  line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 700;
}
#razones .col-razon .card-razon .card-body .card-text {
	font-size: 16px;
	font-family: 'Montserrat', sans-serif!important;
	color: #ffffff;
}
.cta {}
.cta .btn {
  background-color: #8FDE00;
  border: 2px solid #7bbd03;
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: 700;
  padding: 7px 20px;
  text-transform: uppercase;
}
.cta .btn:hover {
  background-color: #7bbd03;
}

.nav-item.dropdown.into-content {
  list-style: none;
}
.nav-item.dropdown.into-content a.nav-link {
  border: 1px solid #8fde00;
  background-color: transparent;
  border-radius: 0;
  padding: .3rem .5rem;
  position: relative;
}
.nav-item.dropdown.into-content a.nav-link span {
  color: #ffffff!important;
  font-size: 14px;
  letter-spacing: normal;
  font-style: normal;
}
.nav-item.dropdown.into-content a.nav-link:hover {
  background-color: transparent;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  border-color: #c3c3c3;
  border: 2px solid #8fde00;
}
.nav-item.dropdown.into-content a.nav-link::after {
  position: absolute;
  top: 15px;
  right: 10px;
  color: #8fde00;
}

/*HOME RESULTADOS*/
body.resultados {}
body.resultados nav.topbar {
    height: auto;
}
body.resultados nav.topbar img {
    max-height: 70px;
    width: auto;
}
body.resultados nav.topbar .nav-item {}
body.resultados nav.topbar .nav-item a.nav-link {
    font-size: 1.2em;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif!important;
    color: #2E38FF !important;
    font-style: italic;
}
body.resultados nav.topbar .nav-item a.nav-link span {
  color: #8FDE00;
  margin-left: 5px;
}
.card-welcome {
    margin: 20px 0;
}
.card-welcome .img-thumbnail {
  max-width: 120px;
}
.card-welcome p {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif!important;
    color: #ffffff;
    font-style: italic;
    line-height: 30px;
}
.card-welcome p strong {
    font-family: 'Montserrat', sans-serif!important;
    font-weight: 800;
    color: #8fde00;
    margin-bottom: 10px;
    display: block;
}
.card-cambiarcarrera {
    border: none!important;
    background: transparent;
}
.card-cambiarcarrera .card-body {
  padding: 0;
}
.card-cambiarcarrera h5 {
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif!important;
    color: #ffffff;
    font-style: italic;
    text-transform: uppercase;
}
.card-cambiarcarrera li.nav-item {}

.whastapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
}
.whastapp-float a.btn {
    font-size: 32px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    border-color: #25d366;
}
.whastapp-float a.btn i {
    font-size: 32px;
    line-height: 52px;
}

/** RESPONSIVE **/

@media (min-width: 280px) and (max-width: 575px) {
  #content .rowContenido {
    padding: 2rem 0;
    /* 280px -575px */
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  #content .rowContenido .alignTitle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* 576px - 767px */
  }
}
@media (min-width: 280px) and (max-width: 575px) {
  #content .rowContenido .alignTitle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* 280px -575px */
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content .rowContenido .txt-2 {
    font-size: 1.8rem;
    /* 768px - 991px */
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  #content .rowContenido .txt-2 {
    font-size: 2rem;
    /* 576px - 767px */
  }
}
@media (min-width: 280px) and (max-width: 575px) {
  #content .rowContenido .txt-2 {
    font-size: 1.3rem;
    /* 280px -575px */
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  #content #formBox .card-body .btn-continuar {
    font-size: 1.2rem;
    /*color: #7bcbb7;*/
    /* 576px - 767px */
  }
}
@media (min-width: 280px) and (max-width: 575px) {
  #content #formBox .card-body .btn-continuar {
    font-size: 1rem;
    /*color: #7bcbb7;*/
    /* 280px -575px */
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  #content #formBox .card-body .btn-enviar {
    font-size: 1.2rem;
    color: #7bcbb7;
    /* 576px - 767px */
  }
}
@media (min-width: 280px) and (max-width: 575px) {
  #content #formBox .card-body .btn-enviar {
    font-size: 1rem;
    /*color: #7bcbb7;*/
    /* 280px -575px */
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.home {
    background-position: top center;
    /* 992px - 1199px */
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home {
    /*background-position: right;*/
    /* 768px - 991px */
  }
}

/*custom responsive*/
@media (max-width: 996px) {
  #content .rowContenido h1 {
    line-height: 1;
    max-width: 185px;
  }
  #content .rowContenido .txt-2 {
    font-size: 2.4rem;
    margin-bottom: 2px;
    letter-spacing: .2rem;
  }
}
@media (max-width: 768px) {
  #content-wrapper #content .container .justify-content-md-center.align-items-center.mb-5 {
    margin-bottom: 0px!important;
}
  
  .card-cambiarcarrera {
    margin-top: 50px;
  }
  #content .rowContenido .logo-ie {
    text-align: center!important;
  }
  body.home {
    height: auto!important;
    /*background: #7bcbb7;*/
  }
  /* #content .rowContenido .slogan {
    margin-top: 0px;
  } */
  #content .rowContenido {
    padding: 2rem 0;
  }
  #content .rowContenido .alignTitle {
    margin: 0;
  }
  #content .rowContenido h1 {
    max-width: none;
  }
  #content .rowContenido .txt-2 {
  }
  #formBox {
    margin-right: 0!important;
  }
  nav.navbar {
    /*margin-bottom: 1rem!important;*/
  }
  nav.navbar .navbar-brand {}
  nav.navbar .navbar-brand img {
    max-width: 92px;
    height: auto;
  }
  nav.navbar ul.navbar-nav {}
  nav.navbar ul.navbar-nav li.nav-item {}
  nav.navbar ul.navbar-nav li.nav-item a.nav-link {
    font-size: 1rem;
  }
  nav.navbar ul.navbar-nav li.nav-item a.nav-link span {
    font-size: 1.2rem;
  }
  .malla .malla-item .card-body .col-curso .curso-item .card-body .card-title {
    font-size: .8rem;
  }
  .malla .malla-item .card-body .col-curso .curso-item .card-body i {
    font-size: 14px;
    top: 6px;
}
  .malla .malla-item .card-body .col-curso .curso-item .card-body i::before {}
  .malla .malla-item .card-body .col-curso .curso-item.curso-ok .card-body i {
    width: 16px;
    height: 15px;
}
  .malla .malla-item .card-body .col-curso .curso-item.curso-ok .card-body i::before {
    font-size: 13px;
}
  .rol-buttons .btn {
    margin-bottom: 20px;
    font-size: .85rem;
  }
  .malla .malla-item .card-header {
    padding: .4rem!important;
  }
  .malla .malla-item .card-header h6 {
    font-size: .85rem;
  }
  .malla .malla-item .card-body .col-curso .curso-item .card-body {
    position: relative;
    padding: .4rem;
    padding-left: 30px;
  }
  .malla .malla-item.h-100 {
  	height: auto !important;
  	margin-bottom: 0 !important;
  }
  .card-welcome {
    text-align: center;
  }
  .card-welcome .card-body {
    padding: .2rem;
    margin-bottom:1rem;
  }
  .card-welcome p {
    font-size: 1.4em;
    line-height: 1.2em;
  }
  .malla-item {
    margin-bottom: 1rem!important;
  }
  .table-combinacion {
    width: 100%;
  }
  .cover-simulacion {
    padding: 50px 0;
    padding-bottom: 70px;
  }
  footer.sticky-footer .col-md-4 {
  	margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  #content .rowContenido h1 {
  font-size: 1.8rem;
  }
  #content .rowContenido .txt-2 {
  font-size: 1.8rem;
  line-height: 1;
  }
  nav.navbar ul.navbar-nav li.nav-item a.nav-link {
    font-size: .8rem;
    margin: 0;
    padding: 0;
    margin-left: 5px;
  }
  nav.navbar ul.navbar-nav li.nav-item a.nav-link span {
    font-size: 1rem;
    margin-left: 5px;
  }  
  .card-no-combi {}
  .card-no-combi .card-footer {
    padding: .7rem;
  }
  .card-no-combi .card-footer a.btn {
    font-size: .65rem;
  }
  .card-no-combi .card-footer a.btn .icon {
    padding: .25rem .4rem;
  }
  .card-no-combi .card-footer a.btn .text {
    padding: .25rem .2rem;
  }  
  .card-welcome .img-thumbnail {
    max-width: 72px;
  }
	.card-welcome p {
		font-size: 1.2em;
		line-height: 1em;
	}
	footer.sticky-footer p.whatsapp a.btn {
    font-size: 1.8em;
  }
  footer.sticky-footer p.toweb a.btn {
    font-size: 1em;
  }
  #razones .col-title h2 {
  	font-size: 26px;
  }
  #razones .col-razon .card-razon .card-body .card-title {
  	font-size: 20px;
  }
  #razones .col-razon .card-razon .card-body .card-text {
  	font-size: 14px;
  }
  #razones .col-razon .card-razon .card-body .card-icon img {
  	max-width: 72px;
  }
  .cta .btn {
  	font-size: 20px;
  }
  .malla h4 {
  	font-size: 26px;
  }
}
@media (max-width: 380px) {
  .card-no-combi .card-footer a.btn .icon {
    display: none;
  }
  .card-no-combi .card-footer a.btn {
    font-size: .6rem;
  }
}