* {
  transition: all 0.3s ease-in-out;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #6a6f82;
  text-align: left;
  background-color: #fff;
}

body .main {
  margin: 8px;
  position: relative;
}

body header {
  padding: 0.3rem 0;
  box-shadow: 0 0.6rem 1.5rem rgba(70, 72, 85, 0.1);
  position: relative;
  height: 60px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.subHeaderPadding {
  padding-left: 1%;
}

.subParagraphPadding {
  padding-left: 1.5%;
}

body header .container nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

body header .container nav .navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 0;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  background-color: transparent;
  text-decoration: underline;
  font-weight: 500;
  outline: none;
  position: relative;
}

body header .container nav .navbar-brand img {
  height: 50px;
}

/* Styling @media <start> */

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  nav {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Styling @media for container <end> */
