* {
  padding: 0;
  margin: 0;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.0rem;
}


a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

header {
  position: fixed;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0;
}

@media(min-width: 576px) {
    .container {
        max-width:540px
    }
}

@media(min-width: 768px) {
    .container {
        max-width:720px
    }
}

@media(min-width: 992px) {
    .container {
        max-width:960px
    }

    .main-menu {
      display: flex !important;
    }
}

@media(min-width: 1200px) {
    .container-xl, .container {
        max-width:1290px
    }
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.navbar {
  height: 70px;
  background: #fff;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .11);
  font-size: 18px;
  padding: 0 1rem;
  align-items: center;
  display: flex;
  line-height: 1.25;
}

.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.navbar .container-xl .main-menu {
  display: none;
  flex-basis: auto;
  flex-grow: 1;
}

.navbar .container-xl .main-menu .menu-nav {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: inline-flex !important;
}

.navbar .container-xl .main-menu .menu-nav li {
  float: left;
}

.nav-item {
  position: relative;
  float: left;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-block;
  margin-right: 2.5rem;
  line-height: inherit;
  white-space: nowrap;
}

a.navbar-brand {
  color: #000;
  transition: all 0.3s ease-out;
}

a.navbar-brand:hover, a.navbar-brand:focus, .nav-icons a:hover , .nav-icons a:hover i {
  color: #2962ff;
  transition: all 0.3s ease-out;
}

.nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
  color: #34495e;
}

.nav-link span:hover {
  color: #1565c0;
}

.navbar .navbar-nav .nav-link.active {
    font-weight: 700 !important;
    color: #2962ff !important;
}

.nav-icons {
  font-size: 18px;
  padding: .5rem 0;
  margin: 0;
}

.nav-icons li {
  display: inline;
  padding-right: 1.5rem;
}

.nav-icons i {
  color: #34495e;
  transition: all 0.3s ease-out;
}

.nav-icons ul li a {
  font-size: 0.9rem;
  color: #34495e;
  transition: all 0.3s ease-out;
}

footer {
    padding: 50px 0;
}

.site-footer {
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
}

.site-footer a{
    border-bottom: solid 1px;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 2rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    color: #12537e;
    background-color: #f6fbfe;
    border-color: #1976d2;
}

div.alert>div {
    position: relative;
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-left: 3rem;
    margin-top: 0;
    margin-bottom: 0;
}

div.alert>div:first-child::before {
    position: absolute;
    top: -.3rem;
    left: -2.8rem;
    font-size: 1.8rem;
    color: #1976d2;
    font-family: 'font awesome 5 free';
    font-weight: 900;
    content: '\f05a';
    width: 1.5rem;
    text-align: center;
}

.alert a {
    border-bottom: solid 2px;
}