/* Blog listing */

.blog-index {
  display: flex;
  flex-wrap: wrap;
}

.blog-index__post {
  flex: 0 0 100%;
  padding: 1.4rem 1rem;
}
.rock_blog_post_hero_overlay {
  position: absolute;
  content: '';
  background-color: #0237d4bd;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.rock_blog_post_main {
  position: relative;
  z-index: 1;
}
.rock_blog_post_main .patterns.bottom {
  bottom: -28px;
  transform: rotate(180deg);
}

.rock_blog_post_main .patterns {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 1450px 160px;
  height: 0;
  padding: 0px;
  padding-bottom: 150px;
  z-index: 1;
}

.author-date-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .blog-index__post--small {
    flex: 0 0 calc(100% / 2);
  }
}

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

@media screen and (min-width: 768px) {
  .blog-index__post--large {
    display: flex;
    flex: 1 0 100%;
  }
}

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

.rock_blog_bg {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .blog-index__post-image-wrapper--large {
    flex: 1 1 48%;
  }

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

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

}
.rock_blog_image{
  min-height: 210px;
  border-radius: 0px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.blog-index__post-title {
  font-size: 24px;
}

.blog-index__post-timestamp {
  display: block;
}

.blog-index__post-author {
  align-items: center;
  display: flex;
}
.three-column-blog-list-card.section-padding {
  padding: 0px 0px 80px;
}
.blog-index__post-author-image {
  border-radius: 50%;
  height: auto;
  margin-right: 0.35rem;
  width: 30px;
}

.blog-index__post-tags,
.blog-index__post-title,
.blog-index__post-timestamp,
.blog-index__post-author,
.blog-index__post-image--small {
  margin: 0 0 0.7rem;
}
.blog-card:hover {
  box-shadow: 0 2px 9px 0 rgb(110 110 110 / 50%);
  transition: .3s all ease-in-out;
}
.blog-card {
  transition: .3s all ease-in-out;
}

/* Blog pagination */
.blog-pagination__link--active {
  font-size: 16px;
  color: #ffffff !important;
  font-weight: 400;
  background-color: #0948B3;
}
.blog-pagination__link--active:hover{
  background-color: #0948B3 !important;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center; 
  padding-bottom: 50px;
  padding: 12px 0px;
  border-radius: 4px;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 10%);
  max-width: 1024px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.blog-pagination__link {
  border: 2px solid transparent;
  border-radius: 7px;
  line-height: 1;
  text-decoration: none;
}

.blog-pagination__link--active {
  border-color: #eaedf2 !important;
}

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

.blog-pagination__link.blog-pagination__prev-link--disabled,
.blog-pagination__link.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  cursor: default;
  pointer-events: none;
}
a.blog-pagination__link.blog-pagination__prev-link {
  padding: 13px 15px;
  position: relative;
  font-size: 16px;
}
a.blog-pagination__link.blog-pagination__prev-link:before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 0;
  z-index: 1;
  background-image: linear-gradient(to right,#fff,#0060ff);
  width: 100px;
  height: 2px;
  left: -95px;
}

a.blog-pagination__link.blog-pagination__next-link {
  padding: 13px 15px;
  position: relative;
  font-size: 16px;
}

a.blog-pagination__link.blog-pagination__next-link::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 0;
  right: -95px;
  z-index: 1;
  background-image: linear-gradient(to left,#fff,#0060ff);
  width: 100px;
  height: 2px;
}
.blog-pagination__link--active {
  background: #0060ff;
  color: #fff;
  padding: 7px 10px;
  border-radius: 100px;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
}
a.blog-pagination__link.blog-pagination__next-link:hover,
a.blog-pagination__link.blog-pagination__next-link:hover,
a.blog-pagination__link.blog-pagination__next-link:focus,
a.blog-pagination__link.blog-pagination__next-link:focus,
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  background-color: #F5F8FB;
}


@media (max-width: 767px) {
  .blog-pagination__number-link {
    display: none;
  }
}
.blog_post_content .section-padding {
  padding: 25px 0px 50px;
}
/* Blog post */

.blog-post {
  margin: 0 auto;
  max-width: 960px;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}

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

.blog-post__timestamp {
  display: block;
}

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

