.header {
  height: 6.8vh;
  top: 0;
  margin: 0;
}

.body {
  top: 0;
}

/*//////////////////////////////////////////////PHONE MAIN MENU//////////////////////////////////*/
.menu_element {
  display: none;
}

.phone_menu_element {
  height: 300px;
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000001;
  position: fixed;
}

.home_logo img {
  padding-top: 17px;
  width: 75px;
}

.phone_menu {
  width: 100%;
  height: 100px;
  background-color: white;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.menu_dropdown {
  margin-left: 12vw;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 30px;
  padding-top: 35px;
  padding-left: 0;
  padding-bottom: 30px;
  position: fixed;
}

.phone_menu li {
  display: inline;
  color: #003863;
}

#menu_name:hover {
  color: #ffda07;
}

.menu_dropdown:hover {
  font-weight: normal;
}

/*sub menu*/
@keyframes menu_slide {
  0% {
    padding-top: 0;
    opacity: 0%;
  }
  100% {
    padding-top: 70px;
    opacity: 100%;
  }
}
.menu_dropdown ul {
  margin-top: 100px;
  background-color: #003863;
  animation-name: menu_slide;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

/*Tablet Mode*/
.phone_menu li ul {
  z-index: 100000;
  padding: 0;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  margin-left: 0px;
  border-radius: 0 0 15px 15px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.phone_menu li ul li a {
  text-decoration: none;
  color: white;
  font-weight: normal;
  font-size: 25px;
}

.gallery {
  padding-top: 70px;
}

.staff,
.about_us {
  padding-top: 70px;
}

.contact {
  padding-top: 70px;
  padding-bottom: 70px;
}

.phone_menu li ul li {
  display: block;
  text-align: center;
  padding-right: 0;
  padding-left: 0;
}

.phone_menu li ul li:hover {
  color: #ffda07;
}

.menu_dropdown ul li:hover {
  color: #ffda07;
}

.phone_menu li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

/*////////////////////////////////////////////////////////END OF PHONE MENU///////////////////////////////////////////////////////////*/
.body {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
}

/*Change link color on hover*/
.menu_bar div li a:hover {
  margin: 0;
  color: #004688;
  font-weight: 400;
  border-radius: 0.3vw 0.3vw 0 0;
  text-shadow: 0px 1px 10px white;
  background-color: #ffda07;
}

.menu_bar li div div a {
  color: red;
  padding: 12px 16px;
  min-width: 100;
  white-space: nowrap;
}

/*Read more*/
.read_more {
  background-color: #ffda07;
  padding: 0px 6px 4px 6px;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #003863;
}

/*Active tab indicator*/
.active {
  color: #2F78AF;
}

* {
  box-sizing: border-box;
}

/*Slideshow container*/
.slideshow-master {
  background-image: url(../images/bbm_background_orange.jpg);
  background-color: #ffda07;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  background-size: cover;
  width: 100%;
}

.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 30px;
}

/*Hide the images by default*/
.mySlides {
  display: none;
}

.slideimages {
  max-width: 100%;
}

/*Next and prev buttons*/
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  margin-right: 0;
  padding: 16px;
  color: #ffda07;
  opacity: 50%;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0px 3px 3px 0px;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  margin: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "prev button" to the left */
.prev {
  left: 0;
  margin: 0;
  border-radius: 3px 0 0 3px;
}

/*On hover, add ablack background color with a little bit see-through*/
.prev:hover,
.next:hover {
  background-color: 0px 5px 5px rgba(0, 0, 0, 0.103);
  border-radius: 10px 10px 10px 10px;
}

/*Fading animation*/
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes welcome {
  from {
    opacity: 0%;
    padding-top: 75px;
  }
  to {
    opacity: 100%;
    padding-top: 50px;
  }
}
.welcome_grid {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  background-color: white;
  animation-name: welcome;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}

.welcome_image {
  display: none;
}

h1 {
  font-family: "Lato", sans-serif;
  font-style: bold;
  font-weight: 900;
  color: #003863;
  font-size: 32px;
}

h2 {
  text-align: center;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 200;
  padding: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  color: #ffda07;
  font-size: 20px;
}

h3 {
  text-align: left;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: normal;
  color: #003863;
  font-size: 15px;
}

p {
  text-align: left;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 13px;
}

.p2 {
  text-align: left;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 14pt;
  color: #ffda07;
  font-style: italic;
}

.mission-statement {
  text-align: center;
  font-style: italic;
  width: 90%;
  position: relative;
  margin: auto;
  opacity: 80%;
}

.mission-statement h1 {
  font-size: 17px;
  margin-bottom: 0;
}

.mission-statement h3 {
  text-align: center;
}

@keyframes activity {
  from {
    opacity: 0%;
    padding-top: 50px;
  }
  to {
    opacity: 100%;
    padding-top: 25px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .activities_animation {
    padding-top: 25px;
    opacity: 100%;
    animation-name: activity;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
  }
}
.activities {
  color: #ffda07;
  text-align: center;
  width: 80%;
  margin: auto;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: bold;
  font-size: 17px;
}

.grid {
  position: relative;
  padding-top: 5vh;
  padding-left: 5vw;
  padding-right: 5vw;
  padding-bottom: 5vh;
  left: 0;
  align-items: center;
  margin: 0;
  width: 100%;
}

.activity {
  display: flex;
  grid-template-columns: 150px 150px 150px;
  flex-wrap: wrap;
  box-sizing: border-box;
  max-width: 100%;
  justify-self: center;
  justify-items: center;
  row-gap: 20px;
  column-gap: 10px;
}

.act3, .act2, .act1 {
  margin: 0;
  padding: 0;
  text-align: center;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  background-color: #ffda07;
}

.action-image {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  margin: 0;
  padding: 0;
}

.image-heading h1 {
  margin-bottom: 0;
}

.image-heading h3 {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0;
  margin-top: 5px;
  text-align: left;
}

.explore {
  background-color: #003863;
  position: relative;
  margin: auto;
  margin-bottom: 15px;
  width: 100px;
  padding-bottom: 5px;
  border-radius: 10px;
  text-decoration: none;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  color: #ffda07;
}

.explore:hover {
  background-color: #003863;
  color: #ffda07;
  text-decoration: none;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
}

.our-partners h1 {
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(0, 0, 0, 0.432);
}

.partners-grid {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  max-width: 100%;
  justify-content: center;
  justify-self: center;
  justify-items: center;
  column-gap: 10vw;
}

.partner-element img {
  max-width: 80px;
}

.map img {
  width: 100%;
  margin-bottom: 0;
  bottom: 0;
}

.google-map {
  color: #ffda07;
}

.map {
  height: 50px;
  bottom: 0;
  margin-bottom: 0;
  background-color: #ffda07;
}

.map h1 {
  padding-top: 30px;
  text-align: center;
  font-size: 3vw;
  margin: auto;
}

.footer {
  margin: 0;
  left: 0;
  right: 0;
  padding: 0;
  height: 12vh;
  bottom: 0;
  width: 100%;
  background-color: #003863;
}

.footer-links {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  max-width: 100%;
  justify-content: center;
  justify-self: center;
  justify-items: center;
  column-gap: 10vw;
}

.footer-links div {
  padding: 1vw;
  text-align: left;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  color: #d9eeff;
  font-size: 1vw;
}

.copyright {
  color: #ffda07;
  text-align: center;
  margin-top: 0;
  font-size: 13px;
  opacity: 70%;
  padding: 1vw;
  justify-content: center;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  padding-bottom: 15px;
}

@media only screen and (min-width: 320px) {
  .activities {
    color: #ffda07;
    text-align: center;
    width: 80%;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: bold;
    font-size: 17px;
  }

  .partner-master {
    margin-top: 10px;
    opacity: 60%;
    width: 100%;
    margin-bottom: 15px;
  }

  .blue_divider {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    height: 1500px;
    background-color: #003863;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .google-map {
    width: 100%;
    height: 200px;
  }

  .read_more {
    background-color: #ffda07;
    padding: 0px 6px 4px 6px;
    text-decoration: none;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #003863;
    text-decoration: none;
    border: none;
  }

  .read_more a {
    padding: 0px 6px 4px 6px;
    text-decoration: none;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #003863;
    text-decoration: none;
  }

  .Headline {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: bold;
    color: #003863;
    font-size: 17px;
  }

  @keyframes welcome {
    from {
      opacity: 0%;
      padding-top: 50px;
    }
    to {
      opacity: 100%;
      padding-top: 5px;
    }
  }
  .welcome_grid {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    background-color: white;
    animation-name: welcome;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
  }

  .map {
    height: 70px;
    bottom: 0;
    margin-bottom: 0;
    background-color: #ffda07;
  }

  .map h1 {
    padding-top: 20px;
    text-align: center;
    font-size: 20px;
    margin: auto;
  }
}
@media only screen and (min-width: 364px) {
  .partner-master {
    margin-top: 100px;
    opacity: 60%;
    width: 100%;
    padding-bottom: 2vw;
  }

  .blue_divider {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    height: 1500px;
    background-color: #003863;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .map {
    height: 100px;
    bottom: 0;
    margin-bottom: 0;
    background-color: #ffda07;
  }

  .map h1 {
    padding-top: 20px;
    text-align: center;
    font-size: 20px;
    margin: auto;
  }
}
@media only screen and (min-width: 416px) {
  .partner-master {
    margin-top: 100px;
    opacity: 60%;
    width: 100%;
    padding-bottom: 2vw;
  }

  .blue_divider {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    height: 1700px;
    background-color: #003863;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }
}
@media only screen and (min-width: 543px) {
  .slideimages {
    border-radius: 10px;
    max-width: 100%;
  }

  .partner-master {
    margin-top: 100px;
    opacity: 60%;
    width: 100%;
    padding-bottom: 2vw;
  }

  .blue_divider {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    height: 1900px;
    background-color: #003863;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .google-map {
    width: 100%;
    height: 200px;
  }
}
@media only screen and (min-width: 640px) {
  .slideimages {
    border-radius: 10px;
    max-width: 100%;
  }

  .partner-master {
    margin-top: 100px;
    opacity: 60%;
    width: 100%;
    padding-bottom: 2vw;
  }

  .blue_divider {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    height: 600px;
    background-color: #003863;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .activity {
    display: flex;
    grid-template-columns: 100px 100px 100px;
    flex-wrap: wrap;
    box-sizing: border-box;
    max-width: 100%;
    justify-self: center;
    justify-items: center;
    row-gap: 20px;
    column-gap: 15px;
  }

  .act1, .act2, .act3 {
    width: 30%;
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
    background-color: #ffda07;
  }

  .google-map {
    width: 100%;
    height: 200px;
  }
}
/*Small Laptops*/
@media only screen and (min-width: 790px) {
  .header {
    height: 3vh;
    top: 0;
    margin: 0;
  }

  .slideimages {
    border-radius: 10px;
    max-width: 100%;
  }

  @keyframes welcome {
    from {
      opacity: 0%;
      padding-top: 75px;
    }
    to {
      opacity: 100%;
      padding-top: 50px;
    }
  }
  .welcome_grid {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    background-color: white;
    animation-name: welcome;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
  }

  .welcome_text {
    max-width: 45%;
  }

  .welcome_image {
    display: block;
  }

  /*Slideshow container*/
  .slideshow-master {
    background-image: url(../images/bbm_background_orange.jpg);
    background-color: #ffda07;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
    background-size: cover;
    width: 100%;
  }

  .slideshow-container {
    max-width: 900px;
    min-width: 300px;
    position: relative;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .menu_element {
    display: block;
  }

  .phone_menu_element {
    display: none;
  }

  .header {
    height: 6.8vh;
    top: 0;
    margin: 0;
  }

  .phone_menu_element {
    display: none;
  }

  .menu_bar {
    z-index: 100000;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
    justify-content: center;
  }

  .menu_bar li {
    float: left;
    margin: 0;
  }

  .menu_logo {
    padding-right: 10%;
    padding-left: 4%;
    padding-top: 0.5%;
    padding-bottom: 0%;
    margin: 0;
  }

  .menu_bar div li a {
    display: block;
    margin: 0;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    color: grey;
    text-align: center;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-style: bold;
    text-decoration: none;
    background-color: white;
  }

  .menu_bar div li div a {
    display: block;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 600%;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    color: grey;
    text-align: center;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-style: bold;
    text-decoration: none;
    background-color: white;
  }

  .progress {
    margin-top: 69px;
    z-index: 100001;
    height: 5px;
    background: #ffda07;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .progress__highlight {
    z-index: 100001;
    transition: width 0.15s linear;
    background: #003863;
    height: 100%;
    width: 0%;
  }

  .partner-master {
    margin-top: 5vh;
    opacity: 60%;
    width: 100%;
    padding-bottom: 2vw;
  }

  .activities {
    font-size: 22px;
  }

  .our-partners h1 {
    text-align: center;
    font-size: 2vw;
    margin-left: auto;
    margin-right: auto;
    color: black;
  }

  .act1, .act2, .act3 {
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
    background-color: #ffda07;
  }

  .google-map {
    width: 100%;
    height: 300px;
  }

  .map {
    height: 150px;
    bottom: 0;
    margin-bottom: 0;
    background-color: #ffda07;
  }

  .map h1 {
    padding-top: 40px;
    text-align: center;
    font-size: 3vw;
    margin: auto;
  }
}
/*Laptops/ Desktop Screens*/
@media only screen and (min-width: 992px) {
  .activity {
    display: flex;
    grid-template-columns: 150px 150px 150px;
    flex-wrap: wrap;
    box-sizing: border-box;
    max-width: 100%;
    justify-self: center;
    justify-items: center;
    row-gap: 20px;
    column-gap: 10px;
  }

  .activities {
    font-size: 40px;
  }

  p {
    text-align: left;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
  }

  h3 {
    text-align: left;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: #003863;
    font-size: 17px;
  }

  h2 {
    text-align: center;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 200;
    padding: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    color: #ffda07;
    font-size: 20px;
  }

  h1 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: bold;
    color: #003863;
    font-size: 25px;
  }

  .read_more {
    background-color: #ffda07;
    padding: 0px 6px 4px 6px;
    border-radius: 4px;
    text-decoration: none;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #003863;
  }

  .mission-statement h1 {
    font-size: 35px;
    margin-bottom: 0;
  }

  .mission-statement h3 {
    font-size: 28px;
    text-align: center;
  }

  .menu_element {
    display: block;
  }

  .body {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .Headline {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: bold;
    color: #003863;
    font-size: 40px;
  }

  .activity_descriptor {
    text-align: left;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: #003863;
    font-size: 1vw;
  }

  .partner-master {
    margin-top: 19vw;
    opacity: 60%;
    width: 100%;
    padding-bottom: 2vw;
  }

  .our-partners h1 {
    text-align: center;
    font-size: 2vw;
    margin-left: auto;
    margin-right: auto;
    color: black;
  }

  .partners-grid {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    max-width: 100%;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    column-gap: 10vw;
  }

  .partner-element img {
    max-width: 250px;
  }

  .map img {
    width: 100%;
    margin-bottom: 0;
    bottom: 0;
  }

  .google-map {
    color: #ffda07;
  }

  .map {
    height: 150px;
    bottom: 0;
    margin-bottom: 0;
    background-color: #ffda07;
  }

  .map h1 {
    padding-top: 40px;
    text-align: center;
    font-size: 3vw;
    margin: auto;
  }

  .footer {
    margin: 0;
    left: 0;
    right: 0;
    padding: 0;
    height: 12vh;
    bottom: 0;
    width: 100%;
    background-color: #003863;
  }

  .footer-links {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    max-width: 100%;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    column-gap: 10vw;
  }

  .footer-links div {
    padding: 1vw;
    text-align: left;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: #d9eeff;
    font-size: 1vw;
  }

  .copyright {
    color: #ffda07;
    text-align: center;
    margin-top: 0;
    font-size: 13px;
    opacity: 70%;
    padding: 1vw;
    justify-content: center;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 15px;
  }

  .blue_divider {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    height: 350px;
    background-color: #003863;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .act1, .act2, .act3 {
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
    background-color: #ffda07;
  }

  .google-map {
    width: 100%;
    height: 400px;
  }

  .read_more {
    background-color: #ffda07;
    padding: 0px 6px 4px 6px;
    text-decoration: none;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #003863;
    text-decoration: none;
    border: none;
  }

  .read_more a {
    padding: 0px 6px 4px 6px;
    text-decoration: none;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #003863;
    text-decoration: none;
  }
}
/*Large Screens*/
@media only screen and (min-width: 1040px) {
  .menu_element {
    display: block;
  }

  .header {
    height: 4.5vh;
    top: 0;
    margin: 0;
  }

  .phone_menu_element {
    display: none;
  }

  .menu_bar {
    z-index: 100000;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
    justify-content: center;
  }

  .menu_bar li {
    float: left;
    margin: 0;
  }

  .menu_logo {
    padding-right: 10%;
    padding-left: 20%;
    padding-top: 0.5%;
    padding-bottom: 0%;
    margin: 0;
  }

  .menu_bar div li a {
    display: block;
    margin: 0;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    color: grey;
    text-align: center;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-style: bold;
    text-decoration: none;
    background-color: white;
  }

  .menu_bar div li div a {
    display: block;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 600%;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    color: grey;
    text-align: center;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-style: bold;
    text-decoration: none;
    background-color: white;
  }

  .progress {
    margin-top: 69px;
    z-index: 100001;
    height: 5px;
    background: #ffda07;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .progress__highlight {
    z-index: 100001;
    transition: width 0.15s linear;
    background: #003863;
    height: 100%;
    width: 0%;
  }

  .p2 {
    text-align: left;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 14pt;
    color: #ffda07;
    font-style: italic;
  }

  /*Read more*/
  .read_more {
    background-color: #ffda07;
    padding: 0px 6px 4px 6px;
    border-radius: 4px;
    text-decoration: none;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #003863;
  }

  .mission-statement {
    text-align: center;
    font-style: italic;
    width: 90%;
    position: relative;
    margin: auto;
    opacity: 80%;
  }

  .mission-statement h3 {
    text-align: center;
  }

  .act1, .act2, .act3 {
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
    background-color: #ffda07;
  }

  .activity {
    display: flex;
    grid-template-columns: 150px 150px 150px;
    flex-wrap: wrap;
    box-sizing: border-box;
    max-width: 100%;
    justify-self: center;
    justify-items: center;
    row-gap: 20px;
    column-gap: 40px;
  }

  .activity_descriptor {
    text-align: left;
    font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: #003863;
    font-size: 20px;
  }

  .our-partners h1 {
    text-align: center;
    font-size: 1.5vw;
    margin-left: auto;
    margin-right: auto;
    color: black;
  }

  .blue_divider {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    height: 25vw;
    background-color: #003863;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);
  }

  .partner-master {
    margin-top: 400px;
    opacity: 60%;
    width: 100%;
    padding-bottom: 2vw;
  }

  .google-map {
    width: 100%;
    height: 500px;
  }
}
/*************************************************STAFF PAGE*******************************************************/
.page-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 25vw;
  padding-left: 5vw;
  padding-right: 5vw;
  width: 100%;
  background-image: url(../images/bbm_background_navy.jpg);
  background-color: #003863;
  background-size: cover;
}

.page-heading h2 {
  padding-top: 10vh;
}

.staff-member-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 27vw;
  width: 80%;
  margin: auto;
  background-color: white;
}

.staff-member-container h4 {
  text-align: left;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  /*padding-left: 2vw;*/
  margin: 0;
  top: 0;
  bottom: 0;
  padding-top: 0.5vh;
  color: #003863;
  font-size: 3vw;
}

.staff-member-container p {
  margin-top: 0;
}

.staff-member-container-2 p {
  margin-top: 0;
}

.staff-member-container-2 h4 {
  text-align: left;
  font-family: "Noto Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  /*padding-right: 2vw;*/
  margin: 0;
  top: 0;
  bottom: 0;
  color: #003863;
  font-size: 3vw;
}

.staff-member-container img {
  max-width: 250px;
  max-height: 250px;
  border-radius: 0.5vw;
  border: 2px solid #ffda07;
}

.staff-member-container-2 img {
  max-width: 250px;
  max-height: 250px;
  border-radius: 0.5vw;
  border: 2px solid #003863;
}

.staff-member-container-2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 20vw;
  width: 80%;
  background-color: white;
  /*box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.103);*/
}

.staff-text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 3vw;
}

