
/**
 * @file
 * Visual styles for the site branding block.
 */

/* Logo - Site name*/
.logo {
  padding: 0;
  float: left;
  margin-right: 15px;
  display: inline-block;
}
.logo:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.logo img {
  height: 80px;
  margin-top: -10px;
}
.site-name a {
  font-size: 30px;
  font-weight: 700;
  line-height:1;
  text-decoration: none;
}
.site-name a:hover {
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.site-slogan {
  font-size: 14px;
  color: #000;
  line-height:1.30;
  padding-top:5px;
 }
.site-name__header {
  left: 0;
  padding-left: 15px;
  position: absolute;
  display: none;
}
.headers-wrapper div:first-of-type .site-name__header {
  display: block;
}
.onscroll .site-name__header {
  display: block;
}
.site-name__header a {
  font-size: 24px;
  line-height: 48px;
}
.site-name__header ~ .container {
  background-color: inherit;
  position: relative;
}
@media (max-width: 1479px) {
  .onscroll .site-name__header {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-name a {
    font-size: 34px;
  }
  .site-slogan {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .logo {
    float: none;
    margin-right: 0;
    text-align: center;
    width: 100%;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
    transform: scale(0.75);
  }
  .logo img {
    height: 50px;
    margin: auto auto;
  }
  .site-name a {
    margin: 5px 0 0 0;   
    text-align: center;
    font-size: 28px;
  }
  .site-slogan {
    display: none;
  }
}
