.project-cover-parent {
  overflow: hidden;
  background-color: #181818;
  min-height: 300px;
  -webkit-animation: lazyImageAnim 2s ease-in-out infinite;
          animation: lazyImageAnim 2s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.project-cover {
  transition-duration: 500ms;
}

.project-cover:hover {
  transform: scale(1.1);
}

.portfolio-detail-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-url {
  font-size: 1rem;
  font-style: italic;
  color: #fff;
}
.project-url a:hover {
  color: #224a7f !important;
}

.tech-bubble {
  background-color: #224a7f;
  color: #fff;
  padding: 8px 13px 8px 13px;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 10px;
}

#screenshots-carousel {
  text-align: center;
}

#screenshots-carousel img {
  -o-object-fit: contain;
     object-fit: contain;
}

#thumbnails {
  height: 500px;
  overflow: auto;
}

/* width */
#thumbnails::-webkit-scrollbar {
  width: 5px;
}

/* Track */
#thumbnails::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px #fff;
  border-radius: 10px;
}

/* Handle */
#thumbnails::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

/* Handle on hover */
#thumbnails::-webkit-scrollbar-thumb:hover {
  background: #FF0000;
}

#thumbnails > img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  cursor: pointer;
}

.nav-tabs {
  border-bottom: 1px solid #FF0000;
}

.nav-tabs .nav-link.active {
  border-color: #FF0000;
  border-bottom: unset;
  color: #fff;
  background-color: #FF0000 !important;
}

.project_subpages {
  list-style: circle !important;
  padding-left: 40px;
}
.project_subpages li a:hover {
  color: #224a7f !important;
}

@-webkit-keyframes lazyImageAnim {
  from {
    background-color: #181818;
  }
  to {
    background-color: #212121;
  }
}

@keyframes lazyImageAnim {
  from {
    background-color: #181818;
  }
  to {
    background-color: #212121;
  }
}
@media (max-width: 576px) {
  .project-div {
    border-bottom: 1px dashed #fff;
  }
}/*# sourceMappingURL=portfolio.css.map */