.staff-text-container-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 3vw;
}

/*************************************************GALLERY PAGE*******************************************************/
.column img {
  width: 100%;
  margin-top: 8px;
  vertical-align: middle;
}

.gallery-body {
  box-sizing: border-box;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
.page-heading-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 13vw;
  padding-top: 4vw;
  padding-left: 5vw;
  padding-right: 5vw;
  width: 100%;
  background-image: url(../images/bbm_background_navy.jpg);
  background-color: #003863;
  background-size: cover;
}

/*************************************************ABOUT US*******************************************************/
.page-heading-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 13vw;
  padding-top: 4vw;
  padding-left: 5vw;
  padding-right: 5vw;
  width: 100%;
  background-image: url(../images/bbm_background_navy.jpg);
  background-color: #003863;
  background-size: cover;
}

.about-para-1 {
  width: 60%;
  text-align: justify;
  margin: auto;
  padding-top: 4vw;
}

.about-para-2 {
  width: 60%;
  text-align: justify;
  margin: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.about-para-grid-1 {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  background-color: white;
  animation-name: welcome;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}

.about-para-3-img {
  max-width: 45vw;
  margin-right: 5vw;
  margin-left: 2vw;
  border-radius: 1vw;
  height: auto;
}

.about-para-3-img-2 {
  max-width: 45vw;
  margin-right: 1vw;
  margin-left: 3vw;
  border-radius: 1vw;
  height: auto;
}

.para-3 {
  padding-left: 2vw;
}

.about-part-2 p {
  width: 80%;
  margin: auto;
  font-size: 1.3vw;
}

.about-para-3 {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  background-color: white;
}

.rest-about {
  margin-top: 3vw;
  margin-bottom: 3vw;
}

/*# sourceMappingURL=style.css.map */
