@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif; 
    font-family: 'Exo', sans-serif;*/

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

:root {
  --headingfont: "Exo", sans-serif;
  --headingfont2: "Raleway", sans-serif;
  --bodyfont: "Poppins", sans-serif;
  --bluecolor: #0067c7;
  --greencolor: #00b633;
  --deepblue: #021163;
  --deepred: #e8191f;
}

body {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: #43586c;
  font-family: var(--bodyfont);
  overflow-x: hidden;
}

.wrapper.mm-page {
  /* z-index: 0; */
  position: initial;
  display: flex;
  height: 100%;
  flex-direction: column;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

span,
mark {
  display: inline-block;
}

a {
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

a:hover {
  color: #2c3087;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

section {
  padding: 80px 0;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--headingfont);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* checkbox  */

.checkbox {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  font-size: 18px;
  color: #000;
}

.checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.checkbox input:checked~span::after {
  background-size: 15px;
}

.checkbox span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 2px solid #000;
  border-radius: 3px;
}

.checkbox span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background: url(../images/check.svg) no-repeat center center;
  background-size: 0;
  transition: 0.2s all ease-in-out;
}

/* checkbox  end*/

/* custom radio  */

.radioBtn {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  font-size: 18px;
  color: #000;
}

.radioBtn input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.radioBtn input:checked~span::after {
  background: #000;
  transform: translateY(-50%) scale(1);
}

.radioBtn span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 2px solid #000;
  border-radius: 50%;
}

.radioBtn span::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  background-size: 0;
  transition: 0.2s all ease-in-out;
  border-radius: 50%;
}

/* custom radio end */

/* custom file upload  */

.fileupload {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.fileupload span {
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.fileupload mark {
  height: 100%;
  background: #ecebeb;
  padding: 10px 20px;
}

.fileupload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

/* custom file upload end */

/*======START MOBILE MENU SECTION=======*/

.mobileMenuSection {
  display: none;
}

.mobilemenuBtn {
  display: none;
}

.mobilemenuBtn span {
  background: #2c3087;
  display: block;
  width: 25px;
  height: 2px;
  margin: 0 0 5px 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.mobilemenuBtn span:last-child {
  margin: 0;
}

.mm-wrapper--opened .mobilemenuBtn span:first-child {
  transform: rotate(45deg) translate(4px, 6px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transform: rotate(45deg) translate(4px, 6px);
  -moz-transform: rotate(45deg) translate(4px, 6px);
  -ms-transform: rotate(45deg) translate(4px, 6px);
  -o-transform: rotate(45deg) translate(4px, 6px);
}

.mm-wrapper--opened .mobilemenuBtn span:last-child {
  transform: rotate(-45deg) translate(4px, -6px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transform: rotate(-45deg) translate(4px, -6px);
  -moz-transform: rotate(-45deg) translate(4px, -6px);
  -ms-transform: rotate(-45deg) translate(4px, -6px);
  -o-transform: rotate(-45deg) translate(4px, -6px);
}

.mm-wrapper--opened .mobilemenuBtn span:nth-child(2) {
  opacity: 0;
}

.mm-navbar {
  background: var(--bluecolor);
  box-shadow: 0 2px 14px -2px rgb(0, 0, 0, 0.2);
  border: 0;
  min-height: 45px;
}

.mm-navbar .mm-navbar__title {
  font-size: 25px;
  line-height: 25px;
  color: #fff !important;
  font-weight: 600;
  font-family: "pristinaregular";
}

.mm-listview>li>a,
.mm-listview>li>span {
  font-size: 15px;
  line-height: 24px;
  /* font-weight: 500; */
  color: #202124 !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mm-listview>li>a:hover,
.mm-listview>li.active>a {
  color: #000;
}

.mm-listitem {
  border-color: #ddd;
}

.mm-listview>li:not(.mm-divider):after {
  left: 0;
}

.mm-menu .mm-listview>li .mm-next:after {
  border-color: rgb(0, 0, 0);
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
  border-color: #000;
  width: 6px;
  height: 6px;
}

.mm-btn--prev:before {
  width: 8px !important;
  height: 8px !important;
  border-color: #fff !important;
}

.mmenu-open-fade .mobileMenuSection {
  display: none;
}

.mmenu-open-fade .mobileMenuSection {
  display: none;
}

.mm-btn--prev:before {
  border-color: #fff !important;
}

/*=======END MOBILE MENU SECTION=======*/

.site-main {
  padding-top: 48px;
}

/* header */

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 123;
  transition: 00.5s ease-in-out;
  left: 0;
}

.site-header.sticky {
  transform: translateY(-64px);
}

.site-header.sticky {
  background: #fff;
  box-shadow: 0 2px 20px -2px rgba(0 0 0 / 20%);
}

.site-header.sticky .header-bottom {
  padding: 10px 0;
}

.main-menu nav>ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.main-menu nav>ul li:not(:last-child) {
  margin: 0 40px 0 0;
}

.main-menu nav li a {
  color: var(--deepblue);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
  position: relative;
}

.main-menu>nav>ul>li.has-submenu>a {
  padding-right: 17px;
}

.main-menu nav li.active>a,
.main-menu nav li>a:hover {
  color: var(--deepred);
}

.main-menu>nav>ul>li {
  /* padding: 0 10px; */
}

/* sub menu*/

.has-submenu .has-submenu-sub:hover>.sub-menu {
  opacity: 1;
  transform: translate(0, 0px);
  pointer-events: inherit;
}

.has-submenu {
  position: relative;
}

.has-submenu>a {
  padding-right: 15px;
  position: relative;
}

.has-submenu>a:after {
  content: "\f2f2";
  position: absolute;
  right: 0px;
  top: 51%;
  transform: translateY(-50%);
  font: normal normal normal 14px/1 "Material-Design-Iconic-Font";
  color: #03629e;
  font-size: 31px;
  transition: all 0.5s ease-in-out;
}

.has-submenu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0) scaleY(0);
  transform-origin: top center;
  width: 310px;
  padding-top: 0px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 53, 102, 0.2);
  border-radius: 5px;
  padding: 10px 15px;
}

.has-submenu.show .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0) scaleY(1);
}

/* .has-submenu:hover>.sub-menu {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: all;
} */

.has-submenu .sub-menu>li {
  height: auto;
  line-height: 20px;
}

.has-submenu .sub-menu>li>a {
  padding: 0;
  display: block;
  font-size: 14px;
  color: #000;
  transition: all 0.5s ease-in-out;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid transparent;
}

.has-submenu .sub-menu>li>a {
  color: #43586c;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.has-submenu .sub-menu>li>a i {
  font-size: 6px;
  vertical-align: middle;
}

.has-submenu:hover>a:after {
  color: #0055a5;
}

.has-submenu .sub-menu>li>a:hover {
  border: 1px solid #0077b559;
  background: #0076b517;
  color: var(--deepblue);
}

.has-submenu .has-submenu-sub {
  position: relative;
}

.has-submenu .has-submenu-sub>a {
  position: relative;
}

.has-submenu .has-submenu-sub>a:after {
  content: "\f2f6";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font: normal normal normal 14px/1 "Material-Design-Iconic-Font";
  color: #fff;
  font-size: 20px;
  transition: all 0.5s ease-in-out;
}

.has-submenu .sub-menu>li:not(:last-child) {
  margin: 0 0 7px 0;
}

.has-submenu .has-submenu-sub:hover>a {
  background: #0055a5;
  color: #fff;
}

.has-submenu .has-submenu-sub:hover>a:after {
  color: #fff;
}

.has-submenu .has-submenu-sub .sub-menu {
  left: 100%;
  transform: translate(0, 70px);
  transition: all 0.5s ease-in-out;
  top: 0;
  width: 250px;
}

/* sub menu end*/

.top_info ul li {
  display: inline-block;
  margin-right: 30px;
}

.top_info ul li:last-child {
  margin-right: 0;
}

.top_info ul li span {
  margin-right: 10px;
}

.top_info ul li span i {
  font-size: 20px;
  display: block;
  color: var(--bluecolor);
}

.top_info ul li a {
  color: #003566;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
}

.top_info ul li a:hover {
  color: var(--deepred);
}

