/* Blog header */
.content-wrapper{
  max-width: 1190px;margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.blog-header {
  background-color: #F8FAFC;
  text-align: center;
}

.blog-header__inner {
  margin: 0 auto;
  max-width: 600px;
  padding: 3.3rem 0;
}

.blog-header__title {
  font-size: 2rem;
}

.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    margin: 0 auto;
    width: 500px;
  }
}

/* Blog header - author listing */

.blog-header__author-avatar {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  height: 200px;
  margin: 0 auto 1.5rem;
  width: 200px;
}

.blog-header__author-social-links a {
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  margin: 0 5px;
  position: relative;
  width: 40px;
}

.blog-header__author-social-links a:hover {
  background-color: #494A52;
}

.blog-header__author-social-links svg {
  fill: #FFF;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}

/* Blog listing */

.blog-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}

.blog-index:after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.blog-index__tag-header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding: 1rem;
}

.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}

.blog-index__tag-heading {
  border-bottom: 3px solid #D1D6DC;
  padding-bottom: 1rem;
}

.blog-index__post {
  -webkit-box-flex:  0;
  -ms-flex:  0 0 100%;
  flex:  0 0 100%;
}

@media screen and (min-width: 768px) {
  .blog-index__post {
    -webkit-box-flex:  0;
    -ms-flex:  0 0 calc(100%/2);
    flex:  0 0 calc(100%/2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-index__post {
    -webkit-box-flex:  0;
    -ms-flex:  0 0 calc(100%/3);
    flex:  0 0 calc(100%/3);
  }
}

@media screen and (min-width: 768px) {
  .blog-index__post--large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    justify-items: space-between;
  }
}

.blog-index__post-image {
  display: block;
  background-image: url('https://6326501.fs1.hubspotusercontent-na1.net/hubfs/6326501/boilerplate/grayscale-mountain.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 63%;
}

@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-bottom: 0;
  }

  .blog-index__post-content--large {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-left: 2rem;
  }

  .blog-index__post-image--large {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 48%;
    flex: 1 1 48%;
  }

  .blog-index__post-content--large {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 48%;
    flex: 1 1 48%;
    padding-left: 2rem;
  }

  .blog-index__post-content--full-width {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-left: 0;
  }
}

.blog-index__post-content h2 {
  margin: 0.5rem 0;
}

.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}

.blog-index__post-content p {
  font-family: Lato, sans-serif;
}

.blog-index__post-content a {
  color: #494A52;
}

.blog-index__post img {
  height: auto;
  max-width: 100%;
}

/* Blog pagination */

.blog-pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Lato, sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 3.3rem;
  text-align: center;
}

.blog-pagination__link {
  border: 2px solid transparent;
  border-radius: 7px;
  color: #494A52;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin: 0 0.1rem;
  padding: 0.25rem 0.4rem;
  text-decoration: none;
}

.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}

.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.blog-pagination__prev-link {
  margin-right: 0.25rem;
  text-align: right;
}

.blog-pagination__next-link {
  margin-left: 0.25rem;
  text-align: left;
}

.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  cursor: default;
  pointer-events: none;
}

.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494A52;
  margin: 0 5px;
}

.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}

.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

/* Blog post */

/* .blog-post {
margin: 0 auto;
max-width: 960px;
padding: 3.3rem 0;
}

.blog-post h1 {
font-size: 1.6rem;
}

.blog-post__meta {
margin: 1rem 0;
}

.blog-post__meta a {
color: #494A52;
text-decoration: underline;
}

.blog-post__tags {
color: #000;
font-family: Lato, sans-serif;
}

.blog-post__tags svg {
height: auto;
margin-right: 10px;
width: 15px;
}

.blog-post__tag-link {
color: #000;
font-size: .8rem;
} */

/* Blog related posts */

.blog-recent-posts {
  background-color: #F8FAFC;
  margin-top: 3rem;
  padding: 2rem 0;
}

.blog-recent-posts h2 {
  text-align: center;
}

.blog-recent-posts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-recent-posts__post {
  color: #494A52;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100%/2);
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100%/3);
    flex: 0 0 calc(100%/3);
  }
}

