.container2 {
width: 100%;
padding: 20px;
margin-top: 100px;
}

* {
  box-sizing: border-box;
}

.content-column {
  float: left;
  width: 50%;
  max-width:750px;
  padding: 0 10px;
}

.content-row {
	margin: 0 -5px;
}

.content-row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .content-column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

.content-card {
  box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 0.3);
  padding: 16px;
  background-color: #f1f1f1;
  min-height: 270px;
}

.button-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border: 0px; 
    text-align: center !important;
}

button2  {
    padding: 0;
}

button2 {
    width: 26rem;
    height: 5rem;
    font-size: 20px;
    text-align: center !important;
    font-family: sans-serif;
    position: relative;
    transition: 0.3s;
    margin: 1 rem;
    margin-bottom: 30px;
    color: #fff !important;
    background: transparent;
    border: none;
    z-index: 1;
    padding-top: 10px;
    padding-left: 50px;
}

button2 a {
    color: #fff;
    text-decoration: none;
}

button2 a:hover {
    color: #fff;
    text-decoration: none;
}

button2:focus {outline:0;}

button2::before {
    content: '';
    position: absolute;
    width: inherit;
    height: 2.5em;
    top: 11px;
    left: 0;
    padding-top: 10px;
    transition: 0.3s;
}


button2::after {
    content: '';
    position: absolute;
    width: inherit;
    height: 2.5em;
    top: 0px;
    left: 0;
    transition: 0.3s;
}

button2::before {
    background-color: none;
    color:#fff;
    border: 2px solid #004dc0;
    border-radius: 6px;
    z-index: -1;
}

button2::after {
    background-color: #1788e5;
    border-radius: 3px;
    transform: translate(0.7rem, 0.0rem);
    z-index: -1;
}

button2:hover {
    transform: translate(0rem, 0rem);
    color: white;
    cursor: pointer;
}

button2:hover::before {
    background-color: #1788e5;
    content: '';
    position: absolute;
    width: inherit;
    height: 2.2em;
    top: 0px;
    left: 0;
    transition: 0.3s;
	transform: translate(0.7rem, 0.0rem);
    z-index: -1;
}

button2:hover::after {
    background-color: transparent;
    transform: translate(0.7rem, 0rem);
    
}

.btnwrap {
  text-align: center !important;
}