section.image-banner {
    .bg-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        max-width: 100vw;
        height: 300px;
        @media (max-width:991px) {
            height: 200px;
          }
          @media (max-width:768px) {
            height: 150px;
          }
        .fullBannercontent {
            top: 50%;
            left: 0%;
            transform: translate(0%, -50%);
            text-align: center;
            z-index: 1;
            @media (min-width:768px) {
              max-width: 640px !important;
            }
        }
    }
}