@import url(https://fonts.googleapis.com/css?family=Roboto:300,100);
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: black;
}
.content-info{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: black;
}
.content-width{
  text-align: center;
  padding-top: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.content-info h1{
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: 300
}
.content h1 {
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: 300;
}
.content-info h2 {
  font-size: 42px;
  font-weight: 100;
  border-bottom: 1px solid #0259a5;
  padding: 25px 0px 45px 0px;
}
.content h2 {
  font-size: 42px;
  font-weight: 100;
}

/* Inicio menu*/

.menu-container {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(-100%);
  transition: transform 0.5s;
  transition-delay: 0.5s;
  visibility: hidden;
}
.menu a {
  color: white;
}
.menu a:hover {
  color: white;
}
.menu ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 45px;
  color: white;
  min-height: 45px;
  padding: 15px;
  text-align: center;
}
.menu ul li a {
  cursor: pointer;
}

.menu-sliders {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: flex 0.45s;
}
.menu-sliders:nth-child(2) {
  flex: 1 0 100%;
  background: transparent;
}
.menu-sliders:nth-child(odd) {
  background: #005db7;
}

.plus-btn-pos {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 5;
}

.plus-btn {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: white;
  position: relative;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.plus-btn div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 3px;
  background: #0259a5;
  transition: transform 0.3s;
  transition-delay: 0.5s;
}
.plus-btn .r1 {
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}
.plus-btn .r2 {
  transform: translateX(-50%) translateY(-50%) rotate(-180deg);
}
.plus-btn:hover {
  background: #0259a5;
}
.plus-btn:hover div {
  background: white;
}
.plus-btn:active {
  box-shadow: none;
}

body.menu-open .menu-sliders:nth-child(2) {
  flex: 0 0 0%;
}
body.menu-open .menu {
  transform: translateY(0%);
  visibility: visible;
  pointer-events: all;
}
body.menu-open .plus-btn .r1 {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
body.menu-open .plus-btn .r2 {
  transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: baseline;
  align-content: stretch;
}
.flex-items {
  margin: 50px;
  padding: 8px;
  width: 180px;
  line-height: normal;
  position: relative;
  text-align: center;
  border-left: 1px solid #0259a5;
}
.flex-items:hover {
  background-color: #0259a5;
}
.flex-items a {
  color: black;
}
.flex-items:hover a{
  background-color: #0259a5;
  color: white;
}
.flex-items a:hover {
  color: white;
}

.flex-items:nth-child(1) {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
}

/* Fin menu*/

/* Inicio boton UP*/

.ir-arriba {
	display: none;
	padding: 14px 20px;
	background:#0259a5;
	font-size:20px;
	color:#fff;
  font-weight: bold;
	cursor:pointer;
	position: fixed;
	bottom:50px;
	right:50px;
}

a:link, a:visited, a:active {
  text-decoration:none;
}

/* Fin boton UP*/
