/* Colors */
* {
  margin: 0;
  border: 0; }

.container {
  display: grid;
  grid-template-rows: auto auto 10px;
  grid-template-columns: 1fr auto 1fr;
  height: 100vh; }

.header {
  grid-row-start: 1;
  grid-column: 1 / span 3;
  display: flex;
  justify-content: center; }

.content {
  grid-column: 1 / span 3;
  grid-row-start: 2; }

.footer {
  grid-column: 1 / span 3;
  grid-row-start: -1;
  display: flex;
  justify-content: space-between; }

/* Market Grid */
.market-list {
  background-color: #003e77;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  grid-gap: 2rem; }
  .market-list li {
    display: inline-block;
    height: 12rem; }

/* Home Page */
body {
  background-color: #fefefe; }

ul {
  list-style: none; }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 6rem 1rem 6rem;
  background-color: #fefefe; }
  .header #logo {
    height: 4.5em; }
  .header p {
    font-style: italic;
    font-weight: 500;
    padding-left: 1rem;
    font-size: .8rem;
    font-family: 'Roboto';
    color: #727274; }
  .header ul {
    list-style: none;
    display: flex; }
    .header ul li {
      padding-left: 2.5rem; }
      .header ul li a {
        color: #323232;
        font-family: 'Roboto';
        text-decoration: none; }
        .header ul li a:hover {
          border-bottom: medium solid #003e77; }

.content {
  background-color: #fefefe; }
  .content .intro {
    padding: 2rem 6rem 3rem 6rem;
    width: 50%; }
    .content .intro h2 {
      color: #003e77;
      font-family: 'Roboto';
      font-size: 1.5rem; }
    .content .intro p {
      padding-top: 2rem;
      padding-bottom: 3rem;
      font-family: 'Roboto';
      color: #323232;
      width: 70%; }
    .content .intro a {
      text-decoration: none;
      padding: .5rem 2rem .5rem 2rem;
      color: #003e77;
      font-family: 'Roboto';
      border: medium solid #003e77;
      border-radius: 2rem;
      transition: padding .5s ease; }
      .content .intro a:hover {
        cursor: pointer;
        padding: .5rem 2.5rem .5rem 2.5rem; }
  .content .box {
    height: 10em; }
  .content .diag-top {
    content: "";
    height: 3em;
    position: relative;
    top: 3em;
    background-color: #003e77;
    transform: skewY(1.5deg);
    transform-origin: 100%; }
  .content .blue {
    background: #003e77;
    position: relative; }
  .content .blue:after {
    background: inherit;
    bottom: -2.6em;
    height: 5em;
    content: '';
    display: block;
    left: 0;
    position: relative;
    right: 0;
    transform: skewY(2deg);
    transform-origin: 100%;
    z-index: -1; }
  .content .markets {
    padding: 0 4rem 1rem 4rem;
    background-color: #003e77; }
    .content .markets h2 {
      padding-top: .9rem;
      padding-left: 1em;
      padding-bottom: 2rem;
      font-family: 'Roboto';
      font-weight: 700;
      font-size: 2.8rem;
      color: #fefefe;
      z-index: 4; }
    .content .markets li {
      background-color: #003e77;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      .content .markets li h4 {
        padding-top: .5rem;
        font-family: 'Roboto';
        color: #fefefe;
        font-size: 1.3rem;
        text-align: center;
        font-weight: 400; }
      .content .markets li svg {
        fill: #7b84b3;
        width: 5rem; }
      .content .markets li #Capa_1 {
        width: 4rem; }
  .content .outro {
    height: 20rem;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .content .outro h2 {
      font-family: 'Roboto';
      color: #003e77;
      font-size: 2rem; }
    .content .outro ul {
      list-style: none;
      display: flex;
      flex-direction: row; }
      .content .outro ul li {
        margin: 2rem 1rem 1rem;
        padding: .6rem 1.5rem .6rem 1.5rem;
        border: medium solid #003e77;
        border-radius: 2rem;
        background-color: #003e77; }
        .content .outro ul li a {
          text-decoration: none;
          color: #fefefe;
          font-family: 'Roboto';
          transition: padding .8s ease; }
          .content .outro ul li a:hover {
            cursor: pointer;
            padding: .6rem 1.8rem .6rem 1.8rem; }

.footer {
  display: flex;
  padding: 4rem 6rem 4rem 6rem;
  background-color: #003e77; }
  .footer h3 {
    padding-left: 2.5rem;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 1.2em;
    color: #727274; }
  .footer .contact .contact-list {
    list-style: none; }
    .footer .contact .contact-list li {
      color: #fefefe;
      font-family: 'Roboto'; }
  .footer .copyright {
    align-self: flex-end;
    font-family: 'Roboto';
    color: #727274; }
    .footer .copyright a {
      color: #727274; }

/* About Page Styling */
.blue {
  background: #003e77;
  position: relative; }

.blue:after {
  background: inherit;
  bottom: -2.6em;
  height: 5em;
  content: '';
  display: block;
  left: 0;
  position: relative;
  right: 0;
  transform: skewY(2deg);
  transform-origin: 100%;
  z-index: -1; }

.what-we-do h2 {
  padding: 4rem 0 0 0;
  margin-left: 6rem;
  margin-bottom: 2rem;
  color: #fefefe;
  font-family: 'Roboto';
  font-size: 2rem;
  text-transform: uppercase;
  width: 15rem;
  border-bottom: thin solid #fefefe; }
.what-we-do ul {
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
  list-style: none;
  justify-content: space-between; }
  .what-we-do ul li {
    width: 15rem; }
    .what-we-do ul li h3 {
      color: #fefefe;
      font-family: 'Roboto';
      font-size: 1.5rem; }
    .what-we-do ul li p {
      padding-top: .5rem;
      color: #fefefe;
      font-family: 'Roboto'; }

.who-we-are {
  padding-bottom: 2rem; }
  .who-we-are h2 {
    margin: 4rem 0 0 6rem;
    color: #003e77;
    font-family: 'Roboto';
    font-size: 2rem;
    text-transform: uppercase;
    width: 15rem;
    border-bottom: thin solid #003e77; }
  .who-we-are .employee {
    padding: 2rem 6rem 2rem 6rem; }
    .who-we-are .employee h3 {
      color: #003e77;
      font-size: 1.8rem;
      font-family: 'Roboto'; }
    .who-we-are .employee h5 {
      color: #323232;
      font-style: italic;
      font-family: 'Roboto';
      padding-bottom: 2rem; }
    .who-we-are .employee p {
      color: #727274;
      font-family: 'Roboto'; }

/* Line Card Styling */
.line-card {
  padding: 1rem 6rem 2rem 6rem; }
  .line-card a {
    text-decoration: none;
    color: inherit; }
  .line-card .button {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; }
    .line-card .button li {
      margin: 0 1rem 2rem 0;
      padding: .6rem 1.5rem .6rem 1.5rem;
      border: medium solid #003e77;
      border-radius: 2rem;
      background-color: #003e77; }
      .line-card .button li a {
        text-decoration: none;
        color: #fefefe;
        font-family: 'Roboto';
        transition: padding .8s ease; }
        .line-card .button li a:hover {
          cursor: pointer; }
  .line-card h2 {
    color: #003e77;
    font-family: 'Roboto';
    font-size: 2rem;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 2rem; }
  .line-card h3 {
    padding-top: 2rem;
    color: #003e77;
    font-family: 'Roboto';
    border-bottom: medium solid #003e77; }
  .line-card .entry {
    border-bottom: thin solid #727274;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 0; }
    .line-card .entry img {
      width: 20vw; }
    .line-card .entry .info {
      padding-left: 3rem;
      display: inline-block;
      width: 50%; }
      .line-card .entry .info h4 {
        color: #003e77;
        font-family: 'Roboto';
        padding-bottom: .8rem;
        padding-left: 1rem; }
      .line-card .entry .info li {
        font-family: 'Roboto';
        color: #727274;
        list-style: circle; }

/*# sourceMappingURL=main.css.map */
