/**
 * Computes a CSS calc function that betweens a value from
 * A to B over viewport-width A to viewport-width B.
 * Requires 2 media queries to cap the upper (B) and lower (A) values.
 */
.SndServices ul {
  margin: 1em 0;
  padding: 0;
  background-color: #F7FAFC;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.SndServices ul li:before {
  content: none;
}

.SndServices ul li {
  position: relative;
  margin: 0 1em;
  padding: 0.5em 0;
  border-bottom: 1px solid #E2E8F0;
}

.SndServices ul li:last-of-type {
  border-bottom: none;
}

.SndServices ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  text-decoration: none;
}

.SndServices ul li a:after {
  content: "";
  display: block;
  float: left;
  width: 1em;
  height: 1.25em;
  margin-top: 0.1em;
  background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20id%3D%22ico-RightAngle%22%20viewBox%3D%220%200%2010%2030%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23393939%22%20d%3D%22M9.297%2015c0%200.125-0.063%200.266-0.156%200.359l-7.281%207.281c-0.094%200.094-0.234%200.156-0.359%200.156s-0.266-0.063-0.359-0.156l-0.781-0.781c-0.094-0.094-0.156-0.219-0.156-0.359%200-0.125%200.063-0.266%200.156-0.359l6.141-6.141-6.141-6.141c-0.094-0.094-0.156-0.234-0.156-0.359s0.063-0.266%200.156-0.359l0.781-0.781c0.094-0.094%200.234-0.156%200.359-0.156s0.266%200.063%200.359%200.156l7.281%207.281c0.094%200.094%200.156%200.234%200.156%200.359z%22%3E%3C/path%3E%0A%20%20%20%20%3C/svg%3E);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.SndServices ul li a:hover:after {
  background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20id%3D%22ico-RightAngle%22%20viewBox%3D%220%200%2010%2030%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%2300bade%22%20d%3D%22M9.297%2015c0%200.125-0.063%200.266-0.156%200.359l-7.281%207.281c-0.094%200.094-0.234%200.156-0.359%200.156s-0.266-0.063-0.359-0.156l-0.781-0.781c-0.094-0.094-0.156-0.219-0.156-0.359%200-0.125%200.063-0.266%200.156-0.359l6.141-6.141-6.141-6.141c-0.094-0.094-0.156-0.234-0.156-0.359s0.063-0.266%200.156-0.359l0.781-0.781c0.094-0.094%200.234-0.156%200.359-0.156s0.266%200.063%200.359%200.156l7.281%207.281c0.094%200.094%200.156%200.234%200.156%200.359z%22%3E%3C/path%3E%0A%20%20%20%20%3C/svg%3E);
}

.SndServices ul li a:focus p,
.SndServices ul li a:hover p {
  color: #3FBDF1;
}

.SndServices ul li:hover a {
  color: #3FBDF1;
}

