body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 800px;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 150px;
    left: 100px;
    color: #fff;
    line-height: 70px;
    
    margin-bottom: 100px;
}

.slide-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.slide-content span {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 10px;
}

.slide-content button {
    padding: 0px 0px 20px 0px;
    background-color: #348e38;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    /* padding: 17px; */
    border-radius: 10px;
    border: solid white 1px;
    height: 11vh;
    /* width:180px; */
    text-align: center;
}

/* Media Query for Responsive Design */
@media (min-width: 350px) {
    .slide-content button {
        width: auto;
        padding: 0px 10px 20px 10px;
    }
}
@media (max-width: 1024px) {
.slide img {
    width: 100%;
    height: 550px;
    display: block;
}
.slide-content {
    position: absolute;
    bottom: 60px;
    left: 30px;
    color: #fff;
    top:250px;
    line-height: 30px;
}

.slide-content h2 {
    font-size: 20px;
}

.slide-content span {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 10px;
}

.slide-content button {
    background-color: #348e38;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    border: solid white 1px;
    margin-top: 30px;
}
}
@media (max-width: 425px) {
    .slide img {
        width: 100%;
        height: 450px;
        display: block;
    }
    .slide-content {
        position: absolute;
        left: 50px;
        color: #fff;
        line-height: 20px;
    }   
    .slide-content h2 {
        font-size: 10px;
    }
    
    .slide-content span {
        font-weight: bold;
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    .slide-content button {
        background-color: #348e38;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 10px;
        padding: 10px;
        border-radius: 10px;
        border: solid white 1px;
        margin-top: 50px;
        height: 6vh;
    }
}

.slide-content i{
    color: #fff;
    padding-right:10px;
}
    @media (max-width: 376px) {
        .slide img {
            width: 100%;
            height: 430px;
            display: block;
        }
        .slide-content {
            position: absolute;
            bottom: 10px;
            left: 30px;
            color: #fff;
            line-height: 20px;
        }
        
        .slide-content h2 {
            font-size: 10px;
        }
        
        .slide-content span {
            font-weight: bold;
            font-size: 25px;
            margin-bottom: 10px;
        }
        
        .slide-content button {
            background-color: #348e38;
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 10px;
            padding: 10px 10px 30px 10px;
            border-radius: 10px;
            border: solid white 1px;
            margin-top: 30px;
        }
    }
    @media only screen and (max-width: 400px) {
        /* Add your responsive CSS rules here */
        .container-fluid {
            padding: 0;
        }
        /* .slide-content {
            text-align: center;
        } */
        /* .slide-content h2 {
            font-size: 24px;
        } */
        .slide-content .para {
            font-size: 16px;
        }
        button {
            margin-bottom: 20px;
        }
    }