/*body { padding-top: 56px; }
.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }
.bg-hero { background-color: #281094; }

 CALLOUT 
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom:.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }*/

/* footer 
footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }*/

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
}

.page_container {
  width: 100%;
  margin-top: 50px;
  /*background-color: #121212;*/
  background-color: #fefefe;
  color: #232427; 
}

.img-center {
  max-width: 100%;
  height: auto;
  margin: auto;    
  display: block;
  padding-bottom: 1%;
}

.img-fluid2 {
  max-width: 100%;
  height: auto;
  padding-bottom: 10%;
}

.fa2 {
  /*display: inline-block;*/
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.6s;
    z-index: 997;
    padding: 5px 0;
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
    background: rgba(40, 58, 90, 0.9);
  }
  
  #header .logo {
    margin: 0;
    padding: 0;
  }
  
  #header .logo img {
    max-height: 70px;
    width: 100% \9;
  }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
.navbar {
    float: right;
    padding: 0;
}
  
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
  
.navbar li {
    position: relative;
}
  
.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}
  
.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
  
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #5C7EEC;
}
  
.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #5C7EEC;
    font-weight: 600;
}
  
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #5C7EEC;
}
  
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(92, 126, 236, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}
  
.navbar .dropdown ul li {
    min-width: 200px;
}
  
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}
  
.navbar .dropdown ul a i {
    font-size: 12px;
}
  
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #5C7EEC;
}
  
.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
  
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
  
.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
  
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}
  
/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
  
.mobile-nav-toggle.fa-times {
    color: #fff;
}
  
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
  
    .navbar ul {
        display: none;
    }
}
  
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(92, 126, 236, 0.9);
    transition: 0.3s;
    z-index: 999;
}
  
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}
  
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}
  
.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37517e;
}
  
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #5C7EEC;
}
  
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #37517e;
}
  
.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(92, 126, 236, 0.25);
}
  
.navbar-mobile .dropdown ul li {
    min-width: 200px;
}
  
.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}
  
.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}
  
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #5C7EEC;
}
  
.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background: linear-gradient(20deg, rgba(92, 126, 236, 0.2), rgba(92, 126, 236, 0.5)), url('https://static.igem.wiki/teams/4450/wiki/space-hero.png') top center;

  /* Full height */
  min-height: 100vh;
  width: 100%;

  /* Create the team scrolling effect */
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
  
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 10%;
  
}
  
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
  display:block;
  position: relative;
  z-index: 3;
  
}

#hero p {
  display:block;
  position: relative;
  z-index: 3;
}
  
#hero h2 {
  color: #fff;
  margin: 25px 300px 50px 300px; /* top right bottom left */
  font-size: 20px;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
  display:block;
  position: relative;
  z-index: 3;
}
  
#hero .btn-hero {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  display:block;
  position: relative;
  z-index: 3;
}
  
#hero .btn-hero:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
  display:block;
  position: relative;
  z-index: 3;
}
  
@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}
  
@media (max-width: 1024px) {
    #hero h1 {
        font-size: 40px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin: 20px 50px 50px 50px; /* top right bottom left */
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 30px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 16px;
        line-height: 24px;
        margin: 5px 10px 30px 10px; /* top right bottom left */
    }
}


/*--------------------------------------------------------------
# SUB HERO Section
--------------------------------------------------------------*/
#sub_hero {
  background: linear-gradient(20deg, rgba(92, 126, 236, 0.2), rgba(92, 126, 236, 0.5)), url('https://static.igem.wiki/teams/4450/wiki/microbio.jpg') top center;
  
  /* Full height */
  max-height: 40vh;
  width: 100%;

  /* Create the team scrolling effect */
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#sub_hero .sub_hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#sub_hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#sub_hero h2 {
  color: #fff;
  margin: 25px 300px 50px 300px; /* top right bottom left */
  font-size: 20px;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
}

#sub_hero .btn-sub_hero {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#sub_hero .btn-sub_hero:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #sub_hero {
      background-attachment: fixed;
  }
}

@media (max-width: 1024px) {
  #sub_hero h1 {
      font-size: 40px;
      line-height: 36px;
  }
  #sub_hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin: 20px 50px 50px 50px; /* top right bottom left */
  }
}

@media (max-width: 768px) {
  #sub_hero h1 {
      font-size: 30px;
      line-height: 36px;
  }
  #sub_hero h2 {
      font-size: 16px;
      line-height: 24px;
      margin: 5px 10px 30px 10px; /* top right bottom left */
  }
}

/*--------------------------------------------------------------
# Hero Waves
--------------------------------------------------------------*/