/*CM LM FCS sidebar*/
.SndServices .MatchWrap a {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.SndServices .MatchWrap .cardType {
  margin: 0;
  color: #1A202C;
  font-size: 1.25rem;
  font-weight: 700;
}

.SndServices .MatchWrap .cardType:hover,
.SndServices .MatchWrap .cardType:focus {
  color: #3FBDF1;
}

.SndServices .MatchWrap p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.SndServices .MatchWrap a:last-of-type {
  padding: 0.5rem 0;
  background-color: #3FBDF1;
  border-radius: 0.25em;
  color: #FFF;
  font-weight: 400;
  transition: all 0.8s, color 0.3s 0.3s;
}

.SndServices .MatchWrap a:last-of-type:hover,
.SndServices .MatchWrap a:last-of-type:focus {
  background-color: #226BE2;
  box-shadow: 300px 0 0 0 rgba(0, 0, 0, 0.2) inset;
}

.SndServices .MatchWrap a span {
  margin: 0 auto;
}

.csService {
  display: flex;
  width: 11rem;
  align-items: center;
  clear: inherit;
  flex-direction: column;
  background-color: #FFF;
  border: solid 1px #E2E8F0;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.csService.FloatLeft {
  float: left;
  margin: 0.5rem 1rem 0.5rem 0;
}

.csService.FloatRight {
  float: right;
  margin: 0.5rem 0 0.5rem 1rem;
}

.serviceHead {
  width: 100%;
  padding: 0.5rem 0.5rem;
  background-color: #FFF;
  border-bottom: solid 1px #E2E8F0;
}

.serviceHead a {
  color: #1A202C;
  font-size: 0.9rem;
  text-decoration: none;
}

.serviceHead a:hover,
.serviceHead a:focus {
  color: #3FBDF1;
}

.serviceBody {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 1rem;
}

.serviceBody .Button {
  margin-top: 1rem;
  padding: 0.25em 1em 0.25em;
  font-size: 0.9rem;
}

/*full-width services templates*/
.FullWidthService {
  text-align: center;
}

.ServiceInner {
  margin: 1em auto;
  padding: 1em 0.25em;
  border: solid 1px #E2E8F0;
  border-radius: 0.4rem;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media (min-width: 31.25em) {
  .ServiceInner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    min-width: 420px;
    padding: 1em;
  }
}
@media (min-width: 64em) {
  .ServiceInner {
    padding: 1em 4em;
  }
}

.ServiceInner span {
  display: block;
  color: #1A202C;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 31.25em) {
  .ServiceInner span {
    margin: 0 1em 0 0.5em;
  }
}
@media (min-width: 64em) {
  .ServiceInner span {
    font-size: 2rem;
  }
}

.ServiceInner a.Button {
  width: 5em;
  margin: 0 auto;
  margin-top: 0.5em;
}

.ServiceInner a.Button:focus {
  box-shadow: 200px 0 0 0 rgba(0, 0, 0, 0.15) inset, -200px 0 0 0 rgba(0, 0, 0, 0.15) inset;
  color: #F8F8F8;
}

#articles-home .Bg-Texture,
#articles-page .Bg-Texture {
  background-position: 0 27rem, 5px 5px;
}

.ArticleViewList, .ArticleClassViewList {
  padding: 0;
  list-style: none;
}

.ArticleViewList article > *:first-child {
  margin-top: 0;
}

article > h2,
article > h3,
article > h4 {
  margin: 1em 0 0.5em;
}

article > h2 + ul,
article > h2 + ol,
article > h2 + p,
article > h3 + ul,
article > h3 + ol,
article > h3 + p,
article > h4 + ul,
article > h4 + ol,
article > h4 + p {
  margin-top: 0;
}

article > ul,
article > ol {
  margin: 1em 0;
}

article {
  padding: 1em;
}

.ArticleWrap {
  position: relative;
  width: 100%;
  text-align: center;
}
@media (min-width: 64em) {
  .ArticleWrap {
    text-align: left;
  }
}

.MainArticlePage li:first-of-type .ArticleWrap {
  padding-top: 0;
}
@media (min-width: 37.5em) {
  .MainArticlePage li:first-of-type .ArticleWrap {
    display: block;
    border-bottom: none;
  }
}

.MainArticlePage li:last-of-type .ArticleWrap {
  border-bottom: none;
}

.HeaderImg .ArticleHead {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  flex: 2;
}
@media (min-width: 64em) {
  .HeaderImg .ArticleHead {
    align-items: inherit;
    flex-direction: row;
    margin-right: auto;
    text-align: left;
  }
}

