@media (min-width: 992px) and (max-width: 1199px) {
  #buttons-lg {
    transform: scale(.9);
    margin-bottom: -35px;
    margin-top: -15px;
  }
}

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

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

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

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

@media (min-width: 1200px) {
  .box p {
    font-size: 20px;
    line-height: 1.35;
  }
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .box .heading h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 3px;
    color: #ffffff;
  }
}

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

@media (min-width: 576px) {
  .box .heading h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 7px;
  }
}

.box {
  margin-bottom: 20px;
}

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

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

@media (min-width: 768px) {
  #special {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  #special {
    border-radius: 0;
  }
}

