.hero-component {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
  padding-top: 130px;
  padding-bottom: 0;
}

.hero-component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-component .container {
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.hero-content {
  margin-bottom: 50px;
}

.hero-content-text p {
  color: #c1c1c1;
  line-height: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-svg-bottom-right {
  width: 54%;
  margin-right: -100px;
  margin-bottom: -90px;
}

.hero-svg-bottom-right img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1280px) {
  .hero-svg-bottom-right {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .hero-component {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content {
    max-width: 705px;
    margin-bottom: 30px;
  }
	
	.hero-svg-bottom-right{
		width:100%;
	}

  .hero-svg-bottom-right img {
    max-width: 100%;
  }

  .hero-svg-bottom-right{
    margin-right: 0;
    display: flex;
    justify-content: center;
	width: 100%;
    margin-right: -12px;
    margin-bottom: 0px;
  }


  .hero-wrapper {
    flex-direction: column;
    gap: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1280px){
	.hero-svg-bottom-right{
		height: 503px;
    	display: flex;
    	align-items: end;
	}
}

@media (min-width: 1280px){
	.hero-svg-bottom-right {
    	width: 54%;
    	margin-right: -23px;
    	margin-bottom: -90px;
    	height: 267px;
	}
}