.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffd03d;
    padding: 1.5em;
    box-shadow: 12px 12px #4a4a4a;
    position: relative;
    transform: translateX(-6px);
  
    .flex-row {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 1em;
        h2 {
            text-align: center;
            font-size: 25px;
            padding: 0;
            font-weight: 500;
            color: #252525;
            font-family: "Source Sans Pro";
        }
        i {
            width: 40px;
            padding-right: 16px;
        }
    }
  
  
    a {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .05em;
        text-transform: uppercase;
        background-color: #ed0000;
        border-radius: 20px;
        border-color: transparent;
        font-family: "Source Sans Pro";
        padding: 8px 16px;
    }
  }
  @media (max-width: 845px) {
    .wrapper {
        .flex-row {
          flex-direction: column;

          i {
            padding-bottom: 1em;
            padding-right: 0;
          }
        }
    }
  }