.user_part a {
  background: var(--bluecolor);
  color: #fff;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}

.user_part a:hover {
  background: var(--deepred);
}

.user_part a span {
  font-size: 25px;
  line-height: 0;
  margin-right: 10px;
}

.user_part a b {
  font-weight: 300;
}

.top_info {
  margin-right: 40px;
}

.top_hdr {
  background: #fff;
}

.header-bottom {
  padding: 16px 0;
  transition: all 0.5s ease-in-out;
  background: #e9f1f8bd;
  border-bottom: 5px solid #dceeff;
}

/* banner sec  */

.top_slr_box {
  position: relative;
}

.bnr_content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.iner_content {
  max-width: 572px;
}

.iner_content h2 {
  font-weight: 700;
  font-size: 50px;
  color: var(--deepblue);
  margin-bottom: 25px;
}

.iner_content h2 span {
  color: var(--deepred);
  display: initial;
}

.iner_content p {
  font-weight: 500;
  font-size: 18px;
  color: var(--deepblue);
  margin-bottom: 25px;
}

.trans_btn {
  font-weight: 500;
  font-size: 16px;
  color: var(--deepblue);
  display: inline-flex;
  align-items: center;
  border: 1px solid #003566;
  border-radius: 15px;
  padding: 10px 20px;
  background: #fff;
}

.trans_btn span {
  margin-left: 10px;
  color: var(--deepred);
  position: relative;
  right: 0;
  transition: 0.4s all ease-in-out;
  display: inherit;
}

.trans_btn span i {
  font-size: 20px;
}

.trans_btn:hover {
  background: var(--deepblue);
  color: #fff;
}

.trans_btn:hover span {
  right: -10px;
}

.btm_sldr {
  background: var(--deepblue);
  max-width: 970px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  margin-top: -80px;
}

.btm_sldr_box {
  text-align: center;
  border-right: 1px solid #fff;
}

.btm_sldr_box img {
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}

.btm_sldr_box img.white_icon {
  display: block;
}

.btm_sldr_box img.blu_icon {
  display: none;
}

.btm_sldr .slick-slide.slick-current .btm_sldr_box img.blu_icon {
  display: block;
}

.btm_sldr .slick-slide.slick-current .btm_sldr_box img.white_icon {
  display: none;
}

.btm_sldr_box p {
  color: #fff;
  font-size: 15px;
  line-height: 22.5px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}

.btm_sldr .slick-list {
  padding: 0 !important;
}

/* about section start */
.main_hd {
  margin-bottom: 40px;
}

.main_hd h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  color: var(--deepblue);
  margin: 0;
}

.main_hd h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: var(--deepblue);
  margin: 0;
}

.main_hd p {
  margin: 20px 0 0 0;
}

.btn_hldr {
  margin: 30px 0 0 0;
}

/* about section end */
/* why section start */
.main_hd h2 span {
  color: var(--deepred);
}

.why_cont {
  margin-bottom: 80px;
}

.why_cont .main_hd {
  margin-bottom: 20px;
}

.why_cont ul {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.why_cont ul li {
  align-items: center;
}

.why_cont ul li:not(:last-child) {
  margin-bottom: 15px;
}

.why_cont ul li i {
  color: #0085ff;
  margin: 0 15px 0 0;
  font-size: 22px;
}

.why_cont ul li span {
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  color: var(--deepblue);
}

.why_img .main_img {
  position: absolute;
  top: 47%;
  left: 50.5%;
  transform: translate(-50%, -50%);
}

.why_img .main_img img {
  max-width: 415px;
}

.why_img .why_img_cont {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translate(0, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  max-width: 250px;
  box-shadow: 0px 0px 20px rgba(0, 53, 102, 0.2);
}

.hd_1 {
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  color: var(--deepblue);
  font-family: "Poppins", sans-serif;
}

.why_img_cont p {
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  color: #51585f;
}

.why_img_cont img {
  max-width: 125px;
}

.why {
  background: url(../images/why_bg.png) no-repeat left bottom / 360px;
}

/* why section end */
/* faq section start */
.faq {
  background: #e9f1f8;
}

.trans_btn.red {
  background: var(--deepred);
  border: 1px solid var(--deepred);
  color: #fff !important;
}

.trans_btn.red span {
  color: #fff;
}

.trans_btn.red:hover {
  background: var(--deepblue);
  border: 1px solid var(--deepblue);
}

.faq_cont .accordion-button::after {
  background-image: url(../images/plus.svg) !important;
  background-size: 15px;
  transition: all 0.5s ease-in-out;
}

.accordion.faq_cont .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}

.faq_cont .accordion-button {
  background: #ffffff;
  border-radius: 5px !important;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--deepblue);
}

.accordion.faq_cont .accordion-item {
  border-radius: 5px !important;
  background: transparent;
  border-radius: 5px;
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion.faq_cont .accordion-button:not(.collapsed)::after {
  transform: none;
  background: url(../images/minus.svg) no-repeat center center !important;
}

.accordion.faq_cont .accordion-body {
  margin-top: 15px;
  border-radius: 5px !important;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 53, 102, 0.15);
  border-radius: 5px;
  border-left: 4px solid #bdddf9;
}

.accordion.faq_cont .accordion-body a {
  color: #43586c;
}

.accordion.faq_cont .accordion-button {
  border-radius: 5px !important;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 53, 102, 0.15);
  border-radius: 5px;
  border-left: 4px solid #bdddf9;
}

.faq_txt {
  margin-right: 40px;
}

.faq_txt .main_hd {
  margin-bottom: 16px;
}

.faq_txt p {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
}

/* faq section end */
/* product detail start */
.product_guide {
  position: relative;
  background: url(../images/product_guide_bg.png) no-repeat right bottom;
  background-size: 500px;
}

.product_dtl {
  margin-right: 30px;
}

.product_dtl li span:first-child {
  height: 60px;
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #20afff26;
  margin: 0 30px 0 0;
}

.product_dtl li span img {
  max-width: 30px;
}

.product_dtl li span:last-child {
  width: calc(100% - 90px);
}

.product_dtl li {
  padding: 15px 0 15px 15px;
  transition: all 0.5s ease-in-out;
  align-items: center;
}

.product_dtl li p {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #43586c;
  margin: 0;
}

.slick-vertical .slick-slide {
  border: none;
}

.product_dtl .slick-slide.slick-current.slick-active li,
.product_dtl li:hover {
  background: #e9f5ff;
}

.product_dtl li {
  border-bottom: 1px solid #d2dbe4;
}

/* .product_dtl >div li:last-child{
    border: none;
} */
.hd_2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  color: var(--deepblue);
}

.product_guide_img {
  position: relative;
  padding: 60px 30px 30px 30px;
  background: #e9eff4b2;
  border-radius: 20px;
  border: 1px solid #d2dbe4;
}

.product_guide_img::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background: #d5e1eb;
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.product_guide_img::before {
  position: absolute;
  content: "";
  left: 30px;
  top: 20px;
  height: 10px;
  width: 50px;
  background: url(../images/color_dots.png) no-repeat center center;
}

.product_guide_img figure {
  position: relative;
}

.product_guide_img figure::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #00123f40;
}

.product_dtl .slick-list {
  height: auto !important;
}

/* product detail end */
/* testimonial section start */
.testimonial {
  position: relative;
  background: url(../images/testimonial_bg.jpg) no-repeat center center / cover;
  padding-bottom: 160px;
}

.testi_hldr {
  z-index: 2;
  position: relative;
}

.testi_txt {
  padding: 0 50px;
  position: relative;
}

.testi_txt span {
  position: absolute;
  top: 0;
  left: 0;
}

.testi_img {
  padding: 7px;
  border-radius: 4px;
  background: #ffffff33;
}

.testi_persn {
  margin-top: 25px;
  padding-left: 15px;
  border-left: 1px solid #006dd2;
}

.testi_persn h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 10px 0;
}

/* progress bar start */
.progress {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff33;
  -ms-background-color: #ffffff33;
  -moz-background-color: #ffffff33;
  -o-background-color: #ffffff33;
  -webkit-background-color: #ffffff33;
  background-image: linear-gradient(to right, #ffffff, #ffffff);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out;
  margin: 40px 0 0 0;
  border: 0;
}

::-webkit-progress-bar {
  background-color: #ffffff33;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.slick-prev,
.slick-next {
  top: 116%;
}

/* progress bar end */
/* testimonial section end */
/* how to section start */
.howto_video {
  display: block;
  position: relative;
}

.howto_video i {
  font-size: 80px;
  color: var(--deepred);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80px;
  width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00000099;
}

.howto_txt li span:first-child {
  position: relative;
  height: 26px;
  width: 26px;
  background: #0084ff;
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  margin-right: 15px;
}

.howto_txt li span:last-child {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--deepblue);
  width: calc(100% - 41px);
}

.howto_txt li {
  position: relative;
}

.howto_txt li:not(:last-child) {
  margin-bottom: 22px;
}

.howto_txt li:not(:last-child):after {
  position: absolute;
  content: "";
  top: 23%;
  left: 12px;
  width: 1px;
  height: 110%;
  background: #0084ff;
}

.howto_inner_hldr {
  max-width: 970px;
  padding: 60px 30px;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 53, 102, 0.2);
  border-radius: 20px;
  margin: -100px auto 0 auto;
  position: relative;
  z-index: 1;
}

.howto_video img.w-100 {
  height: 295px;
  object-fit: cover;
}

.how_to_hldr {
  position: relative;
}

.how_to_hldr::after {
  position: absolute;
  content: "";
  left: -85px;
  top: 100px;
  width: 415px;
  height: 290px;
  background: url(../images/howto_bg.png) no-repeat center center / cover;
}

.how_to_hldr::before {
  position: absolute;
  content: "";
  right: -55px;
  top: 100px;
  width: 415px;
  height: 290px;
  background: url(../images/howto_bg.png) no-repeat center center / cover;
}

.how_to_slider {
  margin: 30px 0 0 0;
}

.how_to_slider .slick-dots li button {
  background: #fff;
  padding: 0;
  height: 4px;
  border-radius: 10px;
  border: 1px solid var(--deepblue);
  transition: all 0.5s ease-in-out;
}

.how_to_slider .slick-dots li.slick-active button,
.how_to_slider .slick-dots li:hover button {
  background: var(--deepblue);
}

/* how to section end */
/* query section start */
.query {
  position: relative;
  background: url(../images/query_bg.png) no-repeat bottom right / contain;
}

