/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/

span.lore {
    font-family: "Lore", sans-serif !important;
}
.hidden-desktop {
	display: none;
}
.site-footer {
	display: none;
}
strong {
    font-weight: 600!important;
}


/* Header */
.header-top {
	background-color: white;
	width: 100%;
	height: 87px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header-top .container {
    max-width: 1140px;
    width: 100%;
	margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-top-left {
	align-items: center;
	/*width: 20%;*/
}
.header-top-left img {
	max-height: 60px;
	max-width: 100%; 
}
.header-top-right {
	margin-left: 20px; 
	justify-content: flex-end;
    display: flex;
	gap: 10px;
	align-items: center;
	max-height: 50px;
}
.header-top-right a {
	font-size: 16px;
}
.header-top-right a.mail {
    background-color: #3154ff;
    padding: 15px 25px;
	color: #fff;
}
.header-top-right a.mail:hover {
	background-color: #1c3e5d;
	color: #fff;
}
.header-top-right #llamanos {
	padding: 0px 15px;
}
.header-top-right #llamanos .phone_img {
    border: 1px solid #3154ff;
    border-radius: 50%;
    padding: 10px;
    display: flex;
	justify-content: center;
}
.header-top-right .mundo {
	color: #3154ff;
	font-size: 16px;
	border-right: 2px solid #D9D9D9;
	padding-right: 20px;
	font-weight: 600;
}
.header-top-right .campus {
	border-left: 2px solid #D9D9D9;
	padding: 10px;
    display: flex;
    align-items: center;
	max-height: 50px;
}
.header-top-right #campus .campus_img{
	padding: 10px;
}
.header-bottom {
	background-color: var(--e-global-color-primary);
	width: 100%;
	height: 55px;
	display: flex;
	justify-content: center;
}
.menu {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}
.menu .container {
	height: 55px;
}
.menu ul {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
}
.menu ul li {
	list-style: none;
	position: relative;
	height: 55px;
}
.menu li a {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0px 15px;
	text-decoration: none;
}
.menu li a:hover, 
.menu li a:active {
	color: #fff!important;
	background-color: #1c3e5d!important;
}
.menu li.current-menu-item a {
    color: #fff;
    background-color: #1c3e5d;
}
.menu li ul {
	display: none;
	box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    top: 100%;
    left: 0;
	position: absolute;
	background-color: var(--e-global-color-primary);
	width: 200px;
	padding: 10px 0;
	z-index: 9999;
}
.menu li:hover > ul,
.menu li ul:hover {
	display: block;
}
.menu li ul li {
	padding: 10px 15px;
}
.menu li ul li a {
	color: #fff;
	font-size: 16px;
	font-weight: normal;
}
.menu li ul li a:hover {
	background-color: var(--e-global-color-enfasis);
}
.menu-sticky {
	position: sticky;
    width: 1140px;
    top: 142px;
    text-align: center;
    z-index: 1;
}


