*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%;
  width: 100%;
}
a, a:visited, a:hover, a:active {
  text-decoration: none;
}

#main {
  height: 100%;
  width: 100%;
  font-family: 'Lato', sans-serif;
}

#main .site {
  position: relative;
  padding: 38px;
  transition: background-color 0.3s ease;
  flex: 1 1 auto;
}

#main .site::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  transition: background-color 0.3s ease;
}

#main .site-card {
  position: relative;
  background-color: #ffffff;
  box-shadow : 0px 0px 7px rgba(29, 29, 27, 0.75);
}

#main .site:hover::before {
  background-color: rgba(0,0,0,0.27);
}

#main .site-logo img {
  width: 100%;
  height: 110px;
}

#main .site.eml {
  background-image: url("/images/eml_bg.svg");
}

#main .site.aware {
  background-image: url("/images/aware_bg.svg");
}

#main .site.gem {
  background-image: url("/images/gem_bg.png");
  background-position: center;
  background-repeat: no-repeat;
}

#main .site-details {
  display: none;
}

#main .site-details hr{
  margin: 0 -10px 20px;
  border-color: #B1C9FC;
}

#main .site-details .site-caption {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}

#main .site-details .go-to-link {
  display: block;
  width: 100%;
  line-height: 50px;
  text-align: center;
  color: #19B0D1;
  font-size: 16px;
  border: 1px solid #19b0d1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#main .site-details .go-to-link:hover {
  background-color: #19B0D1;
  color: #ffffff;
}

#main .site-details .go-to-link[disabled] {
  background-color: #19B0D1;
  opacity: 0.5;
  color: #ffffff;
  cursor: default;
}
