* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* globals */
body {
  padding-top: 0px;
  color: var(--mainBlack);
  background: var(--mainWhite);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.4;
}
h1 {
  font-size: 3em;
  line-height: 1;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2em;
  margin-bottom: 0.75em;
}
h3 {
  font-size: 1.5em;
  line-height: 1;
  margin-bottom: 1em;
}
h4 {
  font-size: 1.2em;
  line-height: 1.25;
  margin-bottom: 1.25em;
}
h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em;
}
h6 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.tab-content {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px;
}
.btn{
    margin: 0px;
}
/* top nav */
.topnav {
   
  overflow: hidden;
  /*background-color: #2a293e;*/
  background-color: #56525e;
}
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
ul li {
    text-decoration: none;
    color: white;
    display: block;
}
.topnav a:hover {
  background-color: #858282;
  color: #1d4161;
}

.active {
  background-color: #333;
  color: white;
}

.topnav .icon {
  display: none;
}

.feature-section {
    margin-bottom: 1px;
}
.feature-main-heading {
    text-align: center;
    margin-bottom: 0rem;
    padding: 5px;
}
.feature-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    /*border: 1px solid #ccc;*/
    padding: 0px;
    
}
.feature-grid-container > div {
    border: 0px solid #ccc;
    text-align: center;
}
.feature-headings {
    margin-bottom: 0rem;
    padding: 50px;
    width: 100%;
}
.feature-images {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.jumbotron {
    display: none;
}
p {
    text-align: left;
}
p.capitalize {
  text-transform: capitalize;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}



