body {
  font-family: "Montserrat";
}

img {
  max-width: 100%;
}

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

nav {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: white;
  padding: 20px;
  box-shadow: 0px 1px 5px 0px rgba(156, 156, 156, 0.31);
  z-index: 99;
}
nav img {
  max-width: 200px;
}
nav ul {
  list-style: none;
  margin: auto 0 auto auto;
}
nav ul li {
  color: #666;
  font-size: 20px;
  font-family: "Open Sans";
}
nav ul li span {
  cursor: pointer;
}
nav ul li span:hover {
  color: #ffe161;
}
nav .is-active {
  color: #FACB00;
}
@media screen and (max-width: 480px) {
  nav img {
    max-width: 150px;
  }
  nav ul li {
    font-size: 16px;
  }
}

.blog-list {
  padding-top: 100px;
  min-height: calc(100vh - 75px);
}

.category-list {
  position: fixed;
  overflow: hidden;
  max-width: 350px;
}
.category-list ul {
  border-radius: 8px;
  border: 1px solid #BEBCBB;
  padding: 20px;
  list-style: none;
}
.category-list ul li {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #BEBCBB;
}
.category-list ul li.is-active {
  color: #FACB00;
  font-weight: bolder;
}
.category-list ul li:hover {
  color: #ffe67b;
}
@media screen and (max-width: 1024px) {
  .category-list {
    max-width: 30vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  .category-list {
    position: relative;
    max-width: 100%;
  }
}

.truncate {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: #4D7EFF;
  cursor: pointer;
  font-size: 12px;
  line-height: 12px;
}
.read-more img {
  width: 15px;
}
.read-more:hover img {
  margin-left: 15px;
  transition: all 0.5s ease;
}

.card .card-body small {
  font-size: 10px;
}
.card .card-body .category {
  font-weight: 400;
  font-size: 14px;
}
.card .card-body h5 {
  font-size: 16px;
  font-family: "Open Sans";
}
.card .card-text {
  font-size: 13px;
}

.blog-detail {
  padding-top: 100px;
}
.blog-detail .breadcrumb {
  font-family: "Open Sans";
  font-size: 12px;
  text-align: right;
  display: block;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 3rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0.25rem;
  color: #666;
}
.blog-detail .breadcrumb span {
  cursor: pointer;
}
.blog-detail .breadcrumb span:hover {
  color: #999999;
}
.blog-detail .breadcrumb span:last-child {
  color: #BEBCBB;
  cursor: default;
}
.blog-detail .category {
  text-transform: uppercase;
  background-color: #FACB00;
  padding: 10px 20px;
  color: white;
}
.blog-detail .blog-header .title {
  font-size: 22px;
  font-weight: 600;
}
.blog-detail .blog-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
}
.blog-detail .blog-body {
  margin-top: 20px;
  margin-bottom: 40px;
}
.blog-detail .blog-body .tags span {
  font-size: 12px;
  color: white;
  padding: 5px 10px;
  margin-right: 10px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #ffc2c6;
}

footer {
  background-color: #3F9F49;
  color: #fff;
  height: 60px;
  line-height: 60px;
}/*# sourceMappingURL=blog.css.map */