body {
    margin: 0;
}

body,
body * {
    box-sizing: border-box;
}

header {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 60px;
    border-bottom: 1px solid #ececec;
    padding: 0 10px;
}

header,
h1,
h2 {
    color: #4271b5;
}

header .fas {
    margin-left: 5px;
    transition: transform .4s ease-in-out;
}

.navigation {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 10px;
    margin-top: 20px;
}

.navigation a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    padding: 10px;
    color: #5292ec;
    transition: color .4s ease;
}

.company-name {
    float: left;
    font-size: 30px;
    margin-top: 10px;
    text-decoration: none;
    color: #4271b5;
}

.active a {
    padding-bottom: 17px;
    border-bottom: 5px solid #4271b5;
    color: #4271b5;
}

.navigation li>a:hover {
    color: #4271b5;
}

.active a {
    padding-bottom: 17px;
    border-bottom: 5px solid #4271b5;
    color: #4271b5;
}

.dropdown {
    display: block;
    position: relative;
    padding-bottom: 40px;
}

.dropdown:hover .fas:first-of-type {
    transform: rotate(180deg);
    padding: 0;
    margin-left: 5px;
}

.dropdown:hover li>a {
    color: #4271b5;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 300px;
    z-index: 1;
    border: 1px solid #4271b5;
    border-radius: 10px;
    font-size: 10px;
    padding: 10px;
    font-family: 'Rubik', sans-serif;
    background-color: #4271b5;
}

.dropdown-content div {
    display: grid;
    grid-template-columns: 1fr;
}

.dropdown-content a {
    text-transform: none;
    font-weight: normal;
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 5px;
    color: #fff;
    border-left: 1px solid transparent;
}

.dropdown-content a:hover {
    border-left: 1px solid #fff;
    color: #fff;
}

section {
    margin-top: 100px;
    margin-bottom: 40px;
}

section h2 {
    font-size: 30px;
    font-family: 'Rubik', sans-serif;
}

section p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}

footer {
  height: 80px;
  border-top: 1px solid #4271b5;
  position: relative;
  background-color: #4271bf;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

footer a {
  padding: 10px;
  color: #fff;
  background-color: transparent;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .2s ease;
  transition: color .2s ease;
}

footer a:visited {
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.inline {
  display: inline-block;
}

.inline:first-child {
  padding: 20px 0 10px;
}

footer a:hover {
  background-color: #fff;
  color: #4271b5;
  border-radius: 10px;
}

/* Helpers */

.wrap {
    max-width: 1170px;
    margin: 0 auto;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tab {
    margin-left: 55px;
}

.bold {
    font-weight: bold;
}