
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');

/*** Login Page CSS ***/
.btn-outline-secondary {
    color: #767b7f;
    border-color: #bfc5cb;
    background: #fbfcfd;
}
.login-form{
    margin-top: 126px;
}
.login-form .card-body{
  padding: 20px 50px;
}
.login-form .form-control-lg {
    padding: 0.5rem 1rem;
    font-size: .8rem;
    line-height: 1.5;
    border-radius: 0.1rem;
}
.login-form .form-control {
  background-color: #fbfcfd;
}
::-webkit-input-placeholder {
   font-size: 13px!important;
}

:-moz-placeholder { /* Firefox 18- */
      font-size: 13px!important;
}
::-moz-placeholder {  /* Firefox 19+ */
      font-size: 13px!important;
}
.login-or {
 position: relative;
 color: #aaa;
 margin-top: 10px;
 margin-bottom: 10px;
 padding-top: 10px;
 padding-bottom: 10px;
 }
 .span-or {
 display: block;
 position: absolute;
 left: 50%;
 top: -2px;
 margin-left: -25px;
 background-color: #fff;
 width: 50px;
 text-align: center;
 font-size: 15px;
 }
 .hr-or {
 height: 1px;
 margin-top: 0px !important;
 margin-bottom: 0px !important;
 }
 .login-form label {
    display: inline-block;
    margin-bottom: 0.5rem;
    float: left;
    font-size: 13px;
    color: #000;
    font-weight: 500;
}
.bg-warning {
    background-color: #f8f6fc!important;
}
/*** End of Login Page CSS ***/

/* #Navigation New Starts 
================================================== */
.start-header .container-fluid{
    padding: 0px!important;
    margin: 0px!important;
}
.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 0px 0px 10px 0;
    box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 0 0 10px 0;
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.start-header .navbar-brand {
    padding-top: 0.1125rem;
}
.start-header.scroll-on .navbar-brand img{
    height: 24px;
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.navigation-wrap{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.navbar{
    padding: 10px 20px 0px 20px;
}
.navbar-brand{
    font-size: 13px;
}
.navbar-brand img{
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(10%);
    -webkit-transition : all 0.3s ease-out;
    transition : all 0.3s ease-out;
}
.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}
.navbar-toggler:active, .navbar-toggler:focus {
    outline: none;
}
.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, .navbar-light .navbar-toggler-icon:before{
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
    top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}
.nav-link{
    color: #212121 !important;
    font-weight: 500;
    transition: all 200ms linear;
}
.nav-item:hover .nav-link{
    color: #edba95 !important;
}
.nav-item.active .nav-link{
    color: #edba95 !important;
}
.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
}
/*.nav-item:after{
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #8167a9;
    opacity: 0;
    transition: all 200ms linear;
}*/
.nav-item:hover:after{
    bottom: 0;
    opacity: 1;
}
.nav-item.active:hover:after{
    opacity: 0;
}
.nav-item{
    position: relative;
    transition: all 200ms linear;
}

/* #Primary style
================================================== */
.bg-light {
    background-color: #fff !important;
    transition: all 200ms linear;
}
.section {
    position: relative;
    width: 100%;
    display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: 40px;
    transform: translateY(-50%);
    z-index: 20;
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
    padding: 10px!important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
    height: 200px!important;
    overflow-y: scroll!important;
}
.dropdown-toggle::after {
    display: none;
}
.start-header .dropdown-item {
    padding: 3px 15px;
    color: #ffffff!important;
    border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    background-color: rgba(129,103,169,.6);
}
.dark{
    color: #fff;
    background-color: #000000;
}
.dark .navbar-brand img{
  filter: brightness(100%);
}
.dark h1{
    color: #fff;
}
.dark h1 span{
    transition-delay: 0ms !important;
}
.dark p{
    color: #fff;
    transition-delay: 0ms !important;
}
.dark .bg-light {
    background-color: #14151a !important;
}
.dark .start-header {
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}
.dark .start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
.dark .nav-link{
    color: #fff !important;
}
.dark .nav-item.active .nav-link{
    color: #ffffff !important;
    font-size: 13px;
}
.dark .dropdown-menu {
    color: #fff;
    background-color: #585772;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
.dark .dropdown-item {
    color: #fff;
}
.dark .navbar-light .navbar-toggler-icon {
    border-bottom: 1px solid #fff;
}
.dark .navbar-light .navbar-toggler-icon:after, 
.dark .navbar-light .navbar-toggler-icon:before{
    background-color: #fff;
}
.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}
.start-header .navbar .navbar-nav li:nth-child(3) {
    position: absolute;
    right: 220px;
}
.start-header .navbar .navbar-nav li:last-child {
    margin-right: auto;
    position: absolute;
    right: 30px;
}
/* #Media
================================================== */
@media (max-width: 767px) { 
    h1{
        font-size: 38px;
    }
    .nav-item:after{
        display: none;
    }
    .nav-item::before {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
    }
    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
        transition: all 200ms linear;
    }
    .dropdown-toggle[aria-expanded="true"]::after{
        transform: rotate(90deg);
        opacity: 0;
    }
    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }
    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
        visibility: visible;
		opacity: .95;
		max-height: 40%;
    }
   .dark .nav-item::before {
        background-color: #fff;
    }
    .dark .dropdown-toggle::after {
        background-color: #fff;
    }
   .dark .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
    }
