.banner_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -24px;
  margin-left: -24px;
}

.banner_box_full {
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 24px;
  padding-left: 24px;
  margin-bottom: 40px;
}

.banner_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner_box img {
  max-height: 745px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  display: block;
}
.banner_image img {
  transition: all 0.5s;
}
.banner_image:hover img {
  transform: scale(1.1);
}
.banner_image::before {
  position: absolute;
  content: "";
  transition: var(--transition);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 13%);
  z-index: 2;
  pointer-events: none;
}
.banner_text {
  position: absolute;
  width: 100%;
  padding: 50px 0px;
  z-index: 9;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.banner_text h2 {
  font-size: 100px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  font-family: "Oswald", sans-serif;
}
.full-image-banner .banner_box_wrap {
  position: relative;
  height: 570px;
}

@media only screen and (max-width: 575px) {
  .banner_text h2 {
    font-size: 65px;
  }
}