.hd_3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: var(--deepblue);
  margin-bottom: 20px;
}

.query_form {
  padding: 50px 30px;
  border: 1px solid #d2dbe4;
  background: #f5fbff;
  border-radius: 10px 10px 0 0;
}

.query_form input,
.query_form textarea,
.query_form select {
  background: #dce9f3;
  border-radius: 5px;
  border: 0;
  padding: 15px;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}

.query_form select {
  appearance: revert;
  -webkit-appearance: revert;
  -moz-appearance: revert;
  padding: 17px 15px;
}

.query_form input:focus,
.query_form textarea:focus,
.query_form select:focus {
  border: none;
  outline: none;
  box-shadow: none;
  background: #e6eff5;
}

.query_form .row:not(:last-child) {
  margin-bottom: 15px;
}

.query_form input[type="submit"] {
  background: var(--deepred);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 15px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.query_form input[type="submit"]:hover {
  background: var(--deepblue);
}

.assistance {
  padding: 50px 0 50px 50px;
}

.assistance .main_hd {
  margin-bottom: 25px;
}

.assistance a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--deepblue);
  margin-bottom: 100px;
}

.assistance a:hover {
  color: var(--deepred);
}

.social_media li:not(:last-child) {
  margin: 0 10px 0 0;
}

.social_media li a {
  margin: 0;
}

.social_media li a:hover {
  transform: rotateY(360deg);
  filter: grayscale(1);
}

/* query section end */
/* footer start */
.site-footer {
  margin-top: auto;
}

.footer-top {
  padding: 80px 0;
  background: #1d2138;
}

.footer-box h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #e9f1f8;
  margin: 0 0 20px 0;
}

.footer-box h4 span {
  color: var(--deepred);
}

.footer-box p,
.Address-box span {
  color: #e9f1f8;
}

.Address-box i {
  color: var(--deepred);
  font-size: 20px;
  margin-right: 10px;
}

.Address-box i.zmdi.zmdi-pin {
  font-size: 29px;
}

.Address-box a span {
  transition: all 0.5s ease-in-out;
}

.Address-box a:hover span {
  color: var(--deepred);
}

.footer-box ul li a {
  color: #e9f1f8;
}

.footer-box ul li a i {
  color: var(--deepred);
  margin-right: 5px;
}

.footer-box ul li:not(:last-child) {
  margin-bottom: 5px;
}

.footer-box ul li a:hover,
.footer-box ul li a.rd_mr {
  color: var(--deepred);
}

.footer-box ul li a.rd_mr:hover {
  color: #e9f1f8;
}

.copyright_box {
  background: #2e324d;
  font-size: 14px;
  padding: 10px;
}

.copyright_box p {
  color: #abaec7;
  font-weight: 400;
}

.copyright_box p a {
  color: #0084ff;
}

.copyright_box p a:hover {
  color: var(--deepred);
}

.footer-box ul li img {
  height: 90px;
}

/* footer end */
/* floating icon part start  */
.floating-icons-hldr {
  position: fixed;
  z-index: 999;
  top: 35vh;
  right: 0px;
}

.floating-icons-hldr li {
  position: relative;
  transition: 0.5s ease-in-out;
  margin-right: -82px;
}

.floating-icons-hldr a .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #000;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 20px;
}

.floating-icons-hldr a {
  display: block;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  /* height: 40px;
      width: 40px; */
}

.floating-icons-hldr li a:hover {
  margin-left: 0;
}

.floating-icons-hldr a .txt {
  font-size: 12px;
  line-height: 1;
  vertical-align: text-top;
  padding: 0 10px;
  display: inline-block;
}

.floating-icons-hldr li.blue a .icon {
  background: #3b5998;
}

.floating-icons-hldr li.skyblue a .icon {
  background: #03a9f4;
}

.floating-icons-hldr li.deepblue a .icon {
  background: #0077b5;
}

.floating-icons-hldr li.red a .icon {
  background: #ff0000;
}

.floating-icons-hldr li.grad a .icon {
  background: linear-gradient(231.61deg,
      #9f3ace -2.35%,
      #e72c1e 49.5%,
      #ffd253 100%);
}

.floating-icons-hldr li.blue a {
  background: #253b6b;
}

.floating-icons-hldr li.skyblue a {
  background: #0377ac;
}

.floating-icons-hldr li.deepblue a {
  background: #04547f;
}

.floating-icons-hldr li.red a {
  background: #c90303;
}

.floating-icons-hldr li.grad a {
  background: linear-gradient(231.61deg,
      #47165e -2.35%,
      #621711 49.5%,
      #896d1f 100%);
}

.floating-icons-hldr li:hover a {
  transform: translateX(-80px);
}

/* floating icon part end  */

/* inner pages start */
/* inner pages header start */
.site-header.inner-site-header {
  border-bottom: 5px solid #dceeff;
}

.top_hdr.inner-top-header {
  border: none;
}

.site-main.inner-main {
  padding-top: 145px;
}

.header-bottom.inner-header-bottom {
  background: #e9f1f8;
}

/* inner pages header end */
/* breadcrumb sec start */
.breadcrumb_sec {
  padding: 10px 0 0 0;
  font-weight: 400;
}

.breadcrumb_sec ol li a {
  font-size: 14px;
  line-height: 21px;
}

.breadcrumb_sec ol li.breadcrumb-item a {
  color: #43586c;
  font-weight: 400;
}

.breadcrumb_sec ol li.breadcrumb-item.active {
  font-weight: 600;
}

.breadcrumb_sec .breadcrumb-item+.breadcrumb-item::before {
  color: var(--deepred);
}

/* breadcrumb sec end */

/* about us page start */
.mv_cont {
  padding: 0 30px;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 53, 102, 0.2);
  border-radius: 20px;
  margin-left: -100px;
}

.mv_cont ul li span:first-child {
  margin: 0 20px 0 0;
  display: inline-block;
}

.mv_cont ul li span img {
  width: 40px;
}

.mv_cont ul li span:last-child {
  width: calc(100% - 60px);
}

.mv_cont ul li {
  padding: 30px 0;
}

.mv_cont ul li:not(:last-child) {
  border-bottom: 1px solid #d2dbe4;
}

.about_finport_hldr p {
  text-align: justify;
}

.team {
  position: relative;
  background: #e9f1f8;
  padding-bottom: 150px;
}

.team_member {
  position: relative;
}

.team_member figure img {
  width: 100%;
}

.member_dtl {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 53, 102, 0.2);
  border-radius: 10px;
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: -63px;
  transform: translate(-50%, 0);
}

.member_dtl .social_media li {
  margin: 0 5px;
}

.member_dtl .social_media li a img {
  max-width: 27px;
}

.member_dtl h6 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: var(--deepblue);
}

/* about us page end */
/* faq page start */
.faq.faq_page {
  background: #fff;
}

/* faq page end */
/* industry report page start */
.industry_report {
  padding-bottom: 120px;
}

.ind_second {
  position: absolute;
  width: 242px;
  bottom: -40px;
  right: -40px;
  border-radius: 4px;
  border: 5px solid #ffffff99;
}

.industry_report_cont a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--deepblue);
}

.industry_report_cont a:hover {
  color: var(--deepred);
}

.query_form.industry_report_form {
  padding: 0;
  border: none;
  margin-top: 30px;
}

.industry_report_cont {
  margin-left: 100px;
}

.testimonial.inner_testimonial {
  padding: 80px 0;
}

.industry_report_cont p {
  font-size: 20px;
  line-height: 30px;
  color: #43586c;
  margin-top: 30px;
}

.industry_report_cont p span.big_text {
  font-size: 40px;
  font-weight: 500;
}

/* industry report page end */
/* business loan page start */
.loan_details table {
  /* border-radius: 10px; */
  border-collapse: collapse;
}

.loan_details table tr td {
  border: 1px solid #a7bdd2;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #43586c;
  padding: 15px 10px;
}

.loan_details table tr td a {
  color: #43586c;
}

.loan_details table tr td a:hover {
  color: var(--bluecolor);
}

.loan_details table tr th {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  background: #43586c;
  border: 1px solid #a7bdd2;
  border-right: 1px solid #d2dbe4;
  padding: 15px 10px;
}

.loan_details table tr th:last-child {
  border-right: 1px solid #a7bdd2;
}

/* business loan page end */
/* pagination start */
.pagination_hldr {
  margin-top: 40px;
}

.pagination_hldr .page-link {
  border: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  text-align: right;
  color: #43586c;
}

.pagination_hldr .page-link:is(:hover, :focus) {
  background: #fff;
  box-shadow: none;
}

.pagination_hldr .page-item.active .page-link {
  background: #43586c;
  border-radius: 2px;
  color: #fff;
}

.pagination_hldr .page-item .page-link a {
  color: #0084ff !important;
}

/* pagination end */
/* new menu start */
.EZDrawer__container {
  /* width: 300px; */
  padding: 15px;
  background: #f5fbff;
}

.mobile_menu ul li:not(:last-child) {
  border-bottom: 1px solid #cacaca;
}

.mobile_menu ul li a {
  width: 100%;
  padding: 10px 10px 10px 0;
  font-size: 14px;
  line-height: 21px;
  color: #43586c;
  display: inline-block;
}

.mobile_menu ul li a i {
  float: right;
}

