.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  z-index: 9999;
}

#cookie-bar a {
  color: #f44336;
  text-decoration: underline;
}

#cookie-bar .btn {
  margin-left: 12px;
}
.service-item {
  transition: all .4s ease;
  transform: translateY(20px);
  opacity: 0;
}

.service-item.visible {
  transform: translateY(0);
  opacity: 1;
}

.service-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s ease;
}

.service-icon img {
  width: 70px;
  transition: all .3s ease;
}

.service-item:hover .service-icon {
  border-color: #e74c3c;
  transform: scale(1.05);
}

.service-item:hover img {
  filter: hue-rotate(180deg);
}

.logo-navbar {
  height: 62px;
  width: auto;
}
