
@media (max-width: 1199px) {
  .header__image {
    height: 70px;
    width: auto;
    will-change: height;
    margin: 0 auto;
    -webkit-transition: height .33333s;
    transition: height .33333s;
    max-width: none;
    display: inline-block;
}
}

@media (max-width: 991px) {
  .header__image {
    height: 50px;
    width: auto;
    will-change: height;
    margin: 0 auto;
    -webkit-transition: height .33333s;
    transition: height .33333s;
    max-width: none;
    display: inline-block;
}
}

@media (max-width: 768px) {
  .header__image {
    height: 35px;
    width: auto;
    will-change: height;
    margin: 0 auto;
    -webkit-transition: height .33333s;
    transition: height .33333s;
    max-width: none;
    display: inline-block;
    margin-left: 0px;
}
}

/*
=====
Boton Top
=====
*/

#myBtn {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  border: none;
  outline: none;
  cursor: pointer; 
}

#back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 0;
    background-color: #DDD;
    color: #555;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}
#back2Top:hover {
    background-color: #DDF;
    color: #000;
}


