/* CSS Document */
* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Lucida Sans", sans-serif;
   color: #283A90;
   font-size: 1.1em;
}

.header {
  display: inline-flex;
  justify-content: space-between ;
  align-items: center;
  width: 100%;
  padding: 5px;
  padding-bottom: 1px;
}
.addr {
	text-align: center;
	width:90%
}
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
}

.menu li:hover {
  background-color: #0099cc;
}
.menu li a {
  margin-right: 15px;
  width: 100px;
  font-size:1.5em;
  font-weight: bold;
  text-decoration: none;
  color: #283A90;
}
.nav {
  float: center;
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;  /* This will display each item in a new row*/
  justify-content:space-around;
  max-width:100vw; 
}
.contact{
  align-content: left;
  font-size: 1.4em;
  padding-left: 25px;
}
.direct {
	 display: flex;
	 flex-direction: column;
    align-items: left;
	flex: 50%; /*This will show one image per row*/
	margin : 0;
	padding : 0;
}
.iframe{
	block-size: fit-content;
	 min-height: 70vh;
	 max-width:100vw;
}

.iframe body {
  font-family: "Lucida Sans", sans-serif;
   color: #283A90;
   font-size: 1.1em;
}
	
.aside {  /* not used --- 08AUG2024 */
  background-color: #33b5e5;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.support{
	width: 90%;
  	margin: 0 auto;
	text-align: center;
	padding: 15px;
	/*border:2px solid black;*/
}
.support ul {
  text-align: center;
  display:inline-flex;
  flex-direction: row;
  align-items: center;
  list-style-type: none;
  list-style: none;
  justify-content:space-around;
  margin: 0;
  padding: 0;
}

.support li {
  padding: 8px;
  margin-bottom: 7px;
}

.support li:hover {
  background-color: #0099cc;
}
.support li a {
  margin-right: 15px;
  width: 100px;
  font-size:1.5em;
  font-weight: bold;
  text-decoration: none;
  /*color: #283A90;
   color:#333399;*/
}
.checklbl{
	font-size: 1em;
	font-weight: bold;
}
.footer {
 /* background-color: #0099cc;
  color: #ffffff;*/
  text-align: center;
  font-size: 12px;
  padding: 5px;
  
  position: relative;
  bottom: 0; /* to show footer near the bottom of the screen */
}
.footer p{
	margin: 10px;
}
.marquee {
	background-color:#283A90;
	border:1;
	color: #c0c0c0;
	font-size: 2.6em;
	font-weight:bold;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}
@media screen and (max-width: 576px) {
	
	[class*="col-"] {
	  padding: 3px;
	}

	.header {
		padding: 5px;
		padding-bottom: 1px;
	}
	.logo img{
	   padding-left: 2px;
	   height: 90px; 
	   width:100px;
	}
	 .addr {
	  font-size: 12px;
	}
	.menu ul{
		display: inline-flex;
		justify-content: left;
		align-items: center;
		flex-wrap: wrap;
		/* box-shadow: 0 1px 8px #ddd;
		border-bottom: solid #283A90;*/
		
	}
	.menu li {
	  padding: 2px;
	  margin-right: 5px;
	  background-color: #ffffff;
	}
	.menu li a {
	  margin-right: 5px;
	  width: 100px;
	  font-size:1.1em; /*1.2em*/
	}
	.nav img{ /* Logistics, Retail and Reporting Solution buttons on the Home page*/
		width: 90%;
	}
	.direct img{
		/*transform: scale(0.5);*/ /* transform: scale(nn) still takes the space as was taken on larger screen, so it is better to decrease the width/height */
		width: 90%;
		height: 80%;
	}
	.iframe{
		 min-height: 50vh;
		 max-width: 100vw;
	}
	.support{
		width: 100%;
	}
	.support li {
	  padding: 3px;
	}
	.support li a {
	  font-size:1.1em;
	}
	.footer {
	  padding: 3px;
	}
	table{
		max-width: 95vw !important;
	}
	table,form b,span{
			font-size: 14px !important;
	}
	.checklbl{
		font-size: 14px !important;
	}
	.checklbl span{
		font-size: 14px !important;
	}
	input[type="text"], input[type="password"], select:focus, textarea {
	   /*font-size: inherit; */
	   font-size: 16px;
	   /*width: 90vw !important;*/
		max-width: 90vw !important;
	}
	ul li h1{
		/*font-size: 50%;*/
		 font-size: 20px;
	}
}
@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}
