*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Urbanist';
  src: url(../fonts/Urbanist/static/Urbanist-Bold.ttf);
}

@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Urbanist', sans-serif;
}

p, b, a {
  font-family: 'Poppins', sans-serif;
}

.topnav {
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-style: solid;
  border-color: #142C66;
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 #dddddd;
}

.topnav a {
  float: left;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-right: 1px solid #142C66;
}

.topnav a:hover {
  background-color: #ffffff;
}

.topnav a.active {
  background-color: #223A73;
  color: #ffffff;
  text-shadow: 1px 1px 0 #000000;
}

header {
  width: 100%;
  height: 100%;
  padding: 15px;
  text-align: center;
  border-style: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 0px;
  background-color: #142C66;
  color: #ffffff;
  text-shadow: 1px 2px 0 #000000;
  border-style: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.content {
  max-width: 1080px;
  margin: auto;
}

.column {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.row {margin: 0 -5px;}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

.card {
  padding: 25px;
  text-align: left;
  background-color: #ffffff;
  color: #000000;
  border-color: #142C66;
  border-style: solid;
  margin-bottom: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

section {
  float: left;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: left;
  border-style: none;
  border-radius: 15px;
  margin-bottom: 10px;
  background-color: #ffffff;
  color: #000000;
  border-style: none;
}

a:link, a:visited {
  color: #000000;
  text-decoration-line: none;
}
a:hover, a:active {
  color: #142C66;
  text-decoration-line: underline;
}

.far {
  color: #FF0000;
}

.fas {
  color: #0078d7;
}