/* version: 1.4 */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&family=Chicle&family=Mouse+Memoirs&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&family=Orbitron:wght@400..900&display=swap');
body {
  /* font-family: 'Mouse Memoirs', sans-serif; */
  font-family: 'Cairo', sans-serif;
  background-color: #ebf2ff;
  font-size: 16px;
  min-width: 375px;
}
header {
  position: relative;
  z-index: 1;
}
.stem-header {
  /* padding: 10px 0; */
  background-color: #4463b2;
}
.stem-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.stem-header__wrapper .navbar-toggler {
  color: #ffffff;
  font-size: 24px;
}
.stem-header__wrapper .navbar-toggler .fa-bars {
  display: none;
}
.stem-header__wrapper .navbar-toggler.collapsed .fa-bars {
  display: inline-block;
}
.stem-header__wrapper .navbar-toggler.collapsed .fa-times {
  display: none;
}
.stem-navbar {
  display: flex;
  padding: 8px 0;
  margin-left: auto;
  /* background-color: #132e68; */
}
.stem-navbar ul {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.stem-navbar ul li a {
  color: #ebf2ff;
  padding: 2px 8px;
  margin: 0 8px;
  transition: all .3s ease-in-out;
}
.stem-navbar ul li a:hover {
  background-color: #34529f;
}
.stem-navbar ul li::marker {
  content: '';
}
.stem-top {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  justify-content: center;
}
.stem-top__link {
  color: #ebf2ff;
  border: 1.5px solid #ebf2ff;
  border-radius: 4px;
  line-height: 1;
  padding: 6px 10px;
  text-transform: uppercase;
  transition: background-color .3s ease-in-out;
  cursor: pointer;
}
.stem-top__link:hover {
  color:#ebf2ff;
  background-color: #ff6d00;
}
.stem-logo {
  height: 60px;
  width: auto;
  margin-top: -10px;
}
main {
  overflow: hidden;
}
.stem-masthead {
  background-color: #4463b2;
  position: relative;
  padding-top: 20px;
}
.stem-masthead__wrapper {
  min-height: 250px;
  /* padding: 100px; */
  padding-bottom: 200px;
  position: relative;
}
.stem-masthead__image,
.stem-masthead__image-2 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
}
.stem-masthead__image-2 {
  top: 100%;
}
.stem-masthead__content {
  text-align: center;
  margin-bottom: 30px;
}
.stem-masthead__content-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}
.stem-masthead__title {
  font-weight: 100;
  color: #ebf2ff;
  line-height: 1.2;
}
.stem-content_title {
  margin: 16px 0 8px;
}
.stem-content_title,
.stem-masthead__title span {
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  color: #ffb657;
  position: relative;
}

.stem-content_title::after,
.stem-masthead__title span::after {
  content: '';
  height: 1px;
  width: 100px;
  background-color: #ffb657;
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: -2px;
  margin: auto;
}
.stem-content {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.stem-content::after {
  content: '';
  height: 120px;
  width: 100%;
  background-color: #132e68;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.stem-content_subtitle {
  font-size: 16px;
  text-align: center;
}
.stem-projects {
  padding: 40px;
  box-shadow: 0px 16px 20px 0px rgba(0,0,0,.1);
  border-radius: 10px;
  background-color: #ebf2ff;
}
.stem-projects__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stem-projects__button {
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 180px;
  width: 180px;
  position: relative;
  border: 2px solid #4463b2;
  background-color: #d9e5ff;
  border-radius: 100%;
  margin: 0 10px;
  transition: all .3s ease-in-out;
}
.stem-projects__button.active,
.stem-projects__button:hover {
  background-color: #4463b2;
  color: #d9e5ff;
}
.stem-projects__title {
  display: block;
  font-size: 80px;
  font-weight: 1000;
  color: #ffb657;
}
.stem-projects__desc {
  font-size: 20px;
  display: block;
}
.stem-projects__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
}
.stem-projects__link {
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1.5px solid #4463b2;
  border-radius: 4px;
  color: #4463b2;
  font-weight: 600;
  line-height: 1;
  padding: 4px 8px;
  transition: all .3s ease-in-out;
}
.stem-projects__link:hover {
  color: #4463b2;
  background-color: #ff6d00;
  color: #ffffff;
}
.stem-footer {
  background-color: #132e68;
  text-align: center;
  padding: 32px 0;
  display: flex;
  justify-content: center;
}
.stem-footer__link {
  display: flex;
  align-items: center;
  color:#ebf2ff;
  line-height: 1;
  transition: opacity .3s ease-in-out;
}
.stem-footer__link img {
  height: 20px;
  width: auto;
  margin-right: 4px;
}
.stem-footer__link:hover {
  color: #d9e5ff;
  opacity: .7;
}
.s-box {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 20px 12px;
  height: 100%;
  background-color: rgba(217,229,255,.5);
}
.code {
  font-family: 'Courier New', monospace;
  background: black;
  color: white;
  padding: 16px;
  margin: 12px 0;
}
.code span {
  display: block;
}
nav[aria-label="breadcrumb"] {
  font-size: 0.9rem;
}

