.hero-main-container {
    padding-top: 15px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
}

.hero-slide img {
    width: 100%;
    /* height: auto; */
    display: block;
    border-radius: 7px;
}

.hero-text {
    position: absolute;
    top: 40%;
    left: 7%;
    transform: translateY(-50%);
    color: #fff;
    text-align: left;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text h6 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #212121;
}

.hero-text a {
    display: inline-block;
    background: #ff4d4d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
}


/* slick dots styling */

.hero-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 8%;
    /* hero text ke left ke saath align */
    transform: none;
    display: flex !important;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    /* default 1,2, marker hatao */
}

.hero-slider .slick-dots li {
    list-style: none;
    /* safe remove */
}

.hero-slider .slick-dots li button {
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    opacity: 0.5;
    padding: 0;
}

.hero-slider .slick-dots li.slick-active button {
    opacity: 1;
    background: #ff4d4d;
}


/* slick ke default before ko null kar diya */

.hero-slider .slick-dots li button:before {
    content: "";
}

@media screen and (max-width:767px) {
    .hero-text h1 {
        font-size: 35px;
        margin-bottom: 10px;
    }
}