.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;
  width: 350px;
  transform: scaleX(-1) rotateZ(30deg);
  bottom: -150px;
  left: -150px;
}
.banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.banner .row {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 30;
}
.banner .row h1 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 50px;
}
.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;
}
.banner .details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}
.banner .details .detail .firstChild {
  color: #d7d8d9;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}
.banner .details .detail .firstChild i {
  margin-left: 5px;
}
.banner .details .detail .secondChild {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .banner {
    height: 400px;
  }
  .banner img {
    width: 500px;
    bottom: -60%;
    left: -20%;
  }
  .banner .row h1 {
    font-size: 30px;
  }
  .banner .details {
    gap: 40px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .banner img {
    bottom: -100px;
    left: 0;
  }
  .banner .row h1 {
    font-size: 50px;
  }
}
