html {
	scroll-behavior: smooth;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #141414;
	font-family: 'Roboto', sans-serif;
}

a {
	text-decoration: none;
}



/*___________________________________*/
/*_____________Particulas____________*/
/*___________________________________*/
#particles-js {
	height: 100vh; 
	width: 100%;
    position: fixed;
    z-index: -1;
}
/*___________________________________*/
/*___________________________________*/
/*___________________________________*/



/*___________________________________*/
/*_________Boton acia arriba_________*/
/*___________________________________*/
#subir__arriba{
    width: 50px;
    height: 50px;
	border-radius: 50%;
	margin-left: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: fixed;
    bottom: 20px;
    cursor: pointer;
    display: none;

	background-color: #000000;
	color: rgb(255, 255, 255);
  	box-shadow: 0 5px 0 #1f1f1f;
}
#subir__arriba:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 0 #dadada;
}
/*___________________________________*/
/*___________________________________*/
/*___________________________________*/



/*___________________________________*/
/*___________barra de carga__________*/
/*___________________________________*/
.pace .pace-progress {
	background: rgb(255, 255, 255); /*color barra progreso */
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	right: 100%;
	width: 100%;
	height: 4px;
	transition: width 0.5s ease-in-out;
}
/*___________________________________*/
/*___________________________________*/
/*___________________________________*/



/*___________________________________*/
/*____________Banner inicio__________*/
/*___________________________________*/
.banner {
	display:flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 80px);
}
.banner img {
	width:100%; /*ancho de la imagen*/ 
	height:100%; /*altura de la imagen*/
	object-fit:cover; /*indica que la imagen o video debe cubrir todo el espacio*/
}

/*___________________________________*/
/*___________________________________*/
/*___________________________________*/



/*___________________________________*/
/*________Barra de navegacion________*/
/*___________________________________*/
.navbar {
	background: #151515;
	height: 80px;
	box-shadow: rgba(255, 255, 255, 0.089) 0px 0px 10px; /*Luz de borde de la barra*/
	display: flex;
	position: sticky;
	top: 0;
	overflow: hidden;
}

.navbar a {
	flex: 1;
	height: 100%;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: rgb(255, 255, 255);
	transition: .2s ease-in-out all;
	font-weight: 500;
}

.navbar a:hover {
	background: rgba(255, 255, 255, 0.767);
	color: rgb(0, 0, 0);
	border-radius: 2%;
}

.navbar .indicador {
	width: 0px;
	height: 7px;
	background: rgb(255, 255, 255);
	position: absolute;
	bottom: 0;
	transition: .3s ease-out all;
	transform: translate(-500px);
}

/*___________________________________*/
/*___________________________________*/
/*___________________________________*/



/*___________________________________*/
/*______Secciones de la tajeta_______*/
/*___________________________________*/
.seccion {
	min-height: 100vh;
	max-width: 800px;
	width: 90%;
	margin: auto;

	padding-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

}

.seccion .card {
	background: #ffffff;
	height: 90%;
	padding: 40px;
	border-radius: 5px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.seccion h1 {
	font-size: 48px;
	margin-bottom: 20px;
}

.seccion p {
	line-height: 38px;
	margin-bottom: 40px;
	color: #494949;
	font-size: 20px;
}

.seccion img {
	width: 100%;
	vertical-align: top;
	margin-bottom: 20px;
}


@media screen and (max-width: 800px) {
	nav a {
		font-size: 14px;
		padding: 5px;
	}
}

@media screen and (max-width: 450px) {
	nav a {
		font-size: 12px;
	}
}
/*___________________________________*/
/*___________________________________*/
/*___________________________________*/



/*___________________________________*/
/*____________Seccion 1______________*/
/*___________________________________*/
.Cont-Redes {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;    
}
.iconR {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px;
    border-radius: 50%;
    transition: all .8s;
    cursor: pointer;
}

.iconR:hover {
    background-color: #e60073;
    box-shadow:  0 0 20px #e60073 ;
}

.iconR:hover:nth-child(2) {
    background-color: #1877f2;
    box-shadow:  0 0 20px #1877f2;
}

.iconR:hover:nth-child(3) {
    background-color: #d32525;
    box-shadow: 0 0 20px #d32525 ;
}

.iconR:hover:nth-child(4) {
    background-color: #ff4500;
    box-shadow:  0 0 20px #ff4500 ;
}

.iconR i {
    color: #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.7rem;
}

svg circle {
    stroke-dasharray: 150;
    transition: all .8s ease-in-out;
}

.iconR:hover circle {
    stroke-dasharray: 220;
}
/*___________________________________*/
/*___________________________________*/
/*___________________________________*/



/*___________________________________*/
/*_______________Boton_______________*/
/*___________________________________*/

button {
	position: relative;
}
div[class*=box] {
	height: 100%;
	width: 100%; 
  	display: flex;
  	justify-content: center;
  	align-items: center;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.button {
  display: inline-block;
  padding: 20px 60px;
  margin: 0 10px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  color: #fff;
  background-color: #111111;
  box-shadow: 0 5px 0 #1f1f1f;
  transition: all 0.2s ease-in-out;
}

.button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 0 #dadada;
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

/*___________________________________*/
/*___________________________________*/
/*___________________________________*/




/*___________________________________*/
/*_______________footer______________*/
/*___________________________________*/
.footer {
	padding:40px 0;
	margin-top: 2rem;
	background-color:#ffffff;
	color:#000000;
}
  
.footer .social {
	text-align:center;
	padding-bottom:35px;
}
  
.footer .social > a {
	font-size:24px;
	width:40px;
	height:40px;
	line-height:40px;
	display:inline-block;
	text-align:center;
	border-radius:50%;
	border:1px solid #ccc;
	margin:0 8px;
	color:inherit;
	opacity:0.75;
}
  
.footer .social > a:hover {
	opacity:0.9;
	background: #000000;
	color: #ffffff;
}
  
.footer .copyright {
	margin-top:15px;
	text-align:center;
	font-size:13px;
	color:#aaa;
	margin-bottom:0;
}
/*___________________________________*/
/*___________________________________*/
/*___________________________________*/