/* rates
========================= */

.port-item {
  position: relative;
  margin: 0 auto;
}

.port-item img {
  margin: 0 auto;
}

.port-header {
  position: absolute;
  z-index: 40;
  top: 0em;
  left: 0%;
  right: 0%;
  padding-bottom: 0em;
  padding-top: 1em;
  width: 100%;
  color: #ABFCF9;
  min-height: 85px;
  background-color: rgba(0,0,0,0.8);
}

.port-desc {
  z-index: 40;
  bottom: 100;
  left: 0%;
  right: 0%;
  padding: 1em;
  width: 100%;
  margin: 0 auto;
  margin-top: -1em;
  ibox-shadow: 2px 2px 5px black;
  icolor: #ABFCF9;
  color: white;
  background-color: rgba(5,39,66,0.95);
}

.port-desc a {
  color: #ABFCF9;
}

.port h1 {
  color: white;
  margin: 0 auto;
  padding: 0;
  text-transform: uppercase;
}


@media (min-width: 1024px) {

  .port-item {
    overflow: hidden;
  }

  .port-header {
    top: 0em;
    transform: translateY(-105%);
    padding-bottom: 20px;
  }

  .port-desc {
    position: absolute;
    bottom: 0;
    transform: translateY(105%);
  }

  .port-item:hover .port-desc {
    transition: all ease-in-out 250ms;
    transform: translateY(0%);
  }

  .port-item:hover .port-header {
    transition: all ease-in-out 250ms;
    transform: translateY(0%);
  }

}
