body {
    padding-top: 100px;
}

a {
  text-decoration: none !important;
  color: #18BC9C;
}

.btn-primary, .btn-primary:not([disabled]):not(.disabled):active, .btn-primary.focus, .btn-primary:focus {
  background-color: #18BC9C;
  border-color: #18BC9C;
  box-shadow: none;
}

.btn-primary:hover {
  background-color: #0f7864;
  border-color: #128f76;
}

a:hover {
  color: #0f7864;
}

nav .navbar-brand {
  color: #18BC9C !important;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

nav .nav-item {
  margin-right: 1.5rem;
}
nav .nav-item:last-child {
  margin-right: 0;
}

.footer {
  clear: both;
  background-color: #f5f5f5;
  padding: 15px 0;
  margin-top: 2rem;
}

.project {
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.12);
  border: 1px solid #d6d6d6;
  overflow: hidden;
  margin-bottom: 30px;
  background: #ffffff;
  position: relative;
  transition: all .5s ease;
}

.project > a {
  display: block;
  cursor: pointer;
}

@font-face {
    font-family: Norwester;
    src: url("../fonts/norwester.otf") format("opentype");
}

@font-face {
    font-family: Montserrat-Light;
    src: url("../fonts/Montserrat-Light.otf") format("opentype");
}

.project > a:hover .card-title {
  color: #18BC9C;
}

.card-title:hover {
  color: #18BC9C;
}

.card-text {
  color: #000;
  height: 70px;
  overflow: hidden;
}

.card-footer {
  text-align: right;
}

.hovereffect {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 15px;
  height: 220px;
  background-color: darkgreen;
  color: #fff;
}

.project .hovereffect h2 {
  font-family: Norwester;
  font-size: 3rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0;
}

.project .hovereffect h2 i {
  font-size: 1rem;
  vertical-align: middle;
  margin-left: 3px;
  margin-right: 3px;
}

.project .hovereffect i.fa-3x {
  margin-bottom: 5px;
}

.project .hovereffect > p {
  font-family: Montserrat-Light;
  font-size: 1.5rem;
  margin: 0;
}

.project .hovereffect > p.project-type {
  font-family: Norwester;
  margin-bottom: 10px;
    font-size: 1.3rem;
}

.project .hovereffect .project-name {
  line-height: 25px;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.project > a:hover .overlay {
  background-color: rgba(170,170,170,0.85);
}

.hovereffect p.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 57px 0 0 0;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: normal;
  height: 85%;
  width: 85%;
  position: absolute;
  top: -20%;
  left: 8%;
  padding: 70px;
}

.project > a:hover p.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: rgba(0,0,0,0.4);
}

.posts {
  list-style: none;
}

.posts li div.float-left {
  width: 125px;
}

#left-sidebar {
  display: none;
}

.fixed-sidebar {
  position: fixed;
  top: 220px;
  bottom: 50px;
}


  body.scrollspy-content #left-sidebar {
    display: block;
    float: left;
    width: 200px;
  }

  body.scrollspy-content #right-content {
   margin-left:225px;
  }

  @media screen and (max-width: 768px){
    body.scrollspy-content #left-sidebar {
      display: none;
    }

    body.scrollspy-content #right-content {
     margin-left: 0;
     float: none;
    }
  }

  @media screen and (max-width: 575px){
    ul.posts {
      padding-left: 0;
    }
  }