.blog-recent-posts__post:hover {
  text-decoration: none;
}

.blog-recent-posts__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 63%;
}

.blog-recent-posts__title {
  margin: 1rem 0 0.5rem;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments form {
  max-width: 100%;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .hs-button {
  background-color: transparent;
  border: 2px solid #494A52;
  color: #494A52;
}

.blog-comments .hs-button:hover {
  background-color: #494A52;
  color: #FFF;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  color: #494A52;
  text-decoration: underline;
}
.color_white{
  color: white;
}
.blog__listing .listing__content__topic{
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  background: #6ba7ed;
  padding: 5px 12px;
  width: fit-content;
}
.blog__listing h3 {
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
}

.latest-stories .author-link span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 135px;
  line-height: 15px;
  text-align: left;
}

.blog__listing .author-link img{
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 5px;
  float: left;
  margin-top: 0px;
}
.blog_search input[type="text"] {
  height: 40px;
  border: 1px solid rgba(169,169,169,0.5);
  padding-right: 45px;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 100;   
}
.search__icon{
  font-family: adesso-icons;
  font-size: 20px;
  line-height: 2.6rem;
  color: #3f51b5;
  cursor: pointer;
}

/****************************** NEW *****************************/
.blog__padding-top{
  padding-top:30px;
}

.item-container {
  margin-left: -20px; 
}

.item-box{
  padding: 0 0 20px 20px;
}

@media screen and (max-width: 678px) {
  .item-container {
    margin-left: 0; 
  }

  .item-box{
    padding: 0;
  }
}
.latest-stories .author-link{
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 135px;
  line-height: 15px;
  text-align: left;
}

.latest-stories .featured-posts .item:first-child {
  display: block;
  width: 50%;
  float: left;
}
.latest-stories .featured-posts .item {
  overflow: hidden;
}

.latest-stories .featured-posts .item:first-child+.item {
  display: block;
  width: 50%;
  float: left;
  padding-left: 25px;
}

.latest-stories .featured-posts .item:first-child+.item+.item, .latest-stories .featured-posts .item:first-child+.item+.item+.item {
  display: block;
  width: 25%;
  float: left;
  padding-left: 25px;
  padding-top: 25px;
}
@media (max-width: 960px) and (min-width: 768px){
  body .latest-stories .featured-posts .item:first-child+.item+.item {
    display: block;
    width: 50%;
    float: left;
    padding-left: 0px;
    padding-top: 25px;
  }
}
@media (max-width: 960px) and (min-width: 768px){
  body .latest-stories .featured-posts .item:first-child+.item+.item+.item {
    display: block;
    width: 50%;
    float: left;
    padding-left: 25px;
    padding-top: 25px;
  }
}
@media (max-width: 767px){
  .latest-stories .featured-posts .item:first-child, .latest-stories .featured-posts .item:first-child+.item, .latest-stories .featured-posts .item:first-child+.item+.item, .latest-stories .featured-posts .item:first-child+.item+.item+.item {
    display: block;
    width: 100%;
    float: none;
    padding: 0px 0px 20px;
  }
}
.latest-stories .featured-posts .item:first-child .post-image {
  height: 500px;
}
@media (max-width: 960px) and (min-width: 768px){
  body .latest-stories .featured-posts .item:first-child .post-image {
    height: 250px;
  }
}
@media (max-width: 767px){
  body .latest-stories .featured-posts .item .post-image {
    height: 300px !important;
  }
}
.latest-stories .featured-posts .item:first-child+.item .post-image {
  height: 250px;
}
.latest-stories .featured-posts .item:first-child+.item+.item .post-image, .latest-stories .featured-posts .item:first-child+.item+.item+.item .post-image {
  height: 225px;
}
@media (max-width: 960px) and (min-width: 768px){
  body .latest-stories .featured-posts .item:first-child+.item+.item .post-image, body .latest-stories .featured-posts .item:first-child+.item+.item+.item .post-image {
    height: 250px;
  }
}
.latest-stories .post-image {
  padding: 20px;
  background-size: cover !important;
  background-position: top center !important;
  width: 100%;
  position: relative;
}

.post-image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  background: rgba(0,0,0,0.5);
}
.item-wrapper {
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
}
.post-date {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff; 
}
.title-wrap {
  bottom: 0px;
  position: absolute;
  display: block;
}



