/*--- FUENTES ---*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;1,300&display=swap");

/*--- ESTILOS GENERALES ---*/
body {
  background-color: white;
  font-family: "Open Sans", sans-serif;
}

/*--- TITULOS ---*/
h1 {
  font-size: 30px;
  margin: 15px;
  padding: 0;
  text-align: center;
  text-shadow: 2px 2px 2px gray;
}

h2, h3, h4 {
  text-align: center;
  text-shadow: 2px 2px 2px gray;
}

.titulo-secundario-calculadora {
  margin: 15px;
  padding: 0;
  text-align: center;
  text-shadow: 1px 1px 1px grey;
}

/*---ICONOS MENU---*/
i {
  padding: 0 5px;
}

.bi-house {
  color: white;
}

#icono-home {
  border-radius: 10px;
  padding: 5px;
}

.bi-caret-right-fill {
  font-size: 0.75rem;
}


/*--- MENU ---*/
.active {
  background-color: red;
  border-radius: 10px;
}

nav li a {
  color: white !important;
  border-radius: 10px;
}

nav a:hover,
.dropdown-item:hover {
  background-color: red !important;
}

.dropdown-menu {
  background-color: #3498db !important;
}

.dropdown-item {
  border-radius: 10px !important;
}

.navbar {
  padding: 2rem;
}

.navbar-collapse {
  align-items: center;
  justify-content: space-between;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
  display: block;
}

/*---PIE DE PÁGINA---*/
.footer {
  background-color: #333;
  color: #FFF;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  clear: both;
  font-size: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}