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

/* Logo - Site name*/
.logo {
  padding: 0;
  float: left;
  margin-right: 10px;
  display: inline-block;
}
.logo:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -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-name {
  padding: 0;
}
.site-name a {
  font-size: 2.28rem;
  font-weight: 700;
  line-height: 1.1;
  color: #3f3f3f;
}
.site-name a:hover {
  text-decoration: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -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: 13px;
  line-height: 1.30;
  color: #3f3f3f;
  padding: 0;
  font-weight: 700;
}
@media (min-width:992px) and (max-width:1199px) {
  .site-name {
    margin-top: 5px;
  }
  .site-name a {
    font-size: 1.71rem;
  }
  .site-slogan {
    font-size: 12px;
  }
}
@media (max-width:991px) {
  .logo {
    float: none;
    margin-right: 0;
    display: block;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
    transform: scale(0.75);
  }
  .site-name,
  .site-slogan {
    text-align: center;
  }
  .site-name {
    margin: 5px 0 0 0;
  }
  .site-slogan {
    display: block !important;
    visibility: visible !important;
    padding: 5px 0 0 0 !important;
  }
}
