#usp div {
  font-size: 7vw !important;
}

@media only screen and (min-width: 576px) {
  #usp div {
    font-size: 6vw !important;
  }
}

@-webkit-keyframes banner {
  from {
    -webkit-transform: scale(1.5);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes banner {
  from {
    transform: scale(1.5);
  }

  to {
    transform: scale(1);
  }
}

@-webkit-keyframes banner_text {
  from {
    -webkit-transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes banner_text {
  from {
    transform: scale(0.5);
  }

  to {
    transform: scale(1);
  }
}

#banner {
  height: 270px;
  width: 100vw;
  object-fit: cover;
  object-position: center;
  -webkit-animation: banner 5s infinite;
  animation: banner 5s infinite;
}

header {
  height: 270px;
  overflow: hidden;
}

#usp {
  -webkit-animation: banner_text 5s infinite;
  animation: banner_text 5s infinite;
}

#usp div span {
  color: white;
  font-weight: bold;
}

#pp,
#pp img {
  width: 175px;
  height: auto;
}

/* new update */
#praveen-img {
  top: 35px;
  /* height: "270px";
  position: "absolute";
  display: "flex";
  align-items: "center";
  width: "100%";
  z-index: 1; */
}

@media only screen and (max-width: 768px) {

  #pp,
  #pp img {
    width: 150px;
  }

  /* new update */
  #praveen-img {
    top: 49px;
  }
}

@media only screen and (max-width: 576px) {

  #pp,
  #pp img {
    width: 125px;
  }

  /* new update */
  #praveen-img {
    top: 65px;
  }
}