body {
  font: 400 15px Roboto, sans-serif;
  line-height: 1.8;
  color: #818181;
}
.jumbotron {
  background-color: #3690f4;
  color: #ffffff;
  padding: 100px 25px;
  font-family: Roboto, sans-serif;
}
.bg-grey {
  background-color: #f6f6f6;
}
.container-fluid {
  padding: 60px 50px;
}
.logo {
  color: #443ff4;
  font-size: 200px;
}
.logo-small {
  color: #443ff4;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }
}
.item span {
  font-style: normal;
}
.navbar-default .navbar-toggle {
  background-color: #3677db;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #d0d0d0;
}
.navbar {
  margin-bottom: 0;
  background-color: #3690f4;
  z-index: 9999;
  border: 0;
  font-size: 12px !important;
  line-height: 1.42857143 !important;
  letter-spacing: 4px;
  border-radius: 0;
  font-family: Bad Script, sans-serif;
  box-shadow: 0 10px 8px 2px rgba(0, 0, 0, 0.2);
  -moz-animation-name: dropNavbar;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: ease-in;
  -moz-animation-duration: 1.5s;
  -webkit-animation-name: dropNavbar;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-duration: 1.5s;
  animation-name: dropNavbar;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1.5s;
}
.navbar .tall {
  margin-top: 10px;
}
@-moz-keyframes dropNavbar {
  0% {
    -moz-transform: translateY(-60px);
  }
  80% {
    -moz-transform: translateY(-60px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-webkit-keyframes dropNavbar {
  0% {
    -webkit-transform: translateY(-60px);
  }
  80% {
    -webkit-transform: translateY(-60px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes dropNavbar {
  0% {
    transform: translateY(-60px);
  }
  80% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0);
  }
}
.navbar li a,
.navbar .navbar-brand {
  color: #fff !important;
}
.navbar-nav li a:hover,
.navbar-nav li.active a {
  color: #3690f4 !important;
  background-color: #fff !important;
}
.navbar-default .navbar-toggle {
  border-color: transparent;
  color: #fff !important;
}
footer .glyphicon {
  font-size: 20px;
  margin-bottom: 20px;
  color: #3690f4;
}
h1 {
  color: #303030;
  margin-bottom: 30px;
}
h4 {
  font-size: 19px;
  line-height: 1.375em;
  color: #303030;
  font-weight: 400;
  margin-bottom: 30px;
}
.slideanim {
  visibility: hidden;
}
.slide {
  /* The name of the animation */
  animation-name: slide;
  -webkit-animation-name: slide;
  /* The duration of the animation */
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  /* Make the element visible */
  visibility: visible;
}
/* Tweets */
div.twt-item {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
}
div.twt-img-ct img {
  border-radius: 50%;
}
/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}
.imageholder {
  overflow: hidden;
  position: relative;
}
.imageholder img {
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.imageholder .overlay {
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  -moz-transition: opacity, 0.3s;
  -o-transition: opacity, 0.3s;
  -webkit-transition: opacity, 0.3s;
  transition: opacity, 0.3s;
  font-size: 100px;
  color: #443ff4;
}
.imageholder > img {
  max-width: 100%;
  height: auto;
}
.imageholder:hover img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.5;
}
.imageholder:hover .overlay {
  opacity: 1;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pull-right {
  float: right;
}
/*# sourceMappingURL=fust.css.map */