.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*	for cubic button	*/
/*	for links  	*/
/***********************************************/
/*	for button-bg	*/
/******************************************/
/*********************	rotate button 	*********************/
/*======================= TYPOGRAPHY =======================*/
/*	button	*/
.btn {
  position: relative;
}
.btn > span {
  position: relative;
  z-index: 3;
  display: block;
}
.btn:before {
  content: "";
  position: absolute;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transform: translateY(-110%) scale(1);
  -o-transform: translateY(-110%) scale(1);
  -moz-transform: translateY(-110%) scale(1);
  -webkit-transform: translateY(-110%) scale(1);
  -ms-transform: translateY(-110%) scale(1);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #43c5e9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn:hover:before,
.btn:focus:before,
.btn:active:before,
.btn.active:before,
.btn.selected:before {
  transform: translateY(0%) scale(1);
  -o-transform: translateY(0%) scale(1);
  -moz-transform: translateY(0%) scale(1);
  -webkit-transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  opacity: 1;
}
/*	Lists	*/
/*	footer	*/
#copyright a > span > span {
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 0;
}
#copyright a > span > strong {
  display: block;
  color: #17a2c8;
  font-weight: inherit;
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
#copyright a:hover > span > span,
#copyright a:focus > span > span,
#copyright a:active > span > span,
#copyright a.active > span > span,
#copyright a.selected > span > span {
  opacity: 0;
  left: 10px;
}
#copyright a:hover > span > strong,
#copyright a:focus > span > strong,
#copyright a:active > span > strong,
#copyright a.active > span > strong,
#copyright a.selected > span > strong {
  opacity: 1;
}
/*	scroll top top 	*/
#back-top a {
  position: relative;
}
#back-top a > span {
  position: relative;
  z-index: 3;
  display: block;
}
#back-top a:before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  opacity: 0;
  z-index: 1;
  background: #43c5e9;
  transform: scale(2);
  -o-transform: scale(2);
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#back-top a:hover:before,
#back-top a:focus:before,
#back-top a:active:before,
#back-top a.active:before,
#back-top a.selected:before {
  opacity: 1;
  transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
