html, body {
  height: 100%;
}
.header_mobile_nav {display: none;}
.background .trigger {
  width: 30px;
  height: 25px;
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 3;
  cursor: pointer;
  transition: top 0.1s ease-in-out;
}
.background .trigger span {
  display: block;
  width: 100%;
  height: 5px;
  background: #E31E28;
  margin: 0 0 5px 0;
  transition: all 0.2s ease-in-out;
  position: absolute;
}
.background .trigger span:first-child {
  top: 0;
  left: 0;
}
.background .trigger span:nth-child(2) {
  top: 10px;
  left: 0;
}
.background .trigger span:last-child {
  top: 20px;
  left: 0;
}
.background .trigger.on {
  top: 40px;
  right: 40px;
}
.background .trigger.on span:first-child {
  transform: rotate(45deg);
}
.background .trigger.on span:nth-child(2) {
  transform: rotate(-45deg);
  top: 0;
}
.background .trigger.on span:last-child {
  transform: rotate(45deg);
  top: 0;
}
.menu_adap {
  background: rgb(255 255 255 / 95%);
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 2;
}
.menu_adap ul {
  list-style-type: none;
  padding: 0;
  left: 0;
  width: 250px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.menu_adap ul li {
  padding: 20px 0;
  border-bottom: 1px solid #c5c5c547;
}
.nav_color_mob_lang {
  color: #DA0000;
}
.nav_link_hide_mob {
  color: #DA0000;
}

.mobile_nav_container li {
  text-align: center;
    border-bottom: 1px solid #dadada;
    padding: 10px 0;  
}
.mobile_nav_container a {
  text-decoration: none;
  font-weight: 700;
  font-family: Lato, sans-serif;
  font-size: 22px;
  color: #000;
  transition: .3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5;
}
.mobile_nav_container a:hover {
  color: #01695F;
}

@media screen and (max-width: 768px) {
  .header_mobile_nav {display: flex;}
}