@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,500&display=swap');

/* RESET PAGINA*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "ubuntu", sans-serif;

}
header{
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	transition: 0.5s ease;
	background-color: rgba(0,18,25,0.3);

}
header .logo{
	z-index: 1000;
	
	padding: 0;
	margin:0;
	width: 10%;
}
header .barranav{
	position: relative;
	padding-right: 5%;
}
header .barranav .barranav_btn a{
	position: relative;
	color: white;
	font-size: 1em;
	font-weight: 500;
	text-decoration: none;
	margin-left: 30px;
	transition: 0.3s ease;
	
}
header .barranav .barranav_btn a:hover{
	color: rgb(238,155,0);

}

section {
	padding:80px 40px;
}
html{
	scroll-behavior: smooth;
}
/* CSS PANTALLA INICIO */
.inicio{
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	justify-content: right;
	flex-direction: column;
	color: white;
	background-color: #001219;

}
.inicio video{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

}
.inicio .contenido-inicio{
	z-index: 999;
	color: #000;
	width: 70%;
	margin-top: 20%;

}


.inicio .contenido-inicio h1{

	font-size: 4em;
	text-align: right;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: auto;
	line-height: 75px;
	margin-bottom: 40px;
	padding-right: 5%;
	color: rgba(255,255,255,0.6);
	animation-name: fundido;
	animation-duration: 3s;
}
@keyframes fundido{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
}

.inicio .contenido-inicio p{
	font-size: 1.5em;
	text-align: right;
	padding-right: 5%;
	text-shadow: 2px 2px 2px rgba(1, 1, 1, 0.4);
	color: white;
	animation-name: fundido_texto_inicio;
	animation-delay: 0.6;
	animation-duration: 4s;
}
@keyframes fundido_texto_inicio{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
}

 /* CSS COACHING INDIVIDUAL */
