/********** Template CSS **********/



body {
	font-size: 16px;
	line-height: 27px;
	color: #262626;
}

:root {
	--primary: #D00A00;
	--secondary: #999999;
	--light: #F2F8FE;
	--dark: #111111;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 60px;
	z-index: 99;
}

a.know {
	color: #d00a00 !important;
	text-decoration: none;
	font-size: 14px;
}

a.know:hover {
	color: #d00a00 !important;
	text-decoration: underline;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
	font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}


/*** Button ***/
.btn {
	font-weight: 500;
	transition: .5s;
	padding: 10px;
}

.btn.btn-primary {
	color: #fff;
	font-weight: bold;
}

.btn-square {
	width: 25px;
	height: 25px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
	/*top: -100px;*/
	transition: .5s;
	background: #FFF !important;
	text-transform: normal;
	border-bottom: 10px solid #fdc21d;
}

.navbar .navbar-brand {
	/* height: 75px; */
}

.navbar .navbar-nav .nav-link {

	margin: 25px 10px;
	color: #0e729f;
	font-weight: bold;
	outline: none;
    font-size: 14px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: #fdc527;
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}




@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}

.navbar .btn:hover {
	color: #FFFFFF !important;
	background: var(--primary) !important;
}



.btn-primary {
	color: #000;
	background-color: #0090d1;
	border-color: #0090d1;
}

.btn-primary:hover {
	color: #fff;
	background-color: #000;
	border-color: #000;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
	color: #000;
	background-color: #241332;
	border-color: #241332;
	box-shadow: 0 0 0 .25rem rgba(19, 181, 217, 0.5)
}

.btn-secondary {
	color: #000;
	background-color: #fff;
	border-color: #fff;
}

.imgc {
	margin: auto;
	display: block;
}

.rimg {
	border-radius: 50%;
	margin: auto;
	display: block;
}

.bg02 {
	background: #014565;

	padding: 50px 0 0px 0 !important;
	color: #fff;
}

.bg02 a {
	color: #cceaff !important;
}

.ucc {
	text-align: center;
	text-transform: uppercase;
	color: #D00A00;
	font-weight: bold !important;
	padding: 20px;
}

.ucc2 {
	text-align: center;
	text-transform: uppercase;
	color: #001436;
	font-weight: bold !important;
}

.stxt {
	color: #241332;
	text-align: center;
	font-weign: 18px;
}

.btn-c {
	margin: auto;
	display: table;
}


/*** Header ***/
.hero-header .breadcrumb-item + .breadcrumb-item::before {
	color: var(--secondary);
}


/*** Service ***/
.service-item {
	position: relative;
	overflow: hidden;
}

.service-item::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	top: -80px;
	right: -80px;
	border: 80px solid;
	transform: rotate(45deg);
	opacity: 1;
	transition: .5s;
}

.service-item.bg-white::after {
	border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
	border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
	opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
	position: relative;
}

.roadmap-carousel::before {
	position: absolute;
	content: "";
	height: 0;
	width: 100%;
	top: 20px;
	left: 0;
	border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 6px;
	left: 50%;
	margin-left: -15px;
	background: #FFFFFF;
	border: 2px solid var(--primary);
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
	display: block;
	width: 18px;
	height: 18px;
	background: var(--primary);
}

.roadmap-carousel .roadmap-item {
	position: relative;
	padding-top: 150px;
	text-align: center;
}

.roadmap-carousel .roadmap-item::before {
	position: absolute;
	content: "";
	width: 0;
	height: 115px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
	position: absolute;
	content: "";
	width: 14px;
	height: 14px;
	top: 111px;
	left: 50%;
	margin-left: -7px;
	transform: rotate(45deg);
	background: var(--primary);
}

.roadmap-carousel .owl-nav {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
	margin: 0 12px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	font-size: 22px;
	color: var(--light);
	background: var(--primary);
	transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
	color: var(--primary);
	background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
	border: none;
	margin-bottom: 15px;
}

