.footer-img{
  width: 129px;
  height: 42px;
}
.nav-logo{
  width: 170px;
  height: 60px;
}
.desktop-show{
  display: block;
}
.desktop-hide{
  display: none;
}
/* show on devices 992px and up */
@media only screen and (min-width: 992px){
  .section1-tex1{
    font-size: 20px;
  }
  .top-title{
    font-size: 20px;
  }
  .desktop-show{
    display: block;
  }
  .desktop-hide{
    display: none;
  }
}

/* Show on smaller devices going down*/
@media only screen and (max-width: 992px){
  .nav-logo{
    width: 129px;
    height: 42px;
  }
}

/* Show on smaller devices going down*/
@media only screen and (max-width: 484px){
  .desktop-show{
    display: none;
  }
  .desktop-hide{
    display: block;
  }
}