@media (max-width: 768px) {
	/* Header */
	.header-top {
		height: 65px;
	}
  	.header-top .container {
  		justify-content: flex-end;
  	}
	.header-top-left {
		width: 60%;
	}
	/*.header-top-left img {
		height: 35px;
	}*/
    .header-top-left img {
      max-width: 80%;
    }
	.header-top-right{
		width: auto;
	}
	.hidden-desktop {
		display: block;
	}
	.hidden-mobile {
		display: none;
	}
	.header-icons {
   		display: inline-flex;
      	padding-right: 20px;
	}
	a.email {
    	padding-right: 15px;
	}
	/* Offcanvas - Menu Mobile */
	.offcanvas-content .menu li ul {
		position: inherit; 
		background-color: #fff;
		width: 100%;
	}
	.offcanvas-content .menu li ul a{
		color: #1c3e5d;
	}		
	.offcanvas-content #menu-menu-principal-1 {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 20px;
		padding-top: 70px;
	}	
	.offcanvas {
		visibility: hidden;
		opacity: 0;
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		width: 300px;
		background-color: #fff;
		z-index: 1001;
		box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5); 
		transition: transform .3s ease-out, opacity .3s ease-out, visibility 0s .3s;
		transform: translateX(100%); 
	}
	.offcanvas.active {
		visibility: visible;
		opacity: 1;
    	transform: translateX(0%);
		transition: transform .3s ease-out, opacity .3s ease-out, visibility 0s; 
	}
	.offcanvas-bar-animation {
		transition: transform .3s ease-out;
    	transform: translateX(100%);
	}
	.offcanvas.active .offcanvas-bar-animation {
		transform: translateX(0);
	}
	button.offcanvas-close {
		position: absolute;
		z-index: 1002;
		top: -10px;
		right: 5px;
		padding: 5px;
		background: #fff !important;
		color: #3154ff !important;
		border: none;
		font-size: 40px;
		cursor: pointer;
	}
	.offcanvas-content li {
		line-height: 25px;
		font-size: 14px;
		list-style: none;
	}
	.offcanvas-content li a{ 
		color: #1c3e5d;
	}		
	.offcanvas li a:hover, 
	.offcanvas p a:hover {
		color: #fff;
	}
	.open-offcanvas img {
		height: 40px;
	}
	.header-top .container {
		padding-right: 0px;
	}
    .header-top-right-mobile {
        display: flex;
        vertical-align: middle;
        align-content: center;
        align-items: center;
        justify-content: center;
		cursor: pointer;
	}	
}


/* Footer */
.footer{
	display: flex;
	justify-content: center;
}
.footer img {
    max-width: 180px;
    padding-top: 15px;
}
.footer h4, .footer a {
	color: #fff!important;
	font-weight: 400!important;
}
.footer a:hover {
	color: #000!important;
}
.footer ul {
	list-style: none;
	padding-left: 0px;
}
.footer-grid {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	gap: 170px;
	padding: 50px 0px;
}
.footer-top {
	background-color: #fff;
    height: 140px;
    border-top: 1px solid #000;
    display: flex;
    border-width: 80%;
    align-items: center;
    justify-content: space-around;
}
.footer-top img {
background-color: white;
    padding: 10px;
    height: 100px;
    object-fit: contain;
}
.footer-column ul li {
	list-style: none;
}
.footer-bottom {
	border-top: 1px solid #fff;
	padding: 20px 0px;
}
.footer-bottom p {
	color: #fff;
	font-weight: 400;
}
@media (max-width: 768px) {	
    .footer-grid {
		display: flex;
        grid-template-columns: repeat(1, 1fr); 
        text-align: left;
		flex-direction: column;
		gap: 30px;
		padding-left: 30px;
    }
    .social-icons a {
        margin: 5px;
    }
	.footer-bottom {
		padding: 20px;
	}
}



/* Archive Estudios */
.archive .page-content, .page-id-1454 .page-content {
	padding: 50px 0px;
}
.posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
}
.post-card {
    width: calc(33% - 20px);
    background: #3154ff;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.post-card:hover {
	box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.43);
}
.post-card img {
    width: 100%;
    height: auto;
}
.title-prefix{
	font-size: 18px;
	font-weight: 400;
}
.entry-title {
	padding: 25px;
}
h2.entry-title  {
    text-decoration: none!important;
    color: #fff!important;
	font-weight: 400;
	font-size: 27px!important;
}
.comments-area a, .page-content a {
	text-decoration: none!important;
}
@media (max-width: 1024px) {
    .post-card {
        width: calc(50% - 20px); 
    }
}
@media (max-width: 768px) {
    .post-card {
        width: 100%; 
    }
	.menu-sticky {
		position: sticky;
		width: 100%;
		top: 65px;
		text-align: center;
		z-index: 1;
	}
}




