
			.form2Div {
				position:relative;
				margin:auto;
				background-color: #fff;
				border-radius:2000px;
			}
			.formActiv{
				width:250px;
				height:250px;
			}

			.submitted {
				transition: transform .51s ease-out;

				-webkit-animation: pound .51s ease-out;
				animation: pound 1s;
				transform-origin: center;
				-webkit-transform-origin: center;
				-webkit-animation-fill-mode: forwards;
			}

			@keyframes pound {
				from { transform: none; }
				to { transform: scale(.1);background:#1cabe3; }
			}

			@-webkit-keyframes pound {
				from { transform: none; }
				to{ transform: scale(.1);background:#1cabe3; }
			}

			@-webkit-keyframes bounce {
			 0%, 100% {opacity:1;}
				50% {opacity:0;}
			}

			@keyframes bounce {
			 0%, 100% {opacity:1;}
				50% {opacity:0;}
			}

			.bounce {
				-webkit-animation-name: bounce;
				animation-name: bounce;
				background:#1cabe3;
				transform: scale(.1);
				-webkit-transform: scale(.1);
				transform-origin: center;
				-webkit-transform-origin: center;
				-webkit-animation-duration: 1.5s;
				animation-duration: 1.5s;
				-webkit-animation-fill-mode: both;
				animation-fill-mode: both;
				-webkit-animation-timing-function: ease-out;
				animation-timing-function: ease-out;
				animation-iteration-count:infinite;
				-webkit-animation-iteration-count:infinite;
			}

			.grow {
				transition: transform 1s ease-in;
				-webkit-animation: grow 1.3s ease-in;
				animation: grow 1.3s;
				transform-origin: center;
				-webkit-transform-origin: center;
				-webkit-animation-fill-mode: forwards;
			}

			@keyframes grow {
			from { transform: scale(.1); }
			to { transform: scale(20);background:#1cabe3; }
			}

			@-webkit-keyframes grow {
			from { transform: scale(.1); }
			to{ transform: scale(20);background:#1cabe3; }
			}

			@media screen and (max-width: 737px) {
				.formDiv{
					width: 100%!important;
				}
				.contactForm{
					padding: 0!important;
				}
			}

			.successMessage{
				display: none;
				color: #000;
			}
