* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  /*font-family: 'Source Code Pro', monospace;*/
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Home */

.header {
  min-height: 100vh;
  width: 100%;
  background-color: rgb(50, 53, 77);
  /*background-position: center;
	background-size: cover;
	position: relative;
	*/
}

.header-index {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(images/IO\ SCM.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

.header-services {
  min-height: 100vh;
  width: 100%;
  background-color: rgb(50, 53, 77);
  /*background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.8)), url(images/IO\ computer.jpg);*/
  background-position: center;
  background-size: cover;
  position: relative;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 150px;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  width: 2px;
  background: #000000;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

/* */
.text-box {
  width: 90%;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1 {
  font-size: 62px;
}

.text-box h2 {
  font-size: 56px;
}

.text-box h3 {
  font-size: 48px;
}

.text-box p {
  margin: 10px 0 40px;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.5;
}

.button {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 34px;
  font-size: 16px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.button:hover {
  border: 1px solid #000000;
  background: #060a44;
  transition: 1s;
}

nav .fa {
  display: none;
}

/* About */

.background {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
  padding-top: 2%;
}

.company-profile {
  margin: auto;
  text-align: center;
  padding-top: 100px;
  min-height: 80vh;
  width: 100%;
  background-color: rgb(50, 53, 77);
}

h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
}

p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding: 10px;
}

/* Services */

.services {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.services ul li {
  color: #ffffff;
  font-size: 20px;
  text-align: left;
  list-style-position: inside;
  font-weight: 400;
  line-height: 20px;
  padding: 10px;
}

/* Clients */

.clients {
  margin: auto;
  text-align: center;
  padding-top: 50px;
  min-height: 80vh;
  width: 100%;
  background-color: rgb(50, 53, 77);
}

/* Contact */

.contact-details {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
  padding-top: 2%;
}

.contact-details ul li {
  list-style: none;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  list-style-position: inside;
  font-weight: 400;
  line-height: 20px;
  padding: 10px;
}

.contact-us {
  margin: auto;
  text-align: center;
  padding-top: 100px;
  min-height: 80vh;
  width: 100%;
  background-color: rgb(50, 53, 77);
}

h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
}

.contact-title {
  /*margin-top: 100px;*/
  color: #ffffff;
  transition: all 4s ease-in-out;
}

.contact-title h2 {
  font-size: 42px;
  line-height: 10px;
}

.contact-title h3 {
  font-size: 24px;
}

form {
  margin-top: 50px;
  transition: all 4s ease-in-out;
}

.form-control {
  width: 600px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid rgb(173, 173, 173);
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

input {
  height: 45px;
}

form .submit {
  background: #757575;
  border-color: transparent;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  height: 50px;
  margin-top: 20px;
}

form .submit:hover {
  background-color: #aaaaaa;
  cursor: pointer;
}

/* */

@media (max-width: 700px) {
  .text-box h1 {
    font-size: 20px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: #000000;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
}

/*

body
{

	background-color : #282359;
	color: #29215A;
	font-family: arial, sans-serif;
	font-size: 10pt;
	margin: 0;
	padding:0;
}

table
{
	background-color: #FFFFFF;
	font-size: 10pt;
	font-style: normal;
	margin-top: 0;
	padding-top: 0;
	border-left: 1px solid #C0C0C0;
	border-right: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;


}



h1
{	
	background-color: #94A5B5;
	font-family: arial;
	text-align: right;
	color: #FFFFFF;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 10px 0px;
	font-size: 15pt;
}

h2
{	
	font-family: arial;
	text-align: left;
	color: #29215A;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	font-size: 13pt;
}
	

.sidemenu
{
	text-align: center;
	font-family: arial;
	font-size: 7pt;
}

a
{
	text-decoration: none;
	font-weight : normal;
}

a:link
{
		color: #405B6E;
		text-decoration : none;
}

a:visited
{
		color: navy;
		text-decoration : none;
}

a:hover
{
		color: #405B6E;
		text-decoration : underline;
}

img
{
		border: 0;
}

#content 
{
	background-color : transparent;
	padding: 5px 5px 5px 5px;
}

#menufive
{
	font:10px/13px verdana, arial, georgia, sans-serif;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	float: left;
}

#menufive ul, #menufive li
{
	display: inline;
	list-style: none;
	margin: 0px;
	padding: 0px;
}

#menufive li a, #menufive li a:hover, #menufive li a:active
{
	display: block;
	text-decoration: none;
	color: #676767;
	background-color : #D6EFEF;
	margin: 4px;
	padding: 2px;
	border: 1px solid #447C7B;
	text-align: center;
	width : 90px;
	font-weight: normal;
}

#menufive li a:hover, #menufive li a:active
{
	background-color : #EDF9F9;
}

*/
