.container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  padding: 0 20px;
}
.container .row {
  display: flex;
  flex-wrap: wrap;
}

.blog-posts {
  padding: 80px 0;
  background-color: #F8F8F6;
}
.blog-posts h2 {
  font-size: 42px;
}
.blog-posts .categories-tabs {
  position: relative;
  display: block;
  margin-top: 30px;
}
.blog-posts .categories-tabs .names {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  cursor: pointer;
}
.blog-posts .categories-tabs .names::-webkit-scrollbar {
  height: 6px;
}
.blog-posts .categories-tabs .names::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.blog-posts .categories-tabs .names li {
  display: inline-block;
  margin: 0 5px;
}
.blog-posts .categories-tabs .names li a {
  display: inline-block;
  background-color: #E2E3DB;
  color: #767662;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
}
.blog-posts .categories-tabs .names li a:hover {
  background-color: #454411;
  color: #fff;
}
.blog-posts .categories-tabs .names li:first-child {
  margin-left: 0;
}
.blog-posts .categories-tabs .names li:last-child {
  margin-right: 0;
}
.blog-posts .categories-tabs .names li.active a {
  background-color: #454411;
  color: #fff;
}
.blog-posts .categories-contents {
  position: relative;
  display: block;
  margin-top: 30px;
}
.blog-posts .categories-contents .tabs-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-posts .categories-contents .tabs-content .blog-post {
  display: block;
  position: relative;
  width: calc(33.3333% - 20px);
  background-color: #fff;
  padding: 40px;
  margin-top: 30px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
.blog-posts .categories-contents .tabs-content .blog-post .date {
  color: #767662;
  font-size: 16px;
  font-weight: 400;
}
.blog-posts .categories-contents .tabs-content .blog-post .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
  margin-top: 25px;
  display: block;
}
.blog-posts .categories-contents .tabs-content .blog-post .exc {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  margin-top: 15px;
}
.blog-posts .categories-contents .tabs-content .blog-post .more {
  margin-top: 20px;
}
.blog-posts .categories-contents .tabs-content .blog-post .more a {
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .blog-posts .categories-contents .tabs-content .blog-post {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 992px) {
  .blog-posts .categories-contents .tabs-content .blog-post {
    width: 100%;
  }
}

.post-content {
  position: relative;
  padding: 80px 0;
}
.post-content .main-text {
  width: calc(100% - 420px);
  margin-right: 20px;
  margin: 0;
  padding-right: 40px;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
}
@media screen and (max-width: 992px) {
  .post-content .main-text {
    width: 100%;
    padding-right: 0;
  }
}
.post-content .sidebar {
  width: 420px;
}
@media screen and (max-width: 992px) {
  .post-content .sidebar {
    width: 100%;
  }
}
.post-content .sidebar .widget {
  background-color: #F8F8F6;
  padding: 32px;
  margin-bottom: 30px;
}
.post-content .sidebar .widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.post-content .sidebar .widget_categories {
  position: relative;
  display: block;
}
.post-content .sidebar .widget_categories ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.post-content .sidebar .widget_categories ul .cat-item {
  margin-right: 10px;
  margin-bottom: 10px;
}
.post-content .sidebar .widget_categories ul .cat-item:last-child {
  margin-right: 0;
}
.post-content .sidebar .widget_categories ul .cat-item a {
  display: block;
  position: relative;
  background-color: #E2E3DB;
  font-size: 12px;
  color: #767662;
  padding: 3px 10px;
}
.post-content .sidebar .widget_categories ul .cat-item a:hover {
  background-color: #454411;
  color: #fff;
}
.post-content .sidebar .widget-other-articles {
  position: relative;
  display: block;
}
.post-content .sidebar .widget-other-articles .woa-item {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.post-content .sidebar .widget-other-articles .woa-item .woa-thumb {
  position: relative;
}
.post-content .sidebar .widget-other-articles .woa-item .woa-thumb img {
  width: 84px;
  height: 84px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content .sidebar .widget-other-articles .woa-item .woa-content {
  width: calc(100% - 84px);
  padding-left: 10px;
}
.post-content .sidebar .widget-other-articles .woa-item .woa-content .date {
  font-size: 14px;
  font-weight: 400;
  color: #767662;
  line-height: 14px;
}
.post-content .sidebar .widget-other-articles .woa-item .woa-content .title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-top: 10px;
}/*# sourceMappingURL=app.css.map */