body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #101010;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  box-shadow: none;
}

section {
  padding: 70px 0;
}

header {
  z-index: 99;
  transition: all 300ms ease-in-out;
}

.navbar-brand>img {
  width: 250px;
  max-width: 100%;
}

.navbar-nav .nav-link {
  font-size: 16px;
}

.btn-custom {
  background-color: #3150a0;
  border: 1px solid #3150a0 !important;
  color: #ffffff;
  border: none;
  padding: 13px 30px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 5px;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  color: #fff;
  opacity: 0.8;
}

.form-label {
  font-weight: 600;
}

/* Footer CSS Starts */

.f-title {
  color: #fff;
}

.f-listing {
  list-style-type: none;
}

.main-footer p {
  color: #b2b2b2;
}

.f-listing>li>a {
  color: #b2b2b2;
}

.f-listing>li>a:hover {
  color: #fff;
}

.social-media-links>li {
  display: inline-block;
  margin-right: 10px;
}

.developedby-wrap a>img {
  width: 18px;
  filter: grayscale(1) brightness(9);
  transition: all 300ms ease-in-out;
  margin-left: auto;
  display: block;
}

/* Footer CSS Ends */

/* Login Screen CSS Starts */

.login-screen-wrapper {
  min-height: calc(100vh - 0px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 100px;
}

.custom-btn {
  background-color: #255699;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  padding: 7px 25px;

}

.custom-btn:hover,
.custom-btn:active,
.custom-btn:focus {
  background-color: #255699;
  color: #fff;
  box-shadow: none;
}

.sub-heading {
  background: #3150a0;
  color: #fff;
  border-radius: 5px;
}

/* Login Screen CSS Ends */

/* Multi Step Form Starts */

#signUpForm {
  /* max-width: 500px; */
  background-color: #ffffff;
  /* margin: 40px auto; */
  /* padding: 40px; */
  /* box-shadow: 0px 6px 18px rgb(0 0 0 / 9%); */
  border-radius: 12px;
}

#signUpForm .form-header {
  gap: 10px;
  text-align: center;
  font-size: .9em;
}

#signUpForm .form-header .stepIndicator {
  position: relative;
  flex: 1;
  padding-bottom: 30px;
}

#signUpForm .form-header .stepIndicator.active {
  font-weight: 600;
  color: #3150a0;
}

#signUpForm .form-header .stepIndicator.finish {
  font-weight: 600;
  color: #3150a0;
}

#signUpForm .form-header .stepIndicator::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9;
  width: 20px;
  height: 20px;
  background-color: #a9bbeb;
  border-radius: 50%;
  border: 3px solid #dfe6f9;
}

#signUpForm .form-header .stepIndicator.active::before {
  background-color: #506ebd;
  border: 3px solid #b7c1dc;
}

#signUpForm .form-header .stepIndicator.finish::before {
  background-color: #3150a0;
  border: 3px solid #93a1c5;
}

#signUpForm .form-header .stepIndicator::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 100%;
  height: 3px;
  background-color: #f3f3f3;
}

#signUpForm .form-header .stepIndicator.active::after {
  background-color: #506ebd;
}

#signUpForm .form-header .stepIndicator.finish::after {
  background-color: #3150a0;
}

#signUpForm .form-header .stepIndicator:last-child:after {
  display: none;
}

#signUpForm input.form-control,
#signUpForm select.form-select {
  padding: 10px 25px 10px 15px;
  width: 100%;
  font-size: 1em;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
}

#signUpForm input:focus,
#signUpForm select.form-select:focus {
  border: 1px solid #3150a0;
  outline: 0;
}

#signUpForm input.invalid,
#signUpForm select.form-select.invalid {
  border: 1px solid #ffaba5;
}

#signUpForm .step {
  display: none;
}

.step-title {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 600;
}

.login-screen-wrapper h1 {
  color: #3150a0;
}

#signUpForm .form-footer {
  overflow: auto;
  gap: 20px;
}

#signUpForm .form-footer button {
  background-color: #3150a0;
  border: 1px solid #3150a0 !important;
  color: #ffffff;
  border: none;
  padding: 13px 30px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  flex: 1;
  margin-top: 5px;
}

#signUpForm .form-footer button:hover {
  opacity: 0.8;
}

#signUpForm .form-footer #prevBtn {
  background-color: #fff;
  color: #3150a0;
}

input.form-control {
  padding: 15px;
}

/* Multi Step Form Ends */
.success-img-wrap>img {
  width: 80px;
}

.text-success {
  color: #29b933 !important;
}

.content-wrapper {
  padding-top: 100px;
}

.content-wrapper {
  min-height: 100vh;
}

.title {
  color: #3150a0;
  font-size: 26px;
}

.complaint-list {
  list-style-type: none;
  padding-left: 0;
}

.complaint-list>li>p {
  margin-bottom: 5px;
}

.complaint-list>li {
  position: relative;
  padding-left: 40px;
}

.complaint-list>li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #a1a1a1;
  left: 0;
  top: 5px;
  z-index: 1;
}

.complaint-list>li::after {
  position: absolute;
  content: "";
  height: calc(100% + 20px);
  width: 1px;
  background-color: #ccc;
  left: 5px;
  top: 10px;
  z-index: 0;
}

.complaint-list>li:last-child:after {
  display: none;
}

.complaint-list>li.compeleted::before,
.complaint-list>li.compeleted::after {
  background-color: #29b933 !important;
  ;
}

.status-label {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
}

.custom-accordion .accordion-button {
  color: #3150a0;
  font-weight: 600;
  word-break: break-word;
}

.custom-accordion .accordion-button:focus,
.custom-accordion .accordion-button:active {
  box-shadow: none;
}

.logo img {
  max-width: 280px;
}

.required {
  color: red;
}
body.overflow-hidden-g { overflow: hidden!important;height: 100vh;}

.modal-dialog.modal-fl .modal-content {
  border: 0;
  border-radius: 0;
}
.modal-fl {
  width: 100%;
  max-width: 100%;
  margin: 0!important;
  left: 0;
}
.inaugrate-img {
  height: 100vh;
  display: grid;
  align-items: center;
}
.inaugrate-img >img {
  height: 100%;
  min-height: 90vh;
  object-fit: contain;
  object-position: top;
  max-height: 99vh;
  object-position: center;

}
.inog-modal .modal-body .inaugrate-img > img {
  height: 100%;
  margin: 0 auto;
  display: block;
}
.weblogin-screen {
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.web-login-form {
  background-color: #fff;
  border-radius: 15px;
}