/* Import fontawesome CSS */

@import url("css/all.css");

/* Cards CSS */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}
/* Nav card Wrapper */

/* Float columns side by side */

.nav-card-wrapper {
    margin: 0 auto;
    padding: 0;
    max-width: 825px;
    background-color: #2F5863;
}

.column {
  float: left;
  width: 50%;
  padding: 10px 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width:600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the cards */
.card {
  height: 316px;
  padding: 16px;
  text-align:left;
  background-color: #1D363D;
  border: solid 1px #417A8A;
}

/* Style the list */
.card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.card ul li a{
    display: block;
    padding-right: 25px;
}
.card ul > li + li {
    border-top: 1px dotted #8e8c8c;
}

.card ul > li {
    position: relative;
    padding: 10px 0;
}
.card h3 {
    margin: 0;
    padding-bottom: 15px;
    color: #5FB2C9;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.card a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: .5px;
    line-height: 1.2 em;    
}

.card a .fas {
    position: absolute;
    right: 0;
    top: 0;
    color: #f7ad29;
    line-height: 1.2;
}