body {
  margin: 0;
  padding: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.main {
  position: relative;
  width: 100%;
  height: 78%;
}

.main-img {
  height: 100%;
}

.navbar {
  z-index: 1000;
  height: 10%;
}

.nav-link{
  color: #034065 !important;
}

.logo-box {
  width: 25vw;
}

.object-fit {
  object-fit: contain;
  max-width: 100%;
}

.object-fit-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iframe-container {
  position: relative;
  width: 100%;
  height: 100%;
}

iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.tab-container {
  display: none;
  position: absolute;
  width: 100%;
  height: 8%;
  top: 0;
  color: black;
  font-size: 1vw;
}

.tab {
  color: #034065;
  height: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 5px solid #034065;
  border-right: none;
}

.tab:last-child {
  border-right: 5px solid #034065;
}

.tab-container > .active {
  background-color: #034065;
  color: #FFFFFF;
}

.border-round {
  border-radius: 0.8rem;
}

.bottom-border {
  font-size: 1rem;
  padding: 5px;
  border: 2px solid transparent;

}

.bottom-border p {
    margin: 0;
}

.bottom-border:hover {
  border-bottom: 2px solid black;
}

.footer {
  overflow-y: auto;
  height: 12%;
  max-height: 12%;
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 1% 2%;
  background-color: #034065;
}


dialog::backdrop {
  background-color: black;
  opacity: 0.3;
}

@media screen and (min-width: 875px) {
  .logo-box {
    padding: 0.5rem 0;
    width: 12vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .tab-container {
    display: flex;
  }

  .footer {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}