.start-header .navbar .navbar-nav li:nth-child(2) {
    margin-top: 20px;
}
.start-header .navbar .navbar-nav li:nth-child(3) {
    position: relative;
    right:0px;
    margin-top: 20px;
}
.start-header .navbar .navbar-nav li:last-child {
    margin-right: unset;
    position: relative;
    right: 0px;
    margin-top: 20px;
}
}
/* #Navigation New Ends 
================================================== */

/* Dashboard Area Start
================================================== */
.icon-box h4{
    font-family: sans-serif;
}
.list-group{
	background: #ffffff;
}
.list-group-item{
	border: none;
    padding: 0.4rem 2rem 0.1rem 2rem;
}
.list-group-item a{
	color: #67676c;
	font-size: 14px;
}
.list-group-horizontal .list-group-item:first-child {
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
    border-top-right-radius: 0;
}
.list-group-horizontal .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
    border-bottom-left-radius: 0;
    margin-left: auto;
}
/*.dropdown-menu {
  max-height: 250px;
  overflow-y: scroll;
  max-width: 200px;
  overflow-x: scroll;
  font-size: 13px;
}*/
.btn-outline-primary {
    color: #ffffff;
    border-color: #ffffff;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #ff8100;
    border-color: #ff8100;
}
.btn-success {
    color: #fff;
    background-color: #0dcf38;
    border: 3px solid #0dcf38;
    font-weight: 500;
    letter-spacing: 1px;
}
.btn-success:hover {
    color: #fff;
    background-color: #5bb318;
    border: 3px solid #5bb318;
}
.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #5bb318;
    border: 3px soild #5bb318;
}
.btn-primary {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #fb1e9b;
    border: 3px solid #fb1e9b;
}
.btn-primary:hover {
    color: #fff;
    background-color: #e30e86;
    border: 3px solid #e30e86;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #e30e86;
    border: 3px solid #e30e86;
}
.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgb(235 26 161 / 50%);
}
.section {
    position: relative;
    padding-top: 10px;
    padding-bottom: 5px;
}
.dashboard{
	margin-top: 125px;
	border-top: 1px solid #eeedfa;
}
.dashboard h3{
	font-size: 15px;
	text-transform: uppercase;
}
.icon-box{
  width: 100%;
  /*box-shadow: 4px 4px 4px 4px rgb(170 170 217 / 20%);*/
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
   box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.icon-box a{
  text-decoration: none;
  color: #ffffff;
}
.icon-box {
    position:relative;
}
.icon-box:after {
    content: '';
    position: absolute;
    top: -1%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 11px #ffffff;
    border-left: solid 11px transparent;
    border-right: solid 11px transparent;
}
.purplebg{
  border-radius: 5px;
  border: 1px dashed #818197;
  min-height: 80px;
}
.purplebg h4{
background-color: #6c26a7;
border-radius: 5px 5px 0 0;
margin-bottom: 0px;
}
.purplebg h6{
    /* background-color: #f5f0fe; */
    background-color: #ffffff;
    min-height: 50px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    border-top: 1px dashed #818197;
    color: #3b3f50;
    text-transform: uppercase;
    padding: 10px;
    font-size: 14px;
}
.greenbg{
  border-radius: 5px;
  border: 1px dashed #818197;
  min-height: 80px;
}
.greenbg h4{
    background-color: #03bd2c;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0px;
}
.greenbg h6{
    /*background-color: #e7feec;*/
    background-color: #ffffff;
    min-height: 50px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    border-top: 1px dashed #818197;
    color: #3b3f50;
    text-transform: uppercase;
    padding: 10px;
    font-size: 14px;
}
.orangebg{
  border-radius: 5px;
  border: 1px dashed #818197;
  min-height: 80px;
}
.orangebg h4{
    background-color: #f66800;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0px;
}
.orangebg h6{
    /* background-color: #fef5ef; */
    background-color: #ffffff;
    min-height: 50px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    border-top: 1px dashed #818197;
    color: #3b3f50;
    text-transform: uppercase;
    padding: 10px;
    font-size: 14px;
}
.bluebg{
  border-radius: 5px;
  border: 1px dashed #818197;
  min-height: 80px;
}
.bluebg h4{
    background-color: #03bdec;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0px;
}
.bluebg h6{
    /* background-color: #eafafe; */
    background-color: #ffffff;
    min-height: 50px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    border-top: 1px dashed #818197;
    color: #3b3f50;
    text-transform: uppercase;
    padding: 18px;
    font-size: 14px;
}
.pinkbg{
  border-radius: 5px;
  border: 1px dashed #818197;
  min-height: 80px;
}
.pinkbg h4{
    background-color: #f303ac;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0px;
}
.pinkbg h6{
    /* background-color: #feecf9; */
    background-color: #ffffff;
    min-height: 50px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    border-top: 1px dashed #818197;
    color: #3b3f50;
    text-transform: uppercase;
    padding: 18px;
    font-size: 14px;
}
.violetbg{
  border-radius: 5px;
  border: 1px dashed #818197;
  min-height: 80px;
}
.violetbg h4{
    background-color: #3b68f8;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0px;
}
.violetbg h6{
    /* background-color: #e7edfe; */
    background-color: #ffffff;
    min-height: 50px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    border-top: 1px dashed #818197;
    color: #3b3f50;
    text-transform: uppercase;
    padding: 18px;
    font-size: 14px;
}
.redebg{
  border-radius: 5px;
  border: 1px dashed #818197;
  min-height: 80px;
}
.redebg h4{
    background-color: #e40564;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0px;
}
.redebg h6{
    /* background-color: #ffe9e9; */
    background-color: #ffffff;
    min-height: 50px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    border-top: 1px dashed #818197;
    color: #3b3f50;
    text-transform: uppercase;
    padding: 18px;
    font-size: 14px;
}
/* Dashboard End Start
================================================== */

/* Welcome Area Start
================================================== */
.welcome-areaNew {
    min-height: 215px;
    overflow: hidden;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}
.welcome-areaNew:before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    opacity: .95;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/banner-bg.png);
    z-index: 2;
    top: -20%;
    left: -20%;
}
.welcome-areaNew .header-text {
    position: relative;
    z-index: 3;
}
/*.welcome-area{
	height: 50vh;
}
.welcome-area .header-text {
    position: absolute;
    top: 25%;
    transform: translateY(-20%);
    text-align: left;
    width: 100%;
}*/
.header-text h2{
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
}
.welcome-areaNew .header-text p{
    font-size: 14px;
    color: #ffffff;
    padding-top: 15px;
    line-height: 24px;
    margin-bottom: 15px;
}
.welcome-areaNew .header-text ul li{
    font-size: 14px;
    color: #ffffff;
}
.welcome-areaNew .header-text ul li i{
    font-size: 13px;
    margin-right: 4px;
}
.welcome-areaNew .status-box{
    padding: 30px;
}
.welcome-areaNew .status-box .track-btn {
    width: 100%;
    border-radius: 30px;
    background: #ffffff;
    color: #3f4048;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #21ef08;
    box-shadow: 4px 4px 4px rgb(243 142 94);
}
.welcome-areaNew .status-box .know-btn {
    width: 100%;
    border-radius: 30px;
    font-size: 18px;
    background: #ffffff;
    color: #3f4048;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #c35406;
    margin-top: 30px;
    box-shadow: 4px 4px 4px rgb(243 142 94);
}
.welcome-areaNew .status-box a i{
    font-size: 24px;
    margin-left: 10px;
}

