.hs-blog-listing .dnd-section .dnd-column {
  padding: 0;
}
.section.post-footer {
    clear: both;
    float: none;
    padding-top: 20px;
}
/* Blog header */

.blog-header {
  background-color: #f8fafc;
  text-align: center;
}

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

/* Blog header - author listing */

.blog-header__author-avatar {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  display: block;
  height: auto;
  margin: 0 auto 1.4rem;
  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,
.blog-header__author-social-links a:focus {
  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 header - tag listing */

.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 listing */

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

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

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

@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.blog-index__post--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-index__post-inner-card {
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  width: 100%;
}

.blog-index__post-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  display: block;
  padding-bottom: 63%;
}

@media (min-width: 1000px) {
  .full-width .blog-index__post-image {
    min-height: 300px;
    padding-bottom: unset;
  }
}

.blog-index__post-inner-card .blog-index__post-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 24px 30px 30px 30px;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blog-post__tag-link:hover {
  text-decoration: none;
}

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

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.blog-post__meta-section {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
}
.blog-post__meta-section.no-min {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-post__read-more a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  padding-left: 10px;
  position: relative;
  top: 3px;
}

.blog-post__read-more svg {
  height: auto;
  width: 15px;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* Blog listing - sidebar */

@media screen and (min-width: 1000px) {
  .sidebar.full-width .blog-index .blog-index__post,
  .sidebar .full-width .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
  }
  .sidebar.three-col .blog-index .blog-index__post,
  .sidebar .three-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }
  .sidebar.four-col .blog-index .blog-index__post,
  .sidebar .four-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 4);
    flex: 0 0 calc(100% / 4);
  }
}

@media screen and (max-width: 999px) {
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 767px) {
  .sidebar .blog-index {
    padding: 1rem 0 3.3rem;
  }
}



/* Blog mobile sidebar */

@media (max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hs-blog-listing .span9 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }


}


/* Blog post */

.post-featured-image {
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: -110px;
  margin-top: 40px;
  min-height: 300px;
}

.blog-post {
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 960px;
  padding: 84px 100px 80px 100px;
  position: relative;
  width: 90%;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

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

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__timestamp {
  display: inline-block;
}

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

.blog-post__links-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 26px 0;
}

@media (max-width: 767px) {
  .blog-post__links-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hs-blog-social-share {
    height: 0 !important;
  }
  .hs-blog-social-share-list {
    padding-top: 20px;
  }
}

.hs-blog-social-share .hs-blog-social-share-item-linkedin {
  margin-top: -7px;
}

.blog-post__back-to-blog,
.blog-post__back-to-blog:hover {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  margin-right: 10px;
  position: relative;
  top: 6px;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 20px;
}

