/*  MICROTHEMER STYLES  */

/*= Animations ================ */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/*= Content =================== */

/** Content >> home-page-image **/
.is-resized {
	margin-top: 7px !important;
	margin-right: 5px !important;
	-webkit-animation-name: fadeIn !important;
	animation-name: fadeIn !important;
	-webkit-animation-duration: 5s !important;
	animation-duration: 5s !important;
}

/** Content >> two-columns-home-page **/
.has-2-columns .wp-block-column:nth-of-type(1) {
	margin-bottom: 0px !important;
}

/** Content >> two-column-text **/
.wp-block-column p {
	margin-right: 10% !important;
}

