.banner_wrap {
  line-height: normal;
  font-size: 16px;
}

.banner_wrap>div {
  box-shadow: rgb(0 0 0 / 50%) 0px 50px 50px -50px;
  background-color: rgb(24, 28, 43);
  padding: 0 40px 0px;
  height: 460px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.banner_inner h1 {
  margin: 0px;
  font-family: Moderat;
  font-weight: normal;
  font-size: 70px;
  line-height: 77px;
  color: white;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  z-index: 1;
}

.banner_inner h2 {
  margin: 0px;
  font-family: Moderat;
  font-weight: normal;
  font-size: 45px;
  line-height: 54px;
  color: white;
  max-width: 60%;
  z-index: 1;
}

.banner_inner a {
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 30px;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin-top: 40px;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* COLOR CTA / BOTÓN */
  border-color: #CBA65A;
  background-color: #CBA65A;
  color: rgb(24, 28, 43);
}

/*.banner_inner img {
  object-position: center bottom;
  display: block;
  z-index: 0;
  position: absolute;
  height: 1600px !important;
  width: 1600px;
  right: -1000px;
  bottom: -1000px;
  max-width: unset !important;
}*/

.banner_inner img {
  object-position: center center !important;
  display: block;
  z-index: 0;
  position: absolute;
  height: 100% !important;
  width: auto;
  right: 0%;
  bottom: 0%;
  max-width: unset;
}


@-webkit-keyframes shadowRotate {
  0% {
	 -webkit-transform: rotate(0);
	 -moz-transform: rotate(0);
	 -ms-transform: rotate(0);
	 transform: rotate(0);
  }

  50% {
	 -webkit-transform: rotate(180deg);
	 -moz-transform: rotate(180deg);
	 -ms-transform: rotate(180deg);
	 transform: rotate(180deg);
  }

  100% {
	 -webkit-transform: rotate(360deg);
	 -moz-transform: rotate(360deg);
	 -ms-transform: rotate(360deg);
	 transform: rotate(360deg);
  }
}

@keyframes shadowRotate {
  0% {
	 -webkit-transform: rotate(0);
	 -moz-transform: rotate(0);
	 -ms-transform: rotate(0);
	 transform: rotate(0);
  }

  50% {
	 -webkit-transform: rotate(180deg);
	 -moz-transform: rotate(180deg);
	 -ms-transform: rotate(180deg);
	 transform: rotate(180deg);
  }

  100% {
	 -webkit-transform: rotate(360deg);
	 -moz-transform: rotate(360deg);
	 -ms-transform: rotate(360deg);
	 transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .banner_wrap>div {
	 padding: 0 20px 0px;
	 height: 440px;
  }

  .banner_inner h2 {
	 max-width: 70%;
	 font-size: 30px;
	 line-height: 40px;
  }

  /*.banner_inner img {
	 height: 1100px !important;
	 width: 1100px;
	 right: -600px;
	 bottom: -850px;
  }*/
}

@media (max-width: 767px) {
  .banner_wrap>div {
	 -webkit-box-pack: start;
	 -ms-flex-pack: start;
	 -webkit-justify-content: flex-start;
	 justify-content: flex-start;
  }

  .banner_inner h1 {
	 margin-top: 54px;
  }

  /*.banner_inner img {
	 height: 800px !important;
	 width: 800px;
	 right: -450px;
	 bottom: -550px;
  }*/
}