/*
 Theme Name:   MSB Theme
 Theme URI:    https://generatepress.com
 Description:  GeneratePress child theme made for MSB
 Author:       Host One
 Author URI:   https://www.hostone.com.au
 Template:     generatepress
 Version:      0.1
*/

/* nav menu buttom */
#primary-menu > ul > li:last-child a{
	/*border: 3px solid #551273;*/
}

/* blog */
.blog #main .post .entry-summary{
	display:none;
}

/* footer image spacing fix */
.site-footer .wp-block-image .alignleft {
    margin: .5em .5em .5em 0;
}

/*--- 2 Column Form Styles Start ---*/
.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea{
	width: 100%;
} 
.cf7-left-col {
    width: 47%;
    float: left;
    margin-right:6%;
}
.cf7-right-col {
    width: 47%;
    float: left;
}
.clearfix:after {
    content:"\0020";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
    overflow:hidden;
    margin-bottom:10px;
}
.clearfix {
    display:block;
}
@media screen and (max-width: 600px) {
	.cf7-left-col {
		width: 100%;
		margin-right:0;
	}
	.cf7-right-col {
		width: 100%;
	}
}


/* button animation jittery */
.button-jittery {
  animation: jittery 4s infinite;
}
@keyframes jittery {
  5%,
    50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}
