.content-boxed {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
  color: #474959;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8em;
}

header.page-header {
  max-width: 1180px;
  text-align: center;
}

.archive-nav-menu-wrap > nav {
  display: flex;
}

.archive-nav-menu-wrap .menu {
  background-color: #f8f8f8;
  padding: 10px 0;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2;
  border-radius: 19px;
  list-style: none;
  margin-inline-end: auto;
  margin-inline-start: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .archive-nav-menu-wrap .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .archive-nav-menu-wrap .menu {
    width: 100%;
  }
}

.archive-nav-menu-wrap .menu > .menu-item {
  position: relative;
  line-height: normal;
  list-style: none;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .archive-nav-menu-wrap .menu > .menu-item {
    text-align: left;
  }
}
.archive-nav-menu-wrap .menu > .menu-item a {
  text-decoration: none;
  color: #000071;
  font-weight: 400;
  font-size: 18px;
  padding: 12px 0;
  display: block;
}
.archive-nav-menu-wrap .menu > .menu-item:hover > a {
  color: #2b65e8;
}

.archive-nav-menu-wrap .menu > .menu-item.current-menu-item > a {
  font-weight: 700;
}

.archive-nav-menu-wrap .menu > .menu-item.menu-item-has-children > a {
  padding-right: 20px;
}
.archive-nav-menu-wrap .menu > .menu-item.menu-item-has-children > a:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 7.5L9 11.25L12.75 7.5' stroke='%23000071' style='stroke:%23000071;stroke:color(display-p3 0.0000 0.0000 0.4431);stroke-opacity:1;' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 15px;
  transition: all 0.2s ease;
}
.archive-nav-menu-wrap .menu > .menu-item.menu-item-has-children > a.active:after {
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .archive-nav-menu-wrap .menu > .menu-item:hover > .sub-menu {
    display: flex;
    flex-direction: column;
  }
}

.archive-nav-menu-wrap .menu > .menu-item > .sub-menu {
  list-style: none;
  border-radius: 12px;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .archive-nav-menu-wrap .menu > .menu-item > .sub-menu {
    background: #fff;
    box-shadow: 0 0 8px 0 rgba(9, 54, 156, 0.12);
    border: 1px solid #dde6fb;
    display: none;
    position: absolute;
    left: -20px;
    top: 100%;
    width: 250px;
    max-height: none !important;
  }
}
@media screen and (max-width: 767px) {
  .archive-nav-menu-wrap .menu > .menu-item > .sub-menu {
    max-height: 0;
  }
}
.archive-nav-menu-wrap .menu > .menu-item > .sub-menu > .menu-item {
  display: flex;
  margin: 0;
  padding: 0;
}
.archive-nav-menu-wrap .menu > .menu-item > .sub-menu > .menu-item.current-menu-item a {
  font-weight: 700;
}
.archive-nav-menu-wrap .menu > .menu-item > .sub-menu > .menu-item > a {
  padding: 12px 10px;
  margin: 0;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .archive-nav-menu-wrap .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 20px;
  }
  .archive-nav-menu-wrap .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    background-color: #f8f8f8;
  }
}
@media screen and (max-width: 767px) {
  .archive-nav-menu-wrap .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    color: #2b65e8;
  }
}

.page-title {
  font-size: 60px;
  font-weight: 400;
  color: #000071;
}

.grid-item {
  min-width: 0;
  display: flex;
  text-align: left;
  align-items: stretch;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property: background, border, box-shadow;
}

/* 2 Column Grid Styles */
.grid-2col {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 576px) {
  .grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-2col .article-post-card {
  border: 1px solid #eaeaea;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.25s;
  width: 100%;
}

.grid-2col .article-post-card .post-thumbnail {
  padding-bottom: 66%;
  position: relative;
  transform-style: preserve-3d;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin-bottom: 25px;
}

.grid-2col .article-post-card .entry-header {
  padding: 0 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.grid-2col .article-post-card .entry-title {
  min-height: 50px;
  color: #000071;
  font-size: 21px;
  font-weight: 500;
  line-height: 25px;
}

.grid-2col .article-post-card .entry-title a:link,
.grid-2col .article-post-card .entry-title a:visited {
  color: #000071;
  text-decoration: none;
}

.grid-2col .article-post-card .content-excerpt {
  min-height: 83px;
  color: #696a6a;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.grid-2col .article-post-card .content-excerpt p {
  margin: 0;
  padding-bottom: 20px;
}

.grid-2col .article-post-card .entry-meta {
  display: flex;
  justify-content: space-between;
  color: #696a6a;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-top: auto;
}

.grid-2col .article-post-card .entry-meta a:link,
.grid-2col .article-post-card .entry-meta a:visited {
  color: #000071;
  text-decoration: none;
}

/* 3 Column Grid Styles */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .grid-3col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-3col .article-post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.25s;
  width: 100%;
}

.grid-3col .article-post-card .post-thumbnail {
  padding-bottom: 60%;
  position: relative;
  transform-style: preserve-3d;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
}

.grid-3col .article-post-card picture {
  height: 100%;
  width: auto;
  left: calc(50% + 1px);
  position: absolute;
  top: calc(50% + 1px);
  transform: scale(1.01) translate(-50%, -50%);
}

.grid-3col .article-post-card .entry-header h2 {
  font-size: 25px;
  font-weight: 400;
  word-spacing: 0;
  color: #000071;
  font-style: normal;
  text-align: center;
}

.grid-3col .article-post-card .entry-header h2 a:link,
.grid-3col .article-post-card .entry-header h2 a:visited {
  color: #000071;
  text-decoration: none;
}

.article-post-card img {
  height: 100%;
  width: auto;
  left: calc(50% + 1px);
  position: absolute;
  top: calc(50% + 1px);
  transform: scale(1.01) translate(-50%, -50%);
}

/* Common Article Post Card Styles */
.article-post-card .avater-wrap {
  height: 0;
  padding: 0 30px;
  pointer-events: none;
  position: relative;
  top: -25px;
  align-self: start;
}

.article-post-card .avatar {
  border-radius: 50%;
  pointer-events: all;
  transform: translateY(-50%);
  width: 60px;
  height: auto;
}

/* Breadcrumb Styles */
.breadcrumbs ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.breadcrumbs ul li {
  position: relative;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #696a6a;
}

.breadcrumbs ul li a:link,
.breadcrumbs ul li a:visited {
  color: #000071;
  text-decoration: none;
}

.breadcrumbs ul li a:after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 7.5L9 11.25L12.75 7.5' stroke='%23000071' style='stroke:%23000071;stroke:color(display-p3 0.0000 0.0000 0.4431);stroke-opacity:1;' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
}

