@charset "UTF-8";
/*========================================================
					Contact Form
=========================================================*/
/* MF
========================================================*/
.contact-form {
  text-align: center;
  /* Mail Form PlaceHolder
  ========================================================*/
  /* Mail Form Validation
  ========================================================*/
  /* MF Controls
  ========================================================*/
  /* Mail Form Submit
  ========================================================*/
  /* Mail Form Icon
  ========================================================*/
}
.contact-form .mailform {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 442px;
}
.contact-form .mailform label {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 28px;
  padding-left: 82px;
  padding-right: 30px;
  background: #f5f5f5;
  border: none;
}
.contact-form .mailform label input, .contact-form .mailform label select, .contact-form .mailform label textarea {
  display: block;
  width: 100%;
  padding-top: 33px;
  padding-bottom: 33px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  color: #5d6166;
}
.contact-form .mailform label textarea {
	text-transform: none;
}
.contact-form .mailform label input:-moz-placeholder, .contact-form .mailform label select:-moz-placeholder, .contact-form .mailform label textarea:-moz-placeholder {
  color: #5d6166;
  opacity: 1;
}
.contact-form .mailform label input::-webkit-input-placeholder, .contact-form .mailform label select::-webkit-input-placeholder, .contact-form .mailform label textarea::-webkit-input-placeholder {
  color: #5d6166;
  opacity: 1;
}
.contact-form .mailform label input::-moz-placeholder, .contact-form .mailform label select::-moz-placeholder, .contact-form .mailform label textarea::-moz-placeholder {
  color: #5d6166;
  opacity: 1;
}
.contact-form .mailform label input:-ms-input-placeholder, .contact-form .mailform label select:-ms-input-placeholder, .contact-form .mailform label textarea:-ms-input-placeholder {
  color: #5d6166;
  opacity: 1;
}
.contact-form .mailform label textarea {
  resize: vertical;
  overflow: auto;
  height: 200px;
  border: none;
  background: transparent;
}
@-webkit-keyframes fout {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(0) translateX(0);
  }
}
@keyframes fout {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(0) translateX(0);
  }
}
.contact-form .mfPlaceHolder {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 82px;
  padding-right: 30px;
  padding-top: 33px;
  cursor: text;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  color: #5d6166;
  opacity: 1;
  transition: .3s;
}
*:-webkit-autofill ~ .contact-form .mfPlaceHolder {
  opacity: .4;
  -ms-transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
}
.contact-form .mfPlaceHolder.state-1 {
  opacity: .4;
  -ms-transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
}
.contact-form .mfValidation {
  -ms-transform-origin: 0% 50%;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: notifanim-fo 0.4s cubic-bezier(0.55, 0, 0.1, 1) forwards;
  animation: notifanim-fo 0.4s cubic-bezier(0.55, 0, 0.1, 1) forwards;
  transition: .3s all ease;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  margin-top: 10px;
  margin-left: 0;
  padding: 10px;
  height: 40px;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  background: #111;
  color: #FFF;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 998;
}
.contact-form .mfValidation:hover {
  background: #00A5E4;
}
.contact-form .mfValidation:before {
  content: '';
  position: absolute;
  left: 25px;
  bottom: 100%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #111 transparent;
  transition: 0.3s all ease;
}
.contact-form .mfValidation:hover:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #1fb09d transparent;
}
.contact-form .mfValidation.error {
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: notifanim 0.4s cubic-bezier(0.55, 0, 0.1, 1) forwards;
  animation: notifanim 0.4s cubic-bezier(0.55, 0, 0.1, 1) forwards;
}
@media (min-width: 992px) {
  .contact-form .mfValidation {
    left: 100%;
    top: 50%;
    margin-top: -20px;
    margin-left: 20px;
  }
  .contact-form .mfValidation:before {
    left: auto;
    right: 100%;
    bottom: 50%;
    -ms-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 5px 4px 0;
    border-color: transparent #111 transparent transparent;
  }
  .contact-form .mfValidation:hover:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 5px 4px 0;
    border-color: transparent #1fb09d transparent transparent;
  }
}
@media (max-width: 767px) {
  .contact-form .mfValidation {
    text-align: right;
    top: auto;
    left: auto;
    bottom: -16px;
    right: 10px;
    color: #f25f43;
    font-weight: 700;
    background: none;
    padding: 0;
    margin: 0 0 3px;
    min-height: 0;
    box-shadow: none;
  }
  .contact-form .mfValidation:before {
    display: none;
  }
  .contact-form .mfValidation:hover {
    background: none;
    right: 5px;
  }
}
@-webkit-keyframes notifanim-fo {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  20% {
    opacity: 1;
    transform: scale(1.1);
  }
  99% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
    transform: scale(0.3);
    opacity: 0;
  }
}
@keyframes notifanim-fo {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  20% {
    opacity: 1;
    transform: scale(1.1);
  }
  99% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
    transform: scale(0.3);
    opacity: 0;
  }
}
@-webkit-keyframes notifanim {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3);
  }
  1% {
    visibility: visible;
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes notifanim {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3);
  }
  1% {
    visibility: visible;
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.contact-form .mfControls {
  word-spacing: 10px;
  margin-top: 81px;
}
.contact-form .mfControls > * {
  position: relative;
  display: inline-block;
  width: 300px;
  word-spacing: normal;
  font-size: 15px;
  line-height: 18px;
  padding: 33px 92px 35px 0;
  text-transform: uppercase;
  color: #36393c;
  transition: .2 all ease;
  z-index: 2;
}
.contact-form .mfControls > *:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 216px;
  font-family: "FontAwesome";
  font-size: 25px;
  line-height: 84px;
  color: #fff;
  transition: 0.4s all ease;
}
.contact-form .mfControls > *:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 216px;
  font-family: "FontAwesome";
  font-size: 25px;
  line-height: 84px;
  border-radius: 84px;
  background: #00A5E4;
  z-index: -1;
  transition: 0.4s all ease;
}
.contact-form .mfControls > *:hover {
  color: #fff;
}
.contact-form .mfControls > *:hover:after {
  left: 0;
}
.contact-form .mfControls > *:active:after {
  background: #00A5E4;
}
@media (max-width: 991px) {
  .contact-form .mfControls > * {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .contact-form .mfControls > * {
    width: 270px;
  }
  .contact-form .mfControls > *:before {
    left: 190px;
    font-size: 30px;
    line-height: 80px;
    height: 80px;
  }
  .contact-form .mfControls > *:after {
    left: 190px;
    font-size: 30px;
    line-height: 80px;
    border-radius: 80px;
    height: 80px;
  }
}
.contact-form .mfProgress {
  position: relative;
}
.contact-form .mfProgress .cnt, .contact-form .mfProgress .loader {
  transition: .4s all ease-in-out;
}
.contact-form .mfProgress .loader {
  opacity: 0;
  text-align: left;
  letter-spacing: 10px;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.contact-form .mfProgress .loader, .contact-form .mfProgress .loader:before, .contact-form .mfProgress .loader:after {
  position: absolute;
  right: 56px;
  bottom: 0;
  top: 0;
  margin: auto;
}
.contact-form .mfProgress .loader:before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}
.contact-form .mfProgress .loader:after {
  content: '';
  width: 30px;
  height: 50px;
  color: #fff;
  font: 400 30px "FontAwesome";
  line-height: 50px;
  transition: .4s all ease-in-out;
  -ms-transform: scale(0) rotate(-60deg);
  -webkit-transform: scale(0) rotate(-60deg);
  transform: scale(0) rotate(-60deg);
}
.contact-form .mfProgress.sending .cnt, .contact-form .mfProgress.fail .cnt, .contact-form .mfProgress.success .cnt {
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.contact-form .mfProgress.sending .loader, .contact-form .mfProgress.fail .loader, .contact-form .mfProgress.success .loader {
  opacity: 0;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.contact-form .mfProgress.fail .loader:before, .contact-form .mfProgress.success .loader:before {
  -webkit-animation: fout 0.4s ease-in-out 1 forwards;
  animation: fout 0.4s ease-in-out 1 forwards;
  opacity: 0;
}
.contact-form .mfProgress.fail .loader:after, .contact-form .mfProgress.success .loader:after {
  -ms-transform: scale(1) rotate(0deg);
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
.contact-form .mfProgress.sending .loader:before {
  -webkit-animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: motion 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.contact-form .mfProgress.fail .loader:after {
  content: '\f06a';
}
.contact-form .mfProgress.success .loader:after {
  content: '\f058';
}
.contact-form .mfProgress .msg {
  -webkit-animation: notifanim-fo 0.4s ease-in-out forwards;
  animation: notifanim-fo 0.4s ease-in-out forwards;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.5);
  position: absolute;
  padding: 15px;
  font-size: 14px;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: 50%;
  width: 320px;
  margin-top: 20px;
  margin-left: -160px;
  color: #fff;
  transition: .3s all ease;
}
.contact-form .mfProgress .msg:before {
  content: '';
  position: absolute;
  margin-left: -6px;
  bottom: 100%;
  right: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 3px 12px 3px;
  border-color: transparent transparent #111 transparent;
  transition: .4s all ease-in-out;
}
@media (max-width: 767px) {
  .contact-form .mfProgress .msg {
    width: 230px;
    top: 100%;
    left: 50%;
    margin-top: 14px;
    margin-left: -115px;
    padding: 5px;
  }
  .contact-form .mfProgress .msg:before {
    right: 50%;
    top: auto;
    bottom: 100%;
    margin-right: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #111 transparent;
  }
}
.contact-form .mfProgress.fail .msg, .contact-form .mfProgress.success .msg {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: notifanim 0.4s ease-in-out forwards;
  animation: notifanim 0.4s ease-in-out forwards;
}
.contact-form .mfProgress.fail .msg {
  background: #F44336;
}
.contact-form .mfProgress.fail .msg:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #F44336 transparent;
}
@media (max-width: 767px) {
  .contact-form .mfProgress.fail .msg:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #F44336 transparent;
  }
}
.contact-form .mfProgress.success .msg {
  background: #2E7D32;
}
.contact-form .mfProgress.success .msg:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #2E7D32 transparent;
}
@-webkit-keyframes fout {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(0) translateX(0);
  }
}
@keyframes fout {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(0) translateX(0);
  }
}
@-webkit-keyframes motion {
  0% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(-50px) scale(0.3);
  }
  50% {
    transform: translateX(0) scale(1);
  }
  75% {
    transform: translateX(50px) scale(0.3);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
@keyframes motion {
  0% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(-50px) scale(0.3);
  }
  50% {
    transform: translateX(0) scale(1);
  }
  75% {
    transform: translateX(50px) scale(0.3);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
.contact-form .mfIcon {
  position: absolute;
  text-align: center;
  opacity: .3;
  top: 33px;
  left: 40px;
  width: 20px;
  height: 20px;
  color: #00A5E4;
  font: 400 20px/20px "FontAwesome";
}
.contact-form .mfIcon span:before, .contact-form .mfIcon span:after {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  margin-left: -10px;
  transition: .4s all ease-in-out;
}
.contact-form .mfIcon span:before {
  content: "";
}
.contact-form .mfIcon span:after {
  content: "";
  -ms-transform: scale(0) rotate(-180deg);
  -webkit-transform: scale(0) rotate(-180deg);
  transform: scale(0) rotate(-180deg);
  -webkit-animation: zoom-out 0.4s ease-in-out 1 forwards;
  animation: zoom-out 0.4s ease-in-out 1 forwards;
}
.contact-form .mfIcon.state-1:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #5d6166;
  -webkit-animation: line 1.2s 0.4s infinite;
  animation: line 1.2s 0.4s infinite;
}
.contact-form .mfIcon.state-1 span:before {
  -ms-transform: scale(0) rotate(90deg);
  -webkit-transform: scale(0) rotate(90deg);
  transform: scale(0) rotate(90deg);
}
.contact-form .mfIcon.state-1 span:after {
  -ms-transform: scale(1) rotate(-35deg);
  -webkit-transform: scale(1) rotate(-35deg);
  transform: scale(1) rotate(-35deg);
  -webkit-animation: zoom-in-state-1 0.4s ease-in-out 1 forwards, anim-1 1.2s 0.3s infinite, anim-2 0.6s 0.3s infinite;
  animation: zoom-in-state-1 0.4s ease-in-out 1 forwards, anim-1 1.2s 0.3s infinite, anim-2 0.6s 0.3s infinite;
}
.contact-form .mfIcon.state-2 span:before {
  content: "";
  -ms-transform: scale(0) rotate(90deg);
  -webkit-transform: scale(0) rotate(90deg);
  transform: scale(0) rotate(90deg);
}
.contact-form .mfIcon.state-2 span:after {
  -ms-transform: scale(1) rotate(-210deg);
  -webkit-transform: scale(1) rotate(-210deg);
  transform: scale(1) rotate(-210deg);
  -webkit-animation: zoom-in-state-2 0.4s ease-in-out 1 forwards, anim-3 0.6s 0.4s infinite;
  animation: zoom-in-state-2 0.4s ease-in-out 1 forwards, anim-3 0.6s 0.4s infinite;
}
@-webkit-keyframes anim-1 {
  0% {
    left: 50%;
  }
  100% {
    left: 90%;
  }
}
@keyframes anim-1 {
  0% {
    left: 50%;
  }
  100% {
    left: 90%;
  }
}
@-webkit-keyframes anim-2 {
  0% {
    transform: rotate(-35deg);
  }
  25% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(-35deg);
  }
  75% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(-35deg);
  }
}
@keyframes anim-2 {
  0% {
    transform: rotate(-35deg);
  }
  25% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(-35deg);
  }
  75% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(-35deg);
  }
}
@-webkit-keyframes anim-3 {
  0% {
    transform: rotate(150deg);
    left: 50%;
  }
  50% {
    transform: rotate(150deg);
    left: 90%;
  }
  100% {
    transform: rotate(150deg);
    left: 50%;
  }
}
@keyframes anim-3 {
  0% {
    transform: rotate(150deg);
    left: 50%;
  }
  50% {
    transform: rotate(150deg);
    left: 90%;
  }
  100% {
    transform: rotate(150deg);
    left: 50%;
  }
}
@-webkit-keyframes zoom-out {
  0% {
    transform: scale(1) rotate(-35deg);
  }
  100% {
    transform: scale(0) rotate(-180deg);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1) rotate(-35deg);
  }
  100% {
    transform: scale(0) rotate(-180deg);
  }
}
@-webkit-keyframes zoom-in-state-1 {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  100% {
    transform: scale(1) rotate(-35deg);
  }
}
@keyframes zoom-in-state-1 {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  100% {
    transform: scale(1) rotate(-35deg);
  }
}
@-webkit-keyframes zoom-in-state-2 {
  0% {
    transform: scale(0) rotate(-35deg);
  }
  100% {
    left: 50%;
    transform: scale(1) rotate(150deg);
  }
}
@keyframes zoom-in-state-2 {
  0% {
    transform: scale(0) rotate(-35deg);
  }
  100% {
    left: 50%;
    transform: scale(1) rotate(150deg);
  }
}
@-webkit-keyframes line {
  0% {
    left: 40%;
  }
  100% {
    left: 40%;
    width: 40%;
  }
}
@keyframes line {
  0% {
    left: 40%;
  }
  100% {
    left: 40%;
    width: 40%;
  }
}
.contact-form .mfInput input[name='phone'] ~ .mfIcon span:before,
.contact-form .mfInput select[name='phone'] ~ .mfIcon span:before,
.contact-form .mfInput textarea[name='phone'] ~ .mfIcon span:before {
  content: "";
}
.contact-form .mfInput input[name='email'] ~ .mfIcon span:before,
.contact-form .mfInput select[name='email'] ~ .mfIcon span:before,
.contact-form .mfInput textarea[name='email'] ~ .mfIcon span:before {
  content: "";
}
.contact-form .mfInput input[name='name'] ~ .mfIcon span:before,
.contact-form .mfInput select[name='name'] ~ .mfIcon span:before,
.contact-form .mfInput textarea[name='name'] ~ .mfIcon span:before {
  content: "";
}
.contact-form .mfInput input[name='subject'] ~ .mfIcon span:before,
.contact-form .mfInput select[name='subject'] ~ .mfIcon span:before,
.contact-form .mfInput textarea[name='subject'] ~ .mfIcon span:before {
  content: "\f0f6";
}
.contact-form .mfInput input[name='message'] ~ .mfIcon span:before,
.contact-form .mfInput select[name='message'] ~ .mfIcon span:before,
.contact-form .mfInput textarea[name='message'] ~ .mfIcon span:before {
  content: "\f0f6";
}
/*.contact-form .mfInput input[name='message'] ~ .mfIcon,*/
/*.contact-form .mfInput select[name='message'] ~ .mfIcon, */
/*.contact-form .mfInput textarea[name='message'] ~ .mfIcon */ /*{
  display: none;
}*/
.contact-form .mfInput input:-webkit-autofill ~ .mfIcon span:before,
.contact-form .mfInput textarea:-webkit-autofill ~ .mfIcon span:before {
  color: #2D2D2D;
}