@media screen and (min-width: 768px), print {
  .box-3column .button {
    height: 100%;
  }
  .button-box {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0;
  }
  .button__btn {
    padding: 10px 40px 10px 30px;
    box-shadow: 0 4px 0 0 #990303;
    border-radius: 3px;
    border: none;
    color: #ffffff;
    background-color: #e60000;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    -webkit-transition: .35s;
    transition: .35s;
    text-decoration: none;
    font-weight: bold;
  }
  .button__btn:hover {
    opacity: 0.7;
  }
  .button__btn + .button__btn {
    margin-left: 20px;
  }
  .button__btn:after {
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 3px;
  }
}

@media screen and (max-width: 767.99px), print {
  .button-box {
    margin-top: -1rem;
  }
  .button__btn {
    border: none;
    background-color: #e60000;
    color: #ffffff;
    padding: 0.8rem 2rem 0.8rem 1rem;
    box-shadow: 0 4px 0 0 #990303;
    border-radius: 0.3rem;
    position: relative;
    display: block;
    margin: 1rem auto;
    line-height: 1.5;
    text-align: center;
    -webkit-transition: .35s;
    transition: .35s;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .button + .button__btn {
    margin-top: -1rem;
  }
  .button__btn:after {
    border-top: 0.3rem solid #ffffff;
    border-right: 0.3rem solid #ffffff;
    content: '';
    position: absolute;
    top: 50%;
    right: 1.1rem;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.3rem;
  }
  
}

@media screen and (min-width: 768px) and (max-width: 1120px), print {
  
  .button + .button__btn {
    margin-top: 1rem;
  }
}