nav[aria-label="breadcrumb"] ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 16px;
}

nav[aria-label="breadcrumb"] li {
  display: flex;
  align-items: center;
}

nav[aria-label="breadcrumb"] li + li::before {
  content: "›"; /* Separator */
  margin: 0 0.5em;
  color: #999;
}

nav[aria-label="breadcrumb"] a {
  text-decoration: none;
  color: #ff6d00;
}
.stem-menu__link {
  color: #ebf2ff;
  border: 1.5px solid #4463b2;
  border-radius: 4px;
  line-height: 1;
  padding: 6px 10px;
  text-transform: uppercase;
  transition: background-color .3s ease-in-out;
  cursor: pointer;
  color:#4463b2;
  background-color: transparent;
}
.stem-menu__link:hover {
  color:#4463b2;
  background-color: #d1deff;
}
.stem-menu_info {
  color: #54b4d3;
  border-color: #54b4d3;
}
.stem-menu_info:hover {
  color:#54b4d3;
  background-color: #ddf6ff;
}
.stem-menu_dan {
  color: #dc4c64;
  border-color: #dc4c64;
}
.stem-menu_dan:hover {
  color:#dc4c64;
  background-color: #ffe2e7;
}
.stem-menu_sec {
  color: #80858f;
  border-color: #80858f;
}
.stem-menu_sec:hover {
  color:#80858f;
  background-color: #dfe3eb;
}
.stem-menu_suc {
  color: #14a44d;
  border-color: #14a44d;
}
.stem-menu_suc:hover {
  color:#14a44d;
  background-color: #dafde8;
}
.stem-menu_pri {
  color: #3b71ca;
  border-color: #3b71ca;
}
.stem-menu_pri:hover {
  color:#3b71ca;
  background-color: #ddeaff;
}
.stem-menu_warn {
  color: #ff6d00;
  border-color: #ff6d00;
}
.stem-menu_warn:hover {
  color: #ff6d00;
  background-color: #ffe4cf;
}
.btn-timer {
  display: inline-block;
  opacity: 0.7;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  min-width: 50px;
  text-align: left;
}
@media (max-width: 992px) {
  .stem-masthead__container {
    max-width: unset;
    padding: unset;
  }
  .stem-header__wrapper {
    flex-wrap: wrap;
  }
  .stem-header__wrapper .collapse.navbar-collapse {
    width: 100%;
  }  
  .stem-header__container {
    padding: 0;
  }
  .stem-header__wrapper .navbar-toggler {
    padding-right: 16px;
  }
  .stem-top {
    padding-left: 12px;
  }
  .stem-masthead__wrapper {
    min-height: unset;
    padding: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
  }
  .stem-masthead__image {
    position: relative;
    height: 150px;
    width: auto;
  }
  .stem-masthead__image-2 {
    position: relative;
    height: 22px;
    width: auto;
    margin-bottom: -22px;
    /* display: none; */
  }
  .stem-content .container {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .stem-logo {
    height: 40px;
  }
  .stem-masthead__content {
    margin-bottom: 20px;
  }
  .stem-masthead__content-logo {
    height: 40px;
  }
}
@media (max-width: 576px) {
  .stem-logo {
    /* height: 36px; */
  }
  .stem-masthead__content-logo {
    height: 36px;
  }
  .stem-masthead__wrapper {
    /* padding-bottom: 20px; */
    /* min-height: 220px; */
  }
  .stem-projects__grid {
    flex-direction: column;
    align-items: center;
  }
  .stem-projects__col {
    margin-bottom: 20px;
  }
  .stem-projects {
    padding: 0;
    box-shadow: unset;
  }
  .stem-content {
    padding-top: 0;
    background-color: #ebf2ff;
  }
  .stem-navbar {
    margin-top: 8px;
    background-color: rgba(47,81,165,0.8)
  }
  .stem-navbar ul {
    flex-direction: column;
    text-align: center;
    padding-left: unset;
    padding: 8px;
  }
  .stem-navbar ul li a {
    display: block;
    width: 100%;
    margin: 2px 0;
  }
  nav[aria-label="breadcrumb"] ol {
    padding: 0;
  }
}