nav .navbar-brand img {
  width: 115px;
  height: 47px;
}

main {
  min-height: calc(100vh - 73px);
}

.clickable:hover {
  cursor: pointer;
}

.row h2 {
  font-size: 28px;
}

.row-content {
  padding: 40px 0 0;
}

.topics-img-wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.topics-img-wrapper > .topics-img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.topics-img-wrapper > .topics-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
}

.topics-img-wrapper > .topics-caption > .topics-title {
  text-transform: capitalize;
  margin: 0;
  font-size: 24px;
}

.topics-img-wrapper:hover .topics-caption {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.trending-img-wrapper {
  width: 300px;
  height: 300px;
}

.trending-img-wrapper > img {
  width: 300px;
  height: 300px;
}

.modal-header {
  background-color: #DC1A27;
  color: white;
}

.modal-img-wrapper {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  overflow: hidden;
}
/*# sourceMappingURL=styles.css.map */