body {
  background-color: #fff;
}
#flex-container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex-direction: row;
  -moz-box-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#flex-item {
  margin: auto;
}
.title {
  font-size: 58px;
  font-weight: 700;
  color: #3c8891;
  margin-bottom: -5px;
}
.main-text {
  font-size: 34px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 5px;
}
.sub-text {
  font-size: 19px;
  font-weight: 600;
  color: #333;
}
.sub-text a {
  font-weight: 700;
  color: #3c8891;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: underline;
}
.dashboard-btn {
  width: 245px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  border-radius: 5px;
  box-shadow: 0 2px #185961;
  display: block;
  font-size: 17px;
  font-weight: 700;
  background: #4697a1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #4697a1 0%, #3d8891 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #4697a1 0%, #3d8891 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #4697a1 0%, #3d8891 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  margin-top: 15px;
  margin-bottom: 5px;
}
.dashboard-btn i {
  font-weight: 700;
  font-size: 20px !important;
  margin-right: 7px;
}
@media only screen and (max-width: 992px) {
  .col-md-8 {
    text-align: center;
  }
  .dashboard-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .col-md-4 img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .hidden-xs-space {
    display: none;
  }
  .col-md-4 img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    max-width: 150px;
  }
  .title {
    font-size: 45px;
    font-weight: 700;
    color: #3c8891;
    margin-bottom: -5px;
  }
  .main-text {
    font-size: 25px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
  }
  .sub-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }
}