/* Code By Webdevtrick ( https://webdevtrick.com ) */
@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');

body{
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	
}

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 10px 0;
	box-shadow: 0 10px 30px 0 rgb(33,33,33,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 rgb(33,33,33,0.15);
	padding: 5px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 60px;
  margin-left: 40px;
	-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: 0;
}
.navbar-brand img{
	height: 70px;
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-toggler {
  margin-left: 20px;
	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: #ff4242 !important;
}
.nav-item.active .nav-link{
	color: #777 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #ff4242;
	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;
}

.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;
}
h1 {
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
	color: #212112;
	text-align: center;
}
p {
	text-align: center;
	margin: 0;
	padding-top: 10px;
	opacity: 1;
	transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1700ms;
}

.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 rgb(33,33,33,0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgb(255,66,66,0.6);
}

body.dark{
	color: #fff;
	background-color: #1f2029;
}
body.dark h1{
	color: #fff;
}
body.dark h1 span{
    transition-delay: 0ms !important;
}
body.dark p{
	color: #fff;
    transition-delay: 0ms !important;
}
body.dark .bg-light {
	background-color: #14151a !important;
}
body.dark .start-header {
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}
body.dark .start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
body.dark .nav-link{
	color: #fff !important;
}
body.dark .nav-item.active .nav-link{
	color: #999 !important;
}
body.dark .dropdown-menu {
	color: #fff;
	background-color: #1f2029;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
body.dark .dropdown-item {
	color: #fff;
}
body.dark .navbar-light .navbar-toggler-icon {
	border-bottom: 1px solid #fff;
}
body.dark .navbar-light .navbar-toggler-icon:after, 
body.dark .navbar-light .navbar-toggler-icon:before{
	background-color: #fff;
}
body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}


@media (max-width: 767px) { 
  .start-header.scroll-on .navbar-brand img{
    
    margin-left: 0px;
    
  }
	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;
	}
	body.dark .nav-item::before {
		background-color: #fff;
	}
	body.dark .dropdown-toggle::after {
		background-color: #fff;
	}
	body.dark .dropdown-menu {
		background-color: transparent;
		box-shadow: none;
	}
}

.shadow-lg{
  width: 80%;
  height: 5em;
  padding: 15px;
  color: #175DA8;
}
.shadow-lg img{
  width:250px;
  height:50px;
}
.shadow-lg span{
  font-weight: 600;
  font-size: 17px;
}
.shadow-none{
  background-color: #E9F3FD;
  width: 45%;
}
input[type=tel] {
  padding: 2px;
  text-align: center;
  margin: 4px 0;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 4px;
}
.section-partner img{
  width: 390px;
  height : 250px;
  background-size: cover;
}
.section-partner .pic{
  width: 400px;
  height : 300px;
  background-size: cover;
}
.section-uniuqe{
  margin-top: 50px;
}
.section-uniuqe u{
  font-size: 24px;
  color: #175DA8;
  text-decoration: underline;
  -webkit-text-decoration-color: #36B36A; /* Safari */  
  text-decoration-color: #36B36A;
}
.section-uniuqe h3{
  font-size: 24px;
  color: #36B36A;
}
.section-banner{
  margin-top:10px;
  width: 100%;
}
.section-banner1{
  margin-top:5px;
  width: 100%;
}
.section-banner1 video{
  width: 500px;
  height: 370px;
}
.section-banner1 .row{
  margin-left: 60px;
  margin-right:60px;
}
.section-banner1 .col-sm{
  padding: 50px;
}

.section-banner1 span{
  
   font-size: 18px;
}

.section-banner1 .pic{
	width:550px;
	height:280px;
}
.section-banner .row{
  margin-left: 100px;
  margin-right: 100px;
}
.section-footer{
	margin-top:5em;
	
}
.section-footer .copy{
	text-align:left;
}
.section-footer .copy h5{
	font-size:18px;
	color: #175DA8;
  text-decoration: underline;
  -webkit-text-decoration-color: #36B36A; /* Safari */  
  text-decoration-color: #36B36A;
	
}
.section-footer .copy span{
	font-size:14px;
	
}
.section-footer .row{
  margin-left: 10px;
  margin-right: 10px;
}
.section-footer img{
  width:250px;
  height:60px;
}
.section-banner .col-sm{
  padding: 50px;
}
.section-banner h5{
 margin-top: 6em;
  margin-bottom: 2px;
  text-align: center;
  font-size: 20px;
  color: #175DA8;
}
.section-banner span{
   color: #888787 ;
   font-size: 14px;
}
.section-banner img{
  width: 450px;
  height: 300px;
  background-size: cover;
}
.shadow-none button{
	width: 150px;
	font-size: 12px;
  }