@media (max-width: 500px){
    .welcome-areaNew .status-box .know-btn{
        font-size: 15px;
    }
    .welcome-areaNew .status-box .track-btn{
        font-size: 15px;
    }
}
/* Welcome Area End
================================================== */

/* Launched Services Area Start
================================================== */

#testimonials{

}
#testimonials .team-item {
    background: #fff;
    box-shadow: 0 2px 18px 0 rgb(0 0 0 / 10%);
    border-radius: 15px;
    position: relative;
    padding-bottom: 10px;
    margin: 10px 10px 0 10px;
    border: 1px solid #fa8637;
    min-height: 125px;
}
.team-item .team-content p {
    margin-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 15px;
    color: #fa8637;
    letter-spacing: 0.6px;
    line-height: 20px;
}
.team-item .team-content .team-info .user-name {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #1e1e1e;
    letter-spacing: 0.25px;
    margin-bottom: 0px;
    line-height: 18px;
}
/* Launched Services Area End
================================================== */

/* Vision Statement Area Start
================================================== */

.mini {
    min-height: 215px;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mini .mini-content .info{
    text-align: center;
    color: #3b3f50;
    padding-top: 1px;
    padding-bottom: 1px;
}
.mini .mini-content .info p {
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #3b3f50;
    letter-spacing: 0.25px;
    line-height: 24px;
    font-weight: 400;
    font-size: 15px;
}
.mini .mini-content .mini-box {
    border: 1px dashed #f5640f;
    min-height: 265px;
}
.mini .mini-content .mini-box:before{
    background: #a90606;
}
.mini .mini-content .mini-box strong {
    font-weight: 500;
    font-size: 16px;
}
.mini .mini-content .mini-box:hover{
	cursor:auto;
}
.section-title {
    text-align: center;
    padding-bottom: 1px;
}
.section-title h2 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    padding-top: 10px;
}
.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #c5c4d7;
    bottom: 2px;
    left: calc(50% - 60px);
}
.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 4px;
    background: #f95506;
    bottom: 0;
    left: calc(50% - 20px);
}

