html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 2vh;
  overflow-y: hidden;
}

.tablet_layout {
  display: grid;
  grid-template-areas: "header header header" "nav main aside" "footer footer footer";
  grid-template-columns: 12vw 1fr 12vw;
  grid-template-rows: auto 1fr auto;
  flex-grow: 1;
}

.header_tablet {
  grid-area: header;
  height: 10vh;
}

.nav_tablet {
  grid-area: nav;
}

.main_tablet {
  grid-area: main;
  display: flex;
  align-items: center;
}

.aside_tablet {
  grid-area: aside;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer_tablet {
  grid-area: footer;
  height: 6vh;
}

/* NAVBAR */
.navbar-expand-lg .navbar-toggler {
  display: block;
}

.navigation {
  display: flex;
  flex-direction: column;
  background-color: #2D3B67;
  font-size: 2vw;
  padding: 1.3vw;
  height: 84vh;
}
.navigation a {
  text-decoration: none;
  padding: 5px;
  color: aliceblue;
}
.navigation a.active {
  color: white;
  font-weight: bold;
}

.entry_layout {
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry_layout .entry_box {
  background-color: #2D3B67;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  height: 62vh;
  width: 30vw;
}
.entry_layout .entry_box img {
  height: 14vh;
}
.entry_layout .entry_box .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid white;
  border-radius: 0;
  color: white;
  padding-left: 0;
  padding-right: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.entry_layout .entry_box .form-control::-moz-placeholder {
  color: white;
}
.entry_layout .entry_box .form-control::placeholder {
  color: white;
}

@media (orientation: portrait) {
  .entry_layout .entry_box {
    height: 62vh;
    width: 70vw;
  }
}
.diagram_container {
  position: fixed;
  top: 14vh;
  right: 1vw;
  height: 61vh;
  width: 30%;
  padding: 3vw;
  background: #769dc3;
}

.table_all {
  padding-left: 1vw;
  height: 80vh;
  width: 100%;
  overflow-y: auto;
}

.form_container {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}
.form_container h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  align-items: center;
}

.form_wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main_tablet .centerCarousel {
  width: 50vw;
  margin: 0 auto;
  height: 65vh;
}
.main_tablet .centerCarousel .slick-slide {
  text-align: center;
  justify-content: center;
  background: #6f6f6f;
  padding: 20px;
  margin: 1.5vw;
  border-radius: 10px;
  height: 60vh;
}
.main_tablet .slick-center {
  transition: all 400ms ease-in-out;
  transform: scale(1.05);
}
.main_tablet .map {
  height: 40vh;
  width: 100%;
  justify-items: center;
}

.image_helicopter {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.image_helicopter img {
  width: 20vw;
  height: auto;
}
.image_helicopter .btn {
  margin-top: 4rem;
  height: 2.5rem;
  width: 7rem;
}

.btn_seatRemove {
  padding: 0;
}

.pilot_container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  text-align: center;
}

.table_pilot {
  padding: 0.4rem;
  height: 30vh;
  width: 50vw;
}

.btn-group {
  height: 8vw;
  padding: 0.4rem;
}/*# sourceMappingURL=index.css.map */