/* Single Estudio */
.logos_sp {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logos_sp img {
	max-width: 250px;
}
.banner_formacion {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	object-position: top;
}
.button_sticky_sp {
	display: none;
}
h2 {
	font-size: 32px;
	font-weight: 300!important;
}
.single ul {
    list-style: circle;
}
.single ul li:not(.menu li) {
	font-size: 18px;
	font-weight: 300;
	padding: 5px 10px;
}
.single-estudio .single_content li::marker {
    content: url(/wp-content/uploads/arrow.svg);
}
.single-estudio .single_content ul>ul>li::marker {
	content: url(/wp-content/uploads/minus.svg);
}
div#porque_estudiar, 
div.info_descripcion, 
div#acceso, 
div#plan_de_estudios, 
div.salidas_profesionales, 
div.becas, 
div#solicita_informacion, 
div#banner_masinfo,
div#formacion_dual{
	max-width: 1140px;
	margin: 100px auto;
}
/* Banner */
.banner_curso {
	min-height: 50vh;
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-bottom: 1px solid #1c3e5d;
	width: 100%;
}
.banner_curso:before {
	content:'';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	top: 0;
	background-color: transparent;
	background-image: linear-gradient(180deg, #02010100 47%, #1C3E5DC7 120%);
}
.title_curso {
    display: flex;
    gap: 10px 10px;
    padding: 30px 0px;
    max-width: 1140px;
    width: auto;
    margin: 0 auto;
}
.title_curso h1 {
	font-size: 40px;
	line-height: 1em;
	color: #fff!important;
	z-index: 0;
	display: flex;
	min-height: 50vh;
	align-items: flex-end;
	gap: 0px 0px;
	padding: 0px;
	margin: 0px;
	font-family: "Outfit Regular";
}
/* Menu */
.single_menu {
    background-color: #fff;
    border-bottom: 0.5px solid #dee2e6;
    height: 45px;
	margin-top: 1px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.single_menu ul {
	max-width: 1140px;
	display: inline-flex;
	list-style: none;
	align-items: center; 
	justify-content: space-between;
	flex-grow: 1;
	padding: 0px;
}
.single_menu ul a {
	color: #1c3e5d!important;
	height: 47px;
	display: flex;
	align-items: center; 
	justify-content: center;
	text-decoration: none; 
	padding: 0 10px;
	flex-grow: 1;
}
.single_menu ul a li {
	font-size: 18px;
    font-weight: 600;
}
.single_menu a:hover,
.single_menu a:focus-visible,
.single_menu a:focus {
 	background-color: #3154ff;
	color: #fff!important;
}
.single_menu a.active {
  background-color: #3154ff;
  color: #fff;
}
.single_menu a.active li {
  color: #fff;
}
.single_menu li {
	display: flex; 
	align-items: center; 
}
header#site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
}
/* Content */
hr {
    width: 77px;
    border: 1px solid #3154FF;
	margin: 15px 0px;
}
.informacion_general {
	padding: 50px;
}
.datos_del_curso {
    display: flex;
    justify-content: center;
    background-color: #f1fafd;
}
.single_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
	margin: 0 auto;
}
.single_text {
	background-color: #fff;
	width: 100%;
}
#informacion_general {
	background-color: #b6eaf833;
	padding: 50px;
}
#informacion_general ul {
    max-width: 1140px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto; 
}
#informacion_general ul li {
    /*flex: 1 1 calc(33.33% - 30px);*/
    flex: 1 1 calc(25% - 30px);
    box-sizing: border-box;
	max-width: 300px;
}
.info-item {
    display: flex;            
    align-items: center;       
    margin-bottom: 15px;      
}
.info-img {
    width: 35px;              
    height: 35px;            
    margin-right: 10px;       
}
.info-text {
    display: flex;
    flex-direction: column;   
    justify-content: center; 
	font-size: 17px;
	font-weight: 400;
}
span.info_g{
	font-size: 14px;
	font-weight: 300;
}
.info_descripcion {
	font-weight: 300;
	font-size: 18px;
	color: #1C3E5D;
}
.capitalize {
	text-transform: capitalize;
}

