@font-face {
  font-family: 'Tahoma';
  src: url('../fonts/Tahoma.woff2') format('woff2'),
      url('../fonts/Tahoma.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #01AEA4;
  --link: #4094c4;
}

body {
  margin-top: 56px;
  line-height: 1.5;
  @media only screen and (min-width: 992px) {
    margin-top: 125px;
  }
}


.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5 !important;
}

.font-tahoma{
  font-family: 'Tahoma';
}

.app {
  margin: 0 auto;
  max-width: 1640px;
  position: relative;
}

a {
  color: var(--link);
  text-decoration: none;
}


/* Utils */
.text-primary {
  color: var(--primary) !important;
}
.cursor-pointer {
  cursor: pointer;
}

/* Navbar */
.navbar {
  max-width: 1640px !important;
  margin: auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.navbar-brand img{
  @media only screen and (min-width: 992px) {
    width: 116px;
    height: 116px;
  }
}

/* Sidenav */
.sidenav {
  background: white;
  position: fixed;
  z-index: 1050;
  top: 0;
  width: 300px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  transform: translateX(-100%);
}
.sidenav.active {
  transform: translateX(0);
}
.sidenav-backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.sidenav-backdrop.active {
  visibility: visible;
  opacity: 1;
}
