#buttons {
  max-width: 1400px;
}

.box {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: solid 1px #000;
  box-shadow: 3px 3px 4px rgba(0,0,0,0.3);
}

.box p {
  font-size: 16px;
  text-shadow: 0px 0px 3px #000000;
}

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

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

@media (min-width: 1200px) {
  .box p {
    font-size: 18px;
  }
}

@media (min-width: 1400px) {
  .box p {
    font-size: 20px;
  }
}

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

.box .box-content {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 5%;
  left: 5%;
  background: rgba(0,20,35,0.7);
  color: #ffffff;
  padding: 10px 10px;
  transform: scale(0);
  transition: all 0.5s ease 0s;
  border: solid 1px #2f5eff;
}

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

@media (min-width: 768px) {
  .box:hover .box-content {
    display: flex;
  }
}

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

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

@media (min-width: 768px) {
  .box:hover .heading {
    bottom: -45%;
  }
}

.box .heading h3 {
  font-size: calc(10px + 2vw);
  font-weight: 700;
  text-shadow: 0px 0px 5px #000000;
}

@media (min-width: 576px) {
  .box .heading h3 {
    font-size: calc(9px + 1.7vw);
  }
}

@media (min-width: 991px) {
  .box .heading h3 {
    font-size: calc(1px + 1.9vw);
  }
}

@media (min-width: 1200px) {
  .box .heading h3 {
    font-size: calc(7px + 1vw);
    margin-bottom: 3px;
    text-shadow: 0px 0px 5px #000000;
  }
}

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

.box .heading h4 {
  font-size: calc(10px + 2vw);
  font-weight: 700;
  margin-bottom: 2px;
  text-shadow: 0px 0px 5px #000000;
}

@media (min-width: 576px) {
  .box .heading h4 {
    font-size: calc(5px + 2vw);
  }
}

@media (min-width: 768px) {
  .box .heading h4 {
    font-size: calc(4px + 2vw);
  }
}

@media (min-width: 992px) {
  .box .heading h4 {
    font-size: 19px;
  }
}

@media only screen and (max-width: 990px) {
  .box {
    margin-bottom: 10px;
  }
}

/* Program Buttons */

#buttons .cuttr__readmore {
  margin-top: 0px;
  color: #0a42ff;
  font-size: 15px;
  background: none!important;
  border: none;
  padding: 0!important;
  text-decoration: underline;
  cursor: pointer;
}

@media (min-width: 768px) {
  #buttons .cuttr__readmore {
    display: none;
  }
}

#buttons .mobile-description {
  font-size: 16px;
  line-height: 1.3;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  #buttons .mobile-description {
    font-size: 17px;
  }
}