.mobile_menu ul li.sub-menu ul li a {
  background: #acacac;
}

.mobile_menu ul li.submenu ul {
  padding-left: 15px;
}

/* new menu end */
/* promoter and management form start */
.form_section,
.breadcrumb_sec.form_sec {
  background: #ebecef;
}

.form_section_hldr form {
  padding: 40px;
  border-radius: 20px;
  /* box-shadow: 0 2px 10px -2px rgba(0 0 0 / 20% ); */
  box-shadow: 12px 12px 24px #e4e4e4, -12px -12px 24px #f1f1f1;
  background: #fff;
  /* max-width: 900px; */
  margin: 0 auto;
}

.form_section_hldr form h6 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #38404c;
  margin-bottom: 15px;
}

.form_section_hldr form .row>div {
  position: relative;
}

.form_section_hldr form .row:not(:last-child) {
  margin-bottom: 15px;
}

.form_section_hldr form .error_msg {
  position: absolute;
  bottom: -12px;
  font-size: 13px;
  right: 12px;
}

.form_section_hldr.query_form {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 920px;
}

.form-control.pan {
  text-transform: uppercase;
}

.form-control.preview:hover {
  border: 1.5px solid #8a8a8a !important;
}

.form-control.saveas:hover {
  border: 1.5px solid var(--greencolor) !important;
}

.form-control.draft:hover {
  border: 1.5px solid rgb(185, 185, 87) !important;
}

.form_section_hldr.query_form button {
  outline: none;
  background: #fff;
  padding: 8px 10px;
  color: #464d5a;
  border: 1.5px solid #cacdce;
  border-radius: 15px;
}

.form_section_hldr.query_form button:focus {
  box-shadow: none;
}

.form_section_hldr.query_form a.add {
  color: var(--greencolor);
}

.form_section_hldr.query_form a.delete {
  color: var(--deepred);
}

.form_section_hldr.query_form input,
.form_section_hldr.query_form select {
  background: #fff;
  color: #38404c;
  border: 1.5px solid #adadad;
  padding: 8px 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  height: 38px;
}



.form_section_hldr.query_form select {
  padding: 10px 15px;
}

.form_section_hldr.query_form .only_num_input select {
  text-align: right;
}

.form_section_hldr.query_form input::placeholder {
  color: #d3d3d3;
  font-size: 13px;
}

.form_section_hldr.query_form input[type="submit"] {
  color: #fff;
}

.form_section_hldr.query_form input:focus,
.form_section_hldr.query_form select:focus {
  border: 1px solid #38404c;
}

.form_section_hldr.query_form input[type="submit"]:focus {
  border: none;
}

/* promoter and management form end */
/* form ii start */

.mb_hding_for_frm {
  display: none;
}

/* form ii end */
/* pricing page start */
.wcr_dtl {
  padding: 0 0 20px 0;
  /* box-shadow: 0 1px 16px rgba(0,0,0,.12);
    border-radius: 20px; */
  border: 1px solid transparent;
  text-align: center;
  background: rgb(233 250 255);
  transition: all 0.5s ease-in-out;
}

.wcr_dtl_sticky {
  padding: 50px 15px 40px 15px;
  position: sticky;
  top: 73px;
  background: rgb(233 250 255);
  border-bottom: 1px solid #c4e0f9;
}

.wcr_dtl:hover {
  border: 1px solid rgb(14, 190, 255);
}

.wcr_dtl h6 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--deepblue);
}

.wcr_dtl p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.wcr_dtl ul {
  /* border-top: 1px solid #c4e0f9; */
  padding: 35px 15px 0 15px;
  /* margin: 40px 0 0 0; */
}

.wcr_dtl ul li span:first-child {
  width: 20px;
  font-size: 14px;
}

.wcr_dtl ul li span:last-child {
  width: calc(100% - 50px);
  text-align: left;
}

.wcr_dtl ul li:not(:last-child) {
  margin-bottom: 15px;
}

.guidelines {
  margin-top: 40px;
  font-size: 13px;
}

.guidelines p {
  margin: 0;
}

.guidelines ul li span:first-child {
  width: 40px;
}

.guidelines ul li span:last-child {
  width: calc(100% - 40px);
}

.wcr_dtl.advanced {
  border: 1px solid #0ebeff;
  position: relative;
}

.best_value {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 5px 10px;
  text-align: center;
  background: linear-gradient(-90deg,
      rgb(80 142 255) 2.83%,
      rgb(0, 255, 145) 97.64%);
}

.wcr_dtl .trans_btn {
  width: auto;
  font-size: 13px;
  line-height: 1.1;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
}

.wcr_dtl .trans_btn.active {
  background-image: linear-gradient(to right,
      #00d2ff 0%,
      #006bff 51%,
      #40b1c9 100%);
  color: #fff;
  background-size: 200% auto;
  box-shadow: 0 0 20px #eee;
  border: 1px solid transparent;
}

.wcr_dtl .trans_btn.active:hover {
  background-position: right center;
}

.wcr_dtl .trans_btn span {
  display: none;
}

.wcr_dtl .trans_btn:hover span {
  right: -5px;
}

/* pricing page end */
/* dashboard style start */
.site-main.dash_main {
  padding-top: 58px;
}

.dash_head {
  padding: 10px 0;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 2px 10px -2px rgb(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.user_profile li {
  position: relative;
}

.notifn_no {
  width: 15px;
  height: 15px;
  background: #f00;
  color: #fff;
  border-radius: 50%;
  line-height: 15px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  left: 10px;
  top: 0;
  cursor: pointer;
}

.user_profile li:not(:last-child) {
  margin-right: 25px;
}

.dashboard_hldr {
  display: flex;
}


/* width */
.left_panel::-webkit-scrollbar {
  width: 0px;
}

.right_panel {
  width: 100%;
  padding: 0 0 80px 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form_progression {
  width: 22%;
  padding: 20px;
  position: sticky;
  top: 70px;
  margin-top: 110px;
  z-index: 1;
}

.form_progression.ffr_forms {
  margin-top: 156px;
}

.form_progression ul li a span:first-child {
  width: 30px;
}

.form_progression ul li a span:last-child {
  width: calc(100% - 30px);
  font-size: 14px;
  line-height: 1.3;
  color: rgb(56, 64, 76);
}

.form_progression ul li span i {
  font-size: 12px;
  vertical-align: top;
  line-height: 18px;
  color: #777777;
}

.form_progression ul li.filled span i {
  color: #009c2f;
}

.form_progression ul li.active span i {
  color: #cace00;
}

.form_progression ul li:not(:last-child) {
  margin-bottom: 50px;
}

.form_progression ul li {
  position: relative;
}

.form_progression ul li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 240%;
  background: #b3b3b3;
  top: 12px;
  left: 4px;
  z-index: -1;
}

.form_progression ul li.filled:after {
  background: #009c2f;
}

.form_progression ul li.active:after {
  background: #cace00;
}

.form_progression ul li.not_filled:after {
  background: #b3b3b3;
}

.form_section_hldr {
  width: 75%;
}


.left_panel ul {
  padding: 15px 15px 30px 15px;
}

.left_panel ul li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease-in-out;
}

.left_panel ul li a {
  display: block;
}

.left_panel ul li a span {
  display: block;
  text-align: center;
  font-size: 11px;
  line-height: 1.1;
  color: #effdff;
  transition: all 0.5s ease-in-out;
}

.left_panel ul li a span img {
  width: 20px;
  margin-bottom: 10px;
}

.left_panel>ul>li:hover>a span,
.left_panel>ul>li.active>a span {
  color: #14f705;
}


.left_panel ul li:not(:last-child):hover,
.left_panel ul li.active:not(:last-child) {
  border-color: #14f705;
}

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

.headerHasdropDown img {
  width: 40px;
}

.bell {
  width: 24px;
}

.user_profile h5 {
  font-size: 16px;
  color: var(--deepblue);
}

.left_panel .settings_menu {
  position: absolute;
  left: 50%;
  bottom: 5vw;
  transform: translate(-50%, 0);
}

.headerHasdropDown i {
  font-size: 20px;
  vertical-align: middle;
  transition: all 0.5s ease-in-out;
}

.headerHasdropDown.actv i {
  transform: rotateX(180deg);
  transform-origin: center;
}

.userdropDown {
  position: relative;
}

.userdropDown .dropdown_profile {
  position: absolute;
  top: 50px;
  right: 0;
  width: 200px;
  display: none;
  padding: 0px 20px;
  box-shadow: 0px 5px 10px 2px rgb(0, 0, 0, 0.2);
  z-index: 2;
  background: #fff;
}

.userdropDown .dropdown_profile li {
  margin: 0;
  padding: 15px 0;
}

.userdropDown .dropdown_profile li:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}

.userdropDown .dropdown_profile li a {
  display: flex;
}

.userdropDown .dropdown_profile li a span img {
  width: 20px;
  margin-right: 15px;
}

.userdropDown .dropdown_profile li a span {
  color: #38404c;
}

.notification {
  position: relative;
}

.notidropDown {
  position: absolute;
  top: 44px;
  right: 0;
  width: 300px;
  display: none;
  padding: 0px 20px;
  box-shadow: 0px 5px 10px 2px rgb(0, 0, 0, 0.2);
  z-index: 2;
  background: #fff;
}

.notidropDown li {
  padding: 10px 0;
  margin: 0 !important;
}

.notidropDown li:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}

