/* hero section css start */
.hero-section {
    height: 100%;
}

.hero-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-wrapper .img {
    display: flex;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* .hero-content-wrapper {
    position: relative;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    min-height: 382px;
} */

.hero-content-wrapper {
    position: relative;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    /* background: rgb(254 4 4 / 80%); */
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    min-height: 382px;
    display: block;
}

.hero-content {
    display: none;
    padding: 40px;
}

.hero-content-heading {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
}

.hero-content-text {
    color: var(--white);
    max-width: 350px;
    margin: 10px 0 0 0;
}

.hero-btn {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-btn .btn:hover {
    border-color: var(--white);
}


/* hero section css end */

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

    /* hero section css start */
    .hero-section {
        height: 100%;
    }

    /* hero section css end */
}

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

    /* hero section css start */
    .hero-content-wrapper {
        min-height: 300px;
    }

    /* .hero-content {
        padding: 20px;
    } */

    /* hero section css end */
}

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

    /* hero section css start */
    .hero-content-wrapper {
        min-height: 200px;
    }

    /* .hero-content-text {
        margin: 5px 0 0 0;
    }

    .hero-btn {
        margin: 10px 0 0 0;
    } */

    /* hero section css end */
}