body {
  font-family: "Roboto";
}

button:focus {
  outline: 0;
}

button:hover {
  background-color: #3d6fc2;
}

@media screen and (min-width: 320px) {
  .desktop, .tablet {
    display: none;
  }

  .mobileDesktop {
    display: block;
  }

  .mobile, .mobileTablet {
    display: block;
  }

  .desktopOnly {
    display: none;
  }

  .desktopTablet {
    display: none;
  }

  .footerTablet {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .desktop, .tablet {
    display: block;
  }

  .mobileDesktop {
    display: none;
  }

  .mobile {
    display: none;
  }

  .desktopTablet {
    display: flex;
  }

  .footerTablet {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .desktopOnly {
    display: block;
  }

  .mobileDesktop {
    display: block;
  }

  .footerTablet {
    display: none;
  }

  .tablet, .mobileTablet {
    display: none;
  }
}
.video {
  overflow: hidden;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}
.video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.video .overlay {
  background: url(/assets/images/videoOverlay.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

nav {
  font-family: "Roboto";
  background-color: #2e2e2e;
  z-index: 1000;
}

.nav-item:hover {
  color: #3d6fc2;
}

.nav-item:active {
  color: #3d6fc2;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

#selectedLink {
  color: #4285f4;
}

@media screen and (min-width: 320px) {
  nav img {
    width: 80% !important;
  }

  .intouchLink {
    color: #4285f4;
  }
}
@media screen and (min-width: 768px) {
  nav img {
    width: 100% !important;
  }
}
@media screen and (min-width: 1024px) {
  .intouchLink {
    border-bottom: 2px solid #4285f4;
  }

  #selectedLink {
    color: #ffffff;
  }
}

/*# sourceMappingURL=header.css.map */
