:root {
  --main-color: #4b76cc;
  --main-color-light: #f0faff;
  --main-color-dark: #0067b2;
  --inactive-button-bg: #c9c9c9;
  --red: #ed1c24;
  --black: #000000;
  --white: #ffffff;
  --green: #29af58;
  --brown: #b27036;
  --blue: #29abe2;
  --yellow: #ffb831;
  --gray-bg: #d7d7d7;
}
/* Scroll to Top button */
.mbr-arrow-up {bottom:100px}
.mbr-arrow-up a {background: rgba(76, 121, 201, 0.2)}
.mbr-arrow-up a:hover {background-color: rgba(76, 121, 201, 0.8)}

/* Footer */
.footer {
  font-family:Chivo, sans-serif;
  font-size: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--main-color-light);
  margin-top: 3rem;
  z-index: 2;
}

.footer_links {
  width: 25%;
  max-width: 34.8rem;
  background-color: var(--main-color);
  padding-top: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
}
.footer_links a, .footer_links a:visited {font-weight: 700!important;text-decoration:none;color: var(--white);
}
.footer_sponsors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--main-color-light);
}

.footer_sponsor-link {
  display: block;
}

.footer_sponsor-img {
  height: 2.6rem;
}

/*  Media Queries  */
@media (min-width: 1920px) {
  .footer {
    right: calc((100vw - 1920px) / 2);
    left: calc((100vw - 1920px) / 2);
  }
}
@media (min-width: 1400px) {
  .footer_links {
    max-width: 45rem;
  }
}
@media (max-width: 768px) {
  .footer {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 7rem;
  }

  .footer_links {
    width: 100%;
    max-width: 100%;
    padding: 2rem;
  }

  .footer_sponsors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 1.6rem;
    background-color: var(--main-color-light);
  }
}
@media (max-width: 667px) {
  .footer {
    display: block;
    width: 100%;
    position: relative;
  }

  .footer_sponsors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: baseline;
    -ms-flex-pack: baseline;
    justify-content: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    padding: 4rem;
    background-color: var(--main-color-light);
  }

  .footer_sponsor-link {
    width: 45%;
    height: 6rem;
    text-align: center;
  }

  .footer_sponsor-link:nth-child(1) {
    height: 3rem;
  }

  .footer_sponsor-link:nth-child(3) {
    width: 100%;
    margin: 6rem;
  }

  .footer_sponsor-img {
    height: 100%;
  }
}
.card .card-wrapper .align-items-center {
 align-items:start!important
}

.card .card-wrapper .align-items-center .image-wrapper img {margin-top:8px!important}