body {
  font-weight: 100 !important;
}
:focus {
  outline: 1px dotted #212121 !important;
  outline: 1px dotted #212121 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-offset: 1px !important;
}
a.skip-to-content-link {
  position: absolute;
  background-color: #fff;
  z-index: 100;
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
  padding: 4px 8px;
}
a.skip-to-content-link:focus {
  position: absolute;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
img#logo {
    border: 0.1rem solid #000;
    padding: .25rem;
}
h1#maincontent {
  font-weight: 100 !important;
  /*line-height: 1em !important;*/
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100 !important;
}
h3 {
  font-size: 1.5rem !important;
}
.dropdown-toggle {
   -webkit-box-shadow: none !important;
            box-shadow: none !important;
}
nav.navbar.navbar-expand-lg.navbar-light {
    padding: 0.5rem 0.75rem 1rem 0.75rem !important;
}
figcaption {
  font-style: italic;
}
footer {
  font-size: 0.9rem !important;
  padding-bottom: 1rem;
}
footer ul {
  list-style: none;
  padding-left: 0 !important;
}
footer ul li a {
  text-decoration: none !important;
}
/*summernote override*/
.note-frame {
    font-family: 'Heebo' !important;
}
.note-editable {
  background: #fff !important;
  margin: 2px !important;
}
.note-editor.note-airframe .note-status-output,
.note-editor.note-frame .note-status-output {
  padding: 0 0 0 10px !important;
}
.note-editable:focus {
  outline-offset: 0px !important;
  outline: 5px auto Highlight !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.note-modal-title,
.note-form-label {
  color: #212529 !important;
  font-weight: 200 !important;
}
.note-modal-footer {
  height: auto;
  text-align: right !important;
  margin-bottom: 10px;
}
.close {
  opacity: 1 !important;
}
.note-input {
  width: 99% !important;
  margin: 1px !important;
}
.note-btn {
  height: 33px !important;
}
.note-button,
.note-btn.disabled,
.note-btn[disabled],
fieldset[disabled] .note-btn,
.note-btn-primary {
  border-radius: 0 !important;
  border: none !important;
}
.note-editor .note-toolbar .note-dropdown-menu,
.note-popover .popover-content .note-dropdown-menu {
  min-width: 180px !important;
}
/*custom nav*/
.nav-link {
  display: inline-block !important;
}
a.nav-link {
    font-size: 1.2rem !important;
}
.card-img, .card-img-top {
    border: none;
}
.card-body {

}
.card-img-top {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
}

@media screen and (max-width: 768px) {
  img#logo {
    width:25%
}
  .dropdown-menu {
    padding: 0 !important;
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  .dropdown-item {
    padding: 0.25rem 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  img#logo {
    width:15%
}
}
/*custom nav animations*/
@media (min-width: 768px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@media (prefers-reduced-motion) {
  .animate {
    -webkit-animation: none;
    animation: none;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

