html,body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body {
  font-size: 17px;
  color: #212121;
  font-family: 'Avenir','Open Sans', 'Helvetica', Arial, sans-serif;
}

p {
  line-height: 1.5;
  margin: 30px 0;
}

p a {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  font-family: 'Avenir','Open Sans', 'Helvetica', Arial, sans-serif;
}

a {
  color: #212529;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

a:focus, a:hover {
  color: #3e7eb9;
}

blockquote {
  font-style: italic;
  color: #868e96;
}

.section-heading {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
}

.caption {
  font-size: 14px;
  font-style: italic;
  display: block;
  margin: 0;
  padding: 10px;
  text-align: center;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

::-moz-selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

img::selection {
  color: #fff;
  background: transparent;
}

img::-moz-selection {
  color: #fff;
  background: transparent;
}

#mainNav {
  position: fixed;
  background:linear-gradient(to right, #ddd,white,white,white,white,#ddd);
  background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

.nav-item.dropdown {
  display: inline-flex;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

#mainNav .navbar-brand {
  font-weight: 800;
  color: #343a40;
}

#mainNav .navbar-toggler {
  font-size: 15.5px;
  font-weight: 600;
  padding: 11px 15px;
  text-transform: uppercase;
  color: rgb(46, 46, 46);
  border: 1px solid rgb(46, 46, 46);
}

#mainNav .navbar-nav > li.nav-item > a {
  font-size: 1rem;
  font-weight: 600;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  color: rgb(46, 46, 46);
}

@media only screen and (min-width: 992px) {
  #mainNav {
    /* border-bottom: 1px solid transparent; */
    /* background: transparent; */
  }
  #mainNav .navbar-brand {
    padding: 2px 16px;
    color: #fff;
  }
  #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.1);
  }
  #mainNav .navbar-nav > li.nav-item > a {
    padding: 10px 12px;
    color: rgb(46, 46, 46);
  }

  #mainNav .navbar-nav > li.nav-item > a.adjust:first-child {
    padding: 10px 5px 10px 10px;
  }
  #mainNav .navbar-nav > li.nav-item > a.adjust {
    padding: 10px 10px 10px 0;
  }

  #mainNav .navbar-nav > li.nav-item > a:focus, #mainNav .navbar-nav > li.nav-item > a:hover {
    color: rgba(0, 0, 0, 0.4);
  }

}
.adjust {
  display: inline-flex;
}

@media only screen and (max-width: 991px) {
  .nav-item.dropdown {
    padding: 0.5rem 0;
  }
  .navbar-nav {
    margin: 1rem 0 0.5rem 0;
    text-align: center;
  }
  .adjust {
    display: inline;
  }
  .dropdown-toggle.adjust {
    width: 27px;
    height: 26px;
    position: absolute;
    padding-top: 0;
    background: #e8e8e8;
    border-radius: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .blog-post {
    margin: 0 14px !important;
  }
}

@media only screen and (min-width: 992px) {
  #mainNav {
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
  }
  #mainNav.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -107px;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
    border-bottom: 1px solid white;
    background-color: rgba(255, 255, 255, 0.9);
  }
  #mainNav.is-fixed .navbar-brand {
    color: #212529;
  }
  #mainNav.is-fixed .navbar-brand:focus, #mainNav.is-fixed .navbar-brand:hover {
    color: #0085A1;
  }
  #mainNav.is-fixed .navbar-nav > li.nav-item > a {
    color: #212529;
  }
  #mainNav.is-fixed .navbar-nav > li.nav-item > a:focus, #mainNav.is-fixed .navbar-nav > li.nav-item > a:hover {
    color: #0085A1;
  }
  #mainNav.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

header.masthead {
  background-image: url("http://d2e3j4dnfz1tx9.cloudfront.net/img/STEM_Web_Banner.jpg");
  margin-bottom: 20px;
  /* background: no-repeat center center;
  background-color: #868e96;
  background-attachment: scroll; */
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#header-outpost {
  background-image: url("http://d2e3j4dnfz1tx9.cloudfront.net/img/outpost_network.png");
  margin-bottom: 20px;
  /* background: no-repeat center center;
  background-color: #868e96;
  background-attachment: scroll; */
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
header.masthead .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-color: #212529; */
  /* background-color: #534a75; */
  background-color: #808080;
  opacity: 0.1;
}

