header {
    position: fixed;
    z-index: 2;
    width: 100%;
    transition: .5s;
}

.overlay {
    background-color: rgb(0,0,0, 0.6);
}

.logo {
    max-width: 150px;
    margin: 10px 20px;
    transition: .5s;
}

.small_logo {
    max-width: 80px;
}

.logo img {
    width: 100%;
}

.Menu__button {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    cursor: pointer;
}

.Menu__line {
    background-color: #ffffff;
    width: 25px;
    height: 5px;
    margin: 2px 0px 2px 0px;
    transition: .5s;
}

.Menu__line.first.rotate_left {
    transform: rotate(-45deg);
    position: absolute;
}
.Menu__line.middle {
    width: 30px;
}

.Menu__line.middle.desappear {
    width: 0px;
}
.Menu__line.last.rotate_right {
    transform: rotate(45deg);
    position: absolute;
}

.Menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: fixed;
    background-color: #000000;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.Menu__list {
    background-color: #333333;
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Menu__info {
    background-image: url("../images/background_6.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.Menu__info_contact, .Menu__info_social  {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
}

.Menu__info_contact .Menu__info_section, .Menu__info_social .Menu__info_section {
   margin: 20px;
   width: 200px;
   height: 150px;
}

.menu {
    font-family: 'MonserratBold';
    color: #ffffff;
    font-size: 22px;
    text-transform: uppercase;
    list-style: none;
}

.menu li {
    position: relative;
    margin: 0px 0px 15px 0px;
}

.menu li a{
    color: #ffffff;
}

.menu li a:hover{
    color: #ec1c24;
}

.menu .current_page_item::before {
    content: '';
    position: absolute;
    background-color: #ffffff;
    width: 25px;
    height: 5px;
    top: 40%;
    left: -25%;
}
.menu .current_page_item a {
    color: #ec1c24;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.sub-menu {
    display: none;
    position: absolute;
    top: -100px;
    left: 150px;
}

.sub-menu li{
    font-size: 12px;
}

.Menu__info_redes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: 20px 0px;
}

.Menu__info_redes svg{
    width: 40px;
    height: 40px;
    margin: 0px 20px 0px 0px;
}

.Menu__info_redes svg:hover path{
    fill: #9b1619;
    cursor: pointer;
}

/* Scroll down */

.Scroll__down {
    position: fixed;
    top: 80%;
    left: 20px;
    width: 24px;
    height: 24px;
    z-index: 1;
  }
  
  .chevron {
    position: absolute;
    background-image: url("../images/scroll_down.png");
    background-size: 100%;
    width: 28px;
    height: 28px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  }
  
  .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
  }
  
  .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
  }
  
  @keyframes move {
    25% {
      opacity: 1;
  
    }
    33% {
      opacity: 1;
      transform: translateY(30px);
    }
    67% {
      opacity: 1;
      transform: translateY(40px);
    }
    100% {
      opacity: 0;
      transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
  }

@media (max-width: 780px) {
    .logo {
        max-width: 80px;
    }
    .Menu__list {
        width: 100%;
    }
    .Menu__info {
        display: none;
    }
}