.pp-banner {
    position: relative;
}

.pp-banner img {
    width: 100%;
}
.banners-1 .banner-content{
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translate(-7%, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap: 25px;
    width: 20%;
}

.banners-1 .banner-content p, .banners-1 .banner-content-div{
font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: white;
}

.banners-1 .banner-content p.title{
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    line-height:25px;
    text-align: left;
    text-shadow: none;
    margin-bottom: 0;
}



.banners-1 .banner-content h3{
    font-weight: 600;
    font-size: 42px;
    line-height: 44px;
    color: white;
}

.banner-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 50px;
    transition: 0.2s;
}
.banner-btn:hover {
    background: white;
    color: var(--mainColor);
}

@media (max-width: 768px) {
    .banner-content p{
      font-size: 10px;
    }
  
    .banner-content{
      gap: 0 !important;
    }
  
    .banner-btn{
      padding: 5px 20px !important;
    }
  }