#menu {
  position: fixed;
  z-index: 10;
  background-color: rgba(255, 255, 255, 1);
  height: 70px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  font-family: muli;
  transition: 0.25s ease !important;
}

#menu a {
  font-size: 16px;
  line-height: 58px;
  color: rgba(0, 0, 0, 0.7);
  padding: 12px 2px 24px 2px;
  font-weight: 600;
  letter-spacing: -0px;
  transition: 0.25s ease;
}

#menu p {
  line-height: 37px;
  color: #9D9D9C;
}

#menu .p-2 {
  margin-left: 0px;
}

#menu a:hover {
  text-decoration: none;
  color: #e74923;
}

#menu .active {
  color: #e74923 !important;
  font-weight: 700;
  transition: 0.25s ease-in-out;
}

#menu .active:hover {
  color: #363f44 !important;
}

.drop {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  text-align: left;
  transition: 0.25s ease;
  z-index: 1;
  padding-right: 4px !important;
  position: relative;
  overflow: visible;
}

.drop:hover {
  height: 580px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.drop-content {
  text-align: left;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  z-index: 1;
  width: auto;
  padding: 20px 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  white-space: nowrap;
  padding-top: 0;
  display: none;
}

.drop-content a {
  color: rgba(0, 0, 0, 0.7) !important;
  padding: 0px 15px 0px 15px !important;
  line-height: 28px !important;
  letter-spacing: -0.7px !important;
  display: block;

}

.drop-content p {
  font-size: 17.5px;
  font-weight: 700;
  color: #363f44 !important;
  margin-bottom: 0px !important;
  padding: 0px 15px 0px 15px !important;
  line-height: 28px !important;
}

.drop-content a:hover {
  color: #e84922 !important;
}

/*ICONE MENU*/
.logo-social img {
  height: 40px;
  margin-top: -5px;
  border-radius: 20px;
  transition: all .45s ease;
}

.logo-social:hover img {
  border-radius: 12px;
}

.langs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-lang a {
  padding: 0px !important;
}

.logo-lang img {
  height: 20px;
  margin-top: -5px;
  margin-left: 0px;
}

.logo-menu {
  height: 45px;
  margin-top: -5px;
  opacity: 1;
}

.icona-menu {
  position: absolute;
  right: 25px !important;
  top: 25px !important;
  z-index: 11;
  cursor: pointer;
}

/*HAMBURGER MENU*/
#nav-icon3 {
  width: 25px;
  height: 30px !important;
  position: absolute;
  top: 22px;
  right: 5px;
  margin: 0px 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #444444;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 16px;
}

#nav-icon3.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
  background-color: #cf3819;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #cf3819;
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #cf3819;
}

#nav-icon3.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
  background-color: #cf3819;
}

.menu-show {
  height: 600px !important;
}

.drop:hover {
  height: 70px !important;
  box-shadow: none !important;
}

.drop:hover .drop-content {
  display: block;
}

@media (max-width: 991px) {
  .drop:hover {
    height: 60px !important;
  }

  .drop-content {
    display: none !important;
  }
}
@media (min-width: 991px) {
  .menu-show {
    height: 70px !important;
  }
}