a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: none;
}

.navbar-light .navbar-brand {
  background-image: url('../../assets/img/logo_top.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 140px;
  height: 65px;
}

@media (max-width:760px) {
  .navbar-light .navbar-brand {
    height: 50px;
    width: 100px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animated {
  visibility: visible;
  animation-duration: 1.5s;
}

.filter {
  text-align: center;
  margin: 20px 0;
  padding: 0;
}

.filter li {
  display: inline-block;
  list-style-type: none;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 30px;
  border-top: solid 1px #4fbfa8;
  border-bottom: solid 1px #4fbfa8;
  margin: 0 10px 20px;
  transition: all 0.3s;
}

.filter li a {
  display: inline-block;
  padding: 10px;
  background: none;
  border: initial;
  cursor: pointer;
  color: #4fbfa8;
  outline: none;
  transition: all 0.3s;
}

.filter li:active, .filter li:hover {
  border: inital;
}

.filter li:active a, .filter li:hover a {
  color: #fff;
  text-decoration: none;
  background: #4fbfa8;
}

.project {
  margin-bottom: 30px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .project {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.project a {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.project h3 {
  font-weight: 400;
}

.project img {
  transition: all 0.3s;
}

.project .overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 0.4s;
  transform: translateY(100%);
  padding: 15px;
}

.project .overlay p {
  color: #fff;
}

.project .project-title {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project:hover img {
  transform: scale(1.2);
}

.project:hover .overlay {
  opacity: 1;
  transform: none;
}

.hero {
  width: 100%;
  overflow-x: hidden;
  height: calc(100% - 3.1rem);
  position: relative;
  background-image: url('../../assets/img/banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 40% 10%;
  border-bottom-right-radius: 40% 10%;
}

.lead {
  font-size: 1.4375rem;
  font-weight: 300;
}

.title {
  display: inline-block;
  font-size: 2.9rem;
  font-weight: 100;
  padding: 10px 0;
  margin-bottom: 44px;
  text-align: center;
  border-bottom: solid 1px #ccc;
  border-top: solid 1px #ccc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #555;
  margin-top: 20px;
  letter-spacing: 0;
}

.title span {
  font-size: 2.5rem;
}

footer {
  margin-top: 5rem;
  padding: 5rem 3rem;
  background: #ddd;
  position: relative;
}

.footer-logo {
  position: relative;
  display: flex;
  justify-content: center;
}

.footer-logo-before, .footer-logo-after {
  content: '';
  width: calc(33.333333% - 40px);
  height: 1px;
  background: #000000;
}

@media (min-width: 768px) {
  .horizontal-line::before {
    content: '';
    position: absolute;
    width: 1px;
    background: black;
    height: 4.5rem;
    transform: scale(1, 1);
  }

  .copyright {
    position: relative;
    top: 5rem;
  }
}

.nav-footer {
  list-style: none;
}

.o-grid div, .nav-footer {
  padding: 0;
}

.nav-footer-link, .nav-mobile-small-link {
  position: relative;
  display: inline-block;
}

.nav-footer-link::before, .nav-mobile-small-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform-origin: right center;
  height: 1px;
  background: #000000;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-footer-link:hover::before, .nav-mobile-small-link:hover::before {
  transform-origin: left center;
  transform: scale(1, 1);
}

@media (min-width: 1024px) {
  .nav-footer-link, .nav-mobile-small-link {
    padding: 0.25rem 0;
  }
}

@media (max-width: 1023px) {
  .nav-footer-link, .nav-mobile-small-link {
    padding: 4px 0;
  }
}
