.mobile-only {
  display: none;
}

.nav-icon {
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 9999;
  position: absolute;
  right: 15px;
  top: 52px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nav-icon span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  top: 0px;
  right: 0px;
}

.nav-icon.open span {
  background: #fff;
}

.nav-icon span.second {
  top: 9px;
}

.nav-icon span.third {
  top: 18px;
}

.nav-icon.open span.second {
  filter:alpha(opacity=0);
  opacity: 0;
}

.nav-icon.open span.first {
  -moz-transform: scale(1) rotate(-135deg);
  -webkit-transform: scale(1) rotate(-135deg);
  -o-transform: scale(1) rotate(-135deg);
  -ms-transform: scale(1) rotate(-135deg);
  transform: scale(1) rotate(-135deg);
  top: 17px;
  right: -5px;
}

.nav-icon.open span.third {
  -moz-transform: scale(1) rotate(135deg);
  -webkit-transform: scale(1) rotate(135deg);
  -o-transform: scale(1) rotate(135deg);
  -ms-transform: scale(1) rotate(135deg);
  transform: scale(1) rotate(135deg);
  top: 17px;
  right: -5px;
}

.nav-icon.open {
  -moz-transform: scale(1) rotate(-90deg);
  -webkit-transform: scale(1) rotate(-90deg);
  -o-transform: scale(1) rotate(-90deg);
  -ms-transform: scale(1) rotate(-90deg);
  transform: scale(1) rotate(-90deg);
}


/* iPHONE SIZES */
@media only screen and (min-width : 320px) and (max-width : 900px) {

  .mobile-only {
      display: block;
    }

    .desktop-only {
      display: none !important;
    }

    .logo {
      max-width: 60%;
      left: 20%;
      top: 20px;
      margin-left: 0px;
    }

    ul.logos li {
      width: 44%;
    }

    .nav {
      width: 100%;
      position: fixed;
      z-index: 9998;
      height: 100%;
      padding-top: 100px;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      background: rgba(0,0,0,.9);
      display: none;
    }

    ul.inner-nav {
      position: static;
      width: 100% !important;
      margin: 0px !important;
    }

    ul.inner-nav li {
      display: block;
      text-align: center;
    }

    .nav ul.inner-nav a {
      margin:0px !important;
      text-align: center;
    }
    ul.logos li a.port-8 {
      background-size: 100% auto !important;
    }
}


/* iPAD SIZES  */
@media screen and (min-width : 720px) and (max-width : 1099px) { 

}

@media screen and (min-width : 1100px) and (max-width : 1220px) { 

}


/* BIGGER SIZES */
@media screen and (min-width : 1600px) { 

}


