.hero {
  background-color: var(--bg-green);
  background-image: url("../images/hero/heroElementsMob.svg");
  background-repeat: no-repeat;
  margin-top: -70px;
  padding: 100px 0 23px;
  background-position: 35% 135%;
  color: #fff;
  overflow: hidden;
}

.hero .left {
  margin-bottom: 40px;
}

.hero .left p {
  font-size: 14px;
  line-height: 1.7;
}

.hero .left .button {
  font-size: 14px;
}

.hero .right img {
  box-shadow: 0px 10px 30px rgba(13, 81, 52, 0.3);
  border-radius: 4px;
  margin-bottom: 23px;
  margin-top: 7px;
}

@media (min-width: 768px) {
  .hero {
    background-position: 50% 50%;
  }

  .hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hero .left,
  .hero .right {
    width: 50%;
  }

  .hero .right img {
    margin-left: 5px;
  }
}

@media (min-width: 1024px) {
  .hero {
    background-image: url("../images/hero/heroElementsDesk.svg");
    background-size: cover;
    padding-bottom: 55px;
  }

  .hero .sectionTitle {
    font-size: 46px;
    margin-bottom: 15px;
  }

  .hero .left p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (min-width: 1440px) {
  .hero {
    background-size: auto;
    background-position: 33% 55%;
    padding-bottom: 18px;
  }

  .hero .right img {
    box-shadow: 0px 20px 60px rgba(13, 81, 52, 0.3);
    border-radius: 8px;
    width: calc(100% + 70px);
    max-width: calc(100% + 70px);
    margin-bottom: 66px;
    margin-top: 26px;
    margin-left: 15px;
  }
}