/* CTA Más información */
div#banner_masinfo {
	display: flex;
	max-height: 175px;
}
#banner_masinfo .banner_left {
    background-color: #B0E9F7;
    padding: 15px 30px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
	justify-content: center;
	max-width: 60%;
}
#banner_masinfo .banner_right {
	position: relative;
	overflow: hidden;
	max-width: 40%;
}
#banner_masinfo .banner_right img {
	object-fit: none;
}
#banner_masinfo a.button_masinfo {
    position: absolute;
    bottom: 20px;
    right: 35px;
    background-color: #3154ff;
    color: #fff;
    text-align: center;
    width: 80%;
    padding: 10px;
}
/* Salidas profesionales */
#salidas_profesionales a.button_w {
	position: absolute;
    bottom: 25px;
    right: 35px;
    background-color: #fff;
    color: #3154ff;
    text-align: center;
    width: 82%;
    padding: 10px;
}
#solicita_informacion .cta_button .button_w {
    padding: 10px;
    position: absolute;
    width: 27%;
    text-align: center;
	background-color: #fff;
	color: #3154ff;
}
#salidas_profesionales a.button_w:hover, 
#solicita_informacion .cta_button .button_w:hover {
	color: #fff;
	background-color: #1c3e5d;
}
.info_descripcion p, 
.requisitos p, #porque_estudiar p, 
#plan_de_estudios p, #becas p,
#salidas_profesionales p,
#porque_estudiar p,
#formacion_dual p {
	font-size: 18px;
	font-weight: 400;
}
#salidas_profesionales {
	width: 100%;	
}
#salidas_profesionales img {
	width: 100%;
	object-fit: cover;
	height: 300px;
	padding-top: 30px;
}
#salidas_profesionales .texto_box {
	display: inline-flex;
	width: 100%;
}
#salidas_profesionales .texto_sp{
	width: 60%;
	padding: 20px 65px 20px 20px;
}
#salidas_profesionales .box_sp{
	width: 40%;
	background-color: #3154ff;
	color: #fff;	
	padding: 50px;
	box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.43);
	position: relative;
	right: 25px;
	bottom: 60px;
	height: fit-content;
}
#salidas_profesionales .box_sp p {
	padding-bottom: 35px;
	font-weight: 300;
	font-size: 18px;
}
#salidas_profesionales a.button_sp {
	background-color: #1c3e5d;
	color: #fff;
	padding: 15px 100px;
}
#salidas_profesionales li {
	padding-left: 10px;
	font-size: 18px;
	line-height: 40px;
	font-weight: 400;
}
#salidas_profesionales li::marker {
    content: url('/wp-content/uploads/tickw20.svg');
}
/* Acceso */
#acceso {
	display: flex;
}
.requisitos_image {
    align-self: stretch; 
}
.requisitos_image img {
    width: 100%; 
    max-height: 500px; 
    object-fit: cover; 
}
.requisitos_text {
    padding: 30px;
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
	max-height: 500px;
	justify-content: center;
}
.requisitos_text hr {
	border: 1px solid #fff;
}
.requisitos ul li {
    line-height: 30px;
    padding: 10px;
}
.requisitos_text p {
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
}
.requisitos_text ul {
	padding-bottom: 10px;
}
.requisitos_text ul li {
	line-height: 25px;
}
.requisitos_text h2, 
.requisitos_text p, 
.requisitos_text ul li {
	color: #fff!important;
}
/* Plan de estudios */
#plan_de_estudios span.title_pe {
    padding: 10px;
    background-color: #3154ff;
    width: 100%;
    display: flex;
    color: #fff
}

/* Becas y ayudas */
#becas {
    display: flex;
    align-items: center;
    gap: 20px;
}
.becas {
	display: inline-flex;
	gap: 20px;
}
.beca-imagen img {
	max-width: 100%; 
	height: auto; 
	width: 200px;
}
.beca-texto {
	flex: 1; 
}
/* CTA Solicita información */
#solicita_informacion {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; 
	background-color: #3154FF;
	margin: 30px 0px; 
	height: 365px;
}
#solicita_informacion .cta_right {
    flex: 1 1 45%; 
    max-width: 50%;
}
#solicita_informacion img {
    width: 100%; 
    height: auto; 
	padding: 0px;
}
#solicita_informacion .cta_left {
    flex: 1 1 45%; 
    max-width: 50%;
	color: #fff;
}
#solicita_informacion .cta_text {
	padding: 20px;
    font-size: 18px;
    font-weight: 300;
}
#solicita_informacion h4 {
	color: #fff;
	font-weight: 300;
	border-bottom: 1px solid #fff;
	padding-bottom: 20px;
}
#solicita_informacion .cta_button {
	padding: 0px 20px;
}
.buttons_popup a:hover {
	background-color: var(--e-global-color-primary);
	color: #fff!important;
}
.buttons_popup a:hover img {
	filter: brightness(0) invert(1);
}

