body{
  margin: 0;
  font-family: 'Helvetica', 'Arial', sans-serif;
  background: url('assets/externals/DALL_E_modern_workspace.jpg') no-repeat center center fixed; 
  width: 100%;
  background-size: cover;
  font-size: 20px;
}

.topnav {
  width: 100%;
  height: 130px;
  background-color: gold;   
}

.logo{
  width: 200px;
  height: 80px;
  margin: 0 auto;
  display: block;
}

.logo_img {
  height: 90px;
}

.logo_text{
  color: black;
  font-size: 24px;
  font-weight: bold;
}

.topnav a:hover {
  text-decoration: underline;
}

.topnav-right {
  float: right;
  width: 520px;
  background-color: gold;  
}
.floating_menu{
  position: fixed;
  top: 0;
  right: 0;
  background-color: black;
  z-index: 1;
  border: solid 1px gold;
  display: none;
}
.floating_menu_buttons{
  display: none;
}

.floating_menu_buttons a{
  text-decoration: none;
  color: gold;
  font-weight: bold;
}

.floating_menu_hamburger{
  float: right;
  padding: 5px;
  fill: gold;
}
.floating_menu_button{
  width: 150px;
  border-top: solid 1px gold;
  display: block;
  padding: 10px 10px;
}

@media all and (max-width:1260px) {
  .topnav-right {
    display: none;
  }

  .floating_menu{
    display: block;
  }
}

@media not all and (max-width:1260px) {
  .floating_menu {
    display: none;
  }
  .topnav-right {
    display: block;
  }
}

.topnav-right a {
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 22px;
  display: inline-block;
}

.hero{
  height: calc(100vh - 40px);
}
.hero-tetx{
  margin: 0;
  width: 600px;
  max-width: 100%;
  background: rgba(0 , 0, 0, 0.6);
  color: white;
}
.hero h1{
  padding: 20px;
  font-size: 46px;
}
.hero p{
  padding: 20px;
  font-size: 36px;
}

.footer{
  padding: 100px 0 30px 0;
  background-color: rgba(41,41,41,1);
  width: 100%;
  color: white;
}

.copyright{
  display: block;
  font-size: 12px;
  width: 400px;
  padding-top: 60px;
  margin: 0px auto;
  text-align: center;
}

.contacts_container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.contact_item{
  text-align: center;
  width: 250px;
  height: 250px;
}

.contact_icon{
  fill: white;
  stroke: white;
  width: 100px;
  height: 100px;
}

.contact_name{
  font-size: 28px;
  font-weight: bold;
  padding: 20px;
}

.contact_value{
  font-size: 18px;
}

.about_container{
  background-color: rgba(201,201,201,1);
  padding: 20px 10px;
  font-size: 16px;
}

.section_header{
  text-align: center;
  font-size: 16px;
  padding-bottom: 20px;
}

.about_mission{
  width: 90%;
  margin: 0 auto;
}

.about_mission_header{
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 20px;
}

.about_story{
  padding-top: 20px;
}

.about_story_header{
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 20px;
}

.about_story_photo{
  width: 400px;
  max-width: 50%;
  margin: 10px;
  float: right;
}

.news_bar{
  background-color: rgba(121,121,121,0.95);
  color: black;
  font-size: 16px;
  padding: 10px 5px;
  width: calc(100% -10px);
  height: 18px;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
  position: sticky;
  top: 0;
}
.news_header{
  font-weight: bold;
  padding-right: 5px;
  color: gold;
}
.headline{
  padding-right: 20px;
}

.achievements{
  background-color: rgba(3,3,43,0.8);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px 0px;
}
.achievement_category{
  width: 250px;
  margin: 10px;
}
.achievement_value{
  color: gold;
  font-size: 86px;
  text-align: center;
} 
.achievement_description{
  color: white;
  text-align: center;
  font-size: 36px;
}

.supporters{
  margin-top: 25px;
  font-size: 12px;
}

.supporters_list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 10px;
}

.supporter{
  width: 300px;
  height: 40px;
  margin: 5px;
}

.supporter_logo{
  height: 40px;
  width: auto;
  max-width: 60px;
}
.supporter_name{
  vertical-align:top;
}


.team{
  background-color: rgba(31,31,11,0.8);
  padding: 20px 10px;
  color: white;
}
.team_description{
  text-align: center;
}
.team_gallery{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px 0px;
}
.team_member{
  border: 1px solid goldenrod;
  background-color: rgba(41,41,41,0.8);
  padding: 10px;
  width: 350px;
  max-width: 90%;
  height: 600px;
  margin: 10px;
}

.team_member_photo{
  width: auto;
  height: 200px;
  max-height: 300px;
  margin: 0px auto;
  display: block;
}

.team_member_name{
  font-weight: bold;
  padding-top: 20px;
  text-align: center;
  font-size: 20px;
}

.team_member_role{
  text-align: center;
  font-size: 18px;
}

.team_member_biography{
  padding-top: 20px;
  font-size: 14px;
}

.jobs{
  background-color: rgba(5,5,5,0.93);
  padding: 20px 10px;
  color: white;
}

.jobs_descrption{
  text-align: center;
}

.job_groups{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0 0 0;
}

.job_group{
  border: 1px solid white;
  padding: 10px;
  max-width: 90%;
  width: 400px;
  flex-grow: 1;
  margin-right: 10px;
  margin: 5px;
}

.job_group_name{
  font-size: 24px;
  color: gold;
  margin: 10px;
  text-align: center;
}

.job_group_icon{
  width: 100px;
  height: 100px;
  background-color: gray;
  display: block;
  margin: 0 auto;
}

.job_group_description{
  padding-top: 20px;
  font-size: 14px;
}

.job_button{
  width: 130px;
  padding: 5px 20px;
  background: rgba(191, 191, 191, 1);
  background-color: gold;
  color: black;
  display: block;
  margin: 20px auto 10px auto;
  text-decoration: none;
  cursor: pointer;
}

