.wrapper {
  display: flex;
  text-align: center;
  flex-direction: column;
  padding-bottom: 5vh;
  box-sizing: border-box;
}

img.logo {
  display: block;
  width: 25%;
  min-width: 12rem;
  margin: 0 auto;
  margin-top: 5vh;
}

.text {
  display: block;
  margin: 80% auto;
}

.title1 {
  display: block;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.4vw;
}

.title2 {
  display: block;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.4vw;
}

.option {
  display: inline-block;
  width: 14%;
  height: 100%;
  margin: auto 1.5%;
  border-radius: 1.3vw;
  cursor: pointer;
  hyphens: auto;
  padding: 0 0.5vw;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.disabled {
  filter: grayscale(100%);
}

.circle {
  background: #ffffff;
  height: 0;
  width: 70%;
  padding-bottom: 70%;
  border-radius: 50%;
  margin: -45% auto;
  vertical-align: middle;
  text-align: center;
  display: flex;
}

.icon {
  display: block;
  margin: auto;
  margin-top: 20%;
  width: 60%;
}

h1.fbi {
  color: #e6e6e6;
  font-size: 1.4vw;
  font-family: Armada;
  margin: 0;
}

.navigation a {
  color: #FFFFFF;
  text-decoration: none;
}

.navigation {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 2.1vh;
}

.language_icon {
  height: 2.3vh;
}

.language_arrow {
  margin-top: 0.4vh;
  height: 1.7vh;
  transform: rotate(90deg);
}

.select-lg-position {
  display: flex;
  align-items: start;
}

.custom-lg-select {
  text-align: center;
  position: relative;
  padding: 0 0.2em;
  user-select: none;
  font-size: 1.7vh;
}

.select-lg-selected {
  background-color: #333333;
  color: white;
  padding: 0.3vh 0.6vh 0.2vh;
  cursor: pointer;
}

.select-lg-items {
  position: absolute;
  color: white;
  background-color: #333333;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  display: none;
  padding: 0;
  margin-top: 5px;
  z-index: 1000;
}

.select-lg-items li {
  list-style-type: none;
  padding-block: 10px;
  cursor: pointer;
}

.select-lg-items li:hover {
  background-color: #4fc1e8;
  border-radius: 8px;
}

.select-lg-items.show {
  display: block;
}

.d-none {
  display: none;
}

/* Footer */
.footer {
  box-sizing: border-box;
  font-size: 1vw;
  padding: 0.5vw 1vw;
  color: #d3d3d3;
  width: 100%;
  height: 10%;
  margin-top: auto;
  background-color: #1d1d1d;
  border-top: 2px solid #7f7f7f;
  display: flex;
  justify-content: space-between;
}

.footer-info {
  height: fit-content;
  margin: auto 0;
}

.footer-developed-at {
  margin: 0px;
}

.footer-funding-logo {
  width: 8vw;
}

.footer-funding {
  display: flex;
  align-items: center;
  color: #d3d3d3;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.footer-links>a {
  text-decoration: none;
  color: #d3d3d3;
  margin: 0;
}

.footer-dot {
  width: 0.3vw;
  height: 0.3vw;
  background-color: #7f7f7f;
  border-radius: 50%;
}

html::-webkit-scrollbar {
  display: none;
}

.arrow {
  border: solid white;
  border-width: 0 0.4vh 0.4vh 0;
  display: inline-block;
  padding: 0.4vh;
  margin: auto 0.5vh;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

@media only screen and (max-width: 600px) {
  img.logo {
    width: 60%;
  }

  .fbi {
    font-size: 3vw !important;
  }

  .wrapper {
    height: auto !important;
  }

  #main_menu {
    flex-direction: column;
    justify-content: flex-start !important;
    height: auto;
  }

  .option {
    width: 75%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
  }

  .circle {
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0 15px 0 0;
  }

  .icon {
    width: 60%;
    margin: auto;
    margin-top: 20%;
  }

  .text {
    margin: auto;
    display: block;
  }

  .title1,
  .title2 {
    font-size: 3vw;
  }

  .footer {
    font-size: 1.5vw;
  }
}


.notification-bar{
  top: 0px;
  width: 100%;
  padding: 10px 5%;
  color: #31708f;
  background: #d9edf7;
  position: absolute;
  box-sizing: border-box;
  display: none;
  
  font-size: 1.6vh;
  
  .notification_close{
    top: 10px;
    right: 10px;
    position: absolute;
    cursor: pointer;
    font-size: 1.6vh;
  }
}