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;
}

/* CSS RESET DONE */


body {
  color: #fff;
  margin: 0 auto;
  font: 1em/1.3em Montserrat, Helvetica, sans-serif;
  background-color: #ccc;
}
body, html {
  height: 100%;
}
.clearfix {
  clear: both;
}
.container {
  width: 90%;
  height: 100%;
  padding: 20px 5%;
  text-align: center;
}
h1 {
  margin: 40px 0;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
  text-shadow: 0px 1px 0 rgba(0,0,0,.3);
  -webkit-font-smoothing: antialiased;
}
h2 {
  font-size: 28px;
  color: #fff;
  font-weight: normal;
  text-align: left;
  margin-bottom: 20px;
}
a {
  text-align: left;
  text-decoration: none;
  color: #fff;  
  margin: 0 10px;
}

p {
  line-height: 32px;
  padding: 0 0 40px 0;
  text-align: left;
}
i.fa-bars {
  margin-top: 2px;
  font-size: 28px;
  float: left;
}

/* Button styles */
.btn {
  box-sizing:border-box;
   -moz-box-sizing:border-box;
   -webkit-box-sizing:border-box;
  
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 50px;
  
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
    
  line-height: 50px;
  padding: 0 30px;  
  font-size: 14px;

  -webkit-box-shadow: 0 3px 0 0 #8756a5;
  box-shadow: 0 3px 0 0 #8756a5;
  background-color: #a870cc;
}
  
  .btn:active,
  .btn.active {
    top: 2px;
    -webkit-box-shadow: 0 1px 0 0 #8756a5;
    box-shadow: 0 1px 0 0 #8756a5;
  }

  .btn-small {
    padding: 0 20px;
    font-size: 10px;
    height: 40px;
    line-height: 40px;
  }


/* Parallax Flat Shadow */

.grid-container {
  position: relative;
  display: inline-block;
  width: 40%;
  height: 600px;
  padding: 20px;
  margin: 10px;
  overflow: hidden;
}
  /* colors */
  .grid-container.yellow { background-color: #ffe875; }
  .grid-container.green { background-color: #90e562; }
  .grid-container.blue { background-color: #7fc9ff; }
  .grid-container.red { background-color: #fb887c; }
  .grid-container.purple { background-color: #d89bff; }
  .grid-container.orange { background-color: #ffa866; }
  
  

@media (max-width: 860px) {
  .grid-container {
    width: 90%;
  }
}

.shadow-box {
  display: block;
  position: relative;
  z-index: 1;
  width: 300px;
  height: 400px;
}
  .shadow-box .content {
    position: relative;
    z-index: 1;
    width: inherit;
    height: inherit;
    background-color: #fff;
  }

  .shadow-box .shadows {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
  }
    .shadow-box .shadow {
      position: absolute;
      z-index: -1;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 200%;
      background-color: #444;

      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg); 
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    .shadow-box .shadow.top {
      right: 0;
      top: 0;
      -webkit-transform-origin: 100% 0;
      transform-origin: 100% 0;
    }
    .shadow-box .shadow.bottom {
      -webkit-transform-origin: 0 0;
      transform-origin: 0 0;
      right: 0;
      top: 100%;
    }




