
/**** 
      GENERAL
****/

*
{
    margin: 0;
    padding: 0;
}

html,
body
{
    /* overflow: hidden; */
    /* position: relative; */
    /* background: #F4F4D9; */
    /* color: #2D211F; */
    /* font-size: 16px; */
    /* line-height: 1.8; */
    /* font-family: sans-serif; */
    /* max-width: 850px; */
    /* padding: 15px 30px; */
    overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: hidden;
}

.webgl-mies, .webgl-eames
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000055;
    margin-top: 255px;
    cursor: grab;
}


/****  TEXT ****/

.rect
{
    position: absolute;
    height: 214px;
    top: 7%;
    background-color: #00000011;
    color: #00000055;
    margin-top: 55px;
    text-align: justify;
    padding: 5px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 3%;
    align-content: center;

    @media (min-width: 768px)
    {
    width: 80%;
    }

    @media (min-width: 1500px)
    {
    width: 90%;
    }

}
.rect:hover
{
  background-color: #00000033;
  color: #000000FF;
}    


/****  POINTS****/
.point
{
    position: absolute;
    top: 50%;
    left: 50%;
}

.point:hover .text
{
    opacity: 1;
}



.point:hover .label
{
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: -20px;
    left: -20px;
    background: #e60d0d88;
    border-radius: 50%;
}

.point.visible .label
{
    transform: scale(1, 1);
}

.point .label
{
    position: absolute;
    top: -12.5px;
    left: -12.5px;
    width: 25px;
    height: 25px;
    border-radius: 25%;
    background: #00000055;
    color: #ffffff;
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    line-height: 25px;
    font-weight: 100;
    font-size: 14px;
    cursor: help;
    transition: border-radius 0.3s;
    transition: width 0.3s;
    transition: height 0.3s;
    transition: line-height 0.3s;
    /* transition: top 0.3s;
    transition: left 0.3s;
*/
    transform: scale(0.001, 0.001);
    transition: transform 0.3s;
}

.point .text
{
    position: absolute;
    top: -100px;
    left: -200px;
    width: 200px;
    padding: 20px;
    border-radius: 4px;
    background: #00000077;
    color: #ffffff;
    line-height: 1.3em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 100;
    border-radius: 4px;
    border: 1px solid #00000077;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    align-self: center;
}


/* LOADING BAR */
.loading-bar
{
    position: absolute;
    top: 92%;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.5s;
    will-change: transform;
}

.loading-bar.ended
{
    transform-origin: 100% 0;
    transition:  transform 1.5s ease-in-out;
}


/****  HEADER ****/

.header{
    position: relative;
}
.right-content{
    display: flex;
    align-content: flex-;
}


.center-content
{
    display:block;
    margin-left: 7%;
    margin-right: auto;
    color: #e94057;
    width: 100%;
    margin-top: 5px;;
}

#info-autor{
  position: absolute;
  display: inline-block;
  font-size: 1.3rem;
  top: 30px;
  text-decoration: underline;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  @media (min-width: 768px)
  {
    font-size: 1.7rem;
  }

  @media (min-width: 1500px)
  {
    font-size: 2.3rem;
  }

  
}

.lang{
  position: absolute;
  font-size: 0.85rem;
  top: 7px;
}

/****  MENU ****/

.menu-nav{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    background-color: #999999;
    padding: 1rem 2rem;
    transform: translateX(-320px);
    transition: transform .3s;
    z-index: 2;
  }
  
  .menu-nav.visible{
    transform: translateX(0);
  }
  
  .menu-nav ul{
    list-style: none;
    padding-left: 0;
  }
  
  .menu-nav li{
    margin-bottom: 1rem;
  }
  .menu-nav li:hover{
    color: #EA7341;
  }
  
  .menu-nav a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
  }
  
  .mostrar-menu{
    background-color: #e94057;
    color: white;
    padding: .5rem 1rem;
    border: 0;
    border-radius: .3rem;
    cursor: pointer; 
    margin-right: 3%;
    margin-top: 3%;
    margin-left: auto;
    justify-content: center;
  }
  .mostrar-menu:hover{
    background-color: #ED7341;
  }
  
  .cerrar-menu{
    background-color: transparent;
    border: 0;
    padding: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0;
  }

  .ithake{
    position: absolute;
    display: flex;
    right: 7%;
    bottom: 3%;
    font-size: 1.6rem;
    font-family: 'Roboto', sans-serif;
  }
  .ithake:hover{
    color: #ED8A60;
  }

/****  FOOTER ****/

  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #e94057;
    color: white;
    text-align: center;
    z-index: 3;
    margin-top: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.83rem;
    font-weight:300;
    
  }

.logo{
    position: absolute;
    display: flex;
    z-index: 1;
    bottom: 21px;
    right: 3px;
    background-color: #00000033;
    /* top:92%;
    left: 85%; */
    height: 50px;
    width: 50px;
  }
.logo:hover{
    background-color: #00000011;
    @media (min-width: 768px)
    {
    }

    @media (min-width: 1500px)
    {
    }
}
.logo-icon{
  position: absolute;
  display: flex;
}
.link
{
  position: fixed;
    height: 63%;
    width: 63%;
    z-index: 1;
    top:92%;
    left: 85%;
    cursor: pointer;
    z-index: 2;
}

.contact{
  position: absolute;
  top:15%;
  text-align: justify;
  padding: 7%;
}

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