@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,400,500,700');

body {
  overflow-x: hidden;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #505962;
}

#navbarResponsive { 
  justify-content: flex-end;
}

#home, #about_us, #our_svcs, #industries #contact_us {
  margin: 2em 1em 0 1em;
  font-size: large;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
}

.btn-purple {
  border-color: #8366B0;
  background-color: #8366B0;
  color: white;
  margin: 1rem;
}
.btn-purple:hover,
.btn-purple:focus {
  border-color: #594781;
  background-color: #594781;
  color: white;
}

.feature img {
  padding: 1.5rem;
}

footer {
  background-color: #40474e;
  background-size: cover;
  color: white;
}
footer .row {
  padding: 1.5rem 0 4rem;
  line-height: 2rem;
}
footer img {
  margin: 1.5rem 0;
}
footer h3 {
  margin: 1.5rem 0;
}

.navbar .navbar-nav .nav-link{
  font-size: 16px;
  font-weight: bold;
  padding: 0.8em;
  /*color: #FFFFFF; */
}

.navbar .navbar-nav .nav-link:hover {
  background-color: #fff;
  color: #c0392b;
}

.navbar .navbar-nav .nav-link:visited {
  background-color: #fff;
  color: #c0392b;
}

/*-- Extra Bootstrap Column Padding --*/

[class*="col-"] {
  padding: 1rem;
}

/* Customization for other HTML Elements */

/* Styling for honeypot in contact form */
.user-cannot-see {
  display: none;
}


/* Styling for contact page */
#contact {
  margin-top: 20px;
  margin: 0px auto; 
  padding: 20px;
  background-color: lightgrey;
  border-radius: 5px;
  width: 50%;
  
}
/* Styling input types text and text area */
input[type=text], textarea {
  width: 60%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  
  
}
/* Styling email type */
input[type=email] {
  width: 60%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  
}
/* Styling tel type */
input[type=tel] {
  width: 60%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  
}

/* Styling submit button */
input[type=button] {
  background-color: #000000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/* Change shade of submit button when hovered over */
input[type=button]:hover{
  background-color: #787878;
}
/* Align form fields */
label {
  display: inline-block;    
  width: 140px;
  text-align: right;
}

#contactintro {
  text-align: center;
  border: 2px solid black;
  border-radius: 10px;
  width: 200px;
  margin: 40px auto;
  background-color: lightgray;
 
}