.hero-waves {
    display: inline;
    margin-top: 98vh; /*wawe placement*/
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
  }

  .sub_hero-waves {
    display: inline;
    margin-top: 28vh; /*wawe placement*/
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
  }
  
  .wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
  }
  
  .wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
  }
  
  .wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
  }
  
  @-webkit-keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
  
    100% {
      transform: translate(-90px, 0%);
    }
  }
  
  @keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
  
    100% {
      transform: translate(-90px, 0%);
    }
  }
  
  @-webkit-keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @-webkit-keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }

/*--------------------------------------------------------------
# Start
--------------------------------------------------------------*/
.start h2{
    margin-top: 200px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body { 
    padding-top: 0px; 
    background-color: #fefefe;
}

.left-aligned { 
    margin-left: auto; 
}

.bg-dark { 
    background-color: #2e2e2e !important; 
}

.bg-hero {
    background-color: #4aae6f; 
}

.last_on_page_padding {
  padding-bottom: 10%;
  padding-top: 3rem;
}

@media (max-width: 768px) {
  .last_on_page_padding {
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .img_padding {
    padding-top: 3rem !important;
  }

  .text_padding {
    padding-bottom: 4rem !important;
  }

}

.center_item {
  padding-bottom: 10%;
  padding-top: 3rem;
}

/*--------------------------------------------------------------
# INDEX
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# DESCRIPTION SHORT
--------------------------------------------------------------*/
.description_short {
  padding-top: 20px;
  padding-bottom: 60px; 
  color: #232427;
}

.description_short_center {
  align-self: center;
}

.spaceman_img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/*
@media (min-width: 1440px) {
  .spaceman_img_description_short {
    max-height: 80%;
  }
}

/*--------------------------------------------------------------
# MORE ABOUT PROJECT
--------------------------------------------------------------*/
.more_about_project {
  padding-top: 20px;
  padding-bottom: 20px; 
  min-height: 100vh;
  background: linear-gradient(20deg, rgba(92, 126, 236, 0.2), rgba(92, 126, 236, 0.5)), url("https://static.igem.wiki/teams/4450/wiki/290618170-610931193543980-6892725966280740611-n.jpg") fixed center center;
}

.more_about_project h2 {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 5%;
}

.more_about_project p {
  text-align: center;
}

.more_about_project .icon-box {
    text-align: center;
    padding: 20px 20px 20px 20px;
    /*border-radius: 16px;
    transition: all ease-in-out 0.3s;
    background: #f5f5f5;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    -webkit-backdrop-filter: blur(5px);

    /* From https://css.glass */
    background: rgba(193, 193, 193, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  
  .more_about_project .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
  }
  
  .more_about_project .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
  }
  
  .more_about_project .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .more_about_project .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
  }
  
  .more_about_project .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
  }
  
  .more_about_project .icon-box h4 a {
    color: #222222;
    transition: ease-in-out 0.3s;
  }
  
  .more_about_project .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .more_about_project .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  }
  
  .more_about_project .iconbox-blue i {
    color: #5C7EEC;
  }
  
  .more_about_project .iconbox-blue:hover .icon i {
    color: #fff;
  }
  
  .more_about_project .iconbox-blue:hover .icon path {
    fill: #5C7EEC;
  }
  
/*--------------------------------------------------------------
# TEAM
--------------------------------------------------------------*/
.team {
  background: url("https://static.igem.wiki/teams/4450/wiki/img-6148g.jpg") fixed center center;
  background-size: cover;
  padding: 100px 0;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  display: flex;
}

.team .container {
  width: 100%;
}


.team h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.team p {
  color: #fff;
}

.team .team-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.team .team-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# EDUCATION
--------------------------------------------------------------*/
.education {
  background: url("https://static.igem.wiki/teams/4450/wiki/microsoftteams-image2.jpeg") fixed center center;
  background-size: cover;
  padding: 100px 0;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 100vh;
  align-items: center;
  display: flex;
}

.education h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display:block;
  position: relative;
  z-index: 3;
}

.education p {
  color: #fff;
  display:block;
  position: relative;
  z-index: 3;
}

.education .education-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: inline-block;
    position: relative;
  z-index: 3;
}

.education .education-btn:hover {
  border-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 3;
}

/*
https://www.youtube.com/watch?v=0t6Dmp70kTw
https://github.com/Carla-Codes/starry-night-css-animation
*/
@keyframes move-twink-back {
  from {background-position:0 0;}
  to {background-position:-10000px 5000px;}
}

.stars, .twinkling {
position:absolute;
top: auto;
left:0;
right:0;
bottom:auto;
width:100%;
height:100%;
display:block;
}

