/* core/heading */
.is-style-borderleft {
  position: relative;
  padding-left:1.875rem;
}
.is-style-borderleft:before {
  content:"";
  position: absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background-color:#F8B133;
}
.has-color-2-background-color .is-style-borderleft:before {
  background-color:#FFFFFF;
}
.is-style-borderbottom {
  position: relative;
  padding-bottom:.9375rem;
}
.is-style-borderbottom:before{
  content:"";
  position: absolute;
  left:0;
  right:0;
  bottom:0;
  width:3.75rem;
  height:6px;
  background-color:#F8B133;
  margin:auto;
}
/* core/image */
.wp-block-image.is-style-setgray img {
  filter: grayscale(100%);
  opacity: 0.5;
  /*-webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;*/
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.wp-block-image.is-style-setgray img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