.MainArticlePage li:first-of-type .HeaderImg .ArticleHead {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 37.5em) {
  .MainArticlePage li:first-of-type .HeaderImg .ArticleHead {
    width: 100%;
    margin-top: 0;
  }
}
@media (min-width: 64em) {
  .MainArticlePage li:first-of-type .HeaderImg .ArticleHead {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 37.5em) {
  .HeaderImg .ArticleHead > h1 {
    margin: 0;
    line-height: 1;
  }
}

.ArticleHead h2 {
  margin: 0.5em 0 0;
  line-height: 1;
}
@media (min-width: 64em) {
  .ArticleHead h2 {
    margin: 0 5em 0 0;
  }
}

@media (min-width: 37.5em) {
  .HeaderImg .ArticleHead h2 {
    margin: 0;
    line-height: 1;
  }
}
@media (min-width: 37.5em) and (max-width: 63.99em) {
  .HeaderImg .ArticleHead h2 {
    padding: 0 2em;
  }
}

.HeaderImg .ArticleHead > h2 a {
  font-weight: 700;
}

.MainArticlePage > li {
  margin-bottom: 2em;
  background-color: #FFF;
}

.MainArticlePage > li:first-of-type {
  position: relative;
  border-bottom: none;
}
@media (min-width: 37.5em) {
  .MainArticlePage > li:first-of-type {
    margin: 0 0 2em 0;
  }
}

.HeaderImg .ArticleHeaderImage {
  width: 300px;
  height: 150px;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 64em) {
  .HeaderImg .ArticleHeaderImage {
    width: 200px;
    height: 80px;
  }
  @supports (object-fit: cover) {
    .HeaderImg .ArticleHeaderImage {
      width: 200px;
      height: 125px;
    }
  }
}
@media (min-width: 20em) {
  @supports (object-fit: cover) {
    .HeaderImg .ArticleHeaderImage {
      object-fit: cover;
    }
  }
}

@media (min-width: 37.5em) {
  .MainArticlePage li:first-of-type .HeaderImg .ArticleHeaderImage {
    width: 100%;
    height: auto;
  }
  @supports (object-fit: cover) {
    .MainArticlePage li:first-of-type .HeaderImg .ArticleHeaderImage {
      width: 45%;
      height: 200px;
    }
  }
}

@media (min-width: 37.5em) {
  .ArticleViewList > *:first-child .ArticleHead > h2 {
    margin-top: 0.5em;
    padding: 0;
    font-size: 2.5rem;
    line-height: 1;
  }
  .HeaderImg .ArticleHead a {
    font-weight: 700;
  }
}
.MainArticlePage > li:first-of-type .HomeArticle .SummaryWrap {
  margin: 0;
  padding-top: 1em;
  text-align: center;
}
@media (min-width: 37.5em) {
  .MainArticlePage > li:first-of-type .HomeArticle .SummaryWrap {
    position: relative;
  }
}
@media (min-width: 64em) {
  .MainArticlePage > li:first-of-type .HomeArticle .SummaryWrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }
}

.MainArticlePage > li:first-of-type .HomeArticle .Summary {
  display: none;
  padding: 0;
}
@media (min-width: 37.5em) {
  .MainArticlePage > li:first-of-type .HomeArticle .Summary {
    display: block;
  }
}
@media (min-width: 64em) {
  .MainArticlePage > li:first-of-type .HomeArticle .Summary {
    margin: 0;
  }
}

.ArticleViewList > li .HomeArticle .Summary {
  display: none;
}

@media (min-width: 64em) {
  .HeaderImg .TitleWrap {
    padding-left: 2em;
  }
}

.TitleWrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 64em) {
  .TitleWrap {
    padding-left: 0;
  }
}

@media (min-width: 48em) {
  .MainArticlePage > li:first-of-type .TitleWrap h2 {
    margin-bottom: 1em;
  }
}

@media (min-width: 64em) {
  .MainArticlePage > li:first-of-type .ArticleReadOn {
    margin-right: auto;
    margin-left: 0;
  }
}

.ArticleReadOn {
  display: none;
  margin: 0.5em auto;
  padding: 0.5em 2em;
  border: 1px solid #E2E8F0;
  border-radius: 0.25em;
  color: #226BE2;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.8s;
}
@media (min-width: 37.5em) {
  .ArticleReadOn {
    display: block;
  }
}
@media (min-width: 64em) {
  .ArticleReadOn {
    margin: -3.5em 0 1em auto;
  }
}

@media (min-width: 64em) {
  .HeaderImg .ArticleReadOn {
    margin: 0;
    margin-left: auto;
  }
}

.ArticleReadOn:hover,
.ArticleReadOn:focus {
  text-decoration: none;
  background-color: #226BE2;
  color: #FFF;
}

@media (min-width: 64em) {
  .MainArticlePage > li:first-of-type .HeaderImg .ArticleReadOn {
    min-width: 12rem;
    font-size: 1.1rem;
    text-align: center;
  }
}

.ArticleViewList .HomeArticle .AuthorName a {
  margin-right: 0.5rem;
  color: #718096;
  font-size: 2rem;
}

.MainArticlePage > li:first-of-type .DatePublished {
  position: relative;
  bottom: 0;
  left: 0;
}

.DatePublished {
  margin: 0;
  font-style: normal;
}

@media (min-width: 64em) {
  .HeaderImg .DatePublished {
    position: absolute;
    bottom: 0;
    left: 14.5em;
  }
}

.HomeArticle img {
  display: none;
}

.HeaderImg.HomeArticle img {
  display: block;
}