/* Vision Statement Area End
================================================== */

/* Journey Start
================================================== */

.graph-box {
    border: 1px solid #fe8971;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Journey End
================================================== */

/* Report Start
================================================== */

.section.colored {
    background: #fbeee8;
}
.pricing-item {
    background: #ff846a;
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 10%);
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 0px;
    padding: 15px 0px 0px 0px;
    min-height: 140px;
    cursor:pointer;
}

.center-text {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #777;
    line-height: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.center-text p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0px;
}
.pricing-item .pricing-header img{
    width: 50px;
}
.pricing-item .pricing-body .price-wrapper {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #ff846a;
    width: 80%;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 5px;
    border-radius: 20px;
}
/* Report End
================================================== */

/* Work Start
================================================== */

.steps-box{
    padding: 0px 40px 0px 10px;
    margin-top: -20px;
}
.steps-box span{
    font-weight: 600;
}
.steps-box p{
    font-size: 14px;
    margin-top: -6px;
}
.steps-box ul li {
 color:#444;
 list-style:none;
 margin-top: -5px;
}

.steps-box ul li:before {
color: #ff846a;
content: "\25AA";
font-size: 2.5em;
padding-right: 0.10em;
position: relative;
top: 0.2em;
}
#blog img{
    width: 530px;
    text-align: center;
}
/* Work End
================================================== */

/* Explore Start
================================================== */

#contact-us {
    padding: 10px 0px 30px 0;
}

.explore-box {
    min-height: 215px;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}
.explore-box:before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    opacity: .95;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/explore-bg.png);
    z-index: 2;
    top: -20%;
    left: -20%;
}

.explore-box .explore-content {
    position: relative;
    z-index: 3;
}

.explore-box .document-box{
    background-color: #e30e86;
    text-align: center;
    padding-bottom: 20px;
}
.contact-text ul li{
    margin-top: 20px;
}
.contact-text a{
    background: #ffffff;
    border-radius: 30px;
    padding: 10px 30px;
    color: #212529!important;
    cursor: pointer;
    font-weight: 500;
}
/* dropdown btn */
.contact-text .btn{
    background: #ffffff;
    border-radius: 30px;
    padding: 10px 30px;
    color: #212529;
    border: 0px;
}
.contact-text a img{
    margin-left: 7px;
}
.contact-text .dropdown-menu a{
    padding: 0px 0px 0px 15px;
}
.contact-text .dropdown-menu {
    height: 90px!important;
    overflow-y: auto!important;
    font-size: 15px;
    background: #e7e8f2;
}
.explore-box .app-box{
    background-color: #8ccb05;
    text-align: center;
}

