@media screen {
  /* Main CSS */
	
/* 	h1, h2, h3, h4, h5, h6 {
		margin-bottom: 0;
	} */

  a, a span, a i {
    outline: none; 
  }
  

  /* Gravity Forms Validation Stars Here */

	.gfield_error input, .gfield_error textarea {
		background-color: rgba(220,20,60,.2) !important;
	}
	.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
		background: transparent !important;
		border: unset !important;
		font-size: 13px !important;
		margin-top: 0 !important;
		padding: 0 !important;
	}

  /* Gravity Forms Validation Ends Here */
	
	 /* Recaptcha Move to the Left */
     .grecaptcha-badge {
         width: 70px !important;
         overflow: hidden !important;
         transition: all 0.3s ease !important;
         left: 5px !important;
		 z-index: 9999;
    }
     .grecaptcha-badge:hover {
         width: 256px !important;
    }
    /* End Recaptcha Move to the Left */
	
 /* Fix Images in Chrome and Edge Starts Here*/

	img {
	transform: translateZ(0);
	image-rendering: -webkit-optimize-contrast;
	}
  
	/* Fix Images in Chrome and Edge Ends Here*/

}

/* Recaptcha hide on mobile */
 @media (max-width: 1024px) {
     .grecaptcha-badge {
         display: none;
    }
}
/* End Recaptcha hide on mobile */
 