.blog-post__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
}

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

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  body .three-column-blog-list-card .three-col-adjust>span .hs_cos_wrapper {
    flex-basis: 30.2%;
    -webkit-flex-basis: 31%;
  }
  body .three-column-blog-list-card .three-col-adjust>span .hs_cos_wrapper:nth-child(3n+3){
    margin-right: 0px !important;
  }
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 2);
  }
  .blog-list-three-card .title h4 {
    font-size: 28px;
    font-weight: 600;
  }
}

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

body .three-column-blog-list-card .three-col-adjust>span .hs_cos_wrapper:hover .blog-list-three-card .title h4,
body .three-column-blog-list-card .three-col-adjust>span .hs_cos_wrapper:hover .blog-list-three-card .avatar ul li a,
body .three-column-blog-list-card .three-col-adjust>span .hs_cos_wrapper:hover .blog-list-three-card .author-date-list .post-date
{
  color: #0237D4; 
}


.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

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

/* Blog comments */

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

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

.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;
}
/*==================================================
Three Col Adjust 
==================================================*/
.three-column-blog-list-card .three-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -2.5%;
}
.three-column-blog-list-card .three-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -2.5%;
}

.three-column-blog-list-card .three-col-adjust span>.hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 30.2%;
  -webkit-flex-basis: 30.2%;
  float: left;
  margin-right: 2.43%;
  margin-top: 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position:relative;
}

@media (max-width:767px){
  .three-column-blog-list-card .three-col-adjust>span {
    display: block;
    margin-right: 0;
  }
  .three-column-blog-list-card.three-col-adjust span>.hs_cos_wrapper {
    display: block;
    margin: 0;
    margin-top: 20px;
    max-width: 379px;
    width: 100%;
    margin: 30px auto 0;
    float: none;
  } 
}
.rock_blog_post_main .post-date {
  padding: 0px 21px;
} 

.blog-banner-title{
  padding: 160px 0px 204px;
  max-width: 720px;
  margin: 0 auto;
}
.rock_blog_post_hero {
  position: relative;
  z-index: 1;
  padding-bottom: 49px;
}
.blog-banner-title p {
  font-size: 21px;
  word-spacing: 2px;
}

.blog-card {
  border-radius: 4px;
  padding: 22px;
  border: 1px solid #eaedf2;
  box-shadow: 0 .75rem 1.5rem rgba(18,38,63,.03);
}
.blog-list-three-card img {
  border-radius: 8px;
}
.blog-list-three-card .title {
  padding: 25px 0px 10px;
}
.post_summary {
  padding-top: 25px;
}
.author-date.avatar ul li img {
  border-radius: 50%;
}
/* Blog psting */
.rock-blog-banner-container {
  padding: 160px 0px  120px!important;
  text-align: center;
  max-width: 919px !important;
  margin: 0 auto !important;
}
.rock_blog-tag a:hover {
  color: #ffffff;
}
.min-read>span img {
  width: 16px;
}
.rock_blog-tag a {
  background-color: #c33c54;
  border-radius: 8px;
  padding: 5px 10px;
  margin: 5px;
}
.author-date.avatar {
  display: flex;
  align-items: center;
  max-width: 423px;
  margin: 0 auto;
  justify-content: center;
}
.author-date.avatar ul {
  padding: 0;
  margin-bottom: 0;
}
.author-date.avatar ul li{
  list-style: none;
}
.rock_blog_post_title {
  max-width: 750px;
  margin: 0 auto;
  padding: 30px 0px 10px;
}
.rock_blog_post_main .author-date.avatar ul li a,
span.min-read>span {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff !important;
}
.rock_blog_post_main .rock_blog_post_hero .min-read span {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff !important;
}
.blog-list-three-card .author-date-list .post-date,
.avatar ul li a {
  color: #93a5be !important;
}
.author-date-list .post-date {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 20px;
  transition: .3s all ease-in-out;
}