#contact-us h5 {
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.25px;
    line-height: 24px;
    padding: 15px 40px 2px 40px;
}

/* Explore End
================================================== */

/* FAQ Start
================================================== */

.faq-section {
  margin: 0px 0;
  background: #f4f6ff;
  padding: 10px 0px;
  font-family: sans-serif!important;
}
.faq-section #faq .card {
    margin-bottom: 10px;
    border: 1px solid #cacacf;
    border-radius: 2px;
    font-size: 14px;
}
.faq-section #faq .card .card-header {
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}
.faq-section #faq .card .card-header .btn-header-link {
    color: #fff;
    display: block;
    text-align: left;
    background: #c8dff7;
    color: #222;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 2px;
}
.faq-section #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
  font-size: 14px;
}
.faq-section #faq .card .card-header .btn-header-link.collapsed {
  background: #2c619b;
  color: #fff;
  font-size: 14px;
}
.faq-section #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
}
.faq-section #faq .card .card-body{
    padding: .5rem 1.25rem;
    font-size: 13px;
}
.faq-section #faq .card .collapsing {
  background: #e6f1fd;
  line-height: 20px;
  font-size: 14px;
}
.faq-section #faq .card .collapse {
  border: 0;
}
.faq-section #faq .card .collapse.show {
  background: #e6f1fd;
  line-height: 20px;
  color: #222;
  font-size: 14px;
  border-top: 1px dashed #c2c3c9;
}
/* FAQ End
================================================== */

/* Logo Box Start
================================================== */
.logo-content{
    padding: 10px 10px;
    border-top: 1px dashed #d9dee8;
}
.logo-content .logo-box{
    border: 1px solid #e2e3e7;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
}
/* Logo Box End
================================================== */

/* Footer Start
================================================== */
footer {
    background: #333249;
    padding-top: 20px;
}
.footer-top h5{
    color: #c9cacb;
    font-size: 13px;
}
.footer-top h6{
    color: #c9cacb;
    font-size: 12px;
}
.footer-top .foot_link{
    color: #fba446;
}
footer ul.list-inline {
    padding-left: 0;
    list-style: none;
    border: 1px dashed #9c9fa5;
    padding: 7px 20px 7px 20px;
    margin: 5px auto;
    border-radius: 20px;
    max-width: max-content;
}
.list-inline-item a {
    color: #fba446!important;
    transition: all .35s;
    cursor: pointer;
    font-size: 12px;
}
.list-inline-item:not(:last-child) {
    margin-right: 2rem;
}
footer .copyright {
    text-align: center;
    border-top: 1px solid rgba(250,250,250,0.2);
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 12px;
    color: #aaaaaf;
    letter-spacing: 0.88px;
    text-transform: none;
}
/* Footer End
================================================== */

/* Tracking Status Modal Box
================================================== */
.step-modal{
  border-bottom: 1px dashed #c7bbbb;
  margin-bottom: 10px;
}
.steps .step {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center
}
.steps .step .step-icon-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 80px;
    text-align: center
}
.steps .step .step-icon-wrap::before, .steps .step .step-icon-wrap::after {
    display: block;
    position: absolute;
    top: 50%;
    width: 50%;
    height: 3px;
    margin-top: -1px;
    background-color: #e1e7ec;
    content: '';
    z-index: 1
}
.steps .step .step-icon-wrap::before {
    left: 0
}
.steps .step .step-icon-wrap::after {
    right: 0
}
.steps .step .step-icon {
    display: inline-block;
    position: relative;
    width: 85px;
    height: 85px;
    border: 1px solid #e1e7ec;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #374250;
    /*font-size: 38px;*/
    line-height: 76px;
    z-index: 5
}
.steps .step .step-title {
    margin-top: 16px;
    margin-bottom: 0;
    color: #606975;
    font-size: 14px;
    font-weight: 500
}
#track_status .form-group label{
    font-size: 12px;
    font-weight: 500;
} 
.steps .step:first-child .step-icon-wrap::before {
    display: none
}
.steps .step:last-child .step-icon-wrap::after {
    display: none
}
.steps .step.completed .step-icon-wrap::before, .steps .step.completed .step-icon-wrap::after {
    background-color: #9fa4a6;
}
.steps .step.completed .step-icon {
    border: 3px solid #9ca1a6;
    background-color: #ffffff;
    color: #fff;
}
@media (max-width: 576px) {
    .flex-sm-nowrap .step .step-icon-wrap::before,
    .flex-sm-nowrap .step .step-icon-wrap::after {
        display: none;
    }
}
@media (max-width: 768px) {
    .flex-md-nowrap .step .step-icon-wrap::before,
    .flex-md-nowrap .step .step-icon-wrap::after {
        display: none
    }
}
@media (max-width: 991px) {
    .flex-lg-nowrap .step .step-icon-wrap::before,
    .flex-lg-nowrap .step .step-icon-wrap::after {
        display: none
    }
    .dashboard {
    margin-top: 120px;
    }
}
@media (max-width: 1200px) {
    .flex-xl-nowrap .step .step-icon-wrap::before,
    .flex-xl-nowrap .step .step-icon-wrap::after {
        display: none
    }
}
.bg-faded, .bg-secondary {
    background-color: #f5f5f5 !important;
}