.coachingindividual{
	position: relative;
	/*width: 100%;*/
	max-width: 100%;
	min-width: 90%;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	justify-content: right;
	flex-direction: column;
	background-color: #001219;

}
.coachingindividual img{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.coachingindividual .contenido-coachingindividual{
	z-index: 999;
	color: #000;
	width: 85%;
	margin-top: 10%;
	}

.coachingindividual .contenido-coachingindividual h1{
	font-size: 4em;
	text-align: right;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: auto;
	line-height: 75px;
	margin-bottom: 0px;
	padding-top: 3%;
	padding-left: 3%;
	padding-right: : 3%;
	padding-top: 0;
	color: rgba(255,255,255,0.6);
	animation-name: fundido_contenido_h;
	animation-duration: 3s;
}
@keyframes fundido_contenido_h{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
	
}
.coachingindividual .contenido-coachingindividual p{
	max-width: 100%;
	min-width: 90%;
	font-size: 1.5em;
	text-align: right;
	padding: 3%;
	text-shadow: 2px 2px 2px rgba(1, 1, 1, 0.4);
	color: white;
	animation-name: fundido_contenido_p;
	animation-duration: 3s;
}
@keyframes fundido_contenido_p{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
}
.coachingindividual .contenido-coachingindividual h1{
	/*background-color: rgba(0,18,25,0.4);*/
	background-size: 0;
	border-radius: 10px;

}

.coachingindividual .contenido-coachingindividual p{
	/*background-color: rgba(0,18,25,0.3);*/
	border-radius: 10px;

	
}
/*BOTON BTN_INDIVIDUAL*/
.boton_coachingindividual {
	z-index: 9999;
	width: 85%;
	display: flex;
	justify-content: flex-end;
	padding:10px;
	animation-name: fundido_boton_individual;
	animation-duration: 3s;
}
@keyframes fundido_boton_individual{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
}
.boton_coachingindividual a {
	font-size: 1.3em;
	color: white;
	background-color: #001219;
	border-radius: 30px;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_coachingindividual a:hover{
	font-size: 1.3em;
	color: #ee9b00;
	background-color: #001219;
	border-radius: 30px;
	transition: 0.3s ease;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_coachingindividual img {
	position: static;

	width: 50px;
	padding:0;
}


/*---------------------*/
/* CSS MENTORING */
.mentoring{
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	justify-content: right;
	flex-direction: column;
	color: white;
	background-color: #001219;

}
.mentoring .contenido-mentoring{
	z-index: 999;
	color: #000;
	width: 85%;
	margin-top: 10%;
	}
.mentoring .contenido-mentoring h1{
	font-size: 4em;
	text-align: right;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: auto;
	line-height: 75px;
	margin-bottom: 0;
	padding-top: 3%;
	padding-left: 3%;
	padding-right: 3%;
	padding-bottom: 0;
	color: rgba(255,255,255,0.9);
	animation-name: fundido_mentoring_h;
	animation-duration: 3s;

}
@keyframes fundido_mentoring_h{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
	
}
.mentoring .contenido-mentoring p{
	font-size: 1.5em;
	text-align: right;
	padding: 3%;
	text-shadow: 2px 2px 2px rgba(1, 1, 1, 0.4);
	color: white;
	animation-name: fundido_mentoring_p;
	animation-duration: 3s;
}
@keyframes fundido_mentoring_p{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;

}
.mentoring .contenido-mentoring h1{
	background-color: rgba(0,18,25,0.4);
	background-size: 0;
	border-radius: 10px;


}

.mentoring .contenido-mentoring p{
	background-color: rgba(0,18,25,0.3);
	border-radius: 10px;

	
}
.mentoring img{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

}
/*BOTON BTN_MENTORING*/
.boton_mentoring {
	z-index: 9999;
	width: 85%;
	display: flex;
	justify-content: flex-end;
	padding:10px;
	animation-name: fundido_boton_mentoring;
	animation-duration: 3s;
}
@keyframes fundido_boton_mentoring{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
}
.boton_mentoring a {
	font-size: 1.3em;
	color: white;
	background-color: #001219;
	border-radius: 30px;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_mentoring a:hover{
	font-size: 1.3em;
	color: #ee9b00;
	background-color: #001219;
	border-radius: 30px;
	transition: 0.3s ease;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_mentoring img {
	position: static;

	width: 50px;
	padding:0;
}


/*---------------------*/
/* CSS ORGANIZACIONES */
.coachingorganizaciones{
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	justify-content: right;
	flex-direction: column;
	color: white;
	background-color: #001219;

}
.coachingorganizaciones .contenido-organizaciones{
	z-index: 999;
	color: #ee9b00;
	width: 85%;
	margin-top: 8%;

	}
.coachingorganizaciones .contenido-organizaciones h1{
	font-size: 5em;
	text-align: right;
	font-weight: 400;
	text-transform: uppercase;
	overflow: hidden;
	line-height: 75px;
	margin-bottom: 0px;
	padding-right: 3%;
	padding-left: 3%;
	padding-top: 3%;
	padding-left: 3%;
	color: rgba(255,255,255,0.6);
	animation-name: fundido_organizaciones_h;
	animation-duration: 3s;
}
@keyframes fundido_organizaciones_h {
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;

	
}
.coachingorganizaciones .contenido-organizaciones p{
	font-size: 1.5em;
	text-align: right;
	padding: 3%;
	text-shadow: 2px 2px 2px rgba(1, 1, 1, 0.6);
	color: white;
	animation-name: fundido_organizaciones_p;
	animation-duration: 3s;
}
@keyframes fundido_organizaciones_p {
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;

}
.coachingorganizaciones .contenido-organizaciones h1{
	background-color: rgba(0,18,25,0.5);
	background-size: 0;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;

}
.coachingorganizaciones .contenido-organizaciones p{
	background-color: rgba(0,18,25,0.6);
	border-radius: 10px;
	
	
}
	
.coachingorganizaciones img{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.coachingorganizaciones video{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	}
/*BOTON BTN_ORGANIZACIONES*/
.boton_organizaciones {
	z-index: 9999;
	width: 85%;
	display: flex;
	justify-content: flex-end;
	padding:10px;
	animation-name: fundido_boton_organizaciones;
	animation-duration: 3s;
}
@keyframes fundido_boton_organizaciones{
	from{opacity: 0;}
	to{opacity: 1;}
	transition: 0.2;
}
.boton_organizaciones a {
	font-size: 1.3em;
	color: white;
	background-color: #001219;
	border-radius: 30px;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_organizaciones a:hover{
	font-size: 1.3em;
	color: #ee9b00;
	background-color: #001219;
	border-radius: 30px;
	transition: 0.3s ease;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_organizaciones img {
	position: static;

	width: 50px;
	padding:0;
}
/*--------------------------*/
/*FOOTER*/
footer  {
	margin: 0;
	background-color: #001219;
	color: white;
	width: 100%;
	padding: 40px;

	
}
.container-footer-all {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.container-body h1 {
	font-size: 20px;
	font-weight: 400;
}

.container-body img {
	width: 55px;
	padding-left: 10px; 
	padding-right: 10px;
	padding-top: 5px;
}
.acreditaciones{
	padding:0;
}
.acreditaciones img{
	width: 100px;
	opacity: 0.6;
}
.acreditaciones a{
	text-decoration: none;
	color: white;	

}
.acreditaciones a:hover {
	text-decoration: none;
	color: #ee9b00;	
	
}
.container-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-top: 20px;
}
.copyright a {
	text-decoration: none;
	color: white;

}
.copyright a:hover{
	text-decoration: none;
	color: #ee9b00;
	
}
.creador {
	width: 50%;
	display: flex;
	justify-content: flex-start;
	padding-left: 80px;
	padding-top: 25px;
	align-items: center;
	flex-direction: row-reverse;
}
.creador img {
	width: 200px;
}
.creador p {
	text-align: left;
}

.copyright {
	padding-top: 30px;
}


/*DIMENSIONES PARA MOVILES*/

@media screen and (max-width: 960px)
	{


	
	header
	{
		width: 100%;
		padding: 15px 26px;
		position: absolute;
			box-sizing: border-box;

	}

	header .barranav
	{
	display: none;

	}
		header .barranav.active{
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		background: rgba(1,1,1,0.3);

	}


header .barranav .barranav_btn a 
{
    color: #001219;
    font-size: 1.2em;
    margin: 20px;
}
header .barranav .barranav_btn a:before
{
	background: #ee9b00;
	height: 5px;
}

header .barranav.active .barranav_btn
{
	background: #fff;
	width: 100%;
	max-width: 100%;
	margin:	10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 10px;
	box-shadow: 0 5px 25px rgb(1 1 1 / 20%);

}
.menu_hamburguesa
{

	background: url(../imagenes/btn_burguer.png)no-repeat;
	background-size: 30px;
	background-position: center;
	padding-right: 20%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: 0.3s ease;
}
.menu_hamburguesa.active
{
	z-index: 999;
	background: url(../imagenes/btn_burguer_close.png)no-repeat;
	background-size: 30px;
	background-position: center;
	transition: 0.3s ease;

}
/* CSS PANTALLA INICIO PARA MOVILES*/
.inicio
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: white;
	background-color: #001219;


}
.inicio video
{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.inicio .contenido-inicio
{
	z-index: 999;
	color: #000;
	width: 70%;
	margin-top: 5%;
	transition: 0.4s ease;
	white-space: normal;

}
.inicio .contenido-inicio h1
{
	font-size: 2em;
	text-align: center;
	font-weight: 1000;
	text-transform: uppercase;
	letter-spacing: auto;
	line-height: 30px;
	margin-bottom: 20px;
	padding-right: 5%;
	color: white;
	transition: 0.4s ease;
	white-space: normal;
}
.inicio .contenido-inicio p
{
	font-size: 1em;
	text-align: center;
	padding-right: 5%;
	color: white;
	transition: 0.4s ease;
	white-space: normal;
}
/* CSS COACHING INDIVIDUAL PARA MOVILES*/
.coachingindividual
{
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 90%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: white;
	background-color: #001219;
}
.coachingindividual img
{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.coachingindividual .contenido-coachingindividual
{
	z-index: 999;
	color: #000;
	width: 85%;
	margin-top: 10%;
	}
.coachingindividual .contenido-coachingindividual h1
{
	font-size: 3em;
	text-align: center;
	font-weight: 1000;
	text-transform: uppercase;
	letter-spacing: auto;
	line-height: 40px;
	margin-bottom: 10px;
	padding: 3%;
	color: white;
	transition: 0.3s ease;
	
}
.coachingindividual .contenido-coachingindividual p
{
	max-width: 100%;
	min-width: 90%;
	font-size: 1em;
	text-align: center;
	padding: 3%;
	color: white;
	transition: 0.3s ease;

}
.coachingindividual .contenido-coachingindividual h1
{
	background-color: rgba(0,18,25,0.4);
	background-size: 0;
	border-radius: 10px;
	transition: 0.3s ease;

}

.coachingindividual .contenido-coachingindividual p
{
	background-color: rgba(0,18,25,0.3);
	border-radius: 10px;
	transition: 0.3s ease;

	
}
/*BOTON BTN_INDIVIDUAL*/
.boton_coachingindividual {
	z-index: 888;
	width: 85%;
	display: flex;
	justify-content: center;
	padding:10px;
	white-space: nowrap;
	
}
.boton_coachingindividual a 
{
	font-size: 1.3em;
	color: white;
	background-color: #001219;
	border-radius: 30px;
	padding:10px;
	margin: 3px;
	text-decoration: none;
	white-space: nowrap;
	
}
.boton_coachingindividual a:hover
{
	font-size: 1.3em;
	color: #ee9b00;
	background-color: #001219;
	border-radius: 30px;
	transition: 0.3s ease;
	padding:10px;
	margin: 3px;
	text-decoration: none;
	white-space: nowrap;
}
.boton_coachingindividual img 
{
	position: static;
	width: 50px;
	padding:0;
}
/*---------------------*/
/* CSS ORGANIZACIONES PARA MOVILES*/
.coachingorganizaciones
{
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: white;
	background-color: #001219;
	transition: 0.4s ease;

}
.coachingorganizaciones .contenido-organizaciones
{
	z-index: 999;
	color: #ee9b00;
	width: 85%;
	margin-top: 8%;
	transition: 0.4s ease;
}
.coachingorganizaciones .contenido-organizaciones h1
{
	font-size: 2.1em;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
	overflow: hidden;
	line-height: 35px;
	margin-bottom: 10px;
	padding-right: 3%;
	padding-left: 3%;
	padding-top: 3%;
	padding-bottom: 3%;
	color: white;
	transition: 0.4s ease;
	white-space: nowrap;
}
.coachingorganizaciones .contenido-organizaciones h2
{
	font-size: 2em;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 75px;
	margin-bottom: 40px;
	padding-right: 3%;
	color: white;
	transition: 0.4s ease;
	white-space: nowrap;
	}
.coachingorganizaciones .contenido-organizaciones p
{
	font-size: 1.3em;
	text-align: center;
	padding: 3%;
	color: white;
	transition: 0.4s ease;
	white-space: normal;

}
.coachingorganizaciones .contenido-organizaciones h1
{
	background-color: rgba(0,18,25,0.4);
	background-size: 0;
	border-radius: 10px;
	transition: 0.4s ease;

}
.coachingorganizaciones .contenido-organizaciones h2
{
	background-color: rgba(0,18,25,0.4);
	/*border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;*/
	transition: 0.4s ease;
}
.coachingorganizaciones .contenido-organizaciones p
{
	background-color: rgba(0,18,25,0.3);
	border-radius: 10px;
	transition: 0.4s ease;
	
}
	
.coachingorganizaciones img
{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}

.coachingorganizaciones video
{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

/*BOTON BTN_ORGANIZACIONES*/
.boton_organizaciones
{
	z-index: 9999;
	width: 85%;
	display: flex;
	justify-content: center;
	padding:10px;
}
.boton_organizaciones a 
{
	font-size: 1.1em;
	color: white;
	background-color: #001219;
	border-radius: 30px;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_organizaciones a:hover
{
	font-size: 1.1em;
	color: #ee9b00;
	background-color: #001219;
	border-radius: 30px;
	transition: 0.3s ease;
	padding:10px;
	margin: 3px;
	text-decoration: none;
}
.boton_organizaciones img 
{
	position: static;
	width: 50px;
	padding:0;
}
/*--------------------------*/
/* CSS MENTORING */
.mentoring
{
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: white;
	background-color: #001219;
	transition: 0.4s ease;

}
.mentoring .contenido-mentoring
{
	z-index: 999;
	color: #000;
	width: 85%;
	margin-top: 10%;
	transition: 0.4s ease;
	}
.mentoring .contenido-mentoring h1
{
	font-size: 2em;
	text-align: center;
	font-weight: 1000;
	text-transform: uppercase;
	letter-spacing: auto;
	line-height: 75px;
	margin-bottom: 10px;
	padding:3%;
	color: white;
	transition: 0.4s ease;
	
}
.mentoring .contenido-mentoring p
{
	font-size: 1.1em;
	text-align: center;
	padding: 3%;
	color: white;
	transition: 0.4s ease;

}
.mentoring .contenido-mentoring h1
{
	background-color: rgba(0,18,25,0.4);
	background-size: 0;
	border-radius: 10px;
	transition: 0.4s ease;

}

.mentoring .contenido-mentoring p
{
	background-color: rgba(0,18,25,0.3);
	border-radius: 10px;
	transition: 0.4s ease;

	
}
.mentoring img
{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;

}
/*BOTON BTN_MENTORING PARA MOVILES*/
.boton_mentoring 
{
	z-index: 9999;
	width: 85%;

	display: flex;
	justify-content: center;
	padding:10px;
}
.boton_mentoring a 
{
	font-size: 1.1em;
	color: white;
	background-color: #001219;
	border-radius: 30px;
	padding:10px;
	margin: 3px;
	text-decoration: none;
	white-space: nowrap;

}
.boton_mentoring a:hover
{
	font-size: 1.1em;
	color: #ee9b00;
	background-color: #001219;
	border-radius: 30px;
	transition: 0.3s ease;
	padding:10px;
	margin: 3px;
	text-decoration: none;
	white-space: nowrap;
}
.boton_mentoring img 
{
	position: static;

	width: 50px;
	padding:0;
}
/*FOOTER PARA MOVILES*/

footer  
{

	background-color: #001219;
	color: white;
	width: 100%;
	padding: 20px;
	
}
.container-footer-all 
{
	display: block;
}

.container-body h1
 {
	font-size: 20px;
	font-weight: 400;
}

.container-body img 
{
	width: 50px;
}

.acreditaciones img
{
	width: 100px;
	opacity: 0.6;
}
.acreditaciones a
{
	text-decoration: none;
	color: white;	

}
.acreditaciones a:hover 
{
	text-decoration: none;
	color: #ee9b00;	
	
}
.container-footer 
{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-top: 20px;
}
.copyright 
{
	font-size: 10px;
	transition: 0.3;
}
.copyright a 
{
	text-decoration: none;
	color: white;
	font-size: 10px;
	transition: 0.3;
}
.copyright a:hover
{
	text-decoration: none;
	color: #ee9b00;
	
}
.creador 
{
	width: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: row-reverse;
}
.creador img 
{
	width: 150px;
}
.creador p 
{
	text-align: left;
	font-size: 10px;
}
.container-footer-all 
{
	display: flex;
	width: 100%;
	justify-content: space-around;
}
.copyright 
{
	padding-top: 30px;
}

}