/* 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;
  }
.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: #2e2e2e; background-image: url("../img/grey-geo.png"); background-color: #fff; background-position: center; background-repeat: no-repeat; background-size: cover; background-attachment: fixed; font-family: "Raleway"; 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; }
.d-block { display: block;}

.header { background-color: #e43b2c; color: #fff; font-size: 21px; padding: 15px 0; text-align: center; }
.main { background: #fdfdfd; box-shadow: 0 1px 5px rgba(0,0,0,0.2); padding: 60px 0; }
.main__subtitle { color: #787878; font-size: 24px; font-weight: 700; text-align: center; }
.main__title { color:#e43b2c; font-size: 48px; line-height: normal; margin: 15px 0 45px 0; padding: 0; text-align: center; }
.main__img { border: 3px solid #4b4b4b; box-shadow: 0 2px 5px 2px rgba(0,0,0,0.4); }
.footer { display:block; padding:90px 0 60px 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: #575757; display:inline-block; text-decoration: none; }
.footer__links a:hover { color:#e43b2c; text-decoration: underline; }
.form { display:block; font-size: 21px; padding-left: 30px; }
.form__title { font-size: 32px; margin: 0; padding: 0; text-align:center; }
.form__info { color: #afafaf; font-size: 12px; text-align:center; }
.form__control { border: 3px solid #c1c1c1; border-radius: 5px; background: #f1f1f1; color: #2f2f2f; display: block; font-size: 16px; margin: 20px 0 0 0; padding: 15px 20px; width: 100%; position: relative; }
.is-invalid {
	border: 3px solid rgb(185, 21, 23);
}
.is-valid {
	border: 3px solid green;
}
.form__control:focus { outline: 0; border: 3px solid #42b0e2; }
.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-size: 27px; font-weight: 700; margin: 15px 0; padding: 13px 15px; width: 100%; }
.form__button-icon { height: 26px; width: 26px; fill: #fff; vertical-align: top; margin: 5px 0 0 5px; }
.form__button:hover { background: #cd291a; }
.form__button:focus { outline: 0; }
.modal .form { padding: 30px; }
.modal .form__title { font-size: 46px; }
.modal .main__img { margin: 5px 0 30px 0; }
.modal .form__intro { text-align: center; }
.modal-close { background: url(../img/closemodal.png) center center no-repeat; border: none; height: 33px; width:33px; right: -10px; position: absolute; top: -10px; z-index: 1; }
/* =============== Start Tablet & Phone Device CSS =============== */
@media (min-width: 768px) { 
	.modal .modal-dialog { width: 720px; }
}
@media (max-width: 991px) {
	.header { font-size: 18px; }
	.main__subtitle { font-size: 20px; }
	.main__title { font-size: 36px; }
	.form { font-size: 18px; }
	.form__title { font-size: 22px; }
	.form__button { font-size: 18px; }
	.form__button-icon { height: 20px; width: 20px; margin: 2px 0 0 5px; }
}
@media (max-width: 767px) { 
	.header { font-size: 16px; }
	.main__subtitle { font-size: 18px; }
	.main { padding: 30px 0; }
	.main__title { margin: 15px 0 20px 0; font-size: 26px; }
	.form { padding: 20px 0 0 0; font-size: 16px; }
	.footer { padding:30px 0;}
	.modal .form { padding: 15px; }
	.modal .form__title { font-size: 36px; }
	.modal .main__img { margin: 5px 0 15px 0; }
}
@media (max-width: 575px) { 
	.header { font-size: 11px; }
	.main__subtitle { font-size: 14px; }
	.main__title { font-size: 17px; }
	.form { font-size: 8px; }
	.modal .form { padding: 0; }
	.modal .form__title { font-size: 36px; }
}
@media (max-width: 467px) { 
	.modal .form__title { font-size: 24px; }
	.form__info {font-size: 9px;}
	.footer {font-size: 11px;}
}
@media (max-width: 359px) { 
	.main__title { font-size: 18px; }
	.form__button { font-size: 16px; }
	.form__button-icon { height: 18px; width: 18px; }
	.modal .form__title { font-size: 20px; }
}
/* =============== End Tablet & Phone Device CSS =============== */