.notidropDown li a {
  font-size: 14px;
  line-height: 1.5;
  color: #38404c;
}

/* dashboard style end */
/* scroll top button */
.scroll_to_top {
  position: fixed;
  bottom: 50px;
  right: 10px;
  display: inline-block;
  z-index: 99;
}

.scroll_to_top img {
  width: 40px;
}

/* log in page start */
.site-main.log_in {
  padding: 0;
  height: 100vh;
}

.log_in {
  height: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
}

.log_in::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: #c8e2fc;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0 0 0 999px;
}

.log_in::after {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: #c8e2fc;
  left: 50px;
  bottom: 30px;
  z-index: -1;
  border-radius: 50%;
}

.log_in_hldr {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 12px 12px 24px #ded9f7, -12px -12px 24px #ece7ff;
}

.inner_lg_in {
  padding: 30px 50px;
  text-align: center;
  background: #fff;
}

.log_in_logo {
  display: block;
  margin: 0 0 15px 0;
}

.log_in_logo img {
  width: 100px;
}

.crt_nw_acc {
  color: #7e7e7e;
}

.log_in_frm {
  margin: 50px 0 0 0;
}

.log_in_frm h6 {
  font-size: 14px;
  line-height: 1.5;
  color: #3d3b47;
  margin-bottom: 8px;
}

.log_in_frm input {
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.2);
}

.log_in_frm input::placeholder {
  color: #cfcfcf;
}

.log_in_frm input:focus {
  box-shadow: none;
  border: 1px solid #696969;
}

.log_in_frm .eye {
  position: relative;
}

.log_in_frm .eye i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.log_in_frm .eye a {
  position: absolute;
  color: var(--deepblue);
  font-size: 12px;
  top: -30px;
  right: 0;
}

.log_in_frm input[type="submit"] {
  margin-top: 15px;
  border: none;
  background: #2666fa;
  color: #fff;
}

.log_in_frm input[type="submit"]:hover {
  background: #18409e;
}

.inner_lg_in p {
  width: 100%;
  text-align: center;
  font-size: 18px;
  position: relative;
  color: #616161;
  margin: 40px 0;
}

.inner_lg_in p span {
  background: #fff;
  display: inline-block;
  z-index: 1;
  position: relative;
  padding: 0 5px;
}

.inner_lg_in p:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #bdbdbd;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.google_sign_in {
  display: inline-block;
  background: #fff;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  width: 100%;
  box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.3);
}

.google_sign_in span {
  color: #616161;
}

.google_sign_in:hover {
  color: #fff;
}

.google_sign_in img {
  padding: 10px;
  background: #fff;
  vertical-align: middle;
}

.google_sign_in span {
  vertical-align: middle;
}

.log_in_img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2666fa url(../images/log_in_bg.jpg) no-repeat center center / cover;
  flex-direction: column;
}

.log_in_img h3 {
  color: #fff;
  margin-top: 50px;
  font-size: 28px;
}

.log_in_img figure img {
  max-width: 300px;
}

.inner_lg_in p.sign_up {
  font-size: 12px;
  margin: 30px 0 0 0;
}

.inner_lg_in p.sign_up::before {
  display: none;
}

.inner_lg_in h5 {
  font-size: 18px;
  color: #302d3a;
}

.site-main.sign_up {
  padding-top: 0;
}

/* log in page end */
.site-header.sticky .header-bottom-hldr .main-menu nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.sticky .header-bottom-hldr .main-menu nav>ul li:not(:last-child) {
  margin: 0 25px 0 0;
}

span.error {
  font-size: 12px;
  color: #f00;
  line-height: 1.1;
  margin-bottom: 15px;
}

input.error,
input.error:focus {
  border-left: 3px solid #f00;
}

.prefix {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 0 10px;
  border-right: 1px solid #ddd;
}

.log_in_frm input[type="tel"] {
  padding-left: 55px;
}

.main_hd.form_hd {
  padding: 20px 0;
  background: #fff;
  position: sticky;
  top: 60px;
  z-index: 1;
  border-bottom: 1px solid #9c9c9c;
}

/* changes in form  */
select.state-code {
  position: absolute;
  top: 42px;
  left: 19px;
  padding: 4px 0 !important;
  border: none !important;
  border-right: 1px solid #ddd !important;
  border-radius: 0 !important;
}

.form_section_hldr.query_form input.phone {
  padding: 8px 15px 8px 145px;
}

.nav-tabs,
.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link.active {
  border: none;
}

.form_progression ul li.nav-item:after {
  display: none;
}

.nav-tabs .nav-link.active span,
.nav-tabs .nav-link:hover span {
  color: green;
}

/* required field */
.required_field {
  font-size: 10px;
  vertical-align: top;
}

#items {
  position: relative;
}

/* changes in form */
.std_code {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  border-radius: 10px 0 0 10px !important;
}

.id_cin {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  border-radius: 10px 0 0 10px !important;
}

.form_section_hldr.query_form input.id_cin_main {
  padding: 8px 15px 8px 145px;
}

.form_table {
  width: 100%;
  display: block;
  overflow: auto;
}

.form_table tr td {
  min-width: 150px;
  padding: 10px;
  vertical-align: middle;
}

.right_panel.project_report {
  justify-content: center;
}

.bold_blue {
  color: var(--deepblue) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}

/* 17.5.23 */


.close_btn_box .close_working_capital_modal_btn {

  width: 90px;
  background: #175795;
  color: #fff;
  padding: 6px 15px;
  border-radius: 19px;
  margin-top: 0;
  cursor: pointer;
  text-align: center;

}

.close_btn_box {
  width: 100%;
  display: flex;
  justify-content: end;
}


.question_box .btn_box {
  margin-top: 25px;
}

.question_box .btn_box a {
  display: inline-block;
  min-width: 90px;
  margin: 0px 5px;
  background: #175795;
  color: #fff;
  padding: 6px 15px;
  border-radius: 19px;
}

.question_box .btn_box a:hover {
  background: var(--deepred);
}

.max100 {
  max-width: 100%;
}

.questionbx form {
  min-height: 400px;
  display: flex;

  margin-top: 50px;
  flex-direction: column;
}

.text-left {
  text-align: left;
}

.btn_box a {
  text-align: center;
}

.btn_box a img {
  width: 12px;
  margin-right: 2px;
}

/* periodic monitoring report start */

.wcr_dtl.pmr_dtl h6 {
  font-size: 18px;
  line-height: 30px;
}

.wcr_dtl.pmr_dtl p {
  font-size: 16px;
}

.wcr_dtl.pmr_dtl .btn_hldr {
  max-width: 70%;
  margin: auto;
}

/* periodic monitoring report end */
.pd_strt {
  padding-top: 30px;
}

.rupee_symbl {
  font-family: "Roboto", sans-serif;
}

/* listing page start */
.search_n_btn input[type="submit"] {
  background: var(--bluecolor);
  border: 1px solid var(--bluecolor);
  line-height: 20px;
  text-align: center;
  font-size: 15px;
  padding: 5px;
}

.search_n_btn input[type="submit"]:is(:hover, :focus) {
  background: var(--deepblue);
  border: 1px solid var(--deepblue);
}

.search_n_btn input[type="submit"].clear {
  background: #fff;
  color: var(--bluecolor);
  border-color: var(--bluecolor);
}

.search_n_btn input[type="submit"].clear:is(:hover, :focus) {
  background: var(--bluecolor);
  color: #fff;
}

.list_table tr th {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  background: #43586c;
  border-right: 1px solid #d2dbe4;
  padding: 15px 10px;
  vertical-align: middle;
}

.list_table tr th:last-child {
  border-right: none;
}

.list_table tr td {
  border: 1px solid #a7bdd2;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #43586c;
  padding: 15px 10px;
  vertical-align: middle;
}

.list_table tr td:nth-child(4) {
  width: 25%;
}

.list_table tr td:last-child {
  width: 15%;
}

.list_table tr td a img {
  width: 20px;
}

.list_table tr td:nth-child(2),
.list_table tr td:nth-child(3) {
  width: 17%;
}

.list_table tr td:first-child {
  width: 50px;
}

.create_frm input[type="submit"] {
  background: #046c4d;
  border: 1px solid #046c4d;
}

.create_frm a img {
  max-width: 40px;
}

