@charset "utf-8";

/*---------------------------------------
---------------MENU SYSTEM---------------
---------------------------------------*/
.b-a,
.bar,
.bar:before,
.bar:after {
  transition: all 0.25s;
  content: "";
  position: absolute;
  right: 0px;
  top: 15px;
  margin: 3%;
  height: 4px;
  width: 40px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.95);
}
.menu-collapsed {
  transition: all 0.25s;
  right: 0px;
  margin: 2%;
  height: 36px;
  width: 36px;
  cursor: pointer;
  position: absolute;
  z-index: 10;
}
.menu-collapsed ul {
  transition: all 0s;
  position: absolute;
  left: -9000px;
}

.bar:before {
  top: -14px;
  left: -1px;
}
.bar:after {
  top: 13px;
  left: -1px;
}
.b-a-expanded,
.menu-expanded .bar:before,
.menu-expanded .bar:after {
  transition: all 0.25s;
  top: 0px;
}
.menu-expanded {
  transition: all 0.25s;
  text-align: center;
  border-radius: 0px;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
	
  display: flex;
  justify-content: center;
  position: fixed;
}
.menu-expanded ul {
  transition: all 0s;
  position: relative;
  list-style: none;
  left: 0;
  z-index: 11;
}
.menu-expanded a {
  transition: all 0.15s;
  text-decoration: none;
  font-size: 2em;
  padding: 5px;
  color: #FFFFFF;
}
.menu-expanded {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
.menu_txt {
  text-decoration: underline;
  transition: all 0.15s;
  font-size: 2em;
  padding: 5px;
  color: #FFFFFF;
}
.centered {
  margin: -20px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-expanded .bar {
  background-color: transparent;
  transition: all 0.25s;
  margin-top: 1rem;
}
.menu-expanded .bar:before {
  transform: rotate(45deg);
}
.menu-expanded .bar:after {
  transform: rotate(-45deg);
}
.row {
  padding-top: 150px;
}