.usp div {
  font-size: 7vw !important;
  color: #ffff00;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 1.5));
}

.banner {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: left;
}

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


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

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

.pp {
  flex: 0 0 auto;
  align-self: flex-end;
}

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

.praveenImg {
  height: 270px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.bannerTextContainer {
  width: auto;
  flex: 1 1 auto;
  text-align: center;
}

@-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);
  }
}

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

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

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

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

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