.container {
  max-width: 1140px;
  margin: 0 auto;
}

.mt-c-form {
  color: #282828;
}

.mt-c-form a {
  color: #001fff;
}

.mt-c-form a:hover {
  color: #282828;
}

.mt-c-form-fields-wrapper {
  padding-right: 15px;
  padding-left: 15px;
}

.mt-c-form-fields-wrapper .mt-c-form-fields-wrapper-inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc( -30px/2 );
  margin-right: calc( -30px/2 );
  margin-bottom: -30px;
}

.mt-c-form-fields-wrapper .field-group {
  padding-right: calc( 30px/2 );
  padding-left: calc( 30px/2 );
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.mt-c-form-fields-wrapper .field-group .field-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #282828;
  /* Label Typography */
}

.mt-c-form-fields-wrapper .field-group .field-label.hidden {
  display: none;
}

.mt-c-form-fields-wrapper .field-group .field {
  display: block;
  width: 100%;
  color: #161616;
  background-color: #fff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #ddd;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  /* Feild Typography */
}

.mt-c-form-fields-wrapper .field-group .field.field-size-xs {
  padding: 4px 12px;
  font-size: 13px;
  line-height: 1.4;
  min-height: 33px;
}

.mt-c-form-fields-wrapper .field-group .field.field-size-sm {
  padding: 5px 14px;
  font-size: 15px;
  line-height: 1.4;
  min-height: 40px;
}

.mt-c-form-fields-wrapper .field-group .field.field-size-md {
  padding: 6px 16px;
  font-size: 16px;
  line-height: 1.4;
  min-height: 47px;
}

.mt-c-form-fields-wrapper .field-group .field.field-size-lg {
  padding: 7px 20px;
  font-size: 18px;
  line-height: 1.4;
  min-height: 59px;
}

.mt-c-form-fields-wrapper .field-group .field.field-size-xl {
  padding: 8px 24px;
  font-size: 20px;
  line-height: 1.4;
  min-height: 72px;
}

.mt-c-form-fields-wrapper .field-group .field::placeholder {
  color: #9f9f9f;
  /* Placeholder Typography */
}

.mt-c-form-fields-wrapper .mark-required .field-label:after {
  content: "*";
  color: #ff0000;
  padding-left: 5px;
}

.mt-c-form-fields-wrapper .type-submit .button {
  display: inline-block;
  line-height: 1;
  color: #fff;
  background-color: #5F6AE6;
  cursor: pointer;
  border-style: solid;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-color: #5F6AE6;
  border-radius: 4px;
  box-shadow: 0 5px 5px 0 rgba(20, 45, 117, 0.25);
}

.mt-c-form-fields-wrapper .type-submit .button:hover {
  color: #fff;
  background-color: #323fd7;
}

.mt-c-form-fields-wrapper .type-submit .button.button-sm {
  font-size: 15px;
  padding: 12px 24px;
}

.mt-c-form-fields-wrapper .type-submit .button.button-md {
  font-size: 16px;
  padding: 20px 30px;
}

.mt-c-form-fields-wrapper .type-submit .button.button-lg {
  font-size: 18px;
  padding: 20px 40px;
}

.mt-c-form-fields-wrapper .type-submit .button.button-xl {
  font-size: 20px;
  padding: 25px 50px;
}

.mt-c-form-fields-wrapper .type-submit .button>span {
  display: flex;
  align-items: center;
}

.mt-c-form-fields-wrapper .type-submit .button>span:before {
  content: "";
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 100%;
  animation: button-animation 0.7s linear infinite;
  transition: all .4s ease;
}

.mt-c-form-fields-wrapper .type-submit .button.icon-before .button-icon {
  margin-right: 10px;
}

.mt-c-form-fields-wrapper .type-submit .button.icon-after .button-icon {
  margin-left: 10px;
  order: 1;
}

.mt-c-form-fields-wrapper .type-submit .button.icon-after .button-text {
  order: 0;
}

.mt-c-form-fields-wrapper .type-submit.button-left {
  justify-content: flex-start;
}

.mt-c-form-fields-wrapper .type-submit.button-center {
  justify-content: center;
}

.mt-c-form-fields-wrapper .type-submit.button-right {
  justify-content: flex-end;
}

.mt-c-form-fields-wrapper .type-submit.button-block .button {
  flex-basis: 100%;
}

.mt-c-form-fields-wrapper .type-submit.button-block .button>span {
  justify-content: center;
}

.mt-c-form-fields-wrapper .type-submit .button.form-loading>span::before {
  opacity: 1;
  width: 15px;
  height: 15px;
  border: 2px solid transparent;
  border-top-color: white;
  border-right-color: white;
  border-bottom-color: white;
  margin-right: 20px;
}

.mt-c-form-fields-wrapper .captcha-wrapper {
  display: flex;
}

.mt-c-form-fields-wrapper .captcha-wrapper .captcha-output {
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background-color: #282828;
  padding: 5px 25px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.mt-c-form-fields-wrapper .submit-message {
  font-size: 18px;
  margin-top: 30px;
  display: flex;
}

.mt-c-form-fields-wrapper .submit-message i {
  margin-right: 10px;
  margin-top: 3px;
}

.mt-c-form-fields-wrapper .submit-message.error i {
  color: #fb5758;
}

.mt-c-form-fields-wrapper .submit-message.thankyou i {
  color: #00d34f;
}

.mt-c-form-fields-wrapper .type-submit .button.form-loading {
  cursor: not-allowed;
}

@keyframes button-animation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main.css.map */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.mt-form-col-20 {
  width: 20%;
}

.mt-form-col-25 {
  width: 25%;
}

.mt-form-col-33 {
  width: 33%;
}

.mt-form-col-40 {
  width: 40%;
}

.mt-form-col-50 {
  width: 50%;
}

.mt-form-col-60 {
  width: 60%;
}

.mt-form-col-66 {
  width: 66%;
}

.mt-form-col-75 {
  width: 75%;
}

.mt-form-col-80 {
  width: 80%;
}

.mt-form-col-100 {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mt-form-col-md-20 {
    width: 20%;
  }

  .mt-form-col-md-25 {
    width: 25%;
  }

  .mt-form-col-md-33 {
    width: 33%;
  }

  .mt-form-col-md-40 {
    width: 40%;
  }

  .mt-form-col-md-50 {
    width: 50%;
  }

  .mt-form-col-md-60 {
    width: 60%;
  }

  .mt-form-col-md-66 {
    width: 66%;
  }

  .mt-form-col-md-75 {
    width: 75%;
  }

  .mt-form-col-md-80 {
    width: 80%;
  }

  .mt-form-col-md-100 {
    width: 100%;
  }
}

@media (max-width:767px) {
  .mt-form-col-sm-20 {
    width: 20%;
  }

  .mt-form-col-sm-25 {
    width: 25%;
  }

  .mt-form-col-sm-33 {
    width: 33%;
  }

  .mt-form-col-sm-40 {
    width: 40%;
  }

  .mt-form-col-sm-50 {
    width: 50%;
  }

  .mt-form-col-sm-60 {
    width: 60%;
  }

  .mt-form-col-sm-66 {
    width: 66%;
  }

  .mt-form-col-sm-75 {
    width: 75%;
  }

  .mt-form-col-sm-80 {
    width: 80%;
  }

  .mt-form-col-sm-100 {
    width: 100%;
  }
}

.mt-c-form input[type=number]::-webkit-inner-spin-button, 
.mt-c-form input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    margin: 0; 
}