.cta_banner_box_full {
  margin-bottom: 70px;
}

.cta_banner_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.cta_banner_image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.cta_banner_box_wrap:hover img {
  transform: scale(1.1);
}
.cta_banner_image::before {
  position: absolute;
  content: "";
  transition: var(--transition);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 50%);
  z-index: 2;
  pointer-events: none;
}
.cta_banner_text {
  position: absolute;
  padding: 50px 0px;
  z-index: 9;
  top: 50%;
  left: 20px;
  right: 20px;
  text-align: center;
  transform: translateY(-50%);
  width: auto;
  display: inline-flex;
  flex-direction: column;
}
.cta_banner_text h3 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
.cta_banner_box_wrap {
  position: relative;
  height: 450px;
}
.cta_buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 30px;
  align-items: center;
  justify-content: center;
}
.cta_buttons a {
  margin-left: 0px;
}
.cta_buttons .btn-yellow {
  background: #fcbe32;
}
.cta_buttons .btn-green {
  background-color: #43c47c;
}