.form_section_hldr.query_form.list_hldr form {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

/* pagination  */
.pagination_hldr {
  margin-bottom: 40px;
}

.pagination_hldr .page-link {
  border-radius: 5px;
  padding: 5px 15px;
  font-family: var(--bodyfont);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  border: 1px solid var(--bluecolor);
  color: var(--bluecolor);
  border-color: var(--bluecolor);
  background: #fff;
  margin: 0 8px;
  transition: all 0.4s ease-in-out;
}

.pagination_hldr ul li.page-item.active .page-link,
.pagination_hldr ul li.page-item .page-link:hover {
  color: #fff;
  background: var(--bluecolor);
  border: 1px solid var(--bluecolor);
  border-radius: 5px;
}

.pagination_hldr ul li.page-item .page-link:focus {
  box-shadow: none;
}

/* depreciation and term loan changes */
.dep_checklist input[type="checkbox"] {
  margin: 0 0 0 10px;
  height: auto;
}

.dep_checklist label {
  cursor: pointer;
}

/* for  later calcultaion style */
input.form-control.calc_later {
  border-color: rgb(112, 73, 37);
}

input.form-control.calc_later::placeholder {
  color: rgb(112, 73, 37);
}

/* periodic monitoring report list 7/31/2023 */
.form_section_hldr.query_form button.submit {
  color: #fff;
  background: var(--deepblue);
  border: 1px solid var(--deepblue);
}

.form_section_hldr.query_form button {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.form_section_hldr.query_form button.crt_cma_frm {
  background: #046c4d;
  border: 1px solid #046c4d;
  width: 100%;
  padding: 10px;
  color: #fff;
  text-align: center;
  border-radius: 15px;
}

.form_section_hldr.query_form input,
.form_section_hldr.query_form select {
  min-height: 45px;
}

.form_progression ul.no_sidebar li:not(:last-child)::after {
  display: none;
}

.form_progression ul.no_sidebar li:not(:last-child) {
  margin-bottom: 20px;
}

/* admin role page start */
.admin_role {
  width: 100%;
  padding-top: 30px;
}

.adm_nm {
  padding: 15px;
  background: #bad5ee;
}

.adm_nm h6 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--deepblue);
}

.adm_nm p {
  margin: 0;
  color: #000;
}

.adm_table {
  margin-top: 30px;
  background: #bad5ee;
}

.adm_table table {
  margin: 0;
}

.adm_table table tr th {
  background: #003566;
  color: #fff;
  padding: 10px 15px;
}

.adm_table table tr td {
  padding: 10px 15px;
}

.adm_table table tr td input,
.adm_table table tr th input {
  margin-right: 10px;
  accent-color: var(--greencolor);
}

.adm_table table tr th:first-child,
.adm_table table tr td:first-child {
  width: 20%;
}

/* admin role page end */
/* role list page start */
.sm_hd {
  font-size: 22px;
  line-height: 1.5;
  color: var(--deepblue);
}

.breadcrumb .breadcrumb-item a {
  color: var(--deepblue);
}

.adm_table table tr td a {
  color: #000;
}

.adm_table.role_list_table table tr th:first-child,
.role_list_table.adm_table table tr td:first-child {
  width: 10%;
}

.role_list_table.adm_table table tr td span {
  padding: 5px 10px;
  background: rgb(38, 131, 38);
  color: #fff;
  border-radius: 4px;
  line-height: 1;
}

.role_list_table.adm_table table tr td button {
  border: none;
  outline: none;
  border-radius: 4px;
  height: 38px;
  width: 40px;
  background: rgb(128, 99, 22);
  color: #fff;
}

.role_list_table.adm_table table tr td button.dlt {
  background: rgb(216, 45, 45);
}

.role_list_table.adm_table table tr td:nth-child(3) {
  width: 70%;
}

.add_new {
  background: var(--bluecolor) !important;
  border: 1px solid var(--bluecolor) !important;
  line-height: 20px;
  text-align: center;
  font-size: 15px;
  padding: 12px 5px !important;
  color: #fff !important;
  min-width: 100px;
  border-radius: 4px;
}

.adm_nm select {
  appearance: revert;
  -webkit-appearance: revert;
}

.adm_nm input:is(:hover, :focus),
.adm_nm select:is(:hover, :focus) {
  box-shadow: none;
}

/* role list page end */
/* admin user list start */
.adm_table.adm_user_list_table table tr td button {
  border: 0;
  outline: 0;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #4c5b86;
  color: #fff;
}

/* admin user list end */

/* submenu addition 14-11-2023 */
.left_panel ul li a {
  position: relative;
}

.left_panel ul li a i {
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translate(0, -50%);
  font-size: 16px;
}

.sub-menu {
  transition: all 0.2s ease-in-out;
  transform-origin: top center;
  height: auto;
  display: none;
}

.sub-menu ul li a {
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
  transform-origin: top center;
}

.sub-menu ul li:last-child {
  margin-bottom: 0 !important;
}

.sub-menu ul li a:hover,
.sub-menu ul li.active a {
  color: #14f705;
}




.sub-menu ul {
  padding: 8px !important;
  margin-top: 10px;
  border-top: 1px solid #fff;
  /* border-radius: 5px; */
  position: relative;
}

.sub-menu.show {
  display: block;
}

.left_panel ul li:last-child {
  margin-bottom: 50px;
}

/* 12/01-2024 */
.main_error_list_hd {
  padding: 15px;
  background: rgba(255, 0, 0, 0.125);
}

.main_error_list_hd li:not(:last-child) {
  margin-bottom: 15px;
}

.main_error_list_hd li {
  color: #f00;
}

.revenue-header {
  flex: 1 0 0%
}

/* responsive */


@media (min-width: 1500px) {
  .form_progression ul li:not(:last-child):after {
    height: 261%;
  }
}

@media (min-width: 1400px) {

  .slick-prev,
  .slick-next {
    top: 115%;
  }
}

@media (max-width: 1400px) {
  .wcr_dtl .trans_btn {
    font-size: 12px;
    padding: 10px 8px;
  }

  .navlogo img {
    width: 110px;
  }

  .user_part a {
    padding: 10px;
  }

  .site-header.sticky .header-bottom-hldr .main-menu nav>ul li:not(:last-child) {
    margin: 0 20px 0 0;
  }

  .main-menu nav li a {
    font-size: 14px;
  }

  .site-header.sticky {
    transform: translateY(-48px);
  }

  .site-main.inner-main {
    padding-top: 132px;
  }
}

@media(max-width: 1439px) {
  .form_progression ul li:not(:last-child):after {
    height: 70px;
    top: 11px;
    left: 81%;
    z-index: -1;
    transform: rotate(-90deg);
    transform-origin: left top;
  }

  .form_progression ul li:nth-child(2):after {
    left: 91% !important;
  }

  .form_progression {
    width: 70%;
    margin: auto;
    top: 60px;
    background: #fff;
  }

  .form_progression ul {
    display: flex;
    justify-content: space-between;
  }

  .form_progression.ffr_forms ul.no_sidebar {
    width: 1199px;
  }

  .form_progression ul li span i {
    display: none;
  }

  .form_progression ul li {
    width: 400px;
    padding: 4;
    margin: 0 !important;
  }

  .form_progression ul li a {
    flex-direction: column;
    align-items: center;
  }

  .form_progression ul li a span:first-child,
  .form_progression ul li a span:last-child {
    text-align: center;
    line-height: 1;
  }


}