.HeaderImg .ArticleHead .AuthorName {
  color: #1A202C;
  font-size: 1rem;
}

.HeaderImg .ArticleHead .AuthorName:hover,
.HeaderImg .ArticleHead .AuthorName:focus {
  color: #3FBDF1;
  text-decoration: none;
}

.ArticleTags {
  margin: 0.75em 0;
  padding: 1px 0;
  font-size: 0.6875em;
  line-height: 1.5;
}

.ArticleTags > span {
  display: inline-block;
}

.ArticleSummary {
  margin: 1em 0;
  padding: 1px 1.4rem;
  background-color: #1A202C;
  color: #fff;
  font-size: 0.9375em;
  line-height: 1.333;
}

.ArticleSummary > h3 {
  display: none;
}

.BlogDisclaimerHead {
  margin: 0 0 0.5em;
  color: #4A5568;
}

.BlogDisclaimer .BlogDisclaimerHead + p {
  margin-top: 0;
}

.BlogDisclaimer small {
  font-size: 0.75rem;
  font-style: italic;
}

.BlogDisclaimer em {
  font-style: italic;
}

/***** Author page *****/
.MainArticlePage li:first-of-type .ArticleAuthors {
  position: relative;
  bottom: 0;
  left: 0;
}

.MainArticlePage .ArticleAuthors {
  display: block;
  justify-content: center;
  margin-bottom: 0;
}

@media (min-width: 64em) {
  .MainArticlePage .HeaderImg .ArticleAuthors {
    position: absolute;
    bottom: 1em;
    left: 14.5em;
    justify-content: flex-end;
  }
}

.AuthorHeader {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-top: 1em;
}
@media (min-width: 37.5em) {
  .AuthorHeader {
    margin-top: 0;
    padding: 0 2em 1em;
    align-items: flex-start;
    flex-direction: row;
    /*flex-flow: row wrap;*/
    justify-content: flex-start;
  }
}

.AuthorHeader img {
  border-radius: 100px;
}
@media (min-width: 37.5em) {
  .AuthorHeader img {
    margin-right: 2rem;
  }
}

.AuthorHeader p {
  margin-top: 0;
  text-align: center;
}
@media (min-width: 37.5em) {
  .AuthorHeader p {
    text-align: left;
  }
}

.AuthorContent {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 37.5em) {
  .AuthorContent {
    align-items: flex-start;
  }
}

.AuthorContent h2 {
  margin-top: 0.5em;
  line-height: 1;
}
@media (min-width: 37.5em) {
  .AuthorContent h2 {
    margin-top: 0;
  }
}

#articles-in-category .main > h2:first-of-type {
  margin-top: 0;
  margin-bottom: 1em;
  line-height: 1;
}

.articles {
  padding: 0;
  list-style-type: none;
}

.article {
  container-type: inline-size;
  display: grid;
  gap: 0 clamp(0.5rem, 2cqw, 2rem);
  grid-template-columns: 43% 1fr;
  margin-bottom: clamp(0.75rem, 4vw, 1.5rem);
  padding: clamp(0.5rem, 2cqw, 2rem);
  background: #fff;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.1);
}

.article__title {
  width: 100%;
  margin: 0 0 0.5rem;
  line-height: 1;
  font-size: clamp(0.875rem, 3.5cqw, 2rem);
}
.article__title > a {
  color: #1A202C;
}

.article__img {
  display: block;
  height: 19cqw;
  object-fit: cover;
  border: 1px solid #999;
}

.article__summary {
  display: none;
}

.article > .article__details,
.article > .article__details .article__date {
  font-size: clamp(0.625rem, 2.8cqw, 1rem);
}

.article__date {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.article__btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 13ex;
  padding: 0.5rem 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 0.25em;
  color: #226BE2;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.8s;
}
.article__btn:hover, .article__btn:focus {
  text-decoration: none;
  background-color: #226BE2;
  color: #FFF;
}

.article__authors {
  display: none;
}

@container (width >= 600px) {
  .article__authors {
    display: block;
  }
}
@container (width >= 700px) {
  .article__btn {
    display: flex;
  }
  .articles > li:first-of-type .article__summary {
    display: block;
    grid-column: 1/3;
    margin-bottom: 0;
  }
}
.article__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article__details:first-child {
  grid-column: 1/3;
}

.article__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article__readtime {
  white-space: nowrap;
}