/* Shell-scoped: legacy CSS used to style EVERY h1-h6 on the page, including
   navbar and footer headings. Now gated behind .blog-legacy-shell so only
   elements inside the blog post shell are affected. */
.blog-legacy-shell .h1,
.blog-legacy-shell .h2,
.blog-legacy-shell .h3,
.blog-legacy-shell .h4,
.blog-legacy-shell .h5,
.blog-legacy-shell .h6,
.blog-legacy-shell h1,
.blog-legacy-shell h2,
.blog-legacy-shell h3,
.blog-legacy-shell h4,
.blog-legacy-shell h5,
.blog-legacy-shell h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-weight: 800;
  line-height: 1.7;
  color: rgb(0, 0, 0);
}

/* Heading sizes — ported so public blog matches the legacy PHP site.
   Legacy loads bootstrap.min.css PLUS a theme.css that sets `h2, h3 { font-size: 2rem }`.
   New app ships Tailwind preflight (h* { font-size: inherit }), which collapses all
   headings to body size. Values captured from production at viewport ≥1200px.
   Scope to .blog-content so admin chrome is unaffected. */
.blog-content h1 { font-size: calc(1.375rem + 1.5vw); font-weight: 800; margin-bottom: .5rem; }
.blog-content h2,
.blog-content h3 { font-size: 2rem; margin-bottom: .5rem; }
.blog-content h2 { font-weight: 500; }
.blog-content h3 { font-weight: 700; }
.blog-content h4 { font-size: calc(1.275rem + .3vw); font-weight: 800; margin-bottom: .5rem; }
.blog-content h5 { font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem; }
.blog-content h6 { font-size: 1rem; font-weight: 800; margin-bottom: .5rem; }
@media (min-width: 1200px) {
  .blog-content h1 { font-size: 2.5rem; }
  .blog-content h4 { font-size: 1.5rem; }
}

/* Bootstrap 5.2 hr — ported so <hr> separators match the legacy PHP site.
   Tailwind preflight leaves hr without border; Bootstrap gives it a faint
   1px top border at 25% opacity. Scoped to .blog-content so admin hr is
   unaffected. */
.blog-content hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: .25;
}

/* Bootstrap 5.2 strong weight — Tailwind preflight sets `font-weight: bolder`
   (which resolves relative to parent and produces inconsistent weights across
   nested text). Legacy site uses Bootstrap's flat `700` via bootstrap.min.css. */
.blog-content b,
.blog-content strong {
  font-weight: 700;
}

/* Shell-scoped: bare `header`, `article`, `article p` selectors previously
   styled every header/article on the page. Gated to .blog-legacy-shell so
   legacy typography only applies inside the blog post shell. */
.blog-legacy-shell header {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
}

.blog-legacy-shell article {
  font-family: 'Inter', serif;
  font-size: 1.125rem;
  line-height: 1.8;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizespeed;
  font-weight: 400;
  color: rgb(0, 0, 0);
}

.blog-legacy-shell article p {
    font-family: 'Inter', serif;
    /*font-size: 1.125rem;*/
    margin-bottom: 1.5rem;
    line-height: 1.7 !important;
}

/*footer {*/
/*  background-color: #1d2b35;*/
/*  line-height: 1.6;*/
/*}*/

/*footer ul {*/
/*  display: -webkit-box;*/
/*  display: -webkit-flex;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*  -webkit-box-flex-wrap: wrap;*/
/*  -webkit-flex-wrap: wrap;*/
/*  -ms-flex-wrap: wrap;*/
/*  flex-wrap: wrap;*/
/*  padding-left: 0;*/
/*  margin-bottom: 0;*/
/*  list-style: none;*/
/*}*/

.wrap {
  font-size: 1.125rem;
  background-color: #fff;
  position: relative;
}

/* Shell-scoped: the bare `article a` previously dyed every anchor inside
   any <article> orange. Gated to .blog-legacy-shell. */
.blog-content ul li span,
.blog-content ol li span,
.blog-legacy-shell article a,
.blog-content a {
  transition: all 0.2s ease-in-out 0s;
  color: rgb(187, 74, 3);
  background-color: transparent;
  text-decoration-line: none;
}

/*.social-icons {*/
/*  display: -webkit-box;*/
/*  display: -webkit-flex;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*  -webkit-box-flex-wrap: nowrap;*/
/*  -webkit-flex-wrap: nowrap;*/
/*  -ms-flex-wrap: nowrap;*/
/*  flex-wrap: nowrap;*/
/*  margin: -10px;*/
/*  padding-left: 0;*/
/*  list-style: none;*/
/*}*/
/*@media (max-width: 767.98px) {*/
/*  .social-icons {*/
/*    padding-top: 50px;*/
/*  }*/
/*  .social-icons h4 {*/
/*    display: none;*/
/*  }*/
/*}*/
/*.social-icons li {*/
/*  padding: 10px;*/
/*  width: auto;*/
/*}*/
/*.social-icons li a {*/
/*  color: rgba(255, 255, 255, 0.6);*/
/*  font-size: 30px;*/
/*}*/
/*.social-icons svg {*/
/*  fill: currentColor;*/
/*  height: 30px;*/
/*}*/

/*footer .footer-bottom li {*/
/*  width: auto;*/
/*}*/

/*footer li {*/
/*  margin-top: 6px;*/
/*  width: 100%;*/
/*}*/

/*footer > ul > li > a,*/
/*footer a {*/
/*  display: block;*/
/*  color: #6c757d !important;*/
/*  font-size: 1rem;*/
/*}*/

.bd-footer h5,
.bd-footer h6 {
  color: white;
  font-weight: normal;
}

.orange-text {
  color: rgb(187, 74, 3);
}

/* Shell-scoped: this bare selector was the single biggest shell-polluter.
   It added `margin-bottom: 1.3rem` to EVERY <ul>, <ol>, <p>, <figure> on
   the whole page — which broke navbar vertical alignment (the nav list
   got a 20.8px trailing gap) and added unexpected spacing under footer
   link columns. Gated to .blog-legacy-shell so it can only reach post
   content. */
.blog-legacy-shell figure,
.blog-legacy-shell p,
.blog-legacy-shell ul,
.blog-legacy-shell ol {
  margin-bottom: 1.3rem;
}

/*nav .container {*/
/*  width: 100%;*/
/*  padding-right: 20px;*/
/*  padding-left: 20px;*/
/*  margin-right: auto;*/
/*  margin-left: auto;*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  display: -webkit-box;*/
/*  display: -webkit-flex;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*  -webkit-align-items: center;*/
/*  -webkit-box-align: center;*/
/*  -ms-flex-align: center;*/
/*  align-items: center;*/
/*  height: 60px;*/
/*  padding-left: 20px;*/
/*  padding-right: 20px;*/
/*}*/
/*@media (min-width: 576px) {*/
/*  nav .container {*/
/*    padding-right: 10px;*/
/*    padding-left: 10px;*/
/*  }*/
/*}*/
/*@media (min-width: 540px) {*/
/*  nav .container {*/
/*    max-width: 540px;*/
/*  }*/
/*}*/
/*@media (min-width: 768px) {*/
/*  nav .container {*/
/*    max-width: 720px;*/
/*  }*/
/*}*/
/*@media (min-width: 992px) {*/
/*  nav .container {*/
/*    max-width: 960px;*/
/*  }*/
/*}*/
/*@media (min-width: 1200px) {*/
/*  nav .container {*/
/*    max-width: 1140px;*/
/*  }*/
/*}*/
/*@media (min-width: 768px) {*/
/*  nav .container {*/
/*    height: 80px;*/
/*    padding-left: 10px;*/
/*    padding-right: 10px;*/
/*  }*/
/*}*/

/* Shell-scoped: the banner typography. Previously applied to any `header h1`
   anywhere on the page. Gated so only the blog post banner uses it. */
.blog-legacy-shell header h1 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
}

.blog-legacy-shell header p {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 14px;
}

@media (min-width: 768px) {
  .blog-legacy-shell header h1 {
    font-size: 38px;
  }
}

.header-content {
  padding: 45px 0;
}
@media (min-width: 768px) {
  .header-content {
    padding: 55px 0;
  }
}
@media (min-width: 992px) {
  .header-content {
    padding: 65px 0;
  }
}

.header-image {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .header-image {
    margin-top: -15px;
  }
}
@media (min-width: 992px) {
  .header-image {
    margin-top: -20px;
  }
}
.header-image::before {
  content: '';
  position: absolute;
  left: -100vw;
  right: -100vw;
  bottom: 0;
  height: 50%;
  background-color: white;
}
.header-image img {
  border-radius: 10px;
  position: relative;
}