.featured-stories h2 {
  font-size: 26px;
  font-weight: 300;
  color: #3c3c3b;
  padding-bottom: 10px;
  width: 100% !important;
  line-height: 35px;
  margin: 0;
  text-transform: uppercase;
}

.latest-stories h2 {
  font-size: 26px;
  font-weight: 300;
  color: #3c3c3b;
  padding-bottom: 10px;
  line-height: 35px;
  margin: 0;
  text-transform: uppercase;
}

.latest-stories h2.headline {
  font-weight: bold;
}

.latest-stories .post-title h2 {
  line-height: 1.25;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-transform: none;
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .latest-stories .item-3 .title-wrap, .latest-stories .item-4 .title-wrap {
    top: 0;
    bottom: auto;
  }
  .featured-posts .item-3 h2, .featured-posts .item-4 h2 {
    font-size: 22px;
  }
}

.post-recents-topic a:first-child, .topics-list-bottom a:first-child {
  display: inline-block;
}
.latest-stories .topic-link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: capitalize;
  background: #006ec7;
  padding: 2px 12px;
  display: inline-block;
  margin: 0;
}
.topic-tab {
  border: 1px solid #a9a9a9;
  border-top-color: rgb(169, 169, 169);
  border-top-style: solid;
  border-top-width: 1px;
  border-right-color: rgb(169, 169, 169);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgb(169, 169, 169);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: rgb(169, 169, 169);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  margin-bottom: 40px;
}
.topic-tab ul {
  text-align: left;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-left: 1px solid #a9a9a9;
}

@media screen and (max-width: 640px) {
  .topic-tab ul {
    border-left: none !important;
    border-top: 1px solid #a9a9a9;
  }
}
.topic-tab h3{
  display:none;
}

.topic-tab ul li {
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .topic-tab ul li {
    display: block: !important;
    width: 50% !important;
  }
}
.topic-tab ul li a {
  font-size: 14px !important;
  color: #626262 !important;
  text-decoration: none;
  padding: 0;
  text-transform: none !important;
}
.topic-tab ul li a .filter-link-count{
  display:none;
}
.topic-tab .topic-handler {
  padding: 10px 10px;
  font-size: 15px;
  margin: 0;
}

/*********** FEATURED STORIES *****************/
@media (min-width: 768px)
  .post-listing {
    margin: 0 -25px 0 0;
    padding: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.post-item {
}
@media (min-width: 768px){
  .adesso__post__filter__listing .post-item {
    display: block;
    box-sizing: border-box;
    align-self: stretch;
  }
}
.adesso__post__filter__listing .post-item-inner {
  padding-right: 0;
  border: 1px solid #efefef;
  padding: 0px 0px;
  background: #fff;
}

.post-item-inner .post-item-bottom {
  position: absolute;
  bottom: 10px;
}

.post-item-inner .post-item-bottom .authorname {
  font-size: 13px;
}

.adesso__post__filter__listing .hs-featured-image-wrapper {
  position: relative;
}
.post-date-inner {
  position: absolute;
  top: 10px;
  z-index: 1;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 0px 10px;
}
.post-item .topics-link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  background: #006ec7;
  padding: 2px 10px;
  letter-spacing: .25px;
  position: absolute;
  z-index: 10;
  bottom: 7px;
  left: 7px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 !important;
}
.post-recents-topic a:first-child, .topics-list-bottom a:first-child {
  display: inline-block;
}
.adesso__post__filter__listing .hs-featured-image {
  float: none;
  margin: 0 0 20px 0;
  max-width: 100%;
  padding-right: 0;
  height: 150px;
  width: 100%;
  display: block;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
}

