.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("../assets/images/homeimage.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-section:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #ffffff;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}

.banner-content {
    position: relative;
    max-width: 900px;
    text-align: center;
}

.banner-content h3 {
    margin: 0;
    padding: 20px;
    color: #ffffff;
    font-size: 2.4em;
    text-transform: uppercase;
}

.banner-content p {
    color: #ffffff;
    font-size: 1.5em;
    padding: 0 60px;
}

.exploreBtn a{
    /* background:#d9d9d9 !important;
    opacity: 20% !important; */
    background: transparent !important;
     border-width:2px ; 
     border-color: #ffffff; 
     padding: 8px;
}

.exploreBtn{
    width: 40px;
}
@media only screen and (max-width: 992px) {
    .banner-content h3 {
        font-size: 2em;
    }
    .banner-content p {
        font-size: 1.2em;
        padding: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .banner-content h3 {
        font-size: 1.5em;
    }
    .banner-content p {
        font-size: 0.9em;
        padding: 30px;
    }
}