/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?9ppcuj');
  src:  url('fonts/icomoon.eot?9ppcuj#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?9ppcuj') format('truetype'),
    url('fonts/icomoon.woff?9ppcuj') format('woff'),
    url('fonts/icomoon.svg?9ppcuj#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon"], [class*=" icon"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', 'Arial',  sans-serif;
  font-size: 14px;
  color: #4d4d4d;
  background: #f2f2f2;
  height: 100%;
}

#wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#wrapper > div {
  margin: auto;
  width: 90%;
  max-width: 1024px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.logo_truper::before {
  display: block;
  content: "\e900";
  color: #f60;
  font-size: 40px;
  margin-bottom: 25px;
}

.title > hr {
  border: 0;
  height: 1px;
  background: #ccc;
  width: 90%;
  max-width: 400px;
  margin-bottom: 30px;
}

.title p {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
}

.opciones {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.opciones > div {
  display: block;
  width: 31%;
  max-width: 250px;
  border: 1px solid #b3b3b3;
    
  -webkit-border-radius: 5px;
     -moz-border-radius: 8px;
      -ms-border-radius: 8px;
       -o-border-radius: 8px;
          border-radius: 8px;
  
  -webkit-transition: all .5s;
     -moz-transition: all .5s;
      -ms-transition: all .5s;
       -o-transition: all .5s;
          transition: all .5s;
}


.opciones > div:hover {
  background: #f60;
  border: 1px solid #f60;
}

.opciones > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #4d4d4d;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  
  -webkit-transition: all .5s;
     -moz-transition: all .5s;
      -ms-transition: all .5s;
       -o-transition: all .5s;
          transition: all .5s;
}

.opciones > div a:hover {
  color: #fff;
}

.icon {
  font-size: 35px;
  margin-right: 10px;
  color: #f60;
    
  -webkit-transition: all .5s;
     -moz-transition: all .5s;
      -ms-transition: all .5s;
       -o-transition: all .5s;
          transition: all .5s;
}

.opc1 a .icon::before {
  content: "\e901";
}

.opc2 a .icon::before {
  content: "\e904";
}

.opc3 a .icon::before {
  content: "\e902";
}

.opciones > div:hover a .icon {
  color: #fff;
    
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
      -ms-transform: rotateY(180deg);
       -o-transform: rotateY(180deg);
          transform: rotateY(180deg);
}


@media screen and (max-width: 767px) {
  
  .opciones {
    flex-direction: column;
  }

  .opciones > div {
    width: 90%;
    max-width: 250px;
    margin: 0 auto 20px;
  }

  .opciones > div a {
}


@media screen and (max-width: 375px){
  #wrapper {
    min-width: 250px;
  }
  
  .title h1 {
    font-size: 35px;
  }
  .logo_truper::before {
    font-size: 25px;
  }
}

@media screen and (max-width: 1280px) and (max-height: 450px) {

  #wrapper > div {
    display: block;
    margin: 25px auto;
  }
}

















