body {
  padding: 0;
  margin: 0;
  color: #464646;
  overflow-x: hidden;
  font-family: "Poppins-Regular", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.form-control,
.form-control:focus {
  box-shadow: none;
}

.form-select {
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
}

a:focus,
input:focus {
  border-color: transparent;
  outline: none;
}

*::placeholder {
  font-size: 14px;
  color: #bababa !important;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #e7e7e7;
  border: 1px solid #cacaca;
}

body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
  background-color: #353535;
}

/* Fonts======================================================================= */
@font-face {
  font-family: "Poppins-Light";
  src: url("../font/Poppins-Light.ttf");
  /* IE9 Compat Modes */
  src: url("../font/Poppins-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Regular";
  src: url("../font/Poppins-Regular.ttf");
  /* IE9 Compat Modes */
  src: url("../font/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../font/Poppins-Medium.ttf");
  /* IE9 Compat Modes */
  src: url("../font/Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("../font/Poppins-Bold.ttf");
  /* IE9 Compat Modes */
  src: url("../font/Poppins-Bold.ttf") format("truetype");
}

h1,
.h1,
h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins-Medium", sans-serif;
}

p {
  line-height: 1.5;
  margin-bottom: 0px;
}

ul {
  list-style: none;
  margin-bottom: 0px;
}

ul li {
  color: #595959;
  font-weight: 500;
  position: relative;
}

ul.tickBefore li::before {
  content: "";
  position: absolute;
  background-image: url("../images/icons/tick.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  left: -24px;
  top: 4px;
}

/* utility css started here==================================================== */
.bg-gradient-primary {
  background: linear-gradient(to right, #2377a5, #005382) !important;
}

.bg-gradient-secondary {
  background: linear-gradient(to right, #e7ebf0, #868e96) !important;
}

.bg-gradient-success {
  background: linear-gradient(to right, #84d9d2, #07cdae) !important;
}

.bg-gradient-info {
  background: linear-gradient(to right, #63ce2b, #308d00) !important;
}

.bg-gradient-warning {
  background: linear-gradient(to right, #f6e384, #ffd500) !important;
}

.bg-gradient-danger {
  background: linear-gradient(to right, #ffbf96, #fe7096) !important;
}

.bg-gradient-light {
  background: linear-gradient(to bottom, #d0d0d0, #afafaf) !important;
}

.bg-gradient-dark {
  background: linear-gradient(89deg, #5e7188, #3e4b5b) !important;
}

.bg-primary-custom {
  background-color: #096191 !important;
}

.id-color {
  color: #096191cc;
}

.gold-color {
  color: #e9c500;
}

.small-border {
  height: 1px;
  width: 120px;
  background: #096191cc;
  display: block;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

.spacer-single {
  width: 100%;
  height: 16px;
  display: block;
  clear: both;
}

.pull-left {
  float: left !important;
}

.form-group {
  margin-bottom: 1.125rem;
  text-align: left;
}

.form-group label {
  line-height: 1;
  vertical-align: top;
  margin-bottom: 0.5rem;
}

.box-shadow-0 {
  box-shadow: 0 0 0 0 #00000000 !important;
}

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

/* Buttons css started here====================================================== */
.btn {
  padding: 12px 18px;
  border-radius: 24px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  white-space: normal !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background-color: #f53844;
}

.btn-primary:hover {
  background-color: #dc2632;
}

.btn-primary-outline {
  background-color: transparent;
  border: 2px solid #f53844;
  color: #f53844;
}

.btn-primary-outline:hover {
  background-color: #f53844;
  border: 2px solid #df2c38;
  color: #ffffff;
}

.btn-wrapper button {
  min-width: 150px;

}

.btn-wrapper button.btn-left-align {
  margin-right: 25px;

}

/* Navbar css started here======================================================== */
.navbar {
  padding: 0;
  background-color: #f7f7f7;
  top: 0;
  z-index: 100;
  position: fixed;
  width: 100%;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, .8);
  height: 70px;
}

.navbar a.navbar-brand img {
  max-width: 250px;
  padding: 16px 16px;
}

.navbar.navbar-internal {
  background-color: #efefef;
}

.navbar .nav.navbar-nav {
  flex-direction: row;
  align-items: center;
  height: 60px;
}

.navbar .nav.navbar-nav li::before {
  content: unset;
}

.navbar .nav.navbar-nav li a {
  padding: 10px 12px;
  margin: 0 12px;
  color: #30363b;
  text-decoration: none;
}

.navbar .nav.navbar-nav li a:hover {
  background-color: #666666;
  color: #ffffff;
  border-radius: 4px;
}

.navbar .nav.navbar-nav li a.active {
  background-color: #666666;
  color: #ffffff;
  border-radius: 4px;
}

.navbar .signinWrapper {
  position: fixed;
  right: 25px;
}

.navbar-toggler {
  background-color: #096191;
  padding: 0.25rem 0.5rem;
}

.navbar-light .navbar-toggler-icon {
  background-image: url(../images/navbar/hamburger.png);
  width: 1.25em;
  height: 1.25em;
}

.mobile-navbar ul.navbar-nav {
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 1;
}

.mobile-navbar ul.navbar-nav li {
  padding: 10px 20px;
  background-color: #ececec;
  border-bottom: 1px solid #d9d9d9;
}

.mobile-navbar ul.navbar-nav li a {
  color: #555555;
  text-decoration: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0rem;
}

/* scroll section css started here================================================== */
section {
  width: 100%;
  padding: 70px 50px 85px;
  background: #fff;
  text-align: center;
  position: relative;
}

section h1 {
  margin-top: 1rem;
}

.bgSection {
  background-image: url(../images/background/sectionBg-1-dark.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 600px;
}

.bgSection-1 {
  background-image: url(../images/background/sectionBg-2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 600px;
}

/* home section css started here==================================================== */
.bg-primary-custom h1 {
  color: #38cef8;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px 30px;
}

.upload-files-container {
  background-color: #f7fff7;
  width: 650px;
  padding: 20px 60px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 20px, rgba(0, 0, 0, 0.28) 0px 6px 6px;
}

.drag-file-area {
  border: 2px dashed #7b2cbf;
  border-radius: 40px;
  margin: 0 0 15px;
  padding: 30px 50px 0px;
  width: 550px;
  text-align: center;
}

.drag-file-area .upload-icon img {
  max-width: 180px;
}

.drag-file-area h3 {
  margin: 10px 0;
}

.drag-file-area label .browse-files-text {
  color: #0b4a6b;
  font-weight: bolder;
  cursor: pointer;
}

.browse-files span {
  position: relative;
  top: -25px;
}

.default-file-input {
  opacity: 0;
}

.form-container .btn-primary {
  text-transform: uppercase;
  min-width: 160px;
  padding: 16px 24px;
}

.widgets-wrapper {
  height: 100vh;
  padding: 20px 40px;
}

/* Process css started here======================================================== */
section.process {
  padding: 70px 100px 85px;
}

p.sub-title {
  margin-bottom: 25px;
  color: #f53844;
  letter-spacing: 0.5px;
}

.process p.sub-title {
  margin-bottom: 55px;
}

.workFlowWrapper {
  position: relative;
}

.workFlowWrapper::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #016ca0;
  position: absolute;
  top: -30px;
  left: 0px;
  z-index: 0;
}

.procWrapper {
  max-width: 280px;
  margin: 0px 0px;
  padding: 10px;
  border: 1px dashed #898989;
  background-color: #f3f3f3;
  position: relative;
  border-radius: 12px;
}

.procWrapper .step-no {
  position: absolute;
  left: 50%;
  top: -48px;
  transform: translate(-50%, 0px);
  color: #ffffff;
  background-color: #096191;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.procWrapper img {
  margin-bottom: 15px;
}

.procWrapper p {
  text-align: justify;
}

/* tools css started here======================================================== */

/* eSign css started here======================================================= */
.sectionWrap h2 {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.2em;
  color: #f53844;
}

.sectionWrap p.intro {
  margin-bottom: 20px;
  color: #505050;
}

.centerContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 450px;
}

/* client css started here======================================================= */

/* Pricing css started here======================================================== */
.cost_listing_row {
  padding-bottom: 30px;
}

.cost_listing_wrapper {
  padding: 0px 25px;
}

.cost_listing_wrapper .inner_listing_wrapper {
  background-color: #ffffff;
  padding: 23px 30px 34px 30px;
  text-align: left;
  box-shadow: 0px 5px 20px -2px rgba(0, 0, 0, 0.75);
  min-height: 568px;
  border-radius: 16px;
  border: 3px solid #ffffff;
}

.cost_listing_wrapper .inner_listing_wrapper.inner_listing_wrapper_pro {
  border: 3px solid #ffdc1f;
  background-color: #0685cc;
}

.cost_listing_wrapper .price_plan {
  text-transform: uppercase;
  color: #0685cc;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.cost_listing_wrapper .inner_listing_wrapper_pro .price_plan,
.cost_listing_wrapper .inner_listing_wrapper_pro .plan_price {
  color: #ffffff;
}

.cost_listing_wrapper .inner_listing_wrapper_pro p {
  color: #e4e4e4;
}

.cost_listing_wrapper .price_plan i {
  font-size: 26px;
}

.cost_listing_wrapper .plan_price {
  color: #0685cc;
  font-weight: 500;
  font-size: 48px;
  margin-top: 20px;
}

.cost_listing_wrapper .plan_month {
  font-size: 10px;
  text-transform: uppercase;
  color: #0685cc;
  position: relative;
  font-weight: 500;
  letter-spacing: 1px;
}

.cost_listing_wrapper .plan_month.plan_month_gray {
  color: #787878;
}

.cost_listing_wrapper .plan_month.plan_month_white {
  color: #f3f3f3;
}

.cost_listing_wrapper .plan_content ul li {
  padding-bottom: 20px;
}

.cost_listing_wrapper .plan_content ul li:last-child {
  padding-bottom: 0px;
}

.cost_listing_wrapper .inner_listing_wrapper_pro .plan_content ul li {
  color: #f2f2f2;
}

.cost_listing_wrapper .inner_listing_wrapper_pro .plan_content ul.tickBefore li::before {
  background-image: url("../images/icons/tick-white.png");
}

.cost_listing_wrapper .plan_button {
  padding-top: 30px;
  padding-bottom: 40px;
}

.cost_listing_wrapper .plan_button button,
.cost_listing_wrapper .plan_button a {
  width: 100%;
}

/* contact us css started here======================================================== */
.contactus-area ul li {
  padding-bottom: 20px;
}

.contactus-area ul li:last-child {
  padding-bottom: 0px;
}

.cntForm {
  background-color: #eeeeee;
  padding: 5px 15px 0px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 1px 1px 3px 1px rgb(0 0 0 / 35%);
}

.cntForm form label.form-label {
  color: #1a2229;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.cntForm form input.form-control,
.cntForm form select.form-select {
  color: #6f7477;
  border-radius: 12px;
}

.countryCode {
  position: absolute;
  left: 0px;
  max-width: 80px;
  border: 0;
}

/* Footer css started here======================================================== */
.footer {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #2f2f2f;
  background-color: #f3f3f3;
  border-top: 1px solid #e7dee9;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  font-family: "Poppins-Regular", sans-serif;
  padding: 0px 0px;
}

.footer a {
  color: #0083cb;
  display: inline-block;
  border-radius: 8px;
}

.footer .footer-top {
  padding: 50px 0 25px 0;
}

.ftrLogo a img {
  max-width: 125px;
}

.page-footer__copyright {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.page-footer__copyright-rights {
  color: #c4c4c4;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 4px;
}

.footer-top .ftrText {
  margin-top: 24px;
  margin-bottom: 32px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
}

.footer-top .ftrTitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #ffffff;
  text-decoration: underline;
}

.footer-top .ftrInner {
  margin-top: 13px;
}

.footer-top .footer-link {
  list-style: none;
  padding: 0;
}

.footer-top .footer-link li {
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-top .footer-link li::before {
  content: unset;
}

.footer-top .footer-link li a {
  display: inline-block;
  color: #c4c4c4;
  line-height: 25px;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}

.footer-top .footer-link li .contact-icon {
  color: #8ae5ff;
  margin-right: 15px;
  font-size: 25px;
}

.footer-bottom {
  padding: 5px 10px;
  color: #5e5e5e;
  border-top: 1px solid #afafaf;
}

.footer-bottom span {
  font-size: 13px;
}

.footer-bottom span a {
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
}

.fix-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* register wrapper css started here================================================== */
.RegisterWrapper .avsstech-center-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #fff;
  min-height: 100vh;
}

.RegisterWrapper .login-page {
  background-color: #FFFFFF;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
}

.kc-header-wrapper {
  padding: 0;
}

.logo-link {
  transition: all 0.15s ease-out;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: inherit;
  display: flex;
  align-items: center;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  flex-shrink: 0;
}

.logo-link .ihostmyform-logo {
  width: auto;
  height: 55px;
  display: inline-block;
  line-height: 1em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: currentColor;
}

.login-page .card-ihmf {
  max-width: 500px;
  width: 400px;
  word-wrap: break-word;
  background: #fff;
  margin: 0px 0px;
  padding: 0 20px;
}

.login-page .card-ihmf p {
  color: #72767b;
}

.login-page .login-ihmf-header {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.login-page .login-ihmf-header h1 {
  text-align: center;
}

#ihmf-content {
  width: 100%;
}

#ihmf-content-wrapper {
  margin-top: 15px;
}

.ihmf-form-wrapper {
  margin-top: 10px;
}

.ihmf-form-wrapper .form-group label {
  margin-bottom: 0.25rem;
  display: block;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ihmf-form-wrapper .form-group .form-control {
  border-radius: 4px;
}

.ihmf-form-wrapper .form-group .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.login-ihmf-settings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.login-ihmf-settings .checkbox label {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.login-ihmf-settings .checkbox label input {
  margin-right: 4px;
  width: 16px;
  height: 16px;
}

.login-ihmf-settings a {
  color: #096191;
  font-weight: 600;
  letter-spacing: 0.5px;
  height: 16px;
  display: inline-block;
}

.forgot-pass-wrap {
  line-height: 1;
}

.ihmf-secondary-form-text {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  word-wrap: break-word;
}

.ihmf-secondary-form-text a {
  color: #096191;
}

.signBtnWrapper .btn {
  width: 100%;
  margin-top: 10px;
}

.ihmf-c-button.ihmf-login-item {
  padding: 6px 12px;
  margin: 12px 0px;
  display: block;
  background-color: initial;
  border: 1px solid rgb(226, 232, 240);
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #8b8b8b;
}

.divider-with-text {
  color: rgb(151, 160, 175);
  font-weight: 300;
  font-size: 14px;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-flow: row;
  align-items: center;
  text-align: center;
  height: 21px;
}

.divider-with-text hr {
  height: 1px;
  flex-grow: 1;
}

.divider-with-text span {
  padding-left: 1rem;
  padding-right: 1rem;
}

.ihmf-c-button.ihmf-login-item i.ihmf-provider-logo {
  float: left;
  font-size: 20px;
  width: 26px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 4px;
}

.ihmf-fontColor-gray {
  color: #333;
}

.registerWrapRightBgColor {
  background-color: #f2f3f8;
}

.registerWrapRight {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 75px;
  width: 100%;
}

.registerWrapRight img {
  margin: 0 auto;
  display: block;
}

.registerWrapRight h4 {
  margin-top: 10px;
}

.registerWrapRight p {
  color: #096191;
}

.ihmf-form-input-right-element {
  position: absolute;
  right: 4px;
}

.ihmf-form-input-right-element .btn {
  background-color: #edf2f7;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 0 0 0 #000000;
}

.ihmf-registration {
  text-align: center;
  margin-top: 10px;
}

.ihmf-registration a {
  color: #096191;
  text-decoration: none;
}

.sigupForm ul {
  padding-left: 0px;
  margin-top: 6px;
  margin-bottom: 0;
  list-style: disc;
  list-style-position: inside;
}

.sigupForm ul li {
  color: #808080;
}

.sigupForm .form-group .form-label span {
  color: #afafaf;
  font-style: italic;
}

.mobWrapper .form-group,
.otpWrapper .form-group {
  text-align: center;
}

.mobWrapper .form-group .form-label,
.otpWrapper .form-group .form-label {
  margin-bottom: 2rem;
  line-height: 1.5;
  font-weight: 500;
}

.mobWrapper .form-group .form-label span,
.otpWrapper .form-group .form-label span {
  font-weight: 600;
}

.otpWrapper .input-group input.form-control {
  margin-right: 15px;
  border-radius: 4px !important;
  text-align: center;
}

.otpWrapper .input-group input.form-control:last-child {
  margin-right: 0px;
}

/* select2 css start here------------------------------------------------ */
.select2-container {
  min-width: 80px;
}

.select2-container .select2-selection--single {
  line-height: 38px;
  height: 38px;
  border: 1px solid #ced4da;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 16px;
  line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  width: 16px;
}

/* Responsive css started here======================================================== */

@media screen and (max-width: 1349.98px) {
  .registerWrapRight {
    padding: 25px 25px;
  }
}

@media screen and (max-width: 1199.98px) {
  .navbar {
    padding: 0px 0px;
  }

  .navbar .navbar-header .navbar-brand {
    margin-right: 1rem;
  }

  .navbar .nav.navbar-nav li a {
    padding: 8px 8px;
    margin: 0 6px;
  }

  .procWrapper {
    margin: 0px 5px;
  }
}

@media screen and (max-width: 991.98px) {
  .navbar .navbar-header .navbar-brand img {
    max-width: 200px;
  }
}

@media screen and (max-width: 767.98px) {
  .navbar .navbar-header .navbar-brand img {
    max-width: 185px;
  }

  .centerContent {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 450px;
  }

  .bgSection,
  .bgSection-1 {
    max-height: 100%;
  }

  .secImgRespoWrapper {
    text-align: center !important;
  }

  .secImgRespo {
    max-width: 550px;
  }

  section.process {
    padding: 70px 15px 85px;
  }

  .cost_listing_wrapper .inner_listing_wrapper {
    padding: 15px 20px 20px 20px;
    min-height: unset;
    margin-bottom: 20px;
  }

  .cost_listing_wrapper .plan_price {
    margin-top: 10px;
  }

  .cost_listing_wrapper .plan_button {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  section.contactus-area p.sub-title {
    margin-bottom: 8px;
  }

  section.contactus-area ul {
    margin-top: 8px !important;
  }

  section.contactus-area .cntForm {
    margin-top: 25px;
  }

  .ftrLogo,
  .page-footer__copyright,
  .ftrText {
    text-align: center;
  }

  .footer-top .ftrTitle {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .footer-top .footer-link li .contact-icon {
    margin-right: 5px;
    font-size: 18px;
  }
}

@media screen and (max-width: 575.98px) {
  body {
    counter-reset: div-counter;
  }

  .navbar {
    height: 55px;
  }

  .navbar .navbar-header .navbar-brand {
    margin-right: 0rem;
  }

  .navbar .navbar-header .navbar-brand img {
    max-width: 160px;
    padding: 14px 0px;
  }

  section {
    padding: 25px 5px 35px !important;
  }

  section#home {
    padding: 45px 15px 35px !important;
  }

  .small-border {
    height: 1px;
    width: 80px;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .spacer-single {
    height: 10px;
  }

  .form-container {
    padding: 0px 0px 0px;
  }

  .upload-files-container {
    width: 280px;
    padding: 15px 10px 10px;
  }

  .drag-file-area {
    margin: 0 0 10px;
    padding: 10px 10px 0px;
    width: 250px;
  }

  .form-container .btn-primary {
    min-width: 100px;
    padding: 12px 16px;
  }

  .drag-file-area .upload-icon img {
    max-width: 80px;
  }

  .drag-file-area label {
    display: block;
  }

  .workFlowWrapper {
    display: block !important;
  }

  .secImgRespo {
    max-width: 250px;
  }

  .centerContent {
    min-width: 250px;
  }

  .cost_listing_wrapper .plan_price {
    font-size: 22px;
  }

  .upload-files-container .default-file-input {
    width: 100%;
  }

  .workFlowWrapper::before {
    height: 0px;
    width: 0px;
  }

  .procWrapper {
    margin: 0px auto 10px auto;
  }

  .procWrapper .step-no {
    width: 0;
    height: 0;
  }

  .process p.sub-title {
    margin-bottom: 20px;
  }

  .procWrapper img {
    max-width: 200px;
  }

  .numbered-div::before {
    content: "";
    height: 104%;
    width: 1px;
    background-color: #016ca0;
    position: absolute;
    top: 0px;
    left: -20px;
    z-index: 0;
  }

  .numbered-div:last-child:before {
    height: 100%;
  }

  .numbered-div::after {
    counter-increment: div-counter;
    /* Increment counter */
    content: " " counter(div-counter);
    /* Display counter */
    margin-left: 10px;
    color: white;
    background: #096191;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 24px;
    position: absolute;
    left: -42px;
    top: 50%;
    transform: translate(0px, -50%);
  }

  .sectionWrap h2 {
    margin-bottom: 15px;
  }

  .sectionWrap p.intro {
    margin-bottom: 15px;
  }

  .cost_listing_wrapper .inner_listing_wrapper {
    padding: 5px 5px 10px 5px;
  }

  .cost_listing_wrapper .price_plan {
    font-size: 18px;
  }

  .cost_listing_wrapper .plan_button {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .cost_listing_wrapper .plan_button a {
    padding: 8px 18px;
  }

  .cost_listing_wrapper .plan_content ul li {
    padding-bottom: 10px;
  }

  ul li::before {
    width: 12px;
    height: 12px;
    left: -16px;
  }

  .plan_content ul {
    padding-left: 20px;
  }

  .contactus-area h3 {
    margin-bottom: 1rem !important;
  }

  section.contactus-area ul {
    padding-left: 18px !important;
  }

  .cntForm {
    padding: 5px 10px 0px;
  }

  .footer .footer-top {
    padding: 20px 0 10px 0;
  }

  .ftrLogo a img {
    max-width: 100px;
  }

  .page-footer__copyright {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .footer-top .ftrText {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-top .ftrTitle {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .footer-top .footer-link li {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .footer-top .ftrInner {
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .footer-top .footer-link li .contact-icon {
    font-size: 15px;
  }

  .footer-bottom {
    padding: 4px 2px;
  }

  .esignRight {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 449.98px) {
  .login-page .card-ihmf {
    max-width: 300px;
    width: 280px;
    padding: 0 10px;
  }
}