@charset "UTF-8";
body {
  font-family: "Outfit", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 16px;
  background-color: #fff;
}

.container {
  max-width: 1240px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.validation {
  font-size: 14px;
  color: #BD1E1E;
}

.header-main {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 28, 39, 0.3);
}
.header-main img {
  max-width: 400px;
}

.main-form-area {
  max-width: 560px;
  margin: 30px auto;
  min-height: 350px;
}
.main-form-area .field-title {
  font-size: 28px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.main-form-area .field-subHeading {
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 5px;
}
.main-form-area .field-intro {
  font-size: 14px;
}
.main-form-area .form-field label {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  border-radius: 7px;
  margin-bottom: 17px;
  font-weight: 600;
  color: #626262;
  transition: 0.2s;
  cursor: pointer;
}
.main-form-area .form-field label:hover {
  box-shadow: 0 5px 5px rgba(16, 28, 39, 0.3);
}
.main-form-area .form-field select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  border-radius: 7px;
  margin-bottom: 17px;
}
.main-form-area .form-field select:focus {
  outline: none;
  box-shadow: none !important;
}
.main-form-area .form-field .dob {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  border-radius: 7px;
  margin-bottom: 17px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
.main-form-area .form-field #reset-dob {
  position: absolute;
  font-size: 14px;
  padding: 0;
  border: 0;
  background-color: transparent;
  top: 45px;
  right: 10px;
  color: #626262;
}
.main-form-area .form-field #reset-dob:hover {
  text-decoration: underline;
}
.main-form-area .form-field .state {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  border-radius: 7px;
  margin-bottom: 17px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
.main-form-area .form-field #reset-state {
  position: absolute;
  font-size: 14px;
  padding: 0;
  border: 0;
  background-color: transparent;
  top: 45px;
  right: 10px;
  color: #626262;
}
.main-form-area .form-field #reset-state:hover {
  text-decoration: underline;
}
.main-form-area .form-field-smoke {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.main-form-area .form-field-smoke .custom-radio {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 18px;
  color: #101C27;
}
.main-form-area .form-field-smoke .custom-radio:hover {
  border-color: #101C27;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.main-form-area .form-field-smoke .custom-radio input[type="radio"] {
  display: none;
}
.main-form-area .form-field-smoke .custom-radio svg {
  margin-bottom: 15px;
  width: 48px;
  height: 48px;
}
.main-form-area .form-field-smoke .custom-radio:has(input[type="radio"]:checked) {
  background-color: #101C27;
  border-color: #101C27;
  color: #FFFFFF;
}
.main-form-area .form-field-smoke .custom-radio:has(input[type="radio"]:checked) svg path {
  fill: #FFFFFF;
}
.main-form-area .form-field-smoke .custom-radio:has(input[type="radio"]:checked) svg line {
  stroke: #FFFFFF;
}
.main-form-area .text-field label {
  font-weight: 600;
  margin-bottom: 5px;
}
.main-form-area .text-field input[type=text] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  border-radius: 7px;
  margin-bottom: 17px;
}

.main-form-area .number-field input[type=number] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  border-radius: 7px;
  margin-bottom: 17px;
}
.main-form-area .step {
  display: none;
}
.main-form-area .step.active {
  display: block;
}
.main-form-area #next-button, .main-form-area #submit-button {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: 0;
  background-color: #ed2326;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: 0.2s;
}
.main-form-area #next-button:hover, .main-form-area #submit-button:hover {
  background-color: #F14F51;
}
.main-form-area #dob-container {
  position: relative;
}
.main-form-area #dob-picker {
  display: block;
  margin-top: 10px;
  z-index: 10;
}
.main-form-area .dob-subpicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.main-form-area .dob-subpicker button {
  flex: 0 0 32%;
  padding: 10px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  background-color: #fff;
  cursor: pointer;
  border-radius: 7px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.main-form-area .dob-subpicker button:hover {
  background-color: rgba(16, 28, 39, 0.3);
}

.main-form-area #state-container {
  position: relative;
}
.main-form-area #state-picker {
  display: block;
  margin-top: 10px;
  z-index: 10;
}
.main-form-area .state-subpicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.main-form-area .state-subpicker button {
  flex: 0 0 49%;
  padding: 10px;
  border: 1px solid rgba(16, 28, 39, 0.3);
  background-color: #fff;
  cursor: pointer;
  border-radius: 7px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.main-form-area .state-subpicker button:hover {
  background-color: rgba(16, 28, 39, 0.3);
}

.main-form-area input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(16, 28, 39, 0.3);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
.main-form-area input[type=radio]:checked::before {
  content: "✔";
  font-size: 24px;
  color: #101c27;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-area span {
  font-size: 14px;
}
.progress-area .progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: rgba(16, 28, 39, 0.1);
  border-radius: 5px;
  margin-bottom: 20px;
  margin-top: 5px;
}
.progress-area .progress {
  height: 100%;
  width: 0;
  background-color: #56a741;
  border-radius: 5px;
}

