html, body {
  height: 100%;
  margin: 0;
}
.wrapper {
  min-height: 100%;
  margin-bottom: -300px;
}

/* Sign Up */
.sign-up-link {
    color: white!important;
    font-weight: bold;
    text-decoration: none;
}
.sign-up-link:hover {
    font-weight: normal;
    text-decoration: underline;
}
/* Typography */
.hero-text {font-family: 'Baloo 2', cursive;}

/* Background Colours */
.bg-blue {background: #0047BB!important;}
.bg-red {background: #C8102E!important;}

/* Text Colours */
.text-blue {color: #0047BB!important;}
.text-red {color: #C8102E!important;}
/* Navbar */
.navbar-top {
    padding: 30px 0;
}
.navbar-bottom {
    padding: 0px 0;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, .5);
}
.navbar-top .dropdown-toggle {
    color: #fff;
    text-decoration: none;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
}
.navbar-top .dropdown-toggle:hover {
    color: rgba(255, 255, 255, .5);
}
.navbar-top .nav-right {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
}

/* Button */
.btn {
    border-radius: 4rem;
  }
.btn-red {
    color: #fff;
    background-color: #C8102E;
    border-color: #C8102E;
}
.btn-red:hover {
    color: #fff;
    background-color: #ad152e;
    border-color: #ad152e;
}
.btn-blue {
    color: #fff;
    background-color: #0047BB;
    border-color: #0047BB;
}
.btn-blue:hover {
    color: #fff;
    background-color: #125cd5;
    border-color: #125cd5;
}
.btn-outline-red {
  color: #C8102E;
  border-color: #C8102E;
}
.btn-outline-red:hover {
  color: #fff;
  background-color: #C8102E;
  border-color: #C8102E;
}
.btn-outline-blue {
  color: #0047BB;
  border-color: #0047BB;
}
.btn-outline-blue:hover {
  color: #fff;
  background-color: #0047BB;
  border-color: #0047BB;
}
/* Features */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: .75rem;
}
.icon-link {
    display: inline-flex;
    align-items: center;
}
.icon-link > .bi {
    margin-top: .125rem;
    margin-left: .125rem;
    transition: transform .25s ease-in-out;
    fill: currentColor;
}
.icon-link:hover > .bi {
    transform: translate(.25rem);
}

/* Border */
.rounded-4 {
    border-radius: 2rem;
}
/* Card Link */
.card-link {
    text-align:center;
    border-radius: 2rem;
    color: #0047BB!important;
    border: 2px solid #0047BB;
}
.card-link:hover {
    background: #0047BB;
    border-color: #0047BB;
    color: white!important;
    box-shadow: 0px 0px 15px grey;
}
.card-link a {
    color: #0047BB!important;
    text-decoration:none!important;
}
.card-link a:hover {
    color: white!important;
    text-decoration:none!important;
}
/* Footer */
footer {
  color: white;
  background-color: #212529 !important;
  min-height: 300px;
  padding-top: 1rem;
} 
.footer,
.push {
  height: 300px;
}
footer h5 {
    font-family: 'Baloo 2', cursive;
    border-bottom: 5px solid #0047BB !important;
    padding-bottom: .5rem;
    margin-bottom: 1rem;
}
footer .social-link {
    border-radius: 50% !important;
    border: 2px solid #dee2e6 !important;
    padding: 0.5rem !important;
    color: white;
}
footer .social-link:hover {
    border: 2px solid #0047BB !important;
    background:#0047BB;
    padding: 0.5rem !important;
}

footer .list-unstyled a {
    color: white!important;
    text-decoration:none;
}
footer .list-unstyled a:hover {
    color: #0047BB  !important;
    text-decoration:none;
}