@media (max-width: 767px) {
  .blog-post img {
    float: none !important;
    width: 100% !important;
  }

  .blog-post {
    width: 90%;
    padding: 30px;
  }

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

/* Blog related posts */

.blog-related-posts {
  margin-top: 3rem;
  padding: 2rem 0;
}

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

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

.blog-related-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-related-posts .blog-post__meta-section {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-related-posts__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  max-width: 100%;
  padding-bottom: 63%;
}

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

.blog-related-posts__title a {
  color: #494a52;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 100%;
}

.blog-comments form {
  max-width: 100%;
  padding-top: 2em;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

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

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

/* Subscription section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}


/*====== =======*/

.body-container--blog-index .row-fluid [class*="span"]{
  min-height: 0;
}
.body-container--blog-index .dnd-section {
  padding: 0;
}
.body-container--blog-index .dnd-section > .row-fluid{
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.hs_blog_wrapper {
  padding: 50px 0;
}
.blog-content {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.page-title {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 40px;
}
.blog-listing-wrapper .post-listing .post-item {
  margin: 0 0 70px;
}
.blog-listing-wrapper .post-listing .post-item .post-item-row {
  margin-right: -6px;
  margin-left: -6px;
}
.blog-listing-wrapper .post-listing .post-item .post-header {
  padding: 20px 10px 20px;
}
.blog-listing-wrapper .post-listing .post-item .post-header h2, h2.post-listing-simple {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 28px;
  color: #303188;
}
.blog-listing-wrapper .post-listing .post-item .post-header h2 a, h2.post-listing-simple a {
  color: #303188;
}
.blog-listing-wrapper .post-listing .post-item .post-header h2 a:hover, h2.post-listing-simple a:hover {
  color: #1d97d4;
}
.custom-byline-listing {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
}
.custom-byline-listing > span {
  margin-right: 5px;
  display: inline-block;
}
.hs-blog-listing .hs-featured-image-wrapper, .blog-listing-wrapper .post-listing .post-item .post-body {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
.hs-blog-listing .hs-featured-image-wrapper {
  margin-bottom: 20px;
}
.overlay-container {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}
.hs-blog-listing .hs-featured-image-wrapper img.hs-featured-image {
  border-width: 0;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: 100%;
  display: inline-block !important;
  float: none;
  margin: 0;
}
.hs-featured-image-link {
  border: 0;
}
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link {
  position: absolute;
  z-index: 10;
  top: 0;
  padding: 15px;
  bottom: 0px;
  left: 0;
  right: 0px;
  background-color: rgba(30,30,30,0.5);
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all ease-in-out .25s;
  -o-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  color: #fff;
}
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link i {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  font-size: 32px;
  line-height: 80px;
}
.hs-blog-listing .hs-featured-image-wrapper .overlay-container:hover .hs-featured-image-link {
  height: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1,1);
}
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link i:hover {
  background-color: #fff;
  color: #777;
}
.blog-listing-wrapper .post-listing .post-item .post-body .post-content {
  padding: 0 10px 10px;
  padding-bottom: 0;
  margin-bottom: 15px;
}
.blog-listing-wrapper .post-listing .post-item .post-body .post-content p {
  margin: 0;
}
.post-item-footer {
  font-size: 12px;
  padding: 10px 0;
  color: #aaa;
  border-top: 1px solid #eaeaea;
  clear: left;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.blog-pagination {
  overflow: hidden;
  border-radius: 4px;
  display: inline-block;
  padding-left: 0;
  margin: 20px 0 40px;
  text-align: left;
}
.blog-pagination>div {
  display: inline-block;
}
.blog-pagination a {
  position: relative;
  float: left;
  display: inline-block;
  margin: 0 5px 0 0;
  text-align: center;
  padding: 0;
  height: 40px;
  width: 40px;
  border: 1px solid #777;
  line-height: 39px;
  background-color: #777;
  color: #fff;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  text-decoration: none;
}
.blog-pagination a:hover, .blog-pagination a:focus {
  color: #fff;
  background-color: #1d97d4;
  border-color: #1d97d4;
  text-decoration: none;
}
.blog_pane .btmpn-wrapper h2 {
  color: #303188;
}


/*====Blog Sidebar====*/
.blog-sidebar {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.sidebar_social{
  text-align: center;
}
.cus_blog_sidebar p {
  margin-top: 1em;
  margin-bottom: 1em;
}
.body-wrapper .cus_blog_sidebar hr {
  box-sizing: content-box;
  overflow: visible;
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: 0;
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}
.sidebar_social .sidebar_socialIn a{
  text-decoration: none;
}
.sidebar_social .sidebar_socialIn a > span{
  background-size: 100%;
  width: 32px;
  height: 32px;
  display: inline-block;
  cursor: pointer;
}
.blog-sidebar .widget_sidebar {
  margin-bottom: 50px;
}
.blog-sidebar .widget_sidebar h3 {
  margin-top: 3px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
  color: #1b94d2;
}
.blog-sidebar .widget_sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.blog-sidebar .widget_sidebar ul li {
  padding: 2px 0;
}
.blog-sidebar .widget_sidebar ul li a .filter-link-count {
  color: #777;
}
.sidebar_from_wrap h3 {
  font-size: 24px;
  color: #1b94d2;
  line-height: 1.25;
  margin: 15px 0;
}
.sidebar_from_wrap .sidebar_form h3:empty{
  display: none;
}
.sidebar_from_wrap .sidebar_form form .hs-form-field > .input > .hs-input {
  display: inline-block;
  width: 90% !important;
  max-width: 500px;
  padding: 9px 10px;
}
.sidebar_from_wrap .sidebar_form form .hs_submit > .actions {
  margin-top: 18px;
  margin-bottom: 0px;
  padding: 17px 0px;
}
.sidebar_from_wrap .sidebar_form form .hs-button {
  font-size: 14px;
}


/*====Blog Post page style====*/
.custom-byline-post {
  padding: 0 0 15px 0;
}
.custom-byline-post > span {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  margin-right: 5px;
  display: inline-block;
}
.blog-post__body h1, .blog-post__body h2, .blog-post__body h3, 
.blog-post__body h4, .blog-post__body h5, .blog-post__body h6 {
  margin: 15px 0;
  line-height: 1.25;
}
.blog-post__body h1 {
  color: #333;
  font-size: 30px;
}
.blog-post__body h2 {
  color: #303188;
  font-size: 28px;
}
.blog-post__body h3 {
  color: #1b94d2;
  font-size: 24px;
}
.blog-post__body h4 {
  color: #faa61a;
  font-size: 20px;
  font-weight: 700;
}
.blog-post__body h5 {
  font-weight: 700;
}
.blog-post__body h6 {
  font-size: 16px;
  font-weight: 700;
}
.blog-post__body p, .post_social_wrap p{
  margin-top: 1em;
  margin-bottom: 1em;
}
.blog-post-wrapper .blog-post__body img {
  max-width: 100%;
  display: initial;
}
.blog-post__body blockquote {
  padding: 0;
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 10px solid #333;
  padding-left: 15px;
  margin-left: 40px;
  margin-right: 40px;
  display: block;
}
.blog-post__body blockquote::after{
  content: none;
}

.blog-post-wrapper .custom-post-footer {
  font-size: 12px;
  padding: 10px 0;
  color: #aaa;
  border-top: 1px solid #eaeaea;
}
.post_bottom_social a {
  width: 24px;
  border-width: 0px;
  border: 0px;
}
.post_bottom_social a img {
  max-height: 24px;
  max-width: 24px;
  border-width: 0px;
  border: 0px;
  display: initial;
}

/*=====Bottom Pane Style====*/

.blog_pane .btmpn-wrapper .btmpn-bottom {
  margin-bottom: 0;
}
.blog_pane .btmpn-wrapper .box_item > br {
  display: block;
}
.blog_pane .btmpn-wrapper .box h4 {
  margin: 15px 0;
  line-height: 1.25;
  font-size: 18px;
  text-transform: none;
}
.blog_pane .btmpn-wrapper .box:hover h4 {
  color: #333;
}
.hs-blog-post .blog_pane .btmpn-wrapper .space-bottom {
  padding-bottom: 0;
}
.hs-blog-post .blog_pane .btmpn-wrapper .btmpn-bottom > .page-center:not(.space-bottom){
  max-width: 1140px;
  padding-bottom: 20px;
}
.blog_pane .btmpn-wrapper .btmpnLogos table{
  height: 159px;
  margin-bottom: 1rem;
}
.blog_pane .btmpn-wrapper .btmpnLogos td {
  height: 159px;
  padding: .75rem;
  background-color: rgba(255,255,255,1.0);
  border: 1px solid rgba(255,255,255,0.0);
  color: rgba(119,119,119,1.0);
}
.blog_pane .btmpn-wrapper .btmpnLogos img {
  margin: 0px auto;
  padding: 0;
}

.comment-date {
  display: block !important;
  text-align: left !important;
}
.replying {
  padding-left: 2em;
  padding: 2em;
}


@media (min-width: 768px) {
  .hs-blog-listing .hs-featured-image-wrapper, .blog-listing-wrapper .post-listing .post-item .post-body {
    float: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .blog-content {
    float: left;
    width: 66.66666667%;
  }
  .blog-sidebar {
    float: left;
    width: 33.33333333%;
  }
  .blog-listing-wrapper .post-listing .post-item .post-header {
    padding-top: 0;
  }
  .post-item-footer {
    margin-top: 15px;
  }
}

@media (min-width: 1200px) {
  .blog-sidebar {
    width: 25%;
    margin-left: 8.33333333%;
  }
}

@media (max-width: 1199px) {
  .hs-blog-post .blog_pane .btmpn-wrapper .btmpn-bottom > .page-center:not(.space-bottom) {
    max-width: 970px;
  }
}

@media (max-width: 991px) {
  .hs-blog-post .blog-sidebar {
    margin-top: 40px;
  }
  .hs-blog-post .blog_pane .btmpn-wrapper .btmpn-bottom > .page-center:not(.space-bottom) {
    max-width: 750px;
  }
}


@media (max-width: 767px) {
  .blog-listing-wrapper .post-listing .post-item .post-header h2, h2.post-listing-simple {
    font-size: 23.8px;
  }
  .sidebar_from_wrap h3 {
    font-size: 20.4px;
  }
  .sidebar_from_wrap .sidebar_form form .hs-form-field > .input > .hs-input {
    width: 100% !important;
    max-width: 100%;
  }
  .blog-post__body h1 {
    font-size: 25.5px;
  }
  .blog-post__body h2 {
    font-size: 23.8px;
  }
  .blog-post__body h3 {
    font-size: 20.4px;
  }
  .blog-post__body h4 {
    font-size: 17px;
  }
  .hs-blog-post .blog_pane .btmpn-wrapper .btmpn-bottom > .page-center:not(.space-bottom) {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .blog_pane .btmpn-wrapper .box_item:last-child > br {
    display: none;
  }
  .hs_recaptcha.hs-recaptcha {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.data-hs-responsive-table {
  border: 0
  
}
table, tr, td, th {
  border: 0; border: hidden;!important;
}