/* Tracking Status Modal Box End
================================================== */

/* Botton to top button
================================================== */
#scrollToTopBtn {
    background-color: #fb1e9b;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    float: right!important;
    margin-right: 25px;
    margin-top: -70px;
    border-radius: 5px;
}

/* Scrollbar
================================================== */

body::-webkit-scrollbar {
  width: .7em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: grey;
  outline: 1px solid slategrey;
}

/* indu 14032022 
================================================== */

/* Carousel CSS
================================================== */
.recipeCarousel .carousel-inner{
    padding: 0 1rem;
}
.carousel-item .card {
    background: #fff;
    /*box-shadow: 0 2px 18px 0 rgb(0 0 0 / 10%);*/
    border-radius: 15px;
    position: relative;
    padding-bottom: 10px;
    margin: 10px 10px 0 10px;
    border: 1px solid #fa8637;
    min-height: 125px;
}
.carousel-item .card h5 {
    margin-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 15px;
    color: #fa8637;
    letter-spacing: 0.6px;
    line-height: 20px;
}
.carousel-item .card h6 {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #1e1e1e;
    letter-spacing: 0.25px;
    margin-bottom: 0px;
    line-height: 18px;
}

.carousel-btn a {
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
}
.carousel-btn a i{
    color: #f55f17;
    font-size: 20px;
}
.carousel-btn a i:hover{
    color: #fb1e9b;
}

.card {
  margin: 0 0.5em;
  box-shadow: 1px 3px 4px 0 rgba(22, 22, 26, 0.10);
  border: none;
  border-radius: 0;
}
.carousel-inner {
  padding: 0 1em 1em 1em;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}


@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* display 3 */
@media (min-width: 768px) {
    
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(33.333%);
    }
    
    .carousel-inner .carousel-item-left.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-33.333%);
    }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left{ 
  transform: translateX(0);
}


.counter:before {
    opacity: 0;
}

/* Custom Accordion by Priyanka */

.custom_accordion .card {
    background: rgba(240, 249, 253, 0.61) !important;
    margin: 5px auto;
    line-height: 20px;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    font-size: 14px;
}
.custom_accordion .card .card-header{
	font-size:13px;	
	padding: .5rem 1rem;
	margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.custom_accordion .card-header > a {
    color:#313090;
    cursor: pointer;
}
.custom_accordion .card-header > a:before {
    content: '\f138';
    font-family: fontawesome;
}	
.custom_accordion .card .card-header:before > a:before::has(+.collapse.show){
    content: '\f13a';
    font-family: fontawesome;
}
.custom_accordion .card:hover, .custom_accordion .card.active:focus {
    background-color: #f0f8ff;
}

.modal .statewise_graph {
    padding: 10px;
    border: solid 1px #abeafe;
    background-color: #effbfe;
    overflow-x: auto;
}

.form-row .fa-refresh{
	font-size: 18px;
	padding-top: 10px;
}
.small-font a{
	font-size: 15px;
	color:#696871;
}
.change-password-form {
    margin-top: 8%;
    padding: 2%;
    margin-bottom: 3%;
}
.loginpage_bg {
	background: url(../images/bg1-03032020-v1.png), #7b4397;
	background: url(../images/bg1-03032020-v1.png),
		linear-gradient(to left, #2b3393, #ba025f);
	background-size: cover;
	background-attachment: fixed;
}
.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}