@media (max-width: 700px) { 
  .shadow-lg{
    width: 95%;
    height: 5.5em;
    
  }
  .section-footer .copy{
	margin-left:20px;
}
  .shadow-lg span{
	  text-align: left;
    font-size: 12px;
  }
  .shadow-none{
	width: 95%;
  }
  .shadow-none button{
	width: 150px;
	font-size: 12px;
	margin-top:10px;
  }
  input[type=number] {
	width: 150px;
	font-size: 11px;
  }

  
  .section-uniuqe h3{
	  font-size: 16px;
  }
  .section-uniuqe u{
	font-size: 16px;
}
.section-banner{
	margin-top:10px;
	width: 100%;
  }
  .section-banner .row{
	margin-left: 0px;
	margin-right: 0px;
  }
  .section-banner .col-sm{
	padding: 10px;
  }
  .section-banner h5{
   margin-top: 1em;
	margin-bottom: 2px;
	text-align: center;
	font-size: 16px;
	color: #175DA8;
  }
  .section-banner span{
	 color: #000000 ;
	 font-size: 14px;
  }
  .section-banner img{
	width: 380px;
	height: 280px;
	background-size: cover;
  }
  .section-banner1{
	margin-top:10px;
	width: 100%;
  }
  .section-banner1 .row{
	margin-left: 0px;
	margin-right: 0px;
  }
  .section-banner1 .col-sm{
	padding: 10px;
  }
  .section-banner1 h5{
   margin-top: 1em;
	margin-bottom: 2px;
	text-align: center;
	font-size: 16px;
	color: #175DA8;
  }
  .section-banner1 span{
	 font-size: 16px;
	 color:#175DA8;
  }
  .section-banner1 .row{
	  display: flex;
   flex-direction: row-reverse;
  }
  .section-banner1 img{
	width: 370px;
	height: 200px;
	background-size: cover;
  }
  .section-banner1 .pic{
	width: 380px;
	height: 270px;
	background-size: cover;
  }
  .section-banner1 video{
  width: 370px;
  height: 300px;
}
 }
 #overlay {
	position: fixed;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 2;
	cursor: pointer;
  }
  .login-section .shadow-lg{
    margin-top: 20em;
  }
 
  .login-section .shadow-lg{
	  margin-top:10em;
	  width:30%;
	  height:400px;
	  
  }
   .login-section .shadow-lg img{
	  width:200px;
	  height :48px;
	
	  
  }
  
 .login-section input[type=number] {
	 width:300px;
	 height:45px;
  padding: 2px;
  text-align: center;
  margin: 4px 0;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 4px;
}
.login-section label {
	 font-size:16px;
}
.login-section span {
	 font-size:18px;
}
.name{
	margin-left:40px;
}

.name input[type=number]{
  width:300px;
  height:40px;
  padding: 2px;
  font-size:13px;
  text-align: center;
  margin: 4px 0;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 4px;
  background: #FFFFFF;
border: 0.5px solid rgba(89, 105, 255, 0.68);
box-shadow: -4px 3px 10px -4px rgba(89, 105, 255, 0.25);
}
.name input[type=text]{
  width:300px;
  height:40px;
  padding: 2px;
  font-size:13px;
  text-align: center;
  margin: 4px 0;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 4px;
  background: #FFFFFF;
border: 0.5px solid rgba(89, 105, 255, 0.68);
box-shadow: -4px 3px 10px -4px rgba(89, 105, 255, 0.25);
}
.name input[type=password]{
  width:300px;
  height:40px;
  padding: 2px;
  font-size:13px;
  text-align: center;
  margin: 4px 0;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 4px;
  background: #FFFFFF;
border: 0.5px solid rgba(89, 105, 255, 0.68);
box-shadow: -4px 3px 10px -4px rgba(89, 105, 255, 0.25);
}
.customernumber input[type=tel]{
	
	width:150px;
}
.customernumber span{
	margin-left:40px;
}
.forget input[type=tel]{
  width:300px;
  height:40px;
  padding: 2px;
  font-size:13px;
  text-align: center;
  margin: 4px 0;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 4px;
  background: #FFFFFF;
border: 0.5px solid rgba(89, 105, 255, 0.68);
box-shadow: -4px 3px 10px -4px rgba(89, 105, 255, 0.25);
}
 @media(max-width:700px){
	.login-section .shadow-lg{
	  width: 90%;
	  height:400px;
	  }
	  
.forget input[type=tel]{
  width:240px; 
  
}
	.name input[type=text]{
  width:240px;
 
}
	.name input[type=password]{
  width:240px;
 
}
.customernumber input[type=tel]{
	
	width:120px;
}
	.name input[type=number]{
  width:240px;
 
}
.shadow-none input[type=tel] {
	width:100;
  
}
  }