@media (max-width: 1199px) {
  .main-menu nav>ul li:not(:last-child) {
    margin: 0 25px 0 0;
  }

  .iner_content h2 {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 20px;
  }

  .btm_sldr_box img {
    max-width: 40px;
  }

  .btm_sldr {
    max-width: 870px;
  }

  .btm_sldr_box figure {
    margin-bottom: 10px;
  }

  .top_slr_box img {
    object-fit: cover;
    height: 500px;
  }

  .why_img .main_img img {
    max-width: 348px;
  }

  .why_img .why_img_cont {
    padding: 15px;
  }

  .slick-prev,
  .slick-next {
    top: 114%;
  }

  .howto_inner_hldr {
    padding: 30px;
  }

  .how_to_hldr::before,
  .how_to_hldr::after {
    display: none;
  }

  /* about us page start */
  .member_dtl {
    padding: 15px;
    bottom: -85px;
  }

  .member_dtl h6 {
    min-height: 40px;
  }

  /* about us page end */
  /* industry report page start */
  .industry_report_cont {
    margin-left: 50px;
  }

  .industry_report {
    padding-bottom: 85px;
  }

  /* industry report page end */
  /* business_loan page start */
  .loan_details table {
    width: 100%;
  }

  /* business loan page end */
  .navlogo img {
    width: 100px;
  }

  .user_part a {
    color: #fff;
    padding: 15px 6px;
    font-size: 12px;
  }

  .main-menu nav li a {
    font-size: 12px;
    padding: 10px 0;
  }

  .main-menu nav>ul li:not(:last-child) {
    margin: 0 12px 0 0 !important;
  }

  .site-header.sticky {
    transform: translateY(-62px);
  }

  .site-main.inner-main {
    padding-top: 140px;
  }

  .wcr_dtl_sticky {
    top: 69px;
  }



  .right_panel {
    width: 100%;
    padding: 40px 0 40px 100px;
  }

  .form_section_hldr {
    width: 100%;
  }

  .form_section_hldr.query_form {
    max-width: 100%;
  }

  .left_panel .settings_menu {
    bottom: 9vw;
  }

  .form_progression.ffr_forms {
    margin: 0;
    overflow: auto;
  }


  .main_hd.form_hd {
    position: relative;
    z-index: 0;
    top: 0;
  }

  .wcr_dtl.pmr_dtl .btn_hldr {
    max-width: 85%;
  }

  .list_table tr td:nth-child(4) {
    width: 38%;
  }

  .list_table tr td:last-child {
    width: 17%;
  }

  .list_table tr td:nth-child(2),
  .list_table tr td:nth-child(3) {
    width: 18%;
  }

  .role_list_table.adm_table table tr td:nth-child(3) {
    width: 60%;
  }

  .form_progression ul li:not(:last-child):after {
    top: 11px;
    left: 92%;
  }

  .form_progression {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  section {
    padding: 50px 0;
  }

  nav#menu {
    z-index: 999;
  }

  .main-menu>nav>ul {
    display: none;
  }

  .mobilemenuBtn {
    display: block;
  }

  .top_info ul li span:last-child {
    display: none;
  }

  .header-bottom {
    padding: 0 !important;
  }

  .site-header.sticky {
    transform: translateY(0);
  }

  .site-header.sticky .header-bottom {
    padding: 20px 0;
  }

  .main_hd h2 {
    font-size: 30px;
  }

  .main_hd {
    margin-bottom: 20px;
  }

  .top_slr_box img {
    height: 435px;
  }

  .trans_btn {
    padding: 10px 25px;
  }

  .main_hd p {
    margin: 10px 0 0 0;
  }

  .btn_hldr {
    margin: 25px 0 0 0;
  }

  .why_cont ul li span {
    font-size: 16px;
  }

  .why_cont ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .accordion.faq_cont,
  .product_guide_img {
    margin: 35px 0 0 0;
  }

  .accordion.faq_cont .accordion-item:not(:last-child) {
    margin-bottom: 15px;
  }

  .progress {
    margin: 0;
  }

  .slick-prev,
  .slick-next {
    top: 111%;
  }

  .testimonial {
    padding-bottom: 100px;
  }

  .howto_inner_hldr {
    margin: -50px auto 0 auto;
  }

  ul.howto_txt {
    margin: 25px 0 0 0;
  }

  .hd_3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .query_form {
    padding: 30px;
  }

  .assistance {
    padding: 30px 0 30px 30px;
  }

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

  .footer-box h4 {
    margin: 0 0 10px 0;
  }

  .footer-hldr.row>div:not(:last-child) {
    margin: 0 0 20px 0;
  }

  /* about us page start */
  .team_hldr .row>div:nth-last-child(-n + 2) {
    margin-top: 112px;
  }

  .mv_cont {
    margin: 35px 0 0 0;
  }

  .team {
    padding-bottom: 135px;
  }

  .site-main.inner-main {
    padding-top: 105px;
  }

  /* about us page end */
  /* industry report page start */
  .ind_second {
    width: 200px;
    bottom: -20px;
    right: -20px;
  }

  .industry_report_cont {
    margin-left: 20px;
  }

  .industry_report_cont p {
    font-size: 16px;
    line-height: 24px;
  }

  .industry_report_cont p span.big_text {
    font-size: 30px;
  }

  .testimonial.inner_testimonial {
    padding: 50px 0;
  }

  .industry_report {
    padding-bottom: 60px;
  }

  /* industry report page end */
  /* business loan start */
  .loan_details table tr td:first-child {
    width: 100px;
  }

  /* businss loan end */
  /* promoter and management form start */
  .form_section_hldr form {
    padding: 30px;
  }

  .form_section_hldr.query_form form .row>div:not(:last-child) {
    margin-bottom: 15px;
  }

  /* promoter and management form end */
  .business_loan_hldr .row>div:nth-child(-n + 2) {
    margin-bottom: 30px;
  }

  .wcr_dtl .trans_btn {
    width: 49%;
  }

  .site-main.log_in {
    height: auto;
  }

  .log_in_img {
    display: none;
  }

  .site-header.sticky .header-bottom-hldr .main-menu nav {
    display: none;
  }

  a.mobilemenuBtn {
    position: absolute !important;
    display: inline-block !important;
    right: -5px !important;
    bottom: 11px !important;
  }

  .wcr_dtl_sticky {
    top: 63px;
  }

  .form_progression {
    padding: 20px 0;
    width: 100%;
  }

  .form_progression ul li:not(:last-child):after {
    height: 190%;
  }

  .wcr_dtl.pmr_dtl h6 {
    min-height: 60px;
  }

  .industry_report_hldr.pmrp_t .row>div:not(:last-child) {
    margin-bottom: 20px;
  }

  .wcr_dtl.pmr_dtl .btn_hldr {
    max-width: 100%;
  }

  /* listing page*/
  .list_table tr td:nth-child(4) {
    width: 32%;
  }

  .list_table tr td:last-child {
    width: 22%;
  }

  .list_table_hldr {
    overflow-x: auto;
  }

  .list_table {
    width: 850px;
  }

  .admin_role {
    padding-top: 0;
  }

  .role_list_table.adm_table table tr td:nth-child(3) {
    width: 52%;
  }
}

@media (max-width: 820px) {
  .form_progression ul li:not(:last-child):after {
    height: 206%;
  }
}

@media (max-width: 768px) {
  .form_progression ul li:not(:last-child):after {
    height: 200%;
  }
}

