.grid-container {
  display: grid;
  width: 100%;
  grid-template-columns: 15% auto 15%;
  grid-template-rows: 170px auto 1px 350px;
  color: #333;
  background-size: cover;
  background-repeat: no-repeat;
}
#main-text {
  padding: 3em;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 4;
  color: gray;
  background-color: rgba(255,255,255, .95);
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  min-height: 20em;
}
#main-text p {
  max-width: 40em;
}
#main-text h2, #pattern-copy h2 {
    margin-bottom: .5em;
}

#gray-pattern {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 3;
  grid-row-end: 5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#action-btn {
  background: white;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 5;
  z-index: 3;
  max-height: 4em;
  justify-self: center;
  align-self: center;
  padding: 0.7em 1em;
  min-width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 1px 1px 3px #b9b9b9;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}
#action-btn h3 {
    text-align:center;
    flex: 1;
    margin-bottom: 0;
}
#action-btn i {
    color: #00a651;
    background-color: #f0f0f0;
    padding: 7px;
    border-radius: 20em
}
#talk-btn-wrap {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    max-height: 4em;
    background-color: white;
    padding: 1em 0;
    justify-self: center;
    align-self: center;
    z-index: 1;
    border-radius: 80px;
    border: 40px solid white;
    display: flex;
    align-items: center;
}
.talk-btn {
    background-color: #00a651;
    color: #FFF!important;
    width: auto;
    padding: 0 2em;
    height: 50px;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 28px;
    box-shadow: none;
    border: none;
    align-items: center;
    justify-content: center;
    display: flex;
    min-width: 12em;
}
.talk-btn:hover {
  background-color: #808285;
}
.talk-btn:nth-of-type(2) {
  margin-left: 1em;
}
.talk-btn i {
    font-size: 1.25em;
    margin-right: .5em;
    margin-top: 3px
}
#pattern-copy {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 5;
  z-index: 3;
  justify-self: center;
  align-self: center;
  padding: 0.7em 1em;
  min-width: 80%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1em auto 1em;
    grid-template-rows: 90px auto 1px 450px;
  }
  #talk-btn-wrap {
      flex-wrap: wrap;
      grid-column-start: 1;
      grid-column-end: 4;
      border: none;
      background-color: transparent;
      max-height: 200px;
      border-radius: 0;
      margin-top: 13em;
  }

  .talk-btn {
      margin: 0 auto !important;
      width: 90%;
  }
  .talk-btn:nth-of-type(2) {
      margin-top: 1em !important;
  }

  #pattern-copy {
      margin-top: 9em;
  }
}
