html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
  background-color: #F5F5F5;
  height: 100vh;
  margin: 0;
}
body, h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 300;
    line-height: 1.5em;
}
p {
    margin: 0 0 10px;
}
a {
    text-decoration: none;
    background-color: transparent;
}

.nav {
  background-color: #212121;
  padding: 1em;
  margin-top: 0;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.nav:after, .nav:before {
  display: table;
  content: " ";
}

.nav>li {
  float: left;
  position: relative;
  display: block;
}
.nav>li>a {
  border-radius: 4px;
  position: relative;
  display: block;
  padding: 10px 15px;
  line-height: 24px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  min-width: 100px;
  text-align: center;
  color: #FFFFFF;
  transition: all .3s;
}
.nav > li > a:hover {
  background-color: rgba(200, 200, 200, 0.2);
  text-decoration: none;
}
.nav > li.active > a, .nav > li.active > a:focus, .nav > li.active > a:hover {
  background-color: #00bcd4;
      color: #FFFFFF;
      box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
}
.tab-space {
  padding-top: 20px;
}
.tab-content>.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-out;
}
.tab-content>.active {
  display: block;
  opacity: 1;
}

.wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  width: 100%
}
.flex-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 30%;
  flex: 1 1 30%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box;
}
.card {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
  color: rgba(0,0,0, 0.87);
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  text-align: center;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: animation;
  animation-name: animation;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.icon i {
  color: #00bcd4;
  font-size: 55px;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  width: 100px;
  line-height: 100px;
  height: 100px;
  max-height: 130px;
  margin: 10px 0;
}
.card-description {
    color: #999999;
}
.btn {
  display: inline-block;
  border-radius: 30px;
  background-color: #5bc0de;
  color: #FFFFFF;
  box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
  position: relative;
  padding: 12px 30px;
  margin: 10px 1px;
  font-size: 12px;
  line-height: 1.42857143;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  will-change: box-shadow, transform;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
}

@-webkit-keyframes animation {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes animation {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 768px)
.btn, .btn-morphing {
    margin-bottom: 10px;
}