.thank-you-area {
  max-width: 610px;
  margin: 60px auto;
}
.thank-you-area .field-title {
  font-size: 28px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.thank-you-area .step-preview {
  margin: 30px 0;
}
.thank-you-area .step-form {
  background-color: rgba(16, 28, 39, 0.04);
  padding: 30px;
  border-radius: 10px;
  color: rgba(16, 28, 39, 0.4);
  font-weight: 600;
}
.thank-you-area .step-form .header {
  position: relative;
}
.thank-you-area .step-form .header i {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .thank-you-area .step-form .header img {
    max-width: 30px;
  }
}
.thank-you-area .step-form p {
  margin-bottom: 0;
}
.thank-you-area .step-form .heading {
  font-size: 28px;
  font-weight: 700;
}
.thank-you-area .step-form .cnt {
  font-size: 20px;
}

.thank-you-area .step-more {
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
}

.thank-you-area .step-call {
  background-color: #101c27;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
}
.thank-you-area .step-call .header {
  position: relative;
}
.thank-you-area .step-call .header i {
  position: absolute;
  right: 0;
  top: 0;
}

.thank-you-area .step-more #more-button {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: 0;
  background-color: #ed2326;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: 0.2s;
  
}

.thank-you-area .step-more #more-button a {
  text-decoration: none;
  color: white;
  
}

.thank-you-area .step-call #call-button {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: 0;
  background-color: #ed2326;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: 0.2s;
  
}

.thank-you-area .step-call #call-button a {
  text-decoration: none;
  color: white;
  
}

.box-section {
  background-color: #80a0bd;
}

.white-box {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.05) !important;
  min-height: 300px;
}

.grey-bg {
  background: #f6f6f6;
  padding: 40px 0px 50px;
}

.ictext-box h2 {
  color: #145C9E;
  font-size: 24px;

}

.icon-box2 span {
  font-size: 26px;
  color: #ffffff;
  border: 1px solid #ddd;
  height: 60px;
  width: 80px;
  display: inline-block;
  border-radius: 30%;
  line-height: 62px;
  background: #145C9E;
}


@media screen and (max-width: 767px) {
  .thank-you-area .step-call .header img {
    max-width: 30px;
    min-width: 30px;
  }
  .footer-main {
      padding-top: 50%;
  }
}
.thank-you-area .step-call p {
  margin-bottom: 0;
}
.thank-you-area .step-call .heading {
  font-size: 28px;
  font-weight: 700;
}
.thank-you-area .step-call .cnt {
  font-size: 20px;
}
.thank-you-area .chat-box {
  background-color: rgba(16, 28, 39, 0.04);
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
}
.thank-you-area .chat-box .section-heading {
  font-size: 24px;
  font-weight: 700;
}
.thank-you-area .chat-box .cnt {
  font-size: 14px;
}
.thank-you-area .chat-box form label {
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 20px;
}
.thank-you-area .chat-box form select {
  padding: 12px 15px;
  border: 1px solid rgba(16, 28, 39, 0.3);
}
.thank-you-area .chat-box form select:focus {
  outline: none;
  box-shadow: none !important;
}
.thank-you-area .chat-box form input[type=submit] {
  width: 100%;
  padding: 12px 15px;
  font-weight: 600;
  background-color: #ed2326;
  color: #fff;
  transition: 0.2s;
  border: 0;
  border-radius: 50px;
  margin-top: 30px;
  font-size: 20px;
}
.thank-you-area .chat-box form input[type=submit]:hover {
  background-color: #F14F51;
}
.thank-you-area .promotion {
  margin-top: 50px;
  font-size: 18px;
}
.thank-you-area .promotion .section-heading {
  font-size: 28px;
  font-weight: 700;
}
.thank-you-area .promotion li {
  margin-top: 15px;
  list-style: none;
  position: relative;
}
.thank-you-area .promotion li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  left: -30px;
  top: 5px;
}

.notice-area {
  margin-top: 50px;
}
.notice-area .single {
  background-color: rgba(16, 28, 39, 0.04);
  padding: 7px 15px;
  border-radius: 7px;
  margin-bottom: 25px;
}

.footer-main {
  font-size: 14px;
  color: #999;
  margin-top: 100px;
}/*# sourceMappingURL=main.css.map */



.textinput {
  float: left;
  width: 100%;
  min-height: 75px;
  outline: none;
  resize: none;
  border: 1px solid grey;
}
 No newline at end of file