.accordion .accordion-button {
	/*    background: var(--light);*/
	background-color: #fdc21d;
	border-radius: 2px;
	color: #fff;
}

.accordion .accordion-button:not(.collapsed) {
	color: #FFFFFF;
	/*    background: var(--primary);*/
	background-color: #fdc21d;
	box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
	padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: var(--secondary);
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--secondary);
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

.footer .btn.btn-square {
	color: var(--primary);
	border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
	color: #FFFFFF;
	background: var(--primary);
}

.footer .copyright {
	padding: 25px 0;
	border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
	color: var(--primary);
}

.footer .copyright a:hover {
	color: var(--dark);
}



.bg-light {
	background: transparent !important;
}

.text-primary {
	color: #000 !important;
}

.px-4 {
	padding-right: .5rem !important;
	padding-left: .5rem !important;
}

.navbar-toggler {
	padding: 1.5px !important;
}



.bg01 {
	background-image: url('../img/bg01.jpg');
	background-position: center;
	background-attachment: fixed;
	padding: 50px 0 50px 0 !important;
	color: #fff;
}

.tbg {
	background-color: #e9ab03;
	background-position: center;
	background-attachment: fixed;
	/*padding: 5px 0 5px 0 !important;*/
	color: #fff;
}

.wch3 {
	text-align: center;
	margin-bottom: 0;
	line-height: 50px;
	color: #00235D !important;
}

.wch2 {

	margin-bottom: 0;
	line-height: 50px;
	color: #fff !important;
}

.wch2 span {
	font-weight: normal;
}

.footer {
	background: #414446;
	text-align: center !important;
	font-size: 14px;
	color: #fff !important;
}

.footer a {
	color: #ccc !important;
}

a {
	color: #1A0B27;
	text-decoration: none;
}

.tinput {
	padding: 10px;
	width: 300px;
}

.t1 {
	padding: 12px 20px;
	Font-size: 18px;
	font-weight: bold;
}

.navbar-nav {
	font-size: 15px;
}

/* inner page */
.pg-title {
	background-color: #008ece;
	color: #fff;
}

.pg-title h1 {
	text-align: center;
	color: #fff;
	padding: 20px 10px;
	font-size: 35px;
}

.imgcr {
	border-radius: 10px;
}

.txtc {
	text-align: center;
}

/* BG video */

.video-container {
	width: 100%;
	height: 100vh;
}

iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.map iframe {
	position: relative;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 400px;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

#text {
	position: absolute;
	color: #FFFFFF;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
	.video-container iframe {
		height: 56.25vw;
	}
}

@media (max-aspect-ratio: 16/9) {
	.video-container iframe {
		width: 177.78vh;
	}
}


.t01 {
	width: 250px;
}

.t02 {
	width: 30px;
}

.t02 a {
	display: block;
	margin: auto;
	width: 30px;
}

table {
	border: 1px solid #ccc;
	width: 100%
}

td {
	border: 1px solid #ccc;
	padding: 10px;
}


.trkh h3 {
	padding-top: 8px;
	color: #fff;
}

.red {
	color: #D00A00;
}

.servbox {
	border: 3px solid #fff;
	padding: 10px;
	border-radius: 10px;
	padding-bottom: 20px;
}

.servbox h4 {
	margin-top: -60px;
	text-align: center !important;
	background-color: rgba(18, 115, 159, 0.7);
	display: block;
	z-index: 999;
	position: relative;
	color: #ffe046;

}

.sb01 {
	background: #f9ad81;
}

.sb02 {
	background: #f69679;
}

.sb03 {
	background: #fbaf5d;
}

.sb04 {
	background: #f7941d;
}



.sbimg {
	border-radius: 10px;
}

.tleft {
	text-align: left !important;
}

