/*---------- Header ----------*/ /*---------- Header ----------*/
.hero {
  position: relative;
  padding: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero .background {
  position: absolute;
  min-width: 100dvw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.hero .focusimg {
  position: absolute;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .hero .focusimg {
    bottom: unset;
    right: 3rem;
    -webkit-transform: translateY(35%);
            transform: translateY(35%);
  }
}
.hero .title-box .title {
  text-transform: capitalize;
}
.hero-home .hero-home-container {
  max-width: 2000px;
  position: relative;
}
.hero-home .title-box {
  margin-top: 1rem;
  margin-left: 1.5rem;
}
@media (min-width: 768px) {
  .hero-home .title-box {
    margin-top: 3rem;
  }
}
@media (min-width: 1400px) {
  .hero-home .title-box {
    margin-top: 6rem;
    margin-left: 4rem;
  }
}
.hero-home .title-box .title {
  color: #C9FFFC;
  font-size: clamp(1rem, 6dvw, 6rem);
  font-weight: 700;
}
.hero-home .title-box .subtitle {
  color: #f1f1f1;
  margin-top: 0.5rem;
  font-size: clamp(0.8rem, 3dvw, 4rem);
  max-width: 80%;
}
.hero-home .subheading-box {
  left: 0.5rem;
  margin-top: 3rem;
}
.hero-home .subheading-box .subheading-sml {
  color: #AFE8FF;
  margin-left: 1dvw;
  font-weight: 600;
  font-size: clamp(1rem, 5dvw, 2.4rem);
  line-height: 1;
  margin-left: 2rem;
}
.hero-home .subheading-box .subheading-lg {
  color: #AFE8FF;
  font-weight: 800;
  font-size: clamp(2.5rem, 12dvw, 13rem);
  margin-top: 0.5rem;
  line-height: 0.65;
}
@media (min-width: 768px) {
  .hero-home .subheading-box {
    left: 1.5rem;
    bottom: -1.3rem;
    margin-left: 2rem;
  }
  .hero-home .subheading-box .subheading-sml {
    margin-left: 2rem;
  }
}
@media (min-width: 1400px) {
  .hero-home .subheading-box {
    margin-left: 3rem;
  }
}

.hero-pages .title-box {
  padding: 1rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-pages .title-box {
    padding: 7rem 3rem;
  }
}
.hero-pages .title-box .title {
  color: #C9FFFC;
  font-size: clamp(2rem, 4dvw, 5rem);
  font-weight: 700;
}
.hero-pages .title-box .subtitle {
  margin-top: 2rem;
  color: #f1f1f1;
  margin-top: 0.5rem;
  font-size: clamp(1rem, 2dvw, 3rem);
}

.hero-pages-sml .title-box {
  padding: 1rem;
  line-height: 1.1;
  padding-left: 3rem;
}
.hero-pages-sml .title-box .title {
  color: #C9FFFC;
  font-size: clamp(2rem, 4dvw, 3rem);
  font-weight: 700;
}
.hero-pages-sml .title-box .subtitle {
  color: #f1f1f1;
  font-size: clamp(1rem, 2dvw, 1.8rem);
}

/*---------- Sections ----------*/
.section-border {
  background-color: #fafafa;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-left: solid 2px #001b33;
  border-right: solid 2px #001b33;
}
.section-border .background-swoop {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .with-sidebar {
    grid-template-columns: 4fr 1fr;
  }
}

.sidebar {
  background-color: #052d54;
  color: #f1f1f1;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  height: 2.5rem;
  width: 5.5rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.sidebar a {
  color: inherit;
  text-decoration: none;
}
.sidebar .sidebar-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar .sidebar-toggle span {
  margin-left: auto;
  margin-right: 1rem;
}
.sidebar .sidebar-item {
  opacity: 0;
  pointer-events: none;
}
.sidebar:hover, .sidebar:focus {
  height: 100%;
  width: 12rem;
}
.sidebar:hover .sidebar-item, .sidebar:focus .sidebar-item {
  opacity: 100%;
  display: block;
  -webkit-transition: all 0.5s ease 0.5s;
  transition: all 0.5s ease 0.5s;
  pointer-events: all;
}
@media (min-width: 768px) {
  .sidebar {
    position: relative;
    height: auto;
    width: unset;
  }
  .sidebar .sidebar-toggle {
    display: none;
  }
  .sidebar .sidebar-item {
    opacity: 100%;
    pointer-events: all;
  }
  .sidebar:hover, .sidebar:focus {
    height: unset;
    width: unset;
  }
}

/*---------- Footer ----------*/
.footer-container .footer-img-links-section {
  display: grid;
  background: linear-gradient(75deg, #004d7b -10%, #0070cf 70%);
}
@media (min-width: 992px) {
  .footer-container .footer-img-links-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-container .footer-img-links-section .footer-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-container .footer-img-links-section .footer-img-links {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: clamp(3rem, 3vw, 6rem);
  place-content: center;
  padding: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 2rem);
  margin: 1.2rem 2rem;
}
.footer-container .footer-img-links-section .footer-img-links a {
  color: #f1f1f1;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .footer-container .footer-img-links-section .footer-img-links {
    margin: 0;
    padding: 1.2rem clamp(1rem, 3vw, 5rem);
  }
}
.footer-container .bluedivider1 {
  min-height: 1.3rem;
  background-color: #007cb2;
}
.footer-container .footer-logo-links-section {
  display: grid;
  grid-template-columns: 1fr;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #052d54;
  color: #f1f1f1;
  padding: 2rem 1rem;
}
@media (min-width: 992px) {
  .footer-container .footer-logo-links-section {
    grid-template-columns: 1fr auto 0.9fr;
  }
}
.footer-container .footer-logo-links-section .footer-logo-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}
.footer-container .footer-logo-links-section .footer-logo-box .footer-logo {
  width: 12rem;
}
.footer-container .footer-logo-links-section .footer-logo-box .address {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .footer-container .footer-logo-links-section .footer-links-box {
    border-left: solid 2px #f1f1f1;
  }
}
.footer-container .footer-logo-links-section .footer-links-box .links-header {
  margin-top: 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
.footer-container .footer-logo-links-section .footer-links-box .footerlinks {
  display: grid;
  padding: 2rem 5rem;
  font-size: 1.3rem;
  line-height: 1.4;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
}
.footer-container .footer-logo-links-section .footer-links-box .footerlinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-container .footer-logo-links-section .footer-links-box .footerlinks ul li {
  position: relative;
}
.footer-container .footer-logo-links-section .footer-links-box .footerlinks ul li:hover, .footer-container .footer-logo-links-section .footer-links-box .footerlinks ul li:focus {
  color: #1dbafb;
  text-decoration: underline;
}
.footer-container .footer-logo-links-section .footer-links-box .footerlinks ul li:hover::before, .footer-container .footer-logo-links-section .footer-links-box .footerlinks ul li:focus::before {
  content: url(../../img/oog-intranet-img/staroog.svg);
  position: absolute;
  left: -2rem;
  scale: 1.2;
}
.footer-container .footer-logo-links-section .footer-links-box .footerlinks ul a {
  color: #f1f1f1;
  text-decoration: none;
}
.footer-container .footer-logo-links-section .footer-links-box2 {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  padding: 0rem 2rem;
}
@media (min-width: 992px) {
  .footer-container .footer-logo-links-section .footer-links-box2 {
    border-left: solid 2px rgba(175, 232, 255, 0.2);
  }
}
.footer-container .footer-logo-links-section .footer-links-box2 .links-header {
  border-bottom: solid 3px #AFE8FF;
  margin-top: 1rem;
  margin-inline: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: clamp(1rem, 2dvw, 2rem);
  font-weight: 400;
}
.footer-container .footer-logo-links-section .footer-links-box2 .address-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-container .footer-logo-links-section .footer-links-box2 .address-container .address-title {
  border-bottom: solid 1px #f1f1f1;
  font-weight: 500;
  font-size: 1.2rem;
}
.footer-container .footer-logo-links-section .footer-links-box2 .address-container .address-box {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-container .footer-logo-links-section .footer-links-box2 .address-container .address-box .a-title {
  color: #C9FFFC;
  font-size: 0.8rem;
}
.footer-container .footer-logo-links-section .footer-links-box2 .address-container .address-box .a-address {
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-container .footer-logo-links-section .footer-links-box2 .address-container .address-box .a-address {
    text-align: left;
    font-size: clamp(1rem, 2dvw, 1.8rem);
  }
}
.footer-container .footer-logo-links-section .footer-links-box2 .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-container .footer-logo-links-section .footer-links-box2 .contact-container .contact-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-container .footer-logo-links-section .footer-links-box2 .contact-container .contact-box .c-header {
  border-bottom: solid 1px #f1f1f1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.footer-container .footer-logo-links-section .footer-links-box2 .contact-container .contact-box .c-title {
  color: #C9FFFC;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
}
.footer-container .footer-logo-links-section .footer-links-box2 .contact-container .contact-box .c-title a {
  text-decoration: none;
  color: inherit;
}
.footer-container .footer-logo-links-section .footer-links-box2 .contact-container .contact-box .c-contact {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
}
.footer-container .footer-logo-links-section .footer-links-box2 .contact-container .contact-box .c-contact a {
  text-decoration: none;
  color: inherit;
}
.footer-container .footer-logo-links-section .footer-links-helpdesk {
  display: grid;
  place-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 1rem;
}
/*---------- Containers ----------*/
.footer-container {
  z-index: 1;
  padding: 0;
  border-left: 2px solid #001b33;
  border-right: 2px solid #001b33;
  overflow: hidden;
}

/*---------- Table Styles ----------*/
.tablestyle1 {
  border: solid 1px #002d6c;
}
.tablestyle1 .t-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1rem;
}
.tablestyle1 .t-col:not(:last-of-type) {
  border-right: solid 1px #002d6c;
}
.tablestyle1 .t-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tablestyle1 .t-header .t-col {
  background-color: #002d6c;
  color: #f1f1f1;
  font-weight: 500;
}
.tablestyle1 .t-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tablestyle1 .t-row:not(:last-of-type) .t-col {
  border-bottom: solid 1px #002d6c;
}
.tablestyle1 .t-row .t-data {
  background-color: #ddd;
}
.tablestyle1 .t-row .t-data:hover {
  background-color: #C9FFFC !important;
  font-weight: 600 !important;
}
.tablestyle1 .t-row:nth-child(even) .t-data {
  background-color: #f2f2f2;
}
.tablestyle1 .t-row .t-blue {
  background-color: #002d6c;
  color: #f1f1f1;
}
.tablestyle1 .t-row .t-bold {
  font-weight: 500;
}

/*---------- Buttons ----------*/
.footer-button {
  text-align: center;
  text-decoration: none;
  margin-top: 2rem;
  background-color: #002d6c;
  border: solid 2px #f1f1f1;
  color: #f1f1f1;
  border-radius: 0.5rem;
  padding: 0.3rem 0.8rem;
}

/*---------- Cards ----------*/
/*---------- Dividers Styling ----------*/
.divider-blue2 {
  background-color: #052d54;
  height: 1rem;
}

.divider-blue3 {
  background-color: #002d6c;
  height: 1rem;
}

.group-list-divider {
  border-top: solid 2px #004d7b;
  border-bottom: solid 2px #004d7b;
  background-color: #C9FFFC;
  height: 8px;
}

/*---------- Logos ----------*/
.logo-oog {
  aspect-ratio: 1/1;
  min-height: 85px;
  margin: 2px;
  background-image: url("../../../img/oog-img/oogseal-athena.svg");
  background-size: cover;
  margin: 0px 15px 0 25px;
}

.logo-oog-internal {
  aspect-ratio: 1/1;
  min-height: 85px;
  margin: 2px;
  background-image: url("../../../img/oog-img/oogseal-white.svg");
  background-size: cover;
  margin: 0px 15px 0 25px;
}

/*---------- Menus ----------*/
.top-menubar-bg {
  background-color: #001b33;
}

.top-menubar-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: "Raleway", sans-serif;
  color: #f1f1f1;
  font-weight: 500;
  font-size: 0.8em;
}
.top-menubar-menu ul {
  padding: 0;
  margin: 0;
  margin-right: 1rem;
  padding: 0.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  list-style: none;
}
.top-menubar-menu a {
  text-decoration: none;
  color: inherit;
}
.top-menubar-menu a .subarrow {
  margin-left: 0.3rem;
}
.top-menubar-menu li {
  position: relative;
  isolation: isolate;
  z-index: 10;
}
.top-menubar-menu li ul {
  border: solid 2px #002d6c;
  background-color: #fefefe;
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  list-style: none;
  right: -1rem;
  color: black;
  gap: 0.1rem;
}
.top-menubar-menu li ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-menubar-menu li ul a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.top-menubar-menu li ul a:hover {
  background-color: #1dbafb;
  color: #f1f1f1;
}
.top-menubar-menu li ul:hover, .top-menubar-menu li ul:focus {
  display: grid;
}
.top-menubar-menu li:hover ul, .top-menubar-menu li:focus ul {
  display: grid;
}

.bottom-menubar-bg {
  background-color: #001b33;
}

.bottom-menubar-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f1f1f1;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
}
.bottom-menubar-menu ul li {
  padding: 0.5rem 1rem;
  -ms-flex-item-align: center;
      align-self: center;
}
.bottom-menubar-menu ul li a {
  text-decoration: none;
  color: #f1f1f1;
}
.bottom-menubar-menu ul li img {
  scale: 1.2;
  margin-right: 0.5rem;
}

.main-menu-bg {
  background-color: #fafafa;
}

.main-menu-section {
  position: relative;
  padding: 0.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-menu-section .oog-logo {
  margin-left: 2rem;
  max-height: 3rem;
}
.main-menu-section .logo-text {
  -ms-flex-item-align: center;
      align-self: center;
  font-family: "Poppins", sans-serif;
  margin-left: 1.5rem;
  font-size: 1.8rem;
}
.main-menu-section .menu-main-toggle {
  margin-right: 2rem;
  margin-left: auto;
}

.menu-main {
  background-color: #fafafa;
  position: absolute;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  top: 4rem;
  right: 0;
  width: 100%;
  z-index: 2;
}
.menu-main li {
  padding: 0;
  text-align: center;
}
.menu-main .nav-link {
  padding: 0.7rem 0.8rem !important;
}
.menu-main .nav-link:hover {
  background-color: #AFE8FF;
}
@media (min-width: 768px) {
  .menu-main {
    position: relative;
    top: unset;
    width: unset;
  }
}

.sidebar-menu .menutitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 0.8rem;
}
.sidebar-menu ul {
  display: grid;
  list-style: none;
  padding: 0;
}
.sidebar-menu ul li {
  color: #C9FFFC;
}
.sidebar-menu ul .menuitem {
  width: 100%;
  padding-left: 2rem;
}
.sidebar-menu ul .menuitem.active {
  font-weight: bold;
}
.sidebar-menu ul .menuitem:hover:not(.active) {
  background-color: rgba(241, 241, 241, 0.5);
}
.sidebar-menu ul .menuitem:not(.active) .sub-menu {
  display: none;
}
.sidebar-menu ul .spacer {
  width: 90%;
  height: 2px;
  background-color: #C9FFFC;
  opacity: 0.3;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  justify-self: center;
}
.sidebar-menu .sub-menu {
  margin-left: 0.2rem;
  margin-right: 1rem;
}
.sidebar-menu .sub-menu .submenuitem {
  width: 100%;
}
.sidebar-menu .sub-menu .submenuitem:hover {
  background-color: rgba(241, 241, 241, 0.5);
}
.sidebar-menu .sub-menu .submenuitem i {
  rotate: 90deg;
}

/*---------- Menus ----------*/
.bold-blue-text {
  color: #004d7b;
  font-weight: 500;
}

.bold-green-text {
  color: #008000;
  font-weight: 500;
}

.disclaimer1 {
  font-style: italic;
  font-size: 0.8rem;
}

h1, h2, h3, h4, h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.3rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h1 {
  color: #002d6c;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  color: #002d6c;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  color: #002d6c;
  font-weight: 600;
}

h4 {
  line-height: 1.1;
  color: #0070cf;
  font-weight: 600;
}

h5 {
  line-height: 1.1;
  color: #0070cf;
  font-weight: 600;
}

/*---------- Modules Styling ----------*/
.quick-card {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .quick-card {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
.quick-card a {
  text-decoration: none;
  color: inherit;
}
.quick-card .quick-card-list {
  display: grid;
  padding-inline: 1.5rem;
  border: solid 3px #052d54;
  background-color: #fefefe;
}
@media (min-width: 992px) {
  .quick-card .quick-card-list {
    border-right: solid 10px #052d54;
  }
}
.quick-card .quick-card-list .quick-card-title {
  margin-top: 3rem;
  justify-self: left;
  color: #002d6c;
  font-size: 2.5rem;
  padding-inline: 0.3rem;
  border-bottom: solid 3px #004d7b;
  line-height: 1;
}
.quick-card .quick-card-list .quick-card-subtitle {
  color: #0099d8;
  line-height: 1.2;
  font-size: 0.8;
  font-family: "Poppins", sans-serif;
  padding-inline: 0.3rem;
  margin-bottom: 1.5rem;
}
.quick-card .quick-card-list .quick-card-heading {
  color: #0099d8;
}
.quick-card .quick-card-list ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: grid;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}
.quick-card .quick-card-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quick-card .quick-card-list ul li a {
  background-color: rgba(175, 232, 255, 0.2);
  padding-inline: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #004d7b;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  font-size: 1.4rem;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.quick-card .quick-card-list ul li a:hover, .quick-card .quick-card-list ul li a:focus {
  background-color: rgba(0, 112, 207, 0.2);
  scale: 1.05;
  font-weight: 500;
}
.quick-card .quick-card-list .quick-card-button {
  background-color: #004d7b;
  text-align: center;
  color: #f1f1f1;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  padding: 0.4rem;
  font-weight: 300;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.quick-card .quick-card-list .quick-card-button:hover, .quick-card .quick-card-list .quick-card-button:focus {
  background-color: #0099d8;
  outline: solid 1px #00f6e7;
  font-weight: 400;
  scale: 1.01;
}
.quick-card .quick-card-img {
  position: relative;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  isolation: isolate;
  min-height: 15rem;
  border: solid 3px #052d54;
}
@media (min-width: 768px) {
  .quick-card .quick-card-img {
    background-position: center;
  }
}
.quick-card .quick-card-img .quick-card-img-darkcover {
  position: absolute;
  inset: 0;
  background-color: #272727;
  opacity: 0.1;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.quick-card .quick-card-img .quick-card-img-btn {
  border: solid 2px #002d6c;
  background-color: #fefefe;
  padding: 0.5rem 3rem;
  color: #004d7b;
  border-radius: 10px;
  z-index: 1;
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0;
  scale: 0.1;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.quick-card .quick-card-img .quick-card-img-btn:hover, .quick-card .quick-card-img .quick-card-img-btn:focus {
  scale: 1;
  opacity: 1;
}
.quick-card .quick-card-img:hover .quick-card-img-darkcover, .quick-card .quick-card-img:focus .quick-card-img-darkcover {
  opacity: 0.6;
}
.quick-card .quick-card-img:hover .quick-card-img-btn, .quick-card .quick-card-img:focus .quick-card-img-btn {
  scale: 1;
  opacity: 1;
}
.quick-card .quick-card-img:hover .quick-card-img-btn:hover, .quick-card .quick-card-img:hover .quick-card-img-btn:focus, .quick-card .quick-card-img:focus .quick-card-img-btn:hover, .quick-card .quick-card-img:focus .quick-card-img-btn:focus {
  background-color: #EBF6FB;
}

.quick-card:nth-of-type(even) {
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .quick-card:nth-of-type(even) {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.quick-card:nth-of-type(even) .quick-card-list {
  border-right: solid 3px #002d6c;
  border-left: solid 10px #002d6c;
}

.quick-card-container {
  margin-inline: 1.5rem;
}

.forms-quick-card-container .quick-card {
  margin-bottom: 0;
}
.forms-quick-card-container .quick-card .quick-card-list ul {
  margin-bottom: 1rem;
}

.home-quickcard .quick-card {
  grid-template-columns: 1fr;
}
.home-quickcard .quick-card a {
  text-decoration: none;
  color: inherit;
}
.home-quickcard .quick-card .quick-card-list ul {
  margin-top: 1rem;
  overflow: hidden;
}
.home-quickcard .quick-card .quick-card-list ul li a {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 340px;
}
.home-quickcard .quick-card .quick-card-list ul li a:hover, .home-quickcard .quick-card .quick-card-list ul li a:focus {
  scale: unset;
  font-weight: unset;
}
.home-quickcard .quick-card .quick-card-list .quick-card-button {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
/*---------- All Pages ----------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
}

.bodycolor {
  background-color: #f1f1f1;
  font-family: "Roboto", sans-serif;
}

.center-flex {
  /*Flexbox for containers*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

/*---------- Login Page ----------*/
.login-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: auto;
  padding-bottom: auto;
  overflow: auto;
}
.login-box {
  margin-top: auto;
  margin-bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #f5f5f5;
  padding: 2em;
  border-radius: 3em;
  max-width: 25rem;
  min-width: 25rem;
}

.login-logo {
  margin-top: 1rem;
  width: 200px;
}

.login-heading {
  margin-bottom: 3rem;
  margin: auto;
  color: #002d6c;
}

.login-input {
  margin-top: 0.5rem;
}

.login-remember {
  text-align: right;
}

.login-button {
  margin-top: 1rem;
  background-color: #002d6c;
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  width: 90%;
  margin-top: 1rem;
  padding: 0.5rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
.login-button:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: #0070cf;
  z-index: -1;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.login-button:hover:after {
  width: 0;
}

.clear-button {
  margin-top: 1rem;
  background: #001b33;
  color: #272727;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  width: 30%;
  margin-top: 1rem;
  padding: 0.5rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
.clear-button:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
  background-color: #cccccc;
}
.clear-button:hover {
  color: #f1f1f1;
}
.clear-button:hover:after {
  width: 0;
}

.login-bottomtext {
  margin-top: 0.5rem;
}

.login-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.login-links .login-link-item {
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  color: #052d54;
  opacity: 80%;
}
.login-links .login-link-item i {
  margin-right: 0.5rem;
}
.login-links .login-link-item:hover {
  cursor: pointer;
  font-weight: 700;
}

.login-auth-access {
  margin-top: 2rem;
  font-size: 0.8rem;
}
.login-auth-access a {
  color: inherit;
}

.login-logo {
  margin: auto;
}

.register-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: auto;
  padding-bottom: auto;
  overflow: auto;
}
.area-bg-img {
  background-image: url(../../img/egrants-img/section-login/capitolimg1.jpg);
  background-position: center;
  width: 100dvw;
  min-height: 100dvh;
}

.register-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  text-align: center;
  background-color: #fafafa;
  padding: 2em;
  border-radius: 3em;
}

.register-box {
  border: solid 1px #cccccc;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  margin-top: 2rem;
  max-width: 43rem;
  text-align: left;
}
@media (min-width: 768px) {
  .register-box {
    grid-template-columns: 1fr 1fr;
  }
}
.button-box {
  text-align: center;
}

.register-box-title {
  position: absolute;
  top: -0.8rem;
  left: 2rem;
  background-color: #fafafa;
  padding: 0 1rem;
  font-weight: 500;
}

.register-input {
  margin-top: 0.5rem;
  width: 20rem;
}

.register-intro {
  font-weight: 400;
}

.register-colspan2 {
  margin-top: 0.5rem;
  grid-column: 1/span 2;
}

.register-textarea {
  height: 10rem !important;
}

/*---------- Homepage ----------*/ /*---------- Homepage ----------*/
.section-about-w-images {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1rem;
}
@media (min-width: 768px) {
  .section-about-w-images {
    padding-top: 2rem;
    grid-template-columns: 1fr 1fr;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media (min-width: 992px) {
  .section-about-w-images {
    padding-top: 5rem;
  }
}
.section-about-w-images .about-img-box {
  width: 100%;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .section-about-w-images .about-img-box {
    -ms-flex-line-pack: center;
        align-content: center;
    width: 70%;
    margin: auto;
  }
}
.section-about-w-images .about-img-box .about-images {
  -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.section-about-w-images .about-img-box .about-images .img1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
}
.section-about-w-images .about-img-box .about-images .img2 {
  position: absolute;
  right: 0;
  width: 50%;
}
.section-about-w-images .about-img-box .about-images .img3 {
  position: absolute;
  bottom: 0;
  width: 50%;
}
.section-about-w-images .about-img-box .about-images .img-desc-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 70%;
  display: grid;
  place-content: center;
  place-items: center;
  background-color: #004d7b;
  padding: 0.5rem;
  color: #f1f1f1;
}
.section-about-w-images .about-img-box .about-images .img-desc-box .staroog {
  line-height: 1;
  width: 7rem;
}
@media (min-width: 768px) {
  .section-about-w-images .about-img-box .about-images .img-desc-box .staroog {
    width: clamp(2rem, 7dvw, 7rem);
  }
}
.section-about-w-images .about-img-box .about-images .img-desc-box .img-desc-textbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.section-about-w-images .about-img-box .about-images .img-desc-box .img-desc-textbox .pre-heading {
  position: absolute;
  top: -0.6rem;
  left: 3rem;
  font-size: 1rem;
}
.section-about-w-images .about-img-box .about-images .img-desc-box .img-desc-textbox .number-grants {
  font-weight: 700;
  font-size: 5rem;
}
.section-about-w-images .about-img-box .about-images .img-desc-box .img-desc-textbox .text-grants {
  text-align: center;
  word-spacing: 100vw;
  font-weight: 600;
  font-size: 3rem;
}
@media (min-width: 768px) {
  .section-about-w-images .about-img-box .about-images .img-desc-box .img-desc-textbox .pre-heading {
    position: absolute;
    top: -0.6rem;
    left: 2.5rem;
    font-size: clamp(0.3rem, 1.5dvw, 1rem);
  }
  .section-about-w-images .about-img-box .about-images .img-desc-box .img-desc-textbox .number-grants {
    font-weight: 700;
    font-size: clamp(1.5rem, 5dvw, 5.5rem);
  }
  .section-about-w-images .about-img-box .about-images .img-desc-box .img-desc-textbox .text-grants {
    text-align: center;
    word-spacing: 100vw;
    font-weight: 600;
    font-size: clamp(0.8rem, 3dvw, 3rem);
  }
}
.section-about-w-images .about-text-box {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 2rem;
  font: "Roboto", sans-serif;
  line-height: 1.1;
}
.section-about-w-images .about-text-box .subheading {
  color: #007cb2;
  font-weight: 500;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  .section-about-w-images .about-text-box .subheading {
    font-size: clamp(1rem, 2dvw, 1.7rem);
  }
}
.section-about-w-images .about-text-box .title {
  margin-top: 0.5rem;
  color: #002d6c;
  line-height: 0.78;
  font-size: 2.8rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .section-about-w-images .about-text-box .title {
    font-size: clamp(2.8rem, 4dvw, 5rem);
  }
}
.section-about-w-images .about-text-box .text {
  margin-top: 1rem;
}
.section-about-w-images .about-text-box .text .bold {
  color: #004d7b;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-about-w-images .about-text-box .text {
    font-size: clamp(1.2rem, 2dvw, 1.5rem);
  }
}

.section-about-grants {
  line-height: 1.1;
  padding: 1rem;
}
.section-about-grants .about-grants-box {
  -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 992px) {
  .section-about-grants .about-grants-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 5rem 2rem;
  }
}
.section-about-grants .about-grants-box .grant-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fefefe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section-about-grants .about-grants-box .grant-item .grant-img {
  height: 4rem;
  max-height: 4rem;
  margin-top: 1rem;
}
.section-about-grants .about-grants-box .grant-item .title {
  color: #002d6c;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 1rem;
}
.section-about-grants .about-grants-box .grant-item .description {
  margin-top: 0.5rem;
  height: 100%;
}
.section-about-grants .about-grants-box .grant-item .learn-more {
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-decoration: none;
  background-color: #AFE8FF;
  outline: solid 2px #0070cf;
  padding: 0.5rem 1.5rem;
  margin-top: 2rem;
  margin-left: auto;
  color: #002d6c;
  font-weight: 700;
}
.section-about-grants .about-grants-box .grant-item .learn-more:hover, .section-about-grants .about-grants-box .grant-item .learn-more:focus {
  outline: solid 3px #0070cf;
}
.section-about-grants .about-grants-box .grant-item:not(:last-of-type) {
  border-bottom: solid 4px #EBF6FB;
}
@media (min-width: 992px) {
  .section-about-grants .about-grants-box .grant-item:not(:last-of-type) {
    border-right: solid 4px #EBF6FB;
    border-bottom: unset;
  }
}

.section-register-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0 4rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .section-register-button {
    padding-top: 0;
  }
}
.section-register-button .register-button {
  border: solid 2px #004d7b;
  border-radius: 1.5rem;
  padding: 0.5rem 5rem;
  background-color: #fefefe;
  text-decoration: none;
  color: #002d6c;
  font-size: 1.5rem;
  font-weight: 700;
}
.section-register-button .register-button:hover {
  border: solid 2px #0070cf;
  background-color: #002d6c;
  color: #fefefe;
}

.funding-sources {
  position: relative;
  padding: 0;
  line-height: 1.1;
  isolation: isolate;
  overflow: hidden;
}
.funding-sources .funding-sources-bg-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100dvw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.funding-sources .funding-sources-box {
  padding: 8rem 2rem 6rem;
}
.funding-sources .funding-sources-box .pre-heading {
  color: #C9FFFC;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 2rem;
}
.funding-sources .funding-sources-box .heading {
  line-height: 0.9;
  color: #f1f1f1;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.funding-sources .funding-sources-box a.fundingsource {
  display: block;
  text-decoration: none;
  background-color: #fefefe;
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
  color: #002d6c;
  font-size: clamp(1rem, 2.5dvw, 2rem);
  font-weight: 500;
}
.funding-sources .funding-sources-box a.fundingsource .bold {
  font-weight: 700;
}

.guides-section .title-box {
  padding: 3rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.guides-section .title-box .sml-title {
  position: absolute;
  color: #0070cf;
  font-size: 1rem;
  font-weight: 500;
  top: -1rem;
  left: 1rem;
}
.guides-section .title-box .lg-title {
  position: relative;
  color: #002d6c;
  font-weight: 700;
  line-height: 0.95;
  margin: 0.5rem 0;
  text-align: center;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .guides-section .title-box {
    padding: 1rem 5rem;
  }
  .guides-section .title-box .sml-title {
    top: -2rem;
    left: 3rem;
    font-size: 2rem;
  }
  .guides-section .title-box .lg-title {
    margin: 3rem 0;
    font-size: clamp(2rem, 5dvw, 5rem);
  }
}
.guides-section .guide-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3rem;
  isolation: isolate;
  overflow: hidden;
}
@media (min-width: 768px) {
  .guides-section .guide-box {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
.guides-section .guide-box .guide-list {
  margin-bottom: 2rem;
}
.guides-section .guide-box .guide-list li:first-child {
  border-top: solid 1px black;
}
.guides-section .guide-box .guide-list li {
  border-bottom: solid 1px black;
}
.guides-section .guide-box .guide-list .guide-list-link {
  line-height: 4rem;
  text-decoration: none;
  color: #272727;
  font-size: 1.3rem;
}
.guides-section .guide-box .guide-img-center {
  position: absolute;
  z-index: -1;
  scale: 1.5;
  opacity: 0.2;
}
.guides-section .guide-box .guide-button-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .guides-section .guide-box .guide-button-box {
    margin-top: 0;
    grid-column: 1/3;
    grid-template-columns: repeat(2, 1fr);
  }
}
.guides-section .guide-box .guide-button-box .guide-button {
  justify-self: center;
  text-decoration: none;
  border: solid 2px #0070cf;
  border-radius: 1rem;
  background-color: #fefefe;
  color: #0070cf;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
}
.guides-section .guide-box .guide-button-box .guide-button:hover {
  background-color: #0070cf;
  color: #f1f1f1;
}
.guides-section .guide-box .guide-button-box .guide-button:first-of-type {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .guides-section .guide-box .guide-button-box .guide-button:first-of-type {
    margin-top: 0;
  }
}

/*---------- List Page ----------*/
.entry-list {
  padding: 0 3rem;
  padding-bottom: 2rem;
}
.entry-list .entry-listitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.1;
  margin-top: 3rem;
}
.entry-list .entry-listitem .entry-topheading {
  color: #0070cf;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.5px;
}
.entry-list .entry-listitem .entry-title {
  color: #002d6c;
  font-size: 2.9rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -2px;
  margin-top: 0.3rem;
}
.entry-list .entry-listitem .entry-subheading {
  color: #0070cf;
  font-weight: 600;
  margin-top: 0.3rem;
}
.entry-list .entry-listitem .entry-content {
  color: #272727;
  margin-top: 1rem;
}
.entry-list .entry-listitem .entry-img {
  float: right;
  margin: 0.5rem;
  width: 300px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry-list .entry-listitem .readmore {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #0070cf;
  font-weight: 500;
  border: solid 1px #0070cf;
  margin-right: 3rem;
  margin-top: 1rem;
  padding: 0.2rem 0.8rem;
  text-decoration: none;
  line-height: 1;
}

/*--------------------------------------------*/
.guide-container .guide-page {
  padding: 1.5rem;
}
.guide-container .guide-page .guide-page-title {
  color: #007cb2;
  font-size: 2.5rem;
  font-weight: 400;
}
.guide-container .guide-page .page-footer {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 500;
  font-size: 2rem;
}
.guide-container .guide-page .page-footer .footer-green {
  color: green;
}
.guide-container .guide-page .page-number {
  color: #007cb2;
  font-weight: 500;
  -ms-flex-item-align: end;
      align-self: end;
  justify-self: end;
}
.guide-container .gp-tableofcontents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-bottom: 3px solid #002d6c;
}
@media (min-width: 768px) {
  .guide-container .gp-tableofcontents {
    grid-template-columns: 2fr 1fr;
  }
}
.guide-container .gp-tableofcontents .tableofcontents-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.guide-container .gp-tableofcontents .tableofcontents-left img {
  -ms-flex-item-align: center;
      align-self: center;
}
.guide-container .gp-tableofcontents .tableofcontents-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
}
.guide-container .gp-tableofcontents .tableofcontents-right ul {
  list-style: none;
  padding: 0;
}
.guide-container .gp-tableofcontents .tableofcontents-right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.guide-container .gp-tableofcontents .tableofcontents-right ul li a {
  text-decoration: none;
  color: inherit;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.guide-container .gp-tableofcontents .tableofcontents-right ul li:hover {
  background-color: #C9FFFC;
}
.guide-container .gp-tableofcontents .tableofcontents-right .toc-title {
  color: #004d7b;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Libre Baskerville", serif;
}
.guide-container .gp-tableofcontents .tableofcontents-right .toc-page {
  margin-left: 3rem;
}
.guide-container .gp-tableofcontents .tableofcontents-right .toc-subject {
  margin-left: 1.5rem;
  font-weight: 500;
}
.guide-container .gp-subject {
  min-height: 60dvh;
  background-color: #002d6c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.guide-container .gp-subject .guide-page-title {
  margin: 7rem 5rem;
  color: #f1f1f1;
  font-size: 6rem;
  font-weight: 500;
}
.guide-container .gp-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-bottom: 3px solid #002d6c;
}
@media (min-width: 768px) {
  .guide-container .gp-page {
    grid-template-columns: 3fr 1fr;
  }
}
.guide-container .gp-page .page-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.guide-container .gp-page .page-left .table {
  overflow-x: auto;
  margin: 1rem 0;
}
.guide-container .gp-page .page-left .table table th {
  text-align: center;
  font-size: 1.5rem;
  border-bottom: 3px solid #fefefe;
}
.guide-container .gp-page .page-left .table table tr {
  margin-bottom: 0.1rem;
  background-color: #ddd;
}
.guide-container .gp-page .page-left .table table tr:nth-child(even) {
  background-color: #f2f2f2;
}
.guide-container .gp-page .page-left .table table tr td {
  padding: 0.2rem 1rem;
  padding-right: 2rem;
}
.guide-container .gp-page .page-left .table table .bluebg {
  background-color: #002d6c;
  color: #f1f1f1;
  font-weight: 500;
}
.guide-container .gp-page .page-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.guide-container .gp-page .page-right .subject-title {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  background-color: #002d6c;
  padding: 0.1rem;
  color: #f1f1f1;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
}
.guide-container .gp-page .page-right .references {
  position: relative;
  border-top: solid 2px #007cb2;
  border-left: solid 2px #007cb2;
  padding-left: 0.5rem;
  padding-top: 0.3rem;
  padding-bottom: 2rem;
}
.guide-container .gp-page .page-right .references .title {
  position: absolute;
  margin-bottom: 0.3rem;
  top: -1.7rem;
  color: #008000;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.guide-container .gp-page .page-right .references .title i {
  margin-right: 1rem;
}
.guide-container .gp-page .page-right .references .content {
  font-size: 0.9rem;
}
.guide-container .gp-page .page-right .tools {
  position: relative;
  border-top: solid 2px #007cb2;
  border-left: solid 2px #007cb2;
  padding-left: 0.5rem;
  padding-top: 0.3rem;
  padding-bottom: 2rem;
}
.guide-container .gp-page .page-right .tools .title {
  position: absolute;
  margin-bottom: 0.3rem;
  top: -1.7rem;
  color: #002d6c;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.guide-container .gp-page .page-right .tools .title i {
  margin-right: 1rem;
}
.guide-container .gp-page .page-right .tools .content {
  font-size: 0.9rem;
}

/*--------------------------------------------*/
.opp-list-page, .opp-item-page {
  padding: 1.5rem;
}
.opp-list-page .opp-list-page-header, .opp-item-page .opp-list-page-header {
  padding-bottom: 2rem;
  border-bottom: solid 3px #004d7b;
  margin-bottom: 2rem;
}
.opp-list-page .opp-list-page-header .opp-page-title, .opp-item-page .opp-list-page-header .opp-page-title {
  color: #004d7b;
  font-weight: 500;
  font-size: 1.5rem;
}
.opp-list-page .opp-list-page-header .opp-page-desc, .opp-item-page .opp-list-page-header .opp-page-desc {
  margin-top: 1rem;
}
.opp-list-page .opp-list-item, .opp-item-page .opp-list-item {
  display: grid;
  padding: 1rem;
  border-radius: 1rem;
  border: solid 2px #004d7b;
  background-color: #fefefe;
}
.opp-list-page .opp-list-item:not(:last-child), .opp-item-page .opp-list-item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.opp-list-page .opp-list-item-header-box, .opp-item-page .opp-list-item-header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.opp-list-page .opp-list-item-header-box .opp-list-namegroup, .opp-item-page .opp-list-item-header-box .opp-list-namegroup {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  line-height: 1.1;
}
.opp-list-page .opp-list-item-header-box .opp-list-namegroup .opp-label, .opp-item-page .opp-list-item-header-box .opp-list-namegroup .opp-label {
  color: #007cb2;
  font-size: 0.9rem;
}
.opp-list-page .opp-list-item-header-box .opp-list-namegroup .opp-title, .opp-item-page .opp-list-item-header-box .opp-list-namegroup .opp-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002d6c;
}
.opp-list-page .opp-list-item-header-box .opp-list-namegroup .opp-title a, .opp-item-page .opp-list-item-header-box .opp-list-namegroup .opp-title a {
  color: inherit;
  text-decoration: none;
}
.opp-list-page .opp-list-item-header-box .opp-list-dategroup, .opp-item-page .opp-list-item-header-box .opp-list-dategroup {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  margin-right: 1rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .opp-list-page .opp-list-item-header-box .opp-list-dategroup, .opp-item-page .opp-list-item-header-box .opp-list-dategroup {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.opp-list-page .opp-list-item-header-box .opp-list-dategroup .opp-date-box, .opp-item-page .opp-list-item-header-box .opp-list-dategroup .opp-date-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.opp-list-page .opp-list-item-header-box .opp-list-dategroup .opp-date-box .opp-date-name, .opp-item-page .opp-list-item-header-box .opp-list-dategroup .opp-date-box .opp-date-name {
  color: #007cb2;
  font-size: 1.3rem;
}
.opp-list-page .opp-list-item-header-box .opp-list-dategroup .opp-date-box .opp-date, .opp-item-page .opp-list-item-header-box .opp-list-dategroup .opp-date-box .opp-date {
  font-weight: 500;
}
.opp-list-page.show .opp-list-item-content-box, .opp-item-page.show .opp-list-item-content-box {
  display: block;
}
.opp-list-page .opp-list-item-content-box .opp-list-details, .opp-item-page .opp-list-item-content-box .opp-list-details {
  margin-bottom: 1rem;
}
.opp-list-page .opp-list-item-content-box .opp-list-details .opp-label, .opp-item-page .opp-list-item-content-box .opp-list-details .opp-label {
  color: #007cb2;
  font-size: 1.3rem;
  font-weight: 600;
}
.opp-list-page .opp-list-item-readmore-box, .opp-item-page .opp-list-item-readmore-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
}
.opp-list-page .opp-list-item-readmore-box .total-funds-group, .opp-item-page .opp-list-item-readmore-box .total-funds-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1;
  display: grid;
  gap: 0.2rem;
  margin-left: 1rem;
}
.opp-list-page .opp-list-item-readmore-box .total-funds-group .total-title, .opp-item-page .opp-list-item-readmore-box .total-funds-group .total-title {
  font-size: 0.9rem;
}
.opp-list-page .opp-list-item-readmore-box .total-funds-group .total-value, .opp-item-page .opp-list-item-readmore-box .total-funds-group .total-value {
  color: #002d6c;
  font-weight: 500;
  font-size: 1.3rem;
}
.opp-list-page .opp-list-item-readmore-box .next-box, .opp-item-page .opp-list-item-readmore-box .next-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.opp-list-page .opp-list-item-readmore-box .readmore, .opp-list-page .opp-list-item-readmore-box .nextbutton, .opp-item-page .opp-list-item-readmore-box .readmore, .opp-item-page .opp-list-item-readmore-box .nextbutton {
  -ms-flex-item-align: end;
      align-self: flex-end;
  justify-self: flex-end;
  padding: 0.2rem 0.8rem;
  background-color: #002d6c;
  color: #f1f1f1;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-right: 1rem;
}
.opp-list-page .opp-list-item-readmore-box .nextbutton, .opp-item-page .opp-list-item-readmore-box .nextbutton {
  min-width: 120px;
}

.opp-item-page .opp-list-item-content-box .opp-list-details .opp-label {
  border-bottom: solid 1px #007cb2;
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
}
.opp-item-page .opp-list-item-readmore-box {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/*--------------------------------------------*/
.resources-page a {
  text-decoration: none;
}
.resources-page .section-box-area {
  position: relative;
  display: grid;
  gap: 3rem;
  border-bottom: solid 12px #002d6c;
  padding: 1.5rem;
}
.resources-page .section-box-area .card-section-title {
  color: #004d7b;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 2rem;
}
.resources-page .section-box-area .card-block-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 4rem;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .resources-page .section-box-area .card-block-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .resources-page .section-box-area .card-block-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.resources-page .section-box-area .card-block-container a {
  border-radius: 20px 20px 20px 20px;
}
.resources-page .section-box-area .card-block-container a .section-card {
  position: relative;
  isolation: isolate;
  border: solid 1px #002d6c;
  border-radius: 20px 20px 0 0;
  display: grid;
}
.resources-page .section-box-area .card-block-container a .section-card .card-img {
  position: relative;
  border-radius: 20px 20px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  aspect-ratio: 16/9;
}
.resources-page .section-box-area .card-block-container a .section-card .card-description {
  position: absolute;
  opacity: 0;
  inset: 0 0 2rem 0;
  border-radius: 20px 20px 0 0;
  padding: 1.5rem;
  color: #f1f1f1;
  font-weight: 500;
  font-size: clamp(0.7rem, 5dvw, 1.5rem);
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  scale: 0.2;
}
@media (min-width: 576px) {
  .resources-page .section-box-area .card-block-container a .section-card .card-description {
    padding: clamp(0.7rem, 1.5dvw, 2rem);
    font-size: clamp(0.7rem, 2dvw, 1.5rem);
  }
}
@media (min-width: 768px) {
  .resources-page .section-box-area .card-block-container a .section-card .card-description {
    padding: clamp(0.7rem, 1.5dvw, 2rem);
    font-size: clamp(0.7rem, 1.5dvw, 1.5rem);
  }
}
.resources-page .section-box-area .card-block-container a .section-card .card-title {
  background-color: #002d6c;
  color: #f1f1f1;
  font-weight: 500;
  padding-left: 1rem;
  line-height: 2rem;
}
.resources-page .section-box-area .card-block-container a .section-card .card-link {
  position: absolute;
  opacity: 0;
  bottom: 0;
  width: 100%;
  background-color: #fafafa;
  border-radius: 0 0 15px 15px;
  border-left: solid 1px #002d6c;
  border-right: solid 1px #002d6c;
  border-bottom: solid 1px #002d6c;
  padding: 0.7rem 0;
  padding-inline: auto;
  color: #002d6c;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  z-index: -5;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.resources-page .section-box-area .card-block-container a:hover .card-description, .resources-page .section-box-area .card-block-container a:focus .card-description {
  opacity: 100;
  scale: 1;
}
.resources-page .section-box-area .card-block-container a:hover .card-link, .resources-page .section-box-area .card-block-container a:focus .card-link {
  bottom: -2.8rem;
  opacity: 100;
  -webkit-transition: all 0.35s ease-in 0.5s;
  transition: all 0.35s ease-in 0.5s;
}
.resources-page .quick-box-area {
  display: grid;
}
.resources-page .quick-box-area .quick-section-title {
  color: #007cb2;
  font-weight: 500;
  font-size: 0.7;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}
.resources-page .quick-box-area .quick-section-subtitle {
  color: #002d6c;
  border-top: solid 1px #002d6c;
  font-size: 3rem;
  font-family: "Great Vibes", cursive;
}

.forms-page a {
  text-decoration: none;
}
.forms-page .page-title-group {
  margin: 1.5rem 2rem;
  line-height: 0.9;
  display: inline-block;
}
.forms-page .page-title-group .page-title {
  color: #004d7b;
  font-size: 2.1rem;
  font-weight: 800;
}
.forms-page .page-title-group .page-subtitle {
  text-align: right;
  color: #0099d8;
  font-size: 0.7;
  font-weight: 500;
}
.forms-page .group-list-download {
  line-height: 1.1;
  padding: 1rem;
}
.forms-page .group-list-download .group-list-title {
  margin-left: 1rem;
  color: #007cb2;
  font-size: 2rem;
  font-weight: 500;
  position: sticky;
  top: 0;
}
.forms-page .group-list-download .group-list-subtitle {
  margin-left: 1rem;
  color: #007cb2;
  font-weight: 300;
  line-height: 1.2;
  font-size: 1.3rem;
  border-top: solid 2px #007cb2;
  display: inline-block;
}
.forms-page .group-list-download ul {
  margin: 0.5rem 0 1rem;
  display: grid;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}
.forms-page .group-list-download ul li {
  background-color: rgba(175, 232, 255, 0.2);
  color: #004d7b;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.forms-page .group-list-download ul li a {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  overflow: hidden;
}
.forms-page .group-list-download ul li a:first-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.forms-page .group-list-download ul li a .item-title {
  line-height: 1;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.forms-page .group-list-download ul li a .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-size: 0.9rem;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  padding: 0.4rem 1rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.forms-page .group-list-download ul li a .download i {
  margin-left: 0.5rem;
}
.forms-page .group-list-download ul li a:hover, .forms-page .group-list-download ul li a:focus {
  outline: solid 2px rgba(0, 112, 207, 0.2);
}
.forms-page .group-list-download ul li a:hover .download, .forms-page .group-list-download ul li a:focus .download {
  background-color: rgba(0, 112, 207, 0.2);
  scale: 1.05;
  font-weight: 500;
  margin-left: 0.7rem;
}
@media (min-width: 768px) {
  .forms-page .group-list-download ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .forms-page .group-list-download ul li a:hover .download, .forms-page .group-list-download ul li a:focus .download {
    margin-left: unset;
  }
}

/*--------------------------------------------*/
.page-entry {
  padding: 0 2rem;
  padding-bottom: 2rem;
}

.page-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.1;
  margin-top: 3rem;
}
.page-item .page-topheading {
  color: #0070cf;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.5px;
}
.page-item .page-title {
  color: #002d6c;
  font-size: 2.9rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -2px;
  margin-top: 0.3rem;
}
.page-item .page-subheading {
  color: #0070cf;
  font-weight: 600;
  margin-top: 0.3rem;
}
.page-item .page-content {
  display: grid;
  color: #272727;
  margin-top: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-item .page-img-right {
  float: right;
  margin: 0.5rem;
  width: 300px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-item .page-img-left {
  float: left;
  margin: 0.5rem;
  width: 300px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-item .page-img-full {
  margin: 0.5rem;
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-item p {
  margin: 0.3rem 0;
}
.page-item .readmore {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #0070cf;
  font-weight: 500;
  border: solid 1px #0070cf;
  margin-right: 3rem;
  margin-top: 1rem;
  padding: 0.2rem 0.8rem;
  text-decoration: none;
  line-height: 1;
}

/* ##Debug Styles */
.debug1 {
  border: solid 2px red;
}

.debug2 {
  border: solid 7px green;
}

/*---------- Containers ----------*/
.container-fluid {
  padding: 0;
}

.container {
  padding: 0;
}

/*
    Custom Styles
    ------------------------------------------------------- 
    Changes input styles for registration and login pages
*/
/*-------------------------*/
/* Input Boxes ----------------------------------------------------*/
/* .login-input, .register-input {
    display: grid;
    position: relative;
    isolation: isolate;
}

.login-input input, .register-input input {
    z-index: 0;
    height: 60px;
    padding-top: 20px;
    padding-inline: 10px;
    font-size: 1rem;
}

.login-input label, .register-input label {
    position: absolute;
    top: 5px;
    z-index: 1;
    padding-inline: 10px;
    opacity: .6;
}

.login-input span, .register-input span {
    position: absolute;
    right: 12px;
    top: 25px;
    margin-left: 1rem;
    scale: 1.5;
}

.register-button-box{
    grid-column: 1 / span 2;

} */
/* Text Left ----------------------------------------------------*/
.text-left {
  text-align: left;
}

/* Reset Body ----------------------------------------------------*/
body {
  margin: 0;
}

/* Login + Register Area Fix for bgimage ----------------------------------------------------*/
.login-area, .register-area {
  min-height: 100%;
  padding: 1rem;
}

/* Validation Star ----------------------------------------------------*/
.register-area span {
  font-size: 1.05rem;
  /* padding: 2rem 1rem 0; */
}

.fsstyle {
  /* display:none; */
}

.navbar {
  list-style: none;
}

p:not(:last-of-type) {
    margin-bottom: 1rem;

}