
.audio-banner {
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.audio-banner .banner-description {
  color: white;
  padding-left: 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  max-width: 27.5rem;

}

.audio-banner .banner-content {
  background-size: 25rem;
  background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    padding-inline: 3.5rem;
}

.audio-banner .banner-content img {
  width: 7rem;
}
.audio-banner .banner-content button {
  background: #ff7900;
  border: none;
  cursor: pointer;
  padding-block: 0.7rem;
  padding-inline: 1rem;
  border-radius: 4px;
  align-self: center;
  font-weight: bold;
  font-size: 1.25rem;
  min-width: 12.5rem;
}

.audio-banner .banner-content button:focus, .audio-banner .banner-content button:active {
  border: none;
  outline: none;
}

.audio-banner .banner-content button:hover {
  background-color: #ff7700cd;
}


.audio-banner .banner-content button:focus{
  border: none;
}


.audio-banner .banner-end  img{
  height: 7.125rem ;
}

@media screen and (max-width: 900px ){
  .audio-banner {
    flex-direction: column !important;
    gap: 0.5rem;
    margin-top: 1rem;

  }
  .audio-banner .banner-description {
    font-size: 1rem;
    padding-inline: 1rem;
    padding-block: 2rem 0;
    text-align: center;
  }

  .audio-banner .banner-content {
    background-size: 20rem;
    height: auto;
    width: 90%;
  }

  .audio-banner .banner-content img {
    width: 5rem;
  }
  .audio-banner .banner-content button {
    padding-block: 0.5rem;
    padding-inline: 0.8rem;
    font-size: 1rem;

  }

  .audio-banner .banner-end{
   display: flex;
   justify-content: flex-end;
   width: 100%;
  }
  .audio-banner .banner-end  img{
    height: 4rem ;
  }
}
