/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Form Asterisk Color*/
.hs-form-required {
    color: #444444;
}


/*Round Edges*/
img {
  -webkit-border-radius: 25px;
  border-radius: 25px; !!important
}

/*Round Edges for Content Card*/
.content-card { 
  -webkit-border-radius: 50px;
  border-radius: 50px; !!important
}


/*Font Size for Content Card*/
.content-desc h4 {
  font-weight: 500;
  font-size: 23px; !!important
}

.content-desc h6 {
  font-size: 18px; !!important
}

/*Round Edges for Blog Content Card*/
.hhs-blog-grid-cards.listing-page .blog-index__post { 
  -webkit-border-radius: 10px;
  border-radius: 10px; !!important
}

.hhs-blog-card-inner {
    border-radius: 10px; !!important
}

.blog-index__post img {
    border-radius: 10px 10px 0 0;
}

.blog-index__post-image--large img {
    border-radius: 10px 0 0 10px;
}