/*$Id$*/

body {
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
  font-weight: 100;
  position: relative;
  margin: 0px;
}

#maincontainer {
  margin: 0 auto;
  height: 100%;
  padding-top: 0vh;
  padding-bottom: 20px;
  text-align: left;
}

#maincontainer>div {
  padding-left: 2em;
}

.dre-logo {
  content: "";
  background: url(../images/deluge_logo.svg);
  background-repeat: no-repeat;
  height: 60px;
  width: 60px;
  margin-right: 10px;
  float: left;
}

#header {
  width: auto;
}

#footer {
  height: 30px;
  bottom: 0px;
  text-align: left;
  padding-left: 6.8em;
  width: 100%;
  position: fixed;
  padding-bottom: 4em;
  vertical-align: middle;
  line-height: 2;
  font-size: 15px;
  font-weight: 300;
}

#footer .logo {
  width: 66px;
  background-image: url(../images/zoho_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 24px;
  margin: 0 5px;
  margin-right: 8px;
  transform: translateY(6px);
  display: inline-block;
}

#footer span {
  font-weight: 400;
  font-size: 18px;
  color: black;
  transform: translateY(2px);
  display: inline-block;
}

.welcome-div {
  text-align: left;
  padding-top: 60px;
  padding-bottom: 30px;
  font-size: 50px;
  font-weight: 400;
  color: #226DB4;
}

.welcome-div>div {
  font-weight: 300;
  font-size: 30px;
  padding-left: 2px;
}

.view-links {
  font-weight: 300;
  padding-right: 140px;
  vertical-align: top;
  display: inline-block;
}

.links {
  /*padding: 2em;*/
  padding-left: 6.5em !important;
  /*padding-bottom: 20px;*/
}

.view-links div {
  line-height: 3em;
  font-size: 24px;
}

.view-links div a {
  color: black;
  padding-bottom: 4px;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-links div a i {
  font-size: 22px;
  padding-right: 10px;
  color: #6f6f6f;
  text-align: center;
  width: 30px;
}

.view-links div a:hover, .view-links div a:hover i {
  color: #049294;
}

.view-links div a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.view-links div a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}