/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */



/** For the panoramic Ken Burns effect */
@media screen and (min-width: 1200px) {
  .add-shrink {
      background-size: 110%;
      animation: add-shrink 8s infinite alternate;
  }

  @keyframes add-shrink {
    0% {
      background-size: 110%;
    }
    100% {
      background-size: 100%;
    }
  }
}

/** Fix a Formidable bug with form submit button */

.with_frm_style .frm_submit.frm_flex {
    justify-content: center;
}

.frm_submit button {
    padding: 16px !important;
}

