*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins','cambria','helvetica', sans-serif;
	box-sizing: border-box;
	text-decoration: none;
	user-select: none;
}

html {
	scroll-behavior: smooth;
}

body {
	color: #000;
	font-size: 18px;
    background-color: #f2f2f2;	
}

a, button {cursor: pointer;}

header {
	background: #f7f8f7;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 95;
	width: 100%;
	padding: 4px 4%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 3px 3px 3px #ccc;
}

header h1 {
	letter-spacing: 8px;
	margin-bottom: -10px;
}

header h1, header label{
    font-size: 25px;
}

header h1, header small, header label{
	color: #000; 
}

header nav ul{
	list-style: none;
}

header nav ul li{
	position: relative;
	float: left;
}

header nav ul li a{
	font-size: 18px;
	padding: 10px 15px;
	color: #000;
	display: block;
	font-weight: normal;
	margin: 0 5px;
	align-items: center;
}

header .nav ul li a:hover, header .nav ul li .active-page {
	border-bottom: 2px solid red;
}

header nav ul li .active-page {
	background: #ccc;
	color: #003366; 
}

header nav ul li .active-page-sub {
	background: #333;
	color: #fff; 
}

header nav ul li ul{
	position: absolute;
	left: 0;
	width: 200px;
	background: #fff;
	display: none;
}

header nav ul li ul li{
	width: 100%;
	border-top: 1px solid rgba(0,0,0,1);
}

header nav ul li ul li a:hover{
	background-color: #ccc;

}

header nav ul li ul li ul{
	left: 200px;
	top: 0;
}

header nav ul li:focus-within>ul, header  nav ul li:hover>ul{
	display: initial;
}

#menu-bar {
	display: none;
}

header label {
	cursor: pointer;
	display: none;
}

.left-side{
	display: flex;
	align-items: center;
}



.left-side nav ul li ul{
	left: -90px;
	width: 150px;
	background-color: #ddd;	
}

small {
    font-size: small;
}

section{
	padding: 10px 5%;

}

section h2 {
	text-align: center;
	padding: 15px 0;
}

.sub-txt1 {
	margin-top: 45px;
	text-align: center;
}

.start{
	width: 350px;
	padding: 15px;
} 

.start #h3, .start .label{
	text-align: start;
	font-weight: bold;
	margin-bottom: 8px;
}

.start #h3{
	border-bottom: 1px #333 solid;
	padding: 15px 0;
	font-size: 25px;
	letter-spacing: 5px;
} 

.start input {
	width: 100%;
	padding: 12px;
	margin-bottom: 2px;
	font-size: 18px;
	border: 1px #333 solid;
}

.start button {
	width: 150px;
	padding: 10px;
	margin-top: 12px;
	font-size: 18px;
}

#emsg{
	height: 50px;
	font-size: 15px;
}

.bd, .gd, .gdx {
	background: rgb(250, 165, 165); 
	color: #000;
	padding: 8px 15px;
}

.gd, .gdx {background: greenyellow;}

.gdx{
	padding: 12px;
	box-shadow: 5px 5px 5px 5px #ddd;
}

#toast {visibility: hidden; 
	min-width: 250px; 
	margin-left: -125px; 
	background-color: #ddd; 
	color: #000; 
	text-align: center; 
	border-radius: 20px; 
	padding: 8px; 
	position: fixed; 
	z-index: 10; 
	left: 50%; 
	bottom: 30px; 
	font-size: 17px;
}

#toast.show {
	visibility: visible; 
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; 
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#task {
	display: none;
	inset: 0 0 0 0;
	position: fixed;
	z-index: 101;
	justify-content: center;
	align-items: center;
}

.siteEms{
	text-align: start;
	height: 10px;
	margin-bottom: 15px;
	color: red;
	font-size: small;
}

.tooltip {
	position: relative;
	display: inline-block;
	margin-left: 5px;
}

.tooltip img{
	width: 14px;
	height: 14px;
	cursor: pointer;
}

.tooltip .tooltiptext {
	width: 150px;
	visibility: hidden;
	background: #fff;
	border-radius: 6px;
	padding: 4px 9px;
	position: absolute;
	z-index: 12;
	line-height: 1.4;
	cursor: pointer;
	box-shadow: 5px 5px 5px 5px #ddd;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	color: #000;
	font-weight: normal;
	font-size: 14px;
}

.box {
	border: 1px #ccc solid;
	padding: 25px;
}

.row {
	display: flex;
}

.grid-view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-column-gap: 16px;
	grid-row-gap: 30px;
	padding: 10px;
}

.grid-view .buses {
	margin: 5px;
	background: #fff;
	padding: 10px;
	border: 1px #ddd solid;
}

.grid-view .buses img{
	width: 100%;
	height: 140px;
	padding: 10px;
	border-radius: 12px;
	margin-bottom: 25px;
}

.grid-view .buses .sub-title {
	text-align: center;
	height: 50px;
	font-size: 18px;
	font-weight: bold;
}

.grid-view .buses .details {
	height: 100px;
	color: #333;
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
}

.app-btn {
	background: #ff5f1f;
	color: #fff;
	border-radius: 25px;
	padding: 10px 24px;
	margin: 15px 12px;
	font-size: 15px;
}


footer {
	background-color: #333;
	padding: 10px; 
	margin-top:30px;
}

.foot-col {
	flex-basis: 25%;
	padding: 20px; 
}

.foot-col .endhead {
	color: #00ffff;
	padding: 14px 0;
	border-bottom: #00ffff 1px solid;
	margin-bottom: 20px;
	font-weight: bold;
	/*text-transform: uppercase; */
	font-size: 100%;
} 

.foot-col .h5 {
	margin-top: 30px;
	border-bottom: none;
} 

.end-col {
	display: block;
}

.end-col a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding-bottom: 20px;
	text-align: left;
}

.end-col a:hover{
	color: #ffcc00;
}

.end-col p{
	display: block;
	text-decoration: none;
	color: #ffffff;
	padding-bottom: 20px;
	text-align: left;
}

.end {
	color: #ffffff;
	padding: 25px 0;
}

.end a {
	color: #00ffff;
}

.pri-pol{
	display: block;
	color: #ffffff;
	text-align: left;
	margin-bottom: 10px;
}

.end-col p, .end-col a, .end-note center font{
	font-size: 17px;
}

.bottom-line {
	display: none;
}

.input-group {
	width: 100%;
	height: 50px;
	display: flex;
	background-color:  #fff;
	border-radius: 10px 10px 10px 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.input-group  input[type=email], select {
	width: 75%;
	height: 88%;
	padding: 0px 10px;
	border-radius: 8px 0 0 8px;
	font-size: 16px;
	border: none;
	margin: auto auto;
}

.input-group input[type=submit]{
    width: 25%;
	height: 100%;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.input-group input[type=submit]:hover {
    background-color: #45a049;
}