.adesso__post__filter__listing .hs-featured-image:after {
  content: "";
  background: rgba(0,0,0,.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.post-item .post-body {
  padding: 15px;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.adesso__post__filter__listing .post-header h2, .adesso__post__filter__listing .post-header h2 a {
  margin: 0px;
  line-height: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  width: 100% !important;
  color: inherit;
}
.clearfix:after {
  clear: both;
}

}
.post-item-bottom {
  overflow: hidden;
  display: block;
  overflow: hidden;
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(169,169,169,0.25);
  margin-top: 15px;
}
.author-link-bottom {
  padding: 0px 0 0;
  float: left;

}
.author-link-bottom {
  font-size: 13px;
  font-weight: 400;
  color: #a9a9a9;
  padding-top: 5px;
}

.post-item-bottom .hs-author-avatar img, .author-data .hs-author-avatar img {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 5px;
  float: left;
  margin-top: 0px;
}
/************ POPULAR POST LISTING ************/
.popular__post__listing ul{
  list-style: none;
  padding-left: 0px;
}
.popular__post__listing li{
  display: flex;
  align-items: end;
  margin-bottom: 20px;

}
.popular__post__listing p{
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
  padding-left: 0px;
  color: #626262;
  min-height: 28px;
  margin-left: 5%;
  margin-bottom: 0;
}

.popular__post__listing img {
  width: 55px;
  height: 55px;
}

.adesso__blog_sidebar h3 {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: #3c3c3b;
  padding-bottom: 10px;
  padding-top: 4px;
}
.adesso__blog_sidebar h3:after {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #006ec7;
}
h3.hs_cos_wrapper.form-title{
  display:none;
}
h3.hs_cos_wrapper.form-title:after{
  display:none;
}

.adesso__blog_sidebar .border{
  border-left: 1px solid rgba(98,98,98,0.12);
  padding-left: 15px;
  margin-left: -5px;
  padding-bottom: 60px;
}
.adesso__blog_sidebar .adesso_topics-links{
  background-color: #ededed;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  padding: 4px 14px;
  margin: 4px 2px;
  display: inline-block;
}

.adesso__blog_sidebar .adesso_topics-links a {
  font-size: inherit;
}

.blog-listing .related-item-inner, .blog-listing .post-item-inner {
  cursor: auto !important;
}

#adesso-blog-form input[type="submit"] {
  background: #006ec7;
  font-family: 'klavika';
}

.blog-post-banner h1 {
  width: 70%;
  font-weight: bold;
  font-size: 5rem;
  color: #ffffff !important;
  line-height: 7.2rem;
  letter-spacing: 1.5px;
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 0;
}

@media screen and (max-width: 667px) {
  .blog-post-banner h1 {
    margin-top: 10rem;
    line-height: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .blog-post-banner h1 {
    line-height: 6.7rem;
    width: 90%;
    margin-top: 10rem;
    margin-left: 5%;
    margin-right: 5%;
  }
}

.topic-tab .uk-subnav>* {
  padding-left: 10px;
}

.blog .latest-stories ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 400;
}

.blog .latest-stories :-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-weight: 400;
}

.blog .latest-stories ::-ms-input-placeholder { /* Microsoft Edge */
  font-weight: 400;
}

.blog input[type="search"] {
  font-weight: 400;
}


.blog input[type="search"]:focus {
  border: 1px solid #e5e5e5 !important;
}

.simple-pagination ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

.blog-listing .pagination .prev:before {
  content: "\f053";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  font-size: 18px;
  padding-right: 10px;
}

.blog-listing .pagination .next:after {
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  font-size: 18px;
  padding-left: 10px;
}

.blog .pagination ul li {
  margin-left: 20px;
}

.post-meta #hubspot-author_data p {
  font-size: 1.8rem;
  font-weight: bold;
}

.blog-post .body-container-wrapper .content-wrapper {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 769px) {
  .blog-post .body-container-wrapper .blog-section .content-wrapper {
    width: 66.66666667%;
  }
}

.blog-post .blog-section {
  max-width: 1450px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: 0px;
  margin: 0 auto;
}

.section.post-header hr{
  width: 7.2rem;
  background-color: #0080C9;
  height: 3px;
  margin: 4.8rem auto;
}

.blog-post .hs_cos_wrapper_type_rich_text p {
  line-height: 3.2rem !important;
}