.redbt {
	padding: 10px 30px;
	background: #D00A00;
	font-size: 20px;
	font-weight: bold;
}

.login {
	color: #ffc62a !important;
	background: #0090d1;
	border-radius: 3px;
}

.logoimg {
	max-width: 400px;
}

.bt-blue {
	padding: 10px;
	background: #0090d1;
	color: #fff !important;
	font-weight: bold;
	border-radius: 3px;
	text-transform: uppercase;

}

.bt-blue:hover {
	background: #015f8a;
}

.bt-red {
	padding: 10px;
	background: #f72e00;
	color: #fff !important;
	font-weight: bold;
	border-radius: 3px;
	text-transform: uppercase;

}

.bt-red:hover {
	background: #b72200;
}

.bt-red2 {
	padding: 5px 10px;
	background: #f72e00;
	color: #fff !important;
	font-weight: bold;
	border-radius: 3px;
	text-transform: uppercase;
	font-size: 14px;


}

.bt-red2:hover {
	background: #b72200;
}

.card {
	border: transparent !important;
}

.serv2 .card-title {
	color: #0c78a9;
	margin-bottom: 2px;
}

.serv2 .card-text {
	color: #ec0d12;
}

.serv2 img {
	margin: auto;
	display: block;
}

.run {
	border-color: #0090d1;
	font-size: 15px;
	line-height: 27px;
	color: #262626;
}

thead,
tbody,
tfoot,
tr,
td,
th {
	border-color: #0090d1 !important;
}

.tblheader {
	color: #fff;
	text-align: center;
	line-height: 25px;
	font-size: 12px;
	background-color: #0090d1;
}

.tbl {
	color: #000;
	background-color: #fff;
	text-align: center;
	line-height: 20px;
	font-size: 11px;
	background-color: #eee;
}

.tblheader a {
	text-decoration: underline;
	color: #F00;
}

.table-disp {
	display: flex;
	justify-content: center;
	margin-bottom: 35px;
	align-items: center;
}

@media screen and (max-width:425px) {
	.table-disp {
		display: block;

	}
}

#rbtnPincode,
#rbtnState {
	margin-right: 8px;
}

@media only screen and (max-width: 600px) {
	.img-fluid {
		width: 260px;
	}
}

.sidebar-item {
	border: 1px solid #ddd;
	padding: 10px 15px;
	margin-bottom: 10px;
	background-color: #fff;
	cursor: pointer;
}

.sidebar-item.active {
	background-color: #2a5bd7;
	color: white;
}

.sidebar-item i {
	margin-right: 6px;
}

.sidebar-item:hover {
	background-color: #f1f1f1;
}



h1,
h2,
h3,
h4,
h5,
h6 {}

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

a,
a:active,
a:focus {
	color: #6f6f6f;
	text-decoration: none;
	transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-ms-transition-duration: .2s;
	-moz-transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
}

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

img {
	max-width: 100%;
	height: auto;
}

section {
	padding: 60px 0;
	/* min-height: 100vh;*/
}

.sec-title {
	position: relative;
	z-index: 1;
	margin-bottom: 60px;
}

.sec-title .title {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 24px;
	color: #00aeef;
	font-weight: 500;
	margin-bottom: 15px;
}

.sec-title h2 {
	position: relative;
	display: block;
	font-size: 40px;
	line-height: 1.28em;
	color: #222222;
	font-weight: 600;
	padding-bottom: 18px;
}

.sec-title h2:before {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 50px;
	height: 3px;
	background-color: #d1d2d6;
}

.sec-title .text {
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #848484;
	font-weight: 400;
	margin-top: 35px;
}

.sec-title.light h2 {
	color: #ffffff;
}

.sec-title.text-center h2:before {
	left: 50%;
	margin-left: -25px;
}

.list-style-one {
	position: relative;
}

.list-style-one li {
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #222222;
	font-weight: 400;
	padding-left: 35px;
	margin-bottom: 12px;
}

