/* MENU */
.menu-main-menu-container {
  margin: 0 auto;
}

.menu-item {
  padding: 16px 24px;
}

.menu-item a {
  font-size: 18px;
  font-family: "Cinzel", serif;
  color: #fff;
}

.navbar-toggler {
  background-color: #fff !important;
}

/* SUBMENU */

.sub-menu {
  min-width: 300px;
  background-color: #1f1c1a;
  padding: 16px;
  position: absolute;
  top: 59px;
  display: none;
  transition: 0.5s ease-in-out;
}

.sub-menu .menu-item {
  padding: 0;
  margin-bottom: 16px;
}

.sub-menu .menu-item:last-child {
  padding: 0;
  margin-bottom: 0 !important;
}

.sub-menu .menu-item:hover {
  padding: 0;
  margin-bottom: 16px;
  font-weight: 600;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
}

/* SUBMENU RESPONSIVE */

@media only screen and (max-width: 1024px) {
  .sub-menu {
    position: static;
    display: block;
  }
}

/* NAVBAR ICON */
.navbar-toggler {
  border: none;
  background-color: transparent !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='3' stroke-linecap='round' d='M 4,7.5 h 22 M 4,15 h 22 M 4,22.5 h 22'/%3e%3c/svg%3e");
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease-in-out;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='3' stroke-linecap='round' d='M 4,7.5 L 26,22.5 M 4,22.5 L 26,7.5'/%3e%3c/svg%3e");
}

/* FOOTER */

.footer-container h4,
.footer-container p {
  color: #fff;
  text-align: center;
}

.footer-container .menu-item {
  padding: 0;
}

.footer-container h4 {
  margin-bottom: 18px;
}

.footer-container li {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-container a {
  font-size: 18px;
  color: #fff;
}

.copyrights a {
  color: #1f1c1a;
}
