body {
	font-size: 16px;
	font-family: Nunito, sans-serif !important;
	color: #666666;
	position: relative;
	line-height: 1.5;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #0160b0; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background: #ffbe15;  
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #052f42; 
}

h1, h2, h3, h4, h5, h6 {
	font-family: Nunito, sans-serif !important;
	font-weight: 600;
	color: #333;
}
.text-white{
	color:#fff !important;
}
.text-dark{
	color:#000 !important;
}
::selection {
	color: #fff;
	background-color: #8167a9;
}
::-moz-selection {
	color: #fff;
	background-color: #8167a9;
}


/* #Navigation
================================================== */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 20px 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: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.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: 0;
}
.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: #8167a9 !important;
}
.nav-item.active .nav-link{
	color: #9d0208 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0 !important;
	margin: 0;
	border-radius: inherit;
    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;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding:0 !important;
	color: #212121;
    transition: all 200ms linear;
}
.dropdown-item a{
	
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgba(129,103,169,.6);
}

.navbar-light .navbar-nav .nav-link{
	font-size: 14px;
    font-weight: 500;
    color: #ffffff !important;
    padding: 8px 8px !important;	
    line-height: 43px;
    position: relative;
    text-transform: uppercase;
    transition: all ease-in-out 0.5s;
    background: transparent;
}
.navbar-nav li ul {
    z-index: 99999;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    display: none;
    background-color: #f7f7f7;
    border-top:2px solid #ffbe15;
    -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
}
.navbar-nav li ul li {
    display: block;
    text-align: left;
    margin-left: 0;
}
.navbar-nav li ul li a{
    display: block;
	text-transform:uppercase;
    padding: 8px 10px;
    font-size: 13px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.25;
}
.navbar-nav li ul li a:hover{
	background:#0160b0;
	color:#fff;
	text-decoration: none;
}
.header-info{
	margin:0;
	padding:0;
}
.header-info li{
	list-style-type: none;
    display: inline-block;
    width: 240px;
    margin-top: 5px;
}	
.icon {
    width: 20%;
    float: left;
}	
.menu-area{
	position:static;
}
.mega-area{
	position: absolute;
    width: 65%;
    left: 0;
    right: 0;
    padding: 15px;
	border-top: 2px solid #ffbe15;
    margin-left: 260px !important;
}
.mega-area a {
	display: block;
    text-transform: uppercase;
    padding: 8px 10px !important;
    font-size: 13px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

.mega-area a:hover {
    background: #0160b0;
 }
.dropdown-item{
	padding:5px 0;
}
header{
	background:#ffba08;
}
.top-header{
	background:#cd3728;
	height: auto;
}
.middle-header{
	 background:-webkit-linear-gradient(135deg, #0160b0 50%, #ffffff 50%)  no-repeat;
}
.main-header{
	background:#ffbe15;
}
.number-logo{
	padding: 10px 0 10px;
}
.hindi-marquee{
	background-color: #0160b0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 3% 55%);
    padding: 16px;
    font-weight: bold;
}
.hindi-marquee marquee{
    font-size: 15px;
    margin-top: 5px;
    color: #fff;
}
.top-header p {
	white-space: nowrap;
	overflow: hidden;    
	font-size: 20px;
	color: #fff;
	padding:2px; 
	letter-spacing:1px;
	margin:0 !important;
	text-transform:uppercase;
}

/* Animation */
.top-header p {
	animation: animated-text 4s steps(29,end) 1s 1 normal both,
    animated-cursor 600ms steps(29,end) infinite;
	animation-iteration-count: infinite;
}

/* text animation */

@keyframes animated-text{
	from{width: 0;}
	to{width: 100%	;}
}

/* cursor animations */

@keyframes animated-cursor{
	from{border-right-color: rgba(0,255,0,.75);}
	to{border-right-color: transparent;}
}

/* ------ breadcrumbs css -------*/
.bg_header3 {
    background-image: url(../images/banner.jpg);
}
.page_title {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    -ms-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    -o-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    position: relative;
    z-index: 1;
}
.page_title.has_bg_image {
    padding: 80px 0;
    background-position: 0px;
}
.page_title.has_bg_image h1 {
	letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-left: 15px;
}
.page_title .breadcrumbs {
    float: right;
    line-height: 40px;
    margin: 35px 0 30px;
    font-size: 12px;
    color: #888;
    position: absolute;
    margin-left: 15px;
}
.page_title .breadcrumbs .crumbs-spacer {
    color: #ccc;
    margin: 0 4px;
    vertical-align: middle;
}
.page_title .breadcrumbs a {
    color: #fff;
}

/* ------ slider css -------*/
.form {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #ededed;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.3);
    box-sizing: border-box;
    background: #17698e;
    padding: 10px;
}
.form h3 {
    background:#93241c;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.form-sec {
    visibility: visible;
    animation-delay: 0ms;
    animation-name: fadeInRight;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #ededed;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.3);
    box-sizing: border-box;
    background: #ffffff;
    padding: 15px;
}
.contact-form {
    position: relative;
}
.submit{
    background: #cd3728;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;	
}
.map{
	height:290px !important;
}
.contact-icon{
	background: #fff;
    padding: 8px;
    height: 125px;
    box-shadow: 2px 2px 12px rgba(49,62,87,.25);
    text-align: center;
    margin-bottom: 30px;
}
.contact-icon i {
	font-size: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #93241c;
}
.contact-icon p{
	margin:0;
}
.contact-icon p a{
	color: #000;
    font-weight: 500;
}
.contact-icon p a:hover{
	text-decoration:none;
}
/* ------ slider css -------*/
.carousel-inner img {
	width: 100%;
	height: 100%;
}
/* ------ service css -------*/
.section{
	padding:70px 0 70px;
}
.section-title{
	margin-bottom:50px;
}
.about-sec{
	background:#fff;
}
.secvice-images {
	position: relative;
	width: 100%;
	margin-bottom:30px;
}
.franchise-sec{
	padding:70px 0 140px;
}
.image {
  display: block;
  width: 100%;
  height: 170px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffba08;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.secvice-images:hover .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
/* ------ photo gallery -------*/
.gallery{
	margin:10px 30px;
}
.gallery h3{
	color: #764c28;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}
.gallery h3:after{
	margin-top: 12px;
    width: 60px;
    height: 3px;
    margin-bottom: 12px;
}
.gallery img{
    transition: 1s;
    width: 100%;
}
.gallery img:hover{
 filter:grayscale(100%);
/* transform:scale(1.1); */
}

.gallery-container{
    width: 100%;
    margin-bottom: 30px;
    border: 2px solid #0160b0;
    padding: 2px;
}


/* Faq's Testimonial sec*/
.counter-sec{
    background: url(../images/counter-bg.jpg);	
}

/* Faq's Testimonial sec*/
.card{
	border-radius:0 !important;
	border:none !important;
	margin-bottom: 5px;
}
.accordion>.card>.card-header{
	background:#fcf100;
}
.accordion>.card>.card-header h6 a{
	margin:0;
	font-size:13px;
}
.accordion>.card>.card-header h6 a:hover{
	text-decoration:none;
}
.testimonial-sec{
	background:url(../images/testimonials.jpg);
}

.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
        background-size: cover;
}
#testimonial4 .carousel-inner:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control{
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right{
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header{
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4{
  color: #000;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
}
.testimonial4_slide p {
	color: #000;
    font-size: 16px;
    line-height: 1.6;
}
.testimonial4_slide h5 {
  color: #000;
  font-size: 20px;
  margin-top:10px;
  margin-bottom:10px;
}

.testimonial .carousel {
	padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}
/* ------testimonial  close-------*/


/* ------bottom marquee -------*/
.marquee-sec{
	background: linear-gradient(to right,#e6e6e6 85%,#e6e6e6 50%,white 50%,white 100%);
}
}
.bottom-marqueez{
	background: url(../images/back-grashi.png);
    background-position-x: right;
}
.marky{
	padding-top:30px;
}
.img-marquee{
	width:100px;
	height:100px;
}
.img-moon{
    background: #fff;
    border-radius: 50%;
    border: 5px solid #fff;
}
.customer-logos{
	margin-bottom:40px;
}
/* ------ contact-page-sec -------*/
.contact-page {
    position: relative;
    margin-bottom: 30px;
}

.contact-page .inner{
	position:relative;
	display:block;
	overflow: hidden;
	padding:17px 8px;
	border:1px solid #e0e0e0;
	text-align:center;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;	
}

.contact-page .inner:hover .icon{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

.contact-page .inner:hover{
	border-color:#90429e;
	background:#90429e;	
}

.contact-page .inner .over-link{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	z-index:5;	
}

.contact-page .inner .icon{
	position: relative;
	margin:auto;
    font-size: 64px;
    line-height: 1em;
    color: #90429e;
    margin-bottom: 5px;
}

.contact-page .inner h3{
	position: relative;
    font-size: 18px;
    color: #222222;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    line-height: 25px;
}
.contact-page .inner p{
	position:relative;
	font-size:14px;
	line-height:1.3em;
	color:#222222;
	font-weight:700;
}
.contact-page .inner:hover h3{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.contact-page .inner:hover p{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.contact-page .inner h3 a{
	color:#222222;
}

.contact-page .inner:hover h3,
.contact-page .inner:hover p,
.contact-page .inner:hover h3 a,
.contact-page .inner:hover .icon{
	color:#ffffff;
}
/* ------ footer-sec -------*/
.top-footer{
	background: #e6e6e6 url(https://www.biptdelhi.org/images/footer-bg.png);
	padding:40px 0 40px;
}
.footer-logo-sec {
    margin-top: -140px; 
}
.footer-logo img{
	
}
.contact-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.contact-info ul li {
    border: none !important;
    padding: 5px 0 !important;
}
.contact-info ul li span {
    color: #000;
    font-weight: 600;
}
.contact-info ul li i {
    font-size: 16px;
    color: #ffffff;
    background: #cd3728;
    border-radius: 1px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 34px;
    margin-right: 10px;
}
.address {
    float: left;
    margin-top: -35px;
    margin-left: 45px;
}
.time-list {
    position: relative;
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 260px;
}
.time-list li {
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 4px;
    font-size: 15px;
    color: #fff;
    line-height: 1.7em;
    font-weight: 500;
    border-bottom: 1px solid #000;
}
.time-list li span {
    position: relative;
    float: right;
}
.bottom-footer{
	background:#cd3728;
}
.bottom-footer p{
	margin:0;
}
.bottom-footer p:hover{
	text-decoration:none;
}
.block-sec{
    padding-top: 15px;	
}
.block {
    padding-top: 15px;
}
.block h4 {
	color: #000;
    font-size: 20px;
    margin-bottom: 25px;
	margin-top: 18px;
    text-transform: uppercase;
}
.block-sec h4 {
    color: #000;
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: 18px;
    text-transform: uppercase;
}
.block ul{
	margin:0;
	padding:0;
}
.block ul li {
    margin-bottom: 10px;
	list-style-type:none;
}
.block ul li:before {
    content: '\f101';
    font-family: 'FontAwesome';
    position: relative;
    font-size: 14px;
    left: 0px;
    float: left;
    color: #000;
    margin-right: 10px;
}
.block ul li a {
	display: block;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.block ul li a:hover{
	text-decoration:none;
}
.social-icon {

}
.social-icon ul {
	padding:0;
	margin:0;
}
.social-icon ul li {
    display: inline;
    margin-left: 3px;
}
.social-icon ul li a {
	display: inline-block;
}

.social-icon ul li a i {
	color: #000;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #000;	
    background: transparent;
    text-align: center;
    line-height: 30px;
    z-index: 1;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s;
}
.facebook::after{
	background:#475993 !important;
}
.twitter::after{
	background:#76a9ea !important;
}
.youtube::after{
	background:#f61c0d !important;
}
.linkedin::after{
	background:#0077b7 !important;
}
.instagram::after{
	background-image: linear-gradient(to bottom right, #dc8f3f, #b81a7d) !important;
}
.social-icon ul li a i::after {
    position: absolute;
    content: "";
    top: -1px;
    left: -1px;
    width: 108%;
    height: 108%;
    border-radius: 100%;

    z-index: -1;
    -webkit-transform: rotate3d(2, 2, 0, 90deg);
    -moz-transform: rotate3d(2, 2, 0, 90deg);
    -ms-transform: rotate3d(2, 2, 0, 90deg);
    -o-transform: 	rotate3d(2, 2, 0, 90deg);
    transform: rotate3d(2, 2, 0, 90deg);
    -webkit-transition: .5s; 
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: 0px solid;
}
.social-icon ul li a i:hover {
	color: #fff;	
}
.social-icon ul li a i:hover::after {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    -moz-transform: rotate3d(0, 0, 0, 0deg);
    -ms-transform: rotate3d(0, 0, 0, 0deg);
    -o-transform: 	rotate3d(0, 0, 0, 0deg);
	transform: rotate3d(0, 0, 0, 0deg);	
}


/* ------ media-query -------*/
/* ------ media-query -------*/
@media (max-width: 1650px) {
	.main-header {
    background: -webkit-linear-gradient(
135deg
, #246db7 70%, #ffffff 50%) no-repeat;
    margin-top: -60px;
}
}
@media (max-width: 1024px) {
	.navbar {
		padding-top: 8px;
	}
	.hindi-marquee {
		padding: 12px !important
	}
	.marquee-sec {
		background: linear-gradient(to right,#e6e6e6 90%,#e6e6e6 50%,white 50%,white 100%);
	}
	.marky {
		padding-top: 20px;
	}
}

@media (max-width: 767px) { 
	h1{
		font-size: 38px;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 19px;
		margin-left: -8px;
	}
	.section h3{
		font-size:19px;
	}
	.section-title h2{
		font-size:25px;
	}
	.section-title h5{
		font-size:13px;
	}
	.section-title p{
		font-size:12px;
	}
	.top-header p {
		white-space: nowrap;
		overflow: hidden;
		font-size: 11px !important;
		padding: 5px;
		letter-spacing: 1px;
		margin: 0 !important;
		text-transform: uppercase;
	}
	.header-info li {
		width: 100% !important;
	}
	.mega-area{
		position: absolute;
		width: 100%;
		background:#fff !important;
		left: 0;
		right: 0;
		padding: 15px;
		border-top: 2px solid #ffbe15;
		margin-left: 0px !important;
	}
	.icon img{
		width:80%;
	}
	.matter h4{
		font-size:18px;
	}	
	.matter p{
		font-size:14px;
	}
	#mobile-view{
		display:none;
	}
	.main-header {
		background: #246db7 !important;
		margin-top: 0px !important;
	}
	.font-65 {
		font-size: 45px !important;
	}
	.font-55 {
		font-size: 35px !important;
	}
	.download-btn{
		display:none !important;
	}
	.header-right-btn ul li{
		padding:0px 5px !important;
	}
	.header-right-btn ul li a {
		color: #fff;
		font-size: 11px !important;
	}
	.hindi-marquee {
		padding: 0px !important; 
	}
	.number-logo {
		padding: 3px 0 3px;
	}
	.responsive{
	    margin: 0 auto;
		display: block;
	}
	.mob-nav{
		float: left;
		margin-top: -40px;
		margin-left: -20px;
	}
	.navbar-collapse{
		margin-left: 20px;
	}
	.navbar-light .navbar-toggler-icon {
		width: 24px;
		height: 17px;
		background-image: none;
		position: relative;
		border-bottom: 1px solid #000;
		transition: all 300ms linear;
	}
	.logo img{
		width:100% !important;
	}
	.middle-header{
		background:#fff;
	}
	.marky {
		padding-top: 15px !important;
	}
	.hindi-marquee {
		background-color: #fff;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 3% 55%);
		padding: 0px;
		font-weight: bold;
	}
	.hindi-marquee marquee {
		font-size: 15px;
		margin-top: 5px;
		color: #000;
	}
	.marquee-sec {
		background: linear-gradient(to right,#e6e6e6 70%,#e6e6e6 50%,white 50%,white 100%);
	}
	.nav-item:after{
		display: none;
	}


	.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;
	}
	.navbar-light .navbar-nav .nav-link{
		line-height: 21px !important;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 19px;
	}

	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;
	}
	.carousel-indicators{
		display:none;
	}
	.section {
		padding: 70px 0 140px;
	}
	.image {
		display: block;
		width: 100%;
		height: 100px !important;
	}
}
@media (max-width: 414px) {
	.marky {
		padding-top: 22px !important;
	}
	.logo img{
		width:100% !important;
	}
}
@media (max-width: 375px) {
	.marky {
		padding-top:15px !important;
	}
}
@media (max-width: 360px) {
	.top-header p {
		font-size: 9px !important;
	}
	.marky {
		padding-top:12px !important;
	}
	.logo img{
		width:100% !important;
	}
}
@media (max-width: 320px) {
	.top-header p {
		font-size: 9px !important;
	}
	.img-marquee{
		width:80px;
		height:80px;
	}
	.marky {
		padding-top: 12px !important;
	}
	.navbar-light .navbar-toggler-icon{
		margin-top:-3px;
	}
	.font-65 {
		font-size: 45px !important;
	}
	.font-55 {
		font-size: 35px !important;
	}
}
@media (max-width: 280px) {
	.top-header p {
		font-size: 7.5px !important;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 19px;
		margin-left: -8px;
	}
	.dropdown-toggle::after {
		position: absolute;
		display: block;
		top: 14px;
		margin-left: 20px;
	}
	.logo img{
		width:100% !important;
	}
	.img-marquee {
		width: 65px;
		height: 65px;
	}
	.marky {
		padding-top: 12px !important;
	}
}