header.masthead .page-heading,
header.masthead .post-heading,
header.masthead .site-heading {
  padding: 180px 0 150px;
  color: white;
}

@media only screen and (min-width: 576px) {
  header.masthead .page-heading,
  header.masthead .post-heading,
  header.masthead .site-heading {
    padding: 185px 0;
  }
}

@media only screen and (min-width: 768px) {
  header.masthead .page-heading,
  header.masthead .post-heading,
  header.masthead .site-heading {
    padding: 200px 0;
  }
}

header.masthead .page-heading,
header.masthead .site-heading {
  text-align: center;
}

header.masthead .page-heading .main-title,
header.masthead .site-heading .main-title {
  font-size: 1.75rem;
  text-shadow: 1px 1px 1px #545454;
  font-weight: 600;
  margin-top: 0;
}

@media only screen and (min-width: 576px) {
  header.masthead .page-heading .main-title,
  header.masthead .site-heading .main-title {
    font-size: 2.1rem;
  }
}

@media only screen and (min-width: 768px) {
  header.masthead .page-heading .main-title,
  header.masthead .site-heading .main-title {
    font-size: 2.1rem;
  }
}

header.masthead .page-heading .subheading,
header.masthead .site-heading .subheading {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  display: block;
  margin: 1rem 0 0;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@media only screen and (min-width: 768px) {
  header.masthead .page-heading h1,
  header.masthead .site-heading h1 {
    font-size: 80px;
  }
}

header.masthead .post-heading h1 {
  font-size: 35px;
}

header.masthead .post-heading .meta,
header.masthead .post-heading .subheading {
  line-height: 1.1;
  display: block;
}

header.masthead .post-heading .subheading {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 30px;
}

header.masthead .post-heading .meta {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
}

header.masthead .post-heading .meta a {
  color: #fff;
}

.lab_logo {
  width: 175px;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 370px) {
  .lab_logo {
    width: 180px;
  }
}

@media only screen and (min-width: 410px) {
  .lab_logo {
    width: 198px;
  }
}

@media only screen and (min-width: 768px) {
  .post-preview > a > .post-title {
    font-size: 24px;
  }
  .lab_logo {
    width: 208px;
  }
}

.floating-label-form-group {
  font-size: 14px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #dee2e6;
}

.floating-label-form-group input,
.floating-label-form-group textarea {
  font-size: 1.5em;
  position: relative;
  z-index: 1;
  padding: 0;
  resize: none;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none !important;
  font-family: 'Lora', 'Times New Roman', serif;
}

.floating-label-form-group input::-webkit-input-placeholder,
.floating-label-form-group textarea::-webkit-input-placeholder {
  color: #868e96;
  font-family: 'Lora', 'Times New Roman', serif;
}

.floating-label-form-group label {
  font-size: 0.85em;
  line-height: 1.764705882em;
  position: relative;
  z-index: 0;
  top: 2em;
  display: block;
  margin: 0;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease;
  -moz-transition: top 0.3s ease, opacity 0.3s ease;
  -ms-transition: top 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease;
  vertical-align: middle;
  vertical-align: baseline;
  opacity: 0;
}

.floating-label-form-group .help-block {
  margin: 15px 0;
}

.floating-label-form-group-with-value label {
  top: 0;
  opacity: 1;
}

.floating-label-form-group-with-focus label {
  color: #0085A1;
}

form .form-group:first-child .floating-label-form-group {
  border-top: 1px solid #dee2e6;
}

.btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
}

.btn-primary {
  background-color: #009cbd;
  border-color: #009cbd;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  /* color: #fff;
  background-color: #00657b !important;
  border-color: #00657b !important; */
  background: transparent !important;
  color: #00657b !important;
  border-color: #00657b !important;
}

.btn.btn-primary.no-underline {
  border-radius: 25px;
  padding: 6px 24px 7px 24px;
}

.btn.btn-primary.no-underline:after {
  content: "\f101";
  font-family: FontAwesome;
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0 0 0 0.7rem;
}

.btn-lg {
  font-size: 16px;
  padding: 25px 35px;
}

.arrow {
  display: flex;
}

.fa-inverse {
  color: #2e5da2 !important;
  font-size: 1.5rem;
}

.fa-lg {
  font-size: 1.45rem;
}

.twt-lg {
  font-size: 2.25rem;
}

.fa-circle {
  color: white;
}

