*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#buttons .box {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: #000;
}

@media (min-width: 576px) {
  #buttons .box p {
    font-size: 16px;
    line-height: 1.35;
  }
}

@media (min-width: 768px) {
  #buttons .box p {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media (min-width: 992px) {
  #buttons .box p {
    font-size: 18px;
    line-height: 1.4;
  }
}

@media (min-width: 1200px) {
  #buttons .box p {
    font-size: 21px;
    line-height: 1.4;
  }
}

#buttons .box img {
  width: 100%;
  height: auto;
}

#buttons .box .box-content {
  display: none;
}

@media (min-width: 576px) {
  #buttons .box .box-content {
    display: block;
    width: 92%;
    height: 94%;
    position: absolute;
    top: 3%;
    left: 4%;
    background: rgba(12,1,25,0.7);
    color: #ffffff;
    padding: 10px 10px;
    transform: scale(0);
    transition: all 0.5s ease 0s;
    border: solid 1px #00b800;
    border-radius: 5px;
  }
}

@media (min-width: 768px) {
  #buttons .box .box-content {
    padding: 10px 15px;
  }
}

#buttons .box:hover .box-content {
  transform: scale(1);
}

#buttons .box .heading {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(7,0,37,0.66);
  text-align: center;
  padding: 7px 0px 5px 0px;
  transition: all 0.5s;
}

#buttons .box:hover .heading {
  bottom: -35%;
}

#buttons .box:hover img {
  opacity: .7;
  transition: all 0.3s;
}

#buttons .box .heading h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0px 0px 5px black;
}

@media (min-width: 576px) {
  #buttons .box .heading h3 {
    font-size: 19px;
  }
}

@media (min-width: 768px) {
  #buttons .box .heading h3 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  #buttons .box .heading h3 {
    font-size: 22px;
  }
}

#buttons .box .heading h4 {
  color: #ffffff;
  font-size: 16px;
  text-shadow: 0px 0px 5px black;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  #buttons .box .heading h4 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  #buttons .box .heading h4 {
    font-size: 20px;
  }
}

#buttons .box {
  margin-bottom: 20px;
}

@media only screen and (max-width: 360px) {
  #buttons .box .box-content {
    padding: 10px;
  }
}

@media only screen and (max-width: 360px) {
  #buttons .box:hover .heading {
    bottom: -40%;
  }
}

