:root {
  --primary-color: rgb(0, 180, 0);
  --secondary-color: rgb(0, 180, 0);
  --text-color: #333;
  --background-color: #fff;
  --default-font-size: 16px;
}
.home {
  display: flex;
  justify-content: space-around;
  padding: 100px 50px;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}
.home .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}
.home .right h2 {
  font-size: 2.5rem;
  font-weight: 450;
  margin-bottom: 20px;
}
.home .right span {
  font-size: 3.5rem;
  font-weight: 650;
  margin: 0;
  flex-wrap: wrap;
  color: var(--primary-color);
}
.home .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.home .left img {
  height: 230px !important;
  width: 230px !important;
  object-fit:cover;
  border-radius: 50%;
  box-shadow: 0 4px 30px 10px rgba(10, 184, 0, 0.2);

}

@media screen and (min-width: 1280px) {
  .home {
    padding: 80px 40px;
  }
  .home .right h2 {
    font-size: 2.5rem;
  }
  .home .right span {
    font-size: 3.5rem;
  }
  .home .left img {
    height: 40vh;
  }
}
@media screen and (max-width: 1279px) {
  .home {
    padding: 80px 30px;
  }
  .home .right h2 {
    font-size: 2.2rem;
  }
  .home .right span {
    font-size: 3rem;
  }
  .home .left img {
    height: 40vh;
  }
}
@media screen and (max-width: 1000px) {
  .home {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
  }
  .home .right {
    align-items: center;
    text-align: center;
    order: 1;
    flex: 1;
    padding: 20px 10px 10px 10px;
  }
  .home .right h2 {
    font-size: 2rem;
  }
  .home .right span {
    font-size: 2.5rem;
  }
  .home .left {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    order: 2;
    flex: 1;
  }

  .home .left img {
    height: 40vh;
    margin: auto;
  }
}

@media screen and (max-width: 480px) {
  .home {
    padding: 20px 10px;
  }
  .home .right h2 {
    font-size: 1.5rem;
  }
  .home .right span {
    font-size: 2rem;
  }
  .home .left img {
    height: 30vh;
  }
}