/* Pagination Styles */
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 30px;
}

.pagination .page-numbers {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 10px;
  padding: 0;
  color: #2b65e8;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-style: normal;
}

.pagination .page-numbers a:link,
.pagination .page-numbers a:visited {
  color: #2b65e8;
  text-decoration: none;
}

.pagination .page-numbers.current {
  color: #000071;
}

.glossary-nav {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 60px;
}

.glossary-nav span {
  color: #696a6a;
}

.glossary-nav a:link,
.glossary-nav a:visited {
  color: #2b65e8;
  text-decoration: none;
}

.glossary-group {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: baseline;
  padding-top: 60px;
  border-bottom: rgba(0, 0, 44, 0.1) solid 1px;
}

.glossary-letter {
  font-size: 60px;
  line-height: 60px;
  font-weight: 500;
  color: #000071;
  width: 65px;
  margin: 0;
}

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

.glossary-group ul li {
  padding-bottom: 30px;
}

.glossary-group ul li a:link,
.glossary-group ul li a:visited {
  color: #2b65e8;
  font-size: 30px;
  font-weight: 400;
  text-decoration: none;
}

.glossary-list hr {
  border: none;
  border-top: 1px solid #000071;
}

.single .post-thumbnail {
  text-align: center;
}

.single .post-thumbnail .wp-post-image {
  max-width: 100%;
  height: auto;
}

.single .entry-meta {
  border-bottom: 1px #eaeaea solid;
  margin-bottom: 30px;
}

.single .entry-title,
.archive .page-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #000071;
  margin-bottom: 10px;
  text-align: center;
}

.single .meta-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: normal;
  padding: 0;
}

.single .meta-list li {
  margin: 0 15px;
  font-size: 14px;
}

.meta-list .author.vcard > a {
  display: flex;
}

.meta-list .avatar {
  border-radius: 30px;
  margin-right: 5px;
}

.cm-author-box .cm-author-avatar {
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.single .cm-author-box {
  background-color: #f5f5f5;
  padding: 30px;
  margin-top: 60px;
  border-radius: 25px;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.single .cm-author-box img {
  border: 2px solid #000071;
}

@media screen and (max-width: 575px) {
  .single .cm-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cm-author-box .cm-author-info {
    text-align: left;
  }
  .cm-author-box .cm-author-name {
    text-align: center;
  }
}
.single .cm-author-box .cm-author-name {
  margin: 0;
}

.single .nav-links {
  display: flex;
  overflow: hidden;
}

.single .nav-links .nav-previous,
.single .nav-links .nav-next {
  width: calc(50% - 0.5px);
  box-sizing: border-box;
  padding: 20px;
}

@media screen and (max-width: 575px) {
  .single .nav-links {
    flex-direction: column;
  }
  .single .nav-links .nav-previous,
  .single .nav-links .nav-next {
    width: 100%;
    text-align: center;
  }
  .single .nav-links .nav-next a {
    text-align: center;
  }
  .single .nav-next a {
    text-align: center;
  }
}
.single .nav-links,
.single .nav-links a:link,
.single .nav-links a:visited {
  color: #696a6a;
  text-decoration: none;
  position: relative;
}

.single .nav-links .nav-subtitle {
  color: #000071;
  text-transform: uppercase;
}

.single .nav-links a span {
  display: block;
  font-size: 18px;
  padding: 0 20px;
}

.single .nav-next a {
  text-align: right;
}

.nav-previous a:before {
  content: "<";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #000071;
  transition: all 0.3s ease;
}

.nav-next a:before {
  content: ">";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #000071;
  transition: all 0.3s ease;
}

.nav-previous a:hover:before {
  color: #2b65e8;
  left: -15px;
}

.nav-next a:hover:before {
  color: #2b65e8;
  right: -15px;
}

@media screen and (max-width: 575px) {
  .nav-previous a:before,
  .nav-next a:before {
    display: none;
  }
}
.navigation.post-navigation {
  border-bottom: 1px solid #eaeaea;
}

.nav-links {
  margin: 30px 0;
}

.related-articles {
  margin-top: 30px;
}

.related-articles h2 {
  text-align: center;
  padding: 30px 0;
}

.related-post-cards .article-post-card {
  border: 1px solid #eaeaea;
}
.related-post-cards .article-post-card .post-thumbnail img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.article-post-card h4 {
  padding: 0 15px;
  text-align: center;
  color: #000071;
}

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