

/* Intro */
.intro {
  text-align: center;
  width: 100%;
  position: relative;
}

.intro .icons-author {
  position: absolute;
  bottom: 70px;
  right: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.intro .icons-author a:hover {
  color: #FFF;
}
.intro .container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 60px;
}

.intro .overlay {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  color: #FFF;
  display: table;
}
.intro .overlay .inner {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.intro .items-wrapper {
  float: left;
  position: relative;
  margin: auto;
}
.intro .btn-group {
  margin-top: 18px;
  font-size: 0;
}

.intro .btn-group .link {
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
  font-size: 14px;
  margin: 20px 10px 0;
  opacity: 0.6;
}

.intro .btn-group .link:hover {
  opacity: 1;
}

.intro .item,
.intro .item svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.intro .item svg {
  visibility: visible;
}

.intro .item svg.drawsvg-initialized {
  visibility: visible;
}

.intro .item {
  -webkit-transition: .6s;
          transition: .6s;
  opacity: 1;
}
/*
@-webkit-keyframes comeIn {
  from {
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes comeIn {
  from {
    -o-transform: translate3d(0, -30px, 0);
       transform: translate3d(0, -30px, 0);
  }
  to {
    -o-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes comeIn {
  from {
    transform: translate3d(0, -30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes comeIn {
  from {
    transform: translate3d(0, -30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
*/
.intro .item.active {
  opacity: 1;
  -webkit-animation: comeIn .6s;
          animation: comeIn .6s;
}

.intro .item svg {
  margin: auto;
  margin: 0 0 auto;
}