/* Single Mobile */
@media (max-width: 768px) {
    header#site-header {
      position: sticky;
      top: 0;
      z-index: 9999;
      background-color: #fff;
    }
    .header-top-left{
      display: inline-flex;
    }
	/* Menu */
	.header-top-right-mobile.hidden-desktop {
		width: 65px;
		height: 65px;
		background: #3154ff;
	}
	.single_menu ul a {
		height: auto;	
		font-weight: 400;
		border: 1px solid #dee2e6;
		margin: 3px;
      	padding: 0px 9px;
	}
	.sticky {
		position: sticky;
		width: 100%;
		top: 0;
		z-index: 1;
	}
	.menu li ul {
		box-shadow: none;
	}
	.single_menu.menu-sticky ul a li {
        font-size: 12px;
        font-weight: 300;
        padding: 5px 8px;
    }
  	.single_menu.menu-sticky ul a.form_curso {
      background-color: #2563eb;
    }
  	.single_menu.menu-sticky ul .form_curso li{
  		color: #fff;
  	}
	.single_content {
		max-width:100%;
	}
	.title_curso {
		width: 100%;
		padding: 20px;
	}
	.single_menu.menu-sticky {
		height: auto;
		padding: 5px;
		width: 100%;
	}
	.single_menu.menu-sticky ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
	}
 	 /*#informacion_general ul li {
        flex: 1 1 100%; 
    }*/
    #informacion_general{
      padding: 10px;
    }
    #informacion_general ul {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding-left: 0px;
    }
    #informacion_general ul li {
      width: 100%; 
    }
    .info-text {
      font-size: 16px;
    }
	.single_menu a {
		font-weight: 400;
		font-size: 16px;
		height: inherit;
		flex-grow: 0;
	}
	/* Popup */
	.single_menu a.open-popup {
		background-color: #3154ff;
		border: 1px solid #3154ff;
	}
	.single_menu a.open-popup li {
		color: #fff;
	}
	.info_descripcion h2, 
	#salidas_profesionales h2, 
	#acceso h2,
	#plan_de_estudios h2,
	#formacion_dual h2 {
    	font-size: 30px;
	}
	/* Salidas profesionales */
	#salidas_profesionales {
		padding: 0px;
	}
	#salidas_profesionales img {
		padding-top: 0px;
	}
	#salidas_profesionales .texto_box {
		display: inline-flex;
		width: 100%;
		flex-direction: column;
		flex-wrap: nowrap;
	}
	#salidas_profesionales h3 {
		font-size: 25px;
	}
	#salidas_profesionales .texto_sp {
		width: 100%;
		padding: 20px;
	}
	#salidas_profesionales .box_sp {
		width: 100%;
		padding: 40px 40px 65px 40px;
		position: inherit;
		box-shadow: none;
	}
	#salidas_profesionales a.button_w {
		bottom: initial;
	}
	.info_descripcion,  
	#plan_de_estudios,
	.requisitos, 
	#porque_estudiar,  
	#solicita_informacion,
	#formacion_dual{  
		margin: 30px 20px!important
	}
	#salidas_profesionales {
		width: auto;
	}
	/* CTA */
	#banner_masinfo .banner_right, 
	#banner_masinfo .banner_left {
		max-width: 100%;
	}
	#solicita_informacion .cta_button .button_w {
		width: 80%;
	}
	#solicita_informacion {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        height: fit-content;
        padding-bottom: 55px;
	}
	#solicita_informacion .cta_text {
		padding: 20px;
		font-size: 16px;
	}
	#solicita_informacion .cta_button {
    	padding: 20px;
	}
	/* Requisitos */
	#acceso {
		flex-direction: column;
	}
	.requisitos_image, 
	.requisitos_image img {
		max-height: 200px;
	}
	.requisitos_text {
		max-height: fit-content;
	}
	/* Banner info */
	div#banner_masinfo {
		max-height: inherit;
		flex-direction: column;
		align-items: center;
	}
	.becas {
		flex-direction: column;
		margin-top: 0px!important;
	}
	.becas>div {
		padding: 0px 20px;
	}
	 #solicita_informacion {
        flex-direction: column; 
    }
    #solicita_informacion .cta_right,
    #solicita_informacion .cta_left {
        max-width: 100%; 
    }
	.becas img, 
	#salidas_profesionales img {
		max-height: 200px;
		object-fit: cover;
		object-position: center;
      	width: 100%;
	}
    .logos_sp {
      flex-direction: column;
      padding: 20px;
  	}
  	.logos_sp img {
  	  max-width: 200px;
  	}
}
	