.list-style-one li:before {
	content: "\f058";
	position: absolute;
	left: 0;
	top: 0px;
	display: block;
	font-size: 18px;
	padding: 0px;
	color: #ff2222;
	font-weight: 600;
	-moz-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1.6;
	font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
	color: #44bce2;
}

.btn-style-one {
	position: relative;
	display: inline-block;
	font-size: 17px;
	line-height: 30px;
	color: #ffffff;
	padding: 10px 30px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing: 0.02em;
	background-color: #00aeef;
}

.btn-style-one:hover {
	background-color: #0794c9;
	color: #ffffff;
}

.about-section {
	position: relative;
	padding: 120px 0 70px;
}

.about-section .sec-title {
	margin-bottom: 45px;
}

.about-section .content-column {
	position: relative;
	margin-bottom: 50px;
}

.about-section .content-column .inner-column {
	position: relative;
	padding-left: 30px;
}

.about-section .text {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 26px;
	color: #848484;
	font-weight: 400;
}

.about-section .list-style-one {
	margin-bottom: 45px;
}

.about-section .btn-box {
	position: relative;
}

.about-section .btn-box a {
	padding: 15px 50px;
}

.about-section .image-column {
	position: relative;
}

.about-section .image-column .text-layer {
	position: absolute;
	right: -110px;
	top: 50%;
	font-size: 325px;
	line-height: 1em;
	color: #ffffff;
	margin-top: -175px;
	font-weight: 500;
}

.about-section .image-column .inner-column {
	position: relative;
	padding-left: 80px;
	padding-bottom: 0px;
}

.about-section .image-column .inner-column .author-desc {
	position: absolute;
	bottom: 16px;
	z-index: 1;
	background: orange;
	padding: 10px 15px;
	left: 96px;
	width: calc(100% - 152px);
	border-radius: 50px;
}

.about-section .image-column .inner-column .author-desc h2 {
	font-size: 21px;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
	margin: 0;
}

.about-section .image-column .inner-column .author-desc span {
	font-size: 16px;
	letter-spacing: 6px;
	text-align: center;
	color: #fff;
	display: block;
	font-weight: 400;
}

.about-section .image-column .inner-column:before {
	content: '';
	position: absolute;
	width: calc(50% + 80px);
	height: calc(100% + 160px);
	top: -80px;
	left: -3px;
	background: transparent;
	z-index: 0;
	border: 44px solid #00aeef;
}

.about-section .image-column .image-1 {
	position: relative;
}

.about-section .image-column .image-2 {
	position: absolute;
	left: 0;
	bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
	box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
	border-radius: 46px;
}

.about-section .image-column .video-link {
	position: absolute;
	left: 70px;
	top: 170px;
}

.about-section .image-column .video-link .link {
	position: relative;
	display: block;
	font-size: 22px;
	color: #191e34;
	font-weight: 400;
	text-align: center;
	height: 100px;
	width: 100px;
	line-height: 100px;
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover {
	background-color: #191e34;
	color: #fff;
}


.contact-box {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 20px;
	background-color: #fff;
}

.contact-item {
	margin-bottom: 15px;
}

.icon {
	width: 30px;
	display: inline-block;
}

.service-card {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: 0.3s ease;
	background: #fff;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-box {
	font-size: 2rem;
	color: #f59e0b;
	/* amber */
}

.section-title {
	border-bottom: 3px solid #f59e0b;
	display: inline-block;
	margin-bottom: 30px;
}


p{
	text-align: justify;
}

 
    .contact-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }
    .contact-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      color: white;
      border-radius: 50%;
      text-decoration: none;
      font-size: 22px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .call-btn {
      background-color: #0084ce;
    }
    .whatsapp-btn {
      background-color: #25D366;
    }


/* Mega menu full width & left aligned */
.navbar .dropdown-menu {
  left: 0 !important;
  right: 0 !important;
}
