header{
  padding: 5px;
}
/* form */
.form-control, .btn{
  border-radius: 0px;
}
.form-control:focus{
  border-radius: 0px;
  border-color: #286090;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(40, 23,110, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(40, 23,110, .6);
}
/* btn */
.btn-primary{
  background-color: #E67617;
  border-color: #E67617;
}
/* top-bar */
.top-bar{
  background-color: #28176E;
  color: #FFF;
  text-align: center;
  padding-top: 5px;
  min-height: 45px;
}
/* navbar */
.navbar-header{
  min-height: 80px;
}
.navbar-brand img{
  max-height: 80px;
  margin-top: -15px;
}
.nav{
  padding-top: 15px;
  font-size: 15px;
}
/* carousel */
#carousel-example-generic{
  margin-top: -20px;
}
/* card */
.card .card-image{
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.card .card-image img{
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card .card-image:hover img{
  -webkit-transform: scale(1.2) rotate(-7deg);
  -moz-transform: scale(1.2) rotate(-7deg);
  -ms-transform: scale(1.2) rotate(-7deg);
  -o-transform: scale(1.2) rotate(-7deg);
  transform: scale(1.2) rotate(-7deg);
}
.card{
  font-family: 'Roboto', sans-serif;
  margin-top: 0px;
  margin-bottom: 0px;
  position: relative;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.card .card-content {
  padding: 10px;
}
.card .card-content .card-title, .card-reveal .card-title{
  font-size: 24px;
  font-weight: 200;
}
.card .card-action{
  padding: 20px;
  border-top: 1px solid rgba(160, 160, 160, 0.2);
}
.card .card-action a{
  font-size: 15px;
  color: #E67617;
  text-transform:uppercase;
  margin-right: 20px;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.card .card-action a:hover{
  color:#ffd8a6;
  text-decoration:none;
}
.card .card-reveal{
  padding: 20px;
  position: absolute;
  background-color: #FFF;
  width: 100%;
  overflow-y: auto;
  /*top: 0;*/
  left:0;
  bottom:0;
  height: 100%;
  z-index: 1;
  display: none;
}
.card .card-reveal p{
  color: rgba(0, 0, 0, 0.71);
  margin:20px ;
}
.btn-custom{
  background-color: transparent;
  font-size: 18px;
}
/* footer */
footer{
  margin-top: 30px;
  background-color: #E67617;
  color: #FFF;
}
footer a{
  color: #FFF;
}
footer a:hover{
  text-decoration: none;
  color: #28176E
}
/* totop */
.totop{
  display: block;
  width: 40px;
  height: 40px;
  line-height: 0px;
  text-align: center;
  font-size: 35px;
  background: #E67617;
}
.totop a, .totop a:visited {
  color: #FFF;
}
.totop a:hover{
 color: #28176E
}