@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300';

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-family: 'Open Sans Condensed', sans-serif;
}

div[class*=box-1] {
	height: 40%;
	width: 100%; 
  display: -webkit-box; 
  display: -webkit-flex; 
  display: -ms-flexbox; 
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
div[class*=box-2] {
	height: 40%;
	width: 100%; 
  display: -webkit-box; 
  display: -webkit-flex; 
  display: -ms-flexbox; 
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
div[class*=box-3] {
	height: 20%;
	width: 100%; 
  display: -webkit-box; 
  display: -webkit-flex; 
  display: -ms-flexbox; 
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-1 { background: #ffffff url("../bg3.jpg") no-repeat center center;}
.box-2 { background: #ffffff url("../bg.jpg") no-repeat center center;}
.box-3 { background: #ffffff url("../bg2.jpg") no-repeat center center;}

.btn {
text-decoration: none;
	line-height: 50px;
	font-weight: bold;
	height: 67px;
	text-align: center;
	width: 180px;
	cursor: pointer;
}

a:link, a:hover,a:visited, a:active  {
    text-decoration: none;
	color: #000;
}

/* 
========================
      BUTTON ONE
========================
*/
.btn-one {
	letter-spacing: 2px;
	color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	position: relative;
}
.btn-one span {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn-one::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: rgba(255,0,0,1);
	border-bottom-color: rgba(255,0,0,1);
	-webkit-transform: scale(0.1, 1);
	        transform: scale(0.1, 1);
}
.btn-one:hover span {
	letter-spacing: 4px;
	font-weight: bold;
}
.btn-one:hover::before {
	opacity: 1;	
	-webkit-transform: scale(1, 1);	
	        transform: scale(1, 1);
}
.btn-one::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background-color: rgba(0,0,0,0.1);
}
.btn-one:hover::after {
	opacity: 0;	
	-webkit-transform: scale(0.1, 1);	
	        transform: scale(0.1, 1);
}


/* 
========================
      BUTTON TWO
========================
*/
.btn-two {
	letter-spacing: 2px;
	color: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;	
}
.btn-two span {
	z-index: 2;	
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
}
.btn-two:hover span {
	color: #000;
	letter-spacing: 0px;
}

.btn-two::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	border: 1px solid rgba(255,255,255,1);
	background-color: rgba(0,0,0,1);
	}
.btn-two::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	border: 2px solid rgba(255,255,255,1);
	background-color: rgba(0,0,0,1);
}
.btn-two:hover::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
	border: 1px solid rgba(0,0,0,1);
  background-color: rgba(0,175,231,0.8);
}
.btn-two:hover::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
	border: 1px solid rgba(0,0,0,1);
  background-color: rgba(0,175,231,0.8);
}


/* 
========================
      BUTTON THREE
========================
*/
.btn-three {
	letter-spacing: 2px;
	color: #000;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
}
.btn-three::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(255,255,255,0.1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn-three:hover::before {
	color: #000;
	opacity: 0 ;
	-webkit-transform: scale(0.5,0.5);
	        transform: scale(0.5,0.5);
	font-weight: bold;
}
.btn-three:hover span {
	font-weight: bold;
}
.btn-three::after {
	color: #000;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid rgba(0,0,0,0.9);
	-webkit-transform: scale(1.2,1.2);
	        transform: scale(1.2,1.2);
}
.btn-three:hover::after {
	color: #000;
	opacity: 1;
	-webkit-transform: scale(1,1);
	        transform: scale(1,1);
}

/* tooltip */
.tooltip {
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-bottom: none;
}

.tooltip .tooltiptext {
    text-decoration: none;
    visibility: hidden;
    width: 220px;
    background-color: rgba(255,0,0,0.7);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    top: 110%;
    left: 20%;
    margin-left: -60px;
	font-weight: bold;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(255,255,255,0.1) transparent;
}

.tooltip:hover .tooltiptext {
    text-decoration: none;
    visibility: visible;
}

/* tooltip grupomorfo */
.tooltipgm {
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-bottom: none;
}

.tooltipgm .tooltiptext {
    text-decoration: none;
    visibility: hidden;
    width: 180px;
    background-color: rgba(0,175,231,0.5);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    top: 140%;
    left: 31%;
    margin-left: -60px;
	font-weight: bold;
}

.tooltipgm .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(255,255,255,0.1) transparent;
}

.tooltipgm:hover .tooltiptext {
    text-decoration: none;
    visibility: visible;
}

/* tooltip neimans */
.tooltipn {
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-bottom: none;
}

.tooltipn .tooltiptext {
    text-decoration: none;
    visibility: hidden;
    width: 380px;
    background-color: rgba(10,45,31,1);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    top: 110%;
    left: -25%;
    margin-left: -60px;
	font-weight: bold;
	letter-spacing: 1px;
}

.tooltipn .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(255,255,255,0.1) transparent;
}

.tooltipn:hover .tooltiptext {
    text-decoration: none;
    visibility: visible;
}

/* Nieve ------------------------------------------------------------*/
#ventana-flotante {
width: 480px;  /* Ancho de la ventana */
height: 308px;  /* Alto de la ventana */
background: #000;  /* Color de fondo */
position: fixed;
top: 140px;
left: 50%;
margin-left: -240px;
border: 4px solid red;  /* Borde de la ventana */
box-shadow: 0 5px 25px rgba(0,0,0,.1);  /* Sombra */
z-index:999;
}
#ventana-flotante #contenedor {
padding: 25px 10px 10px 10px;
}
#ventana-flotante .cerrar {
float: right;
border-bottom: 1px solid #bbb;
border-left: 1px solid #bbb;
color: #999;
background: white;
line-height: 17px;
text-decoration: none;
padding: 0px 14px;
font-family: Arial;
border-radius: 0 0 0 5px;
box-shadow: -1px 1px white;
font-size: 18px;
-webkit-transition: .3s;
-moz-transition: .3s;
-o-transition: .3s;
-ms-transition: .3s;
}
#ventana-flotante .cerrar:hover {
background: #000;
color: white;
text-decoration: none;
text-shadow: -1px -1px red;
border-bottom: 1px solid red;
border-left: 1px solid red;
}

.oculto {-webkit-transition:1s;-moz-transition:1s;-o-transition:1s;-ms-transition:1s;opacity:0;-ms-opacity:0;-moz-opacity:0;visibility:hidden;}

/*
      ___           ___           ___           ___     
     /__/|         /  /\         /  /\         /__/\    
    |  |:|        /  /::\       /  /::\        \  \:\   
    |  |:|       /  /:/\:\     /  /:/\:\        \  \:\  
  __|  |:|      /  /:/  \:\   /  /:/~/:/    _____\__\:\ 
 /__/\_|:|____ /__/:/ \__\:\ /__/:/ /:/___ /__/::::::::\
 \  \:\/:::::/ \  \:\ /  /:/ \  \:\/:::::/ \  \:\~~\~~\/
  \  \::/~~~~   \  \:\  /:/   \  \::/~~~~   \  \:\  ~~~ 
   \  \:\        \  \:\/:/     \  \:\        \  \:\     
    \  \:\        \  \::/       \  \:\        \  \:\    
     \__\/         \__\/         \__\/         \__\/    
*/
