/*******BLOG CARD********/
.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border-bottom: 1px dotted #696969;
  padding-bottom: 10px;
  margin: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-card:hover {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.blog-card .top_image {
  width: 200px;
  height: 100%;
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-card .top_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.blog-card .blog-body {
  padding: 2em 1em 1em;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}

.blog-card .blog-body .category-name {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #ffffff;
  background-color: #3d6094;
  padding: 0.2em 0.5em;
  border-radius: 0.2em;
  border-radius: 4px;
}

.blog-card .blog-body .card-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.blog-card .blog-body .card-title small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #696969;
}

.blog-card .blog-body .card-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: #696969;
}

.category-list {
  display: block;
}

.category-list h3 {
  display: block;
  width: 100%;
  background-color: #073F95;
  color: #fff !important;
  padding: 0.3em 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  display: block;
  width: 100%;
  padding: 0.5em;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 400;
  border-bottom: 1px dotted #696969;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.category-list li:hover {
  background-color: #f0f0f0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.blog-list {
  display: block;
}

.blog-list h3 {
  display: block;
  width: 100%;
  background-color: #073F95;
  color: #fff !important;
  padding: 0.3em 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.blog-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  display: block;
  width: 100%;
  padding: 0.5em;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 400;
  border-bottom: 1px dotted #696969;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-list li:hover {
  background-color: #f0f0f0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*******BLOG CARD********/
/*# sourceMappingURL=blog.css.map */