.contact-banner {
  position: relative;
  padding: 47px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  border-radius: 40px 40px 0 0;
  z-index: 10;
  background-position-y: 60%;
}
.contact-banner::before {
  background-color: #173853;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  z-index: -1;
  border-radius: 40px 40px 0 0;
}

.contact-banner_title {
  padding-bottom: 18px;
  text-align: center;
}

.contact-banner_title h2 {
  font-weight: 400;
  color: #fff;
}

.contact-banner_text {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  padding-bottom: 30px;
  text-align: center;
}

.contact-banner_button {
  text-align: center;
}

.btn-background {
  color: #000;
  background-color: #92e22f;
  border-color: #92e22f;
  transition: background-color .3s ease-in-out,  border-color .3s ease-in-out, color .3s ease-in-out;
}

.btn-background:hover{
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 991px) {
  .contact-banner {
    position: relative;
    padding: 47px 60px 50px 60px;
  }
}

@media screen and (max-width: 768px) {
  .contact-banner {
    padding: 47px 30px 50px 30px;
  }
}