/* 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;
}

/* CSS RESET DONE */

body, html { height: 100%; }

body {
  
  margin: 0 auto;
  font: 1em/1.3em Montserrat, Helvetica, sans-serif;
}
.clearfix {
  clear: both;
}
.container {
  padding-top: 20px;
  height: 180px;
  width: 100%;
  text-align: center;
  background-color: #78b;
}
h1 {
  margin: 30px 0;
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  text-shadow: 0px 1px 1px #888;
  color: #fff;
}
a {
  text-decoration: none;
  color: #fff;  
  margin: 0 10px;
}

/* 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: 53px;
  
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
    
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
}

  .btn span.icon, .btn span.title {
    display: block;
    position: relative;
    line-height: 50px;
    padding: 0 30px;  
    
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;  
  }
    
  .btn span.icon {
    font-size: 23px;
    background-color: #00967f;    
    
    -webkit-box-shadow: 0 3px 0 0 #007261;
    box-shadow: 0 3px 0 0 #007261;
  }
  .btn span.title {        
    -webkit-box-shadow: 0 3px 0 0 #1275b7;
    box-shadow: 0 3px 0 0 #1275b7;
    background-color: #1e88ce;
  }
  
  .btn:active,
  .btn.active {
    height: 51px;
  }

.btn-small {
  height: 30px;
  font-size: 12px;
  line-height: 10px;
}
  a.btn-small span.btn {
    height: 30px;
  }


.btn-slide	{
	position: relative;
	display: inline-block;
	height: 50px;
 	width: 200px;
	line-height: 50px;
	padding: 0 20px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;  
	transition: .5s;
	-webkit-transition: .5s;
	border: 2px solid #444;
	}
.btn-slide:hover {
	background-color: #444;
	}
.btn-slide:hover span.circle {
	left: 100%;
	margin-left: -45px;
	background-color: #36a7f3;
	}
.btn-slide:hover span.title {
	left: 40px;
	opacity: 0;
	color: #fff;
	}
.btn-slide:hover span.title-hover {
	opacity: 1;
	left: 40px;
	color: #fff;
	}
.btn-slide span.circle {
	display: block;
	background-color: #555;
	position: absolute;
	float: left;
	margin: 5px;
	line-height: 42px;
	height: 40px;
	width: 40px;
	top: 0;
	left: 0;
	transition: .5s;
	-webkit-transition: .5s;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;  
	}
.btn-slide span.title,
.btn-slide span.title-hover { 
	position: absolute;
	left: 80px;
	transition: .5s;
	-webkit-transition: .5s;
	}
.btn-slide span.title-hover {
	left: 80px; 
	opacity: 0;
	}





  
