@font-face {
  font-family: Enviro;
  src: url(../../Fonts/enviro-let.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin-left: 80px;
  margin-top: 80px;
  background-color: #5c5c5c;
  transition: margin-left 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

main {
  padding: 20px;
}

header {
  width: 100%;
  height: 80px;
  background: #3A3A3A;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 200;
}

.icon__menu {
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(10px);
}
.icon__menu i {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
}

.menu__side {
  width: 80px;
  height: 100%;
  background: #3A3A3A;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  font-size: 18px;
  z-index: 300;
  overflow: hidden;
  overflow-y: scroll;
  border-right: 20px solid #3A3A3A;
  transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu__side::-webkit-scrollbar {
  display: none;
}

/*Ocultar scroll para chrome, safari y opera */
/*Ocultar scroll para IE, Edge y Firefox */
.name__page {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.name__page h4 {
  font-family: "Enviro";
  font-size: 20px;
  font-weight: 100;
}
.name__page i {
  width: 20px;
  margin-right: 20px;
}

.options__menu {
  padding: 20px 30px;
  position: absolute;
  top: 80px;
}
.options__menu a {
  color: #ffffffb2;
  cursor: default;
  display: block;
  position: relative;
  transition: color 300ms;
}
.options__menu a:hover {
  color: white;
}
.options__menu .option {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  position: relative;
}
.options__menu .option i {
  width: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.options__menu .option h4 {
  font-weight: 100;
  cursor: pointer;
  font-family: "Enviro";
  font-size: 20px;
}

a.selected {
  color: #fff;
}

.selected:before {
  content: "";
  width: 3px;
  height: 80%;
  background: white;
  position: absolute;
  top: 10%;
  left: -30px;
}

/*Clases para usar en JavaScript */
.body_move {
  margin-left: 250px;
}

.menu__side_move {
  width: 250px;
}

@media screen and (max-width: 760px) {
  .body_move {
    margin-left: 0px;
  }

  .menu__side_move {
    width: 80px;
    left: -80px;
  }
}
section {
  text-align: center;
}
section h2 {
  font-size: 45px;
  font-family: "Enviro";
  color: #132186;
  font-weight: 100;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  padding: 20px;
}
.grid-container .grid-item {
  position: relative;
}
.grid-container .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.grid-container .grid-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #3838389f;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.grid-container .grid-item .overlay h3 {
  color: #ff5628;
  font-size: 25px;
  font-family: "Enviro";
  font-weight: 100;
}
.grid-container .grid-item:hover .overlay {
  height: 100%;
  cursor: pointer;
}

/*# sourceMappingURL=estilos.css.map */
