@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html{
  font-family: "Montserrat", sans-serif!important;
}

.bg-custom-blue-2{
  background-color: #040423;
}

.bg-blue-custom{
  background: #024388;
  transition: .2s;
}

.bg-middle{
  background: url(../img/back1.png);
  background-size: cover;
}

.menuItem {
  color: black;
  text-decoration: none;
}

#logo {
  font-size: 1.5rem;
  font-weight: bold;
}

#header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #ffffff;
}

#menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

#menu .menuItem {
  display: block;
  padding: 0.5rem;
}

#btn-mobile {
  display: none;
}

@media (max-width: 600px) {
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background: #ffffff;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }
  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu .menuItem {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  .pady-4{
    padding: 1rem 0!important;
  } 
  
  .mart-4{
    margin-top: 2.5rem!important;
  }
  
}

.pady-4{
  padding: 0 0;
} 


.mart-4{
  margin-top: 0;
}

#lang-menu {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  margin-top: 5px;
  padding: 5px;
}

.hidden {
  display: none;
}

.lang-option {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  text-align: left;
}