/* CF7 Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 88888;
    display: none;
}
.popup {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 99999;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    max-width: 600px;
    width: 90%;
}
.popup-content {
	padding-top: 20px;
    max-height: 80vh;
  	overflow-y: auto;
}
.open-popup-link {
    text-decoration: none;
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.close-popup span {
    font-size: 35px;
    cursor: pointer;
}
.buttons_popup {
	display: flex;
	width: 100%;
	gap: 10px;
	padding: 10px;
}
.buttons_popup a {
	border: 1px solid #3154FF;
	color: #3154FF;
	padding: 10px 20px;
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 10px;
}
#responsive-form h2 {
	font-weight: 300;
	padding-left: 10px;
}
.header-icons-popup{
	text-align: center;
}
.header-icons-popup p {
    display: inline-flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
	gap: 15px;
}


/* CF7 */
.header-icons-popup.column-full {
    padding: 15px;
}
a.email, a.phone {
    display: flex;
    align-content: center;
    align-items: center;
	gap: 10px;
}
#responsive-form{
	margin: 0 auto;
    width: 100%;
}
.column-half, .column-full{
	float: left;
	position: relative;
	padding: 0px 10px;
	width: 100%;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.et-input, 
.wpcf7-form-control .wpcf7-select post {
    border: 1px solid #d5d5d5!important;
	color: #515962;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
	background-color: #3154ff;
	border: none;
	border-radius: 0px;
	width: 100%;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
	background-color: #1c3e5d;
	color: #fff;
}
.wpcf7-list-item-label {
	font-size: 14px;
	font-weight: 400;
	color: #111827;
	line-height: 25px;
}
.wpcf7-list-item-label a {
	font-size: 14px;
	font-weight: 400!important;
}
span.required{
	color: #d63637;
}
textarea.wpcf7-form-control.wpcf7-textarea.et-input {
    height: 150px;
}
span.wpcf7-list-item{
	margin: 0px;
}
@media only screen and (min-width: 48em) { 
	.column-half{
		width: 50%;
	}
}
/* Form curso single-page */
#form_curso {
  max-width: 1140px;
  overflow-x: hidden;
  	margin: 50px auto;
  	padding: 0px 150px;
}
#form_curso * {
  box-sizing: border-box;
  max-width: 100%;
}
.buttons_popup {
	padding: 10px 0px;
}
.buttons_popup a {
  	font-size: 16px;
  }