.navbar {
  border-bottom: 1px solid #94949473;
  padding: 0.4rem 1rem;
}

.beta {
  display: none;
  position: relative;
  color: orangered;
  font-weight: 600;
  font-size: 15px;
  top: -5px;
  text-align: right;
  z-index: 1;
}

#beta {
  position: relative;
  color: orangered;
  font-weight: 600;
  font-size: 13px;
  top: -15px;
  text-align: right;
  z-index: 1;
}


@media only screen and (max-width: 991px) {
  #beta {
    right: 18%;
  }
}

/* Contact Page Styles */

.contact-info {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
}
.contact-title {
  font-size: 1.75rem;
}

/* blog */
.blog-row {
  margin-bottom: 25px;
}

.blog-post {
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  padding: 14px 18px;
  background: linear-gradient(to right, #f3f3f3, white, white, #f3f3f3, white, white, #f3f3f3);
}

.blog-container {
  margin-bottom: 50px;
  padding: 0 20px;
}

.blog-post-container {
  min-height: 350px;
  margin-bottom: 60px;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media only screen and (max-width: 991px) {
  .blog-row {
    width: 100%;
  }
}


/* pic */

.card {
  /* flex: auto; */
  flex: 2 3 36%;
  max-width: 360px;
  /* width: 31%; */
  margin: 14px 14px 24px 14px;
  margin: 5px 10px 15px 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card {
    min-width: 50%;
    width: 50%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .card {
    min-width: 50%;
    width: 50%;
    max-width: 100%;
  }
}

.card-body {
  padding: 0.85rem;
}

.card-title {
  color: #4a4a4a;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .3rem;
}

.card-title:hover {
  color: #3e7eb9;
}

.card-img-top {
  min-height: 258px;
  height: 258px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-img-top {
    min-height: 350px;
    height: 350px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card-img-top {
    min-height: 300px;
    height: 300px;
  }
}

.card-text {
  margin: .75rem 0 0.5rem 0;
  line-height: 1.35;
}

.card-button {
  margin: 0;
  position: absolute;
  bottom: 1rem;
  /* background-color: #3e7eb9; */
  background: linear-gradient(to right,#009cbd, #3e7eb9);
  padding: 5px 14px;
  border-radius: 25px;
  color: white;
  font-size: 1.0rem;
  font-weight: 500;
}

.card-button:hover {
  cursor: pointer;
  color: #3e7eb9;
  background: transparent;
  border: 1px solid #3e7eb9;
  padding: 5px 15px;
}

.go-button {
  display: none;
}

.stations-main {
  /* margin: 10px; */
  margin-bottom: 3rem;
  box-shadow: 0 0.15rem 0.9rem rgba(0,0,0,.15)!important;
  padding: 0;
}

.explore-create-share {
  background: linear-gradient(to right, #30CFD0 20%, #330867 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 991px) {
  .pic-container {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 280px) and (max-width: 768px) {
  .pic-container {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

/* carousel */
/* .carousel {
  width: 100%;
  margin: 0 auto;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.carousel-caption {
  position: absolute;
  width: 100%;
  right: 0%;
  bottom: 0px;
  left: 0%;
  z-index: 10;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #fff;
  background-color: #3e7eb9;
  text-align: center;
}

.carousel-item > .d-block {
  height: 100%;
  min-height: 360px;
  max-height: 440px;
}

.carousel-caption > p {
  margin: 12px 0;
} */


/* footer */

footer {
  /* background-color:#4017bd; */
  /* background-color: #3e3e3ed1; */
  background-color: rgb(13,45,82);
  /* background: linear-gradient(to right, #162945, #274675); */
  background: linear-gradient(to right, rgb(13,45,82,0.85), rgb(13,128,180));
  padding: 2rem 0 2rem 0;
}

footer .list-inline {
  margin: 0;
  padding: 0;
}

footer .copyright {
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
  color: #eaeaea;
}
.left-logo div, .footer-right-links .list-inline {
  font-size: 1rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p{
  color: #eaeaea;
  margin: 5px 0 0 0;
}

.footer-link {
  color: #eaeaea;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.98);
}

.footer-li {
  margin-bottom: 6px;
}

.left-logo {
  align-items: center;
}

@media only screen and (max-width: 575px) {
  .footer-container {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .row.left-logo {
    display: block;
  }
  .footer-container {
    text-align: center;
  }
}

@media only screen and (max-width: 992px) {
  .row.left-logo {
    display: block;
  }

  .footer-container {
    display: block;
    width: 315px;
    text-align: center;
  }

  .footer-right-links {
    text-align: center;
  }

  .footer-container .row {
    margin-bottom: 2.5rem;
  }
  .footer-container .row:first-child {
    margin-top: 2rem;
  }
  .footer-container .row:last-child {
    margin-bottom: 0.75rem;
  }
}

/* FAQ styles */
.main-faq {
  padding: 2rem 0;
}

.faq-main-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.plus-icon {
  display: flex !important;
  align-items: center;
}

.glyphicon {
  margin-right:5px;
}

.search-button {
  padding: 8px 16px;
}

.plus {
  height: 25px;
  width: 25px;
  background: white;
  position: absolute;
  right: 20px;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}

.form-control:focus {
  box-shadow: 0 0 0 0.01rem rgba(0,123,255,.25);
}

.container {
  /* height: 400px; */
  padding-bottom: 2rem;
}

.menu-container {
  padding: 0;
}

.home-pic {
  height: 320px;
}

.dropdown-menu .nav-link:hover {
  background-color: #f1f1f1;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}


@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 290px;
  }
  .dropdown-menu .nav-link:hover {
    background-color: #f1f1f1;
  }
}



@media only screen and (max-width: 991px) {
  .dropdown-menu.show {
    background: linear-gradient(to left, white, #f3f3f3);
    width: 60%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 768px) {
  .dropdown-menu.show {
    width: 70%;
  }
}

@media only screen and (min-width: 280px) and (max-width: 576px) {
  .dropdown-menu.show {
    width: 80%;
  }
}


.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 1);
  font-size: 1.0rem;
}

.dropdown-menu a {
  text-decoration: none;
}

.each-tweet {
  display: flex;
}

.tweet-icon {
  text-align: center;
  padding-bottom: 1.1rem;
}

.tweet-description {
  font-size: 1.45rem;
  border-left: 1px solid white;
  margin: 0 0 0 1.75rem;
  padding: 0 0 0 1.75rem;
}
.tweet-description a {
  color: white;
}

#main-tweet-container {
  margin: 0 auto;
  padding: 2rem 2rem;
}

.tooltip > .tooltip-inner {
  background-color: white;
  color: #0085A1;
  border: 1px solid #0085A1;
  font-family: 'Avenir','Open Sans', 'Helvetica', Arial, sans-serif;
  font-size: 0.95rem;
}

@media only screen and (min-width: 280px) and (max-width: 399px) {
  #main-tweet-container {
    min-height: 400px;
    padding: 2rem 0 0 0;
  }
}

@media only screen and (min-width: 400px) and (max-width: 576px) {
  #main-tweet-container {
    min-height: 360px;
    padding: 2rem 0 0 0;
  }
}

@media only screen and (min-width: 577px) and (max-width: 991px) {
  #main-tweet-container {
    min-height: 290px;
  }
}

@media only screen and (min-width: 991px) {
  #main-tweet-container {
    min-height: 210px;
  }
}



@media only screen and (min-width: 275px) and (max-width: 991px) {
  .each-tweet {
    display: block;
    text-align: center;
  }

  .tweet-description {
    font-size: 1.25rem;
    border-left: none;
    margin: 1.25rem;
    padding: 0;
  }
}


/* Style the back-to-top floating button */
.back-to-top {
  /* background-color: #50A1CB; */
  /* background: linear-gradient(to right, #4e54c8, #585caf); */
  /* background: linear-gradient(to left, rgb(24,64,80), rgb(49,114,138)); */
  background: linear-gradient(to right,#009cbd, #3e7eb9);
  border: 1px solid white;
  color: white;
  display: none;
  z-index: 999;
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 45px;
  height: 45px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

a.back-to-top {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
  padding-left: 2px;
  padding-top: 4px;
}

a.back-to-top:hover {
  background: linear-gradient(to left, rgb(42, 109, 136), rgb(73, 159, 191));
  color: white;
}

.project-main {
  border: 1px solid #d4d4d4;
  padding: 0;
  border-radius: 4px;
  margin: 1.75rem 0 2.75rem 0;
  box-shadow: 0 0.15rem 0.9rem rgba(0,0,0,.15)!important;
}

.project-title-description {
  min-height: 294px;
}

@media only screen and (min-width: 200px) and (max-width: 600px) {
  .project-title-description {
    min-height: 360px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 991px) {
  .project-title-description {
    min-height: 305px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .project-title-description {
    min-height: 294px;
  }
}

/* @media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-title-description {
    min-height: 294px;
  }
} */

.coming-soon {
  background: #a6a6a7;
}

.coming-soon:hover {
  background: #a6a6a7;
  color: white;
  border: none;
}

.border-left-radius {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.project-img-div {
  padding: 0;
}

.project-img {
  width: 100%;
  min-height: 294px;
  height: 294px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-img {
    min-height: 290px;
    height: 290px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-img {
    min-height: 310px;
    height: 310px;
  }
}

.faq-main-title .anchorjs-link {
  display: none;
}

[data-toggle="lightbox"] p{
  margin: 10px 0;
  font-size: 0.97rem;
}

.f-p-title {
  font-size: 1.4rem;
}

.f-p-description {
  min-height: 130px;
}

@media only screen and (max-width: 991px) {
  .f-p-description {
    min-height: 100%;
  }
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('https://spacemath.gsfc.nasa.gov/img/eclipse.gif') 50% 50% no-repeat rgb(249,249,249);
  opacity: .8;
}

.question {
  margin: 0.4rem 0 0.6rem 0;
}
p.accordion {
  background-color: #009cbd;
  color: white;
  cursor: pointer;
  padding: 0.8rem 1rem;
  font-size: 1.05rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin: 0;
  /* margin-bottom:10px; */
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.accordion.active, p.accordion:hover {
  background-color: #08b0d4;
}

p.accordion:after {
  content: '\2795';
  color: white;
  float: right;
  margin-left: 5px;
}
p.accordion::after {
  color: white;
}

p.accordion.active:after {
  content: "\2796";
}

div.panel {
  padding: 0.3rem 1rem;
  border: 1px solid #08b0d4;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  opacity: 0;
}

div.panel.show {
  opacity: 1;
  max-height: 550px;
}

.no-underline {
  text-decoration: none;
}

.team-description {
  font-size: 1rem;
  text-align: left;
}

.explore {
  border: 1px solid #0085A1;
  border-radius: 2px;
  margin: 1.75rem 0.4rem;
}

.explore-title {
  margin: 0;
  background-color: #0085A1;
  text-align: center;
  padding: 0.6rem;
  font-size: 1.25rem;
  color: white;
}

.explore-desc {
  padding: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

.create {
  border: 1px solid rgb(95,51,131);
  border-radius: 2px;
  margin: 1.75rem 0.4rem;
}

.create-title {
  margin: 0;
  background-color: rgb(95,51,131);
  text-align: center;
  padding: 0.6rem;
  font-size: 1.25rem;
  color: white;
}

.create-desc {
  padding: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

.share {
  border: 1px solid rgb(9,94,167);
  border-radius: 2px;
  margin: 1.75rem 0.4rem;
}

.share-title {
  margin: 0;
  background-color: rgb(9,94,167);
  text-align: center;
  padding: 0.6rem;
  font-size: 1.25rem;
  color: white;
}

.share-desc {
  padding: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

@media only screen and (max-width: 992px) {
  #explore-mobile {
    display: block;
  }
  #explore-full {
    display: none;
  }
  .mobile-center {
    text-align: center;
  }
  #outpost-faq div.panel.show {
    opacity: 1;
    max-height: 1300px;
  }

}

@media only screen and (min-width: 992px) {
  #explore-mobile {
    display: none;
  }
  #explore-full {
    display: block;
  }

}

@media only screen and (max-width: 1250px) {
  .mobile-center {
    text-align: center;
  }
  .mobile-mt-4 {
    margin-top: 1.5rem !important;
  }
}

@media only screen and (min-width: 1250px) {
  .about-pi {
    display: flex;
  }
}

.brightness-110 {
  filter: brightness(110%);
}

.brightness-125 {
  filter: brightness(125%);
}

.brightness-150 {
  filter: brightness(150%);
}

.brightness-200 {
  filter: brightness(200%);
}

code {
  background: linear-gradient(to right,#009cbdbf, #3e7eb9b8);
  font-size: 90%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  padding: 0.2rem .35rem .2rem;
  border-radius: .2rem;
  color: white;
}