/* Footer
========================================================================== */
.footer {
  background: rgb(37, 47, 51);
  color: #f3f2f2;
  font-size: 0.9rem;
  padding: 1rem;
}
@media screen and (min-width: 1100px) {
  .footer {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 2rem;
  }
}

.footer__left {
  padding-bottom: 1rem;
}
@media screen and (min-width: 1100px) {
  .footer__left {
    grid-column: 1;
  }
}

.footer__left--nemo-logo {
  margin-bottom: 1rem;
}
.footer__left--nemo-logo img {
  width: 250px;
}

.footer__left--contact {
  margin-bottom: 1rem;
}

.footer__left--copyright a, .footer__left--copyright header .site_logo a, header .site_logo .footer__left--copyright a {
  color: #f3f2f2;
  text-decoration: none;
}
.footer__left--copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

/*--------------------------------
    Footer Right
--------------------------------*/
@media screen and (min-width: 1100px) {
  .footer__right {
    grid-column: span 1;
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
  }
}

/*----------------------
    Footer Right Nav
----------------------*/
.footer__right--nav {
  margin: 2rem 0;
}
@media screen and (min-width: 1100px) {
  .footer__right--nav {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 0 1.5rem 0;
  }
}

.footer__right--nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  .footer__right--nav ul {
    float: right;
  }
}

.footer__right--nav ul li {
  display: block;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  .footer__right--nav ul li {
    display: inline-block;
  }
}

.footer__right--nav ul li a {
  color: #f3f2f2;
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 1100px) {
  .footer__right--nav ul li a {
    border-right: 1px solid #f3f2f2;
    padding: 0 2.85rem;
  }
}
.footer__right--nav ul li a:hover {
  color: #fff;
}

.footer__right--nav ul li:first-child a {
  padding-left: 0;
}

.footer__right--nav ul li:last-child a {
  border-right: 0;
  padding-right: 0;
}

/*----------------------
    Footer Right NIH
----------------------*/
.footer__right--nih svg {
  fill: rgb(173, 173, 173);
  width: 100%;
  max-width: 190px;
  height: auto;
}
@media screen and (min-width: 1100px) {
  .footer__right--nih {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }
}
.footer__right--nih svg:hover {
  fill: #fff;
}

/*----------------------
    Footer Right NIDA
----------------------*/
.footer__right--nida {
  margin: 2rem 0 0 0;
}
.footer__right--nida svg {
  fill: rgb(173, 173, 173);
  width: 100%;
  max-width: 210px;
  height: auto;
}
@media screen and (min-width: 1100px) {
  .footer__right--nida {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    text-align: center;
  }
}
.footer__right--nida svg:hover {
  fill: #fff;
}

/*----------------------
    Footer Right IGS
----------------------*/
.footer__right--igs-logo {
  width: 100%;
  max-width: 200px;
  margin-top: 2rem;
}
.footer__right--igs-logo svg {
  fill: rgb(173, 173, 173);
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 1100px) {
  .footer__right--igs-logo {
    grid-column: 3;
    grid-row: 2;
    margin-top: 0;
    margin-left: auto;
  }
}

.footer__right--igs-logo svg:hover {
  fill: #fff;
}