.info_legal {
	padding: 10px 0px 50px 0px;
}
#form_curso {
 scroll-margin-top: 150px;
}
@media (max-width: 768px) {
  /* Form single*/
  #form_curso {
    max-width: 100%;
    width: 100%;
    padding: 20px;
  }
  #form_curso h2 {
  	font-size: 1.5rem;
  }
  /* Popup */
	.popup {
        margin: 20px;
        top: 45%;
        left: 45%;
        padding: 10px;
        width: 95%;
        z-index: 99999;
	}
	.popup-content {
		padding-top: 0px;
		max-height: calc(80vh - 40px); 
    	overflow-y: auto;
		padding-right: 10px; 
	}
	.popup h2 {
		font-size: 1.5rem;
	}
	.buttons_popup {
		flex-direction: column;
	}
	.popup-close {
		top: 0;
		margin-bottom: 10px;
  	}
	.close-popup span {
		font-size: 30px;
		background-color: #fff;
	}
	.popup-content p {
		margin-block-end: 10px;
	}
	.buttons_popup a {
		padding: 5px 20px;
	}
	/*.button_sticky_sp {
		padding: 30px;
		text-align: center;
		position: sticky;
		bottom: 0px;
		background-color: #ffffffd6;	
	}*/
	a.button_sticky {
		background-color: #3154FF;
   		padding: 10px 10vw;
      	color: #fff!important;
	}
    .button_sticky_sp {
      padding: 30px;
      text-align: center;
      position: fixed;
      bottom: 0px;
      background-color: #ffffffd6;
      width: 100%;
    }
	.single-estudio	.button_sticky_sp {
		display: inherit;
	}
  .wpcf7-list-item {
  	font-size: 12px;
    line-height: 20px;
  }
}

/* Home */
.elementor-slide-description {
	font-size: 30px!important;
}
/* Formaciones */
.elementor-posts .elementor-post__card .elementor-post__text {
	padding: 0px!important;
	margin-bottom: 0px!important;
	margin-top: 0px!important;
}
.elementor-posts .elementor-post__card .elementor-post__text .elementor-post__title {
	padding: 25px!important;
	margin-bottom: 16px!important;
	margin-top: 8px!important;
}
.elementor-posts--thumbnail-top .elementor-post__thumbnail__link {
	margin-bottom: 0px!important;
}
.page-header {
	background-color: #F1F2F3;
	padding: 50px;
	width: 100%;
	height: 207px;
}
.title-header {
	max-width: 1140px;
	margin: 0 auto;
}
.title-header h3 {
	text-align: left;
	color: #3154ff;
	font-size: 70px!important;
	max-width: 1140px;
	font-family: "Outfit Regular", Sans-serif;
	font-weight: 500!important;
}
@media (max-width: 768px) {
	.elementor-slide-description {
		font-size: 22px!important;
	}
	.title-header h3 {
		font-size: 40px!important;
	}
}

/* Quiénes somos */
.page-id-151 .elementor-image-box-img img {
	width: 100%;
    height: 260px;
    object-fit: contain;
    object-position: center center;
	padding: 15px;
}
.page-id-151 .elementor-image-box-img {
	text-align: center;
	background-color: #b6eaf833;
    padding: 20px 20px 20px 20px;
    border-radius: 384px 384px 384px 384px;
	height: 100%;
}

/* Areas */
.page-id-1454 .post-card img {
    width: 100%;
    min-height: 235.78px;
    object-fit: cover;
}


@media screen and (min-width: 768px) and (max-width: 1366px) {
  /* Header */
  .header-top-right a.mail {
      padding: 10px;
  }
  .header-top-right .campus {
  	padding: 5px;
  }
  .header-top-right .mundo {
  	max-height: 50px;
    font-size: 12px;
  }
  .header-top-right {
  	gap: 0px;
  }
  .header-top-right a {
  	font-size: 14px;
  }
  .header-top-right #llamanos .phone_img {
  	padding: 5px;
  }
  .header-top-left img {
    height: auto;
    width: 190px;
  }

  /* Single curso */
  .banner_curso {
  	min-height: 300px;
  }
  .title_curso h1 {
  	font-size: 32px;
    height: 265px;
  }
  #informacion_general ul{
  	gap: 20px;
  }
  .logos_sp {
    flex-direction: inherit;
  }
  div#banner_masinfo {
	flex-direction: inherit;
  }
  .single ul li:not(.menu li){
  	font-size: 14px;
  }
  .title_curso h1 {
  	padding: 20px;
  }
  div#porque_estudiar, div.info_descripcion, div#acceso, div#plan_de_estudios, div.salidas_profesionales, div.becas, div#formacion_dual {
  	padding: 20px;
  }
  #solicita_informacion img {
    width: 100%; 
    height: 100%; 
    object-fit:cover;
  }
  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 20px;
  }
}
