




body {
  background-image: url(image/itsolution3.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-position: center;
  background-size: cover;
  }


p 
	{
	font-size: 15px;
	text-align: center;
	color: #2e76d3;
	}


p.a 
	{
	font-size: 15px;
	text-align: justify;
	color: #2e76d3;
	}


p.b 
	{
	font-size: 15px;
	text-align: center;
	color: #2e76d3;
	}


ul.a {list-style-type: circle;}
ul.b {list-style-type: disc;}
ul.c {list-style-type: square;}








	
table
	{
	color: #2e76d3;
	width: 70%;
	height: 70%;
	margin-top: 100px;	
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	border-radius: 30px;
	border-spacing: 20px;
	background-color: #123;
	opacity: 0.9;
	}
	
th
	{
	padding: 20px;
    border-radius: 30px;
	}


td
	{
	padding: 20px;
    border-radius: 30px;
	background-color: black;
	}



h1
	{
	text-shadow: 1px 1px 1px white;
	text-align: center;
	}


h2
	{
	text-align: center;
	}


img
	{
		display: block;
		margin: auto;
	}


img.a
	{
		width:50%;
		display: block;
		margin: auto;
	}


img.b
	{
		display: block;
		vertical-align: middle;
		float: left;
		margin-left: 20px;
		
	}


/* Start Contact form */

form {
	text-align:center;
	}

input, textarea {
	padding:15px; 
	border:3px solid #abe; 
	border-radius: 6px;
	width:80%;
	font:20px Verdana;
	margin-top: 20px;
	margin-bottom: 10px;
	background:#eef;
}

input[type=submit] {
	padding:8px; 
	border-radius: 10px;
	background:linear-gradient(#6df, #29f) ;
	border:0px solid #47d;
	cursor:pointer;
	color:white;
	width:130px;
	
	}
	
input[type=submit]:active, input[type=submit]:hover {
	background:linear-gradient(#7ef, #3af)  
}

::-webkit-input-placeholder { 
    color:    #abe; }
:-moz-placeholder {  
   color:    #abe;
   opacity:  1; }
:-ms-input-placeholder { 
   color:    #abe; }
   
/* End Contact form */   



/* Start Menu */
.links {
  background-color: #123;
  background-image: linear-gradient(to bottom, #0003, transparent);
  border-bottom: 0px solid #0003;
  box-shadow: 0 0 32px #0003;
  font-size: 18px;
  font-weight: 300;
}
.links > a {
  color: #2e76d3;
  padding: .75em;
  text-align: center;
  text-decoration: none;
  transition: all .5s;
}
.links > a:hover {
  background: #ffffff06;
  color: #12eedc;
}
.links > .line {
  background: #12eedc;
  height: 3px;
  pointer-events: none;
}

/* The Magic */
#header {
 position: fixed;
 
 top: 0;
 left:0;
 right: 0;
  
}
.links {
  display: grid;
  grid-template-columns: repeat(var(--items), 1fr);
  position: relative;
}
.links > .line {
  opacity: 0;
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: var(--left, calc(100% / var(--items) * (var(--index) - 1)));
  width: var(--width, calc(100% / var(--items)));
  --index: 0;
}
.links > a:hover ~ .line {
  opacity: 1;
}

.links > a:nth-of-type(1):hover ~ .line { --index: 1; }
.links > a:nth-of-type(2):hover ~ .line { --index: 2; }
.links > a:nth-of-type(3):hover ~ .line { --index: 3; }
.links > a:nth-of-type(4):hover ~ .line { --index: 4; }
.links > a:nth-of-type(5):hover ~ .line { --index: 5; }
.links > a:nth-of-type(6):hover ~ .line { --index: 6; }
.links > a:nth-of-type(7):hover ~ .line { --index: 7; }
.links > a:nth-of-type(8):hover ~ .line { --index: 8; }
.links > a:nth-of-type(9):hover ~ .line { --index: 9; }
.links > a:nth-of-type(10):hover ~ .line { --index: 10; }
.links > a:last-of-type:hover ~ .line { --index: var(--items); }

/* End Menu */