.footer {
    background-color: #FFC200;
    color: #0D1E3A;
}

.white {
    color: #fff;
}

a.nostyle {
    color: #0D1E3A;
    text-decoration: none;
}

a.nostyle-white {
    color: #fff;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #0D1E3A;
}

.body-header .navbar-nav a.nav-link {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
}

.body-header .navbar-nav a.nav-link.active {
    color: #FFC200;
}

.footer .sponsor-logo {
    height: 85px;
/*    max-width: 85%;*/
}

.footer .secondary-sponsor-logo {
    height: 70px;
/*    max-width: 85%;*/
}

@media (max-width: 660px) {
    .footer .sponsor-logo {
        height: 65px;
    }
}

.company-phone::before {
    content: '613 084 440';
}

.email-hidden .email-hidden-username::after {
    content: '@';
}

@keyframes infinite-carousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.collaborators {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.collaborators:hover .collaborators-slide.collaborators-on {
  animation-play-state: paused;
}

.collaborators-slide {
  display: inline-block;
  animation: 35s infinite-carousel infinite linear;
  animation-play-state: paused;
  cursor: pointer;
}
.collaborators-slide.collaborators-on {
    animation-play-state: running;
}

.collaborators-slide img {
  height: 50px;
  margin: 0 25px;
}