.rock_blog_body_fix {
  max-width: 729px;
  margin: 0 auto;
}
ul.share-mod {
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
ul.share-mod p {
  margin-right: 5px;
  margin-bottom: 0;
  font-weight: 600;
}

ul.share-mod li {
  padding: 0px 5px;
}

.side_fixed_share{
  padding-top: 5px;
}
.rock_post_body h2 {
  font-size: 32px;
}
.side_fixed_share .bookmark a {
  color:#000000;
  text-align:center;
  text-decoration:none;
  font-family:fontawesome;
  position: relative;
  display: inline-block;
  width:40px;
  height:28px;
  padding-top: 0px;
  margin:0 2px;
  -o-transition:all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  -webkit-font-smoothing: antialiased;
}
.rock_post_body p {
  font-size: 20px;
  line-height: 33px;
  font-weight: 300;
  padding-bottom: 20px;
}
.rock_post_body h2 {
  margin-bottom: 32px;
}
.rock_post_body h4 {
  padding: 41px 0px 16px;
}
.rock_post_body img {
  border-radius: 4px;
  margin-bottom: 20px;
}
.rock_post_body img {
  margin: 26px 0px 60px;
}
.fa-2x {
  background: blue;
  color: #fff;
  border-radius: 40%;
}
ul.share-mod li a .fa {
  font-size: 16px;
  padding: 9px 9px;
}
.fa-2x.fa-facebook{
  padding: 10px 14px !important;
}
ul.share-mod li:hover {
  opacity: .8;
}
.fa-facebook {
  color: #fff;
  background-color: #3b5999;
  border-color: #3b5999;
  box-shadow: 0 0 24px rgb(27 22 66 / 4%), 0 44px 74px rgb(27 22 66 / 6%);
}
.fa-twitter {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 0 24px rgb(27 22 66 / 4%), 0 44px 74px rgb(27 22 66 / 6%);
}
.fa-reddit-alien {
  color: #fff;
  background-color: #e84422;
  border-color: #e84422;
  box-shadow: 0 0 24px rgb(27 22 66 / 4%), 0 44px 74px rgb(27 22 66 / 6%);
}
/* pop-up text */

.side_fixed_share .bookmark a span {
  color:#666;
  position:absolute;
  background-color: #ffffff;
  font-family:sans-serif;
  bottom:0;
  left:-40px;
  right:-40px;
  padding:5px 7px;
  z-index:-1;
  font-size:14px;
  border-radius: 7px;
  background:#fff;
  visibility:hidden;
  opacity:0;
  -o-transition:all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 9px 0 rgb(110 110 110 / 50%);
}

/* pop-up text arrow */

.side_fixed_share .bookmark a span:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  position: absolute;
  bottom: -5px;
  left: 53px;
}

/* text pops up when icon is in hover state */

.side_fixed_share .bookmark a:hover span {
  bottom:35px;
  visibility:visible;
  opacity:1;
}

/* font awesome icons */
.side_fixed_share .bookmark a:before {
  content:'\f02e';
}
.side_fixed_share {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rock_blog-comments form input[type=text], 
.rock_blog-comments form input[type=email],
.rock_blog-comments form input[type=password], 
.rock_blog-comments form input[type=tel],
.rock_blog-comments form input[type=number], 
.rock_blog-comments form input[type=file],
.rock_blog-comments form select, 
.rock_blog-comments form textarea{
  border-top: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-color: #edf0f7 !important;
  border-radius: 4px;
  max-width: 730px; 
}
.rock_blog-comments form textarea {
  height: 200px;

}
.rock_blog-comments form label {
    color: #47525d;
}
/* --------------------- */
/* Mobile responsive */
/* --------------------- */
@media (max-width: 767px){
  .blog-banner-title h1 {
    font-size: 30px;
  }
  .blog-banner-title p{
    font-size: 18px;
  }
  .rock_blog-comments {
    padding: 50px 20px !important;
  }
  .blog-list-three-card .title h4 {
    font-size: 23px;
    font-weight: 600;
  }
  .rock_blog_post_title h2 {
    font-size: 28px;
  }
  .rock_blog_post_main .post-date {
    padding: 0px 15px;
  }
  .rock_post_body img {
    margin: 15px 0px 30px;
  }
  .rock_post_body h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  a.blog-pagination__link.blog-pagination__next-link::after;
  a.blog-pagination__link.blog-pagination__prev-link:before {
    display: none;
  }
}