/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-family: "Poppins", sans-serif;
}
.header {
  display: none;
}

#menu-toggle {
  display: none;
}
nav#mobile-menu {
    visibility: hidden;
    position: absolute;
}

/* PRELOADER */
#preloader {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	color: #bdec00;
	font-size: 2rem;
	background-color: #000;
	background-image: url(../img/background_preloader_desktop.jpg);
	background-repeat: no-repeat;
}
#cargando{
	  font-family: "Poppins", sans-serif;
	  color:#FFF;
	}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  width: 260px;
  height: 100vh;
  background: #0a0a0a;
  background-image:url(../img/background_aside_nav.jpg);
  padding: 20px;
  display: flex;
  flex-direction: column;
 border-right: 2px solid #262626;
}

.sidebar__top img{
    width: 60%;
    margin-left: 20%;
    margin-bottom: 50px;
}

.sidebar__menu a {
	display: block;
	padding: 12px;
	color: #fff;
	margin-bottom: 4px;
	cursor: pointer;
	transition: 0.3s;
	text-decoration: none;
}

.sidebar__menu a:hover,
.sidebar__menu a.active {
  background: rgba(189,236,0,0.15);
  color: #bdec00;
}

.sidebar__menu a:hover {
  	border-radius: 5px;
}

/*MENU MOBILE*/
.mobile-menu a {
	display: block;
	padding: 12px;
	color: #fff;
	margin-bottom: 4px;
	cursor: pointer;
	transition: 0.3s;
	text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(189,236,0,0.15);
  color: #bdec00;
}

.mobile-menu a:hover {
  	border-radius: 5px;
}

.social {
    margin-top: 3%;
	color: #FFF;
    border-top: solid 1px #262626;
}

.social h4{
    margin-bottom: 10px;
    margin-top: 15px;
}

.social-icons {
    margin-bottom: 15px;
}

a.active {
    border-bottom: 1px solid;
	border-radius: 5px 5px 0px 0px;
}

.footer {
    color: #fff;
    font-size: 10px;
}

/* HEADER MOBILE */
.header {
  display: none;
}

/* HERO */
.hero {
  margin-left: 260px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-image:url(../img/background_complete_desktop.jpg);
  /*background: linear-gradient(120deg, #0c0c0c, #1a0f2e);*/
}

/* PARTICULAS */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* TEXTO */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px;
}

.hero h1 {
  font-size: 8.9rem;
  color: #ddd;
  line-height: 1;
  margin-top: 13%;
  font-weight: 500;
}

.hero h1 span {
  color: #bdec00;
}

/* IMAGEN */
.hero__image {
  position: absolute;
  right: 10%;
  bottom: 0;
  z-index: 3;
}

.hero__image img {
  max-height: 90vh;
  transition: transform 0.2s ease-out;
}

/* TAG */
.hero__tag {
  position: absolute;
  bottom: 80px;
  right: 120px;
  color: #fff;
  font-style: italic;
  z-index: 4;
}
