/* Start CSS */
@-webkit-keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
	  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
  
	0% {
	  opacity: 0;
	  -webkit-transform: scale3d(0.3, 0.3, 0.3);
	  transform: scale3d(0.3, 0.3, 0.3);
	}
  
	20% {
	  -webkit-transform: scale3d(1.1, 1.1, 1.1);
	  transform: scale3d(1.1, 1.1, 1.1);
	}
  
	40% {
	  -webkit-transform: scale3d(0.9, 0.9, 0.9);
	  transform: scale3d(0.9, 0.9, 0.9);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: scale3d(1.03, 1.03, 1.03);
	  transform: scale3d(1.03, 1.03, 1.03);
	}
  
	80% {
	  -webkit-transform: scale3d(0.97, 0.97, 0.97);
	  transform: scale3d(0.97, 0.97, 0.97);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: scale3d(1, 1, 1);
	  transform: scale3d(1, 1, 1);
	}
  }
  
  @keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
	  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
  
	0% {
	  opacity: 0;
	  -webkit-transform: scale3d(0.3, 0.3, 0.3);
	  transform: scale3d(0.3, 0.3, 0.3);
	}
  
	20% {
	  -webkit-transform: scale3d(1.1, 1.1, 1.1);
	  transform: scale3d(1.1, 1.1, 1.1);
	}
  
	40% {
	  -webkit-transform: scale3d(0.9, 0.9, 0.9);
	  transform: scale3d(0.9, 0.9, 0.9);
	}
  
	60% {
	  opacity: 1;
	  -webkit-transform: scale3d(1.03, 1.03, 1.03);
	  transform: scale3d(1.03, 1.03, 1.03);
	}
  
	80% {
	  -webkit-transform: scale3d(0.97, 0.97, 0.97);
	  transform: scale3d(0.97, 0.97, 0.97);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: scale3d(1, 1, 1);
	  transform: scale3d(1, 1, 1);
	}
  }
  
  .bounceIn {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
  }
@-webkit-keyframes fadeInDown {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(0, -100%, 0);
	  transform: translate3d(0, -100%, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
  }
  
  @keyframes fadeInDown {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(0, -100%, 0);
	  transform: translate3d(0, -100%, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
  }
  
  .fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
  }
  @-webkit-keyframes fadeInUp {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(0, 100%, 0);
	  transform: translate3d(0, 100%, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
  }
  
  @keyframes fadeInUp {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(0, 100%, 0);
	  transform: translate3d(0, 100%, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
  }
  
  .fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
  }
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
  }
  
  .animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
  }
  
  .animated.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
  }
  
  .animated.delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
  }
  
  .animated.delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
  }
  
  .animated.delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
  }
  
  .animated.delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
  }
  
  .animated.fast {
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
  }
  
  .animated.faster {
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
  }
  
  .animated.slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
  }
  
  .animated.slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
  }
  
  @media (print), (prefers-reduced-motion: reduce) {
	.animated {
	  -webkit-animation-duration: 1ms !important;
	  animation-duration: 1ms !important;
	  -webkit-transition-duration: 1ms !important;
	  transition-duration: 1ms !important;
	  -webkit-animation-iteration-count: 1 !important;
	  animation-iteration-count: 1 !important;
	}
  }

body { color: #3c3c3c; background-color: #f5f5f5; font-family: "Open Sans"; font-size:14px; padding:0px; }
a { -webkit-transition: all 200ms linear; -moz-transition: all 200ms linear; -o-transition: all 200ms linear; transition:all 200ms linear; cursor:pointer; text-decoration:none; }
a:hover, a:active, a:focus { text-decoration:underline; outline:none; }
.clearfix10 { display:block; clear:both; height:10px; }
.clearfix20 { display:block; clear:both; height:20px; }
.clearfix30 { display:block; clear:both; height:30px; }
.text-red { color:#e43b2c; }
.text-gray { color:#575757; }
.head { font-size: 24px; padding: 30px 0;text-align: center; }
.head__subtitle { display: block; font-size: 32px; margin-bottom: 10px; }
.head__title { font-family: "Oswald"; font-size: 48px; font-weight: 400; margin: 0 auto; max-width: 800px; padding: 0; }
.head__img { margin: 20px auto; }
.footer { display:block; padding: 180px 0 90px 0; text-align:center; }
.footer__logo { display: block; margin: 0 auto; max-width: 200px; }
.footer__links { display:block; margin: 15px 0 0 0; }
.footer__links a { color: #2e2e2e; display:inline-block; text-decoration: none; }
.footer__links a:hover { color:#e43b2c; text-decoration: underline; }
.form { background: #45494f; border-top: 10px solid #e43b2c; display:block; padding:40px 0; }
.form__block { margin: 0 auto; max-width: 1000px; }
.form__control { border: 2px solid #fff; border-radius: 5px; background: #fff; color: #2f2f2f; display: block; font-size: 21px; margin: 0; padding: 13px 20px; width: 100%; box-shadow: inset 0px 2px 4px rgba(128,128,128,0.15),0px 3px 2px rgba(140,157,169,0.14) !important; position: relative; }
.form__icon {
	background: url(../img/email.png) calc(100% - 15px) 19px no-repeat #fff;
	padding: 13px 50px 13px 20px;
}
.is-invalid {
	border: 2px solid rgb(185, 21, 23);
}
.is-valid {
	border: 2px solid green;
}
.form__control:focus { outline: 0; border: 2px solid #fff; }
.form__button { background: #e43b2c; border-radius: 5px; border: 1px solid rgba(0,0,0,0.1); box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); color: #fff; display: block; font-family: "Oswald"; font-size: 21px; font-weight: 700; margin: 0; padding: 14px 15px; width: 100%; }
.form__button-icon { height: 18px; width: 18px; fill: #fff; vertical-align: top; margin: 6px 10px 0 0; }
.form__button:hover { background: #e43b2c; }
.form__button:focus { outline: 0; }

/* =============== Start Tablet & Phone Device CSS =============== */
@media (min-width:1200px){
	.container {
		width: 1140px;
	}
	.head__img { max-width: 1000px; }
}
@media (max-width: 1199px) { 

}
@media (max-width: 991px) {
	.head { font-size: 18px; }
	.head__subtitle { font-size: 26px; }
	.head__title { font-size: 40px; }
}
@media (max-width: 767px) { 
	.head { font-size: 16px; }
	.head__subtitle { font-size: 22px; }
	.head__title { font-size: 32px; }
	.form { padding: 30px 0; }
	.form__button { margin-top: 15px; }
	.footer { padding: 120px 0 60px 0; }
}
@media (max-width: 575px) { 
	.head { font-size: 15px; }
	.head__subtitle { font-size: 16px; }
	.head__title { font-size: 20px; }
	.footer { padding: 60px 0 30px 0; font-size: 11px;}
}
@media (max-width: 467px) { 

}
@media (max-width: 359px) { 
	
}
/* =============== End Tablet & Phone Device CSS =============== */