.benefits_section_two {
  width: 100%;
  display:flex;
  flex-direction: column;
}

.benefits_title {
  width: 100%;
  display:flex;
  justify-content:center;
  background-color: #7ec248;
  padding: 10px 0;
}

.benefits_title h2 {
  font-size: 36px;
  color: #fff;
  margin: 0;
}

.benefits-tiles {
  display:flex;
  justify-content: space-between;
  padding: 20px 0;
}

.benefits-tile {
  display:flex;
  flex-direction: column;
  flex: 0 0 33%;
  border: 5px solid #7ec248;
  align-items:center;
  padding-top: 20px;
  justify-content:space-between;
  position: relative;
}

.benefits-tile a {
  width: 100%;
}

.benefits-tile-img {
  text-align: center;
  width: 100%;
  position: relative;
  padding: 20px;
  height: 350px;
}

.benefits-tile-img img {
  max-width: 100%;
  max-height: 100%;
}

.benefits-tile_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  padding-left: 40px;
  margin: 30px 0;
}

.benefits-tile_text p {
  font-size: 14px;
}

.benefits-tile_text p:before {
  content: '+';
  color: #7ec248;
}

.benefits-tile_text p:hover {
  color: #7ec248;
}

.benefits-tile_title {
  width: 100%;
  background-color: #7ec248;
  display:flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.benefits-tile_title h3 {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 24px;
  padding: 16px 0;
  text-align:center;
}

.benefits-bottom_cta,
.benefits-bottom_cta-button {
  display:flex;
  align-items:center;
}

.benefits-bottom_cta {
   flex-direction: column;
  font-weight: normal;
}

.benefits-bottom_cta h3 {
  font-weight: 500;
  font-size: 30px;

}

.benefits-bottom_cta-button a {
  color: #fff;
  background-color: #4a557d;
  font-size: 24px;
  padding: 10px 45px;
  font-weight: 600;
  text-transform:uppercase;
  margin-top: 20px;
}

@media(max-width: 1440px) {
  .benefits-tile-img {
    height: 275px;
  }
}

@media(max-width: 1357px) {
.benefits-tile_text {
    height: 100px;
  }
}

@media(max-width: 1294px) {
  .benefits-tile_title {
    height: 97px;
  }
  
}

@media(max-width: 1024px) {
  .benefits-tile-img {
    height: 200px;
  }
}

@media(max-width: 991px) {
  .benefits-tiles {
    flex-direction: column;
  }
  
  .benefits-tile {
    margin: 10px 20px;
    max-width: 100%;
  }
  
    .benefits-tile-img {
    height: 100%;
  }
}

@media(max-width: 430px) {
  .benefits-tile {
    margin: 10px 0;
}