/* banner */
.blog-wrapper .banner {
  width: 100%;
}

.blog-wrapper .banner .content {
  width: 100%;
  height: 100%;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  animation: animatedBg 30s ease infinite;
}

/* topics-of-the-week */
.blog-wrapper .topics-of-the-week {
  align-items: center;
  display: flex;
  flex-flow: column;
  margin: 0 auto;
  max-width: 1405px;
  padding: 70px 40px;
}

.blog-wrapper .totw-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
}

.blog-wrapper .all-articles {
  width: auto;
  min-height: 50px;
  cursor: pointer;
}

.blog-wrapper .all-articles h3 {
  font-weight: 500;
  margin-right: 10px;
}

.blog-wrapper .all-articles {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.blog-wrapper .all-articles-list {
  display: none;
  position: absolute;
  border: 1px solid var(--black);
  background: var(--white);
  right: -25px;
  top: 50px;
  z-index: 4;
  padding-bottom: 50px;
  width: 100%;
  min-width: 340px;
}

.blog-wrapper .articles-list-header {
  display: flex;
}

.blog-wrapper .articles-list-header h2 {
  font-size: 22px;
  font-weight: 500;
}

.blog-wrapper .articles-list-header img {
  margin-right: 10px;
}

.blog-wrapper .all-articles:hover .all-articles-list {
  display: initial;
}

.blog-wrapper .all-articles-list .articles-list-header {
  width: 100%;
  padding: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey);
}

.blog-wrapper .all-articles-list ul {
  list-style-type: none;
  column-count: 1;
  padding: 30px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.blog-wrapper .all-articles-list ul a {
  color: var(--black);
  white-space: nowrap;
}

.blog-wrapper .all-articles-list ul li {
  width: max-content;
  margin-right: 120px;
  display: flex;
  margin-top: 25px;
  align-items: center;
}

.blog-wrapper .all-articles-list ul li:first-of-type {
  margin-top: 0;
}

.blog-wrapper .all-articles-list button {
  font-size: 22px;
  width: 100%;
  max-width: 230px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.blog-wrapper .filter-checkbox {
  min-width: 14px;
  height: 14px;
  padding: 0;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  appearance: none;
  border: 1.5px solid var(--black);
  border-radius: 0;
}

.blog-wrapper .filter-checkbox:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background-color: var(--black);
}

.blog-wrapper .totw-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-wrapper .blog-article {
  width: 49%;
  max-width: 605px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bnote-wrapper .blog-article > img,
.blog-wrapper .blog-article > img {
  width: 100%;
}

.bnote-wrapper .blog-article .content,
.blog-wrapper .blog-article .content {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bnote-wrapper .blog-article .content p,
.blog-wrapper .blog-article .content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.blog-wrapper .blog-article .content .author p {
  font-weight: 500;
}

.blog-wrapper .blog-article .content p.art-date {
  font-size: 14px;
  font-weight: 400;
}

.bnote-wrapper .blog-article .author,
.blog-wrapper .blog-article .author {
  display: flex;
  justify-content: space-between;
}

.bnote-wrapper .blog-article h3,
.blog-wrapper .blog-article h3 {
  margin-top: 20px;
  font-weight: 500;
  font-size: 22px;
}

.bnote-wrapper .blog-article .content > p,
.blog-wrapper .blog-article .content > p {
  margin-top: 20px;
}

.bnote-wrapper .blog-article a.btn-medium,
.blog-wrapper .blog-article a.btn-medium {
  height: 60px;
  margin-top: auto;
  max-width: max-content;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.blog-wrapper .totw-navigation {
  display: flex;
  margin: auto;
  margin-top: 30px;
}

.blog-wrapper .totw-navigation nav {
  display: flex;
  margin: auto 30px;
}

.blog-wrapper .totw-navigation nav a,
.blog-wrapper .totw-navigation nav span.current {
  color: var(--black);
  margin-right: 10px;
}

.blog-wrapper .totw-navigation nav a::after,
.blog-wrapper .totw-navigation nav span.current::after {
  content: "|";
  margin-left: 10px;
}

/* .blog-wrapper .totw-navigation nav a:last-of-type  {
  margin-right: 0;
}

.blog-wrapper .totw-navigation nav a:last-of-type::after{
  content: "";
  margin-left: 0;
} */
.blog-wrapper .totw-navigation nav .page-numbers:last-child::after {
  content: "" !important;
}

.blog-wrapper .totw-navigation img:hover {
  transform: scale(1.05);
}
.blog-wrapper .banner .info {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: white;
  width: 1255px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 135px;
}
.blog-wrapper .banner .info p {
  color: white;
}

@media (max-width: 1250px) {
  .blog-wrapper .banner .info {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .blog-wrapper .banner .info {
    padding: 0 10%;
  }
}
