.banner {
  position: relative;
  top: 90px;
  padding: 50px 50px 150px 50px;
  background-color: var(--default_orange_color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  overflow: hidden;
  color: white;
}

.banner-content {
  position: relative;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-text {
  flex: 1;
}

.banner-text h1 {
  font-weight: 800;
  font-size: 45px;
  line-height: 1.2;
}

.banner-text p {
  font-weight: 500;
  font-size: 20px;
}

.banner-text button {
  padding: 0px 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  border: none;
  height: 30px;
  background-color: white;
  color: var(--default_orange_color);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 0px white;
}

.banner-text button:hover {
  color: #fff;
  background-color: var(--default_orange_color);
  border: 1px solid #fff;
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.banner-image {
  margin-top: 50px;
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 400px;
}

.banner-image img {
  width: 100%;
}

.banner-image img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.banner-image img:first-child {
  transform: rotate(26deg);
}

svg{
    z-index: 10;
    position: absolute;
    min-width: 1700px;
    width: 100%;
    bottom: -60px;
    transform: rotate(180deg);
}



  @media (min-width: 800px) {
    .banner-image  {
        margin-top: 0px;
      }
    .banner-content {
      flex-direction: row;
    }
  }