.entry-sticky-shares-wrap {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  padding-bottom: 75px;
  left: 0;
  right: 0;
}
@media (min-width: 576px) {
  .entry-sticky-shares-wrap {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 540px) {
  .entry-sticky-shares-wrap {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .entry-sticky-shares-wrap {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .entry-sticky-shares-wrap {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .entry-sticky-shares-wrap {
    max-width: 1140px;
  }
}
@media (min-width: 992px) {
  .entry-sticky-shares-wrap {
    display: block;
  }
}
@media (min-width: 992px) {
  .entry-sticky-shares-wrap > div {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 15px 2px 10px;
    text-align: center;
    top: 140px;
    width: 60px;
  }
  .entry-sticky-shares-wrap > div ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .entry-sticky-shares-wrap > div ul li.share-sum {
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 14px;
  }
}
  @media (min-width: 1200px) {
    .entry-sticky-shares-wrap > div ul li.share-sum {
      font-size: 18px;
    }
  }
  .entry-sticky-shares-wrap > div ul li.share-sum span {
    display: block;
    font-weight: 400;
  }
  .entry-sticky-shares-wrap > div ul li a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    font-size: 24px;
  }
  @media (min-width: 1200px) {
    .entry-sticky-shares-wrap > div ul li a {
      font-size: 26px;
      width: 50px;
      height: 50px;
    }
  }
  .entry-sticky-shares-wrap > div ul li a svg {
    max-width: 26px;
    height: 100%;
    max-height: 26px;
    pointer-events: none;
  }
  .entry-sticky-shares-wrap > div ul li a svg.icon-twitter {
    fill: #219bcf;
  }
  .entry-sticky-shares-wrap > div ul li a svg.icon-twitter:hover {
    fill: #1d8bba;
  }
  .entry-sticky-shares-wrap > div ul li a svg.icon-facebook {
    fill: #66679d;
  }
  .entry-sticky-shares-wrap > div ul li a svg.icon-facebook:hover {
    fill: #5b5c8d;
  }
}
@media (min-width: 1200px) {
  .entry-sticky-shares-wrap > div {
    width: 75px;
  }
}

.figure.header-figure {
  max-width: 600px;
}

.figure.header-figure:before {
  content: '';
  position: absolute;
  left: -100vw;
  right: -100vw;
  bottom: 0;
  height: 50%;
  background-color: white;
}

.figure.header-figure {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .figure.header-figure {
    margin-top: -15px;
  }
}
@media (min-width: 992px) {
  .figure.header-figure {
    margin-top: -20px;
  }
}
.figure.header-figure::before {
  content: '';
  position: absolute;
  left: -100vw;
  right: -100vw;
  bottom: -1px;
  height: 50%;
  background-color: white;
}
.figure.header-figure img {
  border-radius: 10px;
  position: relative;
}

.blog-content {
  font-family: 'Georgia', serif;
  font-size: 1.125rem;
line-height: 2.4;
margin-bottom: 1.5rem;
line-height: 3;
}
.blog-content .btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: normal;
  white-space: normal;
  letter-spacing: 0;
  cursor: pointer;
  text-transform: none;
  font-weight: 600;
  min-height: 3.7875;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
.blog-content .btn:disabled[disabled] {
  cursor: not-allowed;
}
.blog-content .btn-sm {
  min-height: 3.2;
}
.blog-content .btn-lg {
  min-height: 4.3875;
}
.blog-content .btn-orange {
  color: #fff;
  background-color: #ee4a03;
  border-color: #ee4a03;
}
.blog-content .btn-orange:hover {
  background-color: #dc4402;
  border-color: #d64202;
}
.blog-content .btn-orange:active {
  background-color: #d64202;
  border-color: #d04002;
}
.blog-content .btn-hub,
.blog-content .btn-youtube-hub {
  color: #fff;
  background: #8e99f3;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-image: linear-gradient(180deg, #8e99f3, #6e7cef);
  border-radius: 4px;
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}
.blog-content .btn-hub:link,
.blog-content .btn-youtube-hub:link,
.blog-content .btn-hub:visited,
.blog-content .btn-youtube-hub:visited,
.blog-content .btn-hub:hover,
.blog-content .btn-youtube-hub:hover,
.blog-content .btn-hub:active,
.blog-content .btn-youtube-hub:active {
  color: #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.blog-content .btn-hub:hover,
.blog-content .btn-youtube-hub:hover {
  background-image: linear-gradient(180deg, #97a1f4, #7784f0);
}
.blog-content .btn-hub:active,
.blog-content .btn-youtube-hub:active {
  background-image: linear-gradient(180deg, #a0aaf5, #808df1);
}
.blog-content .btn-hub:after,
.blog-content .btn-youtube-hub:after {
  content: '';
  background: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMyIiBmaWxsPSIjZmZmIiB2aWV3Qm94PSIwIDAgMTIgMzIiPgo8dGl0bGU+YW5nbGUtcmlnaHQ8L3RpdGxlPgo8cGF0aCBkPSJNMTAuNDMxIDE2LjUzMWwtNy4zNjIgNy4yNWMtMC4yOTQgMC4yOTQtMC43NjkgMC4yOTQtMS4wNjMgMGwtMC40NDQtMC40NDRjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsNi4zOTQtNi4yNzUtNi4zODgtNi4yNzVjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsMC40NDQtMC40NDRjMC4yOTQtMC4yOTQgMC43NjktMC4yOTQgMS4wNjMgMGw3LjM2MiA3LjI1YzAuMjg3IDAuMjk0IDAuMjg3IDAuNzY5LTAuMDA2IDEuMDYzeiI+PC9wYXRoPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  width: 14px;
  height: 36px;
  display: block;
  -webkit-background-size: contain;
  background-size: contain;
  display: block;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
.blog-content .btn-seo-hub {
  color: #fff;
  background: #a282e0;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.65rem 2.5rem 1.5rem 1.5rem;
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-image: linear-gradient(180deg, #5a458d, #a282e0);
  border-radius: 4px;
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}
.blog-content .btn-seo-hub:link,
.blog-content .btn-seo-hub:visited,
.blog-content .btn-seo-hub:hover,
.blog-content .btn-seo-hub:active {
  color: #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.blog-content .btn-seo-hub:hover {
  background-image: linear-gradient(180deg, #5e4894, #a88ae2);
}
.blog-content .btn-seo-hub:active {
  background-image: linear-gradient(180deg, #634c9b, #ae92e4);
}
.blog-content .btn-seo-hub:after {
  content: '';
  background: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMyIiBmaWxsPSIjZmZmIiB2aWV3Qm94PSIwIDAgMTIgMzIiPgo8dGl0bGU+YW5nbGUtcmlnaHQ8L3RpdGxlPgo8cGF0aCBkPSJNMTAuNDMxIDE2LjUzMWwtNy4zNjIgNy4yNWMtMC4yOTQgMC4yOTQtMC43NjkgMC4yOTQtMS4wNjMgMGwtMC40NDQtMC40NDRjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsNi4zOTQtNi4yNzUtNi4zODgtNi4yNzVjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsMC40NDQtMC40NDRjMC4yOTQtMC4yOTQgMC43NjktMC4yOTQgMS4wNjMgMGw3LjM2MiA3LjI1YzAuMjg3IDAuMjk0IDAuMjg3IDAuNzY5LTAuMDA2IDEuMDYzeiI+PC9wYXRoPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  width: 14px;
  height: 36px;
  display: block;
  -webkit-background-size: contain;
  background-size: contain;
  display: block;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
.blog-content .btn-content-hub {
  color: #fff;
  background: #4589ff;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.65rem 2.5rem 1.5rem 1.5rem;
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-image: linear-gradient(180deg, #477bfc, #4589ff);
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.blog-content .btn-content-hub:link,
.blog-content .btn-content-hub:visited,
.blog-content .btn-content-hub:hover,
.blog-content .btn-content-hub:active {
  color: white;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.blog-content .btn-content-hub:hover {
  background-image: linear-gradient(180deg, #5182fc, #4f8fff);
}
.blog-content .btn-content-hub:active {
  background-image: linear-gradient(180deg, #5b89fc, #5996ff);
}
.blog-content .btn-content-hub:after {
  content: '';
  background: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMyIiBmaWxsPSIjZmZmIiB2aWV3Qm94PSIwIDAgMTIgMzIiPgo8dGl0bGU+YW5nbGUtcmlnaHQ8L3RpdGxlPgo8cGF0aCBkPSJNMTAuNDMxIDE2LjUzMWwtNy4zNjIgNy4yNWMtMC4yOTQgMC4yOTQtMC43NjkgMC4yOTQtMS4wNjMgMGwtMC40NDQtMC40NDRjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsNi4zOTQtNi4yNzUtNi4zODgtNi4yNzVjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsMC40NDQtMC40NDRjMC4yOTQtMC4yOTQgMC43NjktMC4yOTQgMS4wNjMgMGw3LjM2MiA3LjI1YzAuMjg3IDAuMjk0IDAuMjg3IDAuNzY5LTAuMDA2IDEuMDYzeiI+PC9wYXRoPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  width: 14px;
  height: 36px;
  display: block;
  -webkit-background-size: contain;
  background-size: contain;
  display: block;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
.blog-content .btn-seo-hub-2-0 {
  color: #fff;
  background-color: #ac55ff;
  letter-spacing: normal;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.65rem 2.5rem 1.5rem 1.5rem;
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.blog-content .btn-seo-hub-2-0:link,
.blog-content .btn-seo-hub-2-0:visited,
.blog-content .btn-seo-hub-2-0:hover,
.blog-content .btn-seo-hub-2-0:active {
  color: white;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.blog-content .btn-seo-hub-2-0:hover {
  background-color: #b15fff;
}
.blog-content .btn-seo-hub-2-0:active {
  background-color: #b364ff;
}
.blog-content .btn-seo-hub-2-0:after {
  content: '';
  background: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMyIiBmaWxsPSIjZmZmIiB2aWV3Qm94PSIwIDAgMTIgMzIiPgo8dGl0bGU+YW5nbGUtcmlnaHQ8L3RpdGxlPgo8cGF0aCBkPSJNMTAuNDMxIDE2LjUzMWwtNy4zNjIgNy4yNWMtMC4yOTQgMC4yOTQtMC43NjkgMC4yOTQtMS4wNjMgMGwtMC40NDQtMC40NDRjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsNi4zOTQtNi4yNzUtNi4zODgtNi4yNzVjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsMC40NDQtMC40NDRjMC4yOTQtMC4yOTQgMC43NjktMC4yOTQgMS4wNjMgMGw3LjM2MiA3LjI1YzAuMjg3IDAuMjk0IDAuMjg3IDAuNzY5LTAuMDA2IDEuMDYzeiI+PC9wYXRoPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  width: 14px;
  height: 36px;
  display: block;
  -webkit-background-size: contain;
  background-size: contain;
  display: block;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
.blog-content .btn-digital-marketing-templates-library {
  color: #fff;
  background-color: #3f59fe;
  letter-spacing: normal;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.65rem 2.5rem 1.5rem 1.5rem;
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.blog-content .btn-digital-marketing-templates-library:link,
.blog-content .btn-digital-marketing-templates-library:visited,
.blog-content .btn-digital-marketing-templates-library:hover,
.blog-content .btn-digital-marketing-templates-library:active {
  color: #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.blog-content .btn-digital-marketing-templates-library:hover {
  background-color: #4962fe;
}
.blog-content .btn-digital-marketing-templates-library:active {
  background-color: #4e66fe;
}
.blog-content .btn-digital-marketing-templates-library:after {
  content: '';
  background: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjMyIiBmaWxsPSIjZmZmIiB2aWV3Qm94PSIwIDAgMTIgMzIiPgo8dGl0bGU+YW5nbGUtcmlnaHQ8L3RpdGxlPgo8cGF0aCBkPSJNMTAuNDMxIDE2LjUzMWwtNy4zNjIgNy4yNWMtMC4yOTQgMC4yOTQtMC43NjkgMC4yOTQtMS4wNjMgMGwtMC40NDQtMC40NDRjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsNi4zOTQtNi4yNzUtNi4zODgtNi4yNzVjLTAuMjk0LTAuMjk0LTAuMjk0LTAuNzY5IDAtMS4wNjNsMC40NDQtMC40NDRjMC4yOTQtMC4yOTQgMC43NjktMC4yOTQgMS4wNjMgMGw3LjM2MiA3LjI1YzAuMjg3IDAuMjk0IDAuMjg3IDAuNzY5LTAuMDA2IDEuMDYzeiI+PC9wYXRoPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  width: 14px;
  height: 36px;
  display: block;
  -webkit-background-size: contain;
  background-size: contain;
  display: block;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
.blog-content .btn-grey,
.blog-content .btn-learn-seo-fast {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-block;
  padding: 1rem;
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  border-radius: 3px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.blog-content .btn-grey:link,
.blog-content .btn-learn-seo-fast:link,
.blog-content .btn-grey:visited,
.blog-content .btn-learn-seo-fast:visited,
.blog-content .btn-grey:hover,
.blog-content .btn-learn-seo-fast:hover,
.blog-content .btn-grey:active,
.blog-content .btn-learn-seo-fast:active {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.blog-content .btn-grey {
  color: #000;
  background: #f0f0f0;
}
.blog-content .btn-grey:link,
.blog-content .btn-grey:visited,
.blog-content .btn-grey:hover,
.blog-content .btn-grey:active {
  color: #0000ff;
}
.blog-content .btn-grey:hover {
  background: #ebebeb;
}
.blog-content .btn-grey:active {
  background: #ededed;
}
.blog-content .btn-learn-seo-fast {
  color: #fff;
  background: #1cb29d;
}
.blog-content .btn-learn-seo-fast:link,
.blog-content .btn-learn-seo-fast:visited,
.blog-content .btn-learn-seo-fast:hover,
.blog-content .btn-learn-seo-fast:active {
  color: #fff;
}
.blog-content .btn-learn-seo-fast:hover {
  background: #1ba995;
}
.blog-content .btn-learn-seo-fast:active {
  background: #1bae99;
}
.blog-content div.sc-quote {
  position: relative;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.5rem;
  border-width: 1px solid;
  border-style: solid;
  line-height: 1.4;
  border-radius: 6px;
  border-radius: 0;
}
.blog-content div.sc-quote .media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.blog-content div.sc-quote p:empty {
  display: none;
}
.blog-content div.sc-quote .sc-picture {
  position: relative;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote .sc-picture {
    padding-right: 1.5rem;
  }
}
.blog-content div.sc-quote .sc-picture img {
  max-width: none !important;
  position: relative;
  z-index: 100;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  max-width: 45px;
  max-height: 45px;
  margin: 0;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote .sc-picture img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
  }
}
.blog-content div.sc-quote .sc-picture:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote .sc-picture:after {
    width: 70px;
    height: 70px;
  }
}
.blog-content div.sc-quote .sc-quote {
  margin-bottom: 0;
  line-height: 1.6;
}
.blog-content div.sc-quote .sc-quote > :last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote .sc-quote {
    line-height: 1.8;
  }
}
.blog-content div.sc-quote.alert-success .sc-picture:after {
  background-color: #abc97b;
}
.blog-content div.sc-quote.alert-info .sc-picture:after {
  background-color: #d0d0d0;
}
.blog-content div.sc-quote.alert-warning .sc-picture:after {
  background-color: #c7be9d;
}
.blog-content div.sc-quote.alert-danger .sc-picture:after {
  background-color: #e8a59b;
}
.blog-content div.sc-quote.alert-yellow .sc-picture:after {
  background-color: #d7db97;
}
.blog-content div.sc-quote.purple {
  border-radius: 6px;
  background-color: #2e2351;
  color: #ffffff;
  padding: 1.5rem 2rem !important;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.purple {
    padding: 2rem 3rem !important;
  }
}
.blog-content div.sc-quote.purple .media .media-body .media {
  display: none !important;
}
.blog-content div.sc-quote.blue-box,
.blog-content div.sc-quote.blue-box-alt,
.blog-content div.sc-quote.fpv {
  padding: 1rem;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.blue-box,
  .blog-content div.sc-quote.blue-box-alt,
  .blog-content div.sc-quote.fpv {
    padding: 1.75rem;
  }
}
.blog-content div.sc-quote.blue-box .media,
.blog-content div.sc-quote.blue-box-alt .media,
.blog-content div.sc-quote.fpv .media {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.blue-box .media,
  .blog-content div.sc-quote.blue-box-alt .media,
  .blog-content div.sc-quote.fpv .media {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.blog-content div.sc-quote.blue-box .media .sc-picture,
.blog-content div.sc-quote.blue-box-alt .media .sc-picture,
.blog-content div.sc-quote.fpv .media .sc-picture,
.blog-content div.sc-quote.blue-box .media .media-body,
.blog-content div.sc-quote.blue-box-alt .media .media-body,
.blog-content div.sc-quote.fpv .media .media-body {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 0;
  margin: 0;
}
.blog-content div.sc-quote.blue-box .media .sc-picture,
.blog-content div.sc-quote.blue-box-alt .media .sc-picture,
.blog-content div.sc-quote.fpv .media .sc-picture {
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  .blog-content div.sc-quote.blue-box .media .sc-picture,
  .blog-content div.sc-quote.blue-box-alt .media .sc-picture,
  .blog-content div.sc-quote.fpv .media .sc-picture {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
.blog-content div.sc-quote.blue-box .media .sc-picture img,
.blog-content div.sc-quote.blue-box-alt .media .sc-picture img,
.blog-content div.sc-quote.fpv .media .sc-picture img {
  padding: 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  margin-bottom: 1.5rem;
  margin-right: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.blue-box .media .sc-picture img,
  .blog-content div.sc-quote.blue-box-alt .media .sc-picture img,
  .blog-content div.sc-quote.fpv .media .sc-picture img {
    margin-bottom: 0 !important;
    margin-right: 1.5rem;
  }
}
.blog-content div.sc-quote.blue-box .media .sc-picture:after,
.blog-content div.sc-quote.blue-box-alt .media .sc-picture:after,
.blog-content div.sc-quote.fpv .media .sc-picture:after {
  background-color: #178eea;
  width: 50px;
  height: 50px;
}
.blog-content div.sc-quote.blue-box .media .media-body,
.blog-content div.sc-quote.blue-box-alt .media .media-body,
.blog-content div.sc-quote.fpv .media .media-body {
  width: auto;
}
@media (min-width: 992px) {
  .blog-content div.sc-quote.blue-box .media .media-body,
  .blog-content div.sc-quote.blue-box-alt .media .media-body,
  .blog-content div.sc-quote.fpv .media .media-body {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
}
.blog-content div.sc-quote.blue-box .media .media-body .media,
.blog-content div.sc-quote.blue-box-alt .media .media-body .media,
.blog-content div.sc-quote.fpv .media .media-body .media {
  display: none !important;
}
.blog-content div.sc-quote.blue-box .media .media-body .sc-quote,
.blog-content div.sc-quote.blue-box-alt .media .media-body .sc-quote,
.blog-content div.sc-quote.fpv .media .media-body .sc-quote {
  margin-top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.blue-box .media .media-body .sc-quote,
  .blog-content div.sc-quote.blue-box-alt .media .media-body .sc-quote,
  .blog-content div.sc-quote.fpv .media .media-body .sc-quote {
    margin-top: -0.25rem !important;
    width: auto;
  }
}
.blog-content div.sc-quote.blue-box.transparent-img-bg .media .sc-picture:after,
.blog-content
  div.sc-quote.blue-box-alt.transparent-img-bg
  .media
  .sc-picture:after,
.blog-content div.sc-quote.fpv.transparent-img-bg .media .sc-picture:after {
  background-color: transparent !important;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.blue-box.align-items-center .media,
  .blog-content div.sc-quote.blue-box-alt.align-items-center .media,
  .blog-content div.sc-quote.fpv.align-items-center .media {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.blog-content div.sc-quote.blue-box.p-mb-0 .media p,
.blog-content div.sc-quote.blue-box-alt.p-mb-0 .media p,
.blog-content div.sc-quote.fpv.p-mb-0 .media p {
  margin-bottom: 0 !important;
}
.blog-content div.sc-quote.blue-box-alt .media .sc-picture img {
  width: 5px;
  height: 55px;
  min-width: 55px;
  min-height: 5px;
  max-width: 55px;
  max-height: 55px;
}
.blog-content div.sc-quote.blue-box-alt .media .sc-picture:after {
  width: 55px;
  height: 55px;
}
.blog-content div.sc-quote.blue-box {
  background-color: #f1f6fa;
  border-color: #178eea;
  color: #000;
}
.blog-content div.sc-quote.blue-box-alt {
  background-color: #dce6fe;
  border-color: #3376fa;
  color: #000;
}
.blog-content div.sc-quote.fpv {
  background-color: #f31145;
  border-color: #da0f3e;
  color: #fff;
}
.blog-content div.sc-quote.font-georgia,
.blog-content div.sc-quote.font-gotham {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.font-georgia,
  .blog-content div.sc-quote.font-gotham {
    line-height: 2;
  }
}
.blog-content div.sc-quote.font-georgia .sc-quote,
.blog-content div.sc-quote.font-gotham .sc-quote {
  margin: 0 !important;
}
.blog-content div.sc-quote.font-size-smaller {
  font-size: 0.85rem !important;
}
.blog-content div.sc-quote.type-outside-left,
.blog-content div.sc-quote.type-outside-right {
  padding-right: 0;
  padding-left: 0;
  background-color: transparent !important;
  border: 0px none !important;
  padding: initial !important;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-left,
  .blog-content div.sc-quote.type-outside-right {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box .media,
.blog-content div.sc-quote.type-outside-right.blue-box .media,
.blog-content div.sc-quote.type-outside-left.blue-box-alt .media,
.blog-content div.sc-quote.type-outside-right.blue-box-alt .media,
.blog-content div.sc-quote.type-outside-left.fpv .media,
.blog-content div.sc-quote.type-outside-right.fpv .media {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body,
.blog-content div.sc-quote.type-outside-right.blue-box .media .media-body,
.blog-content div.sc-quote.type-outside-left.blue-box-alt .media .media-body,
.blog-content div.sc-quote.type-outside-right.blue-box-alt .media .media-body,
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body {
  position: relative;
  overflow: visible;
  border-radius: 7px;
  padding: 1rem;
  width: 100%;
  max-width: 100%;
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body:after,
.blog-content div.sc-quote.type-outside-right.blue-box .media .media-body:after,
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:after,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:after,
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after,
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body:before,
.blog-content
  div.sc-quote.type-outside-right.blue-box
  .media
  .media-body:before,
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:before,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:before,
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
  top: auto;
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:after,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after,
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:before,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
    top: 50%;
    bottom: auto;
    left: auto;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body:after,
.blog-content div.sc-quote.type-outside-right.blue-box .media .media-body:after,
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:after,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:after,
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after {
  border-width: 8.3px;
  margin-top: auto;
  margin-left: -8px;
  margin-bottom: -0.0313rem;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:after,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after {
    border-width: 8px;
    margin-top: -8px;
    margin-left: auto;
    margin-bottom: auto;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body:before,
.blog-content
  div.sc-quote.type-outside-right.blue-box
  .media
  .media-body:before,
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:before,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:before,
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
  border-width: 10.5px;
  margin-top: auto;
  margin-left: -10.5px;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:before,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
    border-width: 11px;
    margin-top: -11px;
    margin-left: auto;
  }
}
.blog-content
  div.sc-quote.type-outside-left.blue-box
  .media
  .media-body
  .sc-quote,
.blog-content
  div.sc-quote.type-outside-right.blue-box
  .media
  .media-body
  .sc-quote,
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body
  .sc-quote,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body
  .sc-quote,
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body .sc-quote,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body .sc-quote {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body
    .sc-quote,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body
    .sc-quote,
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body
    .sc-quote,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body
    .sc-quote,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body .sc-quote,
  .blog-content
    div.sc-quote.type-outside-right.fpv
    .media
    .media-body
    .sc-quote {
    margin-bottom: -0.25rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-left.blue-box .media .media-body,
  .blog-content div.sc-quote.type-outside-right.blue-box .media .media-body,
  .blog-content div.sc-quote.type-outside-left.blue-box-alt .media .media-body,
  .blog-content div.sc-quote.type-outside-right.blue-box-alt .media .media-body,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body {
    padding: 1.5rem;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body,
.blog-content div.sc-quote.type-outside-right.blue-box .media .media-body {
  background-color: #f1f6fa;
  border: 2px solid #178eea;
  color: #000;
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body:after,
.blog-content
  div.sc-quote.type-outside-right.blue-box
  .media
  .media-body:after {
  border-color: rgba(241, 246, 250, 0);
  border-bottom-color: #f1f6fa;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:after {
    border-bottom-color: transparent;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body:before,
.blog-content
  div.sc-quote.type-outside-right.blue-box
  .media
  .media-body:before {
  border-color: rgba(23, 142, 234, 0);
  border-bottom-color: #178eea;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:before {
    border-bottom-color: transparent;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box-alt .media .media-body,
.blog-content div.sc-quote.type-outside-right.blue-box-alt .media .media-body {
  background-color: #dce6fe;
  border: 2px solid #3376fa;
  color: $black;
}
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:after,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:after {
  border-color: rgba(241, 246, 250, 0);
  border-bottom-color: #dce6fe;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:after {
    border-bottom-color: transparent;
  }
}
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:before,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:before {
  border-color: rgba(23, 142, 234, 0);
  border-bottom-color: #3376fa;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:before {
    border-bottom-color: transparent;
  }
}
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body {
  background-color: #f31145;
  border: 2px solid #da0f3e;
  color: #000;
}
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after {
  border-color: rgba(241, 246, 250, 0);
  border-bottom-color: #f31145;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after {
    border-bottom-color: transparent;
  }
}
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before,
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
  border-color: rgba(23, 142, 234, 0);
  border-bottom-color: #da0f3e;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
    border-bottom-color: transparent;
  }
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-left {
    padding-right: 6.6rem !important;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box .media,
.blog-content div.sc-quote.type-outside-left.blue-box-alt .media,
.blog-content div.sc-quote.type-outside-left.fpv .media {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:after,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after,
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:before,
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before {
    right: 100%;
  }
}
.blog-content div.sc-quote.type-outside-left.blue-box .media .media-body:after {
  border-right-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:after {
    border-right-color: #f1f6fa;
  }
}
.blog-content
  div.sc-quote.type-outside-left.blue-box
  .media
  .media-body:before {
  border-right-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box
    .media
    .media-body:before {
    border-right-color: #178eea;
  }
}
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:after {
  border-right-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:after {
    border-right-color: #dce6fe;
  }
}
.blog-content
  div.sc-quote.type-outside-left.blue-box-alt
  .media
  .media-body:before {
  border-right-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-left.blue-box-alt
    .media
    .media-body:before {
    border-right-color: #3376fa;
  }
}
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after {
  border-right-color: transparent;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:after {
    border-right-color: #f31145;
  }
}
.blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before {
  border-right-color: transparent;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-left.fpv .media .media-body:before {
    border-right-color: #da0f3e;
  }
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-right {
    padding-left: 6.6rem !important;
  }
}
.blog-content div.sc-quote.type-outside-right.blue-box .media,
.blog-content div.sc-quote.type-outside-right.blue-box-alt .media,
.blog-content div.sc-quote.type-outside-right.fpv .media {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-right.blue-box .media,
  .blog-content div.sc-quote.type-outside-right.blue-box-alt .media,
  .blog-content div.sc-quote.type-outside-right.fpv .media {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:after,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:before,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:before,
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
    left: 100%;
  }
}
.blog-content div.sc-quote.type-outside-right.blue-box .media .sc-picture img,
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .sc-picture
  img,
.blog-content div.sc-quote.type-outside-right.fpv .media .sc-picture img {
  margin-right: 0;
  margin-left: 0;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-right.blue-box .media .sc-picture img,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .sc-picture
    img,
  .blog-content div.sc-quote.type-outside-right.fpv .media .sc-picture img {
    margin-left: 1.5rem;
  }
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .sc-picture:after,
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .sc-picture:after,
  .blog-content div.sc-quote.type-outside-right.fpv .media .sc-picture:after {
    left: auto;
    right: 0;
  }
}
.blog-content
  div.sc-quote.type-outside-right.blue-box
  .media
  .media-body:after {
  border-left-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:after {
    border-left-color: #f1f6fa;
  }
}
.blog-content
  div.sc-quote.type-outside-right.blue-box
  .media
  .media-body:before {
  border-left-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-right.blue-box
    .media
    .media-body:before {
    border-left-color: #178eea;
  }
}
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:after {
  border-left-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:after {
    border-left-color: #dce6fe;
  }
}
.blog-content
  div.sc-quote.type-outside-right.blue-box-alt
  .media
  .media-body:before {
  border-left-color: transparent;
}
@media (min-width: 768px) {
  .blog-content
    div.sc-quote.type-outside-right.blue-box-alt
    .media
    .media-body:before {
    border-left-color: #3376fa;
  }
}
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after {
  border-left-color: transparent;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:after {
    border-left-color: #f31145;
  }
}
.blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
  border-left-color: transparent;
}
@media (min-width: 768px) {
  .blog-content div.sc-quote.type-outside-right.fpv .media .media-body:before {
    border-left-color: #da0f3e;
  }
}
.blog-content .pull-xs-left {
  float: left;
}
.blog-content .sc-alert-box p {
  margin-bottom: 0;
}
.blog-content .sc-alert-box h3.alert-box-title {
  font-size: 1.5remrem;
  text-align: center;
  font-weight: bold;
  margin-top: 0.3rem;
}
.blog-content .sc-alert-box .alert-box-video-top h3.alert-box-pre-title {
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-weight: 600;
  font-size: 0.73rem;
  margin: 0 0 0.95rem;
  padding: 0;
  letter-spacing: 0.04rem;
}
.blog-content .sc-alert-box .alert-box-video-top h3.alert-box-title {
  margin: 0;
  text-align: left;
  font-weight: normal;
  font-family: 'Georgia', serif;
  font-size: 0.875rem;
}
.blog-content .sc-alert-box .sc-embed-youtube,
.blog-content .sc-alert-box .sc-wistia-embed {
  margin-bottom: 0;
}
.blog-content .sc-alert-box.red-quote,
.blog-content .sc-alert-box.red-quote-alt,
.blog-content .sc-alert-box.turquoise-quote {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  margin: 0 0 30px 0 !important;
  padding: 0 !important;
  border: 0 none !important;
  -webkit-background-position: top !important;
  background-position: top !important;
  -webkit-background-size: cover !important;
  background-size: cover !important;
  border-radius: 4px;
  font-size: 0.9rem;
}
@media (min-width: 992px) {
  .blog-content .sc-alert-box.red-quote,
  .blog-content .sc-alert-box.red-quote-alt,
  .blog-content .sc-alert-box.turquoise-quote {
    font-size: 1.125rem;
  }
}
.blog-content .sc-alert-box.red-quote .inner,
.blog-content .sc-alert-box.red-quote-alt .inner,
.blog-content .sc-alert-box.turquoise-quote .inner {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: rgba(218, 10, 10, 0.95);
  border-radius: 4px;
  padding: 30px;
}
@media (min-width: 768px) {
  .blog-content .sc-alert-box.red-quote .inner,
  .blog-content .sc-alert-box.red-quote-alt .inner,
  .blog-content .sc-alert-box.turquoise-quote .inner {
    padding: 2.5rem 2.1875rem;
  }
}
.blog-content .sc-alert-box.red-quote-alt {
  font-size: 1rem !important;
  font-weight: 300 !important;
  border: 4px solid #f22524 !important;
  border-radius: 4px !important;
  background-color: transparent !important;
}
.blog-content .sc-alert-box.red-quote-alt .inner {
  background-color: #f16767 !important;
  border-radius: 0 !important;
  padding: 1.25rem 1.75rem !important;
}
.blog-content .sc-alert-box.turquoise-quote {
  font-size: 1 !important;
  font-weight: 300 !important;
  border: 4px solid #00ad8f !important;
  border-radius: 4px !important;
  background-color: transparent !important;
}
.blog-content .sc-alert-box.turquoise-quote .inner {
  background-color: #00c7a4 !important;
  border-radius: 0 !important;
  padding: 1.25rem 1.75rem !important;
}
.blog-content .alert {
  position: relative;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: 6px;
}
.blog-content .alert-heading {
  color: inherit;
}
.blog-content .alert-link {
  font-weight: 700;
}
.blog-content .alert-dismissible {
  padding-right: 4rem;
}
.blog-content .alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.25rem;
  color: inherit;
}
.blog-content .alert-primary {
  color: #006c42;
  background-color: #ccf6e5;
  border-color: #b8f2db;
}
.blog-content .alert-primary hr {
  border-top-color: #a2eed0;
}
.blog-content .alert-primary .alert-link {
  color: #003923;
}
.blog-content .alert-secondary {
  color: #000;
  background-color: #ccc;
  border-color: #b8b8b8;
}
.blog-content .alert-secondary hr {
  border-top-color: #ababab;
}
.blog-content .alert-secondary .alert-link {
  color: #000;
}
.blog-content .alert-success {
  color: #006c42;
  background-color: #ccf6e5;
  border-color: #b8f2db;
}
.blog-content .alert-success hr {
  border-top-color: #a2eed0;
}
.blog-content .alert-success .alert-link {
  color: #003923;
}
.blog-content .alert-info {
  color: #0f161c;
  background-color: #d2d5d7;
  border-color: #c0c4c6;
}
.blog-content .alert-info hr {
  border-top-color: #b3b7ba;
}
.blog-content .alert-info .alert-link {
  color: #000;
}
.blog-content .alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.blog-content .alert-warning hr {
  border-top-color: #ffe8a1;
}
.blog-content .alert-warning .alert-link {
  color: #533f03;
}
.blog-content .alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.blog-content .alert-danger hr {
  border-top-color: #f1b0b7;
}
.blog-content .alert-danger .alert-link {
  color: #491217;
}
.blog-content .alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.blog-content .alert-light hr {
  border-top-color: #ececf6;
}
.blog-content .alert-light .alert-link {
  color: #686868;
}
.blog-content .alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.blog-content .alert-dark hr {
  border-top-color: #b9bbbe;
}
.blog-content .alert-dark .alert-link {
  color: #040505;
}
.blog-content .alert-success hr {
  border-top-color: #9fc269;
}
.blog-content .alert-success .alert-link {
  color: #090909;
}
.blog-content .alert-info {
  color: #222;
  background-color: #f2f2f2;
  border-color: #d0d0d0;
}
.blog-content .alert-info hr {
  border-top-color: #c3c3c3;
}
.blog-content .alert-info .alert-link {
  color: #090909;
}
.blog-content .alert-warning {
  color: #222;
  background-color: #fee2b7;
  border-color: #c7be9d;
}
.blog-content .alert-warning hr {
  border-top-color: #beb38d;
}
.blog-content .alert-warning .alert-link {
  color: #090909;
}
.blog-content .alert-danger {
  color: #222;
  background-color: #ffcec7;
  border-color: #e8a59b;
}
.blog-content .alert-danger hr {
  border-top-color: #e39286;
}
.blog-content .alert-danger .alert-link {
  color: #090909;
}
.blog-content .alert-yellow {
  color: #222;
  background-color: #faffb0;
  border-color: #d7db97;
}
.blog-content .alert-yellow hr {
  border-top-color: #d0d484;
}
.blog-content .alert-yellow .alert-link {
  color: #090909;
}
.blog-content .alert-success.wide-video .alert-box-video-top {
  border-left-color: #abc97b !important;
  border-top-color: #abc97b !important;
  border-right-color: #abc97b !important;
}
.blog-content .alert-info.wide-video .alert-box-video-top {
  border-left-color: #d0d0d0 !important;
  border-top-color: #d0d0d0 !important;
  border-right-color: #d0d0d0 !important;
}
.blog-content .alert-warning.wide-video .alert-box-video-top {
  border-left-color: #c7be9d !important;
  border-top-color: #c7be9d !important;
  border-right-color: #c7be9d !important;
}
.blog-content .alert-danger.wide-video .alert-box-video-top {
  border-left-color: #e8a59b !important;
  border-top-color: #e8a59b !important;
  border-right-color: #e8a59b !important;
}
.blog-content .alert-yellow.wide-video .alert-box-video-top {
  border-left-color: #d7db97 !important;
  border-top-color: #d7db97 !important;
  border-right-color: #d7db97 !important;
}
.blog-content .alert.wide-video,
.blog-content .gform_wrapper .wide-video.validation_error,
.blog-content .wide-video.gforms_confirmation_message {
  padding: 0;
  border: 0;
}
.blog-content .alert.wide-video .alert-box-video-top,
.blog-content .gform_wrapper .wide-video.validation_error .alert-box-video-top,
.blog-content .wide-video.gforms_confirmation_message .alert-box-video-top {
  padding: 1.3rem 1.45rem;
  border-bottom: 0 transparent;
  border-style: solid;
  border-left-width: 1px;
  border-top-width: 1px;
  border-right-width: 1px;
}
.blog-content .sc-attention-bullet-list {
  background: #f7f5cd;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: 1.25rem;
  font-size: 1rem;
  width: 100%;
  max-width: 22.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  line-height: 1.85;
  border: 1px solid #eae8c2;
}
.blog-content .sc-attention-bullet-list ol,
.blog-content .sc-attention-bullet-list ul {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.blog-content .sc-attention-bullet-list p:empty {
  display: none;
}
.blog-content .sc-box-with-image {
  position: relative;
  border: 1px solid darken(#ebebeb, 5);
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.17) inset;
  border-radius: 6px;
  padding: 6.5rem 1.5rem 0.5rem;
  margin: 7.5rem 0 1.5rem;
}
@media (max-width: 767.98px) {
  .blog-content .sc-box-with-image {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .blog-content .sc-box-with-image {
    padding: 2rem 2.5rem 2rem 7.5rem;
    margin: 1.5rem 0 1.5rem 95px;
  }
}
.blog-content .sc-box-with-image .sc-box-with-image-img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  width: 190px;
}
@media (min-width: 992px) {
  .blog-content .sc-box-with-image .sc-box-with-image-img {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: -95px;
  }
}
.blog-content .sc-box-with-image .sc-box-with-image-img img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .blog-content .sc-box-with-image .sc-box-with-image-img img {
    margin-top: -50%;
  }
}
.blog-content .sc-box-with-image .sc-box-with-image-box {
  min-height: 190px;
  display: table;
  width: 100%;
}
.blog-content
  .sc-box-with-image
  .sc-box-with-image-box
  .sc-box-with-image-box-inner {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .blog-content
    .sc-box-with-image
    .sc-box-with-image-box
    .sc-box-with-image-box-inner {
    text-align: center;
  }
}
.blog-content
  .sc-box-with-image
  .sc-box-with-image-box
  .sc-box-with-image-box-inner
  .sc-box-with-image-box-title {
  font-weight: 700;
  font-size: 25px;
  margin: 1rem 0 0.5rem;
  color: #153257;
}
@media (min-width: 992px) {
  .blog-content .sc-box-with-image.right {
    padding: 2rem 7.5rem 2rem 2.5rem;
    margin: 1.5rem 95px 1.5rem 0;
  }
}
@media (min-width: 992px) {
  .blog-content .sc-box-with-image.right .sc-box-with-image-img {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: -95px;
  }
}
.blog-content .sc-brians-pro-tip .sc-brians-pro-tip-header {
  padding: 1.25rem 1.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-top: -1.25rem;
  margin-bottom: 1.25;
  background-color: #abc97b;
}
.blog-content
  .sc-brians-pro-tip
  .sc-brians-pro-tip-header
  .sc-brians-pro-tip-title {
  margin: 0;
  color: #fff;
}
.blog-content
  .sc-brians-pro-tip
  .sc-brians-pro-tip-header
  .sc-brians-pro-tip-title
  .title {
  font-weight: 300;
}
.blog-content .sc-brians-pro-tip.alert-info .sc-brians-pro-tip-header {
  background-color: #d0d0d0;
}
.blog-content .sc-brians-pro-tip.alert-warning .sc-brians-pro-tip-header {
  background-color: #c7be9d;
}
.blog-content .sc-brians-pro-tip.alert-danger .sc-brians-pro-tip-header {
  background-color: #e8a59b;
}
.blog-content .sc-brians-pro-tip.alert-yellow .sc-brians-pro-tip-header {
  background-color: #d7db97;
}
.blog-content .sc-brians-take {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 3.5px !important;
  border-color: #dddddd !important;
  padding: 2rem !important;
}
.blog-content .sc-brians-take > :last-child {
  margin-bottom: 0;
}
.blog-content .sc-brians-take .sc-embed-youtube,
.blog-content .sc-brians-take .sc-wistia-embed {
  margin-bottom: 0;
}
.blog-content .sc-brians-take .sc-title {
  margin: 0.5rem 0 1.25rem;
}
@media (min-width: 768px) {
  .blog-content .sc-brians-take .sc-title {
    margin: 0 0 1.25rem;
  }
}
.blog-content .sc-brians-take .sc-picture {
  position: relative;
  margin-bottom: 0 !important;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .blog-content .sc-brians-take .sc-picture {
    padding-right: 1.5rem;
  }
}
.blog-content .sc-brians-take .sc-picture img {
  max-width: none;
  position: relative;
  z-index: 100;
  margin-bottom: 0 !important;
  border-radius: 50% !important;
  width: 45px;
  height: 45px;
  margin: 0;
}
@media (min-width: 768px) {
  .blog-content .sc-brians-take .sc-picture img {
    width: 70px;
    height: 70px;
  }
}
.blog-content .sc-brians-take .sc-picture:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
@media (min-width: 768px) {
  .blog-content .sc-brians-take .sc-picture:after {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 540px) {
  .blog-content .sc-brians-take p:first-of-type {
    padding-left: 94px;
  }
}
.blog-content .sc-brians-take.alert-success .sc-picture:after {
  background-color: #abc97b;
}
.blog-content .sc-brians-take.alert-info .sc-picture:after {
  background-color: #d0d0d0;
}
.blog-content .sc-brians-take.alert-warning .sc-picture:after {
  background-color: #c7be9d;
}
.blog-content .sc-brians-take.alert-danger .sc-picture:after {
  background-color: #e8a59b;
}
.blog-content .sc-brians-take.alert-yellow .sc-picture:after {
  background-color: #d7db97;
}
.post-template-template-jumbo-guide .blog-content .sc-brians-take {
  border-radius: 3.5px !important;
  border-color: #dddddd !important;
  padding: 2rem !important;
}
.post-template-template-jumbo-guide
  .blog-content
  .sc-brians-take
  p:first-of-type {
  padding-left: 0 !important;
}
.post-template-template-jumbo-guide .blog-content .sc-brians-take .sc-picture {
  display: none;
}
@media (min-width: 768px) {
  .post-template-template-jumbo-guide
    .blog-content
    .sc-brians-take
    .sc-picture {
    display: block;
  }
}
.post-template-template-jumbo-guide .blog-content .sc-brians-take .sc-title {
  margin-bottom: 1rem !important;
}
.blog-content .sc-brians-take p:first-of-type {
  padding-left: 0 !important;
}
.blog-content .sc-brians-take .sc-picture {
  display: none;
}
@media (min-width: 768px) {
  .blog-content .sc-brians-take .sc-picture {
    display: block;
  }
}
.blog-content .sc-brians-take .sc-title {
  margin-bottom: 1rem !important;
}
.blog-content .sc-check-item {
  font-size: 1.5rem !important;
}
.blog-content .sc-check-item span {
  vertical-align: middle;
}
.blog-content .sc-check-item .sc-check-item-number {
  color: #0fb5b0;
}
.blog-content .sc-check-item .sc-check-item-icon {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #0fb5b0;
  color: #fff;
  position: relative;
  display: inline-block;
}
.blog-content .sc-check-item .sc-check-item-icon:before {
  text-shadow: 1px 1px 1px rgba(118, 118, 118, 0.5);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-size: 24px;
  margin-top: 2px;
}
.blog-content .sc-click-tweet > span {
  pointer-events: none;
}
.blog-content .sc-click-tweet.sc-click-tweet-stylised-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 100%;
  background-color: #4099ff;
  font-size: 0.85rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  letter-spacing: 0.05rem;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-text-decoration: none;
  text-decoration: none;
  overflow: hidden;
  font-weight: 600;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  padding: 1.25rem 1.25rem 1.875rem 1.25rem;
  -webkit-background-position: center bottom;
  background-position: center bottom;
  -webkit-background-size: 25.625rem auto;
  background-size: 25.625rem auto;
}
@media (max-width: 767.98px) {
  .blog-content .sc-click-tweet.sc-click-tweet-stylised-text {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .blog-content .sc-click-tweet.sc-click-tweet-stylised-text {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-background-position: right center;
    background-position: right center;
    -webkit-background-size: 17.5rem auto;
    background-size: 17.5rem auto;
    padding: 0 0.625rem 0.0625rem 1.875rem;
  }
}
.blog-content .sc-click-tweet.sc-click-tweet-stylised-text:hover {
  background-color: #4a9eff;
}
.blog-content .sc-click-tweet.sc-click-tweet-stylised-text:active {
  background-color: #3e95f9;
}
.blog-content .sc-click-tweet.sc-click-tweet-stylised-text:active,
.blog-content .sc-click-tweet.sc-click-tweet-stylised-text:hover,
.blog-content .sc-click-tweet.sc-click-tweet-stylised-text:visited {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-content,
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon {
  line-height: normal;
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-content {
  padding-bottom: 0;
  padding-top: 0;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  .blog-content
    .sc-click-tweet.sc-click-tweet-stylised-text
    .sc-click-tweet-content {
    padding-bottom: 0.625rem;
    padding-top: 0.625rem;
    line-height: inherit;
    text-align: left;
  }
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon {
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  min-height: 4rem;
  position: relative;
  border-radius: 2.1875rem;
  text-align: center;
  line-height: 3.9375rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: auto;
  margin-top: 1.2rem;
}
@media (min-width: 768px) {
  .blog-content
    .sc-click-tweet.sc-click-tweet-stylised-text
    .sc-click-tweet-icon {
    margin-top: auto;
  }
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon.icon-twitter {
  padding-top: 1px;
  padding-left: 0.375rem;
  background: #55aaff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon.icon-twitter::before {
  content: '';
  background: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjM1IiBmaWxsPSIjZmZmIiBoZWlnaHQ9IjMyIiB2aWV3Qm94PSIwIDAgMzUgMzIiPgo8dGl0bGU+dHdpdHRlcjwvdGl0bGU+CjxwYXRoIGQ9Ik0zMiA3LjA3NWMtMS4xNzUgMC41MjUtMi40NDQgMC44NzUtMy43NjkgMS4wMzEgMS4zNTYtMC44MTMgMi4zOTQtMi4xIDIuODg3LTMuNjMxLTEuMjY5IDAuNzUtMi42NzUgMS4zLTQuMTY5IDEuNTk0LTEuMi0xLjI3NS0yLjkwNi0yLjA2OS00Ljc5NC0yLjA2OS0zLjYyNSAwLTYuNTYzIDIuOTM4LTYuNTYzIDYuNTYzIDAgMC41MTIgMC4wNTYgMS4wMTIgMC4xNjkgMS40OTQtNS40NTYtMC4yNzUtMTAuMjk0LTIuODg4LTEzLjUzMS02Ljg2Mi0wLjU2MyAwLjk2OS0wLjg4NyAyLjEtMC44ODcgMy4zIDAgMi4yNzUgMS4xNTYgNC4yODcgMi45MTkgNS40NjMtMS4wNzUtMC4wMzEtMi4wODctMC4zMzEtMi45NzUtMC44MTkgMCAwLjAyNSAwIDAuMDU2IDAgMC4wODEgMCAzLjE4MSAyLjI2MyA1LjgzOCA1LjI2OSA2LjQzNy0wLjU1IDAuMTUtMS4xMzEgMC4yMzEtMS43MzEgMC4yMzEtMC40MjUgMC0wLjgzMS0wLjA0NC0xLjIzNy0wLjExOSAwLjgzOCAyLjYwNiAzLjI2MyA0LjUwNiA2LjEzMSA0LjU2My0yLjI1IDEuNzYyLTUuMDc1IDIuODEzLTguMTU2IDIuODEzLTAuNTMxIDAtMS4wNTAtMC4wMzEtMS41NjktMC4wOTQgMi45MTMgMS44NjkgNi4zNjIgMi45NSAxMC4wNjkgMi45NSAxMi4wNzUgMCAxOC42ODEtMTAuMDA2IDE4LjY4MS0xOC42ODEgMC0wLjI4Ny0wLjAwNi0wLjU2OS0wLjAxOS0wLjg1IDEuMjgxLTAuOTE5IDIuMzk0LTIuMDc1IDMuMjc1LTMuMzk0eiI+PC9wYXRoPgo8L3N2Zz4K);
  width: 32px;
  height: 30px;
  background-repeat: no-repeat;
  display: block;
  margin-top: -4px;
  margin-left: 2px;
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon
  .ring-one,
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon
  .ring-three,
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon
  .ring-two {
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  opacity: 0.1;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon
  .ring-one {
  height: 7.875rem;
  width: 7.875rem;
  margin-left: -3.9375rem;
  margin-top: -3.9375rem;
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon
  .ring-two {
  height: 13.5rem;
  width: 13.5rem;
  margin-left: -6.75rem;
  margin-top: -6.75rem;
}
.blog-content
  .sc-click-tweet.sc-click-tweet-stylised-text
  .sc-click-tweet-icon
  .ring-three {
  height: 25.625rem;
  width: 25.625rem;
  margin-left: 12.8125rem;
  margin-top: 12.8125rem;
}
.blog-content .sc-definition-box .sc-image {
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box .sc-image {
    padding-right: 1.5rem;
  }
}
.blog-content .sc-definition-box .sc-image img {
  height: auto;
  max-width: 45px !important;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box .sc-image img {
    max-width: 70px !important;
  }
}
.blog-content .sc-definition-box .sc-header {
  padding-bottom: 1.25rem;
}
.blog-content .sc-definition-box .sc-header .sc-term {
  font-size: 22px;
  margin: 0.2rem 0 1rem;
}
.blog-content .sc-definition-box .sc-header .sc-type,
.blog-content .sc-definition-box .sc-header .sc-pronunciation {
  margin-bottom: 0;
}
.blog-content .sc-definition-box .sc-definition {
  margin: 0 -1.25rem -1.25rem;
  padding: 1.25 1.25;
  background-color: #e8e8e8;
  border-top: 1px solid #d8d8d8;
}
.blog-content .sc-definition-box .sc-definition > :last-child {
  margin-bottom: 0;
}
.blog-content .sc-definition-box .sc-definition .sc-definition-title {
  margin-bottom: 1rem;
}
.blog-content .sc-definition-box.font-gotham {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-weight: 300;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box.font-gotham {
    line-height: 2;
    font-size: 1rem;
  }
}
.blog-content .sc-definition-box.font-gotham .media .sc-header {
  width: auto;
  padding-bottom: 10px;
}
.blog-content .sc-definition-box.font-gotham .media .sc-header .sc-term,
.blog-content .sc-definition-box.font-gotham .media .sc-header .sc-type {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' rem;
  color: #fff;
}
.blog-content .sc-definition-box.font-gotham .media .sc-header .sc-term {
  font-weight: 600;
  margin: 0rem 0rem 0.5rem 0rem;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .blog-content .sc-definition-box.font-gotham .media .sc-header .sc-term {
    font-size: 1.75rem;
  }
}
.blog-content .sc-definition-box.font-gotham .media .sc-header .sc-type {
  font-weight: 300;
  font-style: italic;
  font-size: 0.9rem;
}
@media (min-width: 992px) {
  .blog-content .sc-definition-box.font-gotham .media .sc-header .sc-type {
    font-size: 1rem;
  }
}
.blog-content .sc-definition-box.font-gotham .media p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 1rem;
  font-weight: 300;
}
.blog-content .sc-definition-box.font-gotham .sc-definition {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  color: #fff;
}
.blog-content .sc-definition-box.font-gotham .sc-definition p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 1rem;
  font-weight: 300;
}
.blog-content .sc-definition-box.font-gotham .sc-further-text {
  color: #fff;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box.font-gotham .sc-further-text {
    font-size: 1.125rem;
  }
}
.blog-content .sc-definition-box.blue-style {
  background-color: #168de9;
  border: 0px none !important;
  border-radius: 4px;
  padding: 30px;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box.blue-style {
    padding: 1.5625rem 1.5625rem 1.5625rem 2.5rem;
  }
}
.blog-content .sc-definition-box.blue-style .media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.blog-content .sc-definition-box.blue-style .media .sc-initials {
  background-color: #fff;
  color: #168de9;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  max-width: 2.5rem;
}
@media (min-width: 992px) {
  .blog-content .sc-definition-box.blue-style .media .sc-initials {
    width: 3.40625rem;
    height: 3.40625rem;
    min-width: 3.40625rem;
    min-height: 3.40625rem;
    max-width: 3.40625rem;
  }
}
.blog-content .sc-definition-box.blue-style .media .sc-initials span {
  font-weight: 400;
  line-height: normal;
  text-align: center;
  font-size: 0.85rem;
}
@media (min-width: 992px) {
  .blog-content .sc-definition-box.blue-style .media .sc-initials span {
    font-size: 1.1875rem;
  }
}
.blog-content .sc-definition-box.blue-style .sc-definition {
  padding: 0;
  background-color: transparent;
  border: 0px none;
  margin: auto;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box.blue-style .sc-definition {
    margin: 0 10px 0 40px;
  }
}
@media (min-width: 992px) {
  .blog-content .sc-definition-box.blue-style .sc-definition {
    font-size: 1rem;
  }
}
.blog-content .sc-definition-box.blue-style .sc-further-text {
  background-color: #1686dc;
  margin: 0;
  padding: 0;
  border-radius: 0 0 4px 4px;
}
.blog-content .sc-definition-box.blue-style .sc-further-text ul,
.blog-content .sc-definition-box.blue-style .sc-further-text ol {
  padding: 0;
  list-style-type: none;
}
.blog-content .sc-definition-box.blue-style .sc-further-text ul li:before,
.blog-content .sc-definition-box.blue-style .sc-further-text ol li:before {
  content: 'â€¢';
  font-size: 0.9375rem;
  padding-right: 6px;
}
.blog-content .sc-definition-box.blue-style.has-further-text {
  padding: 0;
}
.blog-content .sc-definition-box.blue-style.has-further-text .media {
  padding: 30px 30px 0 30px;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box.blue-style.has-further-text .media {
    padding: 1.5625rem 1.5625rem 0 2.5rem;
  }
}
.blog-content .sc-definition-box.blue-style.has-further-text .sc-definition {
  padding: 0 30px 30px 30px;
}
@media (min-width: 768px) {
  .blog-content .sc-definition-box.blue-style.has-further-text .sc-definition {
    padding: 0 1.5625rem 1.5625rem 2.5rem;
  }
}
.blog-content .sc-definition-box.blue-style.has-further-text .sc-further-text {
  padding: 30px;
}
@media (min-width: 768px) {
  .blog-content
    .sc-definition-box.blue-style.has-further-text
    .sc-further-text {
    padding: 1.5625rem 2.5rem;
  }
}
.blog-content .sc-email-script .orange,
.blog-content .sc-email-script-grey .orange,
.blog-content .sc-email-script-white .orange,
.blog-content .sc-email-script-light-grey .orange {
  color: #ee4a03;
}
.blog-content .sc-email-script .green,
.blog-content .sc-email-script-grey .green,
.blog-content .sc-email-script-white .green,
.blog-content .sc-email-script-light-grey .green {
  color: #8dbb48;
}
.blog-content .sc-email-script .turquoise,
.blog-content .sc-email-script-grey .turquoise,
.blog-content .sc-email-script-white .turquoise,
.blog-content .sc-email-script-light-grey .turquoise {
  color: #348099;
}
.blog-content .sc-email-script .medblue,
.blog-content .sc-email-script-grey .medblue,
.blog-content .sc-email-script-white .medblue,
.blog-content .sc-email-script-light-grey .medblue {
  color: #2280cd;
}
.blog-content .sc-email-script.br-4,
.blog-content .sc-email-script-grey.br-4,
.blog-content .sc-email-script-white.br-4,
.blog-content .sc-email-script-light-grey.br-4 {
  border-radius: 4px;
}
.blog-content .sc-email-script {
  margin-bottom: 1rem;
  padding-left: 1rem;
  color: #767676;
  font-weight: 400;
  border-left: 4px solid #ebebeb;
}
.blog-content .sc-email-script-grey,
.blog-content .sc-email-script-white,
.blog-content .sc-email-script-light-grey {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  padding: 1.75rem;
  margin-bottom: 1rem;
}
.blog-content .sc-email-script-grey p:last-of-type,
.blog-content .sc-email-script-white p:last-of-type,
.blog-content .sc-email-script-light-grey p:last-of-type {
  margin-bottom: 0 !important;
}
.blog-content .sc-email-script-grey {
  background-color: #f7f7f7;
}
.blog-content .sc-email-script-white {
  background-color: #fff;
}
.blog-content .sc-email-script-light-grey {
  background-color: #ffffff;
}
.blog-content .sc-embed-youtube,
.blog-content .sc-wistia-embed {
  margin-bottom: 1.3rem;
}
.blog-content
  .sc-embed-youtube.remove-click-to-play
  div[data-handle='clickForSoundButton'],
.blog-content
  .sc-wistia-embed.remove-click-to-play
  div[data-handle='clickForSoundButton'] {
  display: none !important;
}
.blog-content .sc-embed-youtube.remove-click-to-play button[aria-label='Pause'],
.blog-content .sc-wistia-embed.remove-click-to-play button[aria-label='Pause'] {
  display: none !important;
}
.blog-content .sc-embed-youtube.image-border,
.blog-content .sc-wistia-embed.image-border {
  border: 4px solid #cccccc;
}
.blog-content .sc-embed-youtube.w-30,
.blog-content .sc-wistia-embed.w-30,
.blog-content .sc-embed-youtube.w-30-sm-up,
.blog-content .sc-wistia-embed.w-30-sm-up,
.blog-content .sc-embed-youtube.w-30-md-up,
.blog-content .sc-wistia-embed.w-30-md-up,
.blog-content .sc-embed-youtube.w-75,
.blog-content .sc-wistia-embed.w-75,
.blog-content .sc-embed-youtube.w-75-sm-up,
.blog-content .sc-wistia-embed.w-75-sm-up,
.blog-content .sc-embed-youtube.w-75-md-up,
.blog-content .sc-wistia-embed.w-75-md-up {
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.blog-content .sc-embed-youtube.w-30,
.blog-content .sc-wistia-embed.w-30 {
  width: 100% !important;
  max-width: 275px !important;
}
.blog-content .sc-embed-youtube.w-75,
.blog-content .sc-wistia-embed.w-75 {
  width: 100% !important;
  max-width: 600px !important;
}
@media (min-width: 540px) {
  .blog-content .sc-embed-youtube.w-30-sm-up,
  .blog-content .sc-wistia-embed.w-30-sm-up {
    width: 100% !important;
    max-width: 275px !important;
  }
}
@media (min-width: 540px) {
  .blog-content .sc-embed-youtube.w-75-sm-up,
  .blog-content .sc-wistia-embed.w-75-sm-up {
    width: 100% !important;
    max-width: 600px !important;
  }
}
@media (min-width: 768px) {
  .blog-content .sc-embed-youtube.w-30-md-up,
  .blog-content .sc-wistia-embed.w-30-md-up {
    width: 100% !important;
    max-width: 275px !important;
  }
}
@media (min-width: 768px) {
  .blog-content .sc-embed-youtube.w-75-md-up,
  .blog-content .sc-wistia-embed.w-75-md-up {
    width: 100% !important;
    max-width: 600px !important;
  }
}
.blog-content .sc-wistia-embed {
  padding: 0 !important;
}
.blog-content .sc-wistia-embed.image-border {
  margin-bottom: 1.3rem;
}
.blog-content .small-youtube {
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .blog-content .small-youtube {
    width: 70% !important;
  }
}
.blog-content .small-wistia {
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .blog-content .small-wistia {
    width: 37.5rem !important;
    padding: 21rem 0 0 0 !important;
  }
}
.blog-content .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.blog-content .embed-responsive:before {
  display: block;
  content: '';
}
.blog-content .embed-responsive .embed-responsive-item,
.blog-content .embed-responsive embed,
.blog-content .embed-responsive iframe,
.blog-content .embed-responsive object,
.blog-content .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.blog-content .embed-responsive-21by9:before {
  padding-top: 42.85714%;
}
.blog-content .embed-responsive-16by9:before {
  padding-top: 56.25%;
}
.blog-content .embed-responsive-4by3:before {
  padding-top: 75%;
}
.blog-content .embed-responsive-1by1:before {
  padding-top: 100%;
}
.blog-content .sc-golden-rule {
  position: relative;
  padding-left: 40px;
  margin-bottom: 1rem;
}
.blog-content .sc-golden-rule .sc-golden-rule-icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: #ffc107;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}
.blog-content .sc-golden-rule .sc-golden-rule-icon:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.blog-content .sc-golden-rule .sc-golden-rule-title {
  color: #ffc107;
  padding-top: 0.2rem;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: none;
  font-size: 1.25rem !important;
}
.blog-content .sc-green-newsletter-signup {
  max-width: 100%;
  background-color: #00d07e;
  padding: 2rem;
}
.blog-content .sc-green-newsletter-signup .sc-green-newsletter-signup-title {
  font-weight: 700;
  font-size: 1.25rem;
}
.blog-content .sc-keyword-box {
  background-color: #daf2c8;
  border: 1px solid #c5eaa8;
  border-radius: 4px;
  font-weight: 700;
  padding: 10px 20px;
  text-align: center;
  margin: 0 auto 1rem;
  display: block;
}
@media (min-width: 992px) {
  .blog-content .sc-keyword-box {
    display: inline-block;
  }
}
@media (max-width: 991.98px) {
  .blog-content .sc-keyword-box {
    width: 80%;
  }
}
.blog-content .sc-large-btn {
  padding-bottom: 1rem;
  text-align: center;
}
.blog-content .sc-large-btn .btn {
  border-radius: 0;
  text-transform: uppercase;
}
.blog-content .sc-large-btn.has-icon .btn {
  position: relative;
  border-radius: 0;
}
@media (max-width: 767.98px) {
  .blog-content .sc-large-btn.has-icon .btn {
    white-space: normal;
  }
}
@media (min-width: 1px) {
  .blog-content .sc-large-btn.has-icon .btn {
    padding-left: 3.5rem;
  }
}
@media (min-width: 992px) {
  .blog-content .sc-large-btn.has-icon .btn {
    padding-left: 4rem;
  }
}
.blog-content .sc-large-btn.has-icon .btn i {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  font-size: 3rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-content .sc-list-item {
  color: #1d4477;
  margin: 1.5rem 0;
}
.blog-content .sc-list-item .sc-list-item-number {
  display: block;
  width: 46px;
  height: 46px;
  line-height: 40px;
  border-radius: 23px;
  background-color: #c8daf2;
  border: 3px solid #fff;
  position: relative;
  text-align: center;
  font-size: 1.25rem;
  margin: 0 0 1rem 6px;
}
.blog-content .sc-list-item .sc-list-item-number:before {
  content: '';
  border: 4px solid #1d4477;
  width: 54px;
  height: 54px;
  border-radius: 27px;
  left: -7px;
  top: -7px;
  position: absolute;
}
.blog-content .sc-list-item .sc-list-item-number.green {
  background-color: #d0eeb8;
}
.blog-content .sc-list-item .sc-list-item-number.green:before {
  border-color: #426528;
}
.blog-content .sc-list-item .sc-list-item-content {
  font-size: 0.875rem;
}
.blog-content .sc-list-item .sc-list-item-content.green {
  color: #325715;
}
.blog-content .sc-list-item .sc-list-item-content.white {
  color: #fff;
}
.blog-content .sc-number-circle-box-title {
  position: relative;
  background: #334275;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  text-align: center;
  line-height: 1.55;
  margin-top: 4.375rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  padding: 3.125rem 1.25rem 1.875rem 1.25rem;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .blog-content .sc-number-circle-box-title {
    padding: 3.4375rem 2.5rem 1.875rem 2.5rem;
    font-size: 1.625rem;
  }
}
.blog-content .sc-number-circle-box-title__number {
  position: absolute;
  color: #ffffff;
  background-color: #5e6980;
  top: 0;
  font-weight: 100;
  left: 50%;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  font-size: 1.875rem;
  margin-left: -1.875rem;
  margin-top: -1.875rem;
  border-radius: 2.5rem;
}
@media (min-width: 768px) {
  .blog-content .sc-number-circle-box-title__number {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 2.6875rem;
    margin-left: -2.5rem;
    margin-top: -2.5rem;
  }
}
.blog-content .sc-number-circle-box-title__hide {
  display: none;
}
.blog-content .sc-number-circle-box-title__anchorlink {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: default;
  color: inherit;
}
.blog-content .sc-number-circle-box-title__anchorlink:active,
.blog-content .sc-number-circle-box-title__anchorlink:hover,
.blog-content .sc-number-circle-box-title__anchorlink:visited {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
}
.blog-content .sc-optin-form {
  width: 480px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #00d07e;
  text-align: center;
  padding: 2rem;
}
.blog-content .sc-optin-form .sc-optin-form-title {
  color: #fff;
  font-size: 1.25rem;
}
.blog-content .sc-optin-form .form-control {
  text-align: center;
}
.blog-content .sc-optin-form.gray {
  background-color: #ebebeb;
}
.blog-content .sc-optin-form.gray .sc-optin-form-title {
  color: black;
}
.blog-content .sc-post-summary {
  background-color: #f1f6fa;
  border: 2px solid #178eea;
  color: #000;
  width: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .blog-content .sc-post-summary {
    padding: 1.75rem;
  }
}
@media (min-width: 992px) {
  .blog-content .sc-post-summary {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
}
.blog-content .sc-post-summary .sc-post-summary-inner {
  margin-bottom: 0 !important;
  margin-top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .blog-content .sc-post-summary .sc-post-summary-inner {
    margin-top: -0.25rem !important;
    width: auto;
  }
}
.blog-content .sc-post-summary .sc-post-summary-inner > :last-child {
  margin-bottom: 0 !important;
}
.blog-content
  .sc-post-summary
  .sc-post-summary-inner
  h2.sc-post-summary-inner_title {
  text-align: center;
}
.blog-content .sc-post-summary.font-georgia {
  font-family: 'Georgia', serif;
  font-weight: 400;
}
.blog-content .sc-post-summary.font-gotham * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !important;
  font-weight: 300;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .blog-content .sc-post-summary.font-gotham * {
    line-height: 2;
    font-size: 1rem;
  }
}
.blog-content .sc-pro-tip {
  background-color: #219bcf;
  color: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .blog-content .sc-pro-tip {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.blog-content .sc-pro-tip .sc-pro-tip-icon {
  float: left;
  position: relative;
  margin: -0.75rem 1rem 0.75rem (60px / -1);
  background-color: #ffc107;
  width: 74px;
  height: 74px;
  border-radius: 37px;
  border: 6px solid #fff;
}
.blog-content .sc-pro-tip .sc-pro-tip-icon:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-size: 40px;
}
.blog-content .sc-pro-tip .sc-pro-tip-pre-title {
  margin: 0 0.3rem 0 0;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  color: inherit;
  font-size: 1rem;
  line-height: 1.6;
}
.blog-content .sc-pro-tip .sc-pro-tip-content > :last-child {
  margin-bottom: 0 !important;
}
.blog-content .sc-pro-tip .sc-pro-tip-content img {
  margin-bottom: 0 !important;
}
.blog-content .sc-step-list-step-title {
  background-color: #82cd3d;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
  margin: 0 0 2rem 10px;
  padding: 11px 24px;
}
.blog-content .sc-step-list-step-title:before {
  content: '';
  width: 32px;
  height: 32px;
  position: absolute;
  left: -60px;
  top: 50%;
  background-color: #d9f0c4;
  border-radius: 16px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.blog-content .sc-step-list-step-title:after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  left: 0;
  top: 50%;
  border-right: 10px solid #82cd3d;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: -10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-content .sc-step-list-text-with-bullet {
  position: relative;
  padding-left: 65px;
}
.blog-content .sc-step-list-text-with-bullet:before {
  content: attr(data-bulletid);
  text-align: center;
  font-size: 14px;
  left: 15px;
  width: 32px;
  height: 32px;
  line-height: 24px;
  top: -5px;
  position: absolute;
  border: 4px solid #82cd3d;
  background-color: #d9f0c4;
  border-radius: 16px;
}
.blog-content .sc-three-steps {
  margin: 5.5rem 0 2rem;
}
.blog-content .sc-three-steps .sc-three-step .sc-three-step-header {
  position: relative;
  margin: 0 -10px 2rem;
}
.blog-content .sc-three-steps .sc-three-step .sc-three-step-header:before {
  content: 'Step';
  background: #c63930;
  color: #fff;
  display: block;
  border-radius: 2px;
  line-height: 30px;
  height: 30px;
  left: 50%;
  margin-left: -38px;
  width: 72px;
  position: absolute;
  top: -57px;
}
.blog-content .sc-three-steps .sc-three-step .sc-three-step-header:after {
  content: '';
  display: block;
  position: absolute;
  top: -27px;
  left: 50%;
  margin-left: -8px;
  border-top: 8px solid #c63930;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  width: 0;
  height: 0;
}
.blog-content
  .sc-three-steps
  .sc-three-step
  .sc-three-step-header
  .sc-three-step-index {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 22px;
  background-color: #c63930;
  color: #fff;
  font-size: 1.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.blog-content
  .sc-three-steps
  .sc-three-step
  .sc-three-step-header
  .sc-three-step-line {
  display: block;
  width: 100%;
  background-color: rgba(198, 57, 48, 0.75);
  height: 1rem;
}
.blog-content .sc-three-steps .sc-three-step .sc-three-step-content {
  color: #c63930;
  font-size: 1.125rem;
}
@media (max-width: 767.98px) {
  .blog-content .sc-three-steps .sc-three-step + .sc-three-step {
    margin-top: 5.5rem;
  }
}
.blog-content .sc-title-with-icon {
  position: relative;
  padding-left: 40px;
}
.blog-content .sc-title-with-icon .sc-title-with-icon-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  font-size: 18px;
  color: #fff;
}
.blog-content .sc-title-with-icon .sc-title-with-icon-icon.icon-problem {
  background-color: #dc3545;
}
.blog-content .sc-title-with-icon .sc-title-with-icon-icon.icon-question {
  background-color: #ffc107;
}
.blog-content .sc-title-with-icon .sc-title-with-icon-icon.icon-check-mark {
  background-color: #00d07e;
}
.blog-content .sc-title-with-icon .sc-title-with-icon-icon:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.blog-content .sc-title-with-icon .sc-title-with-icon-title {
  padding-top: 0.2rem;
  font-weight: 700;
  text-transform: none;
  font-size: 1.25rem !important;
}
.blog-content .sc-twitter-follow {
  margin: 2rem 0;
}
.blog-content p > img {
  width: initial;
}
.blog-content .backlinko-image img {
  display: inline-block;
  width: 100%;
}
.blog-content .backlinko-image.backlinko-has-border img {
  border: 4px solid #cccccc;
}
.blog-content .backlinko-image.img-circle img {
  border-radius: 50% !important;
}
@media (min-width: 768px) {
  .blog-content .backlinko-image.alignright-md-up {
    float: right;
    margin-left: 1rem;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image.alignleft-md-up {
    float: left;
    margin-left: 1rem;
  }
}
.blog-content .alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}
.blog-content .aligncenter {
  display: block;
  margin: 1rem auto;
  height: auto;
}
.blog-content .alignleft {
  margin-bottom: 1rem;
  height: auto;
}
@media (min-width: 540px) {
  .blog-content .alignleft {
    float: left;
    margin-left: 1rem;
  }
}
.blog-content .alignright {
  margin-bottom: 1rem;
  height: auto;
}
@media (min-width: 540px) {
  .blog-content .alignright {
    float: right;
    margin-left: 1rem;
  }
}
.blog-content .backlinko-image__centered-image img {
  margin: 0 auto !important;
}
.blog-content
  .backlinko-image__img-explicit-no-border:not(.backlinko-has-border)
  img {
  border: 0 none !important;
  border-radius: 0 !important;
}
.blog-content .backlinko-image__img-mt-minus-1-xs-up img {
  margin-top: -1rem !important;
}
.blog-content .backlinko-image__img-mt-minus-1-point-5-xs-up img {
  margin-top: -1.5rem !important;
}
.blog-content .backlinko-image__img-mt-minus-2-xs-up img {
  margin-top: -2rem !important;
}
.blog-content .backlinko-image__img-mt-minus-2-point-5-xs-up img {
  margin-top: -2.5rem !important;
}
.blog-content .backlinko-image__img-mt-minus-2-point-75-xs-up img {
  margin-top: -2.75rem !important;
}
.blog-content .backlinko-image__img-mt-minus-3-xs-up img {
  margin-top: -3rem !important;
}
.blog-content .backlinko-image__img-mt-minus-4-point-5-xs-up img {
  margin-top: -4.5rem !important;
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mt-minus-1-sm-up img {
    margin-top: -1rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mt-minus-1-point-5-sm-up img {
    margin-top: -1.5rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mt-minus-2-sm-up img {
    margin-top: -2rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mt-minus-2-point-5-sm-up img {
    margin-top: -2.5rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mt-minus-2-point-75-sm-up img {
    margin-top: -2.75rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mt-minus-3-sm-up img {
    margin-top: -3rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mt-minus-4-point-5-sm-up img {
    margin-top: -4.5rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mt-minus-1-md-up img {
    margin-top: -1rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mt-minus-1-point-5-md-up img {
    margin-top: -1.5rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mt-minus-2-md-up img {
    margin-top: -2rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mt-minus-2-point-5-md-up img {
    margin-top: -2.5rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mt-minus-2-point-75-md-up img {
    margin-top: -2.75rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mt-minus-3-md-up img {
    margin-top: -3rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mt-minus-4-point-5-md-up img {
    margin-top: -4.5rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mt-minus-1-lg-up img {
    margin-top: -1rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mt-minus-1-point-5-lg-up img {
    margin-top: -1.5rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mt-minus-2-lg-up img {
    margin-top: -2rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mt-minus-2-point-5-lg-up img {
    margin-top: -2.5rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mt-minus-2-point-75-lg-up img {
    margin-top: -2.75rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mt-minus-3-lg-up img {
    margin-top: -3rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mt-minus-4-point-5-lg-up img {
    margin-top: -4.5rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mb-minus-1-sm-up img {
    margin-bottom: -1rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mb-minus-2-sm-up img {
    margin-bottom: -2rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mb-minus-2-point-5-sm-up img {
    margin-bottom: -2.5rem !important;
  }
}
@media (min-width: 540px) {
  .blog-content .backlinko-image__img-mb-minus-3-sm-up img {
    margin-bottom: -3rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mb-minus-1-md-up img {
    margin-bottom: -1rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mb-minus-2-md-up img {
    margin-bottom: -2rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mb-minus-2-point-5-md-up img {
    margin-bottom: -2.5rem !important;
  }
}
@media (min-width: 768px) {
  .blog-content .backlinko-image__img-mb-minus-3-md-up img {
    margin-bottom: -3rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mb-minus-1-lg-up img {
    margin-bottom: -1rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mb-minus-2-lg-up img {
    margin-bottom: -2rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mb-minus-2-point-5-lg-up img {
    margin-bottom: -2.5rem !important;
  }
}
@media (min-width: 992px) {
  .blog-content .backlinko-image__img-mb-minus-3-lg-up img {
    margin-bottom: -3rem !important;
  }
}
.blog-content .backlinko-image__img-mb-0 img {
  margin-bottom: 0 !important;
}
.blog-content .backlinko-image__img-border-radius-4 img,
.blog-content .visual > img {
  border: 0 none !important;
  border-radius: 0.25rem !important;
}
.blog-content .backlinko-image__img-hub-rounded img,
.blog-content .backlinko-image__rounded img {
  border: 0 none !important;
  border-radius: 0.5rem !important;
}
.blog-content .backlinko-image__screenshot img {
  outline: none !important;
  margin: 0 auto !important;
  border: 4px solid #cccccc;
  border-radius: 0 !important;
}
.blog-content .backlinko-image__visual-chart img {
  outline: none !important;
  margin: 0 auto !important;
  border: 0 none !important;
  border-radius: 0.3rem !important;
}
.blog-content .backlinko-image__bg-white img {
  background-color: #fff !important;
}
.blog-content .backlinko-image__bg-light-gray-lighter img {
  background-color: #f8f8f8 !important;
}
.blog-content .backlinko-image__bg-light-gray-darker img {
  background-color: #f4f4f4 !important;
}
.blog-content .table,
.blog-content table.table-results {
  width: 100%;
  margin-bottom: 1rem;
  color: #000;
}
.blog-content .table td,
.blog-content .table th,
.blog-content table.table-results td,
.blog-content table.table-results th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e6e6e6;
}
.blog-content .table thead th,
.blog-content table.table-results thead th,
.blog-content table.table-primary thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e6e6e6;
}
.blog-content .table tbody + tbody,
.blog-content table.table-results tbody + tbody {
  border-top: 2px solid #e6e6e6;
}
.blog-content .table-sm td,
.blog-content .table-sm th,
.blog-content table.table-results td,
.blog-content table.table-results th,
.blog-content table.table-primary td,
.blog-content table.table-primary th {
  padding: 0.3rem;
}
.blog-content .table-bordered,
.blog-content .table-bordered td,
.blog-content .table-bordered th {
  border: 1px solid #e6e6e6;
}
.blog-content .table-bordered thead td,
.blog-content .table-bordered thead th {
  border-bottom-width: 2px;
}
.blog-content .table-borderless tbody + tbody,
.blog-content .table-borderless td,
.blog-content .table-borderless th,
.blog-content .table-borderless thead th {
  border: 0;
}
.blog-content .table-striped tbody tr:nth-of-type(odd),
.blog-content table.table-results tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.blog-content .table-hover tbody tr:hover,
.blog-content table.table-results tbody tr:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.075);
}
.blog-content .table-hover .table-primary:hover,
.blog-content .table-hover .table-primary:hover > td,
.blog-content .table-hover .table-primary:hover > th,
.blog-content table.table-results .table-primary:hover,
.blog-content table.table-results .table-primary:hover > td,
.blog-content table.table-results .table-primary:hover > th {
  background-color: #a2eed0;
}
.blog-content .table-secondary,
.blog-content .table-secondary > td,
.blog-content .table-secondary > th {
  background-color: #b8b8b8;
}
.blog-content .table-secondary tbody + tbody,
.blog-content .table-secondary td,
.blog-content .table-secondary th,
.blog-content .table-secondary thead th {
  border-color: #7a7a7a;
}
.blog-content .table-hover .table-secondary:hover,
.blog-content .table-hover .table-secondary:hover > td,
.blog-content .table-hover .table-secondary:hover > th,
.blog-content table.table-results .table-secondary:hover,
.blog-content table.table-results .table-secondary:hover > td,
.blog-content table.table-results .table-secondary:hover > th {
  background-color: #ababab;
}
.blog-content .table-success,
.blog-content .table-success > td,
.blog-content .table-success > th {
  background-color: #b8f2db;
}
.blog-content .table-success tbody + tbody,
.blog-content .table-success td,
.blog-content .table-success th,
.blog-content .table-success thead th {
  border-color: #7ae7bc;
}
.blog-content .table-hover .table-success:hover,
.blog-content .table-hover .table-success:hover > td,
.blog-content .table-hover .table-success:hover > th,
.blog-content table.table-results .table-success:hover,
.blog-content table.table-results .table-success:hover > td,
.blog-content table.table-results .table-success:hover > th {
  background-color: #a2eed0;
}
.blog-content .table-info,
.blog-content .table-info > td,
.blog-content .table-info > th {
  background-color: #c0c4c6;
}
.blog-content .table-info tbody + tbody,
.blog-content .table-info td,
.blog-content .table-info th,
.blog-content .table-info thead th {
  border-color: #899196;
}
.blog-content .table-hover .table-info:hover,
.blog-content .table-hover .table-info:hover > td,
.blog-content .table-hover .table-info:hover > th,
.blog-content table.table-results .table-info:hover,
.blog-content table.table-results .table-info:hover > td,
.blog-content table.table-results .table-info:hover > th {
  background-color: #b3b7ba;
}
.blog-content .table-warning,
.blog-content .table-warning > td,
.blog-content .table-warning > th {
  background-color: #ffeeba;
}
.blog-content .table-warning tbody + tbody,
.blog-content .table-warning td,
.blog-content .table-warning th,
.blog-content .table-warning thead th {
  border-color: #ffdf7e;
}
.blog-content .table-hover .table-warning:hover,
.blog-content .table-hover .table-warning:hover > td,
.blog-content .table-hover .table-warning:hover > th,
.blog-content table.table-results .table-warning:hover,
.blog-content table.table-results .table-warning:hover > td,
.blog-content table.table-results .table-warning:hover > th {
  background-color: #ffe8a1;
}
.blog-content .table-danger,
.blog-content .table-danger > td,
.blog-content .table-danger > th {
  background-color: #f5c6cb;
}
.blog-content .table-danger tbody + tbody,
.blog-content .table-danger td,
.blog-content .table-danger th,
.blog-content .table-danger thead th {
  border-color: #ed969e;
}
.blog-content .table-hover .table-danger:hover,
.blog-content .table-hover .table-danger:hover > td,
.blog-content .table-hover .table-danger:hover > th,
.blog-content table.table-results .table-danger:hover,
.blog-content table.table-results .table-danger:hover > td,
.blog-content table.table-results .table-danger:hover > th {
  background-color: #f1b0b7;
}
.blog-content .table-light,
.blog-content .table-light > td,
.blog-content .table-light > th {
  background-color: #fdfdfe;
}
.blog-content .table-light tbody + tbody,
.blog-content .table-light td,
.blog-content .table-light th,
.blog-content .table-light thead th {
  border-color: #fbfcfc;
}
.blog-content .table-hover .table-light:hover,
.blog-content .table-hover .table-light:hover > td,
.blog-content .table-hover .table-light:hover > th,
.blog-content table.table-results .table-light:hover,
.blog-content table.table-results .table-light:hover > td,
.blog-content table.table-results .table-light:hover > th {
  background-color: #ececf6;
}
.blog-content .table-dark,
.blog-content .table-dark > td,
.blog-content .table-dark > th {
  background-color: #c6c8ca;
}
.blog-content .table-dark tbody + tbody,
.blog-content .table-dark td,
.blog-content .table-dark th,
.blog-content .table-dark thead th {
  border-color: #95999c;
}
.blog-content .table-hover .table-dark:hover,
.blog-content .table-hover .table-dark:hover > td,
.blog-content .table-hover .table-dark:hover > th,
.blog-content table.table-results .table-dark:hover,
.blog-content table.table-results .table-dark:hover > td,
.blog-content table.table-results .table-dark:hover > th {
  background-color: #b9bbbe;
}
.blog-content .table-active,
.blog-content .table-active > td,
.blog-content .table-active > th,
.blog-content .table-hover .table-active:hover,
.blog-content .table-hover .table-active:hover > td,
.blog-content .table-hover .table-active:hover > th,
.blog-content table.table-results .table-active:hover,
.blog-content table.table-results .table-active:hover > td,
.blog-content table.table-results .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.blog-content .table .thead-dark th,
.blog-content table.table-results .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.blog-content .table .thead-light th,
.blog-content table.table-results .thead-light th {
  color: #495057;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.blog-content .table-dark {
  color: #fff;
  background-color: #343a40;
}
.blog-content .table-dark td,
.blog-content .table-dark th,
.blog-content .table-dark thead th {
  border-color: #454d55;
}
.blog-content .table-dark.table-bordered {
  border: 0;
}
.blog-content .table-dark.table-striped tbody tr:nth-of-type(odd),
.blog-content table.table-dark.table-results tbody tr:nth-of-type(odd) {
  background-color: hsla(0, 0%, 100%, 0.05);
}
.blog-content .table-dark.table-hover tbody tr:hover,
.blog-content table.table-dark.table-results tbody tr:hover {
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.075);
}
@media (max-width: 575.98px) {
  .blog-content .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .blog-content .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .blog-content .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .blog-content .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .blog-content .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .blog-content .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .blog-content .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .blog-content .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.blog-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blog-content .table-responsive > .table-bordered {
  border: 0;
}
.blog-content caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
.blog-content table.table-results,
.blog-content table.table-primary {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif !important;
  font-size: 1rem;
  table-layout: fixed;
}
.blog-content table.table-results .red,
.blog-content table.table-primary .red {
  color: #ca5858;
}
.blog-content table.table-results .green,
.blog-content table.table-primary .green {
  color: #679f67;
}
.blog-content table.table-results thead,
.blog-content table.table-primary thead {
  color: #fff;
  background-color: #00d07e;
  letter-spacing: 0.025rem;
}
@media (max-width: 991.98px) {
  .blog-content table.table-results thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
}
.blog-content table.table-results thead tr th,
.blog-content table.table-primary thead tr th {
  line-height: normal;
  padding-top: 0.45rem;
  padding-bottom: 0.4rem;
  border: 0 !important;
}
@media (max-width: 991.98px) {
  .blog-content table.table-results tbody tr td {
    z-index: 1;
    border: none;
    position: relative;
    padding-left: 55%;
    padding-right: 17px;
    padding-top: 17px;
  }
}
@media (max-width: 991.98px) {
  .blog-content table.table-results tbody tr td:before {
    z-index: 0;
    content: attr(data-before);
    background-color: #00d07e;
    color: #fff;
    line-height: 3.65rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    padding-right: 10px;
    white-space: nowrap;
    padding-left: 23px;
  }
}
@media (max-width: 991.98px) {
  .blog-content table.table-results tbody tr td:last-of-type {
    padding-bottom: 17px;
  }
}
.blog-content table.table-results caption,
.blog-content table.table-primary caption {
  font-size: 0.75rem;
  font-style: italic;
  padding-bottom: 0;
}
@media (max-width: 991.98px) {
  .blog-content table.table-results caption {
    display: inline-block;
  }
}
.blog-content table.centered.table-results tbody tr td,
.blog-content table.centered.table-results thead tr th,
.blog-content table.centered.table-primary tbody tr td,
.blog-content table.centered.table-primary tbody tr th {
  text-align: center;
}
.blog-content table.white-td.table-results tbody tr td {
  background-color: #fff;
}
.blog-content table.th-valign-top.table-results thead tr th {
  vertical-align: top;
}
.blog-content table.th-font-size-smaller.table-results thead tr th {
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .blog-content table.table-results,
  .blog-content table.table-results tbody,
  .blog-content table.table-results td,
  .blog-content table.table-results th,
  .blog-content table.table-results thead,
  .blog-content table.table-results tr {
    display: block;
  }
}
.blog-content table.table-layout-auto {
  table-layout: auto;
}
.blog-content table.table-layout-auto th,
.blog-content table.table-layout-auto td {
  table-layout: auto;
  width: 1%;
}
.blog-content .table-responsive table.table-primary {
  table-layout: auto;
}
.blog-content .table-responsive table.table-primary th,
.blog-content .table-responsive table.table-primary td {
  table-layout: auto;
  width: 1%;
}
@media (min-width: 992px) {
  .blog-content .max-width-1200-lg-up {
    max-width: 1200px !important;
  }
  .blog-content .max-width-1200-lg-up > iframe.embed-responsive-item {
    padding-left: 17%;
    padding-right: 17%;
  }
  .blog-content .max-width-1200-lg-up.embed-responsive-16by9::before {
    padding-top: 37.25%;
  }
  .blog-content .max-width-1200-lg-up.embed-responsive-21by9::before {
    padding-top: 37.25%;
  }
}
.blog-content .greencirclenumber[data-num]:before {
  content: attr(data-num);
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 1.25rem;
  background-color: #00d07e;
  color: #fff;
  text-align: center;
  font-weight: normal;
  margin-right: 1rem;
}
.blog-content > * + h2,
.blog-content * + p > .h2 {
  margin-top: 2.25rem !important;
  margin-bottom: 1.75rem !important;
}
.blog-content .wistia_embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.blog-content .wistia_embed > iframe {
  width: 100%;
  height: 100%;
}
.blog-content .wistia_thumbnail {
  position: absolute;
  top: 0;
  margin: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.blog-content ul {
  margin-top: 0 !important;
}
.blog-content ul li,
.blog-content ol li {
  line-height: 32px;
  font-size: 18px;
}

/* Comment Section */
#comments .img-sm {
    width: 46px;
    height: 46px;
}

#comments .panel .media-block{
    border: 0;
    margin-bottom: 15px;
}


#comments .media-block .media-left {
    display: block;
    float: left
}

#comments .media-block .media-right {
    float: right
}

#comments .media-block .media-body {
    display: block;
    overflow: hidden;
    width: auto
}

#comments .middle .media-left,
#comments .middle .media-right,
#comments .middle .media-body {
    vertical-align: middle
}

#comments .thumbnail {
    border-radius: 0;
    border-color: #e9e9e9
}

#comments .text-sm {
    font-size: 0.9em;
}
#comments .btn-icon {
    padding-left: 9px;
    padding-right: 9px;
}

figure.image{
    width: 100% !important;
}
figure.image img{
    width: 100% !important;
}