.stars {
background:#000 url("https://static.igem.wiki/teams/4450/wiki/stars/stars.png") repeat top center;
z-index:0;
}

.twinkling{
background:transparent url("https://static.igem.wiki/teams/4450/wiki/stars/twinkling.png") repeat top center;
z-index:1;
animation:move-twink-back 100s linear infinite;
}
/*.education {
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  display: flex;
}

.education .content {
  background-color: #f6f9ff;
  padding: 40px;
}

.education h3 {
  font-size: 14px;
  font-weight: 700;
  color: #5C7EEC;
  text-transform: uppercase;
}

.education h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
}

.education p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.education .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #5C7EEC;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.education .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.education .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.education .btn-read-more:hover i {
  transform: translateX(5px);
}*/

/*--------------------------------------------------------------
# COMMUNICATION
--------------------------------------------------------------*/
.communication {
  background: url("https://static.igem.wiki/teams/4450/wiki/299393058-595735218626839-8632570016715313951-n.jpg") fixed center center;
  background-size: cover;
  padding: 100px 0;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 100vh;
  align-items: center;
  display: flex;
}

.communication h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.communication p {
  color: #fff;
}

.communication .communication-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.communication .communication-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# COLLABORATION
--------------------------------------------------------------*/
.collaboration{
  background: url("https://static.igem.wiki/teams/4450/wiki/microsoftteams-image.jpeg") fixed center center;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  display: flex;
  text-align: center;
  color: #fefefe;
}

.collaboration .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  /* From https://css.glass */
  background: rgba(193, 193, 193, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.collaboration .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.collaboration .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.collaboration .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.collaboration .box:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# HUMAN PRACTICES
--------------------------------------------------------------*/
.hr {
  background: linear-gradient(20deg, rgba(92, 126, 236, 0.2), rgba(92, 126, 236, 0.5)), url("https://static.igem.wiki/teams/4450/wiki/300640821-2054757201378014-4246049473687181452-n.jpg") fixed center center;
  background-size: cover;
  padding: 100px 0;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 100vh;
  align-items: center;
  display: flex;
}

.hr h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.hr p {
  color: #fff;
}

.hr .hr-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hr .hr-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# SPONSORS
--------------------------------------------------------------*/
.sponsors {
  padding: 12px 0;
  text-align: center;
  color: #232427;
}

.sponsors img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.sponsors img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .sponsors img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# REFERENCES https://stackoverflow.com/questions/59100312/single-button-to-show-hide-element-with-pure-css
--------------------------------------------------------------*/
.references {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #292929;
  color: #fefefe;
  margin-block-end: -17px;
}

.references h2 {
  color: #fefefe;
  padding-top: 30px;
  padding-bottom: 30px;
}

.references-item a {
  color: #5C7EEC;
}

.references li {
  padding-bottom: 10px;
}

.details-references,
.show-references,
.hide-references:target {
  display: none;
}
.hide-references:target + .show-references,
.hide-references:target ~ .details-references {
  display: block;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
footer a { 
  color: white; 
  font-weight: bold; 
  text-decoration: none; 
}

footer a:hover { 
  color: white; 
  text-decoration: underline; 
}

.col.item.social {
  display: inline;
}

.item.social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
}

 .item.social > a:hover {
  opacity: 1.0;
  color: #5C7EEC;
}

/*--------------------------------------------------------------
# NON PAGE margin-bottom: -13%;
--------------------------------------------------------------*/


.non_page2 {
  display: block;
  min-height: 100vh;
  margin-top: -5.6vh;  
  position: relative;
}

.non_page2 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display:block;
  position: relative;
  z-index: 3;
  padding-top: 30%;
}

.non_page2 p {
  display: block;
  min-height: 100vh;
  position: relative;
  z-index: 3;
  color: #fff;
}

.non_page2 img {
  z-index: 3;
  position: absolute;
  bottom: 0;
  padding: 0;
}

.non_page1 {
  min-width: 100%;
}


/*--------------------------------------------------------------
# team.html
--------------------------------------------------------------*/

.col-v-centered {
  display: block;
  position: inherit;
}

.team_main h1 {
  padding-top: 5%;
  text-align: center;
}

.team_main h3 {
  padding-top: 5%;
}


/*--------------------------------------------------------------
# experiments.html
--------------------------------------------------------------*/
/*--------------------------------------------------------------
##### parts
--------------------------------------------------------------*/
.spaceman_img_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.spaceman_img_parts {
  max-height: 20vh;
}

.parts_table {
  margin-bottom: 3%;
}

/*--------------------------------------------------------------
# experiments.html
--------------------------------------------------------------*/

.results_img {
  max-height: 500px;
  text-align: center;
  max-width: fit-content;
}