@media (max-width: 767px) {
  .main-menu nav {
    display: none !important;
  }

  a.mobilemenuBtn {
    position: absolute !important;
    display: inline-block !important;
    right: 1px !important;
    bottom: 54px !important;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }

  a.logo {
    padding: 10px 0;
    max-width: 100px;
  }

  .user_part a {
    padding: 10px;
  }

  a.mobilemenuBtn {
    right: 5px;
    bottom: 55px;
  }

  .header-bottom {
    padding: 0;
  }

  .site-header.sticky .header-bottom {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-header.sticky .top_hdr {
    box-shadow: 0 2px 20px -2px rgba(0 0 0 / 20%);
  }

  /* .site-header.sticky .header-bottom a.mobilemenuBtn{
        bottom: 67%;
    } */
  .top_hdr .row>div:last-child {
    justify-content: space-between !important;
  }

  .iner_content h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .iner_content p {
    font-size: 16px;
  }

  .top_slr_box img {
    height: 340px;
  }

  .btm_sldr {
    margin-top: -55px;
  }

  .btm_sldr_box {
    /* border: none; */
  }

  /* .slick-dotted.slick-slider{
        margin-bottom: 0;
    } */
  section {
    padding: 35px 0;
  }

  .main_hd h2 {
    font-size: 25px;
  }

  .main_hd p {
    line-height: 1.4;
  }

  .main_hd {
    margin-bottom: 15px;
  }

  .trans_btn {
    padding: 6px 20px;
    font-size: 15px;
  }

  .trans_btn span i {
    font-size: 15px;
  }

  .about_hldr p {
    line-height: 1.6;
    text-align: justify !important;
  }

  .hd_1 {
    font-size: 18px;
    line-height: 24px;
  }

  .why_cont {
    margin-bottom: 35px;
  }

  .why_img .why_img_cont {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .why_img_cont img {
    max-width: 80px;
  }

  .product_dtl {
    margin-right: 0px;
  }

  .product_guide_img {
    padding: 50px 20px 20px 20px;
  }

  .testi_img {
    max-width: 200px;
    margin: 0 auto 20px auto !important;
  }

  /* .testi_txt span {
        left: 10px;
    } */
  .testi_persn {
    margin-top: 0;
    padding-left: 30px;
  }

  .testi_txt {
    padding: 0 30px;
  }

  .testi_txt span img {
    max-width: 20px;
  }

  .progress {
    margin-top: 10px;
  }

  .testimonial {
    padding-bottom: 80px;
  }

  .howto_txt li span:last-child {
    font-size: 16px;
    line-height: 24px;
  }

  .howto_txt li:not(:last-child) {
    margin-bottom: 15px;
  }

  .howto_inner_hldr,
  .query_form {
    padding: 25px;
  }

  .hd_3 {
    font-size: 20px;
  }

  .assistance a {
    margin-bottom: 15px;
  }

  .footer-top {
    padding: 30px 0;
  }

  .footer-box h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .floating-icons-hldr li {
    margin-right: -87px;
  }

  .assistance {
    padding: 30px 0 30px 0;
  }

  /* about us page start */
  .inner_banner figure img {
    height: 150px;
    object-fit: cover;
  }

  .mv_cont {
    margin: 25px 0 0 0;
    padding: 0 20px;
  }

  .mv_cont ul li {
    padding: 20p 0;
  }

  .team_hldr .row>div:not(:first-child) {
    margin-top: 100px;
  }

  .team {
    padding-bottom: 122px;
  }

  /* about us page end */
  .industry_report_cont {
    margin-left: 0px;
    margin-top: 44px;
  }

  .testimonial.inner_testimonial {
    padding: 35px 0;
  }

  .how_to_slider {
    margin: 25px 0 0 0;
  }

  .industry_report {
    padding-bottom: 35px;
  }

  .pagination_hldr {
    margin-top: 20px;
  }

  .btm_sldr {
    margin: -50px auto 0 !important;
  }

  /* .iner_content {
        padding: 20px;
        background: #ffffff94;
        backdrop-filter: blur(5px);
        border-radius: 10px;
    } */
  /* promoter and management form start */
  .form_section_hldr form {
    padding: 25px;
    border-radius: 10px;
  }

  /* promoter and management form end */
  /* form II start */
  .dsk_hding_for_frm {
    display: none;
  }

  .mb_hding_for_frm {
    display: block;
  }

  /* form II end */
  .wcr_dtl h6 {
    font-size: 18px;
  }

  .wcr_dtl p {
    font-size: 16px;
  }

  .wcr_dtl ul {
    padding: 25px 0 0 0;
    margin: 25px 0 0 0;
  }

  .guidelines {
    margin-top: 15px;
  }

  .site-main.log_in {
    height: 100vh;
  }

  .form_progression ul li:not(:last-child):after {
    height: 160%;
  }

  .form_progression {
    width: 550px;
    overflow: scroll;
  }

  .form_progression ul {
    overflow-x: auto;
    overflow-y: hidden;
  }


  .right_panel {
    padding: 30px 0;
  }

  .logoContainer a img {
    max-width: 67px;
  }

  .dash_head .row {
    justify-content: flex-start !important;
  }

  .user_profile {
    justify-content: flex-start !important;
  }

  .form_progression ul li {
    margin: 0 !important;
  }

  .form_progression.allform ul {
    gap: 5px;
    align-items: stretch;
  }

  .form_progression.allform ul li a {
    position: relative;
    background: #ddd !important;
    min-width: 220px;
    height: 100%;
    display: inline-grid;
    place-content: center;
  }

  .form_progression.allform ul li a span {
    width: 100%;
  }

  .form_progression.allform ul li a.active {
    background: green !important;
  }


  .form_progression.allform ul li a.active span {
    color: #fff !important;
  }

  .form_progression.with-progres ul li {
    padding-top: 15px;
  }

  .form_progression.with-progres ul li span i {
    display: inline-block;
  }

  .form_progression.with-progres ul li:not(:last-child):after,
  .form_progression.with-progres ul li:nth-child(2):after {
    top: 24px;
    left: 50% !important;
  }

  .main_hd.form_hd {
    position: relative;
  }

  .wcr_dtl.pmr_dtl .btn_hldr {
    max-width: 100%;
  }

  .list_table_hldr {
    overflow-x: auto;
  }

  .adm_table table {
    width: 1000px;
  }

  /* .revenue-frm .col-5, */
  .revenue-frm .col-3 {
    padding: 0 5px
  }

  .revenue-frm .row {
    flex-wrap: nowrap;
  }

  .revenue-frm {
    overflow: auto;
    flex-wrap: inherit;
  }

  .revenue-frm label {
    font-size: 12px;
    vertical-align: middle;
  }

  .revenue-frm input[type='checkbox'] {
    min-height: auto;
  }

  .raw-material-frm .row {
    flex-wrap: nowrap;
    overflow: auto;

  }

  .revenue-header {
    flex: 0 0 auto;
  }

  /* Nav for Periodic Monitoring Left tab */
  .nav {
    flex-wrap: nowrap;
  }

  .mobile_menu ul li a {
    padding: 20px 10px 20px 0;
  }
}

@media (max-width: 575px) {
  .notidropDown {
    right: -120px;
    width: 250px;
  }
}

@media (max-width: 479px) {
  .why_img .why_img_cont {
    top: 47%;
  }

  .top_slr_box img {
    height: 290px;
    /* object-position: left; */
  }

  .iner_content h2 {
    margin-bottom: 0px;
  }

  .iner_content p {
    font-size: 14px;
    margin-bottom: 8px;
    max-width: 200px;
    line-height: 1.5;
  }

  .btm_sldr_box p {
    font-size: 14px;
  }

  .btm_sldr {
    padding: 10px;
  }

  .btm_sldr_box img {
    max-width: 30px;
  }

  .howto_txt li span:last-child {
    font-size: 15px;
    line-height: 23px;
    width: calc(100% - 41px);
  }

  .why_cont ul li span {
    font-size: 15px;
  }

  /* .btm_sldr .slick-slide.slick-current.slick-active .btm_sldr_box{
        border-right: none;
    } */
  .business_loan_hldr .row>div:not(:last-child) {
    margin-bottom: 15px;
  }

  .user_profile li:not(:last-child) {
    margin-right: 10px;
  }

  .form_progression {
    top: 60px;
  }
}

@media (max-width: 390px) {


  .left_panel .settings_menu {
    bottom: 25vw;
  }

  /* .form_progression {
        top: 60px;
    } */
  .user_profile h5 {
    font-size: 14px;
  }

  .notidropDown {
    right: -112px;
    width: 230px;
    padding: 0 10px;
  }
}

@media (max-width: 375px) {
  .howto_txt li:not(:last-child):after {
    top: 50%;
  }

  .why_img_cont p {
    line-height: 15px;
  }

  .form_section_hldr .mb_hding_for_frm {
    font-size: 10px;
  }

  .revenue-frm .mb_hding_for_frm {
    min-height: 43px;
    margin-bottom: 0;
  }
}

/* extra css for react  */

/* .prefix {
  top: 7px !important;
  transform: translate(0, 0) !important;
}
.log_in_frm .eye i {
  top: 15px !important;
  right: 20px !important;
  transform: translate(0, 0) !important;
} */




/* ============================================= Dash Board Loader ============================================= */

.loader_main {
  z-index: 1000;
}

.loader_background {
  background-color: #fff;
  width: 40vw;
  height: 50vh;
  display: "flex";
  justify-content: "center";
  align-items: "center"

}

.mt-28 {
  margin-top: 28px !important;
}

@media (max-width: 767px) {
  .loader_background {
    width: 80vw;
    height: 30vh
  }

  .mt-28 {
    margin-top: 5px !important;
  }
}

@media (max-width: 575.98px) {
  .top_hdr .row {
    flex-wrap: nowrap;
  }

  .top_hdr .row .col-lg-3 {
    width: auto;
  }

  .top_hdr .row .col-lg-9 {
    flex: 1;
    padding-right: 70px;
  }

  .logingtextspan {
    display: none;
  }

  a.mobilemenuBtn {
    top: 13px;
    right: 15px !important;
  }

  .user_part a {
    padding: 6px 10px;
    text-align: center;
  }

  .user_part a span {
    margin: 0;
  }

  .top_info {
    margin-right: 10px;
    margin-left: auto;
  }

  .top_info ul li {
    display: inline-block;
    margin-right: 10px;
  }

  .prfl_hldr li h5 {
    display: none;
  }

  .btm_sldr_box p {
    font-size: 14px !important;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .top_hdr .row {
    flex-wrap: nowrap;
  }

  .top_hdr .row .col-lg-3 {
    width: auto;
  }

  .top_hdr .row .col-lg-9 {
    flex: 1;
    padding-right: 70px;
  }


  a.mobilemenuBtn {
    top: 15px;
    right: 15px !important;
  }

  .user_part a {
    padding: 6px 10px;
    text-align: center;
  }

  .user_part a span {
    margin: 0;
  }

  .top_info {
    margin-right: 10px;
    margin-left: auto;
  }

  .top_info ul li {
    display: inline-block;
    margin-right: 10px;
  }


  .btm_sldr_box p {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1198.98px) {
  .prfl_hldr {
    margin-right: 30px;
  }

  a.mobilemenuBtn {
    right: 2% !important;
  }

  .mobile_menu ul li a {
    padding: 20px 10px 20px 0;
  }

  .form_section_hldr.query_form form .row>div:not(:last-child) {
    margin-bottom: 0px;
  }

  .form_progression {
    padding: 20px 0;
    width: calc(100% - 100px);
    margin: 0;
    margin-left: auto !important;
  }

  .form_progression ul {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
  }

  .form_progression ul li a {
    flex-direction: row;
    align-items: center;
  }

  .form_progression ul li span i {
    display: inline-block;
  }

  .form_progression ul li a span:last-child {
    text-align: left;
    line-height: 1;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .wcr_dtl.pmr_dtl h6 {
    font-size: 16px;
    min-height: 60px;
  }
}

/* ============================================= Dashboard Sidebar controls ===================================== */
.left_panel_button {
  display: none;
}

.left_panel {
  width: 100px;
  height: 100vh;
  background: #175795;
  position: fixed;
  left: 0;
  overflow-y: auto;
  transition: 0.5s ease;
}

.hide_left_panel {
  left: -100px;

}

@media (max-width: 992px) {
  .left_panel_button {
    display: inline-block;
  }

  .left_panel_back {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #0000001d;
    z-index: 2;
    visibility: hidden;
  }

  .left_panel {
    width: 150px;
    left: 0;
    z-index: 20000
  }

  .hide_left_panel {
    left: -150px
  }

  .left_panel .settings_menu {
    bottom: 20vw;
  }
}

@media (min-width: 992px) and (max-width: 1499.98px) {
  .form_progression {
    width: 25% !important;
    padding: 20px;
    position: sticky;
    top: 70px;
    margin-top: 110px;
    z-index: 1;
  }

  .form_section_hldr {
    width: 75% !important;
    margin-left: 0 !important;
  }

  .form_progression ul {
    flex-direction: column;
  }

  .form_progression ul li {
    width: 100% !important;
    margin: 0 !important;
  }

  .form_progression ul li:not(:last-child) {
    margin-bottom: 50px !important;
  }

  .form_progression ul li a {
    flex-direction: row;
    display: flex !important;
  }

  .form_progression ul li span i {
    display: inline-block;
  }

  .form_progression ul li a span {
    text-align: left !important;
  }

  .form_progression ul li:not(:last-child):after {
    /* height: 70px; */
    /* top: 11px; */
    /* left: 81%; */
    /* z-index: -1; */
    transform-origin: left top;
  }

  .form_progression ul li:not(:last-child):after {
    position: absolute;
    content: "";
    width: 1.5px;
    height: 66px;
    top: 12px;
    left: 4px;
    z-index: -1;
    transform: rotate(0deg);
  }

  .form_progression ul li::after,
  .form_progression ul li:nth-child(2):after {
    left: 4px !important;
  }
}