﻿@font-face {
  font-family: 'conduit_itcregular';
  src: url('/fonts/conduit_itc-webfont.woff2') format('woff2'), url('/fonts/conduit_itc-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  --gray-light: #f5f5f5;
  --gr-blue-light: #a9cee0;
  --gr-green: #1a7167;
  --gr-green-light: #00a29a;
}

body {
  background-color: var(--gr-blue-light);
  font-family: 'conduit_itcregular';
}

.container-wrapper {
  background-color: var(--gray-light);
}

.bg-primary {
  background-color: var(--gr-green) !important;
}

html {
  height: 100%;
}
body {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
footer {
  grid-row-start: 3;
  grid-row-end: 4;
}

.list-inline {
    margin-bottom: -0.5rem;
}
.list-inline .list-inline-item {
    margin-bottom: 0.5rem;
}
    /*
  Text.
*/
    h1 {
        text-wrap: normal;
        overflow-wrap: break-word;
    }

h2 {
  font-size: 24px;
  font-weight: 400;
}

h5 {
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
  margin-left: 0;
}

/*
  Card.
*/

.card {
  border: 0;
  border-radius: 0;
}

.card-header {
  background-color: var(--gray-light);
  border: 0;
  padding-left: 0;
}

.grants-container .grant {
  background-color: var(--white);
}

/*
  Buttons.
*/

.btn,
.btn:visited {
  background-color: var(--gr-green);
  /* border-radius: 0; */
  border-width: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
  padding: 12px 16px;
}

.btn-outline-primary {
  color: var(--white);
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: var(--gr-green-light) !important;
  border-width: 0;
  box-shadow: none !important;
  color: var(--white);
}

.show > .btn-primary.dropdown-toggle[aria-expanded=true] {
  background-color: var(--gr-green-light);
  border-width: 0;
  box-shadow: none;
}