.banner {
  background-color: #393c43;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  overflow: hidden;
  height: 500px;
  max-width: 1600px;
  margin: auto;
}
.banner img {
  position: absolute;
  z-index: 10;
  transform: scaleX(-1);
  width: 100%;
  bottom: -60%;
  left: -20%;
}
.banner .row {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 30;
  height:100%;
}
.banner .row h1 {
  color: #ffffff;
  font-size: 20px;
}
.banner .row p {
  color: #ffffff;
  position: relative;
  z-index: 30;
}
.banner .row a {
  position: relative;
  z-index: 30;
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  background-color: #f97316;
  padding: 15px 18px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .banner {
    height: 400px;
  }
  .banner img {
    width: 500px;
    bottom: -60%;
    left: -20%;
  }
  .banner .row h1 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .banner img {
    bottom: -60%;
    left: 0;
  }
  .banner .row